:root {
    color-scheme: light;
    --page: #f5f7fb;
    --surface: #ffffff;
    --surface-soft: #edf1f7;
    --surface-strong: #e3e8f1;
    --ink: #111827;
    --ink-soft: #536078;
    --line: #d8deea;
    --line-strong: #c6cfdd;
    --blue: #2f70ed;
    --blue-hover: #245fce;
    --blue-soft: #e6efff;
    --teal: #169b83;
    --teal-soft: #def6ef;
    --amber: #c78520;
    --amber-soft: #fff1d7;
    --rose: #c84f70;
    --rose-soft: #fde7ee;
    --violet: #7454d6;
    --violet-soft: #eee9ff;
    --green: #17825f;
    --green-soft: #e3f5ec;
    --shadow: 0 18px 52px rgba(23, 34, 56, 0.12);
    --shadow-soft: 0 10px 30px rgba(23, 34, 56, 0.07);
    --header-bg: rgba(255, 255, 255, 0.94);
    --hero-overlay: rgba(8, 13, 22, 0.76);
    --hero-ink: #ffffff;
    --hero-soft: #cbd5e6;
    --dark-band: #0b111b;
    --dark-surface: #141c29;
    --dark-line: #28354a;
    --dark-soft: #aebbd0;
}

:root[data-theme="dark"] {
    color-scheme: dark;
    --page: #0b1018;
    --surface: #121924;
    --surface-soft: #192230;
    --surface-strong: #222d3d;
    --ink: #f5f7fb;
    --ink-soft: #aab7ca;
    --line: #2a3545;
    --line-strong: #3a4658;
    --blue: #4c8dff;
    --blue-hover: #74a6ff;
    --blue-soft: #182b4d;
    --teal: #39c6aa;
    --teal-soft: #123c36;
    --amber: #e0a542;
    --amber-soft: #44341a;
    --rose: #e36e91;
    --rose-soft: #452332;
    --violet: #9a83ef;
    --violet-soft: #30294f;
    --green: #48c99a;
    --green-soft: #173a30;
    --shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
    --shadow-soft: 0 12px 34px rgba(0, 0, 0, 0.22);
    --header-bg: rgba(11, 16, 24, 0.94);
}

* {
    box-sizing: border-box;
    letter-spacing: 0;
}

html {
    max-width: 100%;
    overflow-x: clip;
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
}

body {
    margin: 0;
    max-width: 100%;
    overflow-x: clip;
    background: var(--page);
    color: var(--ink);
    font-family: "Segoe UI Variable Text", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.58;
    -webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.8;
}

.page-shell {
    width: min(1540px, calc(100% - 64px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    min-height: 68px;
    width: 100%;
    padding: 10px max(24px, calc((100vw - 1540px) / 2));
    border-bottom: 1px solid var(--line);
    background: var(--header-bg);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 650;
    white-space: nowrap;
}

.brand img,
.footer-brand img {
    border-radius: 8px;
    box-shadow: 0 7px 18px rgba(35, 94, 200, 0.2);
}

.site-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    color: var(--ink-soft);
    font-size: 14px;
}

.site-nav a {
    transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--ink);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-button {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--surface);
    color: var(--ink-soft);
    cursor: pointer;
    transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.icon-button:hover,
.icon-button:focus-visible {
    border-color: var(--line-strong);
    background: var(--surface-soft);
    color: var(--ink);
}

.nav-toggle {
    display: none;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 10px 18px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.2;
    cursor: pointer;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button:disabled {
    cursor: not-allowed;
    opacity: 0.56;
    transform: none;
}

.button-primary {
    background: var(--blue);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(47, 112, 237, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--blue-hover);
}

.button-secondary {
    border-color: var(--line-strong);
    background: var(--surface);
    color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    background: var(--surface-soft);
}

.button-glass {
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    backdrop-filter: blur(12px);
}

.button-glass:hover,
.button-glass:focus-visible {
    border-color: rgba(255, 255, 255, 0.56);
    background: rgba(255, 255, 255, 0.16);
}

.button-large {
    min-height: 50px;
    padding-inline: 22px;
    font-size: 15px;
}

.button-compact {
    min-height: 40px;
    padding-inline: 16px;
}

.hero {
    position: relative;
    min-height: 760px;
    max-height: 880px;
    overflow: hidden;
    background: #080d15;
    color: var(--hero-ink);
}

.hero-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 24%;
    opacity: 0.62;
    filter: saturate(0.88) contrast(1.03);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--hero-overlay);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 760px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-block: 104px 126px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 18px;
    color: #b9c7dc;
    font-size: 13px;
    font-weight: 650;
    text-transform: uppercase;
}

.eyebrow-dark {
    color: var(--blue);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #35d6a5;
    box-shadow: 0 0 0 5px rgba(53, 214, 165, 0.12);
}

.hero h1,
.simple-hero h1 {
    margin: 0;
    font-size: 74px;
    font-weight: 720;
    line-height: 1.02;
}

.hero-lead {
    max-width: 770px;
    margin: 22px 0 0;
    font-size: 28px;
    font-weight: 560;
    line-height: 1.25;
}

.hero-copy {
    max-width: 700px;
    margin: 20px 0 0;
    color: var(--hero-soft);
    font-size: 17px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 32px;
    color: #d9e1ed;
    font-size: 14px;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-trust svg {
    width: 17px;
    height: 17px;
    color: #53d5b0;
}

.hero-caption {
    position: absolute;
    z-index: 2;
    right: 28px;
    bottom: 20px;
    margin: 0;
    color: rgba(255, 255, 255, 0.56);
    font-size: 12px;
}

.proof-strip {
    border-bottom: 1px solid var(--line);
    background: var(--surface);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.proof-grid > div {
    display: flex;
    min-height: 116px;
    flex-direction: column;
    justify-content: center;
    padding: 24px 34px;
    border-right: 1px solid var(--line);
}

.proof-grid > div:first-child {
    border-left: 1px solid var(--line);
}

.proof-grid strong {
    font-size: 27px;
    line-height: 1;
}

.proof-grid span {
    margin-top: 9px;
    color: var(--ink-soft);
    font-size: 13px;
}

.section {
    padding-block: 104px;
}

.section-heading {
    margin-bottom: 42px;
}

.section-heading h2,
.media-copy h2,
.privacy-layout h2,
.closing-layout h2,
.checkout-status h2,
.download-notes h2 {
    margin: 0;
    font-size: 42px;
    font-weight: 690;
    line-height: 1.14;
}

.section-heading > p,
.heading-split > p,
.centered-heading > p,
.media-copy > p,
.privacy-layout > div > p,
.simple-hero > p,
.checkout-status > p,
.channel-card > p {
    color: var(--ink-soft);
}

.heading-split {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    align-items: end;
    gap: 80px;
}

.heading-split > p {
    margin: 0 0 5px;
    max-width: 600px;
}

.centered-heading {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
}

.centered-heading .eyebrow {
    justify-content: center;
}

.centered-heading > p:last-child {
    margin: 16px auto 0;
}

.tour-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    overflow-x: auto;
    scrollbar-width: none;
}

.tour-tabs::-webkit-scrollbar {
    display: none;
}

.tour-tab {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    padding: 9px 15px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--surface);
    color: var(--ink-soft);
    font-size: 14px;
    white-space: nowrap;
    cursor: pointer;
}

.tour-tab:hover,
.tour-tab:focus-visible {
    border-color: var(--line-strong);
    color: var(--ink);
}

.tour-tab.is-active {
    border-color: var(--blue);
    background: var(--blue-soft);
    color: var(--blue);
}

.tour-tab svg {
    width: 17px;
    height: 17px;
}

.product-stage {
    position: relative;
    overflow: hidden;
    margin: 0;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    background: #151b24;
    box-shadow: var(--shadow);
}

.window-bar {
    display: flex;
    align-items: center;
    height: 42px;
    gap: 7px;
    padding-inline: 15px;
    border-bottom: 1px solid #2e3948;
    background: #111721;
}

.window-bar span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #4c5868;
}

.window-bar span:first-child {
    background: #d45d71;
}

.window-bar span:nth-child(2) {
    background: #d9a248;
}

.window-bar span:nth-child(3) {
    background: #3eb493;
}

.window-bar b {
    margin-left: 8px;
    color: #cbd4e1;
    font-size: 12px;
    font-weight: 540;
}

.product-stage img {
    width: 100%;
    aspect-ratio: 1920 / 1040;
    object-fit: cover;
    transition: opacity 180ms ease;
}

.product-stage img.is-switching {
    opacity: 0.38;
}

.product-stage figcaption {
    position: absolute;
    right: 16px;
    bottom: 14px;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 5px;
    background: rgba(8, 13, 20, 0.82);
    color: #dce4ef;
    font-size: 12px;
}

.feature-section {
    border-block: 1px solid var(--line);
    background: var(--surface);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.feature-card {
    min-height: 260px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--page);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    border-color: var(--line-strong);
    box-shadow: var(--shadow-soft);
}

.feature-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 7px;
    background: var(--blue-soft);
    color: var(--blue);
}

.feature-card h3 {
    margin: 48px 0 10px;
    font-size: 20px;
    line-height: 1.25;
}

.feature-card p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 14px;
}

.accent-teal .feature-icon {
    background: var(--teal-soft);
    color: var(--teal);
}

.accent-amber .feature-icon {
    background: var(--amber-soft);
    color: var(--amber);
}

.accent-rose .feature-icon {
    background: var(--rose-soft);
    color: var(--rose);
}

.accent-violet .feature-icon {
    background: var(--violet-soft);
    color: var(--violet);
}

.accent-green .feature-icon {
    background: var(--green-soft);
    color: var(--green);
}

.media-band {
    display: grid;
    grid-template-columns: minmax(340px, 0.7fr) minmax(520px, 1.3fr);
    align-items: center;
    gap: 68px;
}

.media-copy > p {
    margin: 18px 0 0;
}

.check-list,
.pricing-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 26px 0 0;
    list-style: none;
}

.check-list li,
.pricing-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--ink-soft);
    font-size: 14px;
}

.check-list svg,
.pricing-list svg {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    color: var(--teal);
}

.media-figure {
    overflow: hidden;
    margin: 0;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    background: #111721;
    box-shadow: var(--shadow-soft);
}

.media-figure img {
    width: 100%;
    aspect-ratio: 1920 / 1040;
    object-fit: cover;
}

.privacy-band {
    padding-block: 76px;
    border-block: 1px solid var(--dark-line);
    background: var(--dark-band);
    color: #f5f7fb;
}

.privacy-layout {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
}

.privacy-mark {
    display: grid;
    place-items: center;
    width: 70px;
    height: 70px;
    border: 1px solid #244b46;
    border-radius: 8px;
    background: #12312e;
    color: #4cd6b4;
}

.privacy-mark svg {
    width: 32px;
    height: 32px;
}

.privacy-layout h2 {
    font-size: 36px;
}

.privacy-layout > div > p:last-child {
    max-width: 820px;
    margin: 12px 0 0;
    color: var(--dark-soft);
}

.pricing-heading {
    max-width: 820px;
}

.access-path {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.access-step {
    display: grid;
    grid-template-columns: auto 1fr;
    min-height: 146px;
    gap: 16px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

.access-step > span {
    display: grid;
    place-items: center;
    width: 36px;
    height: 28px;
    border-radius: 5px;
    background: var(--surface-soft);
    color: var(--ink-soft);
    font-size: 12px;
    font-weight: 700;
}

.access-step strong {
    font-size: 17px;
}

.access-step p {
    margin: 8px 0 0;
    color: var(--ink-soft);
    font-size: 13px;
}

.access-step-featured {
    border-color: var(--blue);
    background: var(--blue-soft);
}

.access-step-featured > span {
    background: var(--blue);
    color: #ffffff;
}

.pricing-card {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) auto minmax(320px, 1fr) auto;
    align-items: center;
    gap: 34px;
    padding: 34px;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.pricing-summary h3 {
    margin: 0;
    font-size: 25px;
}

.pricing-summary > p:last-child {
    margin: 10px 0 0;
    color: var(--ink-soft);
    font-size: 13px;
}

.price-block {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    white-space: nowrap;
}

.price {
    font-size: 44px;
    font-weight: 720;
    line-height: 0.9;
}

.currency {
    color: var(--ink-soft);
    font-size: 12px;
    line-height: 1.25;
}

.pricing-card .pricing-list {
    margin: 0;
}

.pricing-button {
    white-space: nowrap;
}

.pricing-note {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    color: var(--ink-soft);
    font-size: 12px;
}

.pricing-note svg {
    width: 16px;
    height: 16px;
    color: var(--teal);
}

.faq-section {
    padding-top: 48px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.faq-grid details {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

.faq-grid summary {
    position: relative;
    padding: 20px 50px 20px 20px;
    font-size: 15px;
    font-weight: 650;
    cursor: pointer;
    list-style: none;
}

.faq-grid summary::-webkit-details-marker {
    display: none;
}

.faq-grid summary::after {
    position: absolute;
    top: 20px;
    right: 20px;
    content: "+";
    color: var(--ink-soft);
    font-size: 20px;
    line-height: 1;
}

.faq-grid details[open] summary::after {
    content: "−";
}

.faq-grid details p {
    margin: 0;
    padding: 0 20px 20px;
    color: var(--ink-soft);
    font-size: 14px;
}

.closing-band {
    padding-block: 72px;
    border-top: 1px solid var(--dark-line);
    background: var(--dark-band);
    color: #ffffff;
}

.closing-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.closing-layout h2 {
    max-width: 820px;
    font-size: 38px;
}

.closing-actions {
    display: flex;
    gap: 10px;
    white-space: nowrap;
}

.site-footer {
    padding: 42px max(32px, calc((100vw - 1540px) / 2));
    border-top: 1px solid var(--line);
    background: var(--surface);
}

.footer-main,
.footer-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 13px;
}

.footer-brand div {
    display: flex;
    flex-direction: column;
}

.footer-brand span,
.footer-meta {
    color: var(--ink-soft);
    font-size: 12px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    color: var(--ink-soft);
    font-size: 13px;
}

.footer-links a:hover {
    color: var(--ink);
}

.footer-meta {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.simple-hero {
    padding-block: 108px 52px;
}

.simple-hero h1 {
    max-width: 980px;
    font-size: 58px;
}

.simple-hero > p:last-child {
    max-width: 720px;
    margin: 22px 0 0;
    font-size: 17px;
}

.checkout-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.75fr) minmax(400px, 1.25fr);
    gap: 16px;
    padding-bottom: 112px;
}

.checkout-offer,
.checkout-status,
.channel-card,
.legal-block {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

.checkout-offer,
.checkout-status {
    min-height: 390px;
    padding: 34px;
}

.offer-label {
    display: inline-flex;
    padding: 6px 9px;
    border-radius: 5px;
    background: var(--blue-soft);
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.checkout-offer .price-block {
    margin-top: 70px;
}

.checkout-status {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.status-icon,
.channel-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 7px;
    background: var(--amber-soft);
    color: var(--amber);
}

.checkout-status h2 {
    margin-top: 24px;
    font-size: 30px;
}

.checkout-status > p {
    max-width: 600px;
    margin: 14px 0 24px;
}

.text-link {
    margin-top: 18px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 650;
}

.channel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding-bottom: 32px;
}

.channel-card {
    display: flex;
    min-height: 390px;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
}

.channel-primary {
    border-color: var(--blue);
}

.channel-icon {
    margin-bottom: 32px;
    background: var(--blue-soft);
    color: var(--blue);
}

.channel-icon-teal {
    background: var(--teal-soft);
    color: var(--teal);
}

.channel-card h2 {
    margin: 16px 0 0;
    font-size: 30px;
}

.channel-card > p {
    max-width: 500px;
    margin: 12px 0 28px;
}

.channel-card .button {
    margin-top: auto;
}

.download-notes {
    padding-block: 54px 110px;
}

.download-notes h2 {
    font-size: 30px;
}

.note-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.note-grid > div {
    display: flex;
    gap: 14px;
    padding: 22px;
    border-top: 1px solid var(--line-strong);
}

.note-grid svg {
    flex: 0 0 auto;
    color: var(--blue);
}

.note-grid span {
    display: flex;
    flex-direction: column;
    color: var(--ink-soft);
    font-size: 13px;
}

.note-grid strong {
    margin-bottom: 5px;
    color: var(--ink);
    font-size: 14px;
}

.legal-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding-bottom: 110px;
}

.legal-block {
    min-height: 230px;
    padding: 28px;
}

.legal-block h2 {
    margin: 0;
    font-size: 22px;
}

.legal-block p {
    color: var(--ink-soft);
}

.legal-block .button {
    margin-top: 10px;
}

.error-page {
    min-height: calc(100vh - 245px);
}

.error-page code {
    display: block;
    margin: 22px 0;
    color: var(--ink-soft);
}

.error-page .button {
    align-self: flex-start;
}

@media (max-width: 1180px) {
    .site-nav {
        gap: 20px;
    }

    .hero h1,
    .simple-hero h1 {
        font-size: 60px;
    }

    .pricing-card {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pricing-button {
        justify-self: stretch;
    }

    .media-band {
        grid-template-columns: 1fr;
    }

    .media-copy {
        max-width: 760px;
    }
}

@media (max-width: 920px) {
    .page-shell {
        width: calc(100% - 36px);
        max-width: 1540px;
    }

    .site-header {
        grid-template-columns: 1fr auto auto;
        padding-inline: 18px;
    }

    .nav-toggle {
        display: inline-grid;
        grid-column: 2;
        grid-row: 1;
    }

    .site-nav {
        position: absolute;
        top: 62px;
        right: 18px;
        left: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--surface);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 12px;
        border-radius: 5px;
    }

    .site-nav a:hover {
        background: var(--surface-soft);
    }

    .header-actions {
        grid-column: 3;
        grid-row: 1;
    }

    .hero,
    .hero-content {
        min-height: 680px;
    }

    .hero-content {
        padding-block: 86px 112px;
    }

    .proof-grid,
    .feature-grid,
    .access-path,
    .note-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .heading-split {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .feature-card {
        min-height: 230px;
    }

    .privacy-layout {
        grid-template-columns: auto 1fr;
    }

    .privacy-layout .button {
        grid-column: 2;
        justify-self: start;
    }

    .closing-layout {
        align-items: flex-start;
        flex-direction: column;
    }

    .checkout-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    body {
        font-size: 15px;
    }

    .site-header {
        min-height: 62px;
    }

    .brand span {
        display: none;
    }

    .brand img {
        width: 36px;
        height: 36px;
    }

    .header-actions .button {
        display: none;
    }

    .hero,
    .hero-content {
        min-height: 640px;
    }

    .hero-background {
        object-position: 26% center;
    }

    .hero-content {
        padding-block: 78px 100px;
    }

    .hero h1,
    .simple-hero h1 {
        width: 100%;
        max-width: 100%;
        font-size: 42px;
        overflow-wrap: anywhere;
    }

    .hero-lead {
        width: 100%;
        max-width: 100%;
        font-size: 23px;
        overflow-wrap: anywhere;
    }

    .hero-copy {
        width: 100%;
        max-width: 100%;
        font-size: 15px;
        overflow-wrap: anywhere;
    }

    .hero-actions,
    .hero-actions .button,
    .closing-actions,
    .closing-actions .button {
        width: 100%;
    }

    .hero-actions,
    .closing-actions {
        max-width: 100%;
        flex-direction: column;
    }

    .hero-trust {
        width: 100%;
        max-width: 100%;
        gap: 12px;
        flex-direction: column;
    }

    .hero-caption {
        display: none;
    }

    .proof-grid,
    .feature-grid,
    .access-path,
    .faq-grid,
    .channel-grid,
    .note-grid,
    .legal-content {
        grid-template-columns: 1fr;
    }

    .proof-grid > div,
    .proof-grid > div:first-child {
        min-height: 90px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
        border-left: 0;
    }

    .section {
        padding-block: 76px;
    }

    .section-heading h2,
    .media-copy h2,
    .privacy-layout h2,
    .closing-layout h2 {
        font-size: 32px;
    }

    .feature-card {
        min-height: 210px;
    }

    .feature-card h3 {
        margin-top: 34px;
    }

    .product-stage figcaption {
        display: none;
    }

    .media-band {
        gap: 34px;
    }

    .privacy-layout {
        grid-template-columns: 1fr;
    }

    .privacy-layout .button {
        grid-column: 1;
    }

    .pricing-card {
        grid-template-columns: 1fr;
        padding: 26px;
    }

    .pricing-note {
        justify-content: flex-start;
    }

    .footer-main,
    .footer-meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .simple-hero {
        padding-block: 76px 40px;
    }

    .checkout-offer,
    .checkout-status,
    .channel-card {
        min-height: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
