:root {
  --bg: #fbfaf7;
  --bg-2: #f4f2ed;
  --card: #ffffff;
  --card-2: #f6f5f1;
  --line: #e7e4dd;
  --line-2: #d8d4cb;
  --text: #16150f;
  --muted: #57534e;
  --dim: #8a857c;
  --accent: #d9480f;
  --accent-soft: rgba(217, 72, 15, 0.08);
  --accent-line: rgba(217, 72, 15, 0.28);
  --good: #15803d;
  --bad: #dc2626;
  --shadow: 0 1px 2px rgba(22, 21, 15, 0.04), 0 8px 24px -12px rgba(22, 21, 15, 0.12);
  --radius: 14px;
  --max: 1160px;
  --font: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans Devanagari", sans-serif;
  --mono: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.6 var(--font);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
.hi { font-family: "Noto Sans Devanagari", var(--font); }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
@media (max-width: 640px) { .container { padding: 0 16px; } }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 250, 247, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 16px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 18px; letter-spacing: -0.02em; }
.logo svg { width: 26px; height: 26px; }
.logo b { color: var(--accent); font-weight: 600; }
.nav-links { display: flex; gap: 28px; font-size: 14px; color: var(--muted); }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.menu-btn { display: none; background: none; border: 1px solid var(--line-2); border-radius: 8px; width: 38px; height: 38px; cursor: pointer; }
.menu-btn span { display: block; width: 16px; height: 1.5px; background: var(--text); margin: 4px auto; }
.mobile-menu { display: none; }
@media (max-width: 860px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .menu-btn { display: block; }
  .mobile-menu.open {
    display: flex; flex-direction: column; gap: 4px;
    padding: 8px 16px 16px; border-bottom: 1px solid var(--line); background: var(--bg);
  }
  .mobile-menu a { padding: 10px 0; color: var(--muted); border-bottom: 1px solid var(--line); }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 44px; padding: 0 20px; border-radius: 10px;
  font-size: 15px; font-weight: 500; border: 1px solid transparent; cursor: pointer;
  transition: transform .15s, background .15s, border-color .15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 1px 2px rgba(217,72,15,.3), 0 6px 16px -6px rgba(217,72,15,.45); }
.btn-primary:hover { background: #c2410c; }
.btn-ghost { border-color: var(--line-2); color: var(--text); background: var(--card); }
.btn-ghost:hover { border-color: #b3aea4; }
.btn-sm { height: 36px; padding: 0 14px; font-size: 14px; }

/* ---------- hero ---------- */
.hero { position: relative; padding: 88px 0 72px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(640px 320px at 72% 12%, rgba(255, 122, 60, 0.16), transparent 70%),
    linear-gradient(to right, rgba(22,21,15,0.05) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(to bottom, rgba(22,21,15,0.05) 1px, transparent 1px) 0 0 / 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 40%, transparent 100%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--muted); border: 1px solid var(--line-2);
  padding: 5px 12px 5px 8px; border-radius: 999px; background: rgba(255,255,255,.8);
}
.eyebrow i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
h1 {
  font-size: clamp(40px, 5.6vw, 68px); line-height: 1.02; letter-spacing: -0.045em;
  font-weight: 600; margin: 22px 0 20px;
}
h1 em { font-style: normal; color: var(--accent); }
.lead { font-size: 19px; color: var(--muted); max-width: 540px; margin: 0 0 32px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-size: 13px; color: var(--dim); }

/* hero mock */
.mock { position: relative; }
.chat {
  background: var(--card); border: 1px solid var(--line); border-radius: 18px;
  box-shadow: 0 1px 2px rgba(22,21,15,.05), 0 30px 70px -28px rgba(22,21,15,.28);
  overflow: hidden;
}
.chat-top { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.dots { display: flex; gap: 6px; }
.dots i { width: 10px; height: 10px; border-radius: 50%; background: #e4e1da; }
.tabs { display: flex; gap: 4px; background: var(--bg-2); padding: 3px; border-radius: 9px; border: 1px solid var(--line); }
.tab { font-size: 12px; padding: 4px 10px; border-radius: 6px; color: var(--dim); transition: all .25s; border: 0; background: none; cursor: pointer; }
.tab.active { background: #fff; color: var(--text); box-shadow: 0 1px 2px rgba(22,21,15,.1); }
.chat-body { padding: 20px 18px 18px; min-height: 290px; }
.q-bubble {
  margin-left: auto; width: fit-content; max-width: 88%;
  background: var(--card-2); border: 1px solid var(--line-2); border-radius: 14px 14px 4px 14px;
  padding: 9px 14px; font-size: 14px;
}
.answer { margin-top: 16px; font-size: 14px; color: #3f3b36; }
.answer p { margin: 0 0 10px; color: var(--muted); }
.answer ol { margin: 0; padding: 0; list-style: none; counter-reset: a; }
.answer li {
  counter-increment: a; display: flex; gap: 10px; align-items: baseline;
  padding: 7px 0; border-bottom: 1px dashed var(--line); opacity: 0; transform: translateY(4px);
  animation: in .45s forwards;
}
.answer li::before { content: counter(a); font-family: var(--mono); font-size: 12px; color: var(--dim); width: 14px; }
.answer li b { color: var(--text); font-weight: 600; }
.answer li span { color: var(--dim); font-size: 13px; }
.missing {
  margin-top: 14px; display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: #b42318; background: #fef3f2;
  border: 1px solid #fecdca; padding: 9px 12px; border-radius: 10px;
  opacity: 0; animation: in .45s forwards;
}
.missing i { width: 8px; height: 8px; border-radius: 50%; background: var(--bad); flex: none; }
@keyframes in { to { opacity: 1; transform: none; } }

.share-card {
  position: absolute; right: -28px; bottom: -44px; width: 260px;
  background: rgba(255,255,255,.96); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px;
  box-shadow: 0 1px 2px rgba(22,21,15,.05), 0 24px 50px -20px rgba(22,21,15,.3);
}
.share-card h4 { margin: 0 0 10px; font-size: 12px; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.srow { display: grid; grid-template-columns: 78px 1fr 34px; gap: 8px; align-items: center; font-size: 12.5px; padding: 3px 0; }
.srow .bar { height: 6px; background: #efece6; border-radius: 3px; overflow: hidden; }
.srow .bar i { display: block; height: 100%; background: #b3aea4; border-radius: 3px; transition: width .7s cubic-bezier(.2,.8,.2,1); }
.srow.you { color: var(--accent); font-weight: 600; }
.srow.you .bar i { background: var(--accent); }
.srow .v { text-align: right; font-family: var(--mono); font-size: 12px; }
.illus { position: absolute; left: 0; bottom: -30px; font-size: 11px; color: var(--dim); }

@media (max-width: 980px) {
  .hero { padding: 56px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .share-card { right: 8px; bottom: -36px; }
}
@media (max-width: 520px) {
  .share-card { position: relative; right: auto; bottom: auto; width: 100%; margin-top: 12px; }
  .illus { position: static; margin-top: 8px; }
  .lead { font-size: 17px; }
}

/* ---------- engines strip ---------- */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 24px; flex-wrap: wrap; }
.strip p { margin: 0; font-size: 14px; color: var(--dim); }
.engines { display: flex; gap: 10px; flex-wrap: wrap; }
.engine { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted); border: 1px solid var(--line); padding: 7px 14px; border-radius: 999px; background: var(--card); }
.engine i { width: 8px; height: 8px; border-radius: 50%; }
.langs { display: flex; gap: 8px; }
.lang { font-size: 13px; color: var(--text); background: var(--accent-soft); border: 1px solid var(--accent-line); padding: 5px 11px; border-radius: 999px; }

/* ---------- sections ---------- */
section { padding: 104px 0; }
@media (max-width: 640px) { section { padding: 72px 0; } }
.kicker { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin: 0 0 14px; }
h2 { font-size: clamp(30px, 3.8vw, 46px); line-height: 1.08; letter-spacing: -0.035em; font-weight: 600; margin: 0 0 16px; max-width: 760px; }
.sub { font-size: 18px; color: var(--muted); max-width: 620px; margin: 0; }
.head { margin-bottom: 56px; }
.head.center { text-align: center; }
.head.center h2, .head.center .sub { margin-left: auto; margin-right: auto; }

/* problem */
.cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pcard { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.pcard .big { font-size: 40px; font-weight: 600; letter-spacing: -0.04em; line-height: 1; margin-bottom: 14px; }
.pcard .big em { font-style: normal; color: var(--accent); }
.pcard h3 { font-size: 18px; margin: 0 0 8px; letter-spacing: -0.01em; }
.pcard p { margin: 0; color: var(--muted); font-size: 15px; }
@media (max-width: 860px) { .cards3 { grid-template-columns: 1fr; } }

/* steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--card); box-shadow: var(--shadow); }
.step { padding: 28px 24px; border-right: 1px solid var(--line); position: relative; }
.step:last-child { border-right: 0; }
.step .n { font-family: var(--mono); font-size: 12px; color: var(--accent); margin-bottom: 18px; display: block; }
.step h3 { font-size: 20px; margin: 0 0 8px; letter-spacing: -0.02em; }
.step p { margin: 0; font-size: 14.5px; color: var(--muted); }
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .step:nth-child(2) { border-right: 0; }
  .step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: 0; }
}

/* features */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feat { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; transition: border-color .2s, box-shadow .2s; box-shadow: var(--shadow); }
.feat:hover { border-color: var(--line-2); box-shadow: 0 1px 2px rgba(22,21,15,.05), 0 16px 32px -16px rgba(22,21,15,.2); }
.ficon { width: 38px; height: 38px; border-radius: 10px; background: var(--accent-soft); border: 1px solid var(--accent-line); display: grid; place-items: center; margin-bottom: 18px; }
.ficon svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.feat h3 { font-size: 17px; margin: 0 0 8px; letter-spacing: -0.01em; }
.feat p { margin: 0; color: var(--muted); font-size: 14.5px; }
@media (max-width: 900px) { .features { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .features { grid-template-columns: 1fr; } }

/* scorecard preview */
.preview { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: center; }
.checks { list-style: none; padding: 0; margin: 28px 0 32px; }
.checks li { display: flex; gap: 12px; padding: 10px 0; color: var(--muted); border-bottom: 1px solid var(--line); font-size: 15.5px; }
.checks li b { color: var(--text); font-weight: 500; }
.checks svg { width: 18px; height: 18px; flex: none; margin-top: 3px; stroke: var(--accent); fill: none; stroke-width: 2.2; }
.sc {
  background: #fff; color: #1c1b19; border-radius: 16px; padding: 22px; border: 1px solid var(--line);
  box-shadow: 0 1px 2px rgba(22,21,15,.05), 0 40px 80px -30px rgba(217,72,15,.25), 0 24px 50px -24px rgba(22,21,15,.25);
  transform: rotate(-1.2deg);
}
.sc-top { display: flex; justify-content: space-between; font-size: 12px; color: #6d6a63; margin-bottom: 8px; }
.sc-top b { color: #1c1b19; } .sc-top b span { color: #d9480f; }
.sc h4 { font-size: 20px; margin: 0 0 14px; letter-spacing: -0.02em; line-height: 1.2; }
.sc-hero { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 12px; }
.sc-hero div { background: #faf9f6; border: 1px solid #ebe8e1; border-radius: 10px; padding: 12px; }
.sc-hero strong { display: block; font-size: 26px; line-height: 1; letter-spacing: -0.03em; }
.sc-hero .you strong { color: #d9480f; }
.sc-hero span { font-size: 11px; color: #6d6a63; }
.sc-table { background: #faf9f6; border: 1px solid #ebe8e1; border-radius: 10px; padding: 6px 12px; font-size: 12.5px; }
.sc-table div { display: grid; grid-template-columns: 1.3fr 1.4fr .6fr .6fr .6fr; gap: 8px; align-items: center; padding: 7px 0; border-bottom: 1px solid #efece5; }
.sc-table div:last-child { border: 0; }
.sc-table .th { color: #8a867d; font-size: 10.5px; text-transform: uppercase; letter-spacing: .04em; }
.sc-table .me { font-weight: 700; color: #d9480f; }
.sc-table i { display: block; height: 6px; background: #efece5; border-radius: 3px; overflow: hidden; }
.sc-table i u { display: block; height: 100%; background: #a8a398; }
.sc-table .me i u { background: #d9480f; }
.sc-table .num { text-align: right; font-family: var(--mono); font-size: 11.5px; }
.sc-fix { margin-top: 12px; background: #faf9f6; border: 1px solid #ebe8e1; border-radius: 10px; padding: 12px; font-size: 12.5px; }
.sc-fix b { display: block; margin-bottom: 2px; }
.sc-fix p { margin: 0; color: #55524b; }
@media (max-width: 940px) { .preview { grid-template-columns: 1fr; } .sc { transform: none; } }
@media (max-width: 480px) {
  .sc { padding: 16px; }
  .sc-table div { grid-template-columns: 1.4fr 1fr .7fr; }
  .sc-table .hide-xs { display: none; }
}

/* india */
.india { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.qcard { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.qcard .tag { font-family: var(--mono); font-size: 11px; color: var(--dim); text-transform: uppercase; letter-spacing: .08em; }
.qlist { list-style: none; padding: 0; margin: 14px 0 0; }
.qlist li { padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; margin-bottom: 8px; background: var(--card-2); font-size: 15px; display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.qlist li small { font-family: var(--mono); font-size: 11px; color: var(--dim); flex: none; }
.insight { display: flex; flex-direction: column; justify-content: center; gap: 18px; }
.insight .row { display: grid; grid-template-columns: 90px 1fr; gap: 14px; align-items: center; }
.insight .row span { font-size: 14px; color: var(--muted); }
.insight .bars { display: flex; flex-direction: column; gap: 6px; }
.insight .bars div { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--muted); }
.insight .bars i { display: block; height: 8px; border-radius: 4px; background: #d6d2c9; }
.insight .bars .a i { background: var(--accent); }
@media (max-width: 860px) { .india { grid-template-columns: 1fr; } }

/* pricing */
.cur { display: inline-flex; background: var(--bg-2); border: 1px solid var(--line); border-radius: 10px; padding: 3px; margin-top: 24px; }
.cur button { background: none; border: 0; padding: 6px 14px; border-radius: 7px; font-size: 14px; color: var(--dim); cursor: pointer; }
.cur button.on { background: #fff; color: var(--text); box-shadow: 0 1px 2px rgba(22,21,15,.1); }
.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.plan { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; display: flex; flex-direction: column; box-shadow: var(--shadow); }
.plan.hot { border-color: var(--accent-line); background: linear-gradient(180deg, rgba(217,72,15,.06), var(--card) 40%); position: relative; }
.plan.hot::before { content: "Start here"; position: absolute; top: -11px; left: 22px; background: var(--accent); color: #fff; font-size: 11.5px; font-weight: 600; padding: 3px 10px; border-radius: 999px; }
.plan h3 { font-size: 16px; margin: 0 0 4px; }
.plan .for { font-size: 13.5px; color: var(--dim); margin: 0 0 20px; min-height: 42px; }
.price { font-size: 36px; font-weight: 600; letter-spacing: -0.04em; line-height: 1; }
.price small { font-size: 14px; font-weight: 400; color: var(--dim); letter-spacing: 0; }
.plan .tax { font-size: 12px; color: var(--dim); margin: 6px 0 20px; min-height: 18px; }
.plan ul { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.plan li { font-size: 14px; color: var(--muted); padding: 7px 0 7px 22px; position: relative; }
.plan li::before { content: ""; position: absolute; left: 2px; top: 13px; width: 10px; height: 6px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }
.plan .btn { width: 100%; }
@media (max-width: 1000px) { .plans { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .plans { grid-template-columns: 1fr; } .plan .for { min-height: 0; } }

/* faq */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 36px 22px 0; font-size: 17px; font-weight: 500; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 18px; font-size: 24px; font-weight: 300; color: var(--dim); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0 0 22px; color: var(--muted); max-width: 720px; }

/* cta form */
.cta-wrap { background: radial-gradient(700px 300px at 50% 0%, rgba(255,122,60,.12), transparent 70%), var(--bg-2); border-top: 1px solid var(--line); }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.form { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 28px; box-shadow: var(--shadow); }
.form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.field input, .field select {
  width: 100%; height: 44px; padding: 0 12px; border-radius: 10px;
  background: #fff; border: 1px solid var(--line-2); outline: none; transition: border-color .15s, box-shadow .15s;
}
.field select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--dim) 50%), linear-gradient(135deg, var(--dim) 50%, transparent 50%); background-position: calc(100% - 18px) 19px, calc(100% - 13px) 19px; background-size: 5px 5px; background-repeat: no-repeat; }
.field input:focus, .field select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form .btn { width: 100%; margin-top: 6px; }
.form-msg { margin: 12px 0 0; font-size: 14px; min-height: 20px; }
.form-msg.ok { color: var(--good); } .form-msg.err { color: var(--bad); }
.fine { font-size: 12px; color: var(--dim); margin-top: 10px; }
@media (max-width: 900px) { .cta-grid { grid-template-columns: 1fr; gap: 36px; } }
@media (max-width: 480px) { .form { padding: 20px; } .form .row2 { grid-template-columns: 1fr; gap: 0; } }

/* footer */
footer { border-top: 1px solid var(--line); padding: 48px 0 40px; font-size: 14px; color: var(--dim); }
.foot { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.foot-links { display: flex; gap: 22px; flex-wrap: wrap; }
.foot-links a:hover { color: var(--text); }
.foot p { margin: 12px 0 0; max-width: 380px; }

/* reveal */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.reveal.shown { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .answer li, .missing { animation: none; opacity: 1; transform: none; }
}

/* ---------- legal / simple pages ---------- */
.doc { max-width: 760px; margin: 0 auto; padding: 72px 24px 96px; }
.doc h1 { font-size: clamp(34px, 5vw, 48px); margin: 0 0 8px; }
.doc .updated { color: var(--dim); font-size: 14px; margin-bottom: 40px; }
.doc h2 { font-size: 22px; margin: 40px 0 10px; letter-spacing: -0.02em; }
.doc p, .doc li { color: #3f3b36; }
.doc ul { padding-left: 20px; }
.doc a { color: var(--accent); }
.doc .box { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; margin: 20px 0; }
.doc .box p { margin: 4px 0; }

::selection { background: rgba(217, 72, 15, 0.18); }

/* industries */
.inds { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.ind { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 18px 18px 16px; box-shadow: var(--shadow); }
.ind b { display: block; font-size: 15.5px; font-weight: 600; margin-bottom: 6px; letter-spacing: -0.01em; }
.ind span { font-size: 13.5px; color: var(--dim); }
@media (max-width: 900px) { .inds { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .inds { grid-template-columns: 1fr; } }

/* pricing note + agencies */
.plan-note { text-align: center; color: var(--muted); font-size: 14.5px; margin: 28px 0 0; }
.agency { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; background: var(--card); border: 1px solid var(--line); border-radius: 20px; padding: 48px; box-shadow: var(--shadow); }
.agency .checks { margin: 0; }
@media (max-width: 900px) { .agency { grid-template-columns: 1fr; padding: 28px; gap: 24px; } }
