:root {
  color-scheme: dark;
  --bg: #070711;
  --bg-soft: #0d0c19;
  --surface: #111019;
  --surface-strong: #17151f;
  --surface-hover: #1c1925;
  --line: rgba(231, 226, 241, 0.12);
  --line-bright: rgba(199, 168, 255, 0.32);
  --text: #fbfaff;
  --muted: #b7b2c9;
  --muted-2: #858097;
  --violet: #9f6cff;
  --violet-bright: #c7a8ff;
  --blue: #63a6ff;
  --cyan: #7ee7ff;
  --success: #67e8ad;
  --purple-gradient: #815cf5;
  --glow: none;
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.25);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --container: 1180px;
  --header-height: 76px;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: radial-gradient(circle at 50% 50%, transparent 0 50%, rgba(0, 0, 0, .3) 100%);
  content: "";
  pointer-events: none;
}

button, a { -webkit-tap-highlight-color: transparent; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
svg { display: block; width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
img, video { max-width: 100%; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { line-height: 1.08; letter-spacing: -.035em; }
p { color: var(--muted); }

::selection { background: rgba(159, 108, 255, .35); color: #fff; }

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 10px;
  background: #fff;
  color: #111;
  font-weight: 750;
  transform: translateY(-150%);
  transition: transform .2s var(--ease);
}

.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 36px), var(--container)); margin-inline: auto; }

.cosmic-background {
  position: absolute;
  inset: 0 0 auto;
  z-index: -3;
  height: max(760px, 100svh);
  overflow: hidden;
  background: #080713 url("purple-desert/purple-desert.jpg") center / cover no-repeat;
}

.cosmic-background::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 4, 14, .28) 0%, rgba(6, 5, 14, .18) 44%, #070711 95%);
  content: "";
}

.cosmic-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .58;
  filter: saturate(1.1) contrast(1.05);
}

.cosmic-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6, 5, 15, .82) 0%, rgba(6, 5, 15, .45) 58%, rgba(6, 5, 15, .68) 100%); }
.cosmic-glow { position: absolute; width: 420px; height: 420px; border-radius: 50%; filter: blur(110px); opacity: .08; }
.cosmic-glow--one { top: 12%; left: -180px; background: #6f4cff; }
.cosmic-glow--two { top: 25%; right: -220px; background: #315eff; }
.noise { position: absolute; inset: 0; opacity: .035; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E"); }

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}

.site-header.is-scrolled { background: rgba(7, 7, 17, .92); border-color: var(--line); backdrop-filter: blur(12px); }
.nav-shell { width: min(calc(100% - 28px), var(--container)); height: 100%; margin-inline: auto; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; font-size: 13px; font-weight: 820; letter-spacing: .06em; }
.brand-mark { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(181, 156, 255, .35); border-radius: 8px; color: var(--violet-bright); background: #15121f; box-shadow: none; }
.brand-mark svg { width: 21px; height: 21px; }
.brand-accent { color: var(--violet-bright); }

.menu-toggle { display: grid; width: 46px; min-height: 44px; place-content: center; gap: 5px; border: 1px solid var(--line); border-radius: 12px; background: rgba(15, 13, 28, .68); cursor: pointer; }
.menu-toggle > span:not(.sr-only) { display: block; width: 20px; height: 1.5px; border-radius: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] > span:nth-of-type(2) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-of-type(3) { opacity: 0; }
.menu-toggle[aria-expanded="true"] > span:nth-of-type(4) { transform: translateY(-6.5px) rotate(-45deg); }

.site-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 14px;
  left: 14px;
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line-bright);
  border-radius: 18px;
  background: rgba(12, 10, 24, .96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}

.site-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.site-menu > a { display: flex; align-items: center; min-height: 46px; padding: 8px 12px; border-radius: 10px; color: var(--muted); font-size: 14px; font-weight: 650; }
.site-menu > a:hover, .site-menu > a.is-active { background: rgba(159, 108, 255, .1); color: #fff; }

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 750;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
  touch-action: manipulation;
  transition: transform .2s var(--ease), box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0) scale(.98); }
.button svg { width: 19px; height: 19px; flex: none; }
.button--primary { color: #fff; background: var(--purple-gradient); box-shadow: 0 10px 24px rgba(117, 76, 244, .22); }
.button--primary:hover { background: #9273f7; box-shadow: 0 12px 28px rgba(117, 76, 244, .28); }
.button--ghost { border-color: var(--line-bright); background: rgba(16, 14, 30, .72); }
.button--ghost:hover { border-color: rgba(196, 171, 255, .62); background: rgba(30, 25, 54, .75); }
.button--large { min-height: 54px; padding: 15px 21px; border-radius: 14px; }
.button--small { min-height: 44px; padding: 10px 14px; border-color: var(--line-bright); background: rgba(130, 83, 249, .12); color: var(--violet-bright); }
.button--wide { width: 100%; }
.button--nav { width: 100%; margin-top: 4px; background: rgba(139, 93, 255, .15); border-color: rgba(170, 135, 255, .3); color: #e8dcff; }

.hero { position: relative; display: flex; min-height: max(760px, 100svh); align-items: center; padding: calc(var(--header-height) + 58px) 0 92px; }
.hero-grid { display: grid; gap: 48px; align-items: center; }
.hero-copy { max-width: 700px; }
.eyebrow, .eyebrow-text { color: var(--violet-bright); font-size: 12px; font-weight: 700; letter-spacing: .08em; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; padding: 0; border: 0; background: transparent; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(103, 232, 173, .1), 0 0 18px rgba(103, 232, 173, .75); }
.hero h1 { max-width: 780px; margin: 22px 0 22px; font-size: clamp(3.35rem, 14vw, 6.1rem); font-weight: 780; letter-spacing: -.055em; }
.hero-icon { display: inline-grid; width: .72em; height: .72em; margin-right: .03em; place-items: center; vertical-align: .03em; color: var(--violet-bright); filter: drop-shadow(0 0 18px rgba(165, 111, 255, .46)); }
.hero-icon svg { width: 100%; height: 100%; stroke-width: 1.45; }
.headline-break { display: block; color: #cac4d6; font-weight: 540; }
.hero-subtitle { max-width: 680px; margin-bottom: 13px; color: #f0ecfa; font-size: clamp(1.18rem, 4.8vw, 1.65rem); font-weight: 520; line-height: 1.45; letter-spacing: -.02em; }
.hero-lead { max-width: 630px; margin-bottom: 27px; font-size: 1rem; }
.hero-actions { display: flex; flex-direction: column; gap: 11px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 13px 22px; margin-top: 25px; color: #d0cadf; font-size: 13px; font-weight: 650; }
.trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.trust-row svg { width: 16px; height: 16px; color: var(--success); stroke-width: 2.2; }

.glass-card { border: 1px solid var(--line); background: var(--surface); box-shadow: none; }
.hero-panel { position: relative; width: min(100%, 430px); margin-inline: auto; padding: 23px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(13, 12, 18, .88); box-shadow: var(--shadow); }
.panel-topline, .api-card-head { display: flex; align-items: center; justify-content: space-between; }
.live-badge { display: inline-flex; align-items: center; gap: 8px; color: #ddd4f0; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.live-badge > span { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 13px rgba(103,232,173,.8); }
.mono { color: var(--muted-2); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; letter-spacing: .08em; }
.offer-ledger { margin: 26px 0 22px; border-top: 1px solid var(--line); }
.offer-ledger a { display: flex; min-height: 62px; align-items: center; justify-content: space-between; gap: 18px; border-bottom: 1px solid var(--line); color: var(--muted); transition: color .2s ease, padding .2s ease; }
.offer-ledger a:hover { padding-left: 6px; color: #fff; }
.offer-ledger strong { color: #fff; font-size: 14px; font-variant-numeric: tabular-nums; text-align: right; }
.offer-label { display: block; margin-bottom: 2px; color: var(--violet-bright); font-size: 11px; font-weight: 700; letter-spacing: .08em; }
.mini-stats { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); padding-top: 17px; }
.mini-stats div { display: grid; text-align: center; }
.mini-stats div + div { border-left: 1px solid var(--line); }
.mini-stats strong { font-size: 1.05rem; }
.mini-stats span { color: var(--muted-2); font-size: 9px; letter-spacing: .04em; }
.scroll-cue { position: absolute; bottom: 26px; left: 50%; display: none; align-items: center; gap: 12px; color: var(--muted-2); font-size: 10px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; transform: translateX(-50%); }
.scroll-cue i { position: relative; width: 20px; height: 31px; border: 1px solid rgba(255,255,255,.2); border-radius: 12px; }
.scroll-cue i::before { position: absolute; top: 6px; left: 50%; width: 3px; height: 6px; border-radius: 3px; background: var(--violet-bright); content: ""; transform: translateX(-50%); animation: scroll-dot 1.8s ease-in-out infinite; }
@keyframes scroll-dot { 0% { opacity: 0; transform: translate(-50%, 0); } 35% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 10px); } }

.section { position: relative; padding: 86px 0; }
.section::before { position: absolute; top: 0; right: 0; left: 0; width: min(calc(100% - 36px), var(--container)); height: 1px; margin-inline: auto; background: linear-gradient(90deg, transparent, var(--line), transparent); content: ""; }
.section-heading { display: grid; gap: 15px; margin-bottom: 38px; }
.section-index { display: inline-grid; width: 40px; height: 28px; place-items: center; border: 1px solid var(--line-bright); border-radius: 8px; color: var(--violet-bright); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; }
.section-heading h2, .faq-layout h2 { max-width: 830px; margin: 5px 0 14px; font-size: clamp(2.15rem, 9vw, 4.3rem); }
.section-heading p:not(.eyebrow-text) { max-width: 690px; margin-bottom: 0; }

.benefit-strip { display: grid; gap: 10px; margin-bottom: 17px; }
.benefit-strip > div { display: flex; align-items: center; gap: 13px; min-height: 82px; padding: 15px; border: 1px solid var(--line); border-radius: 15px; background: rgba(15, 13, 27, .6); }
.benefit-icon { display: grid; width: 38px; height: 38px; flex: none; place-items: center; border: 1px solid rgba(168,132,255,.26); border-radius: 11px; color: var(--violet-bright); background: rgba(139,93,255,.09); }
.benefit-icon svg { width: 18px; height: 18px; }
.benefit-strip strong, .benefit-strip small { display: block; }
.benefit-strip strong { font-size: 14px; }
.benefit-strip small { color: var(--muted-2); font-size: 11px; }
.pricing-shell { overflow: hidden; border-radius: var(--radius); }
.pricing-table-wrap { display: none; }
.pricing-cards { display: grid; gap: 10px; padding: 11px; }
.pricing-cards article { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: center; padding: 17px; border: 1px solid var(--line); border-radius: 15px; background: rgba(9,8,18,.5); }
.pricing-cards article > div { display: flex; align-items: center; gap: 12px; min-width: 0; }
.pricing-cards article > div > span:last-child { min-width: 0; }
.pricing-cards strong, .pricing-cards small { display: block; }
.pricing-cards strong { overflow-wrap: anywhere; }
.pricing-cards small { margin-top: 2px; color: var(--muted-2); font-size: 11px; }
.pricing-cards b { font-size: 1.5rem; font-variant-numeric: tabular-nums; }
.pricing-cards .button { grid-column: 1 / -1; width: 100%; }
.pricing-cards article.is-featured { padding-top: 30px; border-color: rgba(168,132,255,.4); background: linear-gradient(135deg, rgba(132,84,255,.13), rgba(9,8,18,.5)); }
.pricing-cards article > i { position: absolute; top: 8px; right: 10px; color: var(--violet-bright); font-size: 9px; font-style: normal; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.product-logo { display: grid; width: 34px; height: 34px; flex: none; place-items: center; border: 1px solid var(--line); border-radius: 10px; font-size: 10px; font-weight: 850; }
.product-logo--openai { color: #d5d1de; background: rgba(255,255,255,.05); }
.product-logo--claude { color: #f6a97e; background: rgba(222,112,57,.1); }
.product-logo--cursor { color: #fff; background: rgba(255,255,255,.07); }
.product-logo--gpt { color: #76e7c2; background: rgba(65,200,159,.1); }
.product-logo--capcut { color: #f4f4f4; background: #19191d; }

.section--launcher { background: #0a0910; }
.launcher-layout { display: grid; gap: 28px; }
.launcher-copy { align-self: center; }
.launcher-copy .section-index { margin-bottom: 30px; }
.launcher-copy h2 { margin: 7px 0 18px; font-size: clamp(3rem, 14vw, 6.4rem); font-weight: 760; letter-spacing: -.06em; }
.launcher-lead { max-width: 600px; margin-bottom: 28px; font-size: 1.05rem; }
.launcher-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 28px; }
.launcher-price strong { font-size: clamp(3.3rem, 16vw, 5.5rem); line-height: 1; letter-spacing: -.06em; font-variant-numeric: tabular-nums; }
.launcher-price span { color: var(--muted-2); font-size: 12px; }
.launcher-card { border: 1px solid var(--line); border-radius: var(--radius); background: #111018; }
.launcher-card-head { display: flex; min-height: 66px; align-items: center; justify-content: space-between; padding: 0 20px; border-bottom: 1px solid var(--line); font-size: 12px; font-weight: 700; }
.license-tag { padding: 5px 8px; border: 1px solid rgba(103,232,173,.25); border-radius: 5px; color: var(--success); background: rgba(103,232,173,.06); }
.launcher-details { display: grid; }
.launcher-details > div { position: relative; padding: 22px 20px 22px 60px; border-bottom: 1px solid var(--line); }
.launcher-details > div:last-child { border-bottom: 0; }
.launcher-details > div > span { position: absolute; top: 24px; left: 20px; color: var(--muted-2); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; }
.launcher-details strong { display: block; margin-bottom: 5px; font-size: 15px; }
.launcher-details p { margin: 0; font-size: 12px; }

.section--api { overflow: hidden; background: #08070d; }
.api-layout { display: grid; gap: 18px; }
.api-offer { padding: 25px; border-radius: var(--radius); }
.shield-icon { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid rgba(103,232,173,.16); border-radius: 12px; color: var(--success); background: rgba(103,232,173,.06); }
.shield-icon svg { width: 19px; height: 19px; }
.offer-label { margin: 32px 0 0; }
.api-price { display: flex; align-items: flex-start; margin: 4px 0 0; }
.api-price sup { margin-top: 14px; margin-right: 3px; color: var(--violet-bright); font-size: 1.3rem; font-weight: 750; }
.api-price strong { font-size: clamp(4.4rem, 22vw, 6.2rem); line-height: .9; letter-spacing: -.075em; font-variant-numeric: tabular-nums; }
.price-note { margin: 10px 0 24px; color: var(--muted-2); font-size: 12px; }
.check-list { display: grid; gap: 15px; margin: 0 0 25px; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); list-style: none; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; }
.check-list li > svg { width: 20px; height: 20px; flex: none; padding: 3px; border-radius: 50%; color: #07110d; background: var(--success); stroke-width: 3; }
.check-list strong, .check-list small { display: block; }
.check-list strong { font-size: 14px; }
.check-list small { margin-top: 2px; color: var(--muted-2); font-size: 11px; }
.availability-note { margin: 11px 0 0; text-align: center; font-size: 10px; }
.model-panel { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: #0e0d14; }
.model-panel-head { display: flex; flex-direction: column; gap: 13px; margin-bottom: 20px; }
.model-panel-head h3 { margin: 4px 0 0; font-size: 1.5rem; }
.model-count { align-self: flex-start; padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 10px; font-weight: 700; }
.model-grid { display: grid; gap: 9px; }
.model-group { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: center; min-width: 0; padding: 15px; border: 1px solid var(--line); border-radius: 9px; background: #15131c; transition: transform .2s var(--ease), border-color .2s ease, background .2s ease; }
.model-group:hover { border-color: rgba(173,142,255,.3); background: rgba(28,23,49,.7); transform: translateY(-2px); }
.model-group h4 { margin: 0 0 5px; font-size: 14px; letter-spacing: -.01em; }
.model-group p { margin: 0; font-size: 10px; line-height: 1.45; }
.model-icon { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid rgba(119,227,189,.2); border-radius: 11px; color: #77e3bd; background: rgba(67,189,149,.08); font-size: 12px; font-weight: 850; }
.model-icon--blue { color: #8bbcff; border-color: rgba(99,166,255,.2); background: rgba(99,166,255,.08); }
.model-icon--orange { color: #f1a177; border-color: rgba(241,161,119,.2); background: rgba(241,161,119,.08); }
.model-icon--violet { color: #c3a3ff; border-color: rgba(159,108,255,.2); background: rgba(159,108,255,.08); }
.model-icon--rainbow { color: #e3b7ff; background: linear-gradient(135deg, rgba(99,166,255,.12), rgba(212,105,255,.1), rgba(108,224,192,.08)); }
.availability { display: none; color: var(--success); font-size: 9px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.lifetime-card { position: relative; display: grid; gap: 16px; margin-top: 14px; padding: 20px; overflow: hidden; border: 1px solid rgba(190,157,255,.25); border-radius: var(--radius); background: #17141f; }
.infinity-icon { position: absolute; top: -55px; right: 10px; color: rgba(187,155,255,.06); font-size: 10rem; font-weight: 300; line-height: 1; }
.lifetime-card h3 { margin: 3px 0 7px; font-size: 1.45rem; }
.lifetime-card p { position: relative; margin: 0; font-size: 12px; }
.lifetime-card .button { position: relative; width: 100%; }

.section-heading--split > p { max-width: 500px; }
.sample-label { display: inline-flex; align-items: center; gap: 8px; margin: -15px 0 23px; color: var(--muted-2); font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.sample-label span { width: 20px; height: 1px; background: var(--line-bright); }
.reviews-grid { display: grid; gap: 12px; }
.review-card { padding: 21px; border: 1px solid var(--line); border-radius: var(--radius); background: #111018; }
.review-head { display: grid; grid-template-columns: auto 1fr auto; gap: 11px; align-items: center; margin-bottom: 19px; }
.avatar { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid var(--line); border-radius: 8px; font-size: 12px; font-weight: 800; }
.avatar--one { background: #241d35; }
.avatar--two { background: #16272d; }
.avatar--three { background: #2d1e22; }
.review-head strong, .review-head div > span { display: block; }
.review-head strong { font-size: 13px; letter-spacing: -.01em; }
.review-head div > span { color: var(--muted-2); font-size: 9px; }
.quote-mark { color: rgba(184,154,255,.24); font-family: Georgia, serif; font-size: 3.2rem; line-height: .6; }
.review-card > p { min-height: 90px; margin-bottom: 17px; color: #d8d2e5; font-size: 14px; }
.review-meta { display: flex; flex-wrap: wrap; gap: 6px; padding-top: 14px; border-top: 1px solid var(--line); }
.review-meta span { padding: 5px 8px; border-radius: 999px; color: var(--muted-2); background: rgba(255,255,255,.035); font-size: 8px; font-weight: 750; text-transform: uppercase; letter-spacing: .05em; }

.process-grid { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; counter-reset: steps; }
.process-grid li { position: relative; min-height: 245px; padding: 27px 20px 30px 72px; border-left: 1px solid var(--line-bright); }
.process-grid li:last-child { min-height: auto; }
.step-number { position: absolute; top: 1px; left: -18px; display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid var(--line-bright); border-radius: 50%; color: var(--violet-bright); background: var(--bg); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 9px; }
.step-icon { display: grid; width: 46px; height: 46px; margin-bottom: 19px; place-items: center; border: 1px solid var(--line); border-radius: 14px; color: var(--violet-bright); background: rgba(159,108,255,.08); }
.step-icon svg { width: 21px; height: 21px; }
.process-grid h3 { margin-bottom: 9px; font-size: 1.22rem; }
.process-grid p { max-width: 270px; margin: 0; font-size: 13px; }

.section--faq { background: rgba(6,6,14,.4); }
.faq-layout { display: grid; gap: 35px; }
.faq-layout header > p:last-child { max-width: 390px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; display: flex; min-height: 72px; align-items: center; justify-content: space-between; gap: 18px; padding: 16px 2px; font-weight: 700; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: relative; display: block; width: 28px; height: 28px; flex: none; border: 1px solid var(--line); border-radius: 50%; }
.faq-list summary span::before, .faq-list summary span::after { position: absolute; top: 50%; left: 50%; width: 10px; height: 1px; background: var(--muted); content: ""; transform: translate(-50%, -50%); transition: transform .2s ease; }
.faq-list summary span::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-list details[open] summary span::after { transform: translate(-50%, -50%) rotate(0); }
.faq-list details[open] summary { color: var(--violet-bright); }
.faq-list details p { margin: -4px 40px 22px 2px; font-size: 13px; }

.section--contact { padding-bottom: 98px; }
.contact-panel { position: relative; padding: 48px 20px; overflow: hidden; border: 1px solid var(--line-bright); border-radius: var(--radius-lg); background: #15121d; text-align: center; box-shadow: none; }
.contact-panel::before { display: none; }
.contact-glow { display: none; }
.contact-panel > *:not(.contact-glow) { position: relative; }
.contact-panel h2 { max-width: 820px; margin: 23px auto 15px; font-size: clamp(2.2rem, 10vw, 4.8rem); }
.contact-panel > p { max-width: 620px; margin: 0 auto 27px; }
.contact-panel .button { width: 100%; max-width: 350px; }
.contact-panel > small { display: block; margin-top: 13px; color: var(--muted-2); font-size: 9px; }

.site-footer { padding: 48px 0 22px; border-top: 1px solid var(--line); background: #06060e; }
.footer-grid { display: grid; gap: 22px; align-items: center; }
.footer-grid > p { max-width: 520px; margin: 0; font-size: 11px; }
.footer-grid nav { display: flex; flex-wrap: wrap; gap: 10px 20px; }
.footer-grid nav a { min-height: 44px; display: inline-flex; align-items: center; color: var(--muted); font-size: 12px; font-weight: 650; }
.footer-grid nav a:hover { color: #fff; }
.footer-bottom { display: flex; flex-direction: column; gap: 5px; margin-top: 26px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: 9px; letter-spacing: .04em; }

.contact-toast { position: fixed; right: 14px; bottom: 14px; left: 14px; z-index: 300; display: grid; grid-template-columns: auto 1fr auto; gap: 11px; align-items: center; padding: 13px; border: 1px solid rgba(103,232,173,.24); border-radius: 15px; background: rgba(11,18,20,.95); box-shadow: var(--shadow); backdrop-filter: blur(18px); opacity: 0; visibility: hidden; transform: translateY(20px); transition: opacity .22s ease, transform .22s var(--ease), visibility .22s; }
.contact-toast.is-shown { opacity: 1; visibility: visible; transform: translateY(0); }
.toast-check { display: grid; width: 35px; height: 35px; place-items: center; border-radius: 10px; color: #07110d; background: var(--success); }
.toast-check svg { width: 18px; height: 18px; stroke-width: 2.8; }
.contact-toast strong, .contact-toast small { display: block; }
.contact-toast strong { font-size: 12px; }
.contact-toast small { color: var(--muted); font-size: 9px; }
.contact-toast button { display: grid; width: 44px; min-height: 44px; place-items: center; border: 0; border-radius: 10px; color: var(--muted); background: transparent; font-size: 20px; cursor: pointer; }
.contact-toast button:hover { color: #fff; background: rgba(255,255,255,.06); }

[data-reveal] { opacity: 1; transform: none; }
.js [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (min-width: 560px) {
  .container { width: min(calc(100% - 56px), var(--container)); }
  .hero-actions { flex-direction: row; flex-wrap: wrap; }
  .benefit-strip { grid-template-columns: repeat(3, 1fr); }
  .benefit-strip > div { min-height: 94px; align-items: flex-start; }
  .pricing-cards { grid-template-columns: repeat(2, 1fr); }
  .model-grid { grid-template-columns: repeat(2, 1fr); }
  .model-group--wide { grid-column: 1 / -1; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid article:last-child { grid-column: 1 / -1; }
  .contact-toast { right: 22px; left: auto; width: min(390px, calc(100% - 44px)); }
}

@media (min-width: 768px) {
  :root { --header-height: 82px; }
  .container { width: min(calc(100% - 72px), var(--container)); }
  .section { padding: 112px 0; }
  .section-heading { grid-template-columns: 48px 1fr; gap: 25px; margin-bottom: 52px; }
  .section-index { margin-top: 6px; }
  .hero-grid { gap: 58px; }
  .hero-panel { padding: 28px; }
  .pricing-cards article { grid-template-columns: 1fr auto; }
  .pricing-cards .button { grid-column: auto; width: auto; }
  .launcher-details { grid-template-columns: repeat(2, 1fr); }
  .launcher-details > div:nth-child(odd) { border-right: 1px solid var(--line); }
  .launcher-details > div:nth-last-child(-n + 2) { border-bottom: 0; }
  .model-panel { padding: 28px; }
  .model-panel-head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .model-count { align-self: auto; }
  .model-group { grid-template-columns: auto 1fr auto; padding: 17px; }
  .availability { display: inline; }
  .lifetime-card { grid-template-columns: auto 1fr auto; align-items: center; padding: 24px; }
  .infinity-icon { position: relative; top: auto; right: auto; display: grid; width: 65px; height: 65px; place-items: center; border: 1px solid rgba(190,157,255,.22); border-radius: 18px; color: var(--violet-bright); background: rgba(159,108,255,.08); font-size: 3rem; }
  .lifetime-card .button { width: auto; min-width: 155px; }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); gap: 15px; }
  .reviews-grid article:last-child { grid-column: auto; }
  .review-card { padding: 25px; }
  .process-grid { grid-template-columns: repeat(4, 1fr); }
  .process-grid li { min-height: auto; padding: 66px 24px 12px 0; border-top: 1px solid var(--line-bright); border-left: 0; }
  .process-grid li:not(:last-child) { padding-right: 34px; }
  .step-number { top: -18px; left: 0; }
  .faq-layout { grid-template-columns: .8fr 1.2fr; gap: 70px; }
  .contact-panel { padding: 72px 42px; }
  .footer-grid { grid-template-columns: auto 1fr auto; gap: 40px; }
  .footer-grid > p { justify-self: center; text-align: center; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 900px) {
  .pricing-cards { display: none; }
  .pricing-table-wrap { display: block; overflow-x: auto; }
  .pricing-table { width: 100%; border-collapse: collapse; font-size: 13px; }
  .pricing-table th { padding: 18px 24px; border-bottom: 1px solid var(--line); color: var(--muted-2); font-size: 9px; font-weight: 800; letter-spacing: .09em; text-align: left; text-transform: uppercase; }
  .pricing-table td { height: 78px; padding: 13px 24px; border-bottom: 1px solid var(--line); color: var(--muted); }
  .pricing-table tbody tr:last-child td { border-bottom: 0; }
  .pricing-table tbody tr { transition: background .2s ease; }
  .pricing-table tbody tr:hover { background: rgba(159,108,255,.055); }
  .pricing-table td:first-child { display: flex; align-items: center; gap: 13px; color: #fff; }
  .pricing-table td:nth-child(3) strong { color: #fff; font-size: 1.18rem; font-variant-numeric: tabular-nums; }
  .pricing-table td:last-child { width: 150px; text-align: right; }
  .pricing-table em { padding: 4px 7px; border: 1px solid rgba(159,108,255,.25); border-radius: 99px; color: var(--violet-bright); background: rgba(159,108,255,.08); font-size: 7px; font-style: normal; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
  .featured-row { background: linear-gradient(90deg, rgba(159,108,255,.07), transparent); }
  .text-button { display: inline-flex; min-height: 44px; align-items: center; gap: 7px; padding: 8px; border: 0; color: var(--violet-bright); background: transparent; font-size: 11px; font-weight: 750; cursor: pointer; }
  .text-button:hover { color: #fff; }
  .text-button span { transition: transform .2s ease; }
  .text-button:hover span { transform: translate(2px, -2px); }
}

@media (min-width: 1024px) {
  .nav-shell { width: min(calc(100% - 72px), var(--container)); }
  .menu-toggle { display: none; }
  .site-menu { position: static; display: flex; align-items: center; gap: 4px; padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; backdrop-filter: none; opacity: 1; visibility: visible; transform: none; transition: none; }
  .site-menu > a { position: relative; min-height: 44px; padding: 8px 12px; background: transparent !important; }
  .site-menu > a::after { position: absolute; right: 12px; bottom: 4px; left: 12px; height: 1px; background: var(--violet-bright); content: ""; opacity: 0; transform: scaleX(.4); transition: opacity .2s ease, transform .2s ease; }
  .site-menu > a:hover::after, .site-menu > a.is-active::after { opacity: 1; transform: scaleX(1); }
  .button--nav { width: auto; margin: 0 0 0 8px; padding-inline: 16px; }
  .hero { padding-top: calc(var(--header-height) + 46px); }
  .hero-grid { grid-template-columns: minmax(0, 1.35fr) minmax(330px, .65fr); gap: 62px; }
  .hero-panel { justify-self: end; margin: 0; }
  .scroll-cue { display: flex; }
  .launcher-layout { grid-template-columns: minmax(0, 1fr) minmax(400px, .85fr); gap: 80px; align-items: center; }
  .api-layout { grid-template-columns: minmax(300px, .38fr) minmax(0, .62fr); gap: 22px; align-items: stretch; }
  .api-offer { padding: 29px; }
  .model-panel { padding: 30px; }
  .section-heading--split { grid-template-columns: 48px 1fr .8fr; align-items: end; }
  .section-heading--split > p { justify-self: end; }
  .review-card--lifted { transform: none; }
  .js .review-card--lifted[data-reveal] { transform: translateY(18px); }
  .js .review-card--lifted[data-reveal].is-visible { transform: translateY(0); }
}

@media (min-width: 1280px) {
  .hero h1 { font-size: 6.55rem; }
  .hero-panel { width: 430px; }
  .benefit-strip > div { padding-inline: 20px; }
}

@media (max-width: 380px) {
  .container { width: min(calc(100% - 26px), var(--container)); }
  .hero h1 { font-size: 3rem; }
  .hero-subtitle { font-size: 1.08rem; }
  .trust-row { gap: 10px 14px; }
  .hero-panel { padding: 18px; }
  .pricing-cards { padding: 8px; }
  .pricing-cards article { padding: 14px; }
  .api-offer, .model-panel { padding: 18px; }
  .model-group { padding: 12px; }
  .contact-panel { padding-inline: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .cosmic-video { display: none; }
}
