/* =====================================================================
   Raina Lifesciences — design system
   Palette: clinical white / institutional blue / restrained green
   Type:    Schibsted Grotesk (display) · Inter (body) · IBM Plex Mono (data)
   Signature: the C/T test-window motif — a control line always present,
              a green test line that appears when a product is selected.
   ===================================================================== */

:root {
  --ink: #0a1b33;
  --navy: #17345e;
  --blue: #1e5ce6;
  --blue-bright: #2f74ff;
  --blue-deep: #10306b;
  --green: #1da97e;
  --green-soft: #e5f6f0;
  --mint: #65d6b4;
  --bg: #f7f9fc;
  --tint: #edf4fb;
  --white: #ffffff;
  --line: #dde5f0;
  --line-strong: #c7d3e6;
  --muted: #55688a;
  --shadow-sm: 0 1px 2px rgba(10, 27, 51, 0.05), 0 2px 8px rgba(10, 27, 51, 0.05);
  --shadow-md: 0 4px 12px rgba(10, 27, 51, 0.07), 0 12px 32px rgba(10, 27, 51, 0.08);
  --shadow-lg: 0 8px 24px rgba(10, 27, 51, 0.1), 0 24px 64px rgba(10, 27, 51, 0.14);
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --font-display: "Schibsted Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --wrap: 1180px;
  --header-h: 66px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.drawer-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: var(--blue); }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; margin: 0 0 0.5em; letter-spacing: -0.015em; }
h1 { font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3.1rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.2rem); font-weight: 700; }
h3 { font-size: 1.08rem; font-weight: 600; }
p { margin: 0 0 1em; }

.mono { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; font-weight: 500; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(18px, 4vw, 32px); }
.section { padding: clamp(56px, 8vw, 96px) 0; }
.hide-mobile { display: inline-flex; }

.skip-link {
  position: absolute; left: -9999px; top: 8px; z-index: 300;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: var(--r-sm);
}
.skip-link:focus { left: 8px; }

:focus-visible { outline: 2.5px solid var(--blue); outline-offset: 2px; border-radius: 4px; }

/* ---------------- C/T signature motif ---------------- */
.ct-window {
  display: inline-flex; align-items: center; justify-content: center; gap: 4px;
  width: 34px; height: 20px; border-radius: 4px;
  background: #fdfeff; border: 1px solid var(--line-strong);
  box-shadow: inset 0 1px 3px rgba(10,27,51,0.08);
  flex: none;
}
.ct-window i { display: block; width: 3px; height: 12px; border-radius: 2px; }
.ct-window i.c { background: var(--blue); }
.ct-window i.t { background: var(--green); opacity: 0; transform: scaleY(0.2); transition: opacity 0.35s ease, transform 0.35s ease; }
.ct-window i.t.on, .ct-window.on i.t { opacity: 1; transform: scaleY(1); }
.ct-window.big { width: 56px; height: 32px; }
.ct-window.big i { width: 4px; height: 18px; }
.ct-mini { display: inline-flex; gap: 2.5px; align-items: center; margin-right: 2px; }
.ct-mini i { display: block; width: 2.5px; height: 10px; border-radius: 2px; }
.ct-mini i.c { background: currentColor; opacity: 0.95; }
.ct-mini i.t { background: var(--mint); }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.92rem;
  padding: 12px 22px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; text-decoration: none; line-height: 1.2;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-sm { padding: 9px 16px; font-size: 0.85rem; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 2px 8px rgba(30, 92, 230, 0.28); }
.btn-primary:hover { background: var(--blue-bright); box-shadow: 0 4px 14px rgba(30, 92, 230, 0.34); }
.btn-ghost { background: var(--white); color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-whatsapp { background: var(--green); color: #fff; box-shadow: 0 2px 8px rgba(29, 169, 126, 0.3); }
.btn-whatsapp:hover { background: #17966f; }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--tint); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.45); }
.btn-outline-light:hover { border-color: #fff; }

.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid var(--line-strong); background: #fff; color: var(--ink); cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.icon-btn:hover:not(:disabled) { border-color: var(--blue); color: var(--blue); }
.icon-btn:disabled { opacity: 0.35; cursor: default; }

.badge {
  min-width: 19px; height: 19px; padding: 0 5px; border-radius: 999px;
  background: var(--green); color: #fff; font-size: 0.7rem; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center; line-height: 1;
}

/* ---------------- Intro ---------------- */
.intro {
  position: fixed; inset: 0; z-index: 1000; background: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
.intro.done { opacity: 0; visibility: hidden; pointer-events: none; }
.intro[data-off] { display: none; }
.intro-inner { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.intro-mark { width: 74px; height: auto; animation: introMark 0.7s cubic-bezier(0.2, 0.7, 0.3, 1) both; }
.intro-word { text-align: center; animation: introWord 0.7s 0.18s cubic-bezier(0.2, 0.7, 0.3, 1) both; }
.intro-name { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; letter-spacing: 0.14em; color: var(--navy); }
.intro-sub { display: block; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.42em; color: var(--green); margin-top: 2px; }
.intro-line { width: 150px; height: 2px; background: var(--line); border-radius: 2px; overflow: hidden; margin-top: 6px; }
.intro-line span { display: block; height: 100%; width: 100%; background: linear-gradient(90deg, var(--blue), var(--mint)); transform-origin: left; animation: introLine 1.15s 0.25s ease both; }
.intro-skip {
  position: absolute; bottom: 28px; right: 28px;
  background: none; border: 1.5px solid var(--line-strong); border-radius: 999px;
  padding: 7px 16px; font-family: var(--font-body); font-size: 0.8rem; font-weight: 600;
  color: var(--muted); cursor: pointer;
}
.intro-skip:hover { color: var(--ink); border-color: var(--ink); }
@keyframes introMark { from { opacity: 0; transform: translateY(14px) scale(0.94); } to { opacity: 1; transform: none; } }
@keyframes introWord { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes introLine { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 2px 12px rgba(10,27,51,0.05); }
.header-row { display: flex; align-items: center; gap: 20px; height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand-mark { width: 32px; height: auto; }
.brand-text strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; letter-spacing: 0.1em; color: var(--navy); line-height: 1.05; }
.brand-text small { display: block; font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.32em; color: var(--green); }
.main-nav { display: flex; gap: 4px; margin-left: auto; }
.main-nav a {
  text-decoration: none; color: var(--muted); font-weight: 500; font-size: 0.9rem;
  padding: 8px 12px; border-radius: 8px; transition: color 0.15s ease, background 0.15s ease;
}
.main-nav a:hover { color: var(--ink); background: var(--tint); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.enquiry-btn { position: relative; }
.nav-toggle { display: none; }
.mobile-nav { display: none; }

/* ---------------- Hero ---------------- */
.hero { padding: clamp(44px, 7vw, 88px) 0 clamp(36px, 5vw, 64px); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.eyebrow {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue); font-weight: 500; margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex: none; }
.eyebrow-invert { color: var(--mint); }
.hero h1 { max-width: 15ch; }
.hero-lead { font-size: 1.06rem; color: var(--muted); max-width: 52ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 30px; }
.hero-facts { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 26px; font-size: 0.86rem; color: var(--navy); }
.hero-facts .mono { color: var(--green); margin-right: 8px; }

.hero-visual { position: relative; display: flex; justify-content: center; }
.pack-card {
  margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: 20px; max-width: 440px; width: 100%;
  transform: rotate(-1.2deg);
}
.pack-card img { border-radius: var(--r-sm); }
.pack-chip {
  position: absolute; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-md); padding: 9px 14px; font-size: 0.82rem; font-weight: 600; color: var(--ink);
  display: flex; flex-direction: column; gap: 1px;
}
.pack-chip .mono { color: var(--blue); font-size: 0.6rem; }
.chip-a { top: -14px; right: 2%; transform: rotate(1.5deg); }
.chip-b { bottom: -16px; left: -3%; transform: rotate(-1deg); }
.ct-tag {
  position: absolute; top: -14px; left: 4%;
  display: flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  box-shadow: var(--shadow-md); padding: 8px 16px 8px 10px; font-size: 0.8rem; font-weight: 600; color: var(--green);
}

/* ---------------- Audience strip ---------------- */
.audience { border-block: 1px solid var(--line); background: var(--white); padding: 18px 0; }
.audience-row { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.audience-label { margin: 0; font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); flex: none; }
.audience-list { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 10px; margin: 0; padding: 0; }
.audience-list li {
  font-size: 0.83rem; font-weight: 500; color: var(--navy);
  background: var(--tint); border: 1px solid transparent; border-radius: 999px; padding: 6px 14px;
}

/* ---------------- Section heads ---------------- */
.section-head { max-width: 640px; margin-bottom: clamp(28px, 4vw, 44px); }
.section-lead { color: var(--muted); }

/* ---------------- Catalogue ---------------- */
.catalogue-tools { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-chip {
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; color: var(--muted);
  background: var(--white); border: 1.5px solid var(--line-strong); border-radius: 999px;
  padding: 8px 15px; cursor: pointer; transition: all 0.15s ease;
}
.filter-chip:hover { border-color: var(--blue); color: var(--blue); }
.filter-chip.is-active { background: var(--navy); border-color: var(--navy); color: #fff; }
.chip-count { opacity: 0.65; font-weight: 500; font-size: 0.78rem; margin-left: 2px; }
.search-box {
  display: flex; align-items: center; gap: 8px; background: var(--white);
  border: 1.5px solid var(--line-strong); border-radius: 999px; padding: 8px 16px; color: var(--muted);
  min-width: 250px; flex: 1; max-width: 320px;
}
.search-box:focus-within { border-color: var(--blue); }
.search-box input { border: none; outline: none; background: none; font-family: var(--font-body); font-size: 0.9rem; width: 100%; color: var(--ink); }
.result-note { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em; color: var(--muted); min-height: 1.2em; margin: 0 0 18px; }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(295px, 1fr)); gap: 18px; }
.product-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 18px; display: flex; flex-direction: column; gap: 12px; text-align: left;
  cursor: pointer; position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  animation: cardIn 0.45s cubic-bezier(0.2, 0.7, 0.3, 1) both;
  animation-delay: calc(var(--i, 0) * 45ms);
}
@keyframes cardIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.product-card.in-enquiry { border-color: var(--green); box-shadow: 0 0 0 1px var(--green), var(--shadow-sm); }
.card-top { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.card-ref { color: var(--muted); }
.card-state { display: flex; align-items: center; gap: 7px; font-size: 0.72rem; font-weight: 700; color: var(--green); letter-spacing: 0.04em; }
.card-state .state-label { opacity: 0; transition: opacity 0.3s ease; }
.product-card.in-enquiry .card-state .state-label { opacity: 1; }
.card-img { background: linear-gradient(180deg, #fbfdff, var(--tint)); border: 1px solid var(--line); border-radius: var(--r-md); padding: 14px; }
.card-img img { border-radius: 4px; }
.product-card h3 { margin: 0; font-size: 1.02rem; }
.card-target { font-size: 0.85rem; color: var(--muted); margin: 0; flex: 1; }
.card-specs { display: flex; flex-wrap: wrap; gap: 6px; }
.spec-chip {
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.05em;
  background: var(--tint); color: var(--navy); border-radius: 6px; padding: 4px 8px;
}
.card-actions { display: flex; gap: 8px; margin-top: 2px; }
.card-add {
  flex: 1; font-family: var(--font-body); font-weight: 600; font-size: 0.86rem;
  border: 1.5px solid var(--blue); color: var(--blue); background: #fff;
  border-radius: 999px; padding: 9px 12px; cursor: pointer; transition: all 0.15s ease;
}
.card-add:hover { background: var(--blue); color: #fff; }
.product-card.in-enquiry .card-add { border-color: var(--green); color: var(--green); background: var(--green-soft); }
.product-card.in-enquiry .card-add:hover { background: var(--green); color: #fff; }
.card-view {
  font-family: var(--font-body); font-weight: 600; font-size: 0.86rem;
  border: 1.5px solid var(--line-strong); color: var(--ink); background: #fff;
  border-radius: 999px; padding: 9px 16px; cursor: pointer; transition: all 0.15s ease;
}
.card-view:hover { border-color: var(--ink); }

.empty-state {
  text-align: center; padding: 56px 20px; background: var(--white);
  border: 1.5px dashed var(--line-strong); border-radius: var(--r-lg); color: var(--muted);
}
.empty-state p:first-child { color: var(--ink); }

/* ---------------- Why ---------------- */
.why { background: var(--white); border-block: 1px solid var(--line); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.why-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; }
.why-num {
  display: inline-flex; width: 30px; height: 30px; align-items: center; justify-content: center;
  border-radius: 8px; background: var(--navy); color: var(--mint); font-size: 0.8rem; margin-bottom: 14px;
}
.why-card p { margin: 0; font-size: 0.92rem; color: var(--muted); }

/* ---------------- Process ---------------- */
.process-track { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 26px; counter-reset: step; }
.process-track li { position: relative; counter-increment: step; }
.process-track li::before {
  content: "0" counter(step);
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; color: var(--blue);
  display: block; margin-bottom: 10px;
}
.step-line { display: block; height: 2.5px; border-radius: 2px; background: linear-gradient(90deg, var(--blue), var(--mint)); margin-bottom: 16px; }
.process-track h3 { margin-bottom: 6px; }
.process-track p { margin: 0; font-size: 0.9rem; color: var(--muted); }

/* ---------------- About ---------------- */
.about { background: var(--white); border-block: 1px solid var(--line); }
.about-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: clamp(28px, 5vw, 64px); align-items: start; }
.about p { color: var(--muted); max-width: 54ch; }
.about h2 { max-width: 18ch; }
.about-facts { margin: 0; display: grid; gap: 0; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--bg); }
.about-facts > div { padding: 15px 20px; display: grid; grid-template-columns: 150px 1fr; gap: 12px; align-items: baseline; }
.about-facts > div + div { border-top: 1px solid var(--line); }
.about-facts dt { color: var(--green); }
.about-facts dd { margin: 0; font-size: 0.92rem; font-weight: 500; }
.about-facts a { color: var(--blue); text-decoration: none; }
.about-facts a:hover { text-decoration: underline; }

/* ---------------- Partnerships ---------------- */
.partner-panel {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-deep) 100%);
  border-radius: 22px; color: #fff; padding: clamp(30px, 5vw, 56px);
  display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 56px); align-items: center;
}
.partner-copy h2 { color: #fff; }
.partner-copy p { color: rgba(255, 255, 255, 0.78); margin: 0; max-width: 56ch; }
.partner-actions { display: flex; flex-direction: column; gap: 12px; }

/* ---------------- Enquiry ---------------- */
.enquiry-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(20px, 3vw, 36px); align-items: start; }
.enquiry-items-panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px; }
.panel-title { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.panel-title .mono { color: var(--muted); }
.enquiry-items { display: grid; gap: 10px; }
.enquiry-item {
  display: grid; grid-template-columns: 1fr auto; gap: 8px 14px; align-items: center;
  border: 1px solid var(--line); border-radius: var(--r-md); padding: 12px 14px; background: var(--bg);
}
.enquiry-item-name { font-weight: 600; font-size: 0.92rem; line-height: 1.35; }
.enquiry-item-ref { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.06em; color: var(--muted); display: block; margin-top: 2px; }
.enquiry-item-controls { display: flex; align-items: center; gap: 8px; }
.remove-btn {
  border: none; background: none; color: var(--muted); cursor: pointer; padding: 6px;
  border-radius: 6px; display: inline-flex; transition: color 0.15s ease, background 0.15s ease;
}
.remove-btn:hover { color: #c0392b; background: #fdeeec; }
.enquiry-empty { text-align: center; color: var(--muted); padding: 28px 12px; display: none; flex-direction: column; align-items: center; gap: 12px; }
.enquiry-empty.show { display: flex; }
.enquiry-empty p { margin: 0; }

.qty-stepper { display: inline-flex; align-items: center; border: 1.5px solid var(--line-strong); border-radius: 999px; background: #fff; overflow: hidden; }
.qty-btn {
  width: 36px; height: 36px; border: none; background: none; font-size: 1.15rem; font-weight: 600;
  color: var(--navy); cursor: pointer; line-height: 1; transition: background 0.15s ease;
}
.qty-btn:hover { background: var(--tint); }
.qty-stepper input {
  width: 64px; border: none; outline: none; text-align: center;
  font-family: var(--font-mono); font-size: 0.85rem; font-weight: 500; color: var(--ink);
  -moz-appearance: textfield; appearance: textfield; background: none; padding: 0;
}
.qty-stepper input::-webkit-outer-spin-button, .qty-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.enquiry-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(20px, 3vw, 30px); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 6px; color: var(--navy); }
.req { color: var(--green); }
.field input, .field select, .field textarea {
  width: 100%; border: 1.5px solid var(--line-strong); border-radius: 10px;
  padding: 11px 14px; font-family: var(--font-body); font-size: 0.94rem; color: var(--ink);
  background: var(--bg); transition: border-color 0.15s ease, background 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); background: #fff; }
.field input.invalid, .field select.invalid { border-color: #c0392b; }
.field textarea { resize: vertical; min-height: 76px; }
.form-error { color: #c0392b; font-size: 0.86rem; font-weight: 500; margin: 0 0 12px; }
.send-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.send-note { font-size: 0.78rem; color: var(--muted); margin: 14px 0 0; }

/* ---------------- FAQ ---------------- */
.faq-wrap { max-width: 780px; }
.faq-list details { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); margin-bottom: 10px; overflow: hidden; }
.faq-list summary {
  cursor: pointer; padding: 17px 20px; font-weight: 600; font-size: 0.96rem;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; font-family: var(--font-display); font-size: 1.25rem; color: var(--blue);
  flex: none; transition: transform 0.2s ease;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding: 0 20px 18px; margin: 0; color: var(--muted); font-size: 0.92rem; max-width: 62ch; }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, 0.82); padding: clamp(44px, 6vw, 72px) 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1.2fr 1fr; gap: clamp(24px, 4vw, 48px); padding-bottom: 40px; }
.footer-brand img { width: 104px; height: auto; background: #fff; border-radius: 14px; padding: 12px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; color: rgba(255, 255, 255, 0.6); max-width: 30ch; }
.footer-col h3 { color: var(--mint); font-size: 0.7rem; letter-spacing: 0.16em; margin-bottom: 16px; font-family: var(--font-mono); font-weight: 500; }
.footer-col a, .footer-col p { display: block; color: rgba(255, 255, 255, 0.82); text-decoration: none; font-size: 0.9rem; margin: 0 0 10px; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-col .gst { color: var(--mint); font-size: 0.74rem; margin-top: 14px; }
.footer-legal { border-top: 1px solid rgba(255, 255, 255, 0.12); padding-block: 22px 26px; }
.footer-legal p { font-size: 0.76rem; color: rgba(255, 255, 255, 0.5); max-width: 92ch; margin: 0 0 8px; }

/* ---------------- Quick-view drawer ---------------- */
.drawer-scrim {
  position: fixed; inset: 0; z-index: 400; pointer-events: auto; background: rgba(10, 27, 51, 0.45);
  opacity: 0; transition: opacity 0.25s ease;
  backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
}
.drawer-scrim.show { opacity: 1; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 410;
  width: min(460px, 100vw); background: var(--white);
  box-shadow: -12px 0 48px rgba(10, 27, 51, 0.18);
  display: flex; flex-direction: column;
  transform: translateX(102%); transition: transform 0.32s cubic-bezier(0.25, 0.8, 0.3, 1);
}
.drawer.show { transform: translateX(0); }
.drawer-head { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--line); flex: none; }
.drawer-ref { color: var(--muted); margin: 0; }
.drawer-body { padding: 20px; overflow-y: auto; flex: 1; }
.drawer-img { margin: 0 0 18px; background: linear-gradient(180deg, #fbfdff, var(--tint)); border: 1px solid var(--line); border-radius: var(--r-md); padding: 20px; }
.drawer-img img { border-radius: 4px; margin: 0 auto; }
.drawer-body h3 { font-size: 1.25rem; margin-bottom: 4px; }
.drawer-target { color: var(--muted); font-size: 0.92rem; margin-bottom: 16px; }
.drawer-specs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.drawer-bullets { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 9px; }
.drawer-bullets li { position: relative; padding-left: 22px; font-size: 0.92rem; color: var(--navy); }
.drawer-bullets li::before {
  content: ""; position: absolute; left: 2px; top: 7px; width: 8px; height: 8px;
  border-radius: 2px; background: linear-gradient(135deg, var(--blue), var(--mint));
}
.drawer-fineprint { font-size: 0.74rem; color: var(--muted); border-top: 1px dashed var(--line-strong); padding-top: 14px; margin: 0; }
.drawer-foot { border-top: 1px solid var(--line); padding: 14px 20px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; flex: none; background: var(--bg); }
.drawer-add { flex: 1; min-width: 150px; }
.drawer-nav { display: flex; align-items: center; gap: 8px; width: 100%; justify-content: space-between; }
.drawer-pos { color: var(--muted); }

/* ---------------- Mobile bar & toast ---------------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 300;
  display: none; gap: 8px; padding: 10px max(12px, env(safe-area-inset-left)) max(10px, env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}
.mb-btn {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.84rem;
  border: 1.5px solid var(--line-strong); background: #fff; color: var(--ink);
  border-radius: 999px; padding: 11px 8px; text-decoration: none; cursor: pointer;
}
.mb-primary { background: var(--blue); border-color: var(--blue); color: #fff; }

.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(12px);
  z-index: 500; background: var(--ink); color: #fff; border-radius: 999px;
  padding: 11px 22px; font-size: 0.88rem; font-weight: 500; box-shadow: var(--shadow-lg);
  opacity: 0; transition: opacity 0.25s ease, transform 0.25s ease; pointer-events: none;
  display: flex; align-items: center; gap: 10px; max-width: calc(100vw - 32px); text-align: center;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------------- Legal pages ---------------- */
.legal-page { max-width: 760px; margin: 0 auto; padding: clamp(40px, 6vw, 72px) clamp(18px, 4vw, 32px) 80px; }
.legal-page h1 { font-size: clamp(1.7rem, 1.2rem + 1.6vw, 2.4rem); }
.legal-page h2 { font-size: 1.15rem; margin-top: 2em; }
.legal-page p, .legal-page li { color: var(--muted); font-size: 0.95rem; }
.legal-updated { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; color: var(--green); }
.back-link { display: inline-flex; align-items: center; gap: 6px; text-decoration: none; font-weight: 600; font-size: 0.9rem; margin-bottom: 26px; }

/* ---------------- Responsive ---------------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 12px; padding-bottom: 20px; }
  .about-grid { grid-template-columns: 1fr; }
  .partner-panel { grid-template-columns: 1fr; }
  .partner-actions { flex-direction: row; flex-wrap: wrap; }
  .enquiry-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .main-nav { display: none; }
  .hide-mobile { display: none; }
  .nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 40px; height: 40px; border: 1.5px solid var(--line-strong); border-radius: 10px;
    background: #fff; cursor: pointer; align-items: center;
  }
  .nav-toggle span { display: block; width: 17px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform 0.2s ease; }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-nav { display: block; border-top: 1px solid var(--line); background: #fff; padding: 8px 0 12px; }
  .mobile-nav[hidden] { display: none; }
  .mobile-nav a { display: block; padding: 12px clamp(18px, 4vw, 32px); text-decoration: none; color: var(--ink); font-weight: 600; font-size: 0.98rem; }
  .mobile-nav a:active { background: var(--tint); }
  .mobile-bar { display: flex; }
  body { padding-bottom: 74px; }
  .drawer-foot { padding-bottom: max(14px, env(safe-area-inset-bottom)); }
  .field-row { grid-template-columns: 1fr; }
  .catalogue-tools { flex-direction: column; align-items: stretch; }
  .search-box { max-width: none; }
  .about-facts > div { grid-template-columns: 1fr; gap: 3px; }
  .pack-chip.chip-b { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .send-row { flex-direction: column; }
  .send-row .btn { width: 100%; }
  .enquiry-item { grid-template-columns: 1fr; }
  .enquiry-item-controls { justify-content: space-between; }
}


/* ================= Motion & graphics layer ================= */

/* --- hero background graphics --- */
.hero { position: relative; overflow: hidden; }
.hero > .wrap { position: relative; z-index: 1; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.glow { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.55; }
.glow-a { width: 560px; height: 560px; right: -160px; top: -220px;
  background: radial-gradient(circle, rgba(30,92,230,0.16), transparent 65%);
  animation: glowDrift 14s ease-in-out infinite alternate; }
.glow-b { width: 460px; height: 460px; left: -180px; bottom: -240px;
  background: radial-gradient(circle, rgba(39,173,130,0.13), transparent 65%);
  animation: glowDrift 18s 2s ease-in-out infinite alternate-reverse; }
@keyframes glowDrift { from { transform: translate(0,0) scale(1); } to { transform: translate(36px,24px) scale(1.08); } }
.cassette-ghost { position: absolute; right: -70px; bottom: 22px; width: 520px; color: var(--navy); opacity: 0.05; transform: rotate(-7deg); }

/* --- hero entrance cascade --- */
.hero-copy > * { opacity: 0; transform: translateY(16px);
  animation: rvUp 0.7s cubic-bezier(0.2, 0.7, 0.3, 1) forwards; }
.hero-copy > :nth-child(1) { animation-delay: 0.05s; }
.hero-copy > :nth-child(2) { animation-delay: 0.14s; }
.hero-copy > :nth-child(3) { animation-delay: 0.24s; }
.hero-copy > :nth-child(4) { animation-delay: 0.34s; }
.hero-copy > :nth-child(5) { animation-delay: 0.44s; }
.hero-copy > :nth-child(6) { animation-delay: 0.54s; }
.hero-visual .reach-card { opacity: 0; animation: packIn 0.9s 0.3s cubic-bezier(0.2, 0.7, 0.3, 1) forwards; }
@keyframes rvUp { to { opacity: 1; transform: none; } }
@keyframes packIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes chipPop { from { opacity: 0; transform: translateY(12px) scale(0.85); } to { opacity: 1; transform: translateY(0) scale(1); } }

/* --- continuous ambient float (hero only) --- */
@keyframes floatY { from { translate: 0 0; } to { translate: 0 -8px; } }
.hero-visual .pack-card { }
.hero-visual .chip-a { }


/* --- signal trace draw --- */
.signal { display: block; width: min(420px, 100%); height: 44px; margin-top: 30px; }
.signal-path { stroke-dasharray: 620; stroke-dashoffset: 620; animation: sigDraw 1.6s 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
@keyframes sigDraw { to { stroke-dashoffset: 0; } }

/* --- hero ct-tag: T-line periodically re-develops --- */
@media (prefers-reduced-motion: no-preference) {
  .hero-visual .ct-window .t.on { animation: tDevelop 6s 2.4s ease-in-out infinite; }
}
@keyframes tDevelop {
  0%, 12% { opacity: 0; transform: scaleY(0.2); }
  26%, 100% { opacity: 1; transform: scaleY(1); }
}

/* --- scroll reveal system --- */
.rv { opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.3, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
  transition-delay: var(--rv-d, 0ms); }
.rv.rv-in { opacity: 1; transform: none; }

/* section-head kicker underline draw */
.section-head { position: relative; }
.section-head::after { content: ""; display: block; width: 54px; height: 3px; margin-top: 16px;
  border-radius: 2px; background: linear-gradient(90deg, var(--blue), var(--mint));
  transform: scaleX(0); transform-origin: left; transition: transform 0.8s 0.2s cubic-bezier(0.2, 0.7, 0.3, 1); }
.section-head.rv-in::after { transform: scaleX(1); }

/* step connector grows on reveal */
.process-track li .step-line { transform: scaleX(0); transform-origin: left;
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1); transition-delay: var(--rv-d, 0ms); }
.process-track li.rv-in .step-line { transform: scaleX(1); }

/* --- why-card icons + hover --- */
.why-ic { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center;
  border-radius: 12px; background: var(--tint); color: var(--blue); margin-bottom: 14px;
  transition: background 0.3s, color 0.3s, transform 0.3s; }
.why-ic svg { width: 21px; height: 21px; }
.why-card { transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.3, 1), box-shadow 0.35s, border-color 0.35s; }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(30,92,230,0.25); }
.why-card:hover .why-ic { background: var(--blue); color: #fff; transform: rotate(-4deg) scale(1.05); }
.why-card .why-num { position: absolute; top: 20px; right: 20px; opacity: 0.35; }
.why-card { position: relative; }

/* --- product card media zoom + lift --- */
.product-card { transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.3, 1), box-shadow 0.35s, border-color 0.35s; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-card .card-img { overflow: hidden; }
.product-card .card-img img { transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1); }
.product-card:hover .card-img img { transform: scale(1.045); }

/* --- primary button shine sweep --- */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after { content: ""; position: absolute; top: 0; bottom: 0; left: -70%; width: 45%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-18deg); transition: left 0.6s ease; }
.btn-primary:hover::after { left: 125%; }

/* --- header shadow on scroll --- */
.site-header { transition: box-shadow 0.3s; }
.site-header.scrolled { box-shadow: 0 6px 24px -14px rgba(7,23,47,0.28); }

/* --- badge pop --- */
@keyframes badgePop { 0% { transform: scale(1); } 40% { transform: scale(1.35); } 100% { transform: scale(1); } }
.badge.pop { animation: badgePop 0.4s cubic-bezier(0.3, 1.4, 0.5, 1); }

/* --- partner panel C/T watermark --- */
.partner-panel { position: relative; overflow: hidden; }
.partner-panel::before { content: ""; position: absolute; right: -30px; top: -30px; width: 240px; height: 240px;
  border: 2px solid rgba(255,255,255,0.07); border-radius: 40px; transform: rotate(12deg); pointer-events: none; }
.partner-panel::after { content: ""; position: absolute; right: 60px; top: 46px; width: 8px; height: 118px;
  border-radius: 4px; background: rgba(255,255,255,0.09);
  box-shadow: 34px 0 0 rgba(101,214,180,0.22); transform: rotate(12deg); pointer-events: none; }
.partner-panel > * { position: relative; z-index: 1; }


/* --- quick add inside enquiry panel --- */
.quick-add { margin-top: 18px; padding-top: 18px; border-top: 1px dashed var(--line); }
.quick-add-label { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue); margin: 0 0 10px; }
.quick-add-row { display: flex; gap: 8px; }
.quick-add-row select {
  flex: 1; min-width: 0; padding: 10px 12px; border: 1px solid var(--line); border-radius: var(--r-md);
  background: #fff; font: inherit; font-size: 0.9rem; color: var(--ink);
}
.quick-add-row input {
  width: 86px; padding: 10px 10px; border: 1px solid var(--line); border-radius: var(--r-md);
  font: inherit; font-size: 0.9rem; text-align: center;
}
.quick-add-row select:focus-visible, .quick-add-row input:focus-visible { outline: 2px solid var(--blue); outline-offset: 1px; }
.quick-add-hint { margin: 10px 0 0; font-size: 0.76rem; color: var(--muted); }
@media (max-width: 560px) {
  .quick-add-row { flex-wrap: wrap; }
  .quick-add-row select { flex-basis: 100%; }
  .quick-add-row input { flex: 1; }
}


/* ================= India map hero ================= */
.map-wrap { width: min(430px, 100%); margin-inline: auto; }
.india-map { display: block; width: 100%; height: auto; filter: drop-shadow(0 24px 40px rgba(7,23,47,0.10)); }
.india-map .st { fill: url(#fillgrad); stroke: #A5C2F0; stroke-width: 0.75; stroke-linejoin: round; }
.india-map .outline {
  fill: none; stroke: url(#mapgrad); stroke-width: 2.6; stroke-linejoin: round; stroke-linecap: round;
  stroke-dasharray: 1; stroke-dashoffset: 1;
  animation: mapDraw 2.2s 0.55s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes mapDraw { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) { .india-map .outline { stroke-dashoffset: 0; animation: none; } }
.india-map .states { opacity: 0; animation: rvUp 1s 1.4s ease forwards; }
@media (prefers-reduced-motion: reduce) { .india-map .states { opacity: 1; animation: none; } }
.india-map .rt { stroke: url(#mapgrad); stroke-width: 2.4; fill: none; stroke-linecap: round; stroke-dasharray: 1; stroke-dashoffset: 1; }
.india-map .rt-under { stroke: url(#mapgrad); stroke-width: 7; opacity: 0.16; fill: none; stroke-linecap: round; stroke-dasharray: 1; stroke-dashoffset: 1; }
.india-map .dst { fill: var(--blue); }
.india-map .dst-ring { fill: none; stroke: var(--blue); stroke-width: 1.6; }
.india-map .mv { fill: var(--green); }
.india-map .o-core { fill: var(--green); stroke: #fff; stroke-width: 2.5; }
.india-map .o-ring { fill: none; stroke: var(--green); stroke-width: 2; }
.india-map .o-label { font-family: var(--font-mono); font-size: 13px; font-weight: 600; letter-spacing: 0.12em; fill: var(--navy); }

.map-ticker {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 6px; min-height: 34px;
}
.tick-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex: none;
  box-shadow: 0 0 0 0 rgba(39,173,130,0.45); animation: tickPulse 2s ease-out infinite; }
@keyframes tickPulse { 70% { box-shadow: 0 0 0 9px rgba(39,173,130,0); } 100% { box-shadow: 0 0 0 0 rgba(39,173,130,0); } }
.tick-text { font-family: var(--font-mono); font-size: 0.82rem; letter-spacing: 0.06em; font-weight: 600;
  color: var(--navy); text-transform: uppercase; }
.tick-text.swap-out { animation: tickOut 0.3s ease forwards; }
.tick-text.swap-in { animation: tickIn 0.34s ease; }
@keyframes tickOut { to { opacity: 0; transform: translateY(-8px); } }
@keyframes tickIn { from { opacity: 0; transform: translateY(10px); } }

@media (max-width: 900px) { .map-wrap { width: min(360px, 92%); } }

/* ================= DNA helix ================= */
.dna { display: block; width: min(440px, 100%); height: auto; margin-top: 30px; overflow: visible; }
.dna .strand { stroke-width: 2.6; stroke-linecap: round; stroke-dasharray: 7 9; }
.dna .strand-blue { stroke: var(--blue); animation: dnaFlow 2.8s linear infinite; }
.dna .strand-green { stroke: var(--green); animation: dnaFlow 2.8s linear infinite reverse; }
@keyframes dnaFlow { to { stroke-dashoffset: -64; } }
.dna .rung { stroke: #B9CDF3; stroke-width: 2; animation: rungGlow 2.2s ease-in-out infinite; animation-delay: var(--rd, 0s); }
@keyframes rungGlow { 0%, 100% { stroke: #C9D8F4; opacity: 0.55; } 50% { stroke: var(--mint); opacity: 1; } }


/* prevent long option names from widening the enquiry column */
.enquiry-grid > * { min-width: 0; }
.enquiry-items-panel { min-width: 0; }
.quick-add-row select { width: 100%; max-width: 100%; text-overflow: ellipsis; }


/* --- show more / less (all products) --- */
.show-more-wrap { display: flex; justify-content: center; margin-top: 30px; }


/* trademark superscript */
.tm { font-size: 0.62em; font-weight: 800; vertical-align: super; letter-spacing: 0.02em; margin-left: 2px; opacity: 0.95; }


/* ================= Reach card (handoff art direction) ================= */
.reach-card {
  position: relative; width: min(470px, 100%); margin-inline: auto;
  background: linear-gradient(160deg, #FFFFFF 0%, #F3F7FD 58%, #EFF6F4 100%);
  border: 1px solid rgba(30, 92, 230, 0.08);
  border-radius: 26px; padding: 22px 22px 16px;
  box-shadow: 0 30px 60px -30px rgba(7, 23, 47, 0.18);
  overflow: hidden;
}
.reach-card::before { content: ""; position: absolute; right: -70px; top: -40px; width: 240px; height: 240px;
  border-radius: 50%; background: radial-gradient(circle, rgba(101, 214, 180, 0.20), transparent 68%); pointer-events: none; }
.reach-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 6px; }
.reach-kicker, .reach-pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 0.63rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy2, #17345E);
}
.reach-pill { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 7px 13px; box-shadow: var(--shadow-sm, 0 2px 8px rgba(7,23,47,0.06)); }
.reach-kicker .dot, .reach-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex: none;
  box-shadow: 0 0 0 0 rgba(39,173,130,0.4); animation: tickPulse 2.2s ease-out infinite; }
.reach-map { position: relative; }
.reach-svg { display: block; width: 100%; height: auto; }

.reach-svg .sil { fill: url(#silgrad); }
.reach-svg .guides path { fill: none; stroke: rgba(30, 92, 230, 0.13); stroke-width: 1; stroke-dasharray: 2 5; vector-effect: non-scaling-stroke; }
.reach-svg .lives path {
  fill: none; stroke: url(#routegrad); stroke-width: 1.7; stroke-linecap: round; vector-effect: non-scaling-stroke;
  stroke-dasharray: 1; stroke-dashoffset: 1; opacity: 0;
  animation: routeDraw 7s cubic-bezier(0.65, 0, 0.35, 1) var(--rdel, 0s) infinite;
}
@keyframes routeDraw {
  0%, 8% { stroke-dashoffset: 1; opacity: 0; }
  14% { opacity: 1; }
  42%, 74% { stroke-dashoffset: 0; opacity: 1; }
  86%, 100% { stroke-dashoffset: 0; opacity: 0; }
}
.reach-svg .node { fill: #2F74FF; opacity: 0; transform-box: fill-box; transform-origin: center;
  animation: nodeArrive 7s cubic-bezier(0.2, 0.8, 0.2, 1) var(--rdel, 0s) infinite; }
@keyframes nodeArrive {
  0%, 38% { opacity: 0; transform: scale(0.3); }
  44% { opacity: 1; transform: scale(1.35); }
  50%, 74% { opacity: 0.95; transform: scale(1); }
  86%, 100% { opacity: 0; transform: scale(0.6); }
}
.reach-svg .mvr { fill: var(--green); }
.reach-svg .origin .core { fill: var(--green); stroke: #fff; stroke-width: 2; }
.reach-svg .origin .wave { fill: none; stroke: rgba(39, 173, 130, 0.46); stroke-width: 1.4;
  transform-box: fill-box; transform-origin: center; animation: originWave 2.4s ease-out infinite; }
.reach-svg .origin .w2 { animation-delay: 1.2s; }
@keyframes originWave { from { transform: scale(1); opacity: 0.8; } to { transform: scale(4.2); opacity: 0; } }
.reach-svg .n-name { font-family: var(--font-body); font-size: 15px; font-weight: 700; fill: var(--navy); }
.reach-svg .n-sub { font-family: var(--font-mono); font-size: 8.5px; font-weight: 600; letter-spacing: 0.12em; fill: #6E88B8; }

.reach-status {
  position: absolute; right: 4px; bottom: 12%;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 16px 34px -18px rgba(7, 23, 47, 0.25);
  padding: 11px 16px; display: flex; flex-direction: column; gap: 2px;
  animation: statusFloat 5s ease-in-out infinite;
}
.reach-status strong { font-family: var(--font-display); font-size: 0.92rem; color: var(--ink); }
.reach-status span { font-size: 0.72rem; color: var(--muted); }
@keyframes statusFloat { 0%, 100% { translate: 0 0; } 50% { translate: 0 -6px; } }

.reach-regions {
  margin: 10px 0 2px; text-align: center;
  font-family: var(--font-mono); font-size: 0.63rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: #7C90B4;
}
.reach-regions i { font-style: normal; color: var(--green); margin: 0 6px; }
@media (max-width: 900px) { .reach-card { width: min(400px, 96%); } .reach-status { bottom: 8%; } }


/* movers on the same CSS clock as route draw (perfect sync) */
.reach-svg .mvr {
  fill: var(--green); opacity: 0;
  offset-rotate: 0deg; offset-distance: 0%;
  animation: mvrRun 7s cubic-bezier(0.65, 0, 0.35, 1) var(--rdel, 0s) infinite;
}
@keyframes mvrRun {
  0%, 8%   { offset-distance: 0%; opacity: 0; }
  12%      { opacity: 0.95; }
  38%      { opacity: 0.95; }
  42%      { offset-distance: 100%; opacity: 0; }
  100%     { offset-distance: 100%; opacity: 0; }
}


/* email fallbacks */
.email-fallback { margin: 14px 0 0; font-size: 0.8rem; color: var(--muted); }
.linklike { background: none; border: none; padding: 0; font: inherit; color: var(--blue); cursor: pointer; text-decoration: underline; }
.email-fallback a { color: var(--blue); }


/* --- coming soon products --- */
.product-card.coming-soon { background: #FBFCFE; }
.product-card.coming-soon .card-img img { filter: grayscale(0.55) opacity(0.75); }
.product-card.coming-soon h3, .product-card.coming-soon .card-target { color: #8A98AF; }
.product-card.coming-soon .spec-chip { opacity: 0.6; }
.soon-badge {
  font-family: var(--font-mono); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: #8A6D1F;
  background: #FCF3D7; border: 1px solid #F0DFA6; border-radius: 999px; padding: 4px 10px;
}
.card-add:disabled {
  color: #97A3B8; border-color: var(--line); background: #F2F5FA; cursor: not-allowed;
}
.drawer.is-soon .drawer-qty, .drawer.is-soon #drawerAdd { opacity: 0.55; }
#drawerAdd:disabled { cursor: not-allowed; }


/* partnership fallback line */
.partner-alt { margin: 4px 0 0; font-size: 0.78rem; color: rgba(255,255,255,0.75); }
.partner-alt a { color: #9FE8CF; text-decoration: underline; }
