/* =============================================================
   Vivardhaa · Design tokens
   ============================================================= */
:root {
  /* Primary */
  --orange: #f97316;
  --orange-600: #ea640c;
  --orange-50: #fff4ec;
  --navy: #0f172a;
  --navy-700: #1e293b;
  --navy-500: #334155;

  /* Surfaces */
  --white: #ffffff;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-500: #64748b;
  --slate-700: #334155;

  /* Variety palette (one identity colour per variety) */
  --v-teja: #f97316; /* orange */
  --v-4884: #d97706; /* amber */
  --v-334: #3b82f6; /* blue */
  --v-273: #e11d48; /* rose */
  --v-us341: #10b981; /* green */
  --v-dd: #14b8a6; /* teal */
  --v-indam5: #8b5cf6; /* violet */
  --v-bss355: #0ea5e9; /* sky */

  /* Semantic */
  --ok: #10b981;
  --watch: #f59e0b;
  --alert: #ef4444;
  --pending: #3b82f6;

  /* Type */
  --font-ui:
    "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --font-mono: "DM Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  /* Layout */
  --max: 1200px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow: 0 6px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.18);
}

/* =============================================================
   Reset
   ============================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  /* Reserve scrollbar space symmetrically so centred containers don't
     drift to the left when a vertical scrollbar appears. */
  scrollbar-gutter: stable both-edges;
}
body {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 12px;
  background: var(--navy);
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  z-index: 99;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 12px;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.mono {
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.text-orange {
  color: var(--orange);
}
.text-ok {
  color: var(--ok);
}

/* =============================================================
   Topbar
   ============================================================= */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--slate-200);
}
.topbar__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
}
.brand__mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--orange);
  display: grid;
  place-items: center;
}
.brand__name {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.nav__list {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.nav__list a {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy-500);
  transition:
    background 0.15s,
    color 0.15s;
}
.nav__list a:hover,
.nav__list a.is-active {
  color: var(--navy);
  background: var(--slate-100);
}
.topbar__cta {
  padding: 10px 16px;
}
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* =============================================================
   Buttons & chips
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 14px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition:
    transform 0.1s ease,
    background 0.15s,
    border-color 0.15s,
    color 0.15s;
}
.btn:active {
  transform: translateY(1px);
}
.btn--primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.28);
}
.btn--primary:hover {
  background: var(--orange-600);
  border-color: var(--orange-600);
}
.btn--ghost {
  background: var(--white);
  color: var(--navy);
  border-color: var(--slate-300);
}
.btn--ghost:hover {
  border-color: var(--navy);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 12px;
  background: var(--slate-100);
  color: var(--navy-500);
  border: 1px solid var(--slate-200);
}
.chip--ghost {
  background: transparent;
}
.chip--active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.chip--ok {
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
  border-color: rgba(16, 185, 129, 0.25);
}

/* Variety chips */
.chip--teja {
  background: rgba(249, 115, 22, 0.12);
  color: #9a3412;
  border-color: rgba(249, 115, 22, 0.25);
}
.chip--4884 {
  background: rgba(217, 119, 6, 0.12);
  color: #92400e;
  border-color: rgba(217, 119, 6, 0.25);
}
.chip--334 {
  background: rgba(59, 130, 246, 0.12);
  color: #1d4ed8;
  border-color: rgba(59, 130, 246, 0.25);
}
.chip--273 {
  background: rgba(225, 29, 72, 0.12);
  color: #be123c;
  border-color: rgba(225, 29, 72, 0.25);
}
.chip--us341 {
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
  border-color: rgba(16, 185, 129, 0.25);
}
.chip--dd {
  background: rgba(20, 184, 166, 0.12);
  color: #0f766e;
  border-color: rgba(20, 184, 166, 0.25);
}
.chip--indam5 {
  background: rgba(139, 92, 246, 0.12);
  color: #6d28d9;
  border-color: rgba(139, 92, 246, 0.25);
}
.chip--bss355 {
  background: rgba(14, 165, 233, 0.12);
  color: #0369a1;
  border-color: rgba(14, 165, 233, 0.25);
}

.chip--teja[aria-selected="true"],
.chip--4884[aria-selected="true"],
.chip--334[aria-selected="true"],
.chip--273[aria-selected="true"],
.chip--us341[aria-selected="true"],
.chip--dd[aria-selected="true"],
.chip--indam5[aria-selected="true"],
.chip--bss355[aria-selected="true"] {
  filter: brightness(0.95);
  outline: 2px solid currentColor;
  outline-offset: 1px;
}

/* =============================================================
   Eyebrow & section heads
   ============================================================= */
.eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}
.section {
  padding: 96px 0;
}
.section--alt {
  background: var(--slate-50);
}
.section__head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.section__title {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 800;
  margin-top: 12px;
  color: var(--navy);
}
.section__lede {
  margin-top: 16px;
  color: var(--slate-700);
  font-size: 17px;
}

/* =============================================================
   Hero
   ============================================================= */
.hero {
  padding: 80px 0 96px;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(249, 115, 22, 0.1), transparent 60%),
    linear-gradient(180deg, var(--white) 0%, var(--slate-50) 100%);
}
.hero__grid {
  display: grid;
  gap: 56px;
  align-items: center;
  grid-template-columns: 1.15fr 0.85fr;
}
.hero__title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  margin-top: 16px;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.hero__lede {
  margin-top: 20px;
  max-width: 56ch;
  color: var(--slate-700);
  font-size: 18px;
}
.hero__cta {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero__stats {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  border-top: 1px solid var(--slate-200);
  padding-top: 24px;
}
.hero__stats li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.kpi {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 23px;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.kpi__label {
  font-size: 12px;
  color: var(--slate-500);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Hero panel preview */
.hero__panel {
  width: 100%;
}
.panel {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}
.panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.panel__title {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
}

.product-list {
  display: grid;
  gap: 6px;
}
.product {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: var(--slate-50);
  border: 1px solid transparent;
  transition:
    background 0.15s,
    border-color 0.15s,
    transform 0.15s;
}
.product:hover {
  background: var(--orange-50);
  border-color: rgba(249, 115, 22, 0.2);
  transform: translateX(2px);
}
.product__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 10px rgba(249, 115, 22, 0.25);
}
.product__icon svg {
  width: 22px;
  height: 22px;
}
.product__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.product__name {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.product__desc {
  font-size: 12px;
  color: var(--slate-500);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--navy-500);
  white-space: nowrap;
}

.panel__foot--varieties {
  align-items: center;
  gap: 10px;
}
.varieties-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-right: 4px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
}
.variety-teja {
  background: var(--v-teja);
}
.variety-4884 {
  background: var(--v-4884);
}
.variety-334 {
  background: var(--v-334);
}
.variety-273 {
  background: var(--v-273);
}
.variety-us341 {
  background: var(--v-us341);
}
.variety-dd {
  background: var(--v-dd);
}
.variety-indam5 {
  background: var(--v-indam5);
}
.variety-bss355 {
  background: var(--v-bss355);
}
.badge {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.badge--ok {
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
}
.badge--watch {
  background: rgba(245, 158, 11, 0.14);
  color: #b45309;
}
.badge--alert {
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
}
.badge--pending {
  background: rgba(59, 130, 246, 0.12);
  color: #1d4ed8;
}

.panel__foot {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--slate-200);
}
.legend {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--slate-500);
  font-weight: 600;
}

/* =============================================================
   Cards & grids
   ============================================================= */
.grid {
  display: grid;
  gap: 24px;
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 28px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}
.card:hover {
  border-color: var(--slate-300);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--orange-50);
  color: var(--orange);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition:
    background 0.2s,
    color 0.2s;
}
.card__icon svg {
  width: 24px;
  height: 24px;
  display: block;
}
.card:hover .card__icon {
  background: var(--orange);
  color: var(--white);
}
.card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.card__head .card__title {
  margin-bottom: 0;
}
.card p {
  color: var(--slate-700);
  font-size: 15px;
}
.speclist {
  display: grid;
  gap: 6px;
  margin-top: 10px;
}
.speclist li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  color: var(--slate-700);
  padding: 6px 0;
  border-bottom: 1px dashed var(--slate-200);
}
.speclist li:last-child {
  border-bottom: 0;
}
.speclist b {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--navy);
  font-weight: 500;
}

/* =============================================================
   Variety cards
   ============================================================= */
.filterbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}
.filterbar .chip {
  cursor: pointer;
}

.variety-grid {
  align-items: stretch;
}
.vcard {
  position: relative;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    border-color 0.2s,
    transform 0.2s,
    box-shadow 0.2s,
    opacity 0.25s;
}
.vcard::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-top-left-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
  background: var(--slate-200);
}
.vcard[data-variety="teja"]::before {
  background: var(--v-teja);
}
.vcard[data-variety="4884"]::before {
  background: var(--v-4884);
}
.vcard[data-variety="334"]::before {
  background: var(--v-334);
}
.vcard[data-variety="273"]::before {
  background: var(--v-273);
}
.vcard[data-variety="us341"]::before {
  background: var(--v-us341);
}
.vcard[data-variety="dd"]::before {
  background: var(--v-dd);
}
.vcard[data-variety="indam5"]::before {
  background: var(--v-indam5);
}
.vcard[data-variety="bss355"]::before {
  background: var(--v-bss355);
}
.vcard:hover {
  border-color: var(--slate-300);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.vcard.is-dim {
  opacity: 0.25;
  transform: none;
}
.vcard__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vcard__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--slate-500);
  letter-spacing: 0.04em;
}
.vchip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.01em;
}
.vchip--teja {
  background: rgba(249, 115, 22, 0.14);
  color: var(--v-teja);
}
.vchip--4884 {
  background: rgba(217, 119, 6, 0.14);
  color: var(--v-4884);
}
.vchip--334 {
  background: rgba(59, 130, 246, 0.14);
  color: var(--v-334);
}
.vchip--273 {
  background: rgba(225, 29, 72, 0.14);
  color: var(--v-273);
}
.vchip--us341 {
  background: rgba(16, 185, 129, 0.14);
  color: var(--v-us341);
}
.vchip--dd {
  background: rgba(20, 184, 166, 0.14);
  color: var(--v-dd);
}
.vchip--indam5 {
  background: rgba(139, 92, 246, 0.14);
  color: var(--v-indam5);
}
.vchip--bss355 {
  background: rgba(14, 165, 233, 0.14);
  color: var(--v-bss355);
}
.vcard__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}
.vcard__copy {
  color: var(--slate-700);
  font-size: 14px;
  flex: 1;
}
.vspec {
  display: grid;
  gap: 6px;
  margin-top: 4px;
}
.vspec li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
  color: var(--slate-500);
  padding: 6px 0;
  border-top: 1px dashed var(--slate-200);
}
.vspec b {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--navy);
  font-weight: 500;
}

/* =============================================================
   Process steps
   ============================================================= */
.steps {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  counter-reset: step;
}
/* Orphan last card in 3-col grid (e.g. 7 steps): span the row and centre */
.steps .step:last-child:nth-child(3n + 1) {
  grid-column: 1 / -1;
  justify-self: center;
  width: calc((100% - 40px) / 3);
}
.step {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  position: relative;
  transition:
    border-color 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.step:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
/* Row 1: count → icon → title (HTML order is icon, num, title — re-ordered visually) */
.step__num {
  order: 1;
}
.step__icon {
  order: 2;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--orange-50);
  color: var(--orange);
  display: grid;
  place-items: center;
  margin-bottom: 0;
  transition: background 0.2s;
}
.step__title {
  order: 3;
  flex: 1 1 auto;
  min-width: 0;
}
/* Force the rest of the card's content onto its own line(s) */
.step__copy {
  order: 4;
  flex-basis: 100%;
  margin: 0;
}
.step__meta {
  order: 5;
  flex-basis: 100%;
}
.step__icon svg {
  width: 24px;
  height: 24px;
  display: block;
}
.step:hover .step__icon {
  background: var(--orange);
  color: var(--white);
}
.step__num {
  font-size: 12px;
  color: var(--orange);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.step__title {
  font-size: 18px;
  color: var(--navy);
  font-weight: 700;
}
.step__copy {
  color: var(--slate-700);
  font-size: 14px;
}
.step__meta {
  font-size: 12px;
  color: var(--slate-500);
  margin-top: 4px;
  border-top: 1px dashed var(--slate-200);
  padding-top: 10px;
}

/* =============================================================
   Technology section
   ============================================================= */
.tech__grid {
  display: grid;
  gap: 56px;
  align-items: center;
  grid-template-columns: 1fr 1fr;
}
.tech__copy .section__title {
  font-size: clamp(28px, 3.4vw, 40px);
}
.tech__copy .section__lede {
  font-size: 17px;
}
.tech__bullets {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}
.tech__bullets li {
  position: relative;
  padding-left: 28px;
  color: var(--slate-700);
  font-size: 15px;
}
.tech__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.18);
}
.tech__bullets strong {
  color: var(--navy);
  font-weight: 700;
}

/* =============================================================
   Live Operations panel — light, journey-style dashboard
   ============================================================= */
.ops {
  position: relative;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 28px 24px 22px;
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 20px;
  overflow: hidden;
}
/* Top progress ribbon: orange filled = stages done, slate = remaining */
.ops::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--orange) 0%,
    var(--orange) 71%,
    var(--watch) 71%,
    var(--watch) 86%,
    var(--slate-200) 86%,
    var(--slate-200) 100%
  );
}

/* Header block */
.ops__head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
}
.ops__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--orange);
  background: var(--orange-50);
  padding: 5px 10px;
  border-radius: 999px;
}
.ops__live-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--orange);
  animation: ops-pulse 1.4s ease-in-out infinite;
}
@keyframes ops-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.35;
    transform: scale(0.85);
  }
}
.ops__id {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.ops__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.ops__sub {
  font-size: 11.5px;
  color: var(--slate-500);
  margin-top: 2px;
}

/* KPI strip */
.ops__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0;
}
.ops__metric {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}
.ops__metric dt {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-500);
  font-weight: 600;
  margin-bottom: 4px;
}
.ops__metric dd {
  margin: 0;
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  font-family: var(--font-mono);
  line-height: 1.1;
}
.ops__metric--watch dd {
  color: var(--watch);
  font-family: var(--font-ui);
}
.ops__unit {
  font-size: 11px;
  color: var(--slate-500);
  margin-left: 4px;
  font-weight: 500;
}

/* Vertical journey timeline */
.journey {
  position: relative;
  padding: 4px 0 4px 30px;
  display: grid;
  gap: 10px;
  margin: 0;
}
.journey::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--orange) 0%,
    var(--orange) 71%,
    var(--watch) 71%,
    var(--watch) 86%,
    var(--slate-200) 86%,
    var(--slate-200) 100%
  );
  border-radius: 2px;
}
.journey__step {
  position: relative;
  display: block;
}
.journey__node {
  position: absolute;
  left: -27px;
  top: 14px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--white);
  border: 2px solid var(--orange);
  z-index: 1;
}
.journey__step--done .journey__node {
  background: var(--orange);
}
.journey__step--current .journey__node {
  background: var(--watch);
  border-color: var(--watch);
  box-shadow: 0 0 0 5px rgba(245, 158, 11, 0.18);
  animation: ops-pulse 1.4s ease-in-out infinite;
}
.journey__step--pending .journey__node {
  background: var(--white);
  border-color: var(--slate-300);
}
.journey__body {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
.journey__step--current .journey__body {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.35);
}
.journey__step--pending .journey__body {
  opacity: 0.55;
}
.journey__step:hover .journey__body {
  transform: translateX(2px);
  border-color: var(--slate-300);
}
.journey__top,
.journey__bot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}
.journey__top {
  flex-wrap: wrap;
}
.journey__bot {
  font-size: 11.5px;
  color: var(--slate-500);
  margin-top: 4px;
}
.journey__time {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 6px;
  padding: 4px 8px;
  border-radius: 6px;
  background: var(--white);
  border: 1px dashed var(--slate-200);
  font-size: 11px;
  color: var(--slate-500);
  letter-spacing: 0.01em;
}
.journey__when {
  color: var(--slate-700);
  white-space: nowrap;
}
.journey__duration {
  color: var(--orange);
  font-weight: 600;
  white-space: nowrap;
}
.journey__step--current .journey__time {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(245, 158, 11, 0.35);
}
.journey__step--current .journey__duration {
  color: var(--watch);
}
.journey__step--pending .journey__duration {
  color: var(--pending);
}
.journey__stage {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.journey__flag {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.18);
  color: var(--watch);
}
.journey__flow {
  font-size: 12px;
  color: var(--navy);
  white-space: nowrap;
}
.journey__owner {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.journey__delta {
  white-space: nowrap;
  color: var(--slate-700);
}
.journey__step--current .journey__delta {
  color: var(--watch);
  font-weight: 600;
}

/* Grade-split visualization (live grading breakdown) */
.grade-split {
  margin-top: 10px;
  display: grid;
  gap: 10px;
}
.grade-split__bar {
  display: flex;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: var(--slate-200);
  overflow: hidden;
}
.grade-split__seg {
  display: block;
  height: 100%;
}
.grade-split__seg--export {
  background: var(--orange);
}
.grade-split__seg--sub {
  background: var(--slate-500);
}
.grade-split__seg--seeds {
  background: var(--slate-300);
}
.grade-split__legend {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0;
}
.grade-split__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.grade-split__item dt {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--slate-500);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.grade-split__item dd {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
}
.grade-split__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  flex: none;
}
.grade-split__item--export .grade-split__dot {
  background: var(--orange);
}
.grade-split__item--sub .grade-split__dot {
  background: var(--slate-500);
}
.grade-split__item--seeds .grade-split__dot {
  background: var(--slate-300);
}
.grade-split__unit {
  font-family: var(--font-ui);
  font-size: 10.5px;
  color: var(--slate-500);
  font-weight: 500;
  margin-left: 2px;
}

/* Alert banner — light theme */
.ops__alert {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.32);
}
.ops__alert-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(245, 158, 11, 0.18);
  color: var(--watch);
}
.ops__alert-icon svg {
  width: 18px;
  height: 18px;
}
.ops__alert-body {
  font-size: 12.5px;
  color: var(--slate-700);
  line-height: 1.45;
}
.ops__alert-body strong {
  display: block;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 2px;
}
.ops__alert-meta {
  display: block;
  margin-top: 5px;
  font-size: 11px;
  color: var(--slate-500);
}

/* Tighten on narrow viewports */
@media (max-width: 640px) {
  .ops {
    padding: 24px 18px 18px;
  }
  .ops__metrics {
    grid-template-columns: 1fr;
  }
  .journey {
    padding-left: 26px;
  }
  .journey__node {
    left: -23px;
  }
  .journey::before {
    left: 9px;
  }
}

/* =============================================================
   Contact
   ============================================================= */
.contact__grid {
  display: grid;
  gap: 56px;
  align-items: start;
  grid-template-columns: 1fr 1fr;
}
.contactlist {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}
.contactlist li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--slate-200);
}
.contactlist__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-500);
  padding-top: 4px;
}
.contactlist__value {
  color: var(--navy);
  font-weight: 600;
}

.form {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field--full {
  grid-column: 1 / -1;
}
.field label {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-ui);
  font-size: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--slate-200);
  background: var(--white);
  color: var(--navy);
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
.field textarea {
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.16);
}
.form__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.form__status {
  font-size: 13px;
  color: var(--slate-500);
}
.form__status.is-ok {
  color: var(--ok);
}
.form__status.is-err {
  color: var(--alert);
}

/* Honeypot — visually hidden but reachable to bots */
.field--hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Submit button: spinner + disabled state */
.btn .btn__spinner {
  display: none;
  width: 14px;
  height: 14px;
  margin-left: 8px;
  border-radius: 999px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  vertical-align: middle;
  animation: btn-spin 0.7s linear infinite;
}
.btn.is-loading .btn__spinner {
  display: inline-block;
}
.btn[disabled],
.btn.is-loading {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}
@keyframes btn-spin {
  to {
    transform: rotate(360deg);
  }
}

/* =============================================================
   Footer
   ============================================================= */
.footer {
  background: var(--navy);
  color: #cbd5e1;
  padding: 48px 0;
}
.footer__inner {
  display: grid;
  gap: 32px;
  grid-template-columns: 1.2fr 1fr 1fr;
  align-items: start;
}
.footer .brand__name {
  color: #fff;
}
.footer__brand p {
  margin-top: 8px;
  color: #94a3b8;
  font-size: 14px;
}
.footer__group {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 12px;
}
.footer ul {
  display: grid;
  gap: 8px;
}
.footer ul a {
  color: #e2e8f0;
  font-size: 14px;
}
.footer ul a:hover {
  color: var(--orange);
}
.footer__legal p {
  margin: 0;
  color: #94a3b8;
  font-size: 12px;
}

/* =============================================================
   Responsive
   ============================================================= */
@media (max-width: 1024px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Odd last step in a 2-col layout — span both cols and centre at half width */
  .steps .step:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 10px);
  }
}
@media (max-width: 880px) {
  /* Topbar collapses to brand + burger only — pin burger to the right */
  .topbar__inner {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 12px 16px;
  }
  .nav {
    display: none;
  }
  .nav.is-open {
    display: block;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--slate-200);
    padding: 12px 16px;
  }
  .nav.is-open .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }
  .topbar__cta {
    display: none;
  }

  /* Hero centers on mobile so it visually matches the rest of the page */
  .container {
    padding: 0 20px;
  }
  .hero {
    padding: 56px 0 72px;
  }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero__panel {
    order: -1;
  }
  .hero__copy {
    text-align: center;
  }
  .hero__lede {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__cta {
    justify-content: center;
  }
  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
  }
  .hero__stats li {
    align-items: center;
  }

  /* Section heads keep centred copy at any width */
  .section {
    padding: 72px 0;
  }
  .section__head {
    margin-bottom: 40px;
  }

  /* Hero panel — varieties legend wraps & centres */
  .panel__foot--varieties {
    justify-content: center;
    row-gap: 8px;
  }

  /* Process step cards centre their content to match the centred section head */
  .step {
    justify-content: center;
    text-align: center;
    gap: 10px 6px;
  }
  .step__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }
  .step__icon svg {
    width: 20px;
    height: 20px;
  }
  .step__title {
    flex: 0 1 auto;
  }

  .grid--3 {
    grid-template-columns: 1fr;
  }
  .tech__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  /* Centre the Tech-Edge intro block to match other sections on mobile */
  .tech__copy {
    text-align: center;
  }
  .tech__copy .section__lede {
    margin-left: auto;
    margin-right: auto;
    max-width: 56ch;
  }
  .tech__bullets {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
  .form {
    grid-template-columns: 1fr;
  }
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
@media (max-width: 540px) {
  .container {
    padding: 0 16px;
  }
  .grid--4 {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  /* Reset the 2-col last-card centring when we drop to a single column */
  .steps .step:last-child:nth-child(odd) {
    grid-column: auto;
    width: auto;
    justify-self: stretch;
  }
  .section {
    padding: 64px 0;
  }
  .section__head {
    margin-bottom: 32px;
  }
  .hero {
    padding: 48px 0 64px;
  }
  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .hero__cta {
    width: 100%;
  }
  .hero__cta .btn {
    flex: 1 1 auto;
    text-align: center;
    justify-content: center;
  }
  .product {
    grid-template-columns: 36px 1fr auto;
    gap: 10px;
    padding: 8px 10px;
  }
  .product__icon {
    width: 36px;
    height: 36px;
  }
  .product__desc {
    font-size: 11px;
  }
  /* Variety card head: keep chip + tag on one line, wrap if needed */
  .vcard__head {
    flex-wrap: wrap;
    gap: 8px;
  }
  /* Filter chips wrap and centre on small screens */
  .filterbar {
    gap: 6px;
  }
  /* Contact list: stack label above value */
  .contactlist li {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px 0;
  }
}


/*# sourceMappingURL=styles.e323258ca46328585de0.css.map*/