:root {
  color-scheme: dark;
  --base: #0b0714;
  --surface: #171024;
  --surface-raised: #211630;
  --text: #f7f2ff;
  --muted: #bcb1c9;
  --line: rgba(247, 242, 255, 0.11);
  --violet: #8b5cf6;
  --electric: #a78bfa;
  --magenta: #d946ef;
  --gradient: linear-gradient(135deg, var(--violet), var(--magenta));
  --content: min(1180px, calc(100vw - 40px));
  --radius-small: 12px;
  --radius-panel: 22px;
  --radius-hero: 30px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: clip; color: var(--text); background: var(--base); font-size: 16px; line-height: 1.55; text-rendering: optimizeLegibility; }
body::before { position: fixed; z-index: -1; inset: 0; pointer-events: none; content: ""; background: radial-gradient(circle at 78% -10%, rgba(139, 92, 246, 0.25), transparent 32rem), radial-gradient(circle at 4% 35%, rgba(217, 70, 239, 0.12), transparent 28rem); }
::selection { color: white; background: var(--violet); }
a { color: inherit; text-underline-offset: 0.18em; }
button { color: inherit; font: inherit; }
:focus-visible { outline: 3px solid var(--electric); outline-offset: 4px; }
.shell { width: var(--content); margin-inline: auto; }
.skip-link { position: fixed; z-index: 100; top: 12px; left: 12px; padding: 10px 14px; color: var(--base); background: var(--text); border-radius: 9px; transform: translateY(-180%); transition: transform 160ms ease; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: sticky; z-index: 20; top: 0; border-bottom: 1px solid var(--line); background: rgba(11, 7, 20, 0.78); -webkit-backdrop-filter: blur(24px); backdrop-filter: blur(24px); }
.nav-wrap { position: relative; display: flex; align-items: center; justify-content: space-between; min-height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { display: block; border-radius: 24%; box-shadow: 0 12px 32px rgba(139, 92, 246, 0.25); }
.brand span { display: flex; flex-direction: column; line-height: 1.1; }
.brand strong { font-size: 1rem; letter-spacing: -0.02em; }
.brand small { margin-top: 4px; color: var(--muted); font-size: 0.68rem; }
.nav-list { display: flex; align-items: center; gap: 24px; margin: 0; padding: 0; list-style: none; }
.nav-list a { color: var(--muted); font-size: 0.88rem; font-weight: 650; text-decoration: none; }
.nav-list a:hover { color: var(--text); }
.nav-list .nav-cta { padding: 9px 14px; color: white; background: var(--gradient); border-radius: 999px; }
.nav-toggle { display: none; padding: 8px 11px; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line); border-radius: 9px; }

.hero { position: relative; overflow: clip; padding: clamp(76px, 9vw, 132px) 0 80px; }
.hero-copy { max-width: 920px; text-align: center; }
.eyebrow { margin: 0; color: var(--electric); font-size: 0.74rem; font-weight: 760; letter-spacing: 0.13em; text-transform: uppercase; }
h1, h2, h3, p { overflow-wrap: anywhere; }
.hero h1, .section-heading h2, .compact-heading h2, .policy-heading h1 { margin: 15px 0 0; font-weight: 720; letter-spacing: -0.055em; line-height: 0.98; }
.hero h1 { font-size: clamp(3.6rem, 8.6vw, 7.8rem); }
.hero h1 em { color: transparent; background: var(--gradient); background-clip: text; -webkit-background-clip: text; font-style: normal; }
.hero-lede { max-width: 680px; margin: 28px auto 0; color: var(--muted); font-size: clamp(1.05rem, 1.5vw, 1.26rem); }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 49px; padding: 12px 18px; border: 1px solid transparent; border-radius: 13px; font-size: 0.92rem; font-weight: 720; text-decoration: none; transition: transform 160ms ease, border-color 160ms ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--gradient); box-shadow: 0 14px 38px rgba(139, 92, 246, 0.28); }
.button-secondary { color: var(--text); background: rgba(255, 255, 255, 0.05); border-color: var(--line); }
.proof-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px 24px; margin: 28px 0 0; padding: 0; color: var(--muted); font-size: 0.84rem; list-style: none; }
.proof-row li::before { margin-right: 8px; color: var(--electric); content: "•"; }

.editor-stage { position: relative; margin-top: clamp(56px, 8vw, 92px); }
.editor-stage figure { position: relative; z-index: 1; margin: 0; }
.editor-stage img { display: block; width: 100%; height: auto; border: 1px solid rgba(167, 139, 250, 0.32); border-radius: var(--radius-hero); box-shadow: 0 45px 120px rgba(0, 0, 0, 0.58), 0 0 70px rgba(139, 92, 246, 0.16); }
.editor-stage figcaption { max-width: 700px; margin: 20px auto 0; color: var(--muted); font-size: 0.9rem; text-align: center; }
.stage-glow { position: absolute; inset: 7% 9% 0; background: linear-gradient(120deg, rgba(91, 33, 182, 0.55), rgba(217, 70, 239, 0.42)); filter: blur(95px); }

.section { padding: clamp(86px, 11vw, 150px) 0; border-top: 1px solid var(--line); }
.section-heading { max-width: 760px; }
.section-heading h2, .compact-heading h2, .policy-heading h1 { font-size: clamp(2.7rem, 5.5vw, 5.4rem); }
.section-heading > p:not(.eyebrow), .compact-heading > p:not(.eyebrow) { max-width: 62ch; color: var(--muted); }
.workflow-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 58px 0 0; padding: 0; list-style: none; }
.workflow-grid li, .feature, .scene-stack article, .price-card { border: 1px solid var(--line); background: linear-gradient(145deg, rgba(33, 22, 48, 0.9), rgba(18, 12, 29, 0.92)); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045); }
.workflow-grid li { min-height: 270px; padding: 28px; border-radius: var(--radius-panel); }
.workflow-grid span { color: var(--electric); font-family: "SFMono-Regular", ui-monospace, monospace; font-size: 0.76rem; }
.workflow-grid h3, .feature h3 { margin: 42px 0 0; font-size: 1.42rem; letter-spacing: -0.03em; line-height: 1.15; }
.workflow-grid p, .feature > p:last-of-type { color: var(--muted); }

.scene-story { background: linear-gradient(180deg, rgba(139, 92, 246, 0.06), transparent); }
.split-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(370px, 0.8fr); gap: clamp(48px, 8vw, 110px); align-items: center; }
.scene-stack { display: grid; gap: 12px; }
.scene-stack article { display: grid; grid-template-columns: 34px 1fr auto; gap: 14px; align-items: center; min-height: 92px; padding: 16px 18px; border-radius: 17px; }
.scene-stack article.selected { border-color: rgba(167, 139, 250, 0.75); background: linear-gradient(135deg, rgba(139, 92, 246, 0.24), rgba(217, 70, 239, 0.13)); transform: translateX(-18px); }
.scene-stack span, .scene-stack time { color: var(--electric); font-family: "SFMono-Regular", ui-monospace, monospace; font-size: 0.76rem; }
.scene-stack div { display: flex; flex-direction: column; }
.scene-stack small { margin-top: 3px; color: var(--muted); }

.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 58px; }
.feature { min-height: 250px; padding: 28px; border-radius: var(--radius-panel); }
.feature-wide { grid-column: 1 / -1; min-height: 310px; }
.feature-kicker { margin: 0; color: var(--electric) !important; font-family: "SFMono-Regular", ui-monospace, monospace; font-size: 0.72rem; font-weight: 720; letter-spacing: 0.08em; text-transform: uppercase; }
.feature h3 { max-width: 22ch; margin-top: 24px; font-size: clamp(1.5rem, 3vw, 2.5rem); }
.feature > p:last-of-type { max-width: 58ch; }
.zoom-demo { position: relative; height: 64px; margin-top: 32px; overflow: hidden; border-radius: 12px; background: rgba(255, 255, 255, 0.04); }
.zoom-demo::before { position: absolute; top: 31px; right: 18px; left: 18px; height: 2px; content: ""; background: rgba(255, 255, 255, 0.09); }
.zoom-demo span { position: absolute; top: 16px; left: 22%; width: 38%; height: 32px; border: 1px solid var(--electric); border-radius: 7px; background: rgba(139, 92, 246, 0.33); }
.zoom-demo b { position: absolute; top: 21px; right: 18px; color: var(--electric); font-family: "SFMono-Regular", ui-monospace, monospace; font-size: 0.76rem; }
.format-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.format-row span { padding: 9px 13px; border: 1px solid var(--line); border-radius: 9px; background: rgba(255, 255, 255, 0.04); font-family: "SFMono-Regular", ui-monospace, monospace; font-size: 0.8rem; }

.privacy-section { background: radial-gradient(circle at 22% 50%, rgba(139, 92, 246, 0.18), transparent 24rem); }
.privacy-mark { text-align: center; }
.privacy-mark img { width: min(320px, 72%); height: auto; border-radius: 25%; box-shadow: 0 30px 80px rgba(139, 92, 246, 0.28); }
.text-link { color: var(--electric); font-weight: 700; }
.compatibility { text-align: center; }
.compact-heading { max-width: 800px; margin-inline: auto; }
.compact-heading > p:not(.eyebrow) { margin-inline: auto; }

.price-card { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: end; padding: clamp(30px, 6vw, 72px); border-color: rgba(167, 139, 250, 0.35); border-radius: var(--radius-hero); }
.price-card h2 { margin: 16px 0 0; font-size: clamp(4rem, 9vw, 8rem); letter-spacing: -0.07em; line-height: 0.9; }
.price-card p { color: var(--muted); }
.launch-status { color: var(--text) !important; font-size: 1.15rem; font-weight: 700; }
.fine-print { font-size: 0.82rem; }
.faq-list { margin-top: 52px; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { cursor: pointer; padding: 24px 0; font-size: 1.06rem; font-weight: 680; }
.faq-list details p { max-width: 70ch; margin: -8px 0 24px; color: var(--muted); }

.policy-main { min-height: 65vh; }
.policy-hero { padding: 96px 0 54px; }
.policy-heading { max-width: 820px; }
.policy-heading > p:last-child { max-width: 62ch; color: var(--muted); }
.policy-content { padding-bottom: 120px; }
.policy-content article { max-width: 780px; }
.policy-content h2 { margin: 48px 0 12px; font-size: 1.35rem; }
.policy-content p, .policy-content li { color: var(--muted); }
.policy-content a { color: var(--electric); }
.support-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 40px; }
.support-cards article { padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
.support-cards h2 { margin-top: 0; }
.support-cards p { color: var(--muted); }

.site-footer { padding: 38px 0; border-top: 1px solid var(--line); color: var(--muted); }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; gap: 28px; align-items: center; }
.footer-grid nav { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-grid nav a { font-size: 0.82rem; text-decoration: none; }
.footer-grid > p { font-size: 0.78rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 820px) {
  .nav-toggle { display: block; margin-left: auto; }
  .nav-list { position: absolute; top: calc(100% + 1px); right: 0; left: 0; display: none; align-items: stretch; padding: 16px; border: 1px solid var(--line); border-radius: 0 0 16px 16px; background: rgba(11, 7, 20, 0.97); }
  .nav-list[data-open="true"] { display: grid; }
  .nav-list a { display: block; padding: 9px; }
  .workflow-grid, .feature-grid, .split-layout, .price-card, .footer-grid, .support-cards { grid-template-columns: 1fr; }
  .feature-wide { grid-column: auto; }
  .scene-stack article.selected { transform: none; }
  .footer-grid { justify-items: start; }
}

@media (max-width: 520px) {
  :root { --content: min(100% - 28px, 1180px); }
  .brand small { display: none; }
  .hero { padding-top: 64px; }
  .hero h1 { font-size: clamp(3rem, 16vw, 4.8rem); }
  .hero-actions .button { width: 100%; }
  .editor-stage img { border-radius: 16px; }
  .section { padding: 76px 0; }
  .workflow-grid li, .feature { min-height: 0; }
  .price-card { padding: 26px; }
}

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

@media (prefers-contrast: more) {
  :root { --line: rgba(255, 255, 255, 0.35); --muted: #e3dbea; }
  .button-secondary, .workflow-grid li, .feature, .scene-stack article, .price-card { border-width: 2px; }
}
