:root {
    color-scheme: dark;
    --bg: #05070a;
    --bg-soft: #090d13;
    --surface: #0e1218;
    --surface-strong: #141923;
    --border: #202733;
    --border-soft: #171d27;
    --text: #f2f4f7;
    --muted: #a8b1bd;
    --muted-strong: #d0d6df;
    --blue: #3f82f6;
    --blue-soft: rgba(63, 130, 246, 0.14);
    --green: #4bb878;
    --green-soft: rgba(75, 184, 120, 0.14);
    --amber: #f4b955;
    --red: #ee6a5f;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
    --radius: 14px;
    --max: 1180px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body {
    margin: 0;
    background:
        linear-gradient(180deg, rgba(63, 130, 246, 0.08) 0%, transparent 26rem),
        linear-gradient(180deg, #05070a 0%, #070a0f 48%, #05070a 100%);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
    line-height: 1.5;
}

body::before {
    position: fixed;
    inset: 0;
    pointer-events: none;
    content: "";
    background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 100% 96px;
    opacity: 0.24;
}

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

a {
    color: inherit;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    transform: translateY(-140%);
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    background: var(--surface-strong);
    color: var(--text);
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--shadow);
}

.skip-link:focus {
    transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(63, 130, 246, 0.75);
    outline-offset: 4px;
    border-radius: 8px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    width: min(var(--max), calc(100% - 48px));
    margin: 0 auto;
    padding: 18px 0;
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: linear-gradient(145deg, #4b8cff, #346fe8);
    box-shadow: 0 12px 28px rgba(63, 130, 246, 0.3);
}

.brand-mark span {
    width: 3px;
    height: 9px;
    border-radius: 999px;
    background: #fff;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 28px;
    color: var(--muted);
    font-size: 0.94rem;
}

.site-nav a,
.footer-links a {
    text-decoration: none;
    transition: color 160ms ease;
}

.site-nav a:hover,
.footer-links a:hover {
    color: var(--text);
}

.site-header > .button {
    justify-self: end;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: linear-gradient(180deg, #4b8cff, #3675eb);
    color: #fff;
    font-weight: 650;
    text-decoration: none;
    box-shadow: 0 16px 40px rgba(63, 130, 246, 0.28);
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.18);
}

.button-small {
    min-height: 40px;
    padding: 0 18px;
    font-size: 0.92rem;
}

.button-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    box-shadow: none;
}

main {
    overflow: hidden;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(440px, 0.88fr);
    align-items: center;
    gap: 40px;
    width: min(var(--max), calc(100% - 48px));
    min-height: calc(100svh - 72px);
    margin: 0 auto;
    padding: 62px 0 84px;
}

.hero-copy {
    max-width: 720px;
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    margin: 0 0 16px;
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--muted-strong);
    font-size: 0.78rem;
    font-weight: 600;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 20px;
    max-width: 760px;
    background: linear-gradient(180deg, #fff 0%, #dce4ef 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: clamp(3rem, 4.25vw, 4.45rem);
    line-height: 1.04;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 14px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 8px;
    font-size: 1.02rem;
}

.hero-sub,
.section-heading p,
.split p,
.support-band p,
.footer-brand p {
    color: var(--muted);
    font-size: 1.08rem;
}

.hero-sub {
    max-width: 610px;
    margin-bottom: 28px;
    line-height: 1.62;
}

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

.hero-microcopy {
    margin: 0 0 22px;
    color: var(--muted-strong);
    font-size: 0.92rem;
    font-weight: 650;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin: 0;
    padding: 0;
    color: var(--muted);
    font-size: 0.9rem;
    list-style: none;
}

.hero-points li {
    position: relative;
    padding-left: 14px;
}

.hero-points li::before {
    position: absolute;
    top: 0.62em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--green);
    content: "";
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-visual::before {
    position: absolute;
    inset: 10% 0 8% 12%;
    border: 1px solid rgba(63, 130, 246, 0.12);
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(63, 130, 246, 0.08), rgba(75, 184, 120, 0.035));
    content: "";
}

.hero-product-card {
    position: relative;
    z-index: 1;
    width: min(100%, 520px);
    margin: 0;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.022)),
        rgba(11, 15, 21, 0.9);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.hero-product-card::after {
    position: absolute;
    right: 12%;
    bottom: -1px;
    left: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(75, 184, 120, 0.36), transparent);
    content: "";
}

.hero-product-frame {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.085);
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
        #070a0f;
}

.hero-product-frame video,
.hero-product-frame img {
    display: block;
    width: 100%;
    max-height: min(68vh, 720px);
    object-fit: contain;
    object-position: center;
}

.product-video {
    background: #070a0f;
}

.product-video-fallback {
    display: none;
}

.product-label {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(5, 7, 10, 0.68);
    color: var(--muted-strong);
    font-size: 0.78rem;
    font-weight: 700;
    backdrop-filter: blur(14px);
}

.product-badge {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 2;
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 0 12px;
    border: 1px solid rgba(75, 184, 120, 0.22);
    border-radius: 999px;
    background: rgba(9, 18, 14, 0.72);
    color: #b8e5c7;
    font-size: 0.78rem;
    font-weight: 760;
    backdrop-filter: blur(14px);
}

.hero-product-card figcaption {
    margin: 14px 4px 2px;
    color: var(--muted-strong);
    font-size: 0.94rem;
    text-align: center;
}

.section {
    width: min(var(--max), calc(100% - 48px));
    margin: 0 auto;
    padding: 96px 0;
}

.section-tight {
    padding-top: 72px;
}

.problem-section {
    padding-top: 44px;
}

.section-heading {
    max-width: 680px;
    margin: 0 auto 44px;
    text-align: center;
}

.section-heading-left {
    margin-right: 0;
    margin-left: 0;
    text-align: left;
}

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

.feature-grid-wide {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.price-card,
.app-list,
.faq-list details,
.support-band {
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    background: rgba(14, 18, 24, 0.76);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.card {
    padding: 24px;
}

.problem-grid,
.use-case-grid,
.pro-grid,
.trust-grid {
    display: grid;
    gap: 16px;
}

.problem-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.use-case-grid,
.trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pro-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-section {
    padding-top: 76px;
}

.before-after {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    max-width: 940px;
    margin: 0 auto;
}

.state-panel {
    padding: 24px;
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.016)),
        rgba(14, 18, 24, 0.78);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.state-panel-after {
    border-color: rgba(75, 184, 120, 0.24);
    background:
        linear-gradient(180deg, rgba(75, 184, 120, 0.075), rgba(255, 255, 255, 0.016)),
        rgba(14, 18, 24, 0.78);
}

.state-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 52px;
    border-top: 1px solid var(--border-soft);
    color: var(--muted-strong);
}

.state-row strong {
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 680;
    text-align: right;
}

.state-row.paused strong,
.state-row.active strong {
    color: #91d4aa;
}

.proof-note {
    max-width: 620px;
    margin: 18px auto 0;
    color: var(--muted-strong);
    font-size: 0.94rem;
    font-weight: 650;
    text-align: center;
}

.product-proof {
    padding-top: 84px;
}

.spotlight-layout,
.proof-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    align-items: center;
    gap: 48px;
}

.spotlight-copy,
.proof-copy {
    max-width: 560px;
}

.spotlight-copy > p,
.proof-copy > p {
    color: var(--muted);
    font-size: 1.08rem;
}

.spotlight-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.spotlight-list article {
    padding: 18px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    background: rgba(14, 18, 24, 0.62);
}

.spotlight-list p {
    margin-bottom: 0;
    color: var(--muted);
}

.proof-points {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.proof-points article {
    padding: 20px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    background: rgba(14, 18, 24, 0.62);
}

.proof-points p {
    margin-bottom: 0;
    color: var(--muted);
}

.proof-frame {
    position: relative;
    margin: 0;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
        rgba(14, 18, 24, 0.72);
    box-shadow: var(--shadow);
}

.proof-frame img {
    width: min(100%, 496px);
    margin: 0 auto;
    border-radius: 22px;
    aspect-ratio: 726 / 1130;
    object-fit: contain;
}

.proof-frame figcaption {
    margin-top: 14px;
    color: var(--muted);
    font-size: 0.82rem;
    text-align: center;
}

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

.step-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 18px;
    border: 1px solid rgba(63, 130, 246, 0.24);
    border-radius: 12px;
    background: rgba(63, 130, 246, 0.1);
    color: #91b8ff;
    font-size: 0.82rem;
    font-weight: 760;
}

.trust-split {
    padding-top: 76px;
}

.pro-spotlight .card,
.trust-section .card,
.use-cases-section .card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.014)),
        rgba(14, 18, 24, 0.76);
}

.control-note {
    max-width: 520px;
    margin: 24px auto 0;
    padding: 14px 18px;
    border: 1px solid rgba(75, 184, 120, 0.18);
    border-radius: 999px;
    background: rgba(75, 184, 120, 0.07);
    color: var(--muted-strong);
    font-weight: 720;
    text-align: center;
}

.plan-note {
    min-height: 48px;
    margin-bottom: 18px;
    color: var(--muted-strong);
}
.card p,
.price-card li,
.faq-list p {
    color: var(--muted);
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
    align-items: center;
    gap: 44px;
}

.app-list {
    overflow: hidden;
    padding: 8px;
}

.app-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 58px;
    padding: 0 18px;
    border-bottom: 1px solid var(--border-soft);
    color: var(--muted-strong);
}

.app-row:last-child {
    border-bottom: 0;
}

.app-row strong {
    color: var(--muted);
    font-size: 0.86rem;
}

.app-row.active strong {
    color: var(--green);
}

.pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 820px;
    margin: 0 auto;
}

.price-card {
    padding: 28px;
}

.price-card-pro {
    border-color: rgba(63, 130, 246, 0.42);
    box-shadow: 0 24px 80px rgba(63, 130, 246, 0.13);
}

.price {
    margin-bottom: 18px;
    color: var(--text);
    font-size: 2.4rem;
    font-weight: 760;
}

.price-card ul {
    display: grid;
    gap: 10px;
    min-height: 132px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.price-card li {
    position: relative;
    padding-left: 20px;
}

.price-card li::before {
    position: absolute;
    top: 0.62em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--green);
    content: "";
}

.faq-section {
    max-width: 840px;
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-list details {
    padding: 0;
}

.faq-list summary {
    cursor: pointer;
    padding: 18px 20px;
    font-weight: 680;
}

.faq-list p {
    margin: 0;
    padding: 0 20px 20px;
}

.support-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 34px;
}

.final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 44px;
    border: 1px solid var(--border-soft);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(63, 130, 246, 0.12), rgba(75, 184, 120, 0.06)),
        rgba(14, 18, 24, 0.76);
    box-shadow: var(--shadow);
}

.final-cta h2 {
    max-width: 740px;
}

.final-cta p:not(.eyebrow) {
    max-width: 620px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1.08rem;
}

.final-actions {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 12px;
    min-width: 300px;
}

.final-actions .hero-microcopy {
    margin-bottom: 0;
    text-align: right;
}

.support-band p {
    max-width: 620px;
    margin-bottom: 0;
}

.site-footer {
    border-top: 1px solid var(--border-soft);
    padding: 42px 24px 32px;
    background: rgba(5, 7, 10, 0.78);
}

.footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    width: min(var(--max), 100%);
    margin: 0 auto;
}

.footer-brand p {
    max-width: 360px;
    margin: 14px 0 0;
    font-size: 0.95rem;
}

.footer-actions {
    display: grid;
    justify-items: end;
    gap: 12px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    color: var(--muted);
    font-size: 0.95rem;
}

.footer-links-primary {
    color: var(--muted-strong);
}

.footer-links-legal {
    gap: 16px;
    color: #7e8794;
    font-size: 0.86rem;
}

.footer-meta {
    width: min(var(--max), 100%);
    margin: 28px auto 0;
    color: #7e8794;
    font-size: 0.85rem;
}

.page-shell {
    width: min(920px, calc(100% - 48px));
    margin: 0 auto;
    padding: 82px 0 112px;
}

.page-shell-wide {
    width: min(var(--max), calc(100% - 48px));
}

.page-shell-compact {
    width: min(720px, calc(100% - 48px));
    padding-top: 58px;
}

.page-hero {
    max-width: 720px;
    margin-bottom: 42px;
}

.page-hero-centered {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.page-title {
    margin-bottom: 18px;
    font-size: clamp(2.6rem, 6vw, 4.35rem);
    line-height: 1;
}

.page-lede {
    max-width: 660px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1.12rem;
}

.page-hero-centered .page-lede {
    margin-right: auto;
    margin-left: auto;
}

.page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.page-hero-centered .page-actions {
    justify-content: center;
}

.content-panel,
.checkout-card,
.legal-card,
.quiet-callout,
.support-card,
.anchor-list {
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
        rgba(14, 18, 24, 0.78);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.2);
}

.content-panel,
.checkout-card,
.legal-card {
    padding: 34px;
}

.checkout-card {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    grid-template-areas:
        "summary details"
        "assurance details"
        "button details"
        "fine details";
    align-items: start;
    gap: 24px;
    overflow: hidden;
}

.checkout-card > div {
    grid-area: summary;
}

.checkout-card .check-list {
    grid-area: details;
}

.checkout-card .checkout-assurance {
    grid-area: assurance;
}

.checkout-card .checkout-button {
    grid-area: button;
}

.checkout-card .fine-print {
    grid-area: fine;
}

.card-label {
    margin-bottom: 10px;
    color: var(--muted-strong);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
}

.checkout-card h2,
.content-panel h2,
.quiet-callout h2,
.support-card h2,
.legal-card h2 {
    margin-bottom: 12px;
    font-size: clamp(1.45rem, 3vw, 2rem);
    line-height: 1.12;
}

.checkout-price {
    margin: 0;
    color: var(--text);
    font-size: 3rem;
    font-weight: 780;
    line-height: 1;
}

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

.check-list li,
.price-card li {
    position: relative;
}

.check-list li {
    padding-left: 24px;
    color: var(--muted-strong);
}

.check-list li::before {
    position: absolute;
    top: 0.48em;
    left: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green);
    content: "";
}

.checkout-button {
    width: 100%;
}

.fine-print,
.support-note,
.checkout-assurance {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.checkout-assurance {
    padding: 14px 16px;
    border: 1px solid rgba(75, 184, 120, 0.16);
    border-radius: 14px;
    background: rgba(75, 184, 120, 0.06);
    color: var(--muted-strong);
}

.buy-pro-followup,
.buy-pro-faq {
    margin-top: 18px;
}

.step-list {
    counter-reset: steps;
}

.step-list li {
    position: relative;
    min-height: 68px;
    padding: 0 0 18px 54px;
    border-bottom: 1px solid var(--border-soft);
    counter-increment: steps;
}

.step-list li:last-child {
    min-height: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.step-list li::before {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(63, 130, 246, 0.24);
    border-radius: 12px;
    background: rgba(63, 130, 246, 0.1);
    color: #91b8ff;
    content: counter(steps);
    font-size: 0.82rem;
    font-weight: 760;
}

.step-list strong,
.step-list span {
    display: block;
}

.step-list strong {
    margin-bottom: 4px;
    color: var(--text);
}

.step-list span,
.quiet-callout p,
.support-card p,
.legal-card p {
    color: var(--muted);
}

.quiet-callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: 18px;
    padding: 28px;
}

.quiet-callout p {
    max-width: 620px;
    margin-bottom: 0;
}

.support-note {
    margin-top: 20px;
    text-align: center;
}

.support-note-left {
    max-width: 680px;
    text-align: left;
}

.support-start {
    margin-bottom: 24px;
}

.support-start h2 {
    margin-bottom: 14px;
    font-size: clamp(1.45rem, 3vw, 2rem);
    line-height: 1.12;
}

.support-note a,
.fine-print a,
.legal-card a,
.text-link {
    color: #91b8ff;
    text-decoration: none;
}

.support-note a:hover,
.fine-print a:hover,
.legal-card a:hover,
.text-link:hover {
    color: var(--text);
}

.anchor-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    padding: 12px;
}

.anchor-list a {
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--muted-strong);
    font-size: 0.9rem;
    text-decoration: none;
}

.anchor-list a:hover {
    background: rgba(255, 255, 255, 0.055);
    color: var(--text);
}

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

.support-section {
    scroll-margin-top: 96px;
    margin-top: 48px;
}

.support-section:first-of-type {
    margin-top: 32px;
}

.support-card {
    padding: 26px;
    scroll-margin-top: 96px;
}

.support-card p {
    margin-bottom: 14px;
}

.support-card p:last-child {
    margin-bottom: 0;
}

.support-checklist {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    margin: 18px 0;
    padding: 0;
    list-style: none;
}

.support-checklist li {
    position: relative;
    padding-left: 20px;
    color: var(--muted-strong);
}

.support-checklist li::before {
    position: absolute;
    top: 0.62em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--green);
    content: "";
}

.legal-card {
    display: grid;
    gap: 18px;
    line-height: 1.68;
}

.legal-card h2 {
    margin: 10px 0 -4px;
}

.legal-card h2:first-child {
    margin-top: 0;
}

.legal-card p {
    margin: 0;
}

@media (max-width: 860px) {
    .site-header {
        grid-template-columns: 1fr auto;
        width: min(var(--max), calc(100% - 32px));
        gap: 14px 18px;
    }

    .site-nav {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: center;
        gap: 22px;
        order: 3;
    }

    .hero,
    .split,
    .proof-layout,
    .spotlight-layout {
        grid-template-columns: 1fr;
    }

    .hero {
        width: min(var(--max), calc(100% - 32px));
        min-height: auto;
        padding-top: 46px;
    }

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

    h1 {
        max-width: 760px;
        font-size: clamp(3.05rem, 8vw, 4.6rem);
        line-height: 1.03;
    }

    .hero-visual {
        justify-content: center;
    }

    .hero-product-card {
        width: min(100%, 520px);
    }

    .section {
        width: min(var(--max), calc(100% - 32px));
        padding: 72px 0;
    }

    .feature-grid,
    .problem-grid,
    .use-case-grid,
    .pro-grid,
    .trust-grid,
    .pricing-grid,
    .step-grid,
    .before-after {
        grid-template-columns: 1fr;
    }

    .spotlight-list {
        grid-template-columns: 1fr;
    }

    .price-card ul {
        min-height: auto;
    }

    .support-band,
    .final-cta,
    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .final-actions {
        align-items: flex-start;
        justify-content: flex-start;
        min-width: 0;
    }

    .final-actions .hero-microcopy {
        text-align: left;
    }

    .footer-actions {
        justify-items: start;
    }

    .footer-links {
        justify-content: flex-start;
    }

    .page-shell,
    .page-shell-wide,
    .page-shell-compact {
        width: min(var(--max), calc(100% - 32px));
        padding: 64px 0 88px;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }

    .support-checklist {
        grid-template-columns: 1fr;
    }

    .checkout-card {
        grid-template-columns: 1fr;
        grid-template-areas:
            "summary"
            "assurance"
            "button"
            "fine"
            "details";
    }

    .quiet-callout {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .hero {
        gap: 36px;
        padding-bottom: 64px;
    }

    h1 {
        font-size: clamp(2.75rem, 11.5vw, 4rem);
        line-height: 1.05;
    }

    .hero-product-card {
        padding: 14px;
        border-radius: 26px;
    }

    .hero-product-frame video,
    .hero-product-frame img {
        max-height: 680px;
    }
}

@media (max-width: 520px) {
    .site-header {
        gap: 14px;
    }

    .site-header > .button {
        min-height: 36px;
        padding: 0 13px;
        font-size: 0.86rem;
    }

    h1 {
        font-size: clamp(2.48rem, 12.4vw, 3.55rem);
        line-height: 1.06;
    }

    .hero-sub {
        font-size: 1rem;
        line-height: 1.58;
    }

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

    .hero-points {
        display: grid;
        gap: 8px;
    }

    .hero-product-frame video,
    .hero-product-frame img {
        max-height: 620px;
    }

    .product-label {
        top: 10px;
        left: 10px;
        min-height: 28px;
        font-size: 0.74rem;
    }

    .product-badge {
        right: 10px;
        bottom: 10px;
        min-height: 28px;
        font-size: 0.72rem;
    }

    .support-band {
        padding: 24px;
    }

    .final-cta {
        padding: 28px;
    }

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

    .content-panel,
    .checkout-card,
    .legal-card,
    .quiet-callout,
    .support-card {
        padding: 24px;
    }

    .page-actions,
    .page-actions .button,
    .quiet-callout .button {
        width: 100%;
    }

    .anchor-list {
        display: grid;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 430px) {
    .site-header,
    .hero,
    .section,
    .page-shell,
    .page-shell-wide,
    .page-shell-compact {
        width: min(var(--max), calc(100% - 24px));
    }

    .site-nav {
        justify-content: flex-start;
        gap: 18px;
    }

    .hero {
        padding-top: 34px;
    }

    h1 {
        font-size: clamp(2.34rem, 11.7vw, 3.18rem);
    }

    .eyebrow {
        font-size: 0.72rem;
        line-height: 1.25;
    }

    .hero-points {
        font-size: 0.86rem;
    }

    .hero-product-card {
        padding: 12px;
    }

    .hero-product-frame video,
    .hero-product-frame img {
        max-height: 560px;
    }

    .state-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
        padding: 12px 0;
    }

    .state-row strong {
        text-align: left;
    }

    .checkout-price {
        font-size: 2.55rem;
    }
}

@media (max-width: 390px) {
    .brand {
        gap: 8px;
        font-size: 1rem;
    }

    .brand-mark {
        width: 30px;
        height: 30px;
        border-radius: 9px;
    }

    .site-header > .button {
        padding: 0 11px;
    }

    h1 {
        font-size: clamp(2.22rem, 11.2vw, 3rem);
    }

    .page-title {
        font-size: clamp(2.25rem, 11.5vw, 3.15rem);
    }

    .content-panel,
    .checkout-card,
    .legal-card,
    .quiet-callout,
    .support-card {
        padding: 22px;
    }

    .footer-links {
        gap: 12px 16px;
    }
}

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

    .product-video {
        display: none;
    }

    .product-video-fallback {
        display: block;
    }
}
