:root {
    --blue: #1C52FA;
    --deep-blue: #0036FE;
    --orange: #FF553B;
    --orange-bright: #FF5733;
    --lime: #E6FC2E;
    --purple: #6332DB;
    --pink: #FFB3FA;
    --mint: #BFFFE0;
    --peach: #FFD3C3;
    --yellow: #F0F8BF;
    --text: #111111;
    --muted: #666666;
    --white: #FFFFFF;
    --off-white: #FAFAFA;

    --page-width: 1620px;
    --content-gutter: 48px;
    --radius: 14px;

    /* Modal */
    --blue-dark: #0029CC;
    --gray-50: #F7F8FC;
    --gray-100: #EDEEF5;
    --gray-400: #9B9DB8;
    --gray-700: #3D3F5C;
    --gray-900: #13142A;
    --radius-lg: 22px;
    --radius-xl: 34px;
    --font-body: 'Poppins', sans-serif;
    --font-display: 'Sora', sans-serif;
}


/* ================================
   BASE
================================ */

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

html {
    scroll-behavior: smooth;
}

html,
body,
button,
input,
select,
textarea {
    font-family: "Poppins", sans-serif;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--off-white);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

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

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

p {
    line-height: 1.5;
}

.page-width {
    width: min(calc(100% - var(--content-gutter)), var(--page-width));
    margin-inline: auto;
}

.page-width--narrow {
    max-width: 1050px;
}

.section {
    padding: 120px 0 80px;
}

.center {
    display: flex;
    justify-content: center;
}


/* ================================
   BUTTONS / PILLS
================================ */

.btn,
.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 500;
    text-align: center;
}

.btn {
    position: relative;
    min-height: 65px;
    padding: 20px 25px;
    font-size: 28px;
    transition: transform .2s ease, box-shadow .2s ease;
}

/* ================================
   GLOBAL BUTTON HOVER EFFECT
================================ */

.btn,
.pill,
.session-guide-btn,
a.burst {
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.btn:hover,
.pill:hover,
.session-guide-btn:hover,
a.burst:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.10);
}
a.burst:hover{
    box-shadow:none;
}
.btn--blue {
    background: var(--blue);
    color: var(--orange-bright);
}

.btn--orange,
.pill--orange {
    background: var(--orange);
    color: var(--white);
}

.btn--small {
    min-height: 38px;
    padding-inline: 22px;
    font-size: 18px;
}

.btn--wide {
    min-width: 550px;
    min-height: 120px;
}

.pill {
    padding: 20px 25px;
    font-size: 18px;
}

.pill--lime {
    background: var(--lime);
}


/* ================================
   HERO
================================ */

.hero {
    position: relative;
    overflow: hidden;

    width: 100%;
    min-height: 600px;
    height: 100vh;
    height: 100svh;

    color: #fff;

    background-color: var(--deep-blue);
    background-image: url("images/event-intelligence-deck-hero_dk.png");
    background-repeat: no-repeat;

    background-position: right center;
    background-size: contain;
}

.hero__inner {
    position: relative;
    z-index: 2;
    height: 100%;
}

.hero__nav {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    width: 200px;
    height: auto;
}

.hero__nav-actions {
    display: flex;
    align-items: center;
    gap: 38px;
}

.hero__nav-link {
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.35;
    white-space: nowrap;
}
.hero__nav-link:hover{
    color: var(--orange);;
}
.hero__nav .btn--small {
    min-height: 0;
    padding: 14px 24px;
    font-size: 18px;
    line-height: 1.35;
    white-space: nowrap;
}

.hero__content {
    height: calc(100% - 120px);
    display: flex;
    align-items: center;
}

.hero__copy {
    width: 48%;
    max-width: 650px;
    transform: translateY(-20px);
}

.hero h1 {
    margin: 0 0 28px;
    font-family: "NewBlack", "Poppins", sans-serif;
    font-size: clamp(52px, 5.7vw, 118px);
    font-weight: 700;
    line-height: 1.05;
}

.hero__copy p {
    max-width: 500px;
    margin: 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
}

.brand-star {
    margin-top: 45px;
}

.brand-star img {
    width: 183px;
    height: auto;
    animation: rotateStar 8s linear infinite;
}

.hero__visual {
    display: none;
}

.hero__burst {
    position: absolute;
    z-index: 5;

    right: clamp(
        20px,
        calc(10px + 3vw),
        80px
    );

    bottom: clamp(
        70px,
        calc(190px - 6vw),
        150px
    );

    width: clamp(105px, calc(60px + 7vw), 190px);
    height: clamp(105px, calc(60px + 7vw), 190px);
    max-width: none;


    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    background: url("images/flower_blue.svg") center / contain no-repeat;

    color: #fff;

    font-size: clamp(15px, 1.25vw, 24px);
    font-weight: 400;
    line-height: 115%;
    text-align: center;

    filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.16));
}

/* ================================
   SHARED SECTION HEADINGS
================================ */

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

.section-heading h2 {
    margin: 0 0 50px;
    color: var(--blue);
    font-size: clamp(30px, 4vw, 67px);
    font-weight: 600;
    line-height: 1.05;
}

.section-heading p {
    margin: 0 auto 100px;
    color: #555;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
}

.section-heading--white h2,
.section-heading--white p {
    color: var(--white);
}

.heading--small h2 {
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.15;
}


/* ================================
   LIFECYCLE
================================ */

.lifecycle {
    background: var(--off-white);
}

.lifecycle__deck {
    display: flex;
    justify-content: center;
    margin: 0 0 100px;
}

.lifecycle__deck img {
    width: min(600px, 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 27px;
    max-width: 1184px;
    margin: 0 auto 58px;
}

.stat-card {
    min-height: 400px;
    padding: 30px 35px;
    border-radius: 18px;
}

.stat-card__eyebrow {
    display: block;
    margin-bottom: 8px;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.3;
    text-transform: uppercase;
}

.stat-card strong {
    display: block;
    margin-bottom: 28px;
    font-size: 55px;
    font-weight: 600;
    line-height: 1;
}

.stat-card h3 {
    margin: 0 0 30px;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.15;
}

.stat-card__copy,
.stat-card__copy p,
.stat-card__copy ul {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.stat-card__copy p {
    margin: 0;
}

.stat-card__copy ul {
    margin: 0;
    padding-left: 22px;
}

.stat-card--orange {
    background: var(--orange-bright);
    color: var(--white);
}

.stat-card--lime {
    background: #ADFC2E;
}

.stat-card--peach {
    background: var(--peach);
}


/* Session guide CTA */

.session-guide-btn {
    position: relative;
    width: 100%;
    max-width: 1050px;
    height: 214px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 214px 0 80px;
    color: var(--white);
    background: var(--blue);
    border-radius: 999px;
}

.session-guide-btn__text {
    font-size: 38px;
    font-weight: 500;
    line-height: 1;
}

.session-guide-btn__flower {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 174px;
    height: 174px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.session-guide-btn__flower img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.session-guide-btn__flower span {
    position: relative;
    z-index: 1;
    width: 120px;
    color: var(--white);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.1;
    text-align: center;
}


/* ================================
   QUESTIONS / FLIP CARDS
================================ */

.questions {
    position: relative;
    overflow: hidden;
    background: var(--blue);
}

.questions::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    bottom: -365px;
    width: min(1200px, 110vw);
    height: 700px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: var(--orange-bright);
    filter: blur(180px);
    pointer-events: none;
}

.questions > .page-width {
    position: relative;
    z-index: 1;
}

.mini-star {
    display: flex;
    justify-content: center;
    margin: -26px auto 48px;
}

.mini-star img {
    width: 70px;
    height: auto;
    animation: rotateStar 12s linear infinite;
}

.question-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    max-width: 1050px;
    margin: 0 auto 42px;
    gap: 38px;
}

.flip-card {
    width: 100%;
    perspective: 1400px;
    cursor: pointer;
}

.flip-card__inner {
    position: relative;
    width: 100%;
    aspect-ratio: 321 / 550;
    transform-style: preserve-3d;
    transition: transform .7s cubic-bezier(.2, .7, .2, 1);
}

.flip-card__face {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.flip-card__face img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.flip-card__back {
    transform: rotateY(180deg);
}

.flip-card.is-flipped .flip-card__inner {
    transform: rotateY(180deg);
}

@media (hover: hover) and (pointer: fine) {
    .flip-card:hover .flip-card__inner {
        transform: rotateY(180deg);
    }
}


/* ================================
   CONVERSATIONS
================================ */

.conversations {
    position: relative;
    padding-bottom: 250px;
    background: var(--orange-bright);
}

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

    gap: 35px;

    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.conversation-card {
    min-height: 380px;

    padding: 45px 40px;

    border-radius: 20px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.conversation-card h3 {
    margin: 0 0 15px;

    font-size: clamp(32px, 2.4vw, 46px);
    font-weight: 400;
    line-height: 1.05;
}

.conversation-card p {
    margin: 0;

    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.conversation-card--blue {
    background: var(--blue);
    color: #fff;
}

.conversation-card--lime {
    background: var(--lime);
}

.conversation-card--pink {
    background: var(--pink);
}

.conversation-card--mint {
    background: var(--mint);
}


/* Explore flower */

.conversations .center {
    position: absolute;
    z-index: 5;

    left: 50%;
    bottom: 105px;

    transform: translateX(-50%);
}

.conversations .burst--blue {
    position: relative;

    width: 200px;
    height: 200px;
    max-width: none;
    flex: 0 0 200px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 45px;

    background: url("images/flower_blue.svg") center center / contain no-repeat;

    color: #fff !important;

    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 115%;

    text-align: center;

    border-radius: 0;
}


/* ================================
   PHYSICAL DECK
================================ */

.physical-deck {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: var(--off-white);
}

.physical-deck .section-heading {
    width: min(calc(100% - var(--content-gutter)), 930px);
}

.physical-deck__ticker {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 55%;
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
    transform: translateY(-50%);
    pointer-events: none;
}

.physical-deck__ticker-track {
    display: flex;
    width: max-content;
    animation: physicalDeckTicker 25s linear infinite;
    will-change: transform;
}

.physical-deck__ticker-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 18px;
    padding-right: 18px;
    white-space: nowrap;
}

.physical-deck__ticker-group span {
    color: var(--blue);
    font-size: clamp(32px, 4.2vw, 67px);
    font-weight: 600;
    line-height: 1;
}

.physical-deck__ticker-group img {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
}

.physical-deck__image {
    position: relative;
    z-index: 2;
    width: min(420px, calc(100% - 64px));
    margin: 0 auto 38px;
    overflow: hidden;
    border-radius: 18px;
}

.physical-deck__image img {
    width: 100%;
    height: auto;
}

.physical-deck .center {
    position: relative;
    z-index: 3;
}

@keyframes physicalDeckTicker {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-50%, 0, 0);
    }
}


/* ================================
   COMBOS
================================ */

.combos {
    background: var(--off-white);
}

.combos .section-heading h2 {
    color: var(--deep-blue);
}

.combos a {
    color: var(--blue);
    text-decoration: underline;
}
.combos a:hover {
    text-decoration: none;
}

.combo-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    max-width: 1600px;
    margin: 0 auto;
}

.combo-card {
    min-height: 310px;
    display: flex;
    flex-direction: column;
    padding: 20px 40px 40px;
    border-radius: 10px;
    background: #F3EFF6;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.combo-card--pink {
    background: #FFE4FF;
}

.combo-card--yellow {
    background: #F7FAD9;
}

.combo-card--mint {
    background: #DFF7EF;
}

.combo-card__icon {
    display: block;
    font-size: 38px;
}

.combo-card h3 {
    margin: 0 0 30px;
    font-size: 36px;
    font-weight: 400;
    line-height: 1;
}

.combo-card p {
    margin: 0 0 30px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.combo-card small {
    margin-top: auto;
    font-size: 21px;
    font-weight: 400;
}

.combo-card small strong {
    font-weight: 600;
}

/* ================================
   BENEFITS / TIPS
================================ */

.benefits {
    padding: 80px 0 100px;
    background: var(--off-white);
}

.benefits__panel {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 65px 60px 68px;
    background: #F5F5F5;
    border-radius: 32px;
}

.benefits__heading {
    margin-bottom: 38px;
    text-align: center;
}

.benefits__heading span {
    display: block;
    margin-bottom: 16px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .16em;
}

.benefits__heading h2 {
    margin: 0;
    color: #202020;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}

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

.benefit-item {
    min-height: 98px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 24px;
    background: var(--white);
    border: 1px solid #D7D7D7;
    border-radius: 16px;
    transition:
            transform 0.3s ease,
            box-shadow 0.3s ease;
}

.benefit-item__icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 20px;
    line-height: 1;
}

.benefit-item__icon--purple {
    background: #E7E1FF;
}

.benefit-item__icon--peach {
    background: #FFE9D8;
}

.benefit-item p {
    margin: 0;
    color: #555;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.benefit-item strong {
    color: #202020;
    font-weight: 700;
}

.conversation-card:hover,
.combo-card:hover,
.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.10);
}

@media (hover: hover) and (pointer: fine) {
    .conversation-card:hover,
    .combo-card:hover, 
    .benefit-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.10);
    }
}

/* ================================
   FINAL CTA
================================ */

.final-cta {
    padding: 110px 0;
    text-align: center;
    background: var(--off-white);
}

.final-cta .page-width {
    max-width: 1300px;
}

.final-cta h2 {
    margin: 0 0 32px;
    color: #D8D6D3;
    font-size: clamp(48px, 7vw, 126px);
    font-weight: 700;
    line-height: 1.05;
}

.final-cta p {
    max-width: 925px;
    margin: 0 auto 130px;
    font-size: 23px;
    font-weight: 400;
    line-height: 1.5;
}


/* ================================
   FOOTER
================================ */

.footer {
    padding: 15px 0;
    background: var(--blue);
    color: var(--white);
    font-size: 12px;
    font-weight: 400;
}

.footer__inner {
    width: min(calc(100% - var(--content-gutter)), 1600px);
    max-width: 1600px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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


/* ================================
   RESPONSIVE — LARGE TABLET
================================ */

@media (max-width: 1200px) {
    .section {
        padding: 100px 0 70px;
    }
    .hero{
        background-image: url("images/event-intelligence-deck-hero.png");
        background-size: 70% auto;
    }
    .hero__copy {
        width: 52%;
    }

    .hero h1 {
        font-size: clamp(52px, 7vw, 86px);
    }

    .brand-star img {
        width: 140px;
    }

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

        max-width: 850px;
        gap: 24px;
    }

    .conversation-card {
        min-height: 300px;
        padding: 36px 32px;
    }

    .conversation-card h3 {
        font-size: clamp(30px, 4vw, 40px);
    }

    .conversation-card p {
        font-size: 17px;
    }

    .conversations {
        padding-bottom: 220px;
    }

    .conversations .center {
        bottom: 95px;
    }

.conversations .burst--blue {
        width: 170px;
        height: 170px;
        flex-basis: 170px;

        padding: 38px;

        font-size: 20px;
    }

    .combo-card {
        padding: 20px 28px 32px;
    }

    .combo-card h3 {
        font-size: 32px;
    }

    .session-guide-btn {
        max-width: 900px;
        height: 170px;
        padding: 0 180px 0 60px;
    }

    .session-guide-btn__text {
        font-size: 32px;
    }

    .session-guide-btn__flower {
        top: 16px;
        right: 16px;
        width: 138px;
        height: 138px;
    }

    .session-guide-btn__flower span {
        width: 96px;
        font-size: 19px;
    }
}


/* ================================
   RESPONSIVE — TABLET
================================ */

@media (max-width: 900px) {
    :root {
        --content-gutter: 40px;
    }

    .section {
        padding: 85px 0 65px;
    }

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

    .section-heading h2 {
        margin-bottom: 28px;
        font-size: clamp(32px, 6vw, 50px);
    }

    .section-heading p {
        margin-bottom: 60px;
        font-size: 18px;
    }

    .hero {
        min-height: 680px;
        background-size: 70% auto;
    }

    .hero__nav {
        height: 96px;
    }

    .logo img {
        width: 160px;
    }

    .hero__nav-actions {
        gap: 20px;
    }

    .hero__nav-link,
    .hero__nav .btn--small {
        font-size: 16px;
    }

    .hero__content {
        height: calc(100% - 96px);
    }

    .hero__copy {
        width: 43%;
        max-width: 520px;
        transform: translateY(-10px);
    }

    .hero h1 {
        font-size: clamp(48px, 7vw, 72px);
    }

    .hero__copy p {
        max-width: 440px;
        font-size: 18px;
    }

    .brand-star img {
        width: 110px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        gap: 20px;
    }

    .stat-card {
        min-height: 0;
        padding: 32px;
    }

    .stat-card strong {
        margin-bottom: 22px;
        font-size: 46px;
    }

    .stat-card h3 {
        margin-bottom: 24px;
        font-size: 25px;
    }

    .session-guide-btn {
        max-width: 680px;
        height: 140px;
        padding: 0 150px 0 44px;
    }

    .session-guide-btn__text {
        font-size: 26px;
    }

    .session-guide-btn__flower {
        top: 12px;
        right: 12px;
        width: 116px;
        height: 116px;
    }

    .session-guide-btn__flower span {
        width: 84px;
        font-size: 16px;
    }

    .question-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        gap: 28px;
    }

    .questions::before {
        bottom: -310px;
        width: 900px;
        height: 580px;
        filter: blur(145px);
    }

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

    .conversation-card {
        min-height: 290px;
    }

    .conversations {
        padding-bottom: 205px;
    }
    .conversation-card h3{
        font-size: 43px;
    }

    .physical-deck {
        padding: 70px 0;
    }

    .physical-deck__ticker {
        top: 57%;
    }

    .combo-card {
        min-height: 280px;
    }

    .benefits__panel {
        padding: 50px 32px;
        border-radius: 24px;
    }

    .benefits__heading h2 {
        font-size: 30px;
    }

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

    .final-cta p {
        margin-bottom: 80px;
        font-size: 20px;
    }
}


/* ================================
   RESPONSIVE — MOBILE
================================ */

@media (max-width: 620px) {
    :root {
        --content-gutter: 32px;
    }

    .section {
        padding: 65px 0;
    }

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

    .section-heading h2 {
        margin-bottom: 22px;
        font-size: 32px;
        line-height: 1.1;
    }

    .section-heading p {
        margin-bottom: 42px;
        font-size: 16px;
    }

    .hero {
        min-height: 600px;
        background-size: auto 70%;
        background-position: 100% bottom;
    }

    .hero__nav {
        height: 76px;
    }

    .logo img {
        width: 112px;
    }

    .hero__nav-actions {
        gap: 10px;
    }

    .hero__nav-link {
        display: none;
    }

    .hero__nav .btn--small {
        padding: 10px 15px;
        font-size: 13px;
    }

    .hero__content {
        height: calc(100% - 76px);
        align-items: flex-start;
        padding-top: 42px;
    }

    .hero__copy {
        width: 100%;
        max-width: 100%;
        transform: none;
    }

    .hero h1 {
        margin-bottom: 20px;
        font-size: clamp(42px, 13vw, 58px);
        line-height: .98;
    }

    .hero__copy p {
        max-width: 360px;
        font-size: 16px;
    }

    .hero__burst::before {
        content: "";

        position: absolute;
        inset: 12px;

        border-radius: 50%;

        background: rgba(0, 0, 0, 0.10);

        filter: blur(16px);

        z-index: -1;
    }

    .brand-star {
        margin-top: 26px;
    }

    .brand-star img {
        width: 62px;
    }

    .lifecycle__deck {
        margin-bottom: 60px;
    }

    .stat-card {
        padding: 28px 24px;
    }

    .stat-card__eyebrow {
        font-size: 14px;
    }

    .stat-card strong {
        font-size: 42px;
    }

    .stat-card h3 {
        font-size: 23px;
    }

    .stat-card__copy,
    .stat-card__copy p,
    .stat-card__copy ul {
        font-size: 14px;
    }

    .session-guide-btn {
        height: 96px;
        padding: 0 96px 0 24px;
    }

    .session-guide-btn__text {
        font-size: 18px;
        line-height: 1.2;
    }

    .session-guide-btn__flower {
        top: 8px;
        right: 8px;
        width: 80px;
        height: 80px;
    }

    .session-guide-btn__flower span {
        width: 58px;
        font-size: 11px;
    }

    .mini-star {
        margin: -8px auto 34px;
    }

    .mini-star img {
        width: 52px;
    }

    .question-grid {
        max-width: 360px;
        gap: 22px;
    }

    .questions::before {
        bottom: -240px;
        width: 680px;
        height: 460px;
        filter: blur(110px);
    }

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

    .conversation-grid {
        grid-template-columns: 1fr;

        max-width: 420px;
        gap: 18px;
    }

    .conversation-card {
        min-height: auto;

        padding: 30px 26px;
    }

    .conversation-card h3 {
        font-size: 30px;
    }

    .conversation-card p {
        font-size: 16px;
    }

    .conversations {
        padding-bottom: 220px;
    }

    .conversations .center {
        bottom: 40px;
    }

    .conversations .burst--blue {
        width: 140px;
        height: 140px;
        flex-basis: 140px;

        padding: 30px;

        font-size: 16px;
    }

    .physical-deck {
        padding: 60px 0;
    }

    .physical-deck .section-heading {
        width: min(calc(100% - 32px), 930px);
    }

    .physical-deck__image {
        width: min(320px, calc(100% - 64px));
    }

    .physical-deck__ticker {
        top: 58%;
    }

    .physical-deck__ticker-group {
        gap: 12px;
        padding-right: 12px;
    }

    .physical-deck__ticker-group span {
        font-size: 32px;
    }

    .physical-deck__ticker-group img {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
    }

    .combo-card {
        min-height: 250px;
        padding: 20px 26px 28px;
    }

    .combo-card h3 {
        margin-bottom: 22px;
        font-size: 30px;
    }

    .combo-card p {
        margin-bottom: 24px;
        font-size: 16px;
    }

    .combo-card small {
        font-size: 17px;
    }

    .benefits {
        padding: 60px 0 70px;
    }

    .benefits__panel {
        padding: 38px 18px;
        border-radius: 20px;
    }

    .benefits__heading {
        margin-bottom: 28px;
    }

    .benefits__heading span {
        margin-bottom: 12px;
        font-size: 11px;
    }

    .benefits__heading h2 {
        font-size: 25px;
    }

    .benefits__grid {
        gap: 12px;
    }

    .benefit-item {
        min-height: 0;
        gap: 14px;
        padding: 15px;
        border-radius: 13px;

    }

    .benefit-item__icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        font-size: 17px;
    }

    .benefit-item p {
        font-size: 14px;
        line-height: 1.45;
    }

    .final-cta {
        padding: 80px 0;
    }

    .final-cta h2 {
        font-size: clamp(44px, 13vw, 64px);
    }

    .final-cta p {
        margin-bottom: 55px;
        font-size: 17px;
    }

    .btn--wide {
        width: 100%;
        min-width: 0;
        min-height: 90px;
        font-size: 20px;
    }

    .footer {
        padding: 20px 0;
    }

    .footer__inner {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .footer__links {
        flex-wrap: wrap;
    }
}


/* ================================
   SHORT VIEWPORTS
================================ */

@media (min-width: 621px) and (max-height: 760px) {
    .hero {
        min-height: 620px;
    }

    .hero__nav {
        height: 90px;
    }

    .hero__content {
        height: calc(100% - 90px);
    }

    .hero h1 {
        font-size: clamp(48px, 5.2vw, 78px);
        margin-bottom: 18px;
    }

    .hero__copy p {
        font-size: 17px;
    }

    .brand-star {
        margin-top: 22px;
    }

    .brand-star img {
        width: 92px;
    }
}


/* ================================
   MOTION
================================ */

@keyframes rotateStar {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .brand-star img,
    .mini-star img,
    .physical-deck__ticker-track {
        animation: none;
    }

    .flip-card__inner {
        transition: none;
    }
}






/* ─── Overlay ─── */
  .overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 14, 42, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }
  .overlay.open {
    opacity: 1;
    pointer-events: all;
  }

  /* ─── Modal shell ─── */
  .modal {
    background: var(--white);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 520px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.25);
    transform: translateY(16px) scale(0.97);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
  }
  .overlay.open .modal {
    transform: translateY(0) scale(1);
  }

  /* ─── Modal header (blue zone) ─── */
  .modal-header {
    background: var(--deep-blue);
    padding: 32px 36px 28px;
    position: relative;
    overflow: hidden;
  }

  /* Decorative card fan in header */
  .header-cards {
    position: absolute;
    right: -12px;
    top: -10px;
    width: 120px;
    height: 120px;
    pointer-events: none;
  }
  .header-cards span {
    position: absolute;
    width: 54px;
    height: 76px;
    border-radius: 8px;
    border: 1.5px solid rgba(255,255,255,0.2);
  }
  .header-cards span:nth-child(1) {
    background: var(--lime);
    transform: rotate(-18deg) translate(30px, 8px);
    opacity: 0.9;
  }
  .header-cards span:nth-child(2) {
    background: var(--peach);
    transform: rotate(-5deg) translate(10px, 20px);
    opacity: 0.85;
  }
  .header-cards span:nth-child(3) {
    background: rgba(255,255,255,0.15);
    transform: rotate(10deg) translate(-8px, 28px);
  }

  .modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: rgba(255,255,255,0.15);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: background 0.2s;
    line-height: 1;
  }
  .modal-close:hover { background: rgba(255,255,255,0.25); }

  .modal-eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 8px;
  }

  .modal-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    max-width: 280px;
  }

  .modal-subtitle {
    font-size: 13px;
    color: rgba(255,255,255,0.72);
    margin-top: 8px;
    line-height: 1.5;
    max-width: 300px;
  }

  /* ─── Limited badge ─── */
  .badge-limited {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 999px;
    padding: 4px 12px 4px 8px;
    font-size: 11px;
    font-weight: 600;
    color: var(--white);
    margin-top: 14px;
    letter-spacing: 0.02em;
  }
  .badge-limited::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.8); }
  }

  /* ─── Modal body ─── */
  .modal-body {
    padding: 28px 36px 32px;
  }

  /* ─── Panels / states ─── */
  .panel { display: none; }
  .panel.active { display: block; }

  /* ─── Question panel (step 0) ─── */
  .question-label {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 14px;
  }

  .choice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .choice-btn {
    padding: 16px 12px;
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-lg);
    background: var(--gray-50);
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
    font-family: var(--font-body);
  }
  .choice-btn:hover {
    border-color: var(--deep-blue);
    background: rgba(0,54,254,0.04);
  }
  .choice-btn .choice-icon {
    font-size: 26px;
    display: block;
    margin-bottom: 8px;
  }
  .choice-btn .choice-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-900);
    display: block;
    margin-bottom: 3px;
  }
  .choice-btn .choice-desc {
    font-size: 11px;
    color: var(--gray-400);
    line-height: 1.4;
    display: block;
  }
  .choice-btn.selected {
    border-color: var(--deep-blue);
    background: rgba(0,54,254,0.06);
  }

  /* ─── INBOUND path panel ─── */
  .unbound-card {
    background: linear-gradient(135deg, #0036FE 0%, #0029CC 100%);
    border-radius: var(--radius-lg);
    padding: 22px 24px;
    margin-bottom: 16px;
    color: white;
  }
  .unbound-card-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 6px;
  }
  .unbound-card-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
  }
  .unbound-card-body {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    line-height: 1.55;
  }

  .btn-unbound {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--orange);
    color: white;
    border: none;
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 4px 16px rgba(255,113,66,0.35);
    margin-bottom: 12px;
  }
  .btn-unbound:hover { background: #e05e32; transform: translateY(-1px); }

  .unbound-note {
    font-size: 12px;
    color: var(--gray-400);
    text-align: center;
    line-height: 1.5;
  }
  .unbound-note a { color: var(--deep-blue); font-weight: 600; text-decoration: none; }
  .unbound-note a:hover { text-decoration: underline; }

  /* ─── Waitlist form panel ─── */
  .shipping-notice {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    padding: 13px 16px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
  }
  .shipping-notice-icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 1px;
  }
  .shipping-notice-text {
    font-size: 12.5px;
    color: var(--gray-700);
    line-height: 1.5;
  }
  .shipping-notice-text strong { color: var(--gray-900); }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
  }
  .form-row.full { grid-template-columns: 1fr; }

  .field-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .field-label {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--gray-700);
    letter-spacing: 0.02em;
  }
  .field-input {
    font-family: var(--font-body);
    font-size: 13.5px;
    color: var(--gray-900);
    background: var(--gray-50);
    border: 1.5px solid var(--gray-100);
    border-radius: 10px;
    padding: 10px 14px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .field-input::placeholder { color: var(--gray-400); }
  .field-input:focus {
    border-color: var(--deep-blue);
    box-shadow: 0 0 0 3px rgba(0,54,254,0.08);
    background: white;
  }
  .field-input.error { border-color: #e53e3e; }

  .btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--deep-blue);
    color: white;
    border: none;
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 4px 16px rgba(0,54,254,0.3);
    margin-top: 6px;
  }
  .btn-submit:hover { background: var(--blue-dark); transform: translateY(-1px); }
  .btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

  .form-privacy {
    font-size: 11px;
    color: var(--gray-400);
    text-align: center;
    margin-top: 10px;
    line-height: 1.5;
  }
  .form-privacy a { color: var(--gray-400); }

  /* ─── Thank-you panel ─── */
  .thankyou-hero {
    text-align: center;
    padding: 8px 0 22px;
  }
  .thankyou-icon {
    width: 64px;
    height: 64px;
    background: var(--deep-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
  }
  .thankyou-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 8px;
  }
  .thankyou-sub {
    font-size: 13.5px;
    color: var(--gray-700);
    line-height: 1.6;
    max-width: 340px;
    margin: 0 auto;
  }

  .thankyou-divider {
    border: none;
    border-top: 1px solid var(--gray-100);
    margin: 22px 0 20px;
  }

  .share-section {
    text-align: center;
  }
  .share-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 8px;
  }
  .share-question {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
  }
  .share-sub {
    font-size: 12px;
    color: var(--gray-400);
    margin-bottom: 16px;
    line-height: 1.5;
  }
  .share-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
  }
  .btn-share-li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 20px;
    background: #0A66C2;
    color: white;
    border: none;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-share-li:hover { background: #084f99; transform: translateY(-1px); }
  .btn-share-li svg { width: 15px; height: 15px; fill: white; flex-shrink: 0; }

  .btn-share-copy {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 20px;
    background: var(--gray-50);
    color: var(--gray-700);
    border: 1.5px solid var(--gray-100);
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
  }
  .btn-share-copy:hover { border-color: var(--gray-700); background: white; }
  .btn-share-copy.copied { background: var(--deep-blue); color: white; border-color: var(--deep-blue); }

  .share-skip {
    display: block;
    margin-top: 14px;
    font-size: 12px;
    color: var(--gray-400);
    cursor: pointer;
    background: none;
    border: none;
    font-family: var(--font-body);
    transition: color 0.2s;
  }
  .share-skip:hover { color: var(--gray-700); }

  /* ─── Back link ─── */
  .back-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--gray-400);
    cursor: pointer;
    background: none;
    border: none;
    font-family: var(--font-body);
    margin-bottom: 18px;
    transition: color 0.2s;
    padding: 0;
  }
  .back-link:hover { color: var(--deep-blue); }

  /* ─── Error message ─── */
  .form-error {
    font-size: 11.5px;
    color: #e53e3e;
    margin-top: 3px;
    display: none;
  }
  .form-error.show { display: block; }

  @media (max-width: 480px) {
    .modal-header { padding: 28px 24px 24px; }
    .modal-body { padding: 22px 24px 28px; }
    .modal-title { font-size: 20px; }
    .choice-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .share-buttons { flex-direction: column; align-items: stretch; }
    .header-cards { display: none; }
  }