/* ambar 27 — dark-first, amber. ponytail: one stylesheet, no build step. */

/* ── tokens ─────────────────────────────────────────────────────── */
:root {
  --bg:       #08090D;
  --bg-2:     #0C0E13;
  --bg-3:     #11131A;
  --surf:     rgba(255,255,255,.028);
  --surf-2:   rgba(255,255,255,.05);
  --line:     rgba(255,255,255,.075);
  --line-2:   rgba(255,255,255,.13);

  --tx:       #F3F4F7;
  --tx-2:     #9DA3B2;
  --tx-3:     #6A7180;

  --amber:    #FFB020;
  --amber-2:  #FFD37A;
  --amber-3:  #C97F0F;
  --ember:    #FF6A45;
  --green:    #3DDC97;

  --grad:     linear-gradient(100deg, #FFD37A 0%, #FFB020 42%, #FF6A45 100%);
  --grad-sm:  linear-gradient(100deg, #FFC24D, #FF7B4F);
  --glow:     0 0 0 1px rgba(255,176,32,.28), 0 18px 60px -20px rgba(255,140,50,.4);

  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --disp:  "Outfit", "Inter", sans-serif;

  --wrap: 1200px;
  --r: 18px;
  --r-sm: 11px;
}

/* ── reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.62;
  color: var(--tx-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1, "cv11" 1;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
::selection { background: rgba(255,176,32,.26); color: #fff; }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; border-radius: 4px; }

/* ambient page texture — grid + glow, fixed behind everything */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(ellipse 120% 78% at 50% 0%, #000 12%, transparent 74%);
  -webkit-mask-image: radial-gradient(ellipse 120% 78% at 50% 0%, #000 12%, transparent 74%);
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ── type ───────────────────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--disp); font-weight: 500; color: var(--tx); line-height: 1.08; letter-spacing: -.03em; }
h4, h5 { font-family: var(--sans); font-weight: 600; color: var(--tx); letter-spacing: -.012em; line-height: 1.35; }
h1 { font-size: clamp(2.7rem, 6vw, 4.6rem); letter-spacing: -.042em; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); letter-spacing: -.036em; }
h3 { font-size: clamp(1.24rem, 2vw, 1.5rem); letter-spacing: -.026em; }
h4 { font-size: 1.02rem; }
p { color: var(--tx-2); }
strong, b { color: var(--tx); font-weight: 600; }

.gt { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55em;
  font-size: .715rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 1.15rem;
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 12px var(--amber); }
.lead { font-size: clamp(1.04rem, 1.45vw, 1.19rem); line-height: 1.6; color: var(--tx-2); }
.mono-num { font-variant-numeric: tabular-nums; }

/* ── layout ─────────────────────────────────────────────────────── */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 26px; }
.wrap-nar { max-width: 820px; }
section { padding: clamp(66px, 8vw, 120px) 0; position: relative; }
.sec-head { max-width: 730px; margin-bottom: clamp(38px, 5vw, 60px); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head p { margin-top: 1.15rem; font-size: 1.06rem; }

.grid { display: grid; gap: 18px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 74px); align-items: center; }
.split-w { grid-template-columns: .96fr 1.04fr; }
.tint { background: linear-gradient(180deg, transparent, var(--bg-2) 18%, var(--bg-2) 82%, transparent); }

/* section top hairline with a lit centre */
.rule { height: 1px; border: 0; background: linear-gradient(90deg, transparent, var(--line-2) 22%, var(--line-2) 78%, transparent); }

/* ── cards ──────────────────────────────────────────────────────── */
.card {
  position: relative; border-radius: var(--r); padding: 28px 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.014));
  border: 1px solid var(--line); overflow: hidden;
  transition: border-color .26s ease, transform .26s ease, box-shadow .26s ease;
}
.card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(150deg, rgba(255,176,32,.5), transparent 42%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .26s ease; pointer-events: none;
}
a.card:hover, .card.lift:hover { transform: translateY(-3px); box-shadow: 0 24px 60px -32px rgba(0,0,0,.9); border-color: var(--line-2); }
a.card:hover::before, .card.lift:hover::before { opacity: 1; }
.card h3, .card h4 { margin-bottom: .55rem; }
.card p { font-size: .925rem; line-height: 1.6; }

.ico {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(150deg, rgba(255,176,32,.2), rgba(255,106,69,.08));
  border: 1px solid rgba(255,176,32,.22); color: var(--amber-2);
}
.ico svg { width: 19px; height: 19px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* ── bento ──────────────────────────────────────────────────────── */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.b-3 { grid-column: span 3; } .b-2 { grid-column: span 2; } .b-4 { grid-column: span 4; } .b-6 { grid-column: span 6; }

/* ── buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: .82em 1.5em; border-radius: 10px; border: 1px solid transparent;
  font-size: .92rem; font-weight: 550; letter-spacing: -.008em; cursor: pointer;
  transition: all .22s cubic-bezier(.3,.7,.4,1); white-space: nowrap; position: relative;
}
.btn-p { background: var(--grad-sm); color: #14100A; font-weight: 650; box-shadow: 0 10px 30px -12px rgba(255,140,60,.55); }
.btn-p:hover { transform: translateY(-2px); box-shadow: 0 18px 44px -14px rgba(255,140,60,.75); filter: brightness(1.06); }
.btn-s { background: var(--surf-2); color: var(--tx); border-color: var(--line-2); backdrop-filter: blur(8px); }
.btn-s:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.25); transform: translateY(-2px); }
.btn-lg { padding: .95em 1.8em; font-size: .98rem; }
.btn svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .22s; }
.btn:hover svg { transform: translateX(3px); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

.tlink { display: inline-flex; align-items: center; gap: .42em; font-size: .885rem; font-weight: 550; color: var(--amber); }
.tlink svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s; }
a.card:hover .tlink svg { transform: translateX(4px); }

/* ── header ─────────────────────────────────────────────────────── */
.hdr { position: sticky; top: 0; z-index: 90; background: rgba(8,9,13,.72);
  backdrop-filter: saturate(180%) blur(18px); border-bottom: 1px solid var(--line); }
.hdr-in { display: flex; align-items: center; gap: 34px; height: 70px; }
.brand { display: flex; align-items: baseline; gap: 7px; color: var(--tx); }
.logo-svg { height: auto; }
.brand em { font-style: normal; font-family: var(--disp); font-weight: 500; font-size: .93rem;
  color: var(--amber); letter-spacing: -.02em; }

.nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav > a, .nav-t {
  padding: .5em .8em; border-radius: 8px; font-size: .905rem; font-weight: 450; color: var(--tx-2);
  background: none; border: 0; cursor: pointer; display: inline-flex; align-items: center; gap: .35em;
  transition: color .16s, background .16s;
}
.nav > a:hover, .nav-t:hover, .nav > a.on { color: var(--tx); background: var(--surf-2); }
.nav-t svg { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; opacity: .55; transition: transform .22s; }
.has-menu { position: relative; }
.has-menu:hover .nav-t svg { transform: rotate(180deg); }
.menu {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(-8px);
  width: 580px; border-radius: 16px; padding: 12px; display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  background: #0F1117; border: 1px solid var(--line-2);
  box-shadow: 0 32px 70px -20px rgba(0,0,0,.9);
  opacity: 0; visibility: hidden; transition: all .22s cubic-bezier(.3,.7,.4,1);
}
.has-menu:hover .menu, .has-menu:focus-within .menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.menu a { display: block; padding: 11px 13px; border-radius: 11px; transition: background .16s; }
.menu a:hover { background: var(--surf-2); }
.menu b { display: block; font-size: .885rem; font-weight: 600; color: var(--tx); letter-spacing: -.012em; }
.menu i { display: block; font-style: normal; font-size: .785rem; color: var(--tx-3); line-height: 1.45; margin-top: 2px; }
.hdr-cta { display: flex; align-items: center; gap: 10px; margin-left: 12px; }
.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto; }
.burger svg { width: 22px; height: 22px; stroke: var(--tx); fill: none; stroke-width: 1.8; stroke-linecap: round; }
.mnav { display: none; border-top: 1px solid var(--line); padding: 12px 0 22px; }
.mnav.open { display: block; }
.mnav a { display: block; padding: 11px 2px; font-size: 1rem; font-weight: 500; color: var(--tx); border-bottom: 1px solid var(--line); }
.mnav .sub { padding-left: 14px; font-size: .92rem; color: var(--tx-2); font-weight: 400; }
.mnav .btn { margin-top: 18px; width: 100%; }

/* ── hero ───────────────────────────────────────────────────────── */
.hero { padding: clamp(70px, 9vw, 118px) 0 clamp(58px, 7vw, 96px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; z-index: -1; top: -280px; left: 50%; transform: translateX(-50%);
  width: 1300px; height: 760px; pointer-events: none;
  background:
    radial-gradient(closest-side, rgba(255,176,32,.19), transparent 72%),
    radial-gradient(closest-side at 72% 46%, rgba(255,106,69,.15), transparent 70%),
    radial-gradient(closest-side at 24% 60%, rgba(120,90,255,.1), transparent 70%);
  filter: blur(22px);
}
.hero h1 { margin-bottom: 1.5rem; }
.hero .lead { max-width: 580px; }
.hero .btn-row { margin-top: 2.4rem; }

.pill {
  display: inline-flex; align-items: center; gap: .6em; padding: .38em 1em .38em .42em;
  border: 1px solid var(--line-2); border-radius: 100px; font-size: .795rem; color: var(--tx-2);
  margin-bottom: 1.7rem; background: var(--surf-2); backdrop-filter: blur(10px);
}
.pill b { background: var(--grad-sm); color: #14100A; font-weight: 650; padding: .22em .7em;
  border-radius: 100px; font-size: .715rem; letter-spacing: .01em; }

/* ── stats ──────────────────────────────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.stats > div { background: var(--bg-2); padding: 28px 24px; transition: background .24s; }
.stats > div:hover { background: var(--bg-3); }
.stats b { display: block; font-family: var(--disp); font-size: clamp(2rem, 3.2vw, 2.7rem); font-weight: 500;
  letter-spacing: -.04em; line-height: 1; font-variant-numeric: tabular-nums;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stats span { display: block; margin-top: .62rem; font-size: .815rem; color: var(--tx-3); line-height: 1.45; }

/* ── app mock ───────────────────────────────────────────────────── */
.mock { border-radius: 16px; overflow: hidden; background: #0B0D12; border: 1px solid var(--line-2);
  box-shadow: 0 50px 100px -30px rgba(0,0,0,.95), 0 0 0 1px rgba(255,255,255,.03); }
.mock-bar { display: flex; align-items: center; gap: 7px; padding: 11px 15px; background: #0E1016; border-bottom: 1px solid var(--line); }
.mock-bar i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.14); }
.mock-bar u { flex: 1; text-align: center; font-style: normal; text-decoration: none; font-size: .69rem; color: var(--tx-3); letter-spacing: .02em; }
.mock-body { display: grid; grid-template-columns: 156px 1fr; min-height: 336px; }
.mock-side { background: #0A0C11; border-right: 1px solid var(--line); padding: 14px 10px; }
.mock-side em { display: block; font-style: normal; font-size: .615rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--tx-3); padding: 12px 8px 6px; }
.mock-side a { display: flex; align-items: center; gap: 8px; padding: 6px 8px; border-radius: 7px; font-size: .755rem; color: var(--tx-2); }
.mock-side a.on { background: rgba(255,176,32,.1); color: var(--amber-2); font-weight: 600; }
.mock-side a::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--tx-3); flex: none; }
.mock-side a.on::before { background: var(--amber); box-shadow: 0 0 8px var(--amber); }
.mock-main { padding: 18px 20px; }
.mock-h { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 14px; }
.mock-h b { font-family: var(--disp); font-size: 1.02rem; color: var(--tx); font-weight: 500; letter-spacing: -.02em; }
.mock-h span { font-size: .675rem; color: var(--tx-3); }
.mock-kpi { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 14px; }
.mock-kpi div { border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; background: var(--surf); }
.mock-kpi em { display: block; font-style: normal; font-size: .585rem; text-transform: uppercase; letter-spacing: .1em; color: var(--tx-3); }
.mock-kpi b { display: block; font-size: .93rem; color: var(--tx); font-variant-numeric: tabular-nums; margin-top: 4px; }
.mock-kpi i { font-style: normal; font-size: .615rem; color: var(--green); }
.mock-tbl { width: 100%; border-collapse: collapse; font-size: .7rem; }
.mock-tbl th { text-align: left; font-weight: 600; color: var(--tx-3); font-size: .59rem; text-transform: uppercase;
  letter-spacing: .08em; padding: 8px; border-bottom: 1px solid var(--line); }
.mock-tbl td { padding: 8px; border-bottom: 1px solid rgba(255,255,255,.045); color: var(--tx-2); font-variant-numeric: tabular-nums; }
.mock-tbl td:last-child, .mock-tbl th:last-child { text-align: right; color: var(--tx); }
.tag { display: inline-block; padding: .12em .55em; border-radius: 5px; font-size: .585rem; font-weight: 650; letter-spacing: .02em; }
.tag-g { background: rgba(61,220,151,.14); color: var(--green); }
.tag-y { background: rgba(255,176,32,.15); color: var(--amber); }

/* ── feature rows ───────────────────────────────────────────────── */
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 78px); align-items: center; padding: clamp(42px, 5vw, 66px) 0; }
.frow + .frow { border-top: 1px solid var(--line); }
.frow.rev .frow-txt { order: 2; }
.frow h3 { margin-bottom: .8rem; font-size: clamp(1.5rem, 2.4vw, 1.95rem); }
.frow p { margin-bottom: 1.35rem; }

/* ── lists ──────────────────────────────────────────────────────── */
.ticks { list-style: none; padding: 0; display: grid; gap: .6rem; }
.ticks li { position: relative; padding-left: 25px; font-size: .92rem; color: var(--tx-2); line-height: 1.55; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .42em; width: 14px; height: 14px; border-radius: 50%;
  background: rgba(255,176,32,.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFB020' stroke-width='3.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 9px; background-position: center; background-repeat: no-repeat;
}
.cols-2 { columns: 2; column-gap: 40px; }
.cols-3 { columns: 3; column-gap: 40px; }
.cols-2 li, .cols-3 li { break-inside: avoid; }

.chips { display: flex; flex-wrap: wrap; gap: 7px; }
.chips span { display: inline-block; padding: .4em .85em; border-radius: 8px; background: var(--surf);
  border: 1px solid var(--line); font-size: .795rem; color: var(--tx-2); transition: all .18s; }
.chips span:hover { border-color: rgba(255,176,32,.35); color: var(--tx); background: rgba(255,176,32,.06); }

/* ── marquee ────────────────────────────────────────────────────── */
.marq { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent); }
.marq-t { display: flex; gap: 14px; width: max-content; animation: slide 46s linear infinite; }
.marq:hover .marq-t { animation-play-state: paused; }
.marq-t span { display: inline-flex; align-items: center; gap: .55em; padding: .62em 1.15em; border-radius: 10px;
  background: var(--surf); border: 1px solid var(--line); font-size: .875rem; color: var(--tx-2); white-space: nowrap; }
.marq-t span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--amber); flex: none; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ── spec table ─────────────────────────────────────────────────── */
.spec { width: 100%; border-collapse: collapse; font-size: .915rem; }
.spec th { text-align: left; font-weight: 600; color: var(--tx); font-size: .715rem; letter-spacing: .11em;
  text-transform: uppercase; padding: 0 16px 13px 0; border-bottom: 1px solid var(--line-2); }
.spec td { padding: 16px 16px 16px 0; border-bottom: 1px solid var(--line); color: var(--tx-2); vertical-align: top; }
.spec td:first-child { color: var(--tx); font-weight: 550; width: 30%; }
.spec tr:last-child td { border-bottom: 0; }

/* ── steps ──────────────────────────────────────────────────────── */
.steps { counter-reset: s; }
.steps > div { counter-increment: s; position: relative; padding: 24px 0 24px 64px; border-bottom: 1px solid var(--line); }
.steps > div:last-child { border-bottom: 0; }
.steps > div::before {
  content: "0" counter(s); position: absolute; left: 0; top: 24px; width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center; font-family: var(--disp); font-size: .82rem; font-weight: 600;
  background: linear-gradient(150deg, rgba(255,176,32,.2), rgba(255,106,69,.07));
  border: 1px solid rgba(255,176,32,.24); color: var(--amber-2);
}
.steps h4 { margin-bottom: .32rem; font-size: 1.04rem; }
.steps p { font-size: .92rem; }

/* ── quote ──────────────────────────────────────────────────────── */
.quote { border-left: 2px solid transparent; border-image: var(--grad) 1; padding-left: 28px; }
.quote p { font-family: var(--disp); font-size: clamp(1.3rem, 2.3vw, 1.72rem); line-height: 1.38; color: var(--tx); letter-spacing: -.03em; font-weight: 400; }
.quote cite { display: block; margin-top: 1.4rem; font-style: normal; font-size: .86rem; color: var(--tx-3); }
.quote cite b { display: block; color: var(--tx); font-weight: 600; font-size: .92rem; }

/* ── pricing ────────────────────────────────────────────────────── */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: start; }
.plan { position: relative; border-radius: var(--r); padding: 32px 28px; border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.042), rgba(255,255,255,.012)); }
.plan.hi { border-color: rgba(255,176,32,.4); box-shadow: var(--glow);
  background: linear-gradient(180deg, rgba(255,176,32,.09), rgba(255,255,255,.014)); }
.plan.hi::after { content: "Most deployed"; position: absolute; top: -12px; left: 28px; background: var(--grad-sm);
  color: #14100A; font-size: .655rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: .35em .9em; border-radius: 100px; }
.plan h3 { font-family: var(--sans); font-size: 1.05rem; font-weight: 650; margin-bottom: .4rem; letter-spacing: -.012em; }
.plan .amt { font-family: var(--disp); font-size: 2.2rem; color: var(--tx); letter-spacing: -.04em; margin: 1rem 0 .2rem; font-weight: 500; }
.plan .amt small { font-family: var(--sans); font-size: .82rem; color: var(--tx-3); font-weight: 400; letter-spacing: 0; }
.plan .desc { font-size: .89rem; min-height: 48px; }
.plan .btn { width: 100%; margin: 20px 0 22px; }
.plan .ticks li { font-size: .875rem; }

/* ── faq ────────────────────────────────────────────────────────── */
details.faq { border-bottom: 1px solid var(--line); }
details.faq summary { cursor: pointer; list-style: none; padding: 23px 42px 23px 0; position: relative;
  font-family: var(--disp); font-size: 1.14rem; font-weight: 500; color: var(--tx); letter-spacing: -.026em; transition: color .18s; }
details.faq summary:hover { color: var(--amber-2); }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: ""; position: absolute; right: 4px; top: 28px; width: 13px; height: 13px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239DA3B2' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform .24s; }
details.faq[open] summary::after { transform: rotate(135deg); }
details.faq .ans { padding: 0 60px 24px 0; font-size: .945rem; color: var(--tx-2); }
details.faq .ans p + p { margin-top: .9rem; }

/* ── form ───────────────────────────────────────────────────────── */
.form { border-radius: var(--r); padding: clamp(26px, 3.4vw, 40px); border: 1px solid var(--line-2);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015)); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .795rem; font-weight: 600; color: var(--tx); margin-bottom: .42rem; }
.field label span { color: var(--amber); }
.field input, .field select, .field textarea {
  width: 100%; padding: .76em .9em; border: 1px solid var(--line-2); border-radius: 10px;
  background: rgba(0,0,0,.3); font-size: .93rem; color: var(--tx); transition: border-color .18s, box-shadow .18s; }
.field textarea { min-height: 108px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--tx-3); }
.field select option { background: #14161C; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: rgba(255,176,32,.6); box-shadow: 0 0 0 3px rgba(255,176,32,.12); }
.field-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form .btn { width: 100%; margin-top: 6px; }
.form .note { font-size: .775rem; color: var(--tx-3); text-align: center; margin-top: 14px; line-height: 1.5; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.alert { padding: 13px 16px; border-radius: 10px; font-size: .88rem; margin-bottom: 20px; }
.alert-err { background: rgba(255,106,69,.12); color: #FF9C7D; border: 1px solid rgba(255,106,69,.3); }
.alert-ok { background: rgba(61,220,151,.1); color: var(--green); border: 1px solid rgba(61,220,151,.28); }

/* ── page head ──────────────────────────────────────────────────── */
.phead { padding: clamp(56px, 6.5vw, 90px) 0 clamp(40px, 4.5vw, 58px); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.phead::before { content: ""; position: absolute; z-index: -1; top: -320px; left: 12%; width: 780px; height: 620px;
  background: radial-gradient(closest-side, rgba(255,176,32,.15), transparent 72%); filter: blur(20px); }
.phead h1 { font-size: clamp(2.3rem, 4.8vw, 3.6rem); margin-bottom: 1.3rem; }
.phead .lead { max-width: 680px; }
.crumb { font-size: .795rem; color: var(--tx-3); margin-bottom: 1.5rem; display: flex; gap: .5em; }
.crumb a:hover { color: var(--amber); }
.crumb span { opacity: .4; }

/* ── cta band ───────────────────────────────────────────────────── */
.cta { position: relative; overflow: hidden; }
.cta-in { position: relative; border-radius: 24px; padding: clamp(38px, 5vw, 62px); overflow: hidden;
  border: 1px solid rgba(255,176,32,.24);
  background: linear-gradient(140deg, rgba(255,176,32,.13), rgba(255,106,69,.07) 46%, rgba(255,255,255,.02));
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 44px; align-items: center; }
.cta-in::before { content: ""; position: absolute; width: 620px; height: 620px; right: -180px; bottom: -400px;
  background: radial-gradient(closest-side, rgba(255,176,32,.28), transparent 70%); filter: blur(30px); pointer-events: none; }
.cta-in > * { position: relative; }
.cta p { margin-top: 1rem; max-width: 500px; }
.cta .btn-row { justify-content: flex-end; }

/* ── footer ─────────────────────────────────────────────────────── */
.ftr { border-top: 1px solid var(--line); background: var(--bg-2); padding: 68px 0 30px; font-size: .875rem; color: var(--tx-3); }
.ftr-grid { display: grid; grid-template-columns: 1.7fr repeat(4, 1fr); gap: 40px; padding-bottom: 44px; }
.ftr .brand { margin-bottom: 16px; }
.ftr p { color: var(--tx-3); font-size: .865rem; max-width: 280px; }
.ftr h5 { font-size: .705rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--tx); margin-bottom: 16px; }
.ftr ul { list-style: none; padding: 0; display: grid; gap: 9px; }
.ftr a { transition: color .16s; }
.ftr a:hover { color: var(--amber); }
.ftr-btm { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: .79rem; }

/* ── reveal on scroll ───────────────────────────────────────────── */
.rv { opacity: 0; transform: translateY(18px); transition: opacity .7s cubic-bezier(.2,.6,.3,1), transform .7s cubic-bezier(.2,.6,.3,1); }
.rv.in { opacity: 1; transform: none; }

/* ── misc ───────────────────────────────────────────────────────── */
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.center { text-align: center; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .rv { opacity: 1; transform: none; }
}

/* ── responsive ─────────────────────────────────────────────────── */
@media (max-width: 1000px) {
  .nav, .hdr-cta { display: none; }
  .burger { display: block; }
  .g-4 { grid-template-columns: repeat(2, 1fr); }
  .split, .frow, .cta-in { grid-template-columns: 1fr; }
  .frow.rev .frow-txt { order: 0; }
  .cta .btn-row { justify-content: flex-start; }
  .ftr-grid { grid-template-columns: repeat(3, 1fr); }
  .ftr-grid > div:first-child { grid-column: 1 / -1; }
  .bento > * { grid-column: span 3; }
}
@media (max-width: 780px) {
  .g-2, .g-3, .g-4, .plans, .stats { grid-template-columns: 1fr; }
  .bento > * { grid-column: span 6; }
  .cols-2, .cols-3 { columns: 1; }
  .field-2 { grid-template-columns: 1fr; }
  .mock-body { grid-template-columns: 1fr; }
  .mock-side { display: none; }
  .mock-kpi { grid-template-columns: 1fr 1fr; }
  .plan.hi { order: -1; }
}
@media (max-width: 560px) {
  .ftr-grid { grid-template-columns: 1fr 1fr; }
  .steps > div { padding-left: 0; padding-top: 62px; }
  .steps > div::before { top: 20px; }
}

/* headline measure */
.hero h1 { max-width: 15ch; }
@media (max-width: 1000px) { .hero h1 { max-width: 20ch; } }

/* ── viz panels (dark) ──────────────────────────────────────────── */
.viz-h { display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding-bottom: 14px; margin-bottom: 16px; border-bottom: 1px solid var(--line); }
.viz-h b { font-size: .82rem; font-weight: 650; color: var(--tx); letter-spacing: -.012em; }
.viz-h span { font-size: .655rem; color: var(--tx-3); text-transform: uppercase; letter-spacing: .11em; white-space: nowrap; }

.flow > div { display: flex; gap: 14px; align-items: flex-start; padding: 12px 0; position: relative; }
.flow > div:not(:last-child)::after { content: ""; position: absolute; left: 13px; top: 35px; bottom: -3px; width: 1px; background: var(--line-2); }
.flow .dot { width: 27px; height: 27px; flex: none; border-radius: 50%; display: grid; place-items: center;
  font-size: .63rem; font-weight: 700; background: var(--surf-2); color: var(--tx-3); border: 1px solid var(--line-2); z-index: 1; }
.flow .dot.act { background: rgba(255,176,32,.16); color: var(--amber); border-color: rgba(255,176,32,.4); box-shadow: 0 0 14px rgba(255,176,32,.28); }
.flow .dot.done { background: rgba(61,220,151,.13); color: var(--green); border-color: rgba(61,220,151,.3); }
.flow .txt b { display: block; font-size: .85rem; font-weight: 600; color: var(--tx); line-height: 1.4; }
.flow .txt span { display: block; font-size: .745rem; color: var(--tx-3); line-height: 1.5; margin-top: 1px; }
.flow .amt { margin-left: auto; font-size: .775rem; font-weight: 600; color: var(--tx);
  font-variant-numeric: tabular-nums; white-space: nowrap; padding-top: 3px; }

.viz-rows { display: grid; gap: 8px; }
.viz-row { display: flex; align-items: center; gap: 12px; padding: 11px 13px; border: 1px solid var(--line); border-radius: 10px; background: var(--surf); }
.viz-row.col { display: block; }
.viz-row .rowtop { display: flex; align-items: center; gap: 12px; }
.viz-row .k { font-size: .8rem; font-weight: 600; color: var(--tx); }
.viz-row .v { margin-left: auto; font-size: .755rem; color: var(--tx-3); font-variant-numeric: tabular-nums; white-space: nowrap; }
.bar { height: 5px; border-radius: 3px; background: rgba(255,255,255,.08); overflow: hidden; margin-top: 8px; }
.bar i { display: block; height: 100%; background: var(--grad-sm); border-radius: 3px; }
.bar i.g { background: var(--green); }
.viz-foot { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line);
  font-size: .745rem; color: var(--tx-3); display: flex; justify-content: space-between; gap: 12px; }
.viz-foot b { color: var(--tx); font-variant-numeric: tabular-nums; white-space: nowrap; }

.chain { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.chain > div { border: 1px solid var(--line); border-radius: 10px; padding: 12px 10px; text-align: center; position: relative; background: var(--surf); }
.chain > div + div::before { content: "›"; position: absolute; left: -8px; top: 50%; transform: translateY(-50%); color: var(--tx-3); font-size: .95rem; }
.chain em { display: block; font-style: normal; font-size: .6rem; text-transform: uppercase; letter-spacing: .1em; color: var(--tx-3); }
.chain b { display: block; font-size: .82rem; color: var(--tx); font-variant-numeric: tabular-nums; margin-top: 4px; }
.chain small { display: block; font-size: .63rem; color: var(--green); margin-top: 3px; }
@media (max-width: 480px) { .chain { grid-template-columns: 1fr 1fr; } .chain > div + div::before { display: none; } }

/* ── features catalogue ─────────────────────────────────────────── */
.fbar { position: sticky; top: 70px; z-index: 70; background: rgba(8,9,13,.9);
  backdrop-filter: saturate(180%) blur(18px); border-bottom: 1px solid var(--line); }
.fbar-in { display: flex; align-items: center; gap: 16px; padding: 14px 0; flex-wrap: wrap; }
.fsearch { position: relative; flex: 1 1 300px; min-width: 240px; }
.fsearch input { width: 100%; padding: .68em .9em .68em 2.5em; border: 1px solid var(--line-2);
  border-radius: 10px; background: rgba(0,0,0,.4); font-size: .92rem; color: var(--tx);
  transition: border-color .18s, box-shadow .18s; }
.fsearch input::placeholder { color: var(--tx-3); }
.fsearch input:focus { outline: 0; border-color: rgba(255,176,32,.6); box-shadow: 0 0 0 3px rgba(255,176,32,.12); }
.fsearch svg { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); width: 15px; height: 15px;
  stroke: var(--tx-3); fill: none; stroke-width: 2; stroke-linecap: round; pointer-events: none; }
.fcount { font-size: .8rem; color: var(--tx-3); font-variant-numeric: tabular-nums; white-space: nowrap; }
.fcount b { color: var(--amber); }
.fjump { display: flex; gap: 6px; overflow-x: auto; padding: 0 0 14px; scrollbar-width: none; }
.fjump::-webkit-scrollbar { display: none; }
.fjump a { padding: .35em .8em; border-radius: 7px; border: 1px solid var(--line); background: var(--surf);
  font-size: .79rem; color: var(--tx-2); white-space: nowrap; transition: all .16s; }
.fjump a:hover { border-color: rgba(255,176,32,.4); color: var(--tx); background: rgba(255,176,32,.07); }

.fsuite { padding: clamp(46px, 5.5vw, 78px) 0; border-top: 1px solid var(--line); scroll-margin-top: 150px; }
.fsuite:first-of-type { border-top: 0; }
.fsuite-h { display: flex; align-items: flex-start; gap: 18px; margin-bottom: clamp(28px, 3.5vw, 44px); max-width: 780px; }
.fsuite-h .ico { margin-bottom: 0; flex: none; }
.fsuite-h h2 { font-size: clamp(1.6rem, 2.8vw, 2.15rem); margin-bottom: .5rem; }
.fsuite-h p { font-size: .96rem; }
.fsuite-n { display: inline-block; margin-left: .55em; font-family: var(--sans); font-size: .72rem;
  font-weight: 650; letter-spacing: .04em; color: var(--amber); background: rgba(255,176,32,.13);
  border: 1px solid rgba(255,176,32,.24); padding: .28em .62em; border-radius: 100px; vertical-align: middle; }

.fgroup { margin-bottom: 34px; }
.fgroup > h3 { font-family: var(--sans); font-size: .74rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--tx-3); padding-bottom: 11px; margin-bottom: 4px;
  border-bottom: 1px solid var(--line-2); }
.feat { display: grid; grid-template-columns: 260px 1fr; gap: 24px; padding: 13px 4px;
  border-bottom: 1px solid var(--line); transition: background .16s; border-radius: 6px; }
.feat:hover { background: rgba(255,255,255,.022); }
.feat:last-child { border-bottom: 0; }
.feat > b { font-size: .905rem; font-weight: 600; color: var(--tx); letter-spacing: -.012em; line-height: 1.5; }
.feat > span { font-size: .895rem; color: var(--tx-2); line-height: 1.55; }
.feat mark { background: rgba(255,176,32,.22); color: var(--amber-2); border-radius: 3px; padding: 0 1px; }
.fempty { display: none; padding: 60px 0; text-align: center; }
.fempty h3 { margin-bottom: .6rem; }
[hidden] { display: none !important; }

@media (max-width: 860px) {
  .feat { grid-template-columns: 1fr; gap: 4px; }
  .fsuite-h { flex-direction: column; gap: 14px; }
  .fbar { top: 69px; }
}

/* ── GSTIN lookup field ─────────────────────────────────────────── */
.gstwrap label em { font-style: normal; font-weight: 400; color: var(--tx-3);
  text-transform: none; letter-spacing: 0; margin-left: .5em; font-size: .93em; }
.gstin { position: relative; }
.gstin input { text-transform: uppercase; letter-spacing: .07em; font-variant-numeric: tabular-nums;
  padding-right: 2.6em; }
.gstin input::placeholder { text-transform: none; letter-spacing: 0; }
.gstin.ok input    { border-color: rgba(61,220,151,.55); }
.gstin.bad input   { border-color: rgba(255,106,69,.55); }
.gstspin { position: absolute; right: 13px; top: 50%; width: 15px; height: 15px; margin-top: -7px;
  border: 2px solid rgba(255,255,255,.16); border-top-color: var(--amber); border-radius: 50%;
  animation: spin .6s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.gstin.ok::after, .gstin.bad::after {
  content: ""; position: absolute; right: 13px; top: 50%; width: 15px; height: 15px; margin-top: -7px;
  background-repeat: no-repeat; background-position: center; background-size: contain;
}
.gstin.ok::after  { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233DDC97' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); }
.gstin.bad::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF6A45' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M18 6 6 18M6 6l12 12'/%3E%3C/svg%3E"); }
.gsthint { font-size: .785rem; color: var(--tx-3); margin-top: .5rem; line-height: 1.5; }
.gsthint.ok  { color: var(--green); }
.gsthint.bad { color: #FF9C7D; }
.gsthint b { color: var(--tx); font-weight: 600; }
.gstcard { margin-top: 10px; padding: 13px 15px; border-radius: 10px;
  border: 1px solid rgba(61,220,151,.28); background: rgba(61,220,151,.07); font-size: .83rem; }
.gstcard[hidden] { display: none; }
.gstcard b { display: block; color: var(--tx); font-size: .9rem; font-weight: 600; margin-bottom: 3px; }
.gstcard span { display: block; color: var(--tx-2); line-height: 1.55; }
.gstcard u { display: inline-block; text-decoration: none; margin-top: 6px; font-size: .72rem;
  letter-spacing: .06em; text-transform: uppercase; color: var(--green); font-weight: 650; }

