:root {
  --bg: #050506;
  --surface: #0d0d10;
  --surface-2: #141419;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f7f7f8;
  --muted: #a7a7b0;
  --accent: #6683ff;
  --accent-2: #8ea2ff;
  --success: #44d492;
  --radius: 22px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 80% -10%, rgba(102, 131, 255, 0.16), transparent 30rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

.site-shell { min-height: 100vh; overflow: hidden; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.skip-link { position: fixed; left: 12px; top: -60px; z-index: 100; padding: 10px 14px; background: white; color: black; border-radius: 8px; }
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 5, 6, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
}
.header-inner { min-height: 76px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; margin-right: auto; font-weight: 800; letter-spacing: -0.02em; }
.brand img { width: 124px; height: 58px; object-fit: contain; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a { padding: 10px 12px; border-radius: 10px; color: var(--muted); font-size: 0.92rem; font-weight: 650; transition: 160ms ease; }
.nav a:hover, .nav a[aria-current="page"] { color: white; background: rgba(255,255,255,.07); }
.header-cta { white-space: nowrap; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; color: white; background: var(--surface); cursor: pointer; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: 0 20px; border: 1px solid transparent; border-radius: 13px; font-weight: 800; transition: transform 160ms ease, background 160ms ease, border-color 160ms ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: white; color: #070708; }
.button-primary:hover { background: #dfe4ff; }
.button-accent { background: var(--accent); color: white; box-shadow: 0 12px 34px rgba(102,131,255,.28); }
.button-accent:hover { background: #7892ff; }
.button-ghost { border-color: var(--line); background: rgba(255,255,255,.04); }
.button-ghost:hover { border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.08); }

.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 18px; color: #c8d1ff; font-size: 0.78rem; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--accent-2); }
.hero { padding: 76px 0 70px; }
.hero-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 64px; align-items: center; }
.hero h1 { margin: 0; max-width: 740px; font-size: clamp(3.1rem, 7vw, 6.1rem); line-height: .94; letter-spacing: -.07em; }
.hero h1 span { color: #8fa4ff; }
.hero-copy { max-width: 650px; margin: 26px 0 0; color: var(--muted); font-size: clamp(1.03rem, 1.5vw, 1.23rem); line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-note { display: flex; align-items: center; gap: 9px; margin-top: 22px; color: var(--muted); font-size: .88rem; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 5px rgba(68,212,146,.12); }
.app-frame { position: relative; padding: 9px; border: 1px solid rgba(255,255,255,.18); border-radius: 28px; background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.025)); box-shadow: var(--shadow); }
.app-frame::after { content: ""; position: absolute; inset: auto 10% -22% 10%; height: 34%; background: var(--accent); filter: blur(80px); opacity: .18; z-index: -1; }
.tv-ui { position: relative; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 20px; isolation: isolate; background: #08090d; color: white; font-size: clamp(7px, .72vw, 12px); }
.tv-ui::before { content: ""; position: absolute; inset: 0; z-index: -3; background: radial-gradient(circle at 76% 35%, rgba(115,133,255,.76), transparent 22%), radial-gradient(circle at 82% 42%, rgba(238,72,120,.36), transparent 30%), linear-gradient(100deg, #08090d 8%, #111329 54%, #07080c 100%); }
.tv-ui::after { content: ""; position: absolute; width: 48%; aspect-ratio: 1; right: 2%; top: 10%; z-index: -2; border: 1px solid rgba(255,255,255,.14); border-radius: 48% 52% 58% 42%; transform: rotate(-14deg); box-shadow: inset 0 0 80px rgba(255,255,255,.08), 0 0 120px rgba(96,125,255,.22); }
.tv-top { position: relative; z-index: 3; display: flex; align-items: center; gap: 4%; padding: 3.5% 4.2% 0; }
.tv-logo { width: 17%; height: auto; object-fit: contain; }
.tv-nav { display: flex; align-items: center; gap: 2.2em; margin-left: auto; color: rgba(255,255,255,.7); font-size: 1.12em; font-weight: 650; }
.tv-nav span { white-space: nowrap; }
.tv-nav .active { padding: .6em 1em; border-radius: .65em; color: white; background: rgba(255,255,255,.13); box-shadow: inset 0 0 0 1px rgba(255,255,255,.13); }
.tv-feature { width: 49%; margin: 8% 0 0 5%; }
.tv-kicker { color: #aebcff; font-size: .82em; font-weight: 900; letter-spacing: .2em; }
.tv-title { margin-top: .18em; font-size: 4.15em; font-weight: 820; letter-spacing: -.07em; line-height: .95; }
.tv-meta { display: flex; gap: .65em; margin-top: 1.15em; font-size: .95em; color: rgba(255,255,255,.7); }
.tv-meta span { padding: .42em .72em; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; background: rgba(0,0,0,.22); }
.tv-feature p { max-width: 34em; margin: 1.15em 0 0; color: rgba(255,255,255,.64); font-size: .92em; line-height: 1.55; }
.tv-row { position: absolute; right: 4%; bottom: 5%; left: 5%; display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.1%; z-index: 3; }
.tv-card { position: relative; aspect-ratio: 16 / 8.4; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: .8em; background: #1a1c28; box-shadow: 0 10px 26px rgba(0,0,0,.32); }
.tv-card::before, .tv-tile::before { content: ""; position: absolute; inset: 0; opacity: .96; }
.tv-art-1::before { background: radial-gradient(circle at 66% 38%, #9acbff 0 8%, transparent 9%), linear-gradient(135deg, #111b39, #3d64ca 52%, #09101f); }
.tv-art-2::before { background: radial-gradient(circle at 34% 34%, #ffcf82 0 9%, transparent 10%), linear-gradient(145deg, #2b0d1d, #b33e5e 54%, #220712); }
.tv-art-3::before { background: linear-gradient(25deg, transparent 35%, rgba(255,255,255,.24) 36% 38%, transparent 39%), linear-gradient(135deg, #101319, #526171 52%, #17191e); }
.tv-art-4::before { background: radial-gradient(ellipse at 70% 58%, #b2ffda 0 12%, transparent 13%), linear-gradient(125deg, #071c1b, #16887d 55%, #061210); }
.tv-art-5::before { background: linear-gradient(120deg, transparent 0 32%, rgba(254,210,99,.6) 33% 36%, transparent 37%), radial-gradient(circle at 40% 65%, #ff7968 0 12%, transparent 13%), linear-gradient(140deg, #24140c, #923419); }
.tv-card span { position: absolute; right: .8em; bottom: .7em; left: .8em; z-index: 1; overflow: hidden; color: white; font-size: .8em; font-weight: 780; text-overflow: ellipsis; white-space: nowrap; text-shadow: 0 2px 7px #000; }
.tv-ui--library::before { background: radial-gradient(circle at 18% 4%, rgba(102,131,255,.46), transparent 30%), linear-gradient(120deg, #08090d, #111322 56%, #07080c); }
.tv-ui--library::after { width: 32%; right: -5%; top: -14%; opacity: .42; }
.tv-library { position: relative; z-index: 2; padding: 6% 5% 5%; }
.tv-library-kicker { color: #aebcff; font-size: .82em; font-weight: 900; letter-spacing: .18em; }
.tv-library h3 { margin: .35em 0 .85em; font-size: 2.5em; letter-spacing: -.05em; }
.tv-library-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.4%; }
.tv-tile { position: relative; aspect-ratio: 2 / 2.85; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 1em; background: #171822; }
.tv-tile span { position: absolute; right: .8em; bottom: .8em; left: .8em; z-index: 1; font-size: .85em; font-weight: 800; text-shadow: 0 2px 8px #000; }
.tv-ui--real::before { background: linear-gradient(90deg, rgba(5,6,10,.98) 0%, rgba(5,6,10,.9) 28%, rgba(5,6,10,.42) 58%, rgba(5,6,10,.08) 100%), linear-gradient(0deg, rgba(5,6,10,.9) 0%, transparent 42%), var(--tv-backdrop) center / cover no-repeat; }
.tv-ui--real::after { display: none; }
.tv-real-feature { width: 50%; margin-top: 5.2%; }
.tv-real-title { max-width: 10em; font-size: 3.1em; line-height: .9; }
.tv-real-feature p { margin-top: .65em; font-size: .78em; line-height: 1.38; }
.tv-top-picks { position: absolute; right: 4%; bottom: 3.5%; left: 5%; z-index: 3; color: rgba(255,255,255,.72); font-size: .76em; }
.tv-real-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.1%; margin-top: .7em; }
.tv-real-card { position: relative; aspect-ratio: 16 / 8.2; overflow: hidden; border: 1px solid rgba(255,255,255,.15); border-radius: .75em; background: #171822; box-shadow: 0 8px 22px rgba(0,0,0,.4); }
.tv-real-card img { width: 100%; height: 100%; object-fit: cover; }
.tv-real-card::after { content: ""; position: absolute; inset: 40% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.92)); }
.tv-real-card strong { position: absolute; right: .7em; bottom: .6em; left: .7em; z-index: 1; overflow: hidden; color: white; font-size: .72em; text-overflow: ellipsis; text-shadow: 0 2px 6px #000; white-space: nowrap; }
.app-screenshot { width: 100%; border-radius: 20px; aspect-ratio: 16 / 9; object-fit: cover; }

.stat-band { padding: 22px 0 0; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.stat { display: grid; grid-template-columns: auto 1fr; gap: 17px; align-items: center; padding: 23px; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); box-shadow: inset 0 1px rgba(255,255,255,.04); }
.stat-icon { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(142,162,255,.25); border-radius: 14px; color: #b8c5ff; background: rgba(102,131,255,.1); }
.stat-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.stat strong { display: block; font-size: clamp(1.45rem, 3vw, 2rem); letter-spacing: -.04em; }
.stat span:not(.stat-icon) { color: var(--muted); font-size: .86rem; }

.section { padding: 100px 0; }
.section-sm { padding: 68px 0; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 28px; margin-bottom: 42px; }
.section-heading h2 { margin: 0; max-width: 760px; font-size: clamp(2.2rem, 5vw, 4.4rem); line-height: 1.02; letter-spacing: -.055em; }
.section-heading p { max-width: 450px; margin: 0; color: var(--muted); line-height: 1.65; }

.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.benefit { min-height: 240px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018)); }
.icon-box { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 54px; border: 1px solid rgba(255,255,255,.16); border-radius: 13px; background: #19191e; color: #cdd5ff; font-size: 1.2rem; }
.benefit h3 { margin: 0 0 10px; font-size: 1.2rem; }
.benefit p { margin: 0; color: var(--muted); line-height: 1.65; }

.showcase { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.showcase-copy h2 { margin: 0; font-size: clamp(2.4rem, 5vw, 4.8rem); line-height: .98; letter-spacing: -.06em; }
.showcase-copy > p { color: var(--muted); line-height: 1.72; font-size: 1.05rem; }
.check-list { display: grid; gap: 13px; margin: 28px 0 34px; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 11px; align-items: flex-start; color: #dedee3; }
.check-list li::before { content: "✓"; flex: 0 0 auto; width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: rgba(102,131,255,.18); color: #aebcff; font-size: .75rem; font-weight: 900; }

.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.plans.wide { grid-template-columns: repeat(3, 1fr); }
.plan-card { position: relative; display: flex; flex-direction: column; min-height: 100%; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); transition: transform 180ms ease, border-color 180ms ease; }
.plan-card:hover { transform: translateY(-5px); border-color: rgba(142,162,255,.5); }
.plan-card.featured { background: linear-gradient(180deg, rgba(102,131,255,.17), rgba(13,13,16,.96) 42%); border-color: rgba(142,162,255,.6); }
.badge { width: fit-content; margin: 0 0 24px; padding: 6px 9px; border-radius: 999px; background: rgba(102,131,255,.16); color: #b9c5ff; font-size: .68rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.plan-name { color: var(--muted); font-size: .92rem; font-weight: 750; }
.price { display: flex; align-items: start; margin: 13px 0 22px; line-height: 1; }
.price sup { margin-top: 8px; font-size: 1rem; }
.price strong { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -.07em; }
.price small { align-self: end; margin: 0 0 7px 7px; color: var(--muted); }
.plan-card ul { display: grid; gap: 11px; margin: 0 0 28px; padding: 0; list-style: none; color: #d4d4da; font-size: .9rem; line-height: 1.45; }
.plan-card li { display: flex; gap: 9px; }
.plan-card li::before { content: "✓"; color: var(--accent-2); font-weight: 900; }
.plan-card .button { width: 100%; margin-top: auto; }

.page-hero { padding: 74px 0 46px; text-align: center; }
.page-hero h1 { max-width: 900px; margin: 0 auto; font-size: clamp(3rem, 7vw, 6.2rem); line-height: .95; letter-spacing: -.065em; }
.page-hero p { max-width: 660px; margin: 24px auto 0; color: var(--muted); font-size: 1.1rem; line-height: 1.7; }
.page-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.page-tabs a { padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: .84rem; }
.page-tabs a:hover, .page-tabs a.active { color: white; border-color: rgba(142,162,255,.55); background: rgba(102,131,255,.12); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.step { padding: 28px; border-top: 1px solid var(--line); }
.step-index { margin-bottom: 32px; color: #97aaff; font-size: .75rem; font-weight: 900; letter-spacing: .14em; }
.step h3 { margin: 0 0 10px; }
.step p { margin: 0; color: var(--muted); line-height: 1.6; }

.guide-list { display: grid; gap: 13px; }
.guide-item { border: 1px solid var(--line); border-radius: 18px; background: var(--surface); overflow: hidden; }
.guide-item summary { display: flex; align-items: center; gap: 15px; padding: 22px 24px; cursor: pointer; font-weight: 800; list-style: none; }
.guide-item summary::-webkit-details-marker { display: none; }
.guide-item summary::after { content: "+"; margin-left: auto; color: var(--accent-2); font-size: 1.45rem; font-weight: 400; }
.guide-item[open] summary::after { content: "–"; }
.guide-body { padding: 0 24px 24px 60px; color: var(--muted); line-height: 1.72; }
.guide-body .button { margin-top: 12px; }
.code { display: inline-block; padding: 5px 9px; border: 1px solid var(--line); border-radius: 8px; background: #050506; color: white; font: 750 .92rem ui-monospace, SFMono-Regular, Menlo, monospace; }

.contact-card { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; padding: clamp(28px, 5vw, 58px); border: 1px solid rgba(142,162,255,.35); border-radius: 28px; background: linear-gradient(135deg, rgba(102,131,255,.14), rgba(255,255,255,.025)); }
.contact-card h2 { margin: 0; font-size: clamp(2rem, 5vw, 4rem); letter-spacing: -.055em; }
.contact-card p { margin: 14px 0 0; color: var(--muted); line-height: 1.6; }

.site-footer { padding: 54px 0 28px; border-top: 1px solid var(--line); background: #030304; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .8fr; gap: 48px; }
.footer-brand p { max-width: 430px; color: var(--muted); line-height: 1.65; }
.footer-col h3 { margin: 5px 0 16px; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-col nav { display: grid; gap: 10px; }
.footer-col a { color: var(--muted); font-size: .9rem; }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 46px; padding-top: 24px; border-top: 1px solid var(--line); color: #71717a; font-size: .8rem; }

.preview-bar { padding: 9px 16px; color: #d8deff; background: #151c3d; text-align: center; font-size: .78rem; letter-spacing: .03em; }

@media (max-width: 1050px) {
  .nav { display: none; position: absolute; inset: 77px 20px auto; padding: 12px; border: 1px solid var(--line); border-radius: 16px; background: rgba(9,9,11,.98); box-shadow: var(--shadow); }
  .nav.open { display: grid; }
  .nav a { padding: 13px 14px; }
  .menu-toggle { display: block; }
  .hero-grid, .showcase { grid-template-columns: 1fr; }
  .hero-grid { gap: 48px; }
  .plans { grid-template-columns: repeat(2, 1fr); }
  .plans.wide { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .header-inner { min-height: 68px; gap: 10px; }
  .nav { inset: 69px 14px auto; }
  .brand img { width: 108px; height: 50px; }
  .header-cta { display: none; }
  .hero { padding: 52px 0 54px; }
  .hero h1 { font-size: clamp(3rem, 16vw, 4.5rem); }
  .hero-copy { font-size: 1rem; }
  .hero-actions .button { width: 100%; }
  .tv-ui { font-size: 5.2px; }
  .tv-nav { gap: 1.4em; }
  .tv-nav span:first-child { display: none; }
  .tv-feature { width: 58%; margin-top: 6%; }
  .tv-feature p { display: none; }
  .tv-real-title { font-size: 2.8em; }
  .tv-real-row { grid-template-columns: repeat(6, 1fr); }
  .tv-row { grid-template-columns: repeat(4, 1fr); }
  .tv-card:last-child { display: none; }
  .stats { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .section-heading { display: block; }
  .section-heading p { margin-top: 18px; }
  .benefit-grid, .plans, .plans.wide, .steps { grid-template-columns: 1fr; }
  .benefit { min-height: 0; }
  .icon-box { margin-bottom: 34px; }
  .page-hero { padding-top: 52px; }
  .contact-card { grid-template-columns: 1fr; }
  .contact-card .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { display: block; line-height: 1.8; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
