@import "tailwindcss";

:root {
  --ink: #102a32;
  --teal: #0f766e;
  --teal-dark: #0b4f4a;
  --sand: #f4efe6;
  --paper: #fffdf8;
  --line: #d9cfc0;
  --danger: #b42318;
  --ok: #027a48;
  --warn: #b54708;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.16), transparent 28%),
    linear-gradient(180deg, #f7f1e8 0%, #eef4f3 100%);
  font-family: var(--font-sans), "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.mesh {
  background-image:
    linear-gradient(rgba(16, 42, 50, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 42, 50, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

.glass-card {
  background: color-mix(in srgb, var(--paper) 92%, white);
  border: 1px solid color-mix(in srgb, var(--line) 80%, white);
  box-shadow: 0 24px 50px rgba(16, 42, 50, 0.08);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: #d7e4e1;
}
