/* =========================================================
   Statora — Company Formation & Compliance, Bengaluru
   Design: teal + mint, product/dashboard aesthetic.
   Type:   Space Grotesk (display) + Inter (UI/body)
   ========================================================= */

:root {
  /* Brand */
  --ink:        #0B2530;   /* deep teal-charcoal (anchor) */
  --ink-2:      #103944;   /* mid teal */
  --ink-3:      #0E5D63;   /* teal */
  --mint:       #34C89A;   /* signature mint (anchor) */
  --mint-2:     #2BB6C4;   /* cyan-teal */
  --mint-deep:  #17A17E;

  /* Surfaces */
  --bg:         #F5F9F8;   /* faint teal-tinted paper */
  --surface:    #FFFFFF;
  --tint:       #ECF7F3;   /* mint tint band */
  --tint-2:     #E4F1EE;
  --line:       #DCE8E5;
  --line-soft:  #E8F0EE;

  /* Text */
  --tx:         #0B2530;
  --tx-2:       #45585E;
  --tx-3:       #6B7C81;
  --tx-inv:     #EAF6F2;

  /* Effects */
  --grad:       linear-gradient(135deg, #34C89A 0%, #2BB6C4 100%);
  --grad-ink:   linear-gradient(160deg, #103944 0%, #0B2530 60%, #082B2C 100%);
  --shadow-sm:  0 1px 2px rgba(11,37,48,.06), 0 2px 6px rgba(11,37,48,.05);
  --shadow-md:  0 6px 18px rgba(11,37,48,.08), 0 2px 6px rgba(11,37,48,.05);
  --shadow-lg:  0 24px 60px -20px rgba(11,37,48,.28), 0 8px 24px -12px rgba(11,37,48,.18);
  --shadow-mint:0 20px 44px -18px rgba(52,200,154,.45);

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

  --wrap: 1160px;
  --pad:  clamp(1.15rem, 4vw, 2rem);
  --sect: clamp(3.75rem, 8vw, 7rem);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--tx);
  background: var(--bg);
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, .brand__word, .hero__title, .section__title {
  font-family: "Space Grotesk", "Inter", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--tx);
  font-weight: 600;
}

::selection { background: rgba(52,200,154,.28); }

/* ---------- Utilities ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 12px 12px;
  font-weight: 600; transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

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

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .74rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 1rem;
}
.eyebrow--light { color: #9fe4cd; }
.eyebrow__dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--grad);
  box-shadow: 0 0 0 4px rgba(52,200,154,.18);
}

/* ---------- Buttons ---------- */
.btn {
  --bh: 0;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600; font-size: .95rem; letter-spacing: -0.01em;
  padding: .82rem 1.35rem; border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
  will-change: transform; white-space: nowrap;
}
.btn__icon { flex: none; }
.btn--sm { padding: .58rem 1.05rem; font-size: .86rem; }
.btn--lg { padding: .95rem 1.7rem; font-size: 1rem; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--grad); color: #052a22;
  box-shadow: var(--shadow-mint);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 26px 52px -18px rgba(52,200,154,.6); }

.btn--ghost {
  background: rgba(255,255,255,.06); color: var(--tx);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--mint); background: rgba(52,200,154,.08); }

.btn--outline {
  background: var(--surface); color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn--outline:hover { transform: translateY(-2px); border-color: var(--mint); box-shadow: var(--shadow-md); }

/* On dark surfaces */
.section--dark .btn--ghost, .band .btn--ghost, .cta .btn--ghost, .hero .btn--ghost {
  color: var(--tx);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,249,248,.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -18px rgba(11,37,48,.4);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 68px;
}

.brand { display: inline-flex; align-items: center; gap: .6rem; }
.brand__mark { display: inline-flex; filter: drop-shadow(0 4px 10px rgba(52,200,154,.35)); }
.brand__mark svg { display: block; }
.brand__word {
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 1.32rem;
  letter-spacing: -0.03em; color: var(--ink);
}
.brand--footer .brand__word { color: #fff; }

.nav { display: flex; align-items: center; }
.nav__menu {
  list-style: none; display: flex; align-items: center; gap: .35rem; padding: 0;
}
.nav__menu > li > a {
  display: inline-block; padding: .5rem .8rem; border-radius: 999px;
  font-size: .92rem; font-weight: 500; color: var(--tx-2);
  transition: color .18s, background .18s;
}
.nav__menu > li > a:hover { color: var(--ink); background: rgba(52,200,154,.1); }
.nav__cta { margin-left: .4rem; }
.nav__menu--simple { gap: 1rem; }

.nav__toggle { display: none; }
.nav__toggle-bars { display: block; width: 22px; height: 15px; position: relative; }
.nav__toggle-bars span {
  position: absolute; left: 0; height: 2px; width: 100%; background: var(--ink);
  border-radius: 2px; transition: transform .3s var(--ease), opacity .2s;
}
.nav__toggle-bars span:nth-child(1) { top: 0; }
.nav__toggle-bars span:nth-child(2) { top: 6.5px; }
.nav__toggle-bars span:nth-child(3) { top: 13px; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bars span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bars span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bars span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav__toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 12px; position: relative; z-index: 130;
    border: 1px solid var(--line); background: var(--surface);
  }
  /* Off-canvas panel is anchored fully inside the viewport (right:0, width < 100vw)
     and revealed via opacity/scale — never translated past the edge, so it can
     never create horizontal page overflow (fixed elements escape overflow-x clip). */
  .nav__menu {
    position: fixed; inset: 0 0 0 auto; width: min(84vw, 340px); max-width: 340px;
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: .2rem; padding: 5.5rem 1.4rem 2rem;
    background: var(--surface); box-shadow: var(--shadow-lg);
    opacity: 0; visibility: hidden; transform: scale(.98); transform-origin: top right;
    transition: opacity .3s var(--ease), transform .34s var(--ease), visibility 0s linear .34s;
    overflow-y: auto;
  }
  /* Simple menu (thank-you page) has no toggle — keep it inline & visible on mobile. */
  .nav__menu--simple {
    position: static; width: auto; max-width: none; flex-direction: row; align-items: center;
    gap: .7rem; padding: 0; background: none; box-shadow: none;
    opacity: 1; visibility: visible; transform: none; overflow: visible;
  }
  .nav__menu--simple > li > a { display: inline-block; padding: .5rem .7rem; font-size: .95rem; border-radius: 999px; }
  .nav__menu--simple .nav__cta { margin: 0; }
  .nav__menu--simple .nav__cta .btn { width: auto; }
  .nav__menu[data-open="true"] {
    opacity: 1; visibility: visible; transform: none;
    transition: opacity .3s var(--ease), transform .34s var(--ease), visibility 0s;
  }
  .nav__menu > li > a { display: block; padding: .85rem 1rem; font-size: 1.05rem; border-radius: 12px; }
  .nav__cta { margin: .6rem 0 0; }
  .nav__cta .btn { width: 100%; }
  body.nav-open { overflow: hidden; }
  .nav-scrim {
    position: fixed; inset: 0; background: rgba(11,37,48,.4); z-index: 90;
    opacity: 0; pointer-events: none; transition: opacity .3s;
    backdrop-filter: blur(2px);
  }
  .nav-scrim[data-open="true"] { opacity: 1; pointer-events: auto; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(3.5rem, 7vw, 6rem); overflow: hidden; }
.hero__grid-bg {
  position: absolute; inset: -1px 0 auto; height: 620px; z-index: 0;
  background:
    radial-gradient(700px 340px at 78% -6%, rgba(52,200,154,.16), transparent 70%),
    radial-gradient(560px 300px at 8% 4%, rgba(43,182,196,.12), transparent 70%),
    linear-gradient(to right, rgba(11,37,48,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11,37,48,.04) 1px, transparent 1px);
  background-size: auto, auto, 48px 48px, 48px 48px;
  -webkit-mask-image: linear-gradient(to bottom, #000 55%, transparent);
  mask-image: linear-gradient(to bottom, #000 55%, transparent);
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero__title {
  font-size: clamp(2.35rem, 5.6vw, 4rem); font-weight: 600; margin: .3rem 0 1.1rem;
}
.hero__lede {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--tx-2); max-width: 33ch;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.9rem 0 2.2rem; }

.hero__stats {
  display: grid; grid-template-columns: repeat(3, auto); gap: clamp(1.2rem, 4vw, 2.4rem);
  padding-top: 1.6rem; border-top: 1px solid var(--line);
}
.hero__stats dt {
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: clamp(1.5rem, 3vw, 1.9rem);
  color: var(--ink); letter-spacing: -0.03em;
}
.hero__stats dd { font-size: .82rem; color: var(--tx-3); margin-top: .1rem; line-height: 1.35; }

/* Product window mock */
.hero__product { position: relative; }
.window {
  background: #fff; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line-soft);
  transform: perspective(1400px) rotateY(-6deg) rotateX(2deg);
  transition: transform .5s var(--ease);
}
.hero__product:hover .window { transform: perspective(1400px) rotateY(-2deg) rotateX(1deg); }
.window__bar {
  display: flex; align-items: center; gap: .45rem;
  padding: .7rem .9rem; background: #F2F7F5; border-bottom: 1px solid var(--line-soft);
}
.window__dot { width: 10px; height: 10px; border-radius: 50%; background: #cdd9d6; }
.window__dot:nth-child(1) { background: #ff6a5e; }
.window__dot:nth-child(2) { background: #ffbf3b; }
.window__dot:nth-child(3) { background: #34c74a; }
.window__url {
  margin-left: .5rem; font-size: .72rem; color: var(--tx-3);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  background: #fff; padding: .22rem .6rem; border-radius: 6px; border: 1px solid var(--line-soft);
}
.window__body { padding: 1.2rem; background:
  linear-gradient(180deg, #fbfefd, #f5faf8); }

.dash { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r); padding: 1.15rem; box-shadow: var(--shadow-sm); }
.dash__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.dash__eyebrow { font-size: .66rem; text-transform: uppercase; letter-spacing: .1em; color: var(--tx-3); font-weight: 600; }
.dash__co { font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 1.12rem; color: var(--ink); margin-top: .15rem; }
.dash__cin { font-size: .72rem; color: var(--tx-3); font-family: ui-monospace, Menlo, monospace; margin-top: .2rem; }
.dash__cin .blur { filter: blur(3px); }

.score { text-align: center; flex: none; }
.score__ring {
  width: 56px; height: 56px; border-radius: 50%;
  background: conic-gradient(var(--mint) 0 96%, #e6efec 96% 100%);
  display: grid; place-items: center; margin: 0 auto;
  position: relative;
}
.score__ring::after { content: ""; position: absolute; inset: 5px; background: #fff; border-radius: 50%; }
.score__ring span { position: relative; z-index: 1; font-family: "Space Grotesk"; font-weight: 700; font-size: 1.1rem; color: var(--ink); }
.score__label { font-size: .6rem; color: var(--tx-3); line-height: 1.2; margin-top: .3rem; text-transform: uppercase; letter-spacing: .06em; }

.dash__list { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: .5rem; }
.dash__list li {
  display: flex; align-items: center; gap: .6rem; font-size: .82rem; color: var(--tx-2);
  padding: .6rem .7rem; border-radius: 10px; background: #F6FAF9; border: 1px solid var(--line-soft);
}
.dash__list li em { margin-left: auto; font-style: normal; font-weight: 600; font-size: .72rem; }
.dash__list .tick { width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; font-size: .7rem; flex: none; }
.dash__list .ok .tick { background: rgba(52,200,154,.18); color: var(--mint-deep); }
.dash__list .ok em { color: var(--mint-deep); }
.dash__list .due .tick { background: rgba(255,176,32,.2); color: #b47600; }
.dash__list .due em { color: #b47600; }

.dash__foot { display: flex; gap: .5rem; margin-top: .9rem; flex-wrap: wrap; }
.chip {
  font-size: .7rem; font-weight: 600; padding: .3rem .65rem; border-radius: 999px;
  background: #EEF4F2; color: var(--tx-2); border: 1px solid var(--line-soft);
}
.chip--mint { background: rgba(52,200,154,.14); color: var(--mint-deep); border-color: rgba(52,200,154,.3); }

.float-chip {
  position: absolute; z-index: 3; background: #fff; box-shadow: var(--shadow-md);
  border: 1px solid var(--line-soft); border-radius: 12px; padding: .55rem .8rem;
  font-size: .78rem; font-weight: 600; color: var(--ink);
  display: inline-flex; align-items: center; gap: .45rem;
  animation: floaty 5s ease-in-out infinite;
}
.float-chip::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 4px rgba(52,200,154,.2); }
.float-chip--a { top: 12%; left: -6%; }
.float-chip--b { bottom: 9%; right: -4%; animation-delay: -2.5s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.trust__inner {
  display: flex; align-items: center; gap: 1.5rem 2.2rem; flex-wrap: wrap;
  padding-block: 1.4rem;
}
.trust__label { font-size: .78rem; font-weight: 600; color: var(--tx-3); text-transform: uppercase; letter-spacing: .08em; flex: none; }
.trust__list { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem 1.8rem; padding: 0; }
.trust__list li {
  font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 1rem; color: var(--tx-2);
  position: relative; padding-left: 1.1rem;
}
.trust__list li::before { content: "◆"; position: absolute; left: 0; color: var(--mint); font-size: .6rem; top: .35em; }

/* ============================================================
   SECTIONS (generic)
   ============================================================ */
.section { padding-block: var(--sect); }
.section--tint { background: var(--tint); }
.section__head { max-width: 640px; margin: 0 auto clamp(2.2rem, 4vw, 3.4rem); text-align: center; }
.section__head--left, .section__head--light.section__head--left { text-align: left; margin-inline: 0; }
.section__title { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
.section__lede { color: var(--tx-2); font-size: clamp(1rem, 1.3vw, 1.12rem); margin-top: 1rem; }
.section__aside {
  text-align: center; margin-top: 2.4rem; color: var(--tx-2); font-size: .98rem;
  max-width: 680px; margin-inline: auto;
}
.section__aside a { color: var(--ink-3); font-weight: 600; border-bottom: 1.5px solid rgba(52,200,154,.4); }
.section__aside a:hover { border-color: var(--mint); }

/* Card grids */
.cards { display: grid; gap: 1.4rem; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.8rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(52,200,154,.4); }

/* Entity cards */
.entity { display: flex; flex-direction: column; }
.entity__tag {
  align-self: flex-start; font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--tx-3); background: #F0F5F3; border: 1px solid var(--line-soft);
  padding: .3rem .6rem; border-radius: 999px; margin-bottom: 1rem;
}
.entity__tag--mint { color: var(--mint-deep); background: rgba(52,200,154,.14); border-color: rgba(52,200,154,.3); }
.entity__name { font-size: 1.55rem; margin-bottom: .55rem; }
.entity__desc { color: var(--tx-2); font-size: .95rem; }
.entity--feature {
  background: var(--grad-ink); border-color: transparent; color: var(--tx-inv);
  box-shadow: var(--shadow-lg);
}
.entity--feature .entity__name { color: #fff; }
.entity--feature .entity__desc { color: #b9d6d0; }
.entity--feature .ticklist li { color: #cfe6e1; }
.entity--feature .ticklist li::before { background: rgba(52,200,154,.22); }
.entity--feature .card__link { color: #9fe4cd; }
.entity--feature:hover { border-color: transparent; }

.ticklist { list-style: none; padding: 0; margin: 1.3rem 0; display: grid; gap: .6rem; }
.ticklist li {
  position: relative; padding-left: 1.9rem; font-size: .92rem; color: var(--tx-2); line-height: 1.5;
}
.ticklist li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 20px; height: 20px; border-radius: 6px; display: grid; place-items: center;
  font-size: .72rem; font-weight: 700; color: var(--mint-deep); background: rgba(52,200,154,.14);
}
.card__link {
  margin-top: auto; align-self: flex-start;
  font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: .92rem; color: var(--ink-3);
  display: inline-flex; align-items: center; gap: .4rem;
  transition: gap .2s var(--ease);
}
.card__link span { transition: transform .2s var(--ease); }
.card__link:hover span { transform: translateX(4px); }

/* ============================================================
   SPLIT (formation)
   ============================================================ */
.split { padding-block: var(--sect); background: var(--surface); border-block: 1px solid var(--line); }
.split__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.split__media { position: relative; }
.split__media img { border-radius: var(--r-lg); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; }
.split__badge {
  position: absolute; bottom: -18px; left: -14px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: .8rem 1rem; box-shadow: var(--shadow-md);
  display: grid; gap: .1rem;
}
.split__badge strong { font-family: "Space Grotesk"; font-size: .98rem; color: var(--ink); }
.split__badge span { font-size: .76rem; color: var(--tx-3); }

.feature-list { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; gap: 1.1rem; }
.feature-list li { display: grid; gap: .15rem; padding-left: 1.15rem; border-left: 2px solid rgba(52,200,154,.4); }
.feature-list__k { font-family: "Space Grotesk"; font-weight: 600; color: var(--ink); font-size: 1rem; }
.feature-list__v { color: var(--tx-2); font-size: .92rem; }
.feature-list--tight { gap: .9rem; }

/* ============================================================
   COMPLIANCE
   ============================================================ */
.compliance { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(1.4rem, 3vw, 2.4rem); align-items: start; }
.compliance__panel {
  background: var(--grad-ink); color: var(--tx-inv); border-radius: var(--r-lg);
  padding: clamp(1.3rem, 2.5vw, 1.9rem); box-shadow: var(--shadow-lg);
  position: sticky; top: 90px;
}
.compliance__panel-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.3rem; }
.compliance__panel-title { font-family: "Space Grotesk"; font-weight: 600; font-size: 1.05rem; color: #fff; }

.timeline { list-style: none; padding: 0; margin: 0; display: grid; gap: .2rem; }
.timeline__item {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: .9rem;
  position: relative; padding: .85rem 0 .85rem .2rem;
}
.timeline__item::after {
  content: ""; position: absolute; left: 6px; top: 2.4rem; bottom: -.4rem; width: 2px;
  background: rgba(255,255,255,.14);
}
.timeline__item:last-child::after { display: none; }
.timeline__dot {
  width: 14px; height: 14px; border-radius: 50%; background: rgba(255,255,255,.2);
  border: 2px solid rgba(255,255,255,.35); z-index: 1;
}
.timeline__item.done .timeline__dot { background: var(--mint); border-color: var(--mint); box-shadow: 0 0 0 4px rgba(52,200,154,.2); }
.timeline__item.active .timeline__dot { background: #ffbf3b; border-color: #ffbf3b; box-shadow: 0 0 0 4px rgba(255,191,59,.22); }
.timeline__k { font-family: "Space Grotesk"; font-weight: 600; color: #fff; font-size: .98rem; }
.timeline__v { font-size: .78rem; color: #a9cbc5; margin-top: .1rem; }
.timeline__state { font-size: .72rem; font-weight: 600; color: #9fe4cd; }
.timeline__state--due { color: #ffcf6b; }

.compliance__list { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.mini {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.3rem; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.mini:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(52,200,154,.4); }
.mini h3 { font-size: 1.08rem; margin-bottom: .45rem; display: flex; align-items: center; gap: .5rem; }
.mini h3::before { content: ""; width: 8px; height: 8px; border-radius: 3px; background: var(--grad); }
.mini p { font-size: .9rem; color: var(--tx-2); }

/* ============================================================
   PACKAGES
   ============================================================ */
.plans { align-items: stretch; }
.plan {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.9rem; display: flex; flex-direction: column; position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(52,200,154,.4); }
.plan--featured {
  border-color: transparent;
  box-shadow: var(--shadow-lg), 0 0 0 2px var(--mint);
}
.plan__flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #052a22; font-size: .72rem; font-weight: 700;
  padding: .32rem .85rem; border-radius: 999px; letter-spacing: .02em; white-space: nowrap;
  box-shadow: var(--shadow-mint);
}
.plan__top { padding-bottom: 1.1rem; border-bottom: 1px dashed var(--line); }
.plan__name { font-size: 1.5rem; }
.plan__for { color: var(--tx-3); font-size: .88rem; margin-top: .2rem; }
.plan .ticklist { flex: 1; margin: 1.2rem 0 1.5rem; }
.plan .btn { margin-top: auto; }

/* ============================================================
   PROCESS (dark)
   ============================================================ */
.section--dark { background: var(--grad-ink); color: var(--tx-inv); position: relative; overflow: hidden; }
.section--dark::before {
  content: ""; position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background:
    radial-gradient(600px 300px at 85% 0%, rgba(52,200,154,.16), transparent 65%),
    radial-gradient(500px 300px at 5% 100%, rgba(43,182,196,.14), transparent 65%);
}
.section--dark > .wrap { position: relative; z-index: 1; }
.section__head--light .section__title { color: #fff; }
.section__head--light .section__lede { color: #a9cbc5; }

.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; counter-reset: step; }
.step {
  position: relative; padding: 1.6rem 1.3rem; border-radius: var(--r-lg);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  transition: transform .3s var(--ease), background .3s, border-color .3s;
}
.step:hover { transform: translateY(-5px); background: rgba(255,255,255,.07); border-color: rgba(52,200,154,.4); }
.step__num {
  font-family: "Space Grotesk"; font-weight: 700; font-size: 1.3rem;
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: rgba(52,200,154,.16); color: #9fe4cd; border: 1px solid rgba(52,200,154,.3);
  margin-bottom: 1.1rem;
}
.step__title { color: #fff; font-size: 1.14rem; margin-bottom: .5rem; }
.step__desc { color: #a9cbc5; font-size: .9rem; }

/* ============================================================
   BENCH / TEAM
   ============================================================ */
.bench { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.bench__media img { border-radius: var(--r-lg); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; }

.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.teammate {
  display: flex; align-items: center; gap: 1rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.1rem; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.teammate:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(52,200,154,.4); }
.teammate__photo {
  width: 74px; height: 74px; border-radius: 18px; overflow: hidden; flex: none;
  background: var(--grad-ink);
}
.teammate__photo img { width: 100%; height: 100%; object-fit: cover; }
.teammate__photo--mono { display: grid; place-items: center; }
.teammate__photo--mono span {
  font-family: "Space Grotesk"; font-weight: 700; font-size: 1.3rem;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.teammate__name { font-size: 1.1rem; }
.teammate__role { font-size: .8rem; color: var(--mint-deep); font-weight: 600; margin: .1rem 0 .35rem; }
.teammate__bio { font-size: .83rem; color: var(--tx-2); }

/* ============================================================
   BENGALURU BAND
   ============================================================ */
.band { position: relative; overflow: hidden; }
.band__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.band__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(8,32,36,.94) 0%, rgba(11,37,48,.85) 45%, rgba(14,93,99,.55) 100%);
}
.band__inner { position: relative; z-index: 1; padding-block: clamp(4rem, 8vw, 6.5rem); max-width: 620px; }
.band__title { font-size: clamp(1.8rem, 3.6vw, 2.6rem); color: #fff; }
.band__lede { color: #bcdcd6; margin: 1rem 0 2rem; font-size: 1.05rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: start; }
.faq__list { display: grid; gap: .8rem; }
.qa {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; transition: border-color .25s, box-shadow .25s;
}
.qa[open] { border-color: rgba(52,200,154,.5); box-shadow: var(--shadow-sm); }
.qa summary {
  list-style: none; cursor: pointer; padding: 1.1rem 1.3rem;
  font-family: "Space Grotesk"; font-weight: 600; font-size: 1.02rem; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: ""; flex: none; width: 20px; height: 20px; position: relative;
  background:
    linear-gradient(var(--ink-3),var(--ink-3)) center/12px 2px no-repeat,
    linear-gradient(var(--ink-3),var(--ink-3)) center/2px 12px no-repeat;
  transition: transform .3s var(--ease);
}
.qa[open] summary::after { transform: rotate(135deg); }
.qa__body { padding: 0 1.3rem 1.2rem; }
.qa__body p { color: var(--tx-2); font-size: .95rem; }

/* ============================================================
   CTA
   ============================================================ */
.cta { padding-block: var(--sect); background: var(--surface); }
.cta__inner {
  background: var(--grad-ink); color: #fff; border-radius: var(--r-xl);
  padding: clamp(2.2rem, 5vw, 3.6rem); position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 2rem; align-items: center;
  box-shadow: var(--shadow-lg);
}
.cta__inner::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(500px 260px at 90% 10%, rgba(52,200,154,.24), transparent 62%);
}
.cta__title { font-size: clamp(1.7rem, 3.4vw, 2.4rem); color: #fff; position: relative; }
.cta__lede { color: #b9d6d0; margin-top: .8rem; position: relative; }
.cta__actions { display: flex; flex-direction: column; gap: .8rem; position: relative; align-items: stretch; }
.cta__actions .btn { justify-content: center; }
.cta .btn--ghost { color: #fff; border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.05); }
.cta .btn--ghost:hover { border-color: var(--mint); background: rgba(52,200,154,.12); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: #b9d6d0; padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2rem;
  padding-bottom: 2.6rem;
}
.footer__tag { color: #8bb2ab; font-size: .92rem; margin: 1rem 0; max-width: 30ch; }
.footer__addr { color: #7fa8a1; font-size: .84rem; line-height: 1.6; }
.footer__col h3 {
  font-family: "Space Grotesk"; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em;
  color: #6f9a92; margin-bottom: 1rem; font-weight: 600;
}
.footer__col ul { list-style: none; padding: 0; display: grid; gap: .6rem; }
.footer__col a, .footer__contact span { color: #b9d6d0; font-size: .92rem; transition: color .18s; }
.footer__col a:hover { color: var(--mint); }
.footer__social { display: flex; gap: .6rem; margin-top: 1.2rem; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); color: #cfe6e1;
  transition: background .2s, transform .2s, color .2s;
}
.footer__social a:hover { background: var(--grad); color: #052a22; transform: translateY(-2px); }

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  padding-block: 1.5rem; border-top: 1px solid rgba(255,255,255,.1);
  font-size: .82rem; color: #7fa8a1;
}
.footer__bottom--solo { border-top: none; }
.footer__credit a { color: #cfe6e1; border-bottom: 1px solid rgba(52,200,154,.4); }
.footer__credit a:hover { color: var(--mint); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact { padding-block: clamp(2.5rem, 5vw, 4.5rem) var(--sect); position: relative; }
.contact::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 340px; z-index: -1;
  background:
    radial-gradient(600px 300px at 80% -10%, rgba(52,200,154,.14), transparent 68%),
    radial-gradient(500px 280px at 5% 0%, rgba(43,182,196,.1), transparent 68%);
}
.contact__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact__title { font-size: clamp(2rem, 4vw, 3rem); margin: .2rem 0 1rem; }
.contact__lede { color: var(--tx-2); font-size: 1.08rem; max-width: 42ch; }

.contact__channels { list-style: none; padding: 0; margin: 2rem 0; display: grid; gap: 1.1rem; }
.contact__channels li { display: flex; align-items: flex-start; gap: .9rem; }
.contact__ic {
  flex: none; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(52,200,154,.14); color: var(--mint-deep); border: 1px solid rgba(52,200,154,.3);
}
.contact__ch { display: grid; gap: .1rem; }
.contact__ch strong { font-family: "Space Grotesk"; font-size: .92rem; color: var(--ink); }
.contact__ch a, .contact__ch span { color: var(--tx-2); font-size: .95rem; }
.contact__ch a:hover { color: var(--ink-3); }

.contact__hours {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.1rem 1.3rem;
}
.contact__hours p:first-child { font-family: "Space Grotesk"; color: var(--ink); font-size: .9rem; margin-bottom: .3rem; }
.contact__hours p:last-child { color: var(--tx-2); font-size: .92rem; }

/* Form */
.contact__formwrap {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: clamp(1.5rem, 3vw, 2.4rem); box-shadow: var(--shadow-lg);
}
.form { display: grid; gap: 1.1rem; }
.form__row { display: grid; gap: 1.1rem; }
.form__row--2 { grid-template-columns: 1fr 1fr; }
.field { display: grid; gap: .4rem; }
.field__label { font-size: .84rem; font-weight: 600; color: var(--ink); font-family: "Space Grotesk"; }
.req { color: var(--mint-deep); }
.field__input {
  width: 100%; font: inherit; font-size: .95rem; color: var(--tx);
  background: #FafcfB; border: 1.5px solid var(--line); border-radius: 12px;
  padding: .8rem .95rem; transition: border-color .2s, box-shadow .2s, background .2s;
}
.field__input::placeholder { color: #9fb0b3; }
.field__input:focus {
  outline: none; border-color: var(--mint); background: #fff;
  box-shadow: 0 0 0 4px rgba(52,200,154,.16);
}
.field__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230E5D63' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.6rem;
}
.field__textarea { resize: vertical; min-height: 120px; }
.form__note { font-size: .82rem; color: var(--tx-3); text-align: center; margin-top: -.2rem; }

.form.is-sending [data-submit] { opacity: .7; pointer-events: none; }

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
.ty-body { background: var(--bg); }
.ty { position: relative; overflow: hidden; padding-block: clamp(3.5rem, 9vw, 7rem); }
.ty__grid-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(620px 340px at 50% -6%, rgba(52,200,154,.16), transparent 68%),
    linear-gradient(to right, rgba(11,37,48,.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11,37,48,.035) 1px, transparent 1px);
  background-size: auto, 46px 46px, 46px 46px;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 30%, #000, transparent);
  mask-image: radial-gradient(70% 60% at 50% 30%, #000, transparent);
}
.ty__inner { position: relative; z-index: 1; max-width: 760px; margin-inline: auto; text-align: center; }
.ty__check { display: inline-flex; margin-bottom: 1.4rem; filter: drop-shadow(0 12px 24px rgba(52,200,154,.35)); }
.ty__check svg .checkpath { }
.ty .eyebrow { color: var(--ink-3); }
.ty .eyebrow--light { color: var(--ink-3); }
.ty__title { font-size: clamp(2rem, 4.6vw, 3rem); margin-bottom: 1rem; }
.ty__lede { color: var(--tx-2); font-size: 1.1rem; max-width: 52ch; margin: 0 auto; }

.ty__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 2.6rem 0; text-align: left; }
.ty__card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.3rem; box-shadow: var(--shadow-sm);
}
.ty__num {
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px;
  background: rgba(52,200,154,.14); color: var(--mint-deep); font-family: "Space Grotesk";
  font-weight: 700; margin-bottom: .8rem; border: 1px solid rgba(52,200,154,.3);
}
.ty__card p { font-size: .92rem; color: var(--tx-2); }
.ty__urgent { color: var(--tx-2); margin-bottom: 2rem; }
.ty__urgent a { color: var(--ink-3); font-weight: 600; border-bottom: 1.5px solid rgba(52,200,154,.4); }
.ty__urgent a:hover { border-color: var(--mint); }
.ty__actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   REVEAL / MOTION
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .float-chip { animation: none; }
  .window { transform: none !important; }
  .btn, .card, .plan, .step, .mini, .teammate { transition: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__product { order: -1; max-width: 500px; }
  .window { transform: none; }
  .float-chip--a { left: 0; }
  .float-chip--b { right: 0; }
  .compliance { grid-template-columns: 1fr; }
  .compliance__panel { position: static; }
  .split__inner, .bench, .contact__grid, .faq { grid-template-columns: 1fr; }
  .split__media { order: -1; }
  .cta__inner { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .team { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .cards--3 { grid-template-columns: 1fr; }
  .compliance__list { grid-template-columns: 1fr; }
  .ty__cards { grid-template-columns: 1fr; }
  .band__overlay { background: linear-gradient(180deg, rgba(8,32,36,.92), rgba(11,37,48,.82)); }
  .split__badge { left: 8px; bottom: -14px; }
}

@media (max-width: 560px) {
  .hero__stats { grid-template-columns: 1fr; gap: .9rem; text-align: left; }
  .hero__stats div { display: flex; align-items: baseline; gap: .7rem; }
  .steps { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .btn { width: auto; }
  .hero__actions .btn { flex: 1 1 auto; }
}
