/* ==========================================================================
   Simulok.ai — marketing site
   Brand: deep navy canvas, teal signal, Plus Jakarta Sans + DM Sans.
   ========================================================================== */

:root {
  /* Canvas */
  --ink-1000: #030A12;
  --ink-950:  #061321;
  --ink-900:  #08192B;
  --ink-850:  #0B2136;
  --ink-800:  #102C45;

  /* Signal */
  --teal-200: #B8F2E8;
  --teal-300: #7FE3D4;
  --teal-400: #3FD3BE;
  --teal-500: #0D9B8A;
  --teal-600: #0B8577;

  /* Accents used sparingly for segment coding */
  --amber:  #F0B429;
  --violet: #A78BFA;
  --coral:  #FF8A6B;
  --sky:    #6FC3FF;

  /* Type */
  --text:      #EAF3FA;
  --text-soft: #C3D4E3;
  --muted:     #8FA6BC;
  --faint:     #6C839A;

  /* Lines & glass */
  --line:        rgba(148, 191, 214, 0.14);
  --line-strong: rgba(148, 191, 214, 0.26);
  --glass:       rgba(255, 255, 255, 0.035);
  --glass-2:     rgba(255, 255, 255, 0.055);

  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.25);
  --shadow:    0 18px 50px rgba(0, 0, 0, 0.40);
  --shadow-lg: 0 40px 90px rgba(0, 0, 0, 0.55);
  --glow:      0 0 0 1px rgba(63, 211, 190, 0.35), 0 18px 50px rgba(13, 155, 138, 0.22);

  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --display: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --body:    "DM Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  --wrap: 1180px;
  --nav-h: 68px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 18px);
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--body);
  background: var(--ink-1000);
  color: var(--text);
  line-height: 1.6;
  font-size: 16.5px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
ul { list-style: none; }
::selection { background: rgba(63, 211, 190, 0.28); }

:focus-visible {
  outline: 2px solid var(--teal-400);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--teal-400); color: #04121C; font-weight: 700;
  padding: 0.6rem 1rem; border-radius: 8px; transition: top 0.2s;
}
.skip:focus { top: 12px; }

/* ---------- Layout primitives ---------- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.sec { position: relative; padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.sec--tight { padding-block: clamp(3rem, 6vw, 5rem); }

.rule {
  height: 1px; border: 0;
  background: linear-gradient(90deg, transparent, var(--line-strong) 18%, var(--line-strong) 82%, transparent);
}

/* Section head */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--display);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--teal-300);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal-400));
}

h1, h2, h3, h4 { font-family: var(--display); font-weight: 800; letter-spacing: -0.028em; line-height: 1.08; }
h2 { font-size: clamp(1.9rem, 4.1vw, 3rem); }
h3 { font-size: 1.16rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1.25; }

.lede {
  color: var(--text-soft);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  max-width: 62ch;
  margin-top: 1.15rem;
}
.sec-head { max-width: 900px; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }

.grad-text {
  background: linear-gradient(100deg, var(--teal-200), var(--teal-400) 42%, var(--sky));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--display); font-weight: 700; font-size: 0.95rem;
  padding: 0.86rem 1.5rem; border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex: none; transition: transform 0.35s var(--ease); }
.btn--primary {
  background: linear-gradient(135deg, var(--teal-300), var(--teal-500));
  color: #032019;
  box-shadow: 0 12px 30px rgba(13, 155, 138, 0.32);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(13, 155, 138, 0.45); }
.btn--primary:hover svg { transform: translateX(3px); }
.btn--ghost {
  border-color: var(--line-strong);
  background: var(--glass);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { border-color: var(--teal-400); color: var(--teal-200); transform: translateY(-2px); }
.btn--sm { padding: 0.6rem 1.1rem; font-size: 0.86rem; }
.btn--wide { width: 100%; }

.textlink {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--display); font-weight: 700; font-size: 0.92rem;
  color: var(--teal-300);
}
.textlink svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }
.textlink:hover svg { transform: translateX(4px); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(5, 14, 24, 0.78);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav__inner { display: flex; align-items: center; gap: 1.6rem; width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.brand {
  font-family: var(--display); font-weight: 800; font-size: 1.16rem;
  letter-spacing: -0.035em; display: flex; align-items: center; gap: 0.55rem;
}
.brand b { font-weight: 800; }
.brand i { font-style: normal; color: var(--teal-300); }
.brand__mark { width: 26px; height: 26px; flex: none; }

.nav__links { display: flex; gap: 1.35rem; margin-left: auto; }
.nav__links a {
  position: relative; font-size: 0.9rem; font-weight: 500; color: var(--text-soft);
  white-space: nowrap;
  transition: color 0.2s ease;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 1.5px;
  background: var(--teal-400); transition: right 0.35s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { right: 0; }
.nav__cta { display: flex; align-items: center; gap: 0.6rem; }

.nav__burger {
  display: none; width: 42px; height: 42px; border-radius: 12px;
  border: 1px solid var(--line-strong); background: var(--glass);
  align-items: center; justify-content: center; margin-left: auto;
}
.nav__burger span { display: block; width: 17px; height: 1.6px; background: var(--text); position: relative; transition: 0.3s var(--ease); }
.nav__burger span::before, .nav__burger span::after {
  content: ""; position: absolute; left: 0; width: 17px; height: 1.6px; background: var(--text); transition: 0.3s var(--ease);
}
.nav__burger span::before { top: -5.5px; }
.nav__burger span::after  { top: 5.5px; }
.nav.is-open .nav__burger span { background: transparent; }
.nav.is-open .nav__burger span::before { top: 0; transform: rotate(45deg); }
.nav.is-open .nav__burger span::after  { top: 0; transform: rotate(-45deg); }

.progress {
  position: fixed; top: 0; left: 0; height: 2px; z-index: 101; width: 0;
  background: linear-gradient(90deg, var(--teal-500), var(--teal-300), var(--sky));
  transition: width 0.1s linear;
}

.drawer {
  position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 99;
  background: rgba(5, 14, 24, 0.97); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 1.2rem 0 1.6rem;
  display: none;
}
.nav.is-open ~ .drawer { display: block; animation: dropIn 0.35s var(--ease); }
@keyframes dropIn { from { opacity: 0; transform: translateY(-10px); } }
.drawer a {
  display: block; padding: 0.85rem 0; font-family: var(--display); font-weight: 600;
  border-bottom: 1px solid var(--line); color: var(--text-soft);
}
.drawer .btn { margin-top: 1.2rem; }

/* ---------- Ambient background ---------- */
.aurora {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(58% 44% at 78% -4%,  rgba(13, 155, 138, 0.30), transparent 62%),
    radial-gradient(46% 40% at 6% 12%,   rgba(28, 92, 158, 0.28),  transparent 65%),
    radial-gradient(60% 48% at 50% 108%, rgba(13, 155, 138, 0.16), transparent 68%),
    linear-gradient(180deg, var(--ink-950), var(--ink-1000) 60%);
}
.grain {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.30;
  background-image:
    linear-gradient(rgba(148, 191, 214, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 191, 214, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(70% 60% at 50% 25%, #000 20%, transparent 88%);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 25%, #000 20%, transparent 88%);
}

/* Deck's quarter-circle motif */
.arcs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.arcs::before, .arcs::after {
  content: ""; position: absolute; border-radius: 50%;
}
.arcs::before {
  width: 780px; height: 780px; right: -300px; top: -420px;
  background: radial-gradient(circle at 30% 70%, rgba(13, 155, 138, 0.22), transparent 62%);
}
.arcs::after {
  width: 620px; height: 620px; left: -320px; bottom: -300px;
  background: radial-gradient(circle at 70% 30%, rgba(28, 92, 158, 0.20), transparent 62%);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + clamp(3.5rem, 9vw, 7rem)) 0 clamp(3.5rem, 7vw, 6rem);
  overflow: hidden;
}
.hero__grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.42rem 0.95rem 0.42rem 0.5rem; border-radius: 999px;
  border: 1px solid var(--line-strong); background: var(--glass);
  font-size: 0.78rem; color: var(--text-soft); margin-bottom: 1.6rem;
  backdrop-filter: blur(8px);
}
.hero__badge b {
  font-family: var(--display); font-size: 0.66rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: rgba(63, 211, 190, 0.14); color: var(--teal-200);
  padding: 0.22rem 0.55rem; border-radius: 999px;
}
.hero h1 {
  font-size: clamp(2.5rem, 6.6vw, 4.55rem);
  line-height: 1.03;
  letter-spacing: -0.042em;
}
.hero h1 { max-width: 15ch; }
.hero h1 .line { display: block; }
.hero h1 .line > span { display: block; animation: riseIn 0.95s var(--ease) both; }
.hero h1 .line:nth-child(2) > span { animation-delay: 0.14s; }
@keyframes riseIn { from { transform: translateY(26px); opacity: 0; } }

.hero__sub { margin-top: 1.5rem; font-size: clamp(1rem, 1.6vw, 1.16rem); color: var(--text-soft); max-width: 55ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2.1rem; }
.hero__pills { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 2.4rem; }
.pill {
  font-size: 0.8rem; padding: 0.44rem 0.95rem; border-radius: 999px;
  border: 1px solid var(--line); background: var(--glass); color: var(--text-soft);
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.pill:hover { border-color: var(--teal-400); color: var(--teal-200); transform: translateY(-1px); }
.hero__foot {
  margin-top: 1.8rem; font-size: 0.82rem; color: var(--faint);
  display: flex; align-items: center; gap: 0.15rem 0.7rem; flex-wrap: wrap;
}
.hero__foot > span { display: inline-flex; align-items: center; }
.hero__foot .dot {
  display: inline-block; width: 4px; height: 4px; border-radius: 50%;
  background: var(--teal-500); margin-right: 0.7rem; flex: none;
}
.hero__foot b { color: var(--text-soft); font-weight: 600; margin-right: 0.3rem; }

/* ---------- Live decision widget ---------- */
.demo {
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  background: linear-gradient(165deg, rgba(16, 44, 69, 0.85), rgba(6, 19, 33, 0.92));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  backdrop-filter: blur(14px);
}
.demo::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 60% at 50% -10%, rgba(63, 211, 190, 0.16), transparent 60%);
}
.demo__bar {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.75rem 1.1rem; border-bottom: 1px solid var(--line);
  background: rgba(3, 10, 18, 0.5); position: relative; z-index: 1;
}
.demo__dots { display: flex; gap: 5px; }
.demo__dots i { width: 8px; height: 8px; border-radius: 50%; background: rgba(148, 191, 214, 0.25); }
.demo__dots i:first-child { background: rgba(255, 138, 107, 0.55); }
.demo__dots i:nth-child(2) { background: rgba(240, 180, 41, 0.55); }
.demo__dots i:last-child { background: rgba(63, 211, 190, 0.6); }
.demo__title {
  font-family: var(--display); font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}
.demo__round {
  margin-left: auto; font-family: var(--display); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-300);
  background: rgba(63, 211, 190, 0.1); padding: 0.22rem 0.6rem; border-radius: 999px;
}
.demo__body { padding: 1.35rem 1.35rem 1.5rem; position: relative; z-index: 1; }
.demo__role { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); font-family: var(--display); font-weight: 700; }
.demo__prompt { font-family: var(--display); font-weight: 700; font-size: 1.08rem; line-height: 1.35; margin: 0.5rem 0 1.1rem; letter-spacing: -0.02em; }
.demo__opts { display: grid; gap: 0.55rem; }
.opt {
  display: flex; gap: 0.8rem; align-items: flex-start; text-align: left;
  padding: 0.8rem 0.95rem; border-radius: var(--r-sm);
  border: 1px solid var(--line); background: rgba(255, 255, 255, 0.028);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s var(--ease);
  width: 100%;
}
.opt:hover { border-color: var(--teal-400); background: rgba(63, 211, 190, 0.07); transform: translateX(3px); }
.opt__key {
  flex: none; width: 22px; height: 22px; border-radius: 7px;
  display: grid; place-items: center;
  font-family: var(--display); font-size: 0.7rem; font-weight: 800;
  background: rgba(63, 211, 190, 0.13); color: var(--teal-200);
}
.opt__txt { font-size: 0.88rem; color: var(--text-soft); line-height: 1.45; }
.opt.is-picked { border-color: var(--teal-400); background: rgba(63, 211, 190, 0.1); }
.opt[disabled] { cursor: default; }
.opt[disabled]:not(.is-picked) { opacity: 0.45; }
.opt[disabled]:hover { transform: none; }

.demo__result { display: none; }
.demo__result.is-on { display: block; animation: fadeUp 0.5s var(--ease) both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } }

.kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; margin: 0.2rem 0 1rem; }
.kpi {
  border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 0.7rem 0.75rem; background: rgba(255, 255, 255, 0.028);
}
.kpi__l { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); font-family: var(--display); font-weight: 700; }
.kpi__v { font-family: var(--display); font-weight: 800; font-size: 1.24rem; letter-spacing: -0.03em; margin-top: 0.15rem; }
.kpi__d { font-size: 0.72rem; font-weight: 600; }
.kpi__d.up { color: var(--teal-300); }
.kpi__d.down { color: var(--coral); }
.kpi__bar { height: 3px; border-radius: 3px; background: rgba(148, 191, 214, 0.16); margin-top: 0.5rem; overflow: hidden; }
.kpi__bar i { display: block; height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--teal-500), var(--teal-300)); width: 0; transition: width 0.9s var(--ease); }

.consequence {
  border-left: 2px solid var(--teal-400);
  padding: 0.55rem 0 0.55rem 0.85rem;
  font-size: 0.86rem; color: var(--text-soft); line-height: 1.5;
}
.consequence b { color: var(--teal-200); font-family: var(--display); }
.demo__again {
  margin-top: 1rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.demo__note { font-size: 0.74rem; color: var(--faint); }

/* ---------- Cards ---------- */
.card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  padding: 1.5rem 1.45rem;
  transition: transform 0.45s var(--ease), border-color 0.35s ease, box-shadow 0.45s var(--ease);
  overflow: hidden;
}
.card::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0;
  background: radial-gradient(420px 220px at var(--mx, 50%) var(--my, 0%), rgba(63, 211, 190, 0.13), transparent 70%);
  transition: opacity 0.4s ease;
}
.card:hover { transform: translateY(-5px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.card:hover::after { opacity: 1; }
.card p { color: var(--muted); font-size: 0.92rem; margin-top: 0.6rem; }

.ico {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(140deg, rgba(63, 211, 190, 0.18), rgba(63, 211, 190, 0.05));
  border: 1px solid rgba(63, 211, 190, 0.22);
  margin-bottom: 1rem;
}
.ico svg { width: 20px; height: 20px; stroke: var(--teal-300); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.1rem; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 1.1rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.1rem; }

/* ---------- Problem ---------- */
.prob { counter-reset: p; }
.prob .card { padding-top: 1.6rem; }
.prob .card__n {
  font-family: var(--display); font-weight: 800; font-size: 0.78rem;
  color: var(--teal-300); letter-spacing: 0.1em;
  display: inline-block; margin-bottom: 0.9rem;
  border: 1px solid rgba(63, 211, 190, 0.25); border-radius: 8px;
  padding: 0.12rem 0.5rem;
}
.stat-strip {
  margin-top: 1.6rem;
  border: 1px solid var(--line); border-radius: var(--r);
  background: linear-gradient(120deg, rgba(63, 211, 190, 0.10), rgba(255, 255, 255, 0.02));
  padding: 1.3rem 1.5rem;
  display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap;
}
.stat-strip__big {
  font-family: var(--display); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.2rem);
  letter-spacing: -0.04em; line-height: 1;
}
.stat-strip p { color: var(--text-soft); font-size: 0.95rem; max-width: 62ch; }
.src { color: var(--faint); font-size: 0.76rem; }

/* ---------- Scale stats ---------- */
.stat {
  border: 1px solid var(--line); border-radius: var(--r);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012));
  padding: 1.5rem 1.35rem;
  transition: transform 0.45s var(--ease), border-color 0.3s ease;
}
.stat:hover { transform: translateY(-4px); border-color: rgba(63, 211, 190, 0.3); }
.stat__v {
  font-family: var(--display); font-weight: 800; font-size: clamp(2rem, 4.4vw, 2.7rem);
  letter-spacing: -0.045em; line-height: 1;
  background: linear-gradient(120deg, var(--teal-200), var(--teal-400));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat__l { margin-top: 0.7rem; font-size: 0.9rem; color: var(--text-soft); }
.stat__s { margin-top: 0.55rem; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); font-family: var(--display); font-weight: 700; }

.panel {
  border: 1px solid var(--line); border-radius: var(--r);
  background: rgba(255, 255, 255, 0.025); padding: 1.5rem 1.45rem;
}
.panel h3 { color: var(--teal-200); margin-bottom: 0.9rem; }
.ticks li {
  position: relative; padding-left: 1.5rem; margin-top: 0.65rem;
  font-size: 0.92rem; color: var(--text-soft);
}
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 7px; height: 7px; border-radius: 2px;
  background: linear-gradient(135deg, var(--teal-300), var(--teal-500));
}

/* ---------- Formats ---------- */
.fmt { display: flex; flex-direction: column; }
.fmt__tag {
  align-self: flex-start;
  font-family: var(--display); font-weight: 800; font-size: 0.75rem; letter-spacing: 0.12em;
  padding: 0.32rem 0.7rem; border-radius: 8px; margin-bottom: 1rem;
  border: 1px solid rgba(63, 211, 190, 0.3); color: var(--teal-200);
  background: rgba(63, 211, 190, 0.1);
}
.fmt[data-tone="1p"]  .fmt__tag { border-color: rgba(111, 195, 255, 0.32); color: #A9DBFF; background: rgba(111, 195, 255, 0.1); }
.fmt[data-tone="mp"]  .fmt__tag { border-color: rgba(167, 139, 250, 0.32); color: #CFC0FF; background: rgba(167, 139, 250, 0.1); }
.fmt[data-tone="uni"] .fmt__tag { border-color: rgba(240, 180, 41, 0.32); color: #F6D67F; background: rgba(240, 180, 41, 0.1); }

.spine {
  margin-top: 1.6rem; display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem;
  font-family: var(--display); font-size: 0.82rem; color: var(--muted);
}
.spine span {
  border: 1px dashed var(--line-strong); border-radius: 999px; padding: 0.3rem 0.8rem;
  color: var(--text-soft);
}
.spine em { font-style: normal; color: var(--faint); }

/* ---------- Measurement ---------- */
.mlist { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 0 clamp(1.5rem, 3vw, 2.6rem); }
.vizrow { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 1.1rem; margin-top: clamp(1.8rem, 4vw, 2.8rem); }
.mlist li {
  display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 0.9rem;
  padding: 1rem 0; border-bottom: 1px solid var(--line);
}

.mlist li:last-child { border-bottom: 0; }
@media (min-width: 992px) { .mlist li:nth-last-child(-n+3) { border-bottom: 0; } }
@media (min-width: 660px) and (max-width: 991px) { .mlist li:nth-last-child(-n+2) { border-bottom: 0; } }
.viz { display: flex; flex-direction: column; }
.viz .heat, .viz .radar { margin-top: auto; }
.mlist .ico { width: 34px; height: 34px; margin: 0; border-radius: 10px; }
.mlist .ico svg { width: 16px; height: 16px; }
.mlist h3 { font-size: 1rem; }
.mlist p { color: var(--muted); font-size: 0.88rem; margin-top: 0.2rem; }

.viz {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: linear-gradient(165deg, rgba(16, 44, 69, 0.6), rgba(6, 19, 33, 0.85));
  padding: 1.35rem; box-shadow: var(--shadow);
}
.viz + .viz { margin-top: 1.1rem; }
.viz__h {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1rem;
}
.viz__h h4 { font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.viz__h span { font-size: 0.72rem; color: var(--faint); }
.radar { width: 100%; height: auto; }
.radar .grid-line { stroke: rgba(148, 191, 214, 0.16); fill: none; }
.radar .axis { stroke: rgba(148, 191, 214, 0.12); }
.radar .shape { fill: rgba(63, 211, 190, 0.22); stroke: var(--teal-300); stroke-width: 2; stroke-linejoin: round; }
.radar .cohort { fill: none; stroke: rgba(148, 191, 214, 0.45); stroke-width: 1.4; stroke-dasharray: 4 4; }
.radar text { fill: var(--muted); font-size: 7px; font-family: var(--display); font-weight: 700; letter-spacing: 0.08em; }
.radar .dot { fill: var(--teal-200); }

.heat { display: grid; grid-template-columns: 92px repeat(7, 1fr); gap: 4px; align-items: center; }
.heat__lbl { font-size: 0.68rem; color: var(--muted); font-family: var(--display); font-weight: 700; letter-spacing: 0.04em; }
.heat__c { aspect-ratio: 1; border-radius: 4px; background: rgba(148, 191, 214, 0.08); transition: transform 0.2s ease; }
.heat__c:hover { transform: scale(1.18); }
.heat__hd { font-size: 0.62rem; color: var(--faint); text-align: center; font-family: var(--display); font-weight: 700; }
.heat__key { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.85rem; font-size: 0.68rem; color: var(--faint); }
.heat__key i { width: 46px; height: 6px; border-radius: 3px; background: linear-gradient(90deg, rgba(255, 138, 107, 0.85), rgba(240, 180, 41, 0.8), rgba(63, 211, 190, 0.9)); }

.quote {
  margin-top: 2.5rem;
  border: 1px solid var(--line); border-left: 3px solid var(--teal-400);
  border-radius: var(--r); padding: 1.6rem 1.7rem;
  background: linear-gradient(110deg, rgba(63, 211, 190, 0.08), rgba(255, 255, 255, 0.015));
}
.quote p {
  font-family: var(--display); font-weight: 700; font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  letter-spacing: -0.028em; line-height: 1.3;
}
.quote small { display: block; margin-top: 0.85rem; color: var(--muted); font-size: 0.9rem; font-family: var(--body); }

/* ---------- Benefits tabs ---------- */
.tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.tab {
  font-family: var(--display); font-weight: 700; font-size: 0.88rem;
  padding: 0.6rem 1.15rem; border-radius: 999px;
  border: 1px solid var(--line); background: var(--glass); color: var(--muted);
  transition: 0.25s ease;
}
.tab:hover { color: var(--text); border-color: var(--line-strong); }
.tab.is-on { background: linear-gradient(135deg, var(--teal-300), var(--teal-500)); color: #032019; border-color: transparent; }
.tabpane { display: none; }
.tabpane.is-on { display: block; animation: fadeUp 0.4s var(--ease) both; }
.benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(420px, 1fr)); gap: 0 clamp(1.5rem, 3vw, 2.6rem); }
@media (min-width: 700px) { .benefits .benefit:nth-last-child(-n+2) { border-bottom: 0; } }

.benefit {
  display: grid; grid-template-columns: 28px minmax(0, 1fr); gap: 0.85rem;
  padding: 1.05rem 0; border-bottom: 1px solid var(--line);
}
.benefit:last-child { border-bottom: 0; }
.benefit i {
  width: 28px; height: 28px; border-radius: 9px; display: grid; place-items: center;
  background: rgba(63, 211, 190, 0.13); flex: none;
}
.benefit i svg { width: 14px; height: 14px; stroke: var(--teal-300); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.benefit p { font-size: 0.95rem; color: var(--text-soft); }

/* ---------- Showcase ---------- */
.shots { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.05rem; }
.shot {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  border: 1px solid var(--line); min-height: 230px;
  display: flex; align-items: flex-end;
  transition: transform 0.5s var(--ease), border-color 0.4s ease, box-shadow 0.5s var(--ease);
  background: var(--ink-900);
  color: inherit; text-decoration: none;
}
.shot:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--shadow-lg); }
.shot img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease); filter: saturate(0.9) contrast(1.02);
}
.shot:hover img { transform: scale(1.06); }
.shot::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(3, 10, 18, 0.15) 0%, rgba(3, 10, 18, 0.62) 46%, rgba(3, 10, 18, 0.94) 100%);
}
.shot__in { position: relative; z-index: 2; padding: 1.25rem 1.3rem; width: 100%; }
.shot__tag {
  display: inline-block; font-family: var(--display); font-size: 0.64rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal-200);
  background: rgba(6, 19, 33, 0.7); border: 1px solid rgba(63, 211, 190, 0.3);
  padding: 0.22rem 0.6rem; border-radius: 999px; margin-bottom: 0.6rem;
  backdrop-filter: blur(6px);
}
.shot h3 { font-size: 1.08rem; }
.shot p { font-size: 0.85rem; color: var(--text-soft); margin-top: 0.35rem; }
.shot--xl { grid-column: span 6; min-height: 320px; }
.shot--md { grid-column: span 3; }
.shot--lg { grid-column: span 4; }

/* ---------- Catalog ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.8rem; align-items: center; }
.filters .count { margin-left: auto; font-size: 0.8rem; color: var(--faint); font-style: italic; }
.simgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(276px, 1fr)); gap: 0.9rem; }
.sim {
  position: relative; border: 1px solid var(--line); border-radius: var(--r);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.01));
  padding: 1.15rem 1.15rem 1.05rem; overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.3s ease, box-shadow 0.4s var(--ease);
  animation: fadeUp 0.45s var(--ease) both;
}
.sim:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.sim::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: linear-gradient(90deg, var(--seg, var(--teal-400)), transparent 70%);
  opacity: 0.85;
}
.sim__seg {
  display: block; min-height: 2.1em; line-height: 1.35;
  font-family: var(--display); font-size: 0.62rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--seg, var(--teal-300));
}
.sim h3 { margin: 0.2rem 0 0.4rem; font-size: 1rem; }
.sim p { font-size: 0.83rem; color: var(--muted); line-height: 1.5; }
.sim__meta { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 0.9rem; }
.sim__meta span {
  font-size: 0.68rem; color: var(--text-soft); border: 1px solid var(--line);
  border-radius: 6px; padding: 0.16rem 0.45rem; background: rgba(255, 255, 255, 0.02);
}

/* Closing card in every library view — the library is a sample, not a catalogue. */
.sim--more {
  --seg: var(--teal-300);
  display: flex; flex-direction: column;
  border-style: dashed;
  background: linear-gradient(160deg, rgba(63, 211, 190, 0.10), rgba(255, 255, 255, 0.012));
}
.sim--more::before { background: none; }
.sim--more h3 { color: var(--teal-200); }
.sim--more .textlink { margin-top: auto; padding-top: 0.9rem; font-size: 0.85rem; }

/* ---------- Team ---------- */
.who { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.1rem; }
.who .card h3 { color: var(--teal-200); font-size: 1.12rem; }
.who__note {
  margin-top: 1.6rem; color: var(--muted); font-size: 0.95rem; max-width: 92ch;
  border-left: 2px solid var(--line-strong); padding-left: 1.1rem;
}

/* ---------- Made in India ---------- */
.tricolour {
  height: 3px; width: 100%; border-radius: 3px;
  background: linear-gradient(90deg, #FF9933 0%, #FF9933 33%, #F4F6F8 33%, #F4F6F8 66%, #138808 66%, #138808 100%);
}
.india {
  position: relative; overflow: hidden;
  border: 1px solid var(--line-strong); border-radius: var(--r-xl);
  background: linear-gradient(150deg, rgba(255, 153, 51, 0.09), rgba(16, 44, 69, 0.55) 46%, rgba(19, 136, 8, 0.10));
  box-shadow: var(--shadow-lg);
}
.india::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, #FF9933, #F4F6F8 50%, #138808);
  opacity: 0.9;
}
.india::after {
  content: ""; position: absolute; width: 520px; height: 520px; right: -230px; bottom: -300px;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(255, 153, 51, 0.12), transparent 62%);
}
.india__in { position: relative; z-index: 1; padding: clamp(2rem, 4.5vw, 3.2rem); }
.india .eyebrow { color: #FFC48A; }
.india .eyebrow::before { background: linear-gradient(90deg, transparent, #FF9933); }
.india h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
.india__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem; margin-top: 2.2rem;
}
.india__c {
  border: 1px solid var(--line); border-radius: var(--r);
  background: rgba(3, 10, 18, 0.34); padding: 1.25rem 1.2rem;
  transition: transform 0.4s var(--ease), border-color 0.3s ease;
}
.india__c:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.india__c h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.india__c p { font-size: 0.87rem; color: var(--muted); }
.india__c .k { display: block; margin-top: 0.7rem; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); font-family: var(--display); font-weight: 700; }
.india__foot {
  margin-top: 2rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  font-size: 0.88rem; color: var(--text-soft);
}
.india__foot .tricolour { width: 54px; flex: none; }

.madein {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--display); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-soft);
}
.madein i {
  width: 18px; height: 3px; border-radius: 3px; display: inline-block; flex: none;
  background: linear-gradient(90deg, #FF9933 0%, #FF9933 33%, #F4F6F8 33%, #F4F6F8 66%, #138808 66%, #138808 100%);
}

/* ---------- CTA ---------- */
.cta {
  position: relative; overflow: hidden;
  border: 1px solid rgba(63, 211, 190, 0.24); border-radius: var(--r-xl);
  background: linear-gradient(150deg, rgba(13, 155, 138, 0.16), rgba(16, 44, 69, 0.5) 52%, rgba(6, 19, 33, 0.8));
  padding: clamp(2.2rem, 5vw, 3.4rem);
  box-shadow: var(--shadow-lg);
}
.cta::before {
  content: ""; position: absolute; width: 560px; height: 560px; right: -220px; top: -280px;
  border-radius: 50%; background: radial-gradient(circle, rgba(63, 211, 190, 0.22), transparent 62%);
  pointer-events: none;
}
.cta__in { position: relative; z-index: 1; }
.cta h2 { font-size: clamp(1.8rem, 3.8vw, 2.7rem); }
.paths { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 0.9rem; margin: 2rem 0 1.9rem; }
.path {
  display: block; text-align: left;
  border: 1px solid var(--line); border-radius: var(--r);
  background: rgba(3, 10, 18, 0.32); padding: 1.2rem 1.15rem;
  transition: transform 0.4s var(--ease), border-color 0.3s ease, background 0.3s ease;
}
.path:hover { transform: translateY(-4px); border-color: var(--teal-400); background: rgba(63, 211, 190, 0.08); }
.path h3 { font-size: 1rem; display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; }
.path h3 svg { width: 15px; height: 15px; stroke: var(--teal-300); fill: none; stroke-width: 2; transition: transform 0.3s var(--ease); }
.path:hover h3 svg { transform: translateX(4px); }
.path p { font-size: 0.85rem; color: var(--muted); margin-top: 0.45rem; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 3rem 0 2.2rem; background: rgba(3, 10, 18, 0.5); }
.footer__grid { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr)); gap: 2rem; }
.footer h4 { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); margin-bottom: 0.9rem; }
.footer li { margin-bottom: 0.5rem; }
.footer a { font-size: 0.9rem; color: var(--text-soft); transition: color 0.2s ease; }
.footer a:hover { color: var(--teal-300); }
.footer__tag { color: var(--muted); font-size: 0.9rem; margin-top: 0.8rem; max-width: 34ch; }
.footer__bot {
  margin-top: 2.4rem; padding-top: 1.4rem; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.8rem; color: var(--faint);
}

/* ---------- Contact page ---------- */
.contact { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); gap: clamp(2rem, 5vw, 3.6rem); align-items: start; }
.form {
  border: 1px solid var(--line-strong); border-radius: var(--r-lg);
  background: linear-gradient(165deg, rgba(16, 44, 69, 0.7), rgba(6, 19, 33, 0.9));
  padding: clamp(1.5rem, 3.5vw, 2.3rem);
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.form::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 50% at 50% -10%, rgba(63, 211, 190, 0.14), transparent 60%);
}
.form > * { position: relative; z-index: 1; }
.field { margin-bottom: 1.05rem; }
.field label {
  display: block; font-family: var(--display); font-weight: 700;
  font-size: 0.76rem; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.45rem;
}
.field label .req { color: var(--teal-300); }
.field input, .field select, .field textarea {
  width: 100%; border-radius: var(--r-sm);
  border: 1px solid var(--line-strong); background: rgba(3, 10, 18, 0.45);
  padding: 0.78rem 0.9rem; font-size: 0.94rem; color: var(--text);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.field textarea { min-height: 120px; resize: vertical; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238FA6BC' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.85rem center; background-size: 16px;
  padding-right: 2.4rem;
}
.field select option { background: var(--ink-900); color: var(--text); }
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal-400);
  box-shadow: 0 0 0 3px rgba(63, 211, 190, 0.14);
  background: rgba(3, 10, 18, 0.62);
}
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--coral); }
.err { display: none; margin-top: 0.4rem; font-size: 0.78rem; color: var(--coral); }
.field.has-error .err { display: block; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.chips { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.chip {
  font-size: 0.83rem; padding: 0.5rem 0.9rem; border-radius: 999px;
  border: 1px solid var(--line-strong); background: rgba(3, 10, 18, 0.4); color: var(--text-soft);
  transition: 0.22s ease;
}
.chip:hover { border-color: var(--teal-400); color: var(--teal-200); }
.chip.is-on { background: linear-gradient(135deg, var(--teal-300), var(--teal-500)); color: #032019; border-color: transparent; font-weight: 600; }

.consent { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.82rem; color: var(--muted); margin: 0.4rem 0 1.2rem; }
.consent input { width: 17px; height: 17px; flex: none; margin-top: 0.18rem; accent-color: var(--teal-500); }

.formnote { margin-top: 0.9rem; font-size: 0.78rem; color: var(--faint); text-align: center; }

.sent { display: none; text-align: center; padding: 1.5rem 0.5rem; }
.sent.is-on { display: block; animation: fadeUp 0.5s var(--ease) both; }
.sent__ico {
  width: 62px; height: 62px; margin: 0 auto 1.2rem; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(140deg, rgba(63, 211, 190, 0.22), rgba(63, 211, 190, 0.06));
  border: 1px solid rgba(63, 211, 190, 0.35);
}
.sent__ico svg { width: 28px; height: 28px; stroke: var(--teal-300); fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.sent h3 { font-size: 1.4rem; }
.sent p { color: var(--text-soft); margin-top: 0.7rem; font-size: 0.95rem; }

.next li {
  display: grid; grid-template-columns: 26px minmax(0, 1fr); gap: 0.85rem;
  padding: 0.85rem 0; border-bottom: 1px solid var(--line);
}
.next li:last-child { border-bottom: 0; }
.next b {
  width: 26px; height: 26px; border-radius: 9px; display: grid; place-items: center;
  font-family: var(--display); font-size: 0.74rem; font-weight: 800;
  background: rgba(63, 211, 190, 0.14); color: var(--teal-200);
}
.next p { font-size: 0.92rem; color: var(--text-soft); }
.next span { display: block; font-size: 0.82rem; color: var(--muted); margin-top: 0.15rem; }

.contactcard {
  margin-top: 1.6rem; border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.25rem 1.3rem; background: rgba(255, 255, 255, 0.025);
}
.contactcard a { color: var(--teal-300); font-weight: 600; }

/* ---------- Reveal ---------- */
[data-reveal] {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-stagger] > * {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal-stagger].in > * { opacity: 1; transform: none; }
[data-reveal-stagger].in > *:nth-child(1) { transition-delay: 0.04s; }
[data-reveal-stagger].in > *:nth-child(2) { transition-delay: 0.10s; }
[data-reveal-stagger].in > *:nth-child(3) { transition-delay: 0.16s; }
[data-reveal-stagger].in > *:nth-child(4) { transition-delay: 0.22s; }
[data-reveal-stagger].in > *:nth-child(5) { transition-delay: 0.28s; }
[data-reveal-stagger].in > *:nth-child(6) { transition-delay: 0.34s; }

/* ---------- Responsive ---------- */
@media (max-width: 1040px) {
  .hero__grid { grid-template-columns: 1fr; }
  .vizrow { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .shot--xl { grid-column: span 12; }
  .shot--lg { grid-column: span 6; }
  .shot--md { grid-column: span 6; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1140px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .wrap { width: min(100% - 1.8rem, var(--wrap)); }
  .kpis { grid-template-columns: 1fr; }
  .row2 { grid-template-columns: 1fr; }
  .shot--lg, .shot--md { grid-column: span 12; }
  .footer__grid { grid-template-columns: 1fr; }
  .heat { grid-template-columns: 74px repeat(7, 1fr); }
  .heat__lbl { font-size: 0.6rem; }
  .stat-strip { gap: 0.9rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal], [data-reveal-stagger] > * { opacity: 1 !important; transform: none !important; }
}

@media print {
  .nav, .drawer, .progress, .aurora, .grain, .arcs { display: none !important; }
  body { background: #fff; color: #111; }
}
