
:root {
  --accent: #FC6011; --accent-press: #E04F06; --accent-soft: rgba(252,96,17,.14); --accent-line: rgba(252,96,17,.40);
  --green: #1BA672; --green-soft: rgba(27,166,114,.14); --amber: #F2B705; --amber-soft: rgba(242,183,5,.16);
  --red: #E23B2E; --violet: #A78BFA; --gold: #FDE047;
  --bg: #f5f5f5; --surface: #ffffff; --surface-2: #f5f5f5; --surface-3: #ebebeb;
  --line: rgba(0,0,0,.09); --line-strong: rgba(0,0,0,.18);
  --text: #141414; --text-muted: rgba(20,20,20,.62); --text-faint: rgba(20,20,20,.42);
  --dark-bg: #141414; --dark-surface: #1f1f1f; --dark-text: #f5f5f5; --dark-muted: rgba(245,245,245,.66); --dark-line: rgba(255,255,255,.10);
  --font: Figtree, 'Segoe UI', system-ui, -apple-system, 'Noto Sans Kannada', sans-serif;
  --r: 14px; --r-lg: 22px; --wrap: 1120px;
  color-scheme: light dark;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #141414; --surface: #1f1f1f; --surface-2: #2a2a2a; --surface-3: #333333;
    --line: rgba(255,255,255,.10); --line-strong: rgba(255,255,255,.20);
    --text: #f5f5f5; --text-muted: rgba(245,245,245,.66); --text-faint: rgba(245,245,245,.42);
  }
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 84px; }
body { margin: 0; background: var(--bg); color: var(--text); font: 500 16px/1.5 var(--font); letter-spacing: 0; }
a { color: inherit; text-decoration-color: var(--accent-line); text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--accent); }
img, svg { display: block; max-width: 100%; }
h1, h2, h3 { margin: 0; font-weight: 800; letter-spacing: -.02em; text-wrap: balance; }
h1 { font-size: clamp(34px, 5vw, 56px); line-height: 1.05; }
h2 { font-size: clamp(24px, 3vw, 34px); line-height: 1.15; }
h3 { font-size: 20px; line-height: 1.25; font-weight: 700; }
p { margin: 0; }
ul, ol { margin: 0; padding-left: 1.25em; }
.wrap { width: min(var(--wrap), calc(100% - 40px)); margin-inline: auto; }
.row { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--accent); color: #fff; padding: 8px 12px; border-radius: 8px; }
.skip:focus { left: 8px; z-index: 100; }
.eyebrow { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.fine { font-size: 13px; color: var(--text-muted); }
.meta { color: var(--text-muted); font-size: 14px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 22px; border-radius: 999px; font-weight: 700; text-decoration: none; border: 1px solid transparent; transition: transform .12s ease, background .12s ease; }
.btn:active { transform: translateY(1px); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-press); }
.btn-ghost { border-color: var(--line-strong); color: inherit; }
.btn-ghost:hover { background: var(--surface-2); }
.pill { display: inline-flex; align-items: center; gap: 6px; padding: 5px 11px; border-radius: 999px; font-size: 13px; font-weight: 700; background: var(--accent-soft); color: var(--accent); }
.pill-green { background: var(--green-soft); color: var(--green); }

/* header */
.site-header { position: sticky; top: 0; z-index: 20; background: color-mix(in srgb, var(--bg) 88%, transparent); backdrop-filter: saturate(1.4) blur(12px); border-bottom: 1px solid var(--line); }
.site-header .row { height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; letter-spacing: -.02em; text-decoration: none; }
.site-nav { display: flex; gap: 4px; flex-wrap: wrap; justify-content: flex-end; }
.site-nav a { padding: 8px 12px; border-radius: 999px; font-size: 14px; font-weight: 700; color: var(--text-muted); text-decoration: none; }
.site-nav a:hover, .site-nav a[aria-current] { color: var(--text); background: var(--surface-2); }
@media (max-width: 720px) { .site-nav a { padding: 6px 9px; font-size: 13px; } .site-header .row { height: auto; padding: 10px 0; flex-wrap: wrap; } }

/* hero */
.hero { background: var(--dark-bg); color: var(--dark-text); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: -40% -20% auto -20%; height: 120%; background: radial-gradient(60% 50% at 70% 20%, rgba(252,96,17,.22), transparent 70%), radial-gradient(40% 40% at 20% 80%, rgba(167,139,250,.14), transparent 70%); pointer-events: none; }
.hero .wrap { position: relative; padding: clamp(64px, 10vw, 128px) 0 clamp(56px, 8vw, 104px); display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero .lede { margin-top: 20px; font-size: clamp(17px, 1.6vw, 20px); color: var(--dark-muted); max-width: 34em; }
.hero .cta-row { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero .cta-row .btn-ghost { border-color: var(--dark-line); color: #fff; }
.hero .cta-row .btn-ghost:hover { background: rgba(255,255,255,.08); }
.hero .note { margin-top: 14px; font-size: 13px; color: var(--dark-muted); }
.store-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.store { display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px 10px 12px; border-radius: 12px; background: rgba(255,255,255,.06); border: 1px solid var(--dark-line); color: #fff; text-decoration: none; }
.store small { display: block; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--dark-muted); font-weight: 700; }
.store b { display: block; font-size: 15px; line-height: 1.1; }
.store[aria-disabled] { opacity: .7; cursor: default; }
.hero-gl { position: absolute; inset: 0; width: 100%; height: 100%; display: block; opacity: 0; transition: opacity 1.2s ease; }
.hero-gl.is-live { opacity: 1; }
.hero .wrap { z-index: 1; }
.stage3d { position: relative; justify-self: center; perspective: 1200px; transform-style: preserve-3d; width: min(440px, 80vw); aspect-ratio: 1; }
.box-gl { position: absolute; inset: 0; width: 100%; height: 100%; display: none; }
.box-shadow { position: absolute; left: 15%; right: 15%; bottom: 8%; height: 14%; border-radius: 50%; background: radial-gradient(ellipse at center, rgba(252,96,17,.35), rgba(0,0,0,.6) 45%, transparent 75%); filter: blur(18px); display: none; }
.stage3d.is-live .box-gl, .stage3d.is-live .box-shadow { display: block; }
.stage3d.is-live .phone { display: none; }
.stage3d .phone { margin: 0 auto; width: min(300px, 80vw); }
.chip3d { position: absolute; transform-style: preserve-3d; will-change: transform; display: grid; gap: 2px; padding: 10px 14px; border-radius: 14px; background: rgba(20,20,20,.72); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(10px); box-shadow: 0 20px 40px -20px rgba(0,0,0,.8); color: #fff; font-size: 12px; white-space: nowrap; }
.chip3d b { font-size: 14px; letter-spacing: -.01em; }
.chip3d span { color: rgba(255,255,255,.66); }
.chip-a { left: -6%; top: 12%; }
.chip-b { right: -10%; top: 30%; }
.chip-c { left: 4%; bottom: 14%; border-color: rgba(27,166,114,.5); }
.chip-c b { color: #5fd8a6; }
@media (prefers-reduced-motion: reduce) { .hero-gl { transition: none; } .stage3d .phone { transition: none; } }
.phone { justify-self: center; width: min(300px, 80vw); aspect-ratio: 9/18.5; border-radius: 40px; background: #0c0c0c; border: 1px solid rgba(255,255,255,.12); box-shadow: 0 40px 80px -30px rgba(0,0,0,.8), inset 0 0 0 6px #050505; padding: 14px; position: relative; }
.phone .screen { position: absolute; inset: 14px; border-radius: 30px; overflow: hidden; background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.85)), radial-gradient(120% 90% at 30% 20%, #6b2a08, #2b1206 55%, #120804); display: flex; flex-direction: column; justify-content: flex-end; padding: 18px; color: #fff; }
.phone .handle { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.75); }
.phone .venue { margin-top: 8px; font-size: 20px; font-weight: 800; letter-spacing: -.02em; line-height: 1.1; }
.phone .perk { margin-top: 8px; font-size: 13px; color: rgba(255,255,255,.8); }
.phone .cta { margin-top: 14px; background: var(--accent); color: #fff; text-align: center; border-radius: 999px; padding: 12px; font-weight: 800; font-size: 14px; letter-spacing: .04em; }
@media (max-width: 860px) { .hero .wrap { grid-template-columns: 1fr; } .stage3d { display: none; } }

/* sections */
section.band { padding: clamp(56px, 8vw, 96px) 0; }
section.band + section.band { border-top: 1px solid var(--line); }
.band-head { max-width: 42em; margin-bottom: 36px; }
.band-head p { margin-top: 12px; color: var(--text-muted); font-size: 17px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 860px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; }
.card h3 { margin-top: 14px; }
.card p { margin-top: 8px; color: var(--text-muted); }
.step { font-size: 13px; font-weight: 800; color: var(--accent); letter-spacing: .1em; }
.icon { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); font-weight: 800; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 28px; } }
.checks { list-style: none; padding: 0; display: grid; gap: 12px; margin-top: 20px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; }
.checks li::before { content: '✓'; flex: none; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; background: var(--green-soft); color: var(--green); font-size: 13px; font-weight: 800; }
.stat { padding: 20px; border-radius: var(--r); background: var(--surface); border: 1px solid var(--line); }
.stat b { display: block; font-size: 28px; letter-spacing: -.02em; }
.stat span { color: var(--text-muted); font-size: 14px; }
.band-dark { background: var(--dark-bg); color: var(--dark-text); }
.band-dark .card { background: var(--dark-surface); border-color: var(--dark-line); }
.band-dark .card p, .band-dark .band-head p { color: var(--dark-muted); }
.band-dark .btn-ghost { border-color: var(--dark-line); color: #fff; }
.trust { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 28px; color: var(--text-muted); font-size: 14px; }
.cta-band { text-align: center; }
.cta-band .btn { margin-top: 24px; }

/* policy pages */
.policy { padding: 48px 0 80px; }
.policy-head { padding-bottom: 28px; border-bottom: 1px solid var(--line); margin-bottom: 36px; }
.policy-head h1 { margin: 8px 0 10px; font-size: clamp(30px, 4vw, 44px); }
.policy-grid { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 48px; align-items: start; }
@media (max-width: 860px) { .policy-grid { grid-template-columns: 1fr; gap: 24px; } }
.toc { position: sticky; top: 84px; font-size: 14px; }
.toc-title { font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 10px; }
.toc ol { list-style: none; padding: 0; display: grid; gap: 6px; border-left: 2px solid var(--line); }
.toc a { display: block; padding: 3px 0 3px 12px; color: var(--text-muted); text-decoration: none; margin-left: -2px; border-left: 2px solid transparent; }
.toc a:hover { color: var(--text); border-left-color: var(--accent); }
.prose { max-width: 70ch; font-size: 16.5px; }
.prose h2 { font-size: 22px; margin: 40px 0 12px; padding-top: 8px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 17px; margin: 24px 0 8px; }
.prose p, .prose ul, .prose ol { margin: 0 0 14px; }
.prose li { margin: 4px 0; }
.prose li::marker { color: var(--accent); font-weight: 700; }
.prose table { width: 100%; border-collapse: collapse; margin: 12px 0 18px; font-size: 15px; display: block; overflow-x: auto; }
.prose th, .prose td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted); }
.prose .callout { background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--accent); border-radius: var(--r); padding: 16px 18px; margin: 18px 0; }
.prose .callout p:last-child { margin: 0; }
.prose dl { display: grid; grid-template-columns: max-content 1fr; gap: 8px 20px; margin: 0 0 16px; }
.prose dt { font-weight: 700; }
.prose dd { margin: 0; color: var(--text-muted); }
@media (max-width: 600px) { .prose dl { grid-template-columns: 1fr; gap: 2px; } .prose dd { margin-bottom: 10px; } }
.placeholder { background: var(--amber-soft); color: #7a5a00; border: 1px dashed var(--amber); border-radius: 6px; padding: 0 6px; font-weight: 700; }

/* simple pages */
.page { padding: 56px 0 80px; }
.page-head { max-width: 40em; margin-bottom: 36px; }
.page-head h1 { margin: 8px 0 12px; }
.page-head p { color: var(--text-muted); font-size: 17px; }
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 720px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; }
.contact-card h3 { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-faint); }
.contact-card .big { margin-top: 10px; font-size: 20px; font-weight: 700; word-break: break-word; }
.contact-card p { margin-top: 8px; color: var(--text-muted); font-size: 14px; }
.price { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; display: flex; flex-direction: column; gap: 10px; }
.price .amt { font-size: 36px; font-weight: 800; letter-spacing: -.03em; }
.price .amt small { font-size: 15px; font-weight: 600; color: var(--text-muted); letter-spacing: 0; }
.price.featured { border-color: var(--accent-line); box-shadow: 0 0 0 4px var(--accent-soft); }

/* footer */
.site-footer { border-top: 1px solid var(--line); background: var(--surface); margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; padding: 48px 0 24px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { margin-top: 14px; color: var(--text-muted); font-size: 14px; }
.footer-h { font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 12px; }
.site-footer ul { list-style: none; padding: 0; display: grid; gap: 8px; font-size: 14px; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.copyright { padding: 18px 0 28px; border-top: 1px solid var(--line); font-size: 13px; color: var(--text-faint); }
