/* ═══════════════════════════════════════════════════════════════════════════
   KyRo One — marketing site design system
   Light-first, editorial, violet master brand + six module bands.
   Tokens mirror kyro-core lib/brand/bands.ts (do not drift the hexes).
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  /* Master brand */
  --violet:        #7C3AED;
  --violet-deep:   #6D28D9;
  --violet-hover:  #5B21B6;
  --violet-wash:   #F2F1FB;

  /* Surfaces + ink (light) */
  --bg:            #FCFBFA;
  --surface:       #FFFFFF;
  --surface-2:     #F7F5F2;
  --ink:           #17131F;
  --ink-2:         #4B4658;
  --ink-3:         #746E82;
  --line:          #E9E5EF;
  --line-2:        #DCD7E4;

  --shadow-sm: 0 1px 2px rgba(23, 19, 31, .05), 0 1px 3px rgba(23, 19, 31, .07);
  --shadow-md: 0 4px 16px rgba(23, 19, 31, .07), 0 2px 6px rgba(23, 19, 31, .05);
  --shadow-lg: 0 24px 60px rgba(23, 19, 31, .12), 0 8px 20px rgba(23, 19, 31, .07);

  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --head: "General Sans", "Plus Jakarta Sans", -apple-system, "Helvetica Neue", Arial, sans-serif;
  --body: "Plus Jakarta Sans", -apple-system, "Helvetica Neue", Arial, sans-serif;
  --deva: "Noto Sans Devanagari", "Plus Jakarta Sans", sans-serif;

  --maxw: 1180px;
  --nav-h: 72px;
}

[data-theme="dark"] {
  --violet:        #A78BFA;
  --violet-deep:   #A78BFA;
  --violet-hover:  #C4B5FD;
  --violet-wash:   rgba(167, 139, 250, .10);

  --bg:            #0D0B12;
  --surface:       #14111C;
  --surface-2:     #191521;
  --ink:           #F1EFF5;
  --ink-2:         #B4AEC2;
  --ink-3:         #8A8399;
  --line:          #262130;
  --line-2:        #322C3E;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.4), 0 1px 3px rgba(0,0,0,.3);
  --shadow-md: 0 6px 20px rgba(0,0,0,.45), 0 2px 8px rgba(0,0,0,.3);
  --shadow-lg: 0 24px 60px rgba(0,0,0,.6), 0 8px 20px rgba(0,0,0,.4);
}

/* Module bands — light ink is AA on white; dark ink is the band's bright mark.
   [data-m] cascades --m-* into any component inside a module context. */
[data-m="gati"]     { --m-ink:#0F6B3D; --m-mark:#BFFA29; --m-wash:#F3FBE8; --m-deva:"गति"; }
[data-m="shikhar"]  { --m-ink:#6D28D9; --m-mark:#A78BFA; --m-wash:#F2F1FB; }
[data-m="kosh"]     { --m-ink:#0369A1; --m-mark:#38BDF8; --m-wash:#EEF6FE; }
[data-m="pehchaan"] { --m-ink:#0F766E; --m-mark:#2DD4BF; --m-wash:#E7F6F3; }
[data-m="lekha"]    { --m-ink:#B45309; --m-mark:#F59E0B; --m-wash:#FAF7EC; }
[data-m="kutumb"]   { --m-ink:#B03151; --m-mark:#E24D68; --m-wash:#FCE7EC; }

[data-theme="dark"] [data-m="gati"]     { --m-ink:#BFFA29; --m-wash:rgba(191,250,41,.07); }
[data-theme="dark"] [data-m="shikhar"]  { --m-ink:#A78BFA; --m-wash:rgba(167,139,250,.09); }
[data-theme="dark"] [data-m="kosh"]     { --m-ink:#38BDF8; --m-wash:rgba(56,189,248,.08); }
[data-theme="dark"] [data-m="pehchaan"] { --m-ink:#2DD4BF; --m-wash:rgba(45,212,191,.08); }
[data-theme="dark"] [data-m="lekha"]    { --m-ink:#F59E0B; --m-wash:rgba(245,158,11,.08); }
[data-theme="dark"] [data-m="kutumb"]   { --m-ink:#F07C93; --m-wash:rgba(226,77,104,.10); }

/* ─── Reset + base ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background-color .25s ease, color .25s ease;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: rgba(124, 58, 237, .18); }
:focus-visible { outline: 3px solid rgba(124, 58, 237, .5); outline-offset: 2px; border-radius: 4px; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.deva { font-family: var(--deva); font-weight: 600; }

/* ─── Type ─────────────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--violet-deep);
}
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--violet); }
[data-m] .eyebrow { color: var(--m-ink); }
[data-m] .eyebrow::before { background: var(--m-mark); }

h1, h2, h3, h4 { font-family: var(--head); line-height: 1.08; letter-spacing: -0.03em; font-weight: 600; text-wrap: balance; }
.h-hero  { font-size: clamp(2.7rem, 6.4vw, 5rem); letter-spacing: -0.045em; line-height: 1.03; }
.h-xl    { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.h-lg    { font-size: clamp(1.6rem, 3.2vw, 2.2rem); }
.h-md    { font-size: 1.25rem; letter-spacing: -0.015em; }
.lead    { font-size: clamp(1.05rem, 1.8vw, 1.25rem); line-height: 1.6; color: var(--ink-2); max-width: 60ch; text-wrap: pretty; }
.sub     { color: var(--ink-2); text-wrap: pretty; }
.small   { font-size: 14px; color: var(--ink-3); }

.accent-dot { color: var(--violet); }

/* ─── Buttons ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 15.5px; letter-spacing: -0.01em;
  padding: 14px 26px; border-radius: 999px;
  transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary { background: #7C3AED; color: #fff; box-shadow: 0 8px 24px rgba(124,58,237,.28); }
.btn-primary:hover { background: #6D28D9; box-shadow: 0 10px 28px rgba(124,58,237,.36); transform: translateY(-1px); }
.btn-ghost { border: 1.5px solid var(--line-2); color: var(--ink); background: var(--surface); }
.btn-ghost:hover { border-color: var(--violet); color: var(--violet-deep); transform: translateY(-1px); }
.btn-onviolet { background: #fff; color: #6D28D9; }
.btn-onviolet:hover { background: #F5F3FF; transform: translateY(-1px); }
.btn .arr { transition: transform .18s ease; }
.btn:hover .arr { transform: translateX(3px); }

.textlink { font-weight: 700; color: var(--violet-deep); display: inline-flex; align-items: center; gap: 6px; }
.textlink:hover { color: var(--violet-hover); }
[data-m] .textlink { color: var(--m-ink); }

/* ─── Nav ──────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background-color .25s ease, box-shadow .25s ease, height .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  height: 60px;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav .wrap { width: 100%; display: flex; align-items: center; gap: 32px; }
.brand { display: inline-flex; align-items: baseline; gap: 2px; font-family: var(--head); font-weight: 700; font-size: 21px; letter-spacing: -0.02em; }
.brand .one { color: var(--ink-3); font-weight: 600; margin-left: 5px; }
.brand .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--violet); display: inline-block; margin-left: 3px; transform: translateY(-9px); }
.nav-links { display: flex; gap: 28px; margin-left: auto; align-items: center; }
.nav-links a { font-weight: 600; font-size: 15px; color: var(--ink-2); transition: color .15s ease; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a[aria-current="page"] { position: relative; }
.nav-links a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2.5px; border-radius: 2px; background: var(--violet);
}
.nav-cta { margin-left: 4px; }
.nav .btn { padding: 10px 20px; font-size: 14.5px; }

.theme-toggle {
  width: 38px; height: 38px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--line-2); color: var(--ink-2); transition: border-color .15s, color .15s, transform .15s;
}
.theme-toggle:hover { border-color: var(--violet); color: var(--violet-deep); transform: rotate(15deg); }
.theme-toggle .ic-moon { display: none; }
[data-theme="dark"] .theme-toggle .ic-sun { display: none; }
[data-theme="dark"] .theme-toggle .ic-moon { display: block; }

.nav-burger { display: none; width: 42px; height: 42px; border-radius: 12px; align-items: center; justify-content: center; }
.nav-burger span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; position: relative; transition: background .2s; }
.nav-burger span::before, .nav-burger span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s ease, top .25s ease;
}
.nav-burger span::before { top: -6px; } .nav-burger span::after { top: 6px; }
body.menu-open .nav-burger span { background: transparent; }
body.menu-open .nav-burger span::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav-burger span::after { top: 0; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 55; background: var(--bg);
  display: none; flex-direction: column; padding: calc(var(--nav-h) + 24px) 28px 40px;
}
body.menu-open .mobile-menu { display: flex; }
body.menu-open { overflow: hidden; }
.mobile-menu a { font-family: var(--head); font-size: 32px; font-weight: 600; letter-spacing: -0.02em; padding: 14px 0; border-bottom: 1px solid var(--line); }
.mobile-menu a[aria-current="page"] { color: var(--violet-deep); }
.mobile-menu a.btn {
  margin-top: 28px; align-self: flex-start;
  font-family: var(--body); font-size: 17px; font-weight: 700;
  padding: 14px 30px; border-bottom: 0;
}
.mobile-menu a.btn + a.btn { margin-top: 14px; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .theme-toggle { margin-left: auto; }
  .nav-burger { display: inline-flex; }
  .nav .wrap { gap: 12px; }
}

/* ─── Sections ─────────────────────────────────────────────────────────── */
main { padding-top: var(--nav-h); }
.section { padding: clamp(72px, 10vw, 128px) 0; }
.section-tight { padding: clamp(48px, 7vw, 80px) 0; }
.section-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head .lead { margin-top: 16px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ─── Hero ─────────────────────────────────────────────────────────────── */
.hero { position: relative; padding: clamp(56px, 8vw, 110px) 0 clamp(40px, 6vw, 80px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 44px; align-items: center; }
.hero-copy .eyebrow { margin-bottom: 20px; }
.hero-copy .lead { margin: 24px 0 36px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 20px; font-size: 14px; color: var(--ink-3); }

.hero-bg {
  position: absolute; inset: -20% -10% auto; height: 130%; z-index: -1; pointer-events: none;
  background:
    radial-gradient(42% 42% at 78% 30%, rgba(124,58,237,.10), transparent 70%),
    radial-gradient(30% 30% at 12% 78%, rgba(56,189,248,.07), transparent 70%),
    radial-gradient(26% 26% at 55% 90%, rgba(191,250,41,.07), transparent 70%);
}
[data-theme="dark"] .hero-bg {
  background:
    radial-gradient(42% 42% at 78% 30%, rgba(124,58,237,.17), transparent 70%),
    radial-gradient(30% 30% at 12% 78%, rgba(56,189,248,.09), transparent 70%),
    radial-gradient(26% 26% at 55% 90%, rgba(191,250,41,.06), transparent 70%);
}

/* Constellation: central KyRo One node + six module satellites */
.constellation { position: relative; aspect-ratio: 1 / 1; max-width: 560px; margin-inline: auto; width: 100%; }
.constellation svg.spokes { position: absolute; inset: 0; width: 100%; height: 100%; }
.constellation svg.spokes line { stroke: var(--line-2); stroke-width: 1.5; stroke-dasharray: 3 6; }
.c-node { position: absolute; transform: translate(-50%, -50%); }
.c-node > * { animation: floaty 7s ease-in-out infinite; will-change: transform; }
.c-core {
  width: 132px; height: 132px; border-radius: 50%;
  background: radial-gradient(120% 120% at 30% 25%, #9F67FF, #6D28D9 62%);
  color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  box-shadow: 0 18px 50px rgba(109, 40, 217, .45);
  font-family: var(--head); font-weight: 700; font-size: 19px; letter-spacing: -0.02em;
  animation: corepulse 5s ease-in-out infinite;
}
.c-core small { font-family: var(--body); font-weight: 600; font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; opacity: .78; }
.c-sat {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 16px 9px 11px; box-shadow: var(--shadow-md);
  font-weight: 700; font-size: 14.5px; letter-spacing: -0.01em; white-space: nowrap;
}
.c-sat .swatch { width: 26px; height: 26px; border-radius: 50%; background: var(--m-wash); display: inline-flex; align-items: center; justify-content: center; }
.c-sat .swatch::after { content: ""; width: 11px; height: 11px; border-radius: 50%; background: var(--m-mark); box-shadow: 0 0 0 2px color-mix(in srgb, var(--m-mark) 30%, transparent); }
.c-sat .deva { font-size: 12.5px; color: var(--m-ink); margin-left: 2px; }
@keyframes floaty   { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes corepulse { 0%,100% { box-shadow: 0 18px 50px rgba(109,40,217,.45); } 50% { box-shadow: 0 18px 66px rgba(109,40,217,.62); } }
.c-node:nth-child(odd) > *  { animation-duration: 8.5s; }
.c-node:nth-child(3n) > *   { animation-delay: -2.2s; }
.c-node:nth-child(3n+1) > * { animation-delay: -4.6s; }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .constellation { max-width: 460px; margin-top: 16px; }
  .c-core { width: 108px; height: 108px; font-size: 16px; }
  .c-sat { padding: 7px 12px 7px 8px; font-size: 12.5px; gap: 7px; }
  .c-sat .swatch { width: 21px; height: 21px; }
  .c-sat .deva { display: none; }
}

/* ─── Industry band ────────────────────────────────────────────────────── */
.industries { border-block: 1px solid var(--line); background: var(--surface-2); }
.industries .wrap { display: flex; align-items: center; gap: 20px 28px; flex-wrap: wrap; justify-content: center; padding-top: 26px; padding-bottom: 26px; }
.industries .label { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.ind-chip { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; color: var(--ink-2); }
.ind-chip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--violet); opacity: .55; }

/* ─── Cards / grids ────────────────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card .h-md { margin: 14px 0 8px; }
.card-ic {
  width: 44px; height: 44px; border-radius: 13px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--violet-wash); color: var(--violet-deep);
}

/* Module cards (home showcase) */
.mcard {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px; overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease, border-color .22s ease, background-color .25s ease;
}
.mcard:hover, .mcard:focus-within { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: color-mix(in srgb, var(--m-ink) 40%, var(--line)); background: var(--m-wash); }
.mcard::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 4px; background: var(--m-mark); }
.mcard .watermark {
  position: absolute; right: 6px; top: -14px;
  font-family: var(--deva); font-weight: 700; font-size: 108px; line-height: 1;
  color: var(--m-ink); opacity: .07; pointer-events: none; user-select: none;
  transition: opacity .25s ease, transform .3s ease;
}
.mcard:hover .watermark { opacity: .13; transform: translateY(4px); }
.mcard-top { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.mcard-top .swatch { width: 30px; height: 30px; border-radius: 10px; background: var(--m-wash); border: 1px solid color-mix(in srgb, var(--m-ink) 22%, transparent); display: inline-flex; align-items: center; justify-content: center; }
.mcard:hover .mcard-top .swatch { background: var(--surface); }
.mcard-top .swatch::after { content: ""; width: 12px; height: 12px; border-radius: 50%; background: var(--m-mark); }
.mcard-top .name { font-family: var(--head); font-weight: 700; font-size: 21px; letter-spacing: -0.02em; }
.mcard-top .deva { font-size: 14px; color: var(--m-ink); margin-left: 2px; }
.mcard .promise { font-weight: 600; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.01em; }
.mcard ul { list-style: none; display: flex; flex-direction: column; gap: 7px; margin: 0 0 18px; }
.mcard li { display: flex; gap: 9px; font-size: 14.5px; color: var(--ink-2); line-height: 1.5; }
.mcard li::before { content: ""; flex: 0 0 auto; width: 5.5px; height: 5.5px; border-radius: 50%; background: var(--m-mark); margin-top: 8px; }
.mcard .textlink { margin-top: auto; font-size: 14.5px; }

/* ─── Flow (one platform diagram) ─────────────────────────────────────── */
.flow {
  display: flex; align-items: stretch; gap: 0; justify-content: center; flex-wrap: wrap;
  border: 1px solid var(--line); border-radius: var(--r-xl); background: var(--surface); box-shadow: var(--shadow-sm);
  padding: 28px; margin-top: 8px;
}
.flow-step { flex: 1 1 180px; min-width: 170px; padding: 10px 18px; display: flex; flex-direction: column; gap: 6px; position: relative; }
.flow-step + .flow-step::before {
  content: "→"; position: absolute; left: -9px; top: 18px; color: var(--ink-3); font-size: 18px;
}
.flow-step .tag { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 15px; color: var(--m-ink); }
.flow-step .tag::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--m-mark); }
.flow-step p { font-size: 13.5px; color: var(--ink-3); line-height: 1.5; }
@media (max-width: 760px) {
  .flow { flex-direction: column; padding: 20px; }
  .flow-step { flex: 0 0 auto; min-width: 0; padding: 14px 6px 6px 34px; }
  .flow-step + .flow-step { margin-top: 10px; }
  .flow-step + .flow-step::before { content: "↓"; left: 12px; top: 8px; }
}

/* ─── Steps (how it works) ─────────────────────────────────────────────── */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .steps { grid-template-columns: 1fr; } }
.step { counter-increment: step; position: relative; padding: 26px 24px 24px; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); }
.step::before {
  content: "0" counter(step);
  font-family: var(--head); font-weight: 700; font-size: 15px; color: var(--violet-deep);
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%; background: var(--violet-wash); margin-bottom: 16px;
}
.step h3 { font-size: 18px; margin-bottom: 6px; }
.step p { font-size: 14.5px; color: var(--ink-2); }

/* ─── CTA band ─────────────────────────────────────────────────────────── */
.cta-band { position: relative; overflow: hidden; border-radius: var(--r-xl); background: linear-gradient(135deg, #6D28D9, #7C3AED 55%, #8B5CF6); color: #fff; padding: clamp(48px, 7vw, 80px) clamp(28px, 6vw, 72px); text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band .lead { color: rgba(255,255,255,.85); margin: 18px auto 32px; }
.cta-band .dots { position: absolute; inset: 0; pointer-events: none; opacity: .5; }
.cta-band .dots span { position: absolute; border-radius: 50%; }

/* ─── Products page module sections ───────────────────────────────────── */
.mod-section { padding: clamp(64px, 9vw, 110px) 0; position: relative; overflow: hidden; }
.mod-section.washed { background: var(--m-wash); }
.mod-hero { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 32px; align-items: start; margin-bottom: 40px; }
.mod-hero .deva-mark {
  font-family: var(--deva); font-weight: 700; font-size: clamp(84px, 12vw, 168px); line-height: .9;
  color: var(--m-ink); opacity: .1; user-select: none;
}
.mod-kicker { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.mod-kicker .swatch { width: 40px; height: 40px; border-radius: 13px; background: var(--surface); border: 1px solid color-mix(in srgb, var(--m-ink) 25%, transparent); display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); }
.mod-kicker .swatch::after { content: ""; width: 15px; height: 15px; border-radius: 50%; background: var(--m-mark); }
.mod-kicker .kname { font-family: var(--head); font-weight: 700; font-size: 26px; letter-spacing: -0.02em; }
.mod-kicker .deva { font-size: 17px; color: var(--m-ink); }
.mod-kicker .domain { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--m-ink); opacity: .8; margin-left: 4px; }
.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 980px) { .cap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cap-grid { grid-template-columns: 1fr; } }
.cap {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 20px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .2s ease;
}
.cap:hover { transform: translateY(-2px); border-color: color-mix(in srgb, var(--m-ink) 35%, var(--line)); box-shadow: var(--shadow-sm); }
.cap h4 { font-size: 15.5px; margin-bottom: 4px; display: flex; align-items: center; gap: 8px; }
.cap h4::before { content: ""; width: 7px; height: 7px; border-radius: 2.5px; background: var(--m-mark); flex: 0 0 auto; }
.cap p { font-size: 13.5px; color: var(--ink-2); line-height: 1.55; }
.mod-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.mod-chip {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 700;
  padding: 8px 16px; border-radius: 999px; border: 1px solid var(--line-2); background: var(--surface); color: var(--ink-2);
  transition: border-color .15s, color .15s, transform .15s;
}
.mod-chip:hover { border-color: var(--m-ink, var(--violet)); color: var(--m-ink, var(--violet-deep)); transform: translateY(-1px); }
.mod-chip::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--m-mark, var(--violet)); }

/* Sticky module rail (products page) */
.mod-rail { position: sticky; top: calc(var(--nav-h) - 6px); z-index: 40; background: color-mix(in srgb, var(--bg) 88%, transparent); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.mod-rail .wrap { display: flex; gap: 6px; overflow-x: auto; padding-top: 10px; padding-bottom: 10px; scrollbar-width: none; }
.mod-rail .wrap::-webkit-scrollbar { display: none; }
.rail-link { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 700; color: var(--ink-2); padding: 7px 14px; border-radius: 999px; transition: background .15s, color .15s; }
.rail-link::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--m-mark); }
.rail-link:hover, .rail-link.active { background: var(--m-wash); color: var(--m-ink); }

/* ─── Why page ─────────────────────────────────────────────────────────── */
.prose { max-width: 720px; }
.prose p { margin-bottom: 20px; color: var(--ink-2); font-size: 17px; }
.prose p strong { color: var(--ink); }
.pull {
  border-left: 4px solid var(--violet); padding: 6px 0 6px 24px; margin: 36px 0;
  font-family: var(--head); font-size: clamp(1.3rem, 2.6vw, 1.7rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.35; color: var(--ink);
}
.name-card { display: flex; align-items: baseline; gap: 14px; padding: 22px 24px; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--surface); }
.name-card .deva-big { font-family: var(--deva); font-weight: 700; font-size: 34px; color: var(--m-ink); line-height: 1; }
.name-card .nm { font-family: var(--head); font-weight: 700; font-size: 18px; }
.name-card .meaning { font-size: 13.5px; color: var(--ink-3); }

/* ─── Contact ──────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(32px, 6vw, 72px); align-items: start; }
@media (max-width: 920px) { .contact-grid { grid-template-columns: 1fr; } }
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-md); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: 13.5px; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 15px; color: var(--ink);
  background: var(--bg); border: 1.5px solid var(--line-2); border-radius: var(--r-sm);
  padding: 12px 14px; transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--violet); box-shadow: 0 0 0 3.5px rgba(124,58,237,.16); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.form-success { text-align: center; padding: 40px 12px; }
.form-success .tick { width: 64px; height: 64px; border-radius: 50%; background: var(--violet-wash); color: var(--violet-deep); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.alt-contact { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.alt-contact a { font-weight: 700; color: var(--violet-deep); }

details.faq { border-bottom: 1px solid var(--line); padding: 4px 0; }
details.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-weight: 700; font-size: 16px; padding: 16px 0; }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: "+"; font-size: 22px; color: var(--violet); font-weight: 400; transition: transform .2s ease; flex: 0 0 auto; }
details.faq[open] summary::after { transform: rotate(45deg); }
details.faq p { padding: 0 0 18px; color: var(--ink-2); max-width: 60ch; }

/* ─── Footer ───────────────────────────────────────────────────────────── */
footer.site { border-top: 1px solid var(--line); background: var(--surface-2); margin-top: clamp(48px, 8vw, 96px); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding: clamp(40px, 6vw, 64px) 0 32px; }
@media (max-width: 820px) { .foot-grid { grid-template-columns: 1fr; gap: 32px; } }
.foot-mission { color: var(--ink-2); font-size: 14.5px; max-width: 36ch; margin-top: 14px; }
.foot-col h4 { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 14px; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.foot-col a { font-size: 14.5px; font-weight: 600; color: var(--ink-2); transition: color .15s; display: inline-flex; align-items: center; gap: 8px; }
.foot-col a:hover { color: var(--ink); }
.foot-col a .mdot { width: 8px; height: 8px; border-radius: 50%; background: var(--m-mark); }
.foot-legal { border-top: 1px solid var(--line); padding: 20px 0 28px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13.5px; color: var(--ink-3); }

/* ─── Reveal on scroll ─────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s cubic-bezier(.2,.7,.3,1), transform .6s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; } .reveal-d2 { transition-delay: .16s; } .reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; } .reveal-d5 { transition-delay: .4s; }

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

/* ═══════════════════════════════════════════════════════════════════════════
   Motion system — world-class, dependency-free, compositor-only.
   Everything here collapses under the prefers-reduced-motion rule above.
   ═══════════════════════════════════════════════════════════════════════════ */

/* Cross-document page transitions (progressive enhancement) */
@view-transition { navigation: auto; }

/* ─── Hero entrance choreography ───────────────────────────────────────── */
@keyframes heroRise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.hero-copy > *, .hero .section-head > * {
  animation: heroRise .8s cubic-bezier(.2, .7, .2, 1) both;
}
.hero-copy > *:nth-child(1), .hero .section-head > *:nth-child(1) { animation-delay: .05s; }
.hero-copy > *:nth-child(2), .hero .section-head > *:nth-child(2) { animation-delay: .14s; }
.hero-copy > *:nth-child(3), .hero .section-head > *:nth-child(3) { animation-delay: .28s; }
.hero-copy > *:nth-child(4) { animation-delay: .4s; }
.hero-copy > *:nth-child(5) { animation-delay: .5s; }

/* Word-by-word headline reveal (JS adds .wsplit + per-word --wi) */
h1.wsplit { animation: none; opacity: 1; transform: none; }
.wsplit .w {
  display: inline-block; opacity: 0; transform: translateY(.55em);
  animation: wordUp .65s cubic-bezier(.2, .7, .2, 1) forwards;
  animation-delay: calc(.12s + var(--wi, 0) * .05s);
}
@keyframes wordUp { to { opacity: 1; transform: translateY(0); } }

/* ─── Constellation assembly + life ────────────────────────────────────── */
.constellation .c-node {
  opacity: 0;
  animation: satIn .7s cubic-bezier(.34, 1.56, .64, 1) forwards;
}
.constellation .c-node.c-node-core { animation: coreIn .8s cubic-bezier(.22, 1.3, .36, 1) .15s forwards; }
.constellation .c-node:nth-of-type(2) { animation-delay: .5s; }
.constellation .c-node:nth-of-type(3) { animation-delay: .59s; }
.constellation .c-node:nth-of-type(4) { animation-delay: .68s; }
.constellation .c-node:nth-of-type(5) { animation-delay: .77s; }
.constellation .c-node:nth-of-type(6) { animation-delay: .86s; }
.constellation .c-node:nth-of-type(7) { animation-delay: .95s; }
@keyframes satIn  { from { opacity: 0; transform: translate(-50%, -50%) scale(.25); } to { opacity: 1; transform: translate(-50%, -50%) scale(1); } }
@keyframes coreIn { from { opacity: 0; transform: translate(-50%, -50%) scale(.55); } to { opacity: 1; transform: translate(-50%, -50%) scale(1); } }

/* Spokes: fade in late, then a slow continuous dash drift ("data flowing") */
.constellation svg.spokes { opacity: 0; animation: spokesIn .9s ease 1.05s forwards; }
@keyframes spokesIn { to { opacity: 1; } }
.constellation svg.spokes line { animation: dashFlow 2.8s linear infinite; }
@keyframes dashFlow { to { stroke-dashoffset: -18; } }

/* Pulse ring emanating from the core */
.c-core { position: relative; }
.c-core::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(124, 58, 237, .45);
  animation: coreRing 3.4s cubic-bezier(.2, .6, .4, 1) 1.4s infinite;
  opacity: 0; pointer-events: none;
}
[data-theme="dark"] .c-core::after { border-color: rgba(167, 139, 250, .5); }
@keyframes coreRing {
  0%   { opacity: .8; transform: scale(1); }
  70%  { opacity: 0;  transform: scale(1.75); }
  100% { opacity: 0;  transform: scale(1.75); }
}

/* ─── Module-card 3D tilt (JS drives --px/--py + inline transform) ─────── */
.mcard { transform-style: preserve-3d; }
.mcard.tilting { transition: box-shadow .25s ease, border-color .22s ease, background-color .25s ease; }
.mcard .watermark {
  transform: translate(calc(var(--px, 0) * 12px), calc(var(--py, 0) * 10px));
  transition: opacity .25s ease;
}
.mcard:hover .watermark { transform: translate(calc(var(--px, 0) * 12px), calc(var(--py, 0) * 10px)); }
.mcard-top .swatch, .mcard .promise, .mcard ul, .mcard .textlink { transform: translateZ(24px); }

/* ─── Industries marquee ───────────────────────────────────────────────── */
.industries .wrap.industries-inner { display: flex; align-items: center; gap: 24px; flex-wrap: nowrap; justify-content: flex-start; }
.marquee {
  overflow: hidden; flex: 1 1 auto; min-width: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee-track { display: flex; width: max-content; }
.marquee-group { display: flex; align-items: center; gap: 28px; padding-right: 28px; }
.marquee.on .marquee-track { animation: marqueeSlide 30s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeSlide { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee { mask-image: none; -webkit-mask-image: none; }
  .marquee-group { flex-wrap: wrap; padding-right: 0; }
}

/* ─── Nav: animated underline (hover grows, current stays) ─────────────── */
.nav-links a:not(.btn) { position: relative; }
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2.5px;
  border-radius: 2px; background: var(--violet);
  transform: scaleX(0); transform-origin: left;
  transition: transform .28s cubic-bezier(.2, .7, .3, 1);
}
.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn)[aria-current="page"]::after { transform: scaleX(1); }

/* ─── Primary-button shine sweep ───────────────────────────────────────── */
.btn-primary, .btn-onviolet { position: relative; overflow: hidden; }
.btn-primary::before, .btn-onviolet::before {
  content: ""; position: absolute; top: -4px; bottom: -4px; left: -30%; width: 34%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .38), transparent);
  transform: skewX(-20deg) translateX(-140%); pointer-events: none;
}
.btn-onviolet::before { background: linear-gradient(105deg, transparent, rgba(124, 58, 237, .16), transparent); }
.btn-primary:hover::before, .btn-onviolet:hover::before { animation: shineSweep .85s cubic-bezier(.3, .6, .4, 1); }
@keyframes shineSweep { to { transform: skewX(-20deg) translateX(520%); } }

/* ─── CTA band: drifting dots + breathing gradient ─────────────────────── */
.cta-band { background-size: 170% 170%; animation: bandShift 14s ease-in-out infinite alternate; }
@keyframes bandShift { from { background-position: 0% 30%; } to { background-position: 100% 70%; } }
.cta-band .dots span { animation: dotDrift 9s ease-in-out infinite alternate; }
.cta-band .dots span:nth-child(2n)   { animation-duration: 12s; animation-delay: -4s; }
.cta-band .dots span:nth-child(3n)   { animation-duration: 15s; animation-delay: -7s; }
.cta-band .dots span:nth-child(3n+1) { animation-direction: alternate-reverse; }
@keyframes dotDrift { from { transform: translate(0, 0); } to { transform: translate(16px, -20px); } }

/* ─── Products: sticky-rail + deva-mark depth ──────────────────────────── */
.rail-link { transition: background-color .22s ease, color .22s ease, transform .18s ease; }
.rail-link.active { transform: translateY(-1px); }
.mod-hero .deva-mark { will-change: transform; }

/* ─── Small delights ───────────────────────────────────────────────────── */
details.faq[open] > p { animation: faqIn .32s cubic-bezier(.2, .7, .3, 1); }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.form-success:not([hidden]) .tick { animation: tickPop .55s cubic-bezier(.34, 1.56, .64, 1); }
@keyframes tickPop { 0% { transform: scale(.4); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.ind-chip::before { animation: chipPulse 2.6s ease-in-out infinite; }
.ind-chip:nth-child(2n)::before { animation-delay: -1.3s; }
@keyframes chipPulse { 0%, 100% { opacity: .55; } 50% { opacity: 1; } }

/* ═══════════════════════════════════════════════════════════════════════════
   The feels — texture, drama, soul. Grain, aurora, gradient type, the
   Devanagari strip, cursor spotlights, and a giant closing wordmark.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Film grain over everything (static tile, zero animation cost) ────── */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 250; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  opacity: .05;
}
[data-theme="dark"] body::before { opacity: .07; }

/* ─── Aurora: two slow-drifting color fields behind the hero ───────────── */
.hero-bg::before, .hero-bg::after {
  content: ""; position: absolute; border-radius: 50%; will-change: transform;
}
.hero-bg::before {
  width: 58vw; height: 58vw; right: -14%; top: -22%;
  background: radial-gradient(closest-side, rgba(124, 58, 237, .17), transparent 72%);
  animation: auroraA 21s ease-in-out infinite alternate;
}
.hero-bg::after {
  width: 44vw; height: 44vw; left: -12%; bottom: -18%;
  background: radial-gradient(closest-side, rgba(45, 212, 191, .13), rgba(56, 189, 248, .07) 55%, transparent 74%);
  animation: auroraB 27s ease-in-out infinite alternate;
}
[data-theme="dark"] .hero-bg::before { background: radial-gradient(closest-side, rgba(124, 58, 237, .30), transparent 72%); }
[data-theme="dark"] .hero-bg::after  { background: radial-gradient(closest-side, rgba(45, 212, 191, .16), rgba(56, 189, 248, .10) 55%, transparent 74%); }
@keyframes auroraA { from { transform: translate(0, 0) scale(1); } to { transform: translate(-9%, 12%) scale(1.18); } }
@keyframes auroraB { from { transform: translate(0, 0) scale(1); } to { transform: translate(11%, -9%) scale(1.22); } }

/* ─── Gradient headline word ───────────────────────────────────────────── */
:root { --gw1: #4C1D95; --gw2: #7C3AED; --gw3: #0369A1; }
[data-theme="dark"] { --gw1: #A78BFA; --gw2: #60A5FA; --gw3: #2DD4BF; }
.grad-word {
  background: linear-gradient(105deg, var(--gw1) 0%, var(--gw2) 45%, var(--gw3) 90%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  animation: gradSlide 9s ease-in-out infinite alternate;
}
@keyframes gradSlide { to { background-position: 100% 0; } }

/* ─── The Devanagari strip — the soul, writ large ──────────────────────── */
.deva-strip { overflow: hidden; padding: 6px 0 26px; }
.deva-strip .ds-item {
  font-family: var(--deva); font-weight: 700;
  font-size: clamp(52px, 8.5vw, 104px); line-height: 1.25;
  color: transparent;
  -webkit-text-stroke: 1.5px color-mix(in srgb, var(--m-ink) 52%, transparent);
  white-space: nowrap;
}
[data-theme="dark"] .deva-strip .ds-item { -webkit-text-stroke-color: color-mix(in srgb, var(--m-ink) 62%, transparent); }
.deva-strip .ds-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--m-mark); opacity: .65; flex: 0 0 auto; }
.deva-strip .marquee-group { gap: 52px; padding-right: 52px; align-items: center; }
.deva-strip .marquee.on .marquee-track { animation-duration: 58s; }
.deva-strip .marquee { -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }

/* ─── Cursor spotlight on cards ────────────────────────────────────────── */
.mcard::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; z-index: 0;
  opacity: 0; transition: opacity .35s ease; pointer-events: none;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%), color-mix(in srgb, var(--m-mark) 15%, transparent), transparent 70%);
}
.mcard:hover::after { opacity: 1; }
.cap { position: relative; overflow: hidden; }
.cap::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  opacity: 0; transition: opacity .3s ease; pointer-events: none;
  background: radial-gradient(230px circle at var(--mx, 50%) var(--my, 50%), color-mix(in srgb, var(--m-mark) 12%, transparent), transparent 72%);
}
.cap:hover::after { opacity: 1; }

/* ─── Module section tints to the hovered card's color ─────────────────── */
#modules { transition: background-color .55s ease; }
#modules:has(.mcard[data-m="gati"]:hover)     { background-color: color-mix(in srgb, #F3FBE8 60%, transparent); }
#modules:has(.mcard[data-m="shikhar"]:hover)  { background-color: color-mix(in srgb, #F2F1FB 60%, transparent); }
#modules:has(.mcard[data-m="kosh"]:hover)     { background-color: color-mix(in srgb, #EEF6FE 60%, transparent); }
#modules:has(.mcard[data-m="pehchaan"]:hover) { background-color: color-mix(in srgb, #E7F6F3 60%, transparent); }
#modules:has(.mcard[data-m="lekha"]:hover)    { background-color: color-mix(in srgb, #FAF7EC 60%, transparent); }
#modules:has(.mcard[data-m="kutumb"]:hover)   { background-color: color-mix(in srgb, #FCE7EC 60%, transparent); }
[data-theme="dark"] #modules:has(.mcard[data-m="gati"]:hover)     { background-color: rgba(191, 250, 41, .045); }
[data-theme="dark"] #modules:has(.mcard[data-m="shikhar"]:hover)  { background-color: rgba(167, 139, 250, .055); }
[data-theme="dark"] #modules:has(.mcard[data-m="kosh"]:hover)     { background-color: rgba(56, 189, 248, .05); }
[data-theme="dark"] #modules:has(.mcard[data-m="pehchaan"]:hover) { background-color: rgba(45, 212, 191, .05); }
[data-theme="dark"] #modules:has(.mcard[data-m="lekha"]:hover)    { background-color: rgba(245, 158, 11, .05); }
[data-theme="dark"] #modules:has(.mcard[data-m="kutumb"]:hover)   { background-color: rgba(226, 77, 104, .06); }

/* ─── Live pulse in the hero ───────────────────────────────────────────── */
.hero-live { display: inline-flex; align-items: center; gap: 9px; }
.live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #22C55E; flex: 0 0 auto;
  animation: livePulse 2.2s ease-out infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, .45); }
  70%  { box-shadow: 0 0 0 9px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* ─── Giant closing wordmark ───────────────────────────────────────────── */
footer.site { overflow: hidden; }
.foot-giant {
  font-family: var(--head); font-weight: 700; text-align: center;
  font-size: clamp(78px, 15vw, 210px); line-height: .8; letter-spacing: -0.04em;
  color: transparent; -webkit-text-stroke: 1px var(--line-2);
  user-select: none; pointer-events: none;
  transform: translateY(32%); margin-top: -16px;
  white-space: nowrap;
}
.foot-giant .dot-g { color: var(--violet); -webkit-text-fill-color: var(--violet); -webkit-text-stroke: 0; }

/* ─── Hero CTAs, slightly grander ──────────────────────────────────────── */
.hero-ctas .btn { padding: 16px 30px; font-size: 16.5px; }
.grad-word .accent-dot { -webkit-text-fill-color: var(--violet); color: var(--violet); }
