:root {
    --black: #050505;
    --near-black: #0b0b12;
    --brand-navy: #232057;
    --brand-navy-2: #2b2d7f;
    --white: #ffffff;
    --text: #111827;
    --muted: #64748b;
    --border: #e5e7eb;
    --footer-bg: #f8fafc;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: #050505;
    color: var(--text);
}

body.drawer-open {
    overflow: hidden;
}

button,
input {
    font: inherit;
}

button {
    appearance: none;
    -webkit-appearance: none;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

/* HEADER */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    background: #050505;
}

.site-header__inner {
    width: min(1440px, calc(100% - 40px));
    height: 78px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

.site-logo img {
    width: 150px;
    height: auto;
    display: block;
}

.site-account-button {
    min-height: 44px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.11);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 850;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.site-account-button:hover {
    background: #ffffff;
    color: #050505;
    border-color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

/* HERO */

.hero {
    min-height: 100vh;
    padding: 112px 24px 86px;
    color: #ffffff;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at 78% 38%, rgba(72, 67, 190, 0.38), transparent 34%),
        radial-gradient(circle at 18% 82%, rgba(43, 45, 127, 0.32), transparent 32%),
        linear-gradient(180deg, #050505 0%, #0b0b12 38%, #232057 100%);
}

.hero-nav-pill {
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 38px;
    padding: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26);
}

.hero-nav-pill__item {
    min-height: 40px;
    padding: 10px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    font-weight: 850;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: none;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.hero-nav-pill__item:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.hero-nav-pill__item.active {
    background: #ffffff;
    color: #070711;
}

.hero-nav-pill__item.active:hover {
    background: #ffffff;
    color: #070711;
}

.hero__headline {
    max-width: 920px;
    margin: 0 auto 34px;
    text-align: center;
}

.hero__eyebrow {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.84rem;
    font-weight: 950;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.hero__headline h1 {
    margin: 0;
    font-size: clamp(2.1rem, 4.4vw, 4.8rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
    font-weight: 950;
}

.hero__inner {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    align-items: center;
    gap: 54px;
}

.hero__copy {
    text-align: left;
}

.hero__text {
    max-width: 520px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1.35rem, 2.15vw, 1.95rem);
    line-height: 1.32;
    font-weight: 750;
}

.hero__actions {
    margin-top: 38px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero__button {
    min-height: 50px;
    padding: 13px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 0.98rem;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

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

.hero__button--primary {
    border: 1px solid #ffffff;
    background: #ffffff;
    color: #070711;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.hero__button--secondary {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.09);
}

.hero__button--secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

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

.hero__mockup {
    width: min(660px, 100%);
    display: block;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: scale(var(--hero-mockup-scale, 0.86));
    transform-origin: center center;
    will-change: transform;
}

.hero__store-note {
    margin-top: 140px;
}

.hero__store-note span {
    display: block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero__badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero__badges a,
.hero__badge-disabled {
    display: inline-flex;
}

.hero__badges img {
    height: 42px;
    width: auto;
}

.hero__badges a img {
    opacity: 1;
    transition: transform 0.2s ease;
}

.hero__badges a:hover img {
    transform: scale(1.04);
}

.hero__badge-disabled img {
    opacity: 0.42;
    filter: grayscale(1);
}

/* DESKTOP HERO SPACING */

@media (min-width: 981px) {
    .hero__copy {
        transform: translateY(-220px);
    }

    .hero__store-note {
        margin-top: 150px;
    }
}

/* STORY SECTIONS */

.story-sections {
    background:
        radial-gradient(circle at 15% 22%, rgba(43, 45, 127, 0.24), transparent 30%),
        radial-gradient(circle at 82% 58%, rgba(72, 67, 190, 0.22), transparent 34%),
        linear-gradient(180deg, #232057 0%, #0b0b12 18%, #050505 100%);
    color: #ffffff;
}

.story-section {
    min-height: 92vh;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 96px 0;
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    align-items: center;
    gap: 72px;
}

.story-section + .story-section {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.story-section--reverse {
    grid-template-columns: 1.12fr 0.88fr;
}

.story-section__copy {
    text-align: left;
}

.story-section__eyebrow {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.82rem;
    font-weight: 950;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.story-section__copy h2 {
    max-width: 620px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.35rem, 5vw, 5rem);
    line-height: 0.96;
    letter-spacing: -0.06em;
    font-weight: 950;
}

.story-section__copy p:not(.story-section__eyebrow) {
    max-width: 520px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1.08rem, 1.55vw, 1.35rem);
    line-height: 1.48;
    font-weight: 650;
}

.story-section__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-section__visual img {
    width: min(520px, 100%);
    display: block;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

/* REVEAL ON SCROLL */

.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* DESKTOP STICKY MOCKUPS */

@media (min-width: 981px) {
    .story-section {
        align-items: start;
    }

    .story-section__copy {
        padding-top: 92px;
    }

    .story-section__visual {
        position: sticky;
        top: 120px;
    }

    .story-section__visual img {
        transform: scale(0.94);
        transition: transform 0.5s ease;
    }

    .story-section:hover .story-section__visual img {
        transform: scale(1);
    }
}

/* FINAL CTA */

.final-cta {
    width: min(920px, calc(100% - 48px));
    margin: 0 auto;
    padding: 110px 0 120px;
    text-align: center;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.final-cta h2 {
    margin: 0;
    font-size: clamp(2.4rem, 5vw, 5rem);
    line-height: 0.96;
    letter-spacing: -0.06em;
    font-weight: 950;
}

.final-cta__button {
    min-height: 52px;
    margin-top: 34px;
    padding: 14px 24px;
    border: 1px solid #ffffff;
    border-radius: 999px;
    background: #ffffff;
    color: #070711;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.final-cta__button:hover {
    transform: translateY(-1px);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.36);
}

/* AUTH DRAWER */

.auth-drawer {
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.auth-drawer.hidden,
.hidden {
    display: none !important;
}

.auth-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
    backdrop-filter: blur(8px);
}

.auth-drawer__panel {
    position: absolute;
    left: 50%;
    bottom: 18px;
    width: min(520px, calc(100% - 28px));
    transform: translateX(-50%);
    padding: 34px;
    border-radius: 30px;
    background: #ffffff;
    color: #111827;
    box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42);
    animation: drawerIn 0.24s ease both;
}

@keyframes drawerIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(26px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.auth-drawer__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: #f1f5f9;
    color: #111827;
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
}

.auth-drawer__close:hover {
    background: #e2e8f0;
}

.auth-drawer__handle {
    width: 48px;
    height: 5px;
    margin: 0 auto 22px;
    border-radius: 999px;
    background: #d1d5db;
}

.auth-drawer__eyebrow {
    margin: 0 0 10px;
    color: #232057;
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.auth-drawer h2 {
    margin: 0;
    color: #050505;
    font-size: 2.4rem;
    line-height: 1;
    letter-spacing: -0.055em;
    font-weight: 950;
}

.auth-drawer__subtitle {
    margin: 14px 0 24px;
    color: #64748b;
    font-size: 1rem;
    line-height: 1.55;
    font-weight: 600;
}

.label {
    display: block;
    margin-bottom: 8px;
    color: #111827;
    font-size: 0.94rem;
    font-weight: 850;
}

.input {
    width: 100%;
    height: 54px;
    padding: 0 16px;
    border: 1px solid #cfd4dc;
    border-radius: 14px;
    background: #ffffff;
    color: #111827;
    font-size: 1rem;
    outline: none;
}

.input:focus {
    border-color: #232057;
    box-shadow: 0 0 0 4px rgba(35, 32, 87, 0.12);
}

.button {
    width: 100%;
    min-height: 54px;
    margin-top: 14px;
    border: 0;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 900;
}

.button--primary {
    background: #232057;
    color: #ffffff;
}

.button--primary:hover {
    background: #1c194b;
}

.button--primary:disabled {
    opacity: 0.62;
    cursor: not-allowed;
}

.message {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 0.94rem;
    line-height: 1.45;
    font-weight: 750;
}

.message--success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.message--error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.small-note {
    margin: 16px 0 0;
    color: #64748b;
    font-size: 0.88rem;
    line-height: 1.45;
}

/* FOOTER */

.footer {
    padding: 44px 20px;
    border-top: 1px solid var(--border);
    background-color: var(--footer-bg);
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.footer-links a {
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 800;
}

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

.badges-container {
    margin: 20px 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.store-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.store-badge {
    height: 45px;
    width: auto;
    transition: transform 0.2s ease;
}

.store-badge:hover {
    transform: scale(1.04);
}

.store-badge-disabled .store-badge {
    opacity: 0.42;
    filter: grayscale(1);
}

.footer p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.footer p a {
    color: var(--brand-navy);
    font-weight: 850;
}

.footer-copy {
    margin-top: 20px !important;
    font-size: 0.82rem !important;
    color: #94a3b8 !important;
}

/* RESPONSIVE */

@media (max-width: 980px) {
    .site-header__inner {
        width: min(100% - 28px, 760px);
        height: 70px;
    }

    .site-logo img {
        width: 136px;
    }

    .site-account-button {
        min-height: 40px;
        padding: 9px 15px;
        font-size: 0.88rem;
    }

    .hero {
        min-height: auto;
        padding: 98px 18px 64px;
    }

    .hero-nav-pill {
        margin-bottom: 34px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .hero-nav-pill::-webkit-scrollbar {
        display: none;
    }

    .hero-nav-pill__item {
        min-height: 38px;
        padding: 9px 15px;
        font-size: 0.88rem;
    }

    .hero__headline {
        margin-bottom: 34px;
    }

    .hero__headline h1 {
        font-size: clamp(2.25rem, 9vw, 4rem);
    }

    .hero__inner {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .hero__copy {
        text-align: center;
        order: 2;
        transform: none;
    }

    .hero__text {
        margin: 0 auto;
        max-width: 620px;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__visual {
        justify-content: center;
        order: 1;
    }

    .hero__mockup {
        width: min(560px, 94vw);
        transform: scale(1);
    }

    .hero__store-note {
        margin-top: 28px;
    }

    .hero__badges {
        justify-content: center;
    }

    .story-section,
    .story-section--reverse {
        min-height: auto;
        width: min(720px, calc(100% - 32px));
        padding: 72px 0;
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .story-section__copy {
        text-align: center;
        padding-top: 0;
    }

    .story-section__copy h2,
    .story-section__copy p:not(.story-section__eyebrow) {
        margin-left: auto;
        margin-right: auto;
    }

    .story-section--reverse .story-section__copy {
        order: 1;
    }

    .story-section--reverse .story-section__visual {
        order: 2;
    }

    .story-section__visual {
        position: static;
    }

    .story-section__visual img {
        width: min(460px, 94vw);
    }

    .final-cta {
        width: min(720px, calc(100% - 32px));
        padding: 78px 0 88px;
    }
}

@media (max-width: 520px) {
    .site-header__inner {
        width: calc(100% - 24px);
        height: 66px;
    }

    .site-logo img {
        width: 124px;
    }

    .site-account-button {
        min-height: 38px;
        padding: 8px 13px;
        font-size: 0.82rem;
    }

    .hero {
        padding: 118px 14px 64px;
    }

    .hero-nav-pill {
        margin-bottom: 34px;
    }

    .hero__headline {
        margin-bottom: 28px;
    }

    .hero__headline h1 {
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
        font-size: clamp(2rem, 11vw, 3.25rem);
        line-height: 1;
    }

    .hero__eyebrow,
    .story-section__eyebrow {
        font-size: 0.74rem;
    }

    .hero__visual {
        margin-top: 2px;
    }

    .hero__copy {
        margin-top: 6px;
    }

    .hero__text {
        max-width: 335px;
        font-size: 1.05rem;
        line-height: 1.42;
    }

    .hero__actions {
        margin-top: 28px;
        flex-direction: column;
        align-items: stretch;
    }

    .hero__button {
        width: 100%;
    }

    .hero__mockup {
        width: min(430px, 96vw);
    }

    .hero__store-note {
        margin-top: 34px;
    }

    .hero__badges img {
        height: 40px;
    }

    .story-section,
    .story-section--reverse {
        width: min(100% - 28px, 480px);
        padding: 70px 0;
        gap: 30px;
    }

    .story-section__copy h2,
    .final-cta h2 {
        max-width: 350px;
        font-size: clamp(2rem, 11vw, 3.25rem);
    }

    .story-section__copy p:not(.story-section__eyebrow) {
        max-width: 340px;
        margin-top: 20px;
        font-size: 1rem;
        line-height: 1.5;
    }

    .story-section__visual img {
        width: min(410px, 98vw);
    }

    .final-cta {
        width: min(100% - 28px, 480px);
        padding: 64px 0 76px;
    }

    .final-cta__button {
        width: 100%;
    }

    .footer-links {
        gap: 12px;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .auth-drawer__panel {
        bottom: 0;
        width: 100%;
        padding: 28px 20px 24px;
        border-radius: 28px 28px 0 0;
    }

    .auth-drawer h2 {
        font-size: 2.1rem;
    }
}

/* HEADER ACTIONS / PRICING MODE */

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-text-button {
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.2s ease;
}

.site-text-button:hover {
    color: #ffffff;
}

.site-back-button {
    min-height: 44px;
    padding: 10px 18px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 850;
    cursor: pointer;
}

.site-back-button span {
    font-size: 1.2rem;
    line-height: 1;
}

body.pricing-mode .site-logo,
body.pricing-mode .site-header__actions {
    display: none;
}

body.pricing-mode .site-header__inner {
    justify-content: flex-start;
}

body.pricing-mode .site-back-button {
    display: inline-flex !important;
}

/* PRICING VIEW */

.pricing-view {
    min-height: 100vh;
    padding-top: 78px;
    background:
        radial-gradient(circle at 75% 26%, rgba(72, 67, 190, 0.34), transparent 32%),
        linear-gradient(180deg, #050505 0%, #0b0b12 42%, #232057 100%);
    color: #ffffff;
}

.pricing-hero {
    padding: 92px 24px 42px;
    text-align: center;
}

.pricing-hero__inner {
    width: min(980px, 100%);
    margin: 0 auto;
}

.pricing-hero__eyebrow {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.82rem;
    font-weight: 950;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.pricing-hero h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.4rem, 5vw, 5.4rem);
    line-height: 0.96;
    letter-spacing: -0.065em;
    font-weight: 950;
}

.pricing-page {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
    padding: 32px 0 110px;
}

.pricing-compare {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.pricing-plan {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.075);
    backdrop-filter: blur(18px);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.pricing-plan--pro {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.07));
    border-color: rgba(255, 255, 255, 0.22);
}

.pricing-plan__badge {
    width: fit-content;
    margin-bottom: 22px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #ffffff;
    color: #070711;
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pricing-plan__label {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.82rem;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pricing-plan h3 {
    margin: 0;
    color: #ffffff;
    font-size: 2rem;
    line-height: 1.05;
    letter-spacing: -0.04em;
    font-weight: 950;
}

.pricing-plan__price {
    margin: 24px 0 0;
    color: #ffffff;
    font-size: 3.2rem;
    line-height: 1;
    letter-spacing: -0.055em;
    font-weight: 950;
}

.pricing-plan__price span {
    font-size: 1rem;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.62);
}

.pricing-plan__subtitle {
    min-height: 48px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 650;
}

.pricing-features {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.pricing-features li {
    position: relative;
    padding: 11px 0 11px 28px;
    color: rgba(255, 255, 255, 0.82);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.98rem;
    line-height: 1.35;
    font-weight: 650;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: 950;
}

.pricing-features__muted {
    color: rgba(255, 255, 255, 0.42) !important;
}

.pricing-features__muted::before {
    content: "–" !important;
    color: rgba(255, 255, 255, 0.42) !important;
}

.pricing-plan__button {
    width: 100%;
    min-height: 54px;
    margin-top: 30px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 950;
}

.pricing-plan__button--primary {
    border: 1px solid #ffffff;
    background: #ffffff;
    color: #070711;
}

.pricing-plan__button--secondary {
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.09);
    color: #ffffff;
}

.pricing-disclaimer {
    margin: 28px auto 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.92rem;
    font-weight: 650;
}

@media (max-width: 760px) {
    .site-header__actions {
        gap: 12px;
    }

    .site-text-button {
        font-size: 0.78rem;
    }

    .pricing-view {
        padding-top: 66px;
    }

    .pricing-hero {
        padding: 64px 16px 28px;
    }

    .pricing-compare {
        grid-template-columns: 1fr;
    }

    .pricing-page {
        width: min(100% - 28px, 520px);
        padding-bottom: 72px;
    }

    .pricing-plan {
        padding: 24px 20px;
        border-radius: 28px;
    }
}

@media (min-width: 981px) {
    .hero__copy.reveal {
        opacity: 0;
        transform: translateY(-160px);
    }

    .hero__copy.reveal.is-visible {
        opacity: 1;
        transform: translateY(-160px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-account-button,
    .hero-nav-pill__item,
    .hero__button,
    .final-cta__button,
    .store-badge,
    .auth-drawer__panel,
    .reveal,
    .story-section__visual img {
        transition: none;
        animation: none;
    }

    .hero__mockup {
        transform: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

.top-store-banner {
    width: 100%;
    padding: 96px 20px 22px;
    background: #050505;
    color: #ffffff;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.top-store-banner span {
    display: block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.top-store-banner__badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.top-store-banner__badges a,
.top-store-banner__badge-disabled {
    display: inline-flex;
}

.top-store-banner__badges img {
    height: 42px;
    width: auto;
}

.top-store-banner__badges a img {
    opacity: 1;
    transition: transform 0.2s ease;
}

.top-store-banner__badges a:hover img {
    transform: scale(1.04);
}

.top-store-banner__badge-disabled img {
    opacity: 0.42;
    filter: grayscale(1);
}

@media (max-width: 520px) {
    .top-store-banner {
        padding: 84px 14px 18px;
    }

    .top-store-banner__badges {
        gap: 8px;
    }

    .top-store-banner__badges img {
        height: 38px;
    }
}

/* STATIC CONTENT PAGES */

body.content-page {
    background:
        radial-gradient(circle at 78% 24%, rgba(72, 67, 190, 0.34), transparent 34%),
        radial-gradient(circle at 14% 78%, rgba(43, 45, 127, 0.28), transparent 32%),
        linear-gradient(180deg, #050505 0%, #0b0b12 42%, #232057 100%);
    color: #ffffff;
}

body.content-page .site-header {
    position: relative;
}

.content-hero {
    padding: 86px 24px 42px;
    text-align: center;
}

.content-hero__inner {
    width: min(920px, 100%);
    margin: 0 auto;
}

.content-hero__eyebrow {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.82rem;
    font-weight: 950;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.content-hero h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.4rem, 5vw, 5.2rem);
    line-height: 0.96;
    letter-spacing: -0.06em;
    font-weight: 950;
}

.content-hero p {
    max-width: 680px;
    margin: 24px auto 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(1.05rem, 1.6vw, 1.28rem);
    line-height: 1.55;
    font-weight: 650;
}

.content-page-main {
    width: min(960px, calc(100% - 48px));
    margin: 0 auto;
    padding: 28px 0 110px;
}

.content-card {
    padding: clamp(28px, 5vw, 54px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(18px);
    box-shadow: 0 34px 100px rgba(0, 0, 0, 0.32);
}

.content-card h2 {
    margin: 42px 0 14px;
    color: #ffffff;
    font-size: clamp(1.55rem, 2.6vw, 2.35rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
    font-weight: 950;
}

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

.content-card p {
    margin: 0 0 18px;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 600;
}

.content-card ul {
    margin: 12px 0 24px;
    padding: 0;
    list-style: none;
}

.content-card li {
    position: relative;
    padding: 9px 0 9px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 650;
}

.content-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: 950;
}

.content-card a {
    color: #ffffff;
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.content-page-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #050505;
}

@media (max-width: 760px) {
    .content-hero {
        padding: 64px 16px 30px;
    }

    .content-page-main {
        width: min(100% - 28px, 620px);
        padding-bottom: 72px;
    }

    .content-card {
        border-radius: 28px;
    }
}