/* *,
*::before,
*::after {
    box-sizing: border-box;
}
:root {
    --bg: #6F2DBD;
}
[hidden] {
    display: none !important;
}
html,
body {
    height: 100%;
    background: var(--bg);
}
body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    color: #ffffff;
    overflow-x: hidden;
    overflow-y: auto;
}
.hero {
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 1rem 1.25rem 3.5rem;
    position: relative;
    z-index: 2;
    overflow: visible;
}
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(
            circle at 50% -220%,
            rgba(255, 255, 255, 0.22) 0%,
            rgba(255, 255, 255, 0.08) 35%,
            transparent 65%
        ),
        radial-gradient(
            circle at 100% 120%,
            rgba(0, 0, 0, 0.70) 0%,
            rgba(0, 0, 0, 0.45) 35%,
            transparent 75%
        );
    mix-blend-mode: normal;
    opacity: 1;
}
.hero .content,
.hero .cta-wrap {
    position: relative;
    z-index: 2;
}
.content {
    width: min(980px, 100%);
    display: grid;
    row-gap: 1.1rem;
    text-align: center;
}
.brand {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.35rem;
}
.brand-wordmark {
    font-size: 5.25rem;
    letter-spacing: 0.11em;
    font-family: "Julius Sans One", monospace;
}
.eyebrow {
    margin: 0;
    width: fit-content;
    justify-self: center;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.8;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.hero-title {
    margin: 0;
    margin-bottom: -2.5rem;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-size: 3rem;
    min-height: 3.4em;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}
.hero-title span {
    display: inline-block;
    transition: opacity 180ms ease, transform 220ms ease;
}
.hero-sub {
    margin: 0;
    margin-top: -0.25rem;
    justify-self: center;
    max-width: 62ch;
    font-size: 1.125rem;
    line-height: 1.6;
    opacity: 0.95;
    min-height: 4.8em;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    text-align: center;
}
.hero-sub span {
    display: inline-block;
    transition: opacity 180ms ease, transform 220ms ease;
}
.story {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    align-items: stretch;
    margin-top: 0.25rem;
    margin-bottom: 3rem;
}
.story-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    padding: 1rem;
    text-align: left;
    transition: opacity 180ms ease, transform 220ms ease;
}
.story-chip {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    font-size: 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    margin-bottom: 0.5rem;
    opacity: 0.95;
}
.chip-good {
    background: rgba(0, 0, 0, 0.18);
    border-color: rgba(255, 255, 255, 0.45);
}
.story-list {
    margin: 0;
    padding-left: 1.1rem;
    display: grid;
    gap: 0.35rem;
    font-size: 1rem;
}
.story-arrow {
    display: grid;
    place-items: center;
    padding: 0 0.25rem;
    font-size: 1.75rem;
    opacity: 0.85;
}
.cta-wrap {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(env(safe-area-inset-bottom, 0px) + 1.25rem);
    width: 100%;
    max-width: 980px;
    padding: 0 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0;
}
.cta-note {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.45;
    opacity: 0.9;
    letter-spacing: 0.01em;
}
.cta-price-small {
    margin: 0 0 0.85rem;
    font-size: 0.95rem;
    opacity: 0.85;
    letter-spacing: 0.01em;
}
.cta-primary {
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: #ffffff;
    border-radius: 16px;
    padding: 0.9rem 1.9rem;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.24),
        inset 0 0 12px rgba(255, 255, 255, 0.16);
    transition:
        transform 240ms cubic-bezier(0.25, 1, 0.5, 1),
        background 200ms ease,
        box-shadow 240ms cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}
.cta-primary:hover {
    background: rgba(255, 255, 255, 0.30);
    transform: translateY(-2px) scale(1.03);
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.3),
        inset 0 0 14px rgba(255, 255, 255, 0.2);
}
.cta-primary:active {
    transform: translateY(0) scale(0.98);
    background: rgba(255, 255, 255, 0.26);
}
.cta-secondary {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 500;
    opacity: 0.9;
    cursor: pointer;
    padding: 0.45rem 0.5rem;
    margin-top: 0.1rem;
    transition: opacity 0.2s ease, transform 0.15s ease;
}
.cta-secondary:hover {
    opacity: 1;
    transform: translateY(-1px);
}
.cta-trust {
    font-size: 0.75rem;
    opacity: 0.7;
    font-weight: 400;
    letter-spacing: 0.02em;
}
.legal-links {
    width: 100%;
    text-align: center;
    margin: 1.5rem 0 1.25rem;
    font-size: 0.72rem;
    opacity: 0.6;
}
.legal-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 0.4rem;
}
.legal-links a:hover {
    text-decoration: underline;
    opacity: 1;
}
.slide-indicator {
    display: none;
    position: absolute;
    top: 1.5rem;
    right: 1.25rem;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.35rem;
    z-index: 3;
}
.slide-indicator-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.25);
    transition: all 160ms ease-out;
    opacity: 0.9;
}
.slide-indicator-dot.is-active {
    width: 10px;
    height: 6px;
    background: #ffffff;
    opacity: 1;
}
.slide-controls {
    position: absolute;
    top: 9rem;
    right: 1rem;
    z-index: 3;
    display: flex;
    gap: 0.35rem;
    align-items: center;
}
.slide-btn {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    padding: 0.32rem 0.55rem;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0.75;
    transition: transform 160ms ease, background 180ms ease, opacity 180ms ease;
}
.slide-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    opacity: 1;
    transform: translateY(-1px);
}
.slide-btn:active {
    transform: translateY(0) scale(0.97);
    background: rgba(255, 255, 255, 0.14);
}
.flipburst {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    display: grid;
    overflow: hidden;
}
.flipburst__tile {
    opacity: 0;
    border-radius: 0;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.flipburst__tile--settle {
    opacity: 0;
    border-radius: 0;
    box-shadow: none;
    transform: translate3d(0, 0, 0) rotate(180deg) scale(1);
}

@media (max-width: 720px) {
    body {
        overflow: hidden;
    }
    .hero {
        padding-top: 2rem;
        padding-bottom: 1.5rem;
        overflow-y: auto;
        overflow-x: hidden;
    }
    .content {
        row-gap: 1rem;
    }
    .brand-wordmark {
        font-size: 3.25rem;
    }
    .hero-title {
        font-size: 2.1rem;
        min-height: 3.0em;
        margin-bottom: 5px;
    }
    .hero-sub {
        font-size: 1rem;
        min-height: 4.4em;
    }
    .story,
    .story-arrow {
        display: none;
    }
    .eyebrow {
        margin-top: -0.75rem;
        margin-bottom: 0.65rem;
    }
    .slide-indicator {
        display: flex;
    }
    .slide-controls {
        display: none;
    }
    .cta-wrap {
        position: static;
        left: auto;
        bottom: auto;
        transform: none;
        margin-top: 2.5rem;
        width: 100%;
        max-width: 980px;
        padding: 0 1.25rem;
        align-items: center;
    }
    .cta-primary {
        width: 100%;
        max-width: 320px;
    }
    .cta-secondary {
        margin-bottom: 0.15rem;
    }
    .legal-links {
        margin-top: 2.5rem;
    }
}

@media (min-width: 721px) and (max-height: 780px) {
    html,
    body {
        overflow-x: hidden;
    }
    body {
        overflow: hidden;
    }
    .hero {
        overflow-y: auto;
        overflow-x: hidden;
    }
    .cta-wrap {
        position: static;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
        width: 100%;
        max-width: 980px;
        margin: 2.5rem auto 0;
        padding: 0 1.25rem 2rem;
        justify-self: center;
        align-self: start;
        box-sizing: border-box;
    }
    .story {
        margin-bottom: 2.5rem;
    }
} */



*,
*::before,
*::after {
    box-sizing: border-box;
}
:root {
    --bg: #6F2DBD;
}
[hidden] {
    display: none !important;
}
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
html,
body {
    height: 100%;
    background: var(--bg);
}
body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    color: #ffffff;
    overflow-x: hidden;
    overflow-y: auto;
}
.hero {
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 1rem 1.25rem 3.5rem;
    position: relative;
    z-index: 2;
    overflow: visible;
}
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(
            circle at 50% -220%,
            rgba(255, 255, 255, 0.22) 0%,
            rgba(255, 255, 255, 0.08) 35%,
            transparent 65%
        ),
        radial-gradient(
            circle at 100% 120%,
            rgba(0, 0, 0, 0.70) 0%,
            rgba(0, 0, 0, 0.45) 35%,
            transparent 75%
        );
    mix-blend-mode: normal;
    opacity: 1;
}
.hero .content,
.hero .cta-wrap {
    position: relative;
    z-index: 2;
}
.content {
    width: min(980px, 100%);
    display: grid;
    row-gap: 1.1rem;
    text-align: center;
}
.brand {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.35rem;
}
.brand-wordmark {
    font-size: 5.25rem;
    letter-spacing: 0.11em;
    font-family: "Julius Sans One", monospace;
}
.eyebrow {
    margin: 0;
    width: fit-content;
    justify-self: center;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.8;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.hero-title {
    margin: 0;
    margin-bottom: -2.5rem;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-size: 3rem;
    min-height: 3.4em;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}
.hero-title span {
    display: inline-block;
    transition: opacity 180ms ease, transform 220ms ease;
}
.hero-sub {
    margin: 0;
    margin-top: -0.25rem;
    justify-self: center;
    max-width: 62ch;
    font-size: 1.125rem;
    line-height: 1.6;
    opacity: 0.95;
    min-height: 4.8em;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    text-align: center;
}
.hero-sub span {
    display: inline-block;
    transition: opacity 180ms ease, transform 220ms ease;
}
.story {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    align-items: stretch;
    margin-top: 0.25rem;
    margin-bottom: 2.25rem; /* was 3rem */
}

.cta-wrap {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(env(safe-area-inset-bottom, 0px) + 1rem); /* was 1.25rem */
    width: 100%;
    max-width: 980px;
    padding: 0 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0;
}

.legal-links {
    width: 100%;
    text-align: center;
    margin: 1.25rem 0 0.75rem; /* was 1.5rem 0 1.25rem */
    font-size: 0.72rem;
    opacity: 0.6;
}

.story-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    padding: 1rem;
    text-align: left;
    transition: opacity 180ms ease, transform 220ms ease;
}
.story-chip {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    font-size: 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    margin-bottom: 0.5rem;
    opacity: 0.95;
}
.chip-good {
    background: rgba(0, 0, 0, 0.18);
    border-color: rgba(255, 255, 255, 0.45);
}
.story-list {
    margin: 0;
    padding-left: 1.1rem;
    display: grid;
    gap: 0.35rem;
    font-size: 1rem;
}
.story-arrow {
    display: grid;
    place-items: center;
    padding: 0 0.25rem;
    font-size: 1.75rem;
    opacity: 0.85;
}

.cta-note {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.45;
    opacity: 0.9;
    letter-spacing: 0.01em;
}
.cta-price-small {
    margin: 0 0 0.85rem;
    font-size: 0.95rem;
    opacity: 0.85;
    letter-spacing: 0.01em;
}
.cta-primary {
    background: linear-gradient(135deg, #6F2DBD, #6F2DBD, #FF4F3C);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 16px;
    padding: 0.9rem 1.9rem;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(0, 0, 0, 0.25);
    transition:
        transform 240ms cubic-bezier(0.25, 1, 0.5, 1),
        box-shadow 240ms cubic-bezier(0.25, 1, 0.5, 1),
        opacity 200ms ease;
    cursor: pointer;
}
.cta-primary:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow:
        0 14px 28px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(0, 0, 0, 0.30);
}

.cta-primary:active {
    transform: translateY(0) scale(0.97);
    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.50),
        0 0 0 1px rgba(0, 0, 0, 0.35);
}

.cta-secondary {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 500;
    opacity: 0.9;
    cursor: pointer;
    padding: 0.45rem 0.5rem;
    margin-top: 0.1rem;
    transition: opacity 0.2s ease, transform 0.15s ease;
}
.cta-secondary:hover {
    opacity: 1;
    transform: translateY(-1px);
}
.cta-trust {
    font-size: 0.75rem;
    opacity: 0.7;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.legal-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 0.4rem;
}
.legal-links a:hover {
    text-decoration: underline;
    opacity: 1;
}
.slide-indicator {
    display: none;
    position: absolute;
    top: 1.5rem;
    right: 1.25rem;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.35rem;
    z-index: 3;
}
.slide-indicator-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.25);
    transition: all 160ms ease-out;
    opacity: 0.9;
}
.slide-indicator-dot.is-active {
    width: 10px;
    height: 6px;
    background: #ffffff;
    opacity: 1;
}
.slide-controls {
    position: absolute;
    top: 9rem;
    right: 1rem;
    z-index: 3;
    display: flex;
    gap: 0.35rem;
    align-items: center;
}
.slide-btn {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    padding: 0.32rem 0.55rem;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0.75;
    transition: transform 160ms ease, background 180ms ease, opacity 180ms ease;
}
.slide-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    opacity: 1;
    transform: translateY(-1px);
}
.slide-btn:active {
    transform: translateY(0) scale(0.97);
    background: rgba(255, 255, 255, 0.14);
}
.flipburst {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    display: grid;
    overflow: hidden;
}
.flipburst__tile {
    opacity: 0;
    border-radius: 0;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.flipburst__tile--settle {
    opacity: 0;
    border-radius: 0;
    box-shadow: none;
    transform: translate3d(0, 0, 0) rotate(180deg) scale(1);
}

/* Tall-ish desktop: lock the page to a single screen, no scroll */
@media (min-width: 721px) and (min-height: 780px) {
    html,
    body {
        height: 100%;
        overflow-x: hidden;
        overflow-y: hidden;
    }

    .hero {
        min-height: 100vh;
        padding-top: 1.5rem;
        padding-bottom: 2.5rem;
        overflow: visible;
    }
}

/* Very short desktop windows: allow scrolling so content isn't cut off */
@media (min-width: 721px) and (max-height: 679px) {
    html,
    body {
        height: auto;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .hero {
        min-height: auto;
        padding-top: 1rem;
        padding-bottom: 2rem;
    }
}


/* Phase 4: ultra-short desktop – allow scrolling inside hero */
@media (min-width: 721px) and (max-height: 620px) {
    body {
        overflow: hidden;
    }

    .hero {
        overflow-y: auto;
        overflow-x: hidden;
    }
}








/* THIS MOBILE SECTION IS PERFECT - DO NOT TOUCH */
@media (max-width: 720px) {
    html,
    body {
        height: 100%;
    }
    body {
        overflow: hidden;
    }
    .hero {
        min-height: 100vh;
        padding-top: 1.6rem;
        padding-bottom: 1rem;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: stretch;
    }
    .content {
        width: 100%;
        max-width: 420px;
        display: flex;
        flex-direction: column;
        row-gap: 0.75rem;
        text-align: center;
    }
    .brand {
        margin-bottom: 0;
    }
    .brand-wordmark {
        font-size: 3.5rem;
    }
    .eyebrow {
        margin: 0.25rem auto 0.55rem;
        text-align: center;
        font-size: 0.8rem;
        width: auto;
        border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    }
    .hero-title {
        font-size: 1.9rem;
        line-height: 1.1;
        margin: 0 0 0.25rem;
    }
    .hero-sub {
        font-size: 1rem;
        line-height: 1.45;
        margin-top: -0.05rem;
        max-height: 4.2rem;
        overflow-y: auto;
    }
    .story,
    .story-arrow {
        display: none;
    }
    .slide-indicator {
        display: flex;
    }
    .slide-controls {
        display: none;
    }
    .cta-wrap {
        position: static;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
        margin-top: auto;
        width: 100%;
        max-width: 420px;
        padding-top: 1.25rem;
        padding-bottom: calc(env(safe-area-inset-bottom, 0) + 160px);
        align-items: center;
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .cta-note {
        margin: 0 0 0.4rem;
        font-size: 0.9rem;
    }
    .cta-price-small {
        margin: 0 0 1rem;
        font-size: 0.9rem;
    }
    .cta-primary {
        width: 100%;
        max-width: 320px;
        margin: 0;
    }
    .cta-secondary {
        margin-top: 1.4rem;
        margin-bottom: 1rem;
    }
    .cta-trust {
        margin-top: 1rem;
        margin-bottom: 0.05rem;
        font-size: 0.8rem;
    }
    .legal-links {
        position: fixed;
        left: 0;
        right: 0;
        bottom: calc(env(safe-area-inset-bottom, 0px) + 10px);
        margin: 0;
        padding: 0 1.25rem;
        text-align: center;
        font-size: 0.8rem;
        opacity: 0.7;
        background: transparent;
        pointer-events: auto;
    }
}
