@font-face {
    font-family: "Satoshi";
    src: url("../fonts/Satoshi-Variable.woff2") format("woff2");
    font-weight: 300 900;
    font-style: normal;
    font-display: swap;
}

:root {
    color-scheme: light;
    --bg: #f5f2ea;
    --paper: #faf7f0;
    --panel: #fdf9f2;
    --ink: #07111f;
    --muted: #5a6572;
    --quiet: #8a9299;
    --line: rgba(40, 28, 8, 0.1);
    --line-strong: rgba(40, 28, 8, 0.18);
    --sage: #d9edbd;
    --green: #2f8b5b;
    --blue: #8bc2d5;
    --violet: #786ea5;
    --shadow: 0 36px 110px rgba(40, 47, 55, 0.13);
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --card-dome: rgba(255, 255, 255, 0.3);
    --card-diag: rgba(255, 255, 255, 0.1);
    --card-rim: rgba(255, 255, 255, 0.58);
    --annual-glow: rgba(184, 173, 221, 0.36);
    --annual-rim: rgba(210, 204, 252, 0.76);
    --glow-x: 90%;
    --glow-y: 2%;
}

[data-theme="dark"] {
    color-scheme: dark;
    --bg: #07110f;
    --paper: #0d1714;
    --panel: #101c19;
    --ink: #f7f3ea;
    --muted: #aeb8ab;
    --quiet: #7d887c;
    --line: rgba(247, 243, 234, 0.13);
    --line-strong: rgba(247, 243, 234, 0.24);
    --sage: #d9edbd;
    --green: #7fc28d;
    --blue: #91c9d8;
    --violet: #786ea5;
    --shadow: 0 40px 120px rgba(0, 0, 0, 0.42);
    --card-dome: rgba(255, 255, 255, 0.11);
    --card-diag: rgba(255, 255, 255, 0.05);
    --card-rim: rgba(255, 255, 255, 0.26);
    --annual-glow: rgba(184, 173, 221, 0.22);
    --annual-rim: rgba(210, 204, 252, 0.4);
}

/* ── Dark Reader
Attempt to use dark styles when the extension's color runs */
@media (prefers-color-scheme: dark) {
    :root {
        color-scheme: dark;
        --bg: #07110f;
        --paper: #0d1714;
        --panel: #101c19;
        --ink: #f7f3ea;
        --muted: #aeb8ab;
        --quiet: #7d887c;
        --line: rgba(247, 243, 234, 0.13);
        --line-strong: rgba(247, 243, 234, 0.24);
        --sage: #d9edbd;
        --green: #7fc28d;
        --blue: #91c9d8;
        --violet: #786ea5;
        --shadow: 0 40px 120px rgba(0, 0, 0, 0.42);
        --card-dome: rgba(255, 255, 255, 0.11);
        --card-diag: rgba(255, 255, 255, 0.05);
        --card-rim: rgba(255, 255, 255, 0.26);
        --annual-glow: rgba(184, 173, 221, 0.22);
        --annual-rim: rgba(210, 204, 252, 0.4);
    }
}

html[data-darkreader-scheme="dark"],
[data-darkreader-scheme="dark"] :root {
    color-scheme: dark !important;
    --bg: #07110f !important;
    --paper: #0d1714 !important;
    --panel: #101c19 !important;
    --ink: #f7f3ea !important;
    --muted: #aeb8ab !important;
    --quiet: #7d887c !important;
    --line: rgba(247, 243, 234, 0.13) !important;
    --line-strong: rgba(247, 243, 234, 0.24) !important;
    --sage: #d9edbd !important;
    --green: #7fc28d !important;
    --blue: #91c9d8 !important;
    --violet: #786ea5 !important;
    --shadow: 0 40px 120px rgba(0, 0, 0, 0.42) !important;
    --card-dome: rgba(255, 255, 255, 0.11) !important;
    --card-diag: rgba(255, 255, 255, 0.05) !important;
    --card-rim: rgba(255, 255, 255, 0.26) !important;
    --annual-glow: rgba(184, 173, 221, 0.22) !important;
    --annual-rim: rgba(210, 204, 252, 0.4) !important;
}

* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background:
        radial-gradient(
            circle at 78% 8%,
            color-mix(in srgb, var(--blue) 22%, transparent),
            transparent 28rem
        ),
        radial-gradient(
            circle at 6% 18%,
            color-mix(in srgb, var(--sage) 30%, transparent),
            transparent 24rem
        ),
        var(--bg);
    color: var(--ink);
    font-family: "Satoshi", system-ui, sans-serif;
    letter-spacing: -0.025em;
}

a {
    color: inherit;
    text-decoration: none;
}
img {
    display: block;
    max-width: 100%;
}
.wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}
.nav {
    position: sticky;
    top: 0;
    z-index: 40;
    min-height: 74px;
    padding: 18px 28px 0;
    display: flex;
    align-items: center;
    gap: 28px;
    background: linear-gradient(
        to bottom,
        color-mix(in srgb, var(--bg) 100%, transparent),
        transparent
    );
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    line-height: 1;
    margin-right: auto;
}
.brand-mark {
    display: block;
    flex: 0 0 auto;
}
.brand-wordmark {
    font-family: "Satoshi", system-ui, sans-serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    font-size: 13px;
    font-weight: 760;
}
.nav-links a {
    color: var(--muted);
    transition:
        color 0.45s var(--ease),
        transform 0.45s var(--ease);
}
.nav-links a:hover {
    color: var(--ink);
    transform: translateY(-1px);
}
.menu {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink);
    background: color-mix(in srgb, var(--panel) 80%, transparent);
    cursor: pointer;
    display: none;
    position: relative;
}
.menu i {
    display: block;
    width: 17px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    margin: 5px auto;
    transition:
        transform 0.5s var(--ease),
        opacity 0.5s var(--ease);
}
.menu.open i:first-child {
    transform: translateY(7px) rotate(45deg);
}
.menu.open i:last-child {
    transform: translateY(-7px) rotate(-45deg);
}

.btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 8px 8px 8px 20px;
    border-radius: 999px;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: var(--bg);
    font-weight: 820;
    cursor: pointer;
    box-shadow: 0 18px 54px color-mix(in srgb, var(--ink) 16%, transparent);
    transition:
        transform 0.62s var(--ease),
        box-shadow 0.62s var(--ease),
        background 0.62s var(--ease);
}
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 28px 70px color-mix(in srgb, var(--ink) 20%, transparent);
}
.btn span {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: color-mix(in srgb, var(--bg) 92%, transparent);
    color: var(--ink);
    transition: transform 0.62s var(--ease);
}
.btn:hover span {
    transform: translate(3px, -2px) scale(1.04);
}
.btn.quiet {
    color: var(--ink);
    background: color-mix(in srgb, var(--panel) 78%, transparent);
    border-color: var(--line-strong);
    box-shadow: none;
}
.btn.quiet span {
    color: var(--bg);
    background: var(--ink);
}
.btn.small {
    min-height: 44px;
    padding-left: 18px;
    font-size: 13px;
}
.btn.small span {
    width: 30px;
    height: 30px;
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 35;
    padding: 110px 28px;
    background: color-mix(in srgb, var(--bg) 88%, transparent);
    backdrop-filter: blur(28px);
}
.mobile-menu.open {
    display: block;
}
.mobile-menu a {
    display: block;
    font-size: clamp(40px, 11vw, 76px);
    font-weight: 850;
    line-height: 1;
    letter-spacing: -0.06em;
    padding: 16px 0;
    animation: menuIn 0.72s var(--ease) both;
}
@keyframes menuIn {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
}

.hero {
    display: grid;
    align-items: start;
    padding: clamp(8px, 3.4vh, 12px) 0 8px;
}
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(520px, 1.06fr);
    gap: 48px;
    align-items: center;
}
.hero-copy {
    max-width: 680px;
    padding-top: 0;
}
.kicker,
.card-label {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 10px;
    font-weight: 850;
    color: var(--green);
}
.hero .kicker {
    margin: 0 0 10px;
}
.hero h1 {
    font-family: "Libre Baskerville", Georgia, serif;
    font-size: clamp(60px, 10vw, 76px);
    line-height: 0.82;
    letter-spacing: -0.055em;
    margin: 18px 0 24px;
    font-weight: 400;
}
.hero h1 strong {
    color: var(--violet);
    font-weight: 600;
    opacity: 0.84;
}
.lede {
    max-width: 64ch;
    color: var(--muted);
    font-size: clamp(18px, 1.5vw, 22px);
    line-height: 1.56;
    text-wrap: pretty;
}
.hero-cta-cluster {
    max-width: 620px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 30px 0 14px;
}
.hero-support {
    margin-top: 0;
    max-width: 64ch;
    padding: 12px 0 0;
    border-top: 1px solid
        color-mix(in srgb, var(--line-strong) 72%, var(--sage));
    border-left: none;
    position: relative;
}
.hero-support-copy {
    margin: 0;
    display: grid;
    gap: 4px;
}
.hero-support-title {
    display: block;
    color: var(--ink);
    font-family: "Satoshi", system-ui, sans-serif;
    font-size: clamp(16px, 1.12vw, 18px);
    line-height: 1.18;
    letter-spacing: -0.04em;
    font-weight: 780;
}
.hero-support-body {
    display: block;
    max-width: none;
    color: var(--muted);
    font-size: clamp(13px, 0.92vw, 14px);
    line-height: 1.5;
    text-wrap: pretty;
}
@media (min-width: 981px) {
    .hero-copy {
        padding-top: 6px;
    }
    .hero-support {
        max-width: 64ch;
        padding-top: 10px;
    }
    .hero-support-title {
        font-size: clamp(15px, 1vw, 16.5px);
    }
    .hero-support-body {
        font-size: clamp(12px, 0.82vw, 13.25px);
        line-height: 1.48;
    }
}
.trust-strip {
    display: flex;
    gap: 8px 20px;
    flex-wrap: wrap;
    color: var(--quiet);
    font-size: 12px;
    font-weight: 650;
}
.trust-strip span::before {
    content: "";
    width: 5px;
    height: 5px;
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
    background: #7a6bb2;
}
.hero-visual {
    position: relative;
    margin-right: -12px;
    padding-top: 18px;
}
.hero-visual::before {
    content: "";
    position: absolute;
    inset: 28px 4% 24px 4%;
    border-radius: 58px;
    background:
        radial-gradient(
            circle at 12% 78%,
            color-mix(in srgb, var(--violet) 18%, transparent),
            transparent 28%
        ),
        radial-gradient(
            circle at 82% 26%,
            color-mix(in srgb, var(--sage) 26%, transparent),
            transparent 24%
        ),
        radial-gradient(
            circle at 78% 76%,
            color-mix(in srgb, var(--blue) 20%, transparent),
            transparent 26%
        ),
        linear-gradient(
            180deg,
            color-mix(in srgb, white 52%, var(--panel) 48%),
            color-mix(in srgb, var(--paper) 90%, transparent)
        );
    border: 1px solid color-mix(in srgb, white 42%, var(--line));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.52),
        0 30px 84px color-mix(in srgb, var(--ink) 7%, transparent);
    pointer-events: none;
}
.device-shell {
    position: relative;
    z-index: 1;
    border-radius: 48px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    transform: translateX(4px) scale(1.01);
    transform-origin: center right;
}
.device-shell img {
    border-radius: 40px;
}
.quote-chip {
    position: absolute;
    z-index: 2;
    left: 34px;
    top: 54px;
    max-width: 198px;
    padding: 10px 12px;
    border-radius: 20px;
    background: var(--panel);
    border: 1px solid color-mix(in srgb, white 42%, var(--line));
    box-shadow:
        0 18px 42px color-mix(in srgb, var(--ink) 8%, transparent),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transform: rotate(-4deg);
    font-family: "Libre Baskerville", Georgia, serif;
    font-size: 16px;
    line-height: 0.98;
    text-wrap: balance;
}

.feature-ribbon {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    margin: 6px 0;
}

.ribbon-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: marquee 28s linear infinite;
}
.ribbon-track span {
    padding: 18px 46px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 760;
    white-space: nowrap;
    border-right: 1px solid var(--line);
}
@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}

.section {
    padding: clamp(10px, 4vw + 1rem, 40px) 0;
}

.split-heading {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 56px;
}
h2 {
    font-family: "Libre Baskerville", Georgia, serif;
    font-size: clamp(40px, 6vw, 66px);
    line-height: 0.92;
    letter-spacing: -0.055em;
    margin: 0;
    font-weight: 400;
}

h2 strong {
    font-family: "Libre Baskerville", Georgia, serif;
    font-weight: 600;
    color: var(--violet);
}

.split-heading p,
.body {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}

.bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-flow: dense;
    gap: 16px;
}
.card {
    grid-column: span 4;
    min-height: 330px;
    padding: 34px;
    border-radius: 34px;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--panel) 88%, transparent);
    box-shadow: 0 22px 80px color-mix(in srgb, var(--ink) 7%, transparent);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition:
        transform 0.68s var(--ease),
        border-color 0.68s var(--ease);
}
.card:hover {
    transform: translateY(-8px);
    border-color: var(--line-strong);
}
.card.large {
    grid-column: span 8;
    grid-row: span 2;
    min-height: 676px;
}
.card.wide {
    grid-column: span 8;
    min-height: 260px;
}
.card h3 {
    font-size: clamp(30px, 3.3vw, 54px);
    line-height: 0.95;
    letter-spacing: -0.055em;
    margin: 12px 0 16px;
}
.card p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.55;
}
.card img {
    border-radius: 26px;
    border: 1px solid var(--line);
}

.customization-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
    align-items: center;
    gap: 28px;
    min-height: 232px;
}

.customization-copy {
    max-width: 36rem;
}

.customization-copy h3 {
    max-width: 12ch;
}

.customization-copy p:last-child {
    margin-bottom: 0;
}

.customization-visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.customization-visual img {
    width: min(100%, 440px);
    border-radius: 22px;
    box-shadow: 0 18px 44px rgba(7, 17, 15, 0.08);
}

.dark-panel {
    background:
        radial-gradient(
            circle at 84% 12%,
            rgba(145, 201, 216, 0.16),
            transparent 26rem
        ),
        #07110f;
    color: #f7f3ea;
}
.dark-panel .kicker {
    color: #d9edbd;
}
.dark-panel .body,
.dark-panel li {
    color: #aeb8ab;
}
.pro-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 54px;
    align-items: center;
}
.pro-grid h2 {
    max-width: 720px;
}
.check-list {
    list-style: none;
    padding: 0;
    margin: 32px 0;
    display: grid;
    gap: 12px;
}
.check-list li::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #d9edbd;
    display: inline-block;
    margin-right: 12px;
}
.pro-card {
    padding: 8px;
    border-radius: 38px;
    border: 1px solid rgba(247, 243, 234, 0.15);
    background: rgba(247, 243, 234, 0.05);
}
.pro-card img {
    border-radius: 30px;
}

.science-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 52px;
    align-items: center;
}
.science-copy h2 {
    max-width: 720px;
}
.science-visual {
    border-radius: 38px;
    padding: 8px;
    background: color-mix(in srgb, var(--panel) 74%, transparent);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.science-visual img {
    border-radius: 30px;
}
.source-grid {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}
.source {
    padding: 28px;
    border-radius: 28px;
    background: color-mix(in srgb, var(--panel) 88%, transparent);
    border: 1px solid var(--line);
}
.source h3 {
    margin: 0 0 12px;
    font-size: 24px;
    letter-spacing: -0.045em;
}
.source p {
    color: var(--muted);
    line-height: 1.55;
}
.source a {
    color: var(--green);
    font-weight: 800;
    border-bottom: 1px solid currentColor;
}

.reviews {
    padding-top: clamp(48px, 5vw, 72px);
}
.big-quote {
    max-width: 1000px;
    margin: 0 auto 50px;
    text-align: center;
    font-family: "Libre Baskerville", Georgia, serif;
    font-style: italic;
    font-size: clamp(38px, 5vw, 74px);
    line-height: 1.02;
    color: #786ea5;
}
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.review {
    padding: 24px;
    border-radius: 26px;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--panel) 86%, transparent);
}
.review strong {
    font-size: 20px;
}
.review p {
    color: var(--muted);
}

.pricing {
}
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 14px;
    align-items: start;
}

.price {
    padding: 32px;
    border-radius: 32px;
    background:
        radial-gradient(
            ellipse 90% 52% at 50% -10%,
            var(--card-dome) 0%,
            transparent 65%
        ),
        linear-gradient(152deg, var(--card-diag) 0%, transparent 32%),
        var(--panel);
    border: 1px solid var(--line);
    box-shadow:
        inset 0 1px 0 var(--card-rim),
        inset 1px 0 0 color-mix(in srgb, white 13%, transparent),
        inset -1px 0 0 color-mix(in srgb, white 13%, transparent),
        inset 0 36px 56px -28px color-mix(in srgb, white 12%, transparent),
        inset 0 -2px 10px color-mix(in srgb, black 8%, transparent),
        0 1px 2px rgba(7, 17, 15, 0.06),
        0 6px 18px rgba(7, 17, 15, 0.06),
        0 18px 52px rgba(7, 17, 15, 0.09);
    position: relative;
    overflow: hidden;
    transition:
        transform 440ms var(--ease),
        box-shadow 440ms var(--ease);
}
/* Hairline center top rim */
.price::before {
    content: "";
    position: absolute;
    top: 0;
    left: 18%;
    right: 18%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        color-mix(in srgb, white 68%, transparent) 35%,
        color-mix(in srgb, white 68%, transparent) 65%,
        transparent
    );
    pointer-events: none;
}
.price:hover {
    transform: translateY(-4px);
    box-shadow:
        inset 0 1px 0 var(--card-rim),
        inset 1px 0 0 color-mix(in srgb, white 10%, transparent),
        inset -1px 0 0 color-mix(in srgb, white 10%, transparent),
        inset 0 -2px 8px color-mix(in srgb, black 7%, transparent),
        0 2px 4px rgba(7, 17, 15, 0.07),
        0 10px 28px rgba(7, 17, 15, 0.08),
        0 30px 72px rgba(7, 17, 15, 0.13);
}

.price.annual {
    padding: 36px 32px;
    background-color: var(--panel);
    /* 2 layer: tracked hotspot + fixed ambient */
    background-image:
        radial-gradient(
            ellipse at var(--glow-x) var(--glow-y),
            rgba(184, 173, 221, 0.36) 0%,
            rgba(184, 173, 221, 0.12) 44%,
            transparent 80%
        ),
        radial-gradient(
            ellipse 130% 70% at 82% 0%,
            rgba(184, 173, 221, 0.1) 0%,
            transparent 62%
        );
    border-color: color-mix(in srgb, rgba(184, 173, 221, 1) 44%, var(--line));
    box-shadow:
        inset 0 1px 0 var(--annual-rim),
        inset 1px 0 0 rgba(184, 173, 221, 0.2),
        inset -1px 0 0 rgba(184, 173, 221, 0.2),
        inset 0 36px 56px -28px rgba(210, 204, 252, 0.22),
        inset 0 -2px 10px rgba(0, 0, 0, 0.07),
        0 1px 2px rgba(7, 17, 15, 0.04),
        0 6px 18px rgba(7, 17, 15, 0.06),
        0 22px 60px rgba(7, 17, 15, 0.1);
    transition:
        transform 440ms var(--ease),
        box-shadow 440ms var(--ease);
}

.price.free {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E")
            0 0 / 200px 200px,
        radial-gradient(
            ellipse 90% 52% at 50% -10%,
            var(--card-dome) 0%,
            transparent 65%
        ),
        linear-gradient(152deg, var(--card-diag) 0%, transparent 32%),
        radial-gradient(
            ellipse at 10% 94%,
            color-mix(in srgb, var(--sage) 22%, transparent) 0%,
            transparent 58%
        ),
        radial-gradient(
            ellipse at 88% 88%,
            color-mix(in srgb, var(--sage) 10%, transparent) 0%,
            transparent 46%
        ),
        var(--panel);
    border-color: color-mix(in srgb, var(--sage) 22%, var(--line));
}

.price.annual::after,
.price.free::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 560ms var(--ease);
    pointer-events: none;
}
.price.annual::after {
    background: radial-gradient(
        ellipse at 60% 20%,
        rgba(184, 173, 221, 0.2) 0%,
        rgba(184, 173, 221, 0.06) 48%,
        transparent 72%
    );
}

.price.annual.wide {
    padding: 36px 40px;
}

.price.free::after {
    background: radial-gradient(
        ellipse at 40% 75%,
        color-mix(in srgb, var(--sage) 14%, transparent) 0%,
        transparent 50%
    );
}
.price.annual:hover::after,
.price.free:hover::after {
    opacity: 1;
}

[data-theme="dark"] .price {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.26),
        inset 1px 0 0 rgba(255, 255, 255, 0.07),
        inset -1px 0 0 rgba(255, 255, 255, 0.07),
        inset 0 36px 56px -28px rgba(255, 255, 255, 0.08),
        inset 0 -2px 10px rgba(0, 0, 0, 0.22),
        0 1px 2px rgba(0, 0, 0, 0.14),
        0 6px 18px rgba(0, 0, 0, 0.18),
        0 18px 52px rgba(0, 0, 0, 0.28);
}
[data-theme="dark"] .price::before {
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.28) 35%,
        rgba(255, 255, 255, 0.28) 65%,
        transparent
    );
}
[data-theme="dark"] .price.annual {
    background-color: #101c19 !important;
    background-image:
        radial-gradient(
            ellipse at var(--glow-x) var(--glow-y),
            rgba(184, 173, 221, 0.22) 0%,
            rgba(184, 173, 221, 0.08) 44%,
            transparent 80%
        ),
        radial-gradient(
            ellipse 130% 70% at 82% 0%,
            rgba(184, 173, 221, 0.08) 0%,
            transparent 62%
        ) !important;
    box-shadow:
        inset 0 1px 0 rgba(210, 204, 252, 0.4),
        inset 1px 0 0 rgba(184, 173, 221, 0.16),
        inset -1px 0 0 rgba(184, 173, 221, 0.16),
        inset 0 36px 56px -28px rgba(210, 204, 252, 0.18),
        inset 0 -2px 10px rgba(0, 0, 0, 0.22),
        0 1px 2px rgba(0, 0, 0, 0.14),
        0 6px 18px rgba(0, 0, 0, 0.18),
        0 18px 52px rgba(0, 0, 0, 0.28) !important;
}
[data-theme="dark"] .price.free {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E")
            0 0 / 200px 200px,
        radial-gradient(
            ellipse 90% 52% at 50% -10%,
            rgba(255, 255, 255, 0.11) 0%,
            transparent 65%
        ),
        linear-gradient(152deg, rgba(255, 255, 255, 0.05) 0%, transparent 32%),
        radial-gradient(
            ellipse at 10% 92%,
            rgba(217, 237, 189, 0.15) 0%,
            transparent 52%
        ),
        var(--panel);
}

[data-theme="dark"] .price:hover {
    transform: translateY(-4px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.36),
        inset 1px 0 0 rgba(255, 255, 255, 0.1),
        inset -1px 0 0 rgba(255, 255, 255, 0.1),
        inset 0 36px 56px -28px rgba(255, 255, 255, 0.11),
        inset 0 -2px 10px rgba(0, 0, 0, 0.22),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 16px 44px rgba(0, 0, 0, 0.38),
        0 36px 88px rgba(0, 0, 0, 0.44);
}
[data-theme="dark"] .price.annual:hover {
    box-shadow:
        inset 0 1px 0 rgba(210, 204, 252, 0.54),
        inset 1px 0 0 rgba(184, 173, 221, 0.2),
        inset -1px 0 0 rgba(184, 173, 221, 0.2),
        inset 0 36px 56px -28px rgba(210, 204, 252, 0.24),
        inset 0 -2px 10px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(184, 173, 221, 0.28),
        0 4px 12px rgba(0, 0, 0, 0.28),
        0 16px 44px rgba(0, 0, 0, 0.36),
        0 36px 88px rgba(184, 173, 221, 0.14);
}
[data-theme="dark"] .price.free:hover {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.36),
        inset 1px 0 0 rgba(255, 255, 255, 0.1),
        inset -1px 0 0 rgba(255, 255, 255, 0.1),
        inset 0 36px 56px -28px rgba(217, 237, 189, 0.14),
        inset 0 -2px 10px rgba(0, 0, 0, 0.22),
        0 0 0 1px rgba(217, 237, 189, 0.22),
        0 4px 12px rgba(0, 0, 0, 0.28),
        0 16px 44px rgba(0, 0, 0, 0.36),
        0 36px 88px rgba(217, 237, 189, 0.08);
}
/* Bloom ::after */
[data-theme="dark"] .price.annual::after {
    background: radial-gradient(
        ellipse at 60% 20%,
        rgba(184, 173, 221, 0.34) 0%,
        rgba(184, 173, 221, 0.1) 48%,
        transparent 72%
    );
}
[data-theme="dark"] .price.free::after {
    background: radial-gradient(
        ellipse at 40% 75%,
        rgba(217, 237, 189, 0.24) 0%,
        transparent 50%
    );
}

@media (prefers-color-scheme: dark) {
    .price {
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.26),
            inset 1px 0 0 rgba(255, 255, 255, 0.07),
            inset -1px 0 0 rgba(255, 255, 255, 0.07),
            inset 0 36px 56px -28px rgba(255, 255, 255, 0.08),
            inset 0 -2px 10px rgba(0, 0, 0, 0.22),
            0 1px 2px rgba(0, 0, 0, 0.14),
            0 6px 18px rgba(0, 0, 0, 0.18),
            0 18px 52px rgba(0, 0, 0, 0.28) !important;
    }
    .price::before {
        background: linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.28) 35%,
            rgba(255, 255, 255, 0.28) 65%,
            transparent
        );
    }
    .price.annual {
        background-color: #101c19 !important;
        background-image:
            radial-gradient(
                ellipse at var(--glow-x) var(--glow-y),
                rgba(184, 173, 221, 0.22) 0%,
                rgba(184, 173, 221, 0.08) 44%,
                transparent 80%
            ),
            radial-gradient(
                ellipse 130% 70% at 82% 0%,
                rgba(184, 173, 221, 0.08) 0%,
                transparent 62%
            ) !important;
        box-shadow:
            inset 0 1px 0 rgba(210, 204, 252, 0.4),
            inset 1px 0 0 rgba(184, 173, 221, 0.16),
            inset -1px 0 0 rgba(184, 173, 221, 0.16),
            inset 0 36px 56px -28px rgba(210, 204, 252, 0.18),
            inset 0 -2px 10px rgba(0, 0, 0, 0.22),
            0 1px 2px rgba(0, 0, 0, 0.14),
            0 6px 18px rgba(0, 0, 0, 0.18),
            0 18px 52px rgba(0, 0, 0, 0.28) !important;
    }
    .price.free {
        background:
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E")
                0 0 / 200px 200px,
            radial-gradient(
                ellipse 90% 52% at 50% -10%,
                rgba(255, 255, 255, 0.11) 0%,
                transparent 65%
            ),
            linear-gradient(
                152deg,
                rgba(255, 255, 255, 0.05) 0%,
                transparent 32%
            ),
            radial-gradient(
                ellipse at 10% 92%,
                rgba(217, 237, 189, 0.15) 0%,
                transparent 52%
            ),
            var(--panel) !important;
    }
    .price:hover {
        transform: translateY(-4px);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.36),
            inset 1px 0 0 rgba(255, 255, 255, 0.1),
            inset -1px 0 0 rgba(255, 255, 255, 0.1),
            inset 0 36px 56px -28px rgba(255, 255, 255, 0.11),
            inset 0 -2px 10px rgba(0, 0, 0, 0.22),
            0 0 0 1px rgba(255, 255, 255, 0.1),
            0 4px 12px rgba(0, 0, 0, 0.3),
            0 16px 44px rgba(0, 0, 0, 0.38),
            0 36px 88px rgba(0, 0, 0, 0.44);
    }
    .price.annual:hover {
        box-shadow:
            inset 0 1px 0 rgba(210, 204, 252, 0.54),
            inset 1px 0 0 rgba(184, 173, 221, 0.2),
            inset -1px 0 0 rgba(184, 173, 221, 0.2),
            inset 0 36px 56px -28px rgba(210, 204, 252, 0.24),
            inset 0 -2px 10px rgba(0, 0, 0, 0.2),
            0 0 0 1px rgba(184, 173, 221, 0.28),
            0 4px 12px rgba(0, 0, 0, 0.28),
            0 16px 44px rgba(0, 0, 0, 0.36),
            0 36px 88px rgba(184, 173, 221, 0.14);
    }
    .price.free:hover {
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.36),
            inset 1px 0 0 rgba(255, 255, 255, 0.1),
            inset -1px 0 0 rgba(255, 255, 255, 0.1),
            inset 0 36px 56px -28px rgba(217, 237, 189, 0.14),
            inset 0 -2px 10px rgba(0, 0, 0, 0.22),
            0 0 0 1px rgba(217, 237, 189, 0.22),
            0 4px 12px rgba(0, 0, 0, 0.28),
            0 16px 44px rgba(0, 0, 0, 0.36),
            0 36px 88px rgba(217, 237, 189, 0.08);
    }
    .price.annual::after {
        background: radial-gradient(
            ellipse at 60% 20%,
            rgba(184, 173, 221, 0.34) 0%,
            rgba(184, 173, 221, 0.1) 48%,
            transparent 72%
        );
    }
    .price.free::after {
        background: radial-gradient(
            ellipse at 40% 75%,
            rgba(217, 237, 189, 0.24) 0%,
            transparent 50%
        );
    }
}

.price-badge {
    display: inline-flex;
    align-items: center;
    height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.annual .price-badge {
    background: color-mix(in srgb, var(--violet) 18%, transparent);
    color: var(--violet);
}
.free .price-badge {
    background: color-mix(in srgb, var(--green) 16%, transparent);
    color: var(--green);
}
.price h3 {
    font-size: clamp(26px, 2.8vw, 44px);
    line-height: 1;
    margin: 10px 0 0;
    letter-spacing: -0.05em;
}
.price strong {
    display: block;
    font-size: clamp(52px, 6vw, 84px);
    letter-spacing: -0.08em;
    margin-top: 16px;
    line-height: 1;
}
.price-period {
    display: block;
    color: var(--muted);
    font-size: 15px;
    margin-top: 2px;
}
.price-alt {
    display: block;
    color: var(--quiet);
    font-size: 13px;
    margin-top: 6px;
    font-weight: 600;
}
.price-rising {
    display: block;
    color: var(--quiet);
    font-size: 13px;
    margin-top: 6px;
    font-weight: 600;
}
.price-rising s {
    color: var(--quiet);
    opacity: 0.6;
    text-decoration-color: currentColor;
}
.price ul {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    display: grid;
    gap: 9px;
}
.price li {
    color: var(--muted);
    font-size: 15px;
    padding-left: 20px;
    position: relative;
}
.price li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 10px;
    height: 1.5px;
    border-radius: 1px;
    background: var(--green);
    opacity: 0.65;
}

.footer {
    background: #07111f;
    color: #f7f3ea;
    padding: 56px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 180px 180px;
    gap: 56px;
    align-items: start;
}
.footer-brand {
    margin-bottom: 14px;
}
.footer-brand .brand-wordmark {
    font-size: 46px;
    color: #f7f3ea;
}
.footer p {
    max-width: 420px;
    color: #aeb8ab;
}
.footer a:not(.brand) {
    display: block;
    color: #aeb8ab;
    margin-top: 9px;
}
.footer-bottom {
    margin-top: 62px;
    color: #7f8a88;
    font-size: 12px;
}

.privacy-header {
    padding: clamp(56px, 9vh, 110px) 0 clamp(48px, 6vh, 80px);
    border-bottom: 1px solid var(--line);
}
.privacy-header-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: end;
}
.privacy-title {
    font-family: "Libre Baskerville", Georgia, serif;
    font-size: clamp(54px, 7vw, 96px);
    line-height: 0.9;
    letter-spacing: -0.055em;
    margin: 16px 0 22px;
    font-weight: 400;
}
.privacy-meta {
    display: flex;
    gap: 6px 24px;
    flex-wrap: wrap;
    color: var(--quiet);
    font-size: 13px;
}
.privacy-meta span + span::before {
    content: "·";
    margin-right: 24px;
    color: var(--line-strong);
}
.privacy-summary {
    padding: 28px 32px;
    background: color-mix(in srgb, var(--panel) 88%, transparent);
    border: 1px solid var(--line);
    border-radius: 24px;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}
.privacy-summary p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
}
.privacy-pillars {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}
.privacy-pillar {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
}
.privacy-pillar::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
}
.privacy-body {
    padding: 0 0 120px;
}
.privacy-content {
    max-width: 820px;
}
.ps {
    padding: 44px 0;
    border-bottom: 1px solid var(--line);
}
.ps:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.ps-head {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 18px;
}
.ps-num {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--green);
    min-width: 18px;
}
.ps-head h2 {
    font-size: clamp(22px, 2.4vw, 30px);
    letter-spacing: -0.045em;
    line-height: 1.05;
    margin: 0;
}
.ps > p,
.ps-sub > p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 14px;
}
.ps > p:last-child,
.ps-sub > p:last-child {
    margin-bottom: 0;
}
.ps-sub {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}
.ps-sub h3 {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 0 0 12px;
}
.privacy-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 14px;
    display: grid;
    gap: 7px;
}
.privacy-list li {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.6;
    padding-left: 18px;
    position: relative;
}
.privacy-list li::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green);
    position: absolute;
    left: 1px;
    top: 0.62em;
}
.privacy-contact {
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 24px;
    background: color-mix(in srgb, var(--panel) 90%, transparent);
    border: 1px solid var(--line);
    border-radius: 16px;
    margin-top: 8px;
}
.privacy-contact strong {
    font-size: 15px;
    color: var(--ink);
}
.privacy-contact a {
    color: var(--green);
    font-size: 15px;
    font-weight: 700;
    border-bottom: 1px solid currentColor;
    display: inline;
}
.terms-link {
    color: var(--green);
    font-weight: 600;
    border-bottom: 1px solid currentColor;
}
@media (max-width: 820px) {
    .privacy-header-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .privacy-meta span + span::before {
        display: none;
    }
}
@media (max-width: 620px) {
    .privacy-body {
        padding-bottom: 80px;
    }
    .ps {
        padding: 32px 0;
    }
}

.support-header {
    padding: clamp(72px, 10vw, 120px) 0 0;
    background: linear-gradient(
        to bottom,
        color-mix(in srgb, var(--sage) 18%, transparent),
        transparent 60%
    );
}
.support-header-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.support-title {
    font-family: "Libre Baskerville", Georgia, serif;
    font-size: clamp(52px, 7vw, 88px);
    line-height: 1;
    letter-spacing: -0.03em;
    margin: 0 0 20px;
    color: var(--ink);
}
.support-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    color: var(--quiet);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 12px;
}
.support-meta span + span::before {
    content: "·";
    margin-right: 16px;
    opacity: 0.5;
}
.support-summary {
    background: color-mix(in srgb, var(--panel) 80%, transparent);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 28px 32px;
}
.support-summary p {
    margin: 0 0 18px;
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted);
}
.support-pillars {
    display: grid;
    gap: 8px;
}
.support-pillar {
    padding: 10px 14px;
    background: color-mix(in srgb, var(--sage) 30%, transparent);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 650;
    color: var(--ink);
}
.support-body {
    padding: 20px 0 20px;
}
.support-contact-banner {
    margin-bottom: 64px;
    padding: 28px 32px;
    background: color-mix(in srgb, var(--panel) 80%, transparent);
    border: 1px solid var(--line);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.support-contact-banner p {
    margin: 0;
    font-size: 16px;
    color: var(--muted);
}
.support-contact-banner strong {
    display: block;
    font-size: 17px;
    color: var(--ink);
    margin-bottom: 4px;
}
.support-contact-banner a.btn {
    flex-shrink: 0;
    white-space: nowrap;
}
.faq-category {
    margin-bottom: 64px;
}
.faq-category-title {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green);
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}
.faq-item {
    border-bottom: 1px solid var(--line);
}
.faq-item summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    cursor: pointer;
    user-select: none;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: "+";
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 300;
    color: var(--muted);
    transition:
        transform 380ms var(--ease),
        background 380ms var(--ease);
}
.faq-item[open] summary::after {
    content: "−";
    transform: rotate(180deg);
    background: color-mix(in srgb, var(--sage) 50%, transparent);
}
.faq-answer {
    padding: 0 0 24px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
}
.faq-answer p {
    margin: 0 0 12px;
}
.faq-answer p:last-child {
    margin-bottom: 0;
}
.faq-steps {
    margin: 12px 0;
    padding: 0;
    list-style: none;
    counter-reset: faq-step;
    display: grid;
    gap: 8px;
}
.faq-steps li {
    counter-increment: faq-step;
    padding: 10px 14px 10px 44px;
    background: color-mix(in srgb, var(--panel) 90%, transparent);
    border: 1px solid var(--line);
    border-radius: 10px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--ink);
    position: relative;
}
.faq-steps li::before {
    content: counter(faq-step);
    position: absolute;
    left: 14px;
    top: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--green);
    color: var(--bg);
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-note {
    margin-top: 12px;
    padding: 12px 16px;
    background: color-mix(in srgb, var(--sage) 22%, transparent);
    border-left: 3px solid var(--green);
    border-radius: 0 10px 10px 0;
    font-size: 14px;
    color: var(--muted);
}
.faq-link {
    color: var(--green);
    font-weight: 600;
    border-bottom: 1px solid currentColor;
    text-decoration: none;
}
.faq-link:hover {
    opacity: 0.75;
}
@media (max-width: 820px) {
    .support-header-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .support-meta span + span::before {
        display: none;
    }
}
@media (max-width: 620px) {
    .support-body {
        padding-bottom: 80px;
    }
    .support-contact-banner {
        flex-direction: column;
        align-items: flex-start;
    }
}

.contact-header {
    padding: clamp(72px, 10vw, 120px) 0 0;
    background: linear-gradient(
        to bottom,
        color-mix(in srgb, var(--sage) 14%, transparent),
        transparent 60%
    );
}
.contact-header-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.contact-header-title {
    margin-bottom: 32px;
}
.contact-title {
    font-family: "Libre Baskerville", Georgia, serif;
    font-size: clamp(52px, 7vw, 88px);
    line-height: 1;
    letter-spacing: -0.03em;
    margin: 0;
    color: var(--ink);
}
.contact-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    color: var(--quiet);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 12px;
}
.contact-summary {
    background: color-mix(in srgb, var(--panel) 80%, transparent);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 28px 32px;
}
.contact-summary p {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
}
.contact-summary p:last-child {
    margin-bottom: 0;
}
.contact-body {
    padding: 36px 0 120px;
}
.contact-form {
    max-width: 680px;
}
.form-section {
    margin-bottom: 40px;
}
.form-section-title {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--quiet);
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
}
.form-field {
    margin-bottom: 20px;
}
.form-field:last-child {
    margin-bottom: 0;
}
.form-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 7px;
}
.form-label .optional {
    font-weight: 500;
    color: var(--quiet);
    margin-left: 5px;
}
.form-hint {
    font-size: 13px;
    color: var(--quiet);
    margin-top: 5px;
    line-height: 1.5;
}
.form-input,
.form-select,
.form-textarea {
    width: 100%;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    background: color-mix(in srgb, var(--panel) 90%, transparent);
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    padding: 12px 16px;
    outline: none;
    transition:
        border-color 250ms,
        box-shadow 250ms;
    appearance: none;
    -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--quiet);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--green) 18%, transparent);
}
.form-input.invalid,
.form-textarea.invalid {
    border-color: #d95f5f;
    box-shadow: 0 0 0 3px rgba(217, 95, 95, 0.15);
}
.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%235a6572' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 42px;
    cursor: pointer;
}
.form-textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}
.type-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.type-pill input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.type-pill label {
    display: inline-flex;
    align-items: center;
    height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid var(--line-strong);
    font-size: 14px;
    font-weight: 650;
    color: var(--muted);
    cursor: pointer;
    transition:
        border-color 220ms,
        background 220ms,
        color 220ms;
    user-select: none;
}
.type-pill input:checked + label {
    border-color: var(--green);
    background: color-mix(in srgb, var(--sage) 45%, transparent);
    color: var(--ink);
}
.type-pill label:hover {
    border-color: var(--green);
    color: var(--ink);
}
.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.platform-check input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.platform-check label {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid var(--line-strong);
    font-size: 14px;
    font-weight: 650;
    color: var(--muted);
    cursor: pointer;
    transition:
        border-color 220ms,
        background 220ms,
        color 220ms;
}
.platform-check label::before {
    content: "";
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    border-radius: 5px;
    border: 1.5px solid var(--line-strong);
    background: transparent;
    transition:
        background 220ms,
        border-color 220ms;
}
.platform-check input:checked + label {
    border-color: var(--green);
    background: color-mix(in srgb, var(--sage) 35%, transparent);
    color: var(--ink);
}
.platform-check input:checked + label::before {
    background: var(--green);
    border-color: var(--green);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1.5 5l3 3 6-7' fill='none' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}
.form-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.turnstile-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}
.form-submit-btn {
    min-height: 52px;
    padding: 0 32px;
    border-radius: 999px;
    border: none;
    background: var(--ink);
    color: var(--bg);
    font-family: inherit;
    font-size: 16px;
    font-weight: 750;
    cursor: pointer;
    transition:
        transform 400ms var(--ease),
        box-shadow 400ms var(--ease),
        opacity 250ms;
    white-space: nowrap;
}
.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.form-submit-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.form-feedback {
    display: none;
    margin-top: 24px;
    padding: 20px 24px;
    border-radius: 16px;
    font-size: 15px;
    line-height: 1.6;
}
.form-feedback.success {
    display: block;
    background: color-mix(in srgb, var(--sage) 35%, transparent);
    border: 1px solid color-mix(in srgb, var(--green) 35%, transparent);
    color: var(--ink);
}
.form-feedback.error {
    display: block;
    background: color-mix(in srgb, #d95f5f 12%, transparent);
    border: 1px solid color-mix(in srgb, #d95f5f 35%, transparent);
    color: var(--ink);
}
.form-feedback strong {
    display: block;
    margin-bottom: 4px;
}
.type-pills-header {
    margin-top: 28px;
}
.type-pills-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--quiet);
    margin: 0 0 12px;
}
.form-placeholder {
    margin-top: 14px;
    color: var(--quiet);
    font-size: 14px;
    line-height: 1.5;
}
.form-placeholder-arrow {
    margin-right: 5px;
    opacity: 0.5;
}
@keyframes formSectionIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.form-type-section,
.form-universal,
#submitSection {
    animation: formSectionIn 0.38s var(--ease) both;
}
.billing-notice {
    padding: 14px 18px;
    background: color-mix(in srgb, var(--blue) 15%, transparent);
    border: 1px solid color-mix(in srgb, var(--blue) 30%, transparent);
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink);
    margin-bottom: 22px;
}
.billing-notice a {
    color: var(--green);
    font-weight: 600;
    border-bottom: 1px solid currentColor;
}
@media (max-width: 820px) {
    .contact-header-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
@media (max-width: 620px) {
    .contact-body {
        padding-bottom: 80px;
    }
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .form-two-col {
        grid-template-columns: 1fr;
    }
    .turnstile-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .form-submit-btn {
        width: 100%;
        justify-content: center;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(42px);
    filter: blur(8px);
}
.reveal.visible {
    animation: revealUp 0.9s var(--ease) forwards;
}
.price.annual.visible {
    animation: revealUp 0.9s var(--ease) forwards;
}
@keyframes revealUp {
    to {
        opacity: 1;
        transform: none;
        filter: blur(0);
    }
}

@media (max-width: 980px) {
    .nav-links,
    .nav .btn.small {
        display: none;
    }
    .menu {
        display: block;
    }
    .brand-wordmark {
        font-size: 26px;
    }
    .footer-brand .brand-wordmark {
        font-size: 38px;
    }
    .hero-grid,
    .split-heading,
    .pro-grid,
    .science-grid,
    .pricing-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .quote-chip {
        position: relative;
        left: auto;
        top: auto;
        margin-bottom: 14px;
        transform: rotate(-2deg);
    }
    .device-shell {
        transform: none;
    }
    .bento,
    .source-grid,
    .review-grid {
        grid-template-columns: 1fr;
    }
    .card,
    .card.large,
    .card.wide {
        grid-column: auto;
        grid-row: auto;
        min-height: auto;
    }
    .price ul {
        columns: 1;
    }
    .price.annual {
        padding: 32px;
    }
    .customization-card {
        grid-template-columns: 1fr;
        gap: 20px;
        min-height: auto;
    }
    .customization-copy,
    .customization-copy h3 {
        max-width: none;
    }
    .customization-visual {
        justify-content: flex-start;
    }
    .customization-visual img {
        width: min(100%, 420px);
    }
}

@media (max-width: 620px) {
    .wrap {
        padding: 0 16px;
    }
    .nav {
        padding: 12px 14px 0;
    }
    .hero {
        padding: 0 0 12px;
    }
    .hero-grid {
        gap: 32px;
    }
    .hero-copy {
        max-width: none;
        padding-top: 0;
    }
    .hero .kicker {
        margin-bottom: 8px;
    }
    .hero h1 {
        font-size: clamp(52px, 18vw, 92px);
        margin: 12px 0 18px;
    }
    .lede {
        max-width: none;
    }
    .hero-cta-cluster {
        max-width: none;
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        margin: 24px 0 18px;
        gap: 12px;
    }
    .hero-support {
        max-width: none;
        margin-top: 2px;
        padding: 14px 0 0;
        border-left: none;
        border-top: 1px solid
            color-mix(in srgb, var(--line-strong) 72%, var(--sage));
    }
    .hero-support-title,
    .hero-support-body {
        max-width: none;
    }
    .hero-support-copy {
        display: grid;
        gap: 6px;
    }
    .hero-support-title {
        font-size: clamp(18px, 6vw, 24px);
    }
    .hero-support-body {
        font-size: 15px;
        line-height: 1.55;
    }
    .hero-visual {
        margin-right: 0;
        padding-top: 0;
    }
    .hero-visual::before {
        inset: 52px 0 0;
        border-radius: 38px;
    }
    .split-heading {
        gap: 28px;
        margin-bottom: 32px;
    }
    #science {
        padding-bottom: 24px;
    }
    .reviews {
        padding-top: 20px;
        padding-bottom: 18px;
    }
    .big-quote {
        margin: 0 auto 28px;
    }
    .pricing {
        padding-top: 10px;
    }
    .btn {
        width: 100%;
        justify-content: space-between;
    }
    .section {
        padding: 44px 0;
    }
    .card,
    .price,
    .source {
        padding: 24px;
        border-radius: 28px;
    }
    .footer {
        padding-top: 64px;
    }
}

.product-story-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
    gap: clamp(24px, 3vw, 40px);
    align-items: start;
    background:
        radial-gradient(circle at 84% 18%, rgba(91, 140, 255, 0.12), transparent 28%),
        radial-gradient(circle at 8% 100%, rgba(127, 194, 141, 0.1), transparent 24%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 251, 0.92));
}

.product-story-card::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.48), transparent 32%);
    pointer-events: none;
}

[data-theme="dark"] .product-story-card {
    background:
        radial-gradient(circle at 84% 18%, rgba(91, 140, 255, 0.16), transparent 28%),
        radial-gradient(circle at 8% 100%, rgba(127, 194, 141, 0.09), transparent 24%),
        linear-gradient(135deg, rgba(14, 18, 27, 0.98), rgba(7, 11, 18, 0.96));
}

[data-theme="dark"] .product-story-card::before {
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 32%);
}

.product-story-copy,
.product-story-proof,
.product-story-media {
    position: relative;
    z-index: 1;
}

.product-story-copy {
    max-width: 690px;
}

.product-story-copy h3 {
    max-width: 11ch;
}

.product-story-list {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.product-story-list li {
    padding: 16px 18px;
    border-radius: 20px;
    border: 1px solid rgba(7, 17, 31, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(245, 248, 252, 0.64));
    color: var(--muted);
    font-size: 0.97rem;
    line-height: 1.55;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.product-story-list strong {
    color: var(--ink);
}

[data-theme="dark"] .product-story-list li {
    border-color: rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.04));
}

.product-story-proof {
    display: grid;
    gap: 18px;
    align-self: stretch;
    padding: 24px;
    border-radius: 28px;
    border: 1px solid rgba(7, 17, 31, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(245, 248, 252, 0.66));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.76),
        0 18px 42px rgba(14, 27, 49, 0.08);
}

[data-theme="dark"] .product-story-proof {
    border-color: rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.04));
}

.proof-label {
    margin: 0;
    color: var(--violet);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.proof-flow {
    display: grid;
    gap: 10px;
}

.proof-flow span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(7, 17, 31, 0.08);
    background: rgba(255, 255, 255, 0.74);
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 700;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.proof-flow span:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -11px;
    width: 1px;
    height: 12px;
    background: rgba(7, 17, 31, 0.12);
    transform: translateX(-50%);
}

[data-theme="dark"] .proof-flow span {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
    color: #f7f3ea;
}

[data-theme="dark"] .proof-flow span:not(:last-child)::after {
    background: rgba(255, 255, 255, 0.14);
}

.product-story-proof p:last-child {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.6;
}

.product-story-media[hidden] {
    display: none;
}

.product-video-frame {
    overflow: hidden;
    border-radius: 32px;
    border: 1px solid rgba(7, 17, 31, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(245, 248, 252, 0.68));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.78),
        0 24px 56px rgba(14, 27, 49, 0.1);
}

[data-theme="dark"] .product-video-frame {
    border-color: rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.04));
}

.product-story-video {
    display: block;
    width: 100%;
    height: auto;
}

.product-story-card[data-video-ready="true"] {
    grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
}

.product-story-card[data-video-ready="true"] .product-story-copy {
    grid-column: 1;
    grid-row: 1;
}

.product-story-card[data-video-ready="true"] .product-story-proof {
    grid-column: 1;
    grid-row: 2;
    padding-top: 20px;
}

.product-story-card[data-video-ready="true"] .product-story-media,
.product-story-card[data-video-ready="true"] .product-story-media[hidden] {
    display: block;
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: stretch;
}

.product-story-card[data-video-ready="true"] .proof-flow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-story-card[data-video-ready="true"] .proof-flow span:not(:last-child)::after {
    left: auto;
    right: -7px;
    top: 50%;
    bottom: auto;
    width: 8px;
    height: 1px;
    transform: translateY(-50%);
}

@media (prefers-reduced-motion: reduce) {
    .product-story-card,
    .product-story-proof,
    .product-story-list li {
        scroll-behavior: auto;
    }
}

@media (max-width: 980px) {
    .product-story-card,
    .product-story-card[data-video-ready="true"] {
        grid-template-columns: 1fr;
    }

    .product-story-card[data-video-ready="true"] .product-story-copy,
    .product-story-card[data-video-ready="true"] .product-story-proof,
    .product-story-card[data-video-ready="true"] .product-story-media,
    .product-story-card[data-video-ready="true"] .product-story-media[hidden] {
        grid-column: auto;
        grid-row: auto;
    }
}

@media (max-width: 640px) {
    .product-story-proof {
        padding: 20px;
        border-radius: 24px;
    }

    .product-story-list li {
        padding: 15px 16px;
    }
}
