:root {
  --bg: #f7f2eb;
  --surface: #fffaf4;
  --ink: #181a1d;
  --muted: #646566;
  --line: #d8d2cb;
  --coral: #c63a33;
  --coral-dark: #a8322d;
  --blue: #2874da;
  --orange: #f28a20;
  --green: #4f755f;
  --cyan: #0cc4d2;
  --dark: #121416;
  --dark-surface: #1f252a;
  --radius: 18px;
  --container: 1360px;
  --shadow: 0 22px 44px rgb(33 29 25 / 14%);
  --ease: cubic-bezier(.32,.72,0,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 17px; line-height: 1.5; text-rendering: optimizeLegibility; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
.container { width: min(var(--container), calc(100% - 88px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 20; top: 10px; left: 10px; padding: 10px 14px; border-radius: 8px; background: var(--ink); color: white; transform: translateY(-150%); transition: transform .35s var(--ease); }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid #1278ee; outline-offset: 4px; }

.error-page { display: grid; min-height: 100svh; place-items: center; padding: 32px; background: var(--bg); }
.error-card { width: min(100%, 620px); padding: 48px; border: 1px solid var(--line); border-radius: 24px; background: var(--surface); box-shadow: var(--shadow); }
.error-card .brand { margin-bottom: 64px; }
.error-code { margin-bottom: 10px; color: var(--coral); font-size: 15px; font-weight: 800; letter-spacing: .14em; }
.error-card h1 { max-width: 500px; margin-bottom: 18px; font-size: clamp(42px, 7vw, 72px); }
.error-card > p:not(.error-code) { max-width: 460px; margin-bottom: 28px; color: var(--muted); font-size: 19px; }
@media (max-width: 600px) { .error-page { padding: 20px; }.error-card { padding: 28px; }.error-card .brand { margin-bottom: 48px; } }

.site-header { position: absolute; z-index: 10; top: 0; left: 0; width: 100%; }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 96px; }
.brand { display: inline-flex; align-items: center; gap: 13px; font-size: 27px; font-weight: 760; letter-spacing: -.04em; text-decoration: none; }
.brand img { width: 48px; height: 48px; border-radius: 12px; object-fit: cover; }
.site-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 52px); font-size: 17px; }
.site-nav a:not(.button), .site-footer a { text-decoration: none; }
.site-nav a:not(.button) { transition: color .35s var(--ease); }
.site-nav a:not(.button):hover, .site-footer a:hover { color: var(--coral); }
.language-switcher { display: inline-flex; align-items: center; gap: 4px; margin-left: 2px; padding-left: 12px; border-left: 1px solid var(--line); font-size: 12px; font-weight: 800; letter-spacing: .08em; }
.language-switcher a { padding: 4px 6px; border-radius: 5px; }
.language-switcher a[aria-current="page"] { background: var(--ink); color: var(--surface); }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--ink); cursor: pointer; padding: 10px; }
.menu-toggle svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 28px; border: 1px solid transparent; border-radius: 10px; font-weight: 700; line-height: 1.1; text-decoration: none; cursor: pointer; transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease); }
.button:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgb(30 25 20 / 12%); }
.button:active { transform: translateY(0); }
.button:disabled { cursor: not-allowed; opacity: .58; transform: none; box-shadow: none; }
.button-small { min-height: 48px; padding-inline: 24px; }
.button-coral { background: var(--coral); color: #fff; }
.button-coral:hover { background: var(--coral-dark); }
.site-nav a.button[href$="#free"] { border-color: #cbc4bd; background: transparent; color: var(--ink); }
.site-nav a.button[href$="#free"]:hover { background: var(--surface); }
.button-outline { border-color: #cbc4bd; background: transparent; color: var(--ink); }
.button-outline:hover { background: var(--surface); }
.button-blue { background: var(--blue); color: white; }
.button-green { background: var(--green); color: white; }
.button-light { background: #fff8f1; color: var(--coral); }

.hero { padding-top: 136px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(360px, .8fr) minmax(560px, 1.2fr); align-items: center; gap: 36px; min-height: 660px; }
.hero-copy { position: relative; z-index: 2; padding-bottom: 56px; }
.hero-eyebrow { display: inline-flex; margin: 0 0 16px; padding: 8px 12px; border: 1px solid #e0b8ae; border-radius: 999px; background: #fff6f0; color: var(--coral-dark); font-size: 12px; font-weight: 800; letter-spacing: .08em; line-height: 16px; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
p, li { text-wrap: pretty; }
h1, h2, h3 { overflow-wrap: break-word; hyphens: auto; }
p, li { overflow-wrap: anywhere; }
h1, h2 { letter-spacing: -.055em; line-height: .99; }
h1 { max-width: 600px; margin-bottom: 26px; font-size: clamp(54px, 5vw, 84px); font-weight: 780; }
h2 { margin-bottom: 23px; font-size: clamp(41px, 4vw, 64px); font-weight: 760; }
h3 { letter-spacing: -.025em; }
.hero-lead { max-width: 560px; margin-bottom: 32px; color: var(--muted); font-size: clamp(19px, 1.8vw, 25px); line-height: 1.42; }
.hero-beta-badge { display: inline-flex; align-items: center; gap: 5px; margin: -10px 0 20px; padding: 7px 11px; border: 1px solid #e0b8ae; border-radius: 999px; background: #fff6f0; color: var(--coral-dark); font-size: 12px; font-weight: 800; letter-spacing: .08em; }
.hero-beta-badge span { color: var(--coral); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 22px; }
.hero-note { color: #77736f; font-size: 16px; }
.hero-media { position: relative; min-height: 610px; align-self: stretch; display: flex; align-items: center; justify-content: center; }
.hero-media::after { content: ""; position: absolute; inset: 14% -25% 0 4%; z-index: -2; border-radius: 48px; background: #fffdf9; box-shadow: 0 18px 35px rgb(50 44 39 / 9%); transform: rotate(3deg); }
.hero-stack { position: absolute; inset: 17% -6% 6% 0; z-index: -1; border-radius: 46px; background: #fffaf3; box-shadow: 0 18px 35px rgb(50 44 39 / 10%); transform: rotate(-3deg); }
.hero-media img { width: min(100%, 860px); border-radius: 18px; box-shadow: 0 24px 44px rgb(15 18 20 / 28%); transform: rotate(1.2deg); }
.hero-ribbon { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; min-height: 245px; padding: 42px 64px; border-radius: 30px 30px 0 0; background: var(--coral); color: white; overflow: hidden; }
.hero-ribbon h2 { max-width: 520px; margin-bottom: 8px; font-size: clamp(31px, 3vw, 48px); }
.tagline-reveal .reveal-word { display: inline-block; color: white; transition: color .7s var(--ease); }
html.has-reveal .tagline-reveal .reveal-word { color: rgb(255 255 255 / 70%); }
html.has-reveal .tagline-reveal .reveal-word.is-visible { color: white; }
.hero-ribbon p { margin: 0; font-size: 19px; opacity: 1; }
.hero-ribbon img { justify-self: end; width: min(100%, 610px); height: 220px; object-fit: cover; object-position: center top; border-radius: 18px; box-shadow: var(--shadow); transform: rotate(-1.5deg); }

.section { padding: 112px 0; }
.workflow { background: var(--surface); }
.workflow-intro { max-width: 790px; }
.workflow-intro h2 { margin-bottom: 17px; font-size: clamp(42px, 4.2vw, 64px); }
.workflow-intro p { max-width: 760px; margin-bottom: 52px; color: var(--muted); font-size: 22px; }
kbd { display: inline-block; min-width: 1.5em; padding: 1px 5px; border: 1px solid #c8c4bf; border-bottom-width: 2px; border-radius: 4px; background: #fff; color: inherit; font: inherit; font-size: .75em; line-height: 1.2; text-align: center; }
.workflow-demo { position: relative; z-index: 1; width: min(62%, 780px); margin: -6px 0 -84px auto; }
.workflow-demo img { display: block; width: 100%; height: auto; border-radius: 17px; box-shadow: var(--shadow); }
.steps { --step-gap: 44px; position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--step-gap); max-width: 720px; margin: 0; padding: 0; list-style: none; }
.steps::before { content: ""; position: absolute; top: 50px; right: calc((100% - (2 * var(--step-gap))) / 6 - 26px); left: 19px; height: 1px; background: #bdb7b0; }
.step { position: relative; display: grid; grid-template-columns: auto auto; grid-template-rows: auto auto; align-items: center; column-gap: 14px; padding-top: 20px; }
.step-number { position: relative; z-index: 1; display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; color: white; font-weight: 750; }
.step-blue .step-number { background: var(--blue); }.step-orange .step-number { background: var(--orange); color: var(--ink); }.step-green .step-number { background: #3a9a54; color: var(--ink); }
.step-icon { position: relative; z-index: 1; display: grid; width: 61px; height: 61px; place-items: center; border: 2px solid #c8c3be; border-radius: 16px; background: var(--surface); }
.step-icon svg { width: 31px; height: 31px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.step-blue .step-icon { color: var(--blue); }.step-orange .step-icon { color: var(--orange); }.step-green .step-icon { color: #329648; }
.step h3 { grid-column: 1 / -1; margin: 18px 0 3px; font-size: 20px; }
.step p { grid-column: 1 / -1; margin: 0; color: var(--muted); }

.organize { background: var(--bg); }
.organize-grid { display: grid; grid-template-columns: 1.05fr .95fr 1.05fr; gap: 44px; align-items: center; }
.organize-copy h2 { max-width: 410px; margin-bottom: 18px; font-size: clamp(38px, 3.8vw, 57px); }
.organize-copy > p { max-width: 470px; margin-bottom: 34px; color: var(--muted); font-size: 20px; }
.feature-list, .dev-actions, .privacy-points { margin: 0; padding: 0; list-style: none; }
.feature-list { display: grid; gap: 20px; }
.feature-list li { display: flex; gap: 15px; align-items: center; }
.feature-list strong, .feature-list small { display: block; }.feature-list strong { font-size: 18px; }.feature-list small { margin-top: 2px; color: var(--muted); font-size: 16px; }
.feature-icon, .privacy-icon { display: grid; flex: 0 0 auto; width: 40px; height: 40px; place-items: center; border-radius: 50%; background: currentColor; }
.feature-icon svg, .privacy-icon svg { width: 22px; height: 22px; fill: none; stroke: white; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon-blue { color: var(--blue); }.icon-orange { color: var(--orange); }.icon-green { color: #31944c; }.icon-coral { color: var(--coral); }
.sequential-card { align-self: start; padding-top: 20px; }
.sequential-heading { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 14px; font-weight: 750; }
.sequential-heading span { display: inline-flex; align-items: center; gap: 10px; }.sequential-heading svg { width: 22px; height: 22px; fill: none; stroke: var(--cyan); stroke-width: 1.6; stroke-linecap: round; }.sequential-heading small { color: var(--muted); font-weight: 500; }
.sequential-meta { padding: 5px 9px; border: 1px solid rgb(12 196 210 / 32%); border-radius: 999px; background: rgb(12 196 210 / 10%); color: #087c85 !important; font-size: 12px; font-weight: 750 !important; line-height: 1.2; white-space: nowrap; }
.sequential-card img { width: 100%; border-radius: 13px; box-shadow: 0 17px 30px rgb(10 16 19 / 22%); }
.sequential-card p { margin: 14px 0 0; color: var(--muted); font-size: 18px; }.sequential-card p strong { color: var(--ink); font-weight: 750; }
.workflow-proof { display: flex; min-height: 340px; flex-direction: column; justify-content: center; padding: 32px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); box-shadow: 0 14px 28px rgb(33 29 25 / 7%); }
.workflow-proof-kicker { margin: 0; color: var(--coral-dark); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.workflow-proof-shortcuts { display: grid; gap: 10px; margin: 20px 0 22px; }
.workflow-shortcut-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--muted); font-size: 14px; }
.workflow-proof-shortcut { display: flex; flex: 0 0 auto; gap: 8px; margin: 0; }
.workflow-proof-shortcut kbd { min-width: 36px; padding: 8px 10px; border-color: #34383b; background: var(--ink); color: white; font-size: 16px; }
.workflow-proof h3 { max-width: 270px; margin-bottom: 10px; font-size: 24px; line-height: 1.08; text-wrap: balance; }
.workflow-proof > p:last-child { max-width: 300px; margin: 0; color: var(--muted); font-size: 16px; text-wrap: pretty; }
.state-showcase { background: var(--surface); }
.state-showcase-heading { max-width: 760px; margin: 0 auto 42px; text-align: center; }
.state-showcase-heading h2 { margin-bottom: 10px; }
.state-showcase-heading p { margin: 0; color: var(--muted); font-size: 19px; }
.state-showcase-grid { display: grid; grid-template-columns: minmax(0, .98fr) minmax(0, 1.02fr); gap: 36px; align-items: stretch; }
.state-shot { margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--dark); box-shadow: 0 14px 34px rgb(33 29 25 / 10%); }
.state-shot img { width: 100%; height: auto; }
.state-shot-empty img { aspect-ratio: 1.27; object-fit: cover; object-position: center top; }
.state-shot-stack { display: grid; gap: 24px; align-content: center; }
.state-shot-notes img { aspect-ratio: auto; object-fit: contain; object-position: center; }
.state-shot-secure img { aspect-ratio: auto; object-fit: contain; object-position: center; }
.state-shot figcaption { padding: 13px 18px 15px; background: var(--surface); color: var(--muted); font-size: 15px; }

.section-dark { padding: 112px 0; background: var(--dark); color: #f8f7f5; }
.developer-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 70px; align-items: center; }
.developer-copy h2 { max-width: 550px; font-size: clamp(42px, 4.4vw, 68px); }.developer-copy p { max-width: 560px; color: #b6b9bb; font-size: 20px; line-height: 1.55; }
.dev-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 30px; margin-top: 36px; }.dev-actions li { display: flex; gap: 13px; align-items: center; font-size: 17px; }.dev-icon { display: grid; width: 30px; height: 30px; place-items: center; }.dev-icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }.dev-blue { color: #43a0ff; }.dev-orange { color: #ffad2e; }.dev-coral { color: #ff605a; }.dev-green { color: #40cb56; }.dev-cyan { color: var(--cyan); }
.developer-media { margin: 0; }.developer-media img { width: 100%; border: 1px solid #3d4449; border-radius: 17px; box-shadow: 0 24px 55px rgb(0 0 0 / 38%); }.developer-media figcaption { margin-top: 13px; color: #a5a7a8; text-align: center; }

.privacy { background: var(--surface); }.privacy-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 100px; align-items: center; }.privacy h2 { max-width: 600px; }.privacy p { max-width: 600px; color: var(--muted); font-size: 19px; }.privacy-points { display: grid; gap: 18px; }.privacy-points li { display: flex; align-items: center; gap: 16px; font-size: 18px; }.privacy-icon { width: 42px; height: 42px; }
.native-band { padding: 54px 0; background: var(--coral); color: white; overflow: hidden; }.native-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }.native-band h2 { margin-bottom: 8px; font-size: clamp(35px, 4vw, 55px); }.native-band p { margin: 0; font-size: 18px; opacity: 1; }.native-band img { justify-self: end; width: min(100%, 510px); height: 230px; object-fit: cover; object-position: center top; border-radius: 17px; box-shadow: var(--shadow); }

.pricing { background: var(--bg); }.section-heading { margin-bottom: 44px; }.section-heading h2 { margin-bottom: 8px; }.section-heading p { margin: 0; color: var(--muted); font-size: 18px; }.centered { text-align: center; }.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: stretch; }.price-card { display: flex; flex-direction: column; min-height: 466px; padding: 27px 30px 25px; border: 1px solid var(--line); border-radius: 16px; background: transparent; box-shadow: 0 12px 28px rgb(33 29 25 / 5%); }.price-plus { border: 2px solid var(--coral); border-radius: 16px; background: rgb(255 250 244 / 46%); box-shadow: 0 16px 34px rgb(198 58 51 / 10%); }.price-dev { box-shadow: 0 12px 28px rgb(79 117 95 / 8%); }.price-card h3 { margin-bottom: 3px; font-size: 28px; }.price { margin: 0; font-size: 52px; line-height: 1.05; letter-spacing: -.06em; }.price-subline { margin: 5px 0 0; color: var(--muted); font-size: 13px; font-weight: 750; line-height: 1.25; }.plan-label { min-height: 34px; margin: 7px 0 15px; color: var(--blue); font-size: 18px; font-weight: 700; }.price-plus .plan-label { color: var(--coral); }.price-dev .plan-label { color: var(--green); }.price-card ul { flex: 1; display: grid; align-content: start; gap: 14px; margin: 0 0 26px; padding: 20px 0 0; border-top: 1px solid var(--line); list-style: none; }.price-card li { position: relative; padding-left: 28px; font-size: 16px; }.price-card li::before { content: ""; position: absolute; top: .25em; left: 0; width: 17px; height: 17px; border-radius: 5px; background: var(--blue); }.price-card li::after { content: ""; position: absolute; top: .48em; left: 4px; width: 8px; height: 4px; border-left: 2px solid white; border-bottom: 2px solid white; transform: rotate(-45deg); }.price-plus li::before { background: var(--orange); }.price-dev li::before { background: var(--green); }.price-card .button { width: 100%; }
.price del { display: inline-block; margin-right: 7px; color: var(--muted); font-size: .48em; font-weight: 500; letter-spacing: -.02em; vertical-align: middle; }.pricing-note { margin: 21px 0 0; color: var(--muted); font-size: 14px; text-align: center; }

.trial-banner { display: grid; grid-template-columns: 145px 1fr auto; gap: 30px; align-items: center; margin-top: 0; padding: 25px 42px 25px 27px; border-radius: 21px; background: var(--coral); color: white; }.trial-banner > img { width: 120px; height: 120px; border-radius: 26px; }.trial-banner h3 { margin-bottom: 3px; font-size: 32px; }.trial-banner p { max-width: 630px; margin: 0; font-size: 18px; opacity: 1; }.trial-action { display: grid; gap: 12px; min-width: 260px; text-align: center; }.trial-action span { font-size: 13px; line-height: 1.3; opacity: 1; }
.beta-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin: 27px 0 58px; padding: 0; list-style: none; }.beta-steps li { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; padding-top: 18px; border-top: 1px solid var(--line); }.beta-step-number { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 50%; background: var(--coral); color: white; font-weight: 800; }.beta-steps strong { display: block; margin: 2px 0 4px; font-size: 18px; }.beta-steps p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.35; }.beta-purchase-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 24px; }.beta-purchase-heading h3 { max-width: 560px; margin: 0; font-size: clamp(27px, 2.8vw, 39px); line-height: 1.05; }.beta-purchase-heading p { max-width: 420px; margin: 0; color: var(--muted); font-size: 17px; }

.faq { padding-top: 44px; }.faq-inner { max-width: 1120px; }.faq h2 { margin-bottom: 27px; font-size: clamp(37px, 3.5vw, 51px); }.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 76px; }.faq-column { border-top: 1px solid var(--line); }.faq details { border-bottom: 1px solid var(--line); }.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 17px 4px; cursor: pointer; list-style: none; font-size: 17px; }.faq summary::-webkit-details-marker { display: none; }.faq summary::after { content: "+"; font-size: 25px; line-height: 1; }.faq details[open] summary::after { content: "−"; }.faq details p { margin: -2px 34px 17px 4px; color: var(--muted); font-size: 15px; }.final-cta { padding: 17px 0; background: var(--surface); }.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 34px 46px; border: 1px solid #e2d9d0; border-radius: 18px; }.final-cta h2 { margin: 0; font-size: clamp(27px, 3vw, 39px); }.final-cta-inner > div { display: flex; flex-wrap: wrap; gap: 14px; }.site-footer { padding: 30px 0 38px; background: var(--surface); }.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; padding-top: 18px; border-top: 1px solid var(--line); }.footer-brand { color: var(--coral); font-size: 27px; font-weight: 760; letter-spacing: -.04em; text-decoration: none; }.site-footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; font-size: 15px; }.site-footer p { margin: 0; color: var(--muted); font-size: 15px; text-align: right; }

.faq details[open] summary { padding-bottom: 9px; }
.faq details p { margin-top: 0; }
.site-footer nav a { display: inline-flex; min-height: 24px; align-items: center; }

.supporting-capabilities { background: var(--bg); }
.supporting-grid { display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); gap: 90px; align-items: start; }
.supporting-grid h2 { max-width: 560px; }
.supporting-grid > div > p { max-width: 520px; color: var(--muted); font-size: 19px; }
.feature-links { background: var(--surface); }
.feature-links-heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 30px; }
.feature-links-heading h2 { max-width: 600px; margin-bottom: 0; }
.feature-links-heading p { max-width: 430px; margin: 0; color: var(--muted); font-size: 18px; }
.feature-link-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 0; padding: 0; list-style: none; }
.feature-link-grid a { display: flex; min-height: 112px; flex-direction: column; justify-content: space-between; gap: 12px; padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: var(--bg); text-decoration: none; transition: transform .35s var(--ease), border-color .35s var(--ease); }
.feature-link-grid a:hover { border-color: var(--coral); transform: translateY(-3px); }
.feature-link-grid strong { font-size: 17px; }
.feature-link-grid span { color: var(--coral-dark); font-size: 14px; font-weight: 750; }
.capability-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 34px; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.capability-list li { padding: 20px 0; border-bottom: 1px solid var(--line); }
.capability-list strong, .capability-list span { display: block; }
.capability-list strong { margin-bottom: 6px; font-size: 18px; }
.capability-list span { color: var(--muted); font-size: 16px; }
.product-cta { background: var(--coral); color: white; }
.product-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 42px; padding: 38px 44px; border-radius: 21px; background: var(--coral); }
.product-cta h2 { max-width: 680px; margin-bottom: 10px; font-size: clamp(34px, 4vw, 56px); }
.product-cta p { max-width: 680px; margin-bottom: 0; color: white; font-size: 19px; }
.product-cta .button-light { flex: 0 0 auto; }
.feature-page { background: var(--surface); }
.feature-hero { padding: 168px 0 76px; background: var(--bg); }
.feature-hero-inner { display: grid; grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr); gap: 70px; align-items: center; }
.feature-hero h1 { max-width: 700px; margin-bottom: 22px; }
.feature-hero-lead { max-width: 620px; margin: 0; color: var(--muted); font-size: 22px; }
.feature-hero-media { margin: 0; }
.feature-hero-media img { width: 100%; max-height: 480px; object-fit: contain; border-radius: 18px; box-shadow: var(--shadow); }
.feature-hero-media figcaption { margin-top: 12px; color: var(--muted); font-size: 14px; text-align: center; }
.feature-content { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 90px; align-items: start; }
.feature-content h2 { margin-bottom: 16px; font-size: clamp(37px, 4vw, 58px); }
.feature-content > div > p { max-width: 560px; color: var(--muted); font-size: 19px; }
.feature-points { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.feature-points li { padding: 20px 0; border-bottom: 1px solid var(--line); }
.feature-points strong, .feature-points span { display: block; }
.feature-points strong { margin-bottom: 5px; font-size: 19px; }
.feature-points span { color: var(--muted); }
.feature-reveal { padding: 80px 0; background: var(--dark); color: white; }
.feature-reveal h2 { max-width: 680px; margin: 0; font-size: clamp(36px, 5vw, 60px); }
.feature-faq { padding-top: 0; background: var(--surface); }
.feature-faq-inner { max-width: 920px; }
.feature-faq h2 { margin-bottom: 28px; font-size: clamp(36px, 4vw, 54px); }
.feature-faq details { border-top: 1px solid var(--line); }
.feature-faq details:last-child { border-bottom: 1px solid var(--line); }
.feature-faq summary { display: flex; justify-content: space-between; gap: 18px; padding: 18px 2px; cursor: pointer; list-style: none; font-size: 18px; font-weight: 700; }
.feature-faq summary::-webkit-details-marker { display: none; }
.feature-faq summary::after { content: "+"; color: var(--coral); font-size: 25px; line-height: 1; }
.feature-faq details[open] summary::after { content: "−"; }
.feature-faq details p { max-width: 760px; margin: -2px 40px 19px 2px; color: var(--muted); }
.feature-cta { padding-top: 0; background: var(--surface); }
@media (max-width: 780px) { .feature-hero { padding-top: 124px; }.feature-hero-inner, .feature-content { display: flex; flex-direction: column; gap: 38px; }.feature-hero-lead { font-size: 19px; }.feature-content h2 { font-size: 43px; }.feature-hero-media { order: -1; }.feature-cta .product-cta-inner { display: block; }.feature-cta .button { margin-top: 22px; } }
.buy-page { background: var(--surface); }
.buy-hero { padding: 168px 0 72px; background: var(--bg); }
.buy-hero-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.buy-hero h1 { max-width: 760px; margin-bottom: 20px; font-size: clamp(51px, 7vw, 86px); }
.buy-hero p { max-width: 700px; margin: 0; color: var(--muted); font-size: 22px; }
.buy-hero img { width: 150px; height: 150px; border-radius: 32px; box-shadow: var(--shadow); }
.buy-beta { padding: 54px 0; background: var(--coral); color: white; }
.buy-beta-inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.buy-beta h2 { margin-bottom: 9px; font-size: clamp(35px, 4vw, 57px); }
.buy-beta p { margin: 0; color: white; font-size: 19px; }
.buy-beta .button-light { flex: 0 0 auto; }
.buy-steps { background: var(--surface); }
.buy-steps .beta-steps { margin-bottom: 0; }
.edition-guide { background: var(--surface); }
.edition-guide-grid { display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.edition-guide-grid h2 { max-width: 620px; }
.edition-guide-grid p { max-width: 720px; margin: 0; color: var(--muted); font-size: 19px; }
.text-link { flex: 0 0 auto; color: var(--coral-dark); font-weight: 750; text-underline-offset: 4px; }
.text-link span { display: inline-block; margin-left: 6px; transition: transform .35s var(--ease); }
.text-link:hover span { transform: translateX(4px); }

@media (max-width: 1060px) {
  .container { width: min(var(--container), calc(100% - 56px)); }.site-nav { gap: 20px; font-size: 15px; }.hero-grid { grid-template-columns: 1fr 1.08fr; }.hero-media { min-height: 500px; }.hero-ribbon { padding-inline: 40px; }.organize-grid { grid-template-columns: 1fr 1fr; }.workflow-proof { min-height: 280px; grid-column: 1 / -1; }.developer-grid { gap: 38px; }.privacy-grid { gap: 55px; }.trial-banner { grid-template-columns: 105px 1fr; padding-right: 25px; }.trial-banner > img { width: 95px; height: 95px; }.trial-action { grid-column: 2; justify-self: start; text-align: left; }
}
@media (max-width: 960px) {
  .site-header { position: absolute; }
  .header-inner { min-height: 80px; }
  .menu-toggle { display: block; }
.site-nav { position: absolute; top: 72px; right: 28px; left: 28px; display: grid; gap: 0; padding: 12px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); box-shadow: var(--shadow); opacity: 0; pointer-events: none; visibility: hidden; transform: translateY(-8px); transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s var(--ease); }
.site-nav.is-open { opacity: 1; pointer-events: auto; visibility: visible; transform: translateY(0); }
  .site-nav a:not(.button) { padding: 12px; }
  .site-nav .nav-cta { margin-top: 8px; }
  .language-switcher { justify-content: flex-start; margin: 8px 12px 0; padding: 10px 0 0; border-top: 1px solid var(--line); border-left: 0; }
}
@media (max-width: 780px) {
  body { font-size: 16px; }.container { width: min(var(--container), calc(100% - 40px)); }.site-header { position: absolute; }.header-inner { min-height: 80px; }.brand { font-size: 24px; }.brand img { width: 42px; height: 42px; border-radius: 11px; }.menu-toggle { display: block; }.site-nav { position: absolute; top: 72px; right: 20px; left: 20px; display: grid; gap: 0; padding: 12px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); box-shadow: var(--shadow); opacity: 0; pointer-events: none; visibility: hidden; transform: translateY(-8px); transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s var(--ease); }.site-nav.is-open { opacity: 1; pointer-events: auto; visibility: visible; transform: translateY(0); }.site-nav a:not(.button) { padding: 12px; }.site-nav .nav-cta { margin-top: 8px; }.language-switcher { justify-content: flex-start; margin: 8px 12px 0; padding: 10px 0 0; border-top: 1px solid var(--line); border-left: 0; }.hero { padding-top: 110px; }.hero-grid { display: flex; flex-direction: column; align-items: stretch; min-height: 0; gap: 22px; }.hero-copy { padding-bottom: 0; }.hero-lead { font-size: 19px; }.hero-note { font-size: 14px; }.hero-media { min-height: 310px; margin: 0 -20px; }.hero-media::after { inset: 14% -2% 0 6%; border-radius: 28px; }.hero-stack { inset: 17% -1% 3% 3%; border-radius: 28px; }.hero-media img { width: 92%; border-radius: 11px; }.hero-ribbon { grid-template-columns: 1fr; gap: 22px; margin-top: 22px; padding: 30px 26px; border-radius: 21px 21px 0 0; }.hero-ribbon h2 { font-size: 35px; }.hero-ribbon img { justify-self: center; max-height: 170px; }
  .section, .section-dark { padding: 74px 0; }.workflow-intro p { margin-bottom: 32px; font-size: 19px; }.workflow-demo { width: 100%; margin: 0 0 34px; }.workflow-demo img { border-radius: 11px; }.steps { --step-gap: 9px; max-width: none; }.steps::before { display: none; }.step { display: block; text-align: center; }.step-number { display: inline-grid; margin-right: 6px; vertical-align: middle; }.step-icon { display: inline-grid; width: 52px; height: 52px; vertical-align: middle; }.step-icon svg { width: 26px; height: 26px; }.step h3 { margin: 14px 0 3px; font-size: 18px; }.step p { font-size: 14px; }.organize-grid { display: flex; flex-direction: column; align-items: stretch; gap: 35px; }.organize-copy h2 { font-size: 42px; }.sequential-card { padding-top: 0; }.workflow-proof { min-height: 220px; padding: 24px; }.state-showcase-grid { grid-template-columns: 1fr; }.state-shot-stack { gap: 20px; }.developer-grid, .privacy-grid, .native-grid { display: flex; flex-direction: column; align-items: stretch; gap: 38px; }.developer-copy h2, .privacy h2 { font-size: 44px; }.developer-copy p, .privacy p { font-size: 18px; }.developer-media { order: -1; }.developer-media figcaption { font-size: 14px; }.dev-actions { gap: 16px; }.native-grid { gap: 25px; }.native-band img { align-self: center; width: 90%; max-height: 190px; }.section-heading { margin-bottom: 28px; }.section-heading h2 { font-size: 43px; }.pricing-grid { grid-template-columns: 1fr; gap: 17px; }.price-card { min-height: 0; padding: 24px 25px; }.price-card ul { margin-bottom: 22px; }.trial-banner { display: flex; flex-direction: column; align-items: flex-start; gap: 17px; padding: 26px; }.trial-banner > img { width: 82px; height: 82px; }.trial-banner h3 { font-size: 28px; }.trial-action { min-width: 0; width: 100%; text-align: left; }.trial-action .button { width: 100%; }.beta-steps { grid-template-columns: 1fr; gap: 14px; margin: 24px 0 44px; }.beta-steps li { padding-top: 14px; }.beta-purchase-heading { display: block; margin-bottom: 20px; }.beta-purchase-heading p { margin-top: 9px; font-size: 16px; }.faq { padding-top: 28px; }.faq-grid { grid-template-columns: 1fr; gap: 0; }.faq h2 { font-size: 39px; }.final-cta-inner { display: block; padding: 28px 24px; }.final-cta h2 { margin-bottom: 22px; }.final-cta-inner > div { display: grid; }.footer-inner { grid-template-columns: 1fr; gap: 18px; }.site-footer nav { justify-content: flex-start; gap: 14px 20px; }.site-footer p { text-align: left; }.feature-links-heading { display: block; }.feature-links-heading p { margin-top: 14px; }.feature-link-grid { grid-template-columns: 1fr; }
}
@media (max-width: 780px) {
  .supporting-grid { display: block; }
  .supporting-grid > div > p { font-size: 18px; }
  .capability-list { grid-template-columns: 1fr; margin-top: 28px; }
  .product-cta-inner { display: block; padding: 30px 26px; }
  .product-cta h2 { font-size: 39px; }
  .product-cta p { margin-bottom: 22px; font-size: 18px; }
  .buy-hero { padding: 122px 0 48px; }
  .buy-hero-inner { display: block; }
  .buy-hero h1 { font-size: 48px; }
  .buy-hero p { font-size: 18px; }
  .buy-hero img { width: 96px; height: 96px; margin-top: 28px; border-radius: 20px; }
  .buy-beta { padding: 38px 0; }
  .buy-beta-inner { display: block; }
  .buy-beta h2 { font-size: 39px; }
  .buy-beta p { margin-bottom: 22px; font-size: 18px; }
  .buy-beta .button-light { width: 100%; }
  .edition-guide-grid { display: block; }
  .edition-guide-grid p { font-size: 18px; }
  .edition-guide-grid .text-link { display: inline-block; margin-top: 22px; }
}
@media (max-width: 420px) { :lang(de) .hero h1 { font-size: 46px; }.hero-actions { display: grid; }.hero-actions .button { width: 100%; }.steps { --step-gap: 3px; }.step-number { width: 31px; height: 31px; font-size: 14px; }.step-icon { width: 44px; height: 44px; border-radius: 12px; }.step-icon svg { width: 22px; height: 22px; }.step p { font-size: 12px; }.dev-actions { grid-template-columns: 1fr; }.hero-ribbon p, .native-band p { font-size: 16px; } }
@media (max-width: 340px) { :lang(de) .hero h1 { font-size: 38px; } }
@media (max-width: 420px) { .sequential-heading { align-items: flex-start; flex-direction: column; }.sequential-meta { white-space: normal; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; } }

/* Document pages share the landing page's typography and palette while giving
   long-form copy a quieter, readable frame. */
.document-page { min-height: 100vh; }
.document-main { padding: 156px 0 96px; }
.document-shell { width: min(1100px, calc(100% - 88px)); margin-inline: auto; }
.document-header { max-width: 820px; margin-bottom: 46px; }
.document-header, .document-article { overflow-wrap: anywhere; }
.document-header h1 { max-width: 900px; margin-bottom: 18px; font-size: clamp(48px, 6vw, 78px); }
.document-header p { max-width: 720px; margin-bottom: 0; color: var(--muted); font-size: 20px; }
.document-status { display: inline-flex; margin-bottom: 20px !important; padding: 7px 11px; border: 1px solid #e0b8ae; border-radius: 999px; background: #fff6f0; color: var(--coral-dark) !important; font-size: 13px !important; font-weight: 700; letter-spacing: .02em; }
.document-layout { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 66px; align-items: start; }
.document-aside { position: sticky; top: 28px; }
.document-aside h2 { margin-bottom: 14px; font-size: 18px; letter-spacing: -.02em; }
.document-aside nav { display: grid; gap: 8px; }
.document-aside a { padding: 3px 0; color: var(--muted); font-size: 14px; text-decoration: none; }
.document-aside a:hover { color: var(--coral); }
.document-contact { margin-top: 26px; padding: 16px; border-radius: 12px; background: var(--surface); color: var(--muted); font-size: 14px; }
.document-contact strong { display: block; margin-bottom: 4px; color: var(--ink); }
.document-contact a, .document-article a { color: var(--coral-dark); text-underline-offset: 3px; }
.document-article { min-width: 0; padding: 38px 44px 44px; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); box-shadow: 0 14px 34px rgb(33 29 25 / 7%); }
.document-article h2 { margin: 34px 0 12px; font-size: clamp(27px, 3vw, 38px); line-height: 1.06; }
.document-article h2:first-child { margin-top: 0; }
.document-article h3 { margin: 25px 0 8px; font-size: 20px; }
.document-article p { margin-bottom: 16px; color: #3f4143; }
.document-article ul, .document-article ol { display: grid; gap: 9px; margin: 0 0 20px; padding-left: 23px; color: #3f4143; }
.document-article li::marker { color: var(--coral); }
.document-callout { margin: 22px 0; padding: 19px 21px; border: 1px solid #efc1b8; border-radius: 12px; background: #fff2ec; }
.document-callout p:last-child { margin-bottom: 0; }
.document-meta { margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }
.document-footer { padding-top: 0; }
.document-footer .footer-inner { padding-top: 18px; }
.support-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin: 22px 0 28px; }
.support-card { padding: 22px; border: 1px solid var(--line); border-radius: 15px; background: #fffdf9; }
.support-card h3 { margin-top: 0; }
.support-card p:last-child { margin-bottom: 0; }

@media (max-width: 780px) {
  .document-main { padding: 122px 0 70px; }
  .document-shell { width: min(100% - 40px, 680px); }
  .document-header { margin-bottom: 30px; }
  .document-header h1 { font-size: 48px; }
  .document-header p { font-size: 18px; }
  .document-layout { display: block; }
  .document-aside { position: static; margin-bottom: 24px; }
  .document-aside nav { display: flex; flex-wrap: wrap; gap: 8px 16px; border-left: 0; }
  .document-aside a { padding: 0; }
  .document-contact { display: none; }
  .document-article { padding: 28px 23px 30px; border-radius: 16px; }
  .document-article h2 { font-size: 32px; }
  .support-grid { grid-template-columns: 1fr; }
}
