/* ─── Reset ──────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --coral: #F86258;
    --blue: #6495ED;
    --black: #1a1a1a;
    --white: #ffffff;
    --off-white: #faf9f7;
}

body {
    font-family: 'Mulish', sans-serif;
    background: var(--off-white);
    color: var(--black);
    overflow-x: hidden;
}

/* ─── Sticky nav ─────────────────────────────────────────── */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem clamp(1.5rem, 6vw, 8rem);
    background: var(--coral);
    transform: translateY(-80px);
    opacity: 0;
    /* GSAP drives the reveal — no transition needed */
}

.site-nav__logo {
    height: 44px;
    width: auto;
    display: block;
    margin-left: -4px;
}

.site-nav__logo-link {
    text-decoration: none;
}

.site-nav__tagline {
    display: block;
    font-family: 'Mulish', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 0.25rem;
    white-space: nowrap;
    text-decoration: none;
}

.site-nav__links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.site-nav__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
}

.site-nav__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.site-nav__hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-nav__hamburger.is-open span:nth-child(2) {
    opacity: 0;
}

.site-nav__hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-nav__ctaGroup {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

@media (max-width: 768px) {
    .site-nav__tagline {
        display: none;
    }

    .site-nav__ctaGroup {
        display: none;
    }

    .site-nav__hamburger {
        display: flex;
    }

    .site-nav__links {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--coral);
        padding: 0.5rem clamp(1.5rem, 6vw, 4rem) 1.25rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .site-nav__links.is-open {
        display: flex;
    }

    .site-nav__link {
        padding: 0.75rem 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .site-nav__link:last-child {
        border-bottom: none;
    }
}

.site-nav__link {
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s;
}

.site-nav__link:hover {
    color: var(--white);
}

.site-nav__cta {
    font-family: 'Mulish', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    transition: border-color 0.2s, background 0.2s;
}

.site-nav__cta:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.site-nav__cta--secondary {
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.65);
}

.site-nav__cta--secondary:hover {
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

/* ─── Intro section ─────────────────────────────────────── */
.intro {
    background: var(--coral);
    min-height: 100svh;
    padding: clamp(2rem, 3vw, 3rem) clamp(1.5rem, 6vw, 8rem) clamp(5rem, 10vw, 9rem);
    display: flex;
    align-items: flex-start;
}

.intro__inner {
    max-width: 1200px;
    width: 100%;
}

.intro__eyebrow {
    font-family: 'Mulish', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
}

.intro__headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 10vw, 110px);
    font-weight: 400;
    line-height: 0.88;
    color: var(--white);
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.intro__line-wrap {
    overflow: hidden;
}

.intro__sub {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    max-width: 620px;
    line-height: 1.65;
    margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.intro__wordmark {
    display: block;
    height: clamp(2.5rem, 4vw, 3.5rem);
    width: auto;
    margin-bottom: 2.5rem;
}

.intro__pillars {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

@media (max-width: 1100px) {
    .intro__pillars {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .intro__pillars {
        grid-template-columns: repeat(2, 1fr);
    }

    .intro--light .intro__inner {
        max-width: 100%;
        border-radius: 0;
        box-shadow: none;
    }
}

@media (max-width: 480px) {
    .intro__pillars {
        grid-template-columns: 1fr;
    }
}

.intro__pillar {
    background: var(--black);
    border-radius: 8px;
    padding: clamp(1.5rem, 2.5vw, 2rem);
}

.intro__pillar-label {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.7rem;
    letter-spacing: 0.08em;
    color: var(--coral);
    margin-bottom: 0.55rem;
}

.intro__pillar-title {
    font-family: 'Mulish', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.65rem;
}

.intro__pillar-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.intro__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.intro__cta-card {
    background: var(--white);
    border-radius: 8px;
    padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.75rem, 3vw, 2.75rem);
    box-shadow: 0 4px 24px rgba(26, 26, 26, 0.08);
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.intro__cta-card-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 400;
    color: var(--black);
    margin: 0 0 0.5rem;
    line-height: 1;
}

.intro__cta-card-text {
    font-family: 'Mulish', sans-serif;
    font-size: clamp(0.9rem, 1.4vw, 1.05rem);
    font-weight: 500;
    color: rgba(26, 26, 26, 0.6);
    margin: 0 0 1.5rem;
    max-width: 560px;
    line-height: 1.6;
}

.intro__cta {
    display: inline-block;
    font-family: 'Mulish', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--coral);
    background: var(--white);
    padding: 0.9rem 2.5rem;
    border-radius: 4px;
    transition: background 0.2s;
}

.intro__cta:hover {
    background: var(--off-white);
    color: var(--coral);
}

.intro__cta--secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.35);
    letter-spacing: 0.02em;
    text-transform: none;
}

.intro__cta--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Light variant — off-white background (homepage) */
.intro--light {
    background-color: var(--off-white);
    padding-top: clamp(7rem, 11vw, 9rem);
    position: relative;
    flex-direction: column;
    gap: clamp(2rem, 3vw, 2.5rem);
    align-items: flex-start;
}

/* Hero image slideshow */
.intro__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.intro__bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.intro__bg-slide.is-active {
    opacity: 1;
}

.intro--light::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
    z-index: 0;
}

.intro--light .intro__inner {
    position: relative;
    z-index: 2;
    background: var(--off-white);
    max-width: 700px;
    border-radius: 8px;
    padding: clamp(2rem, 4vw, 3.5rem) clamp(2rem, 4vw, 3.5rem) clamp(1.25rem, 2.5vw, 2rem);
    box-shadow: 0 12px 60px rgba(0, 0, 0, 0.14);
}

.intro--light .intro__eyebrow {
    color: var(--coral);
}

.intro--light .intro__headline {
    color: var(--black);
}

.intro--light .intro__sub {
    color: rgba(26, 26, 26, 0.65);
    margin-bottom: 0;
}

.intro--light .intro__cta {
    background: var(--coral);
    color: var(--white);
    padding: 1.1rem 3rem;
    font-size: 1rem;
    box-shadow: 0 6px 28px rgba(248, 98, 88, 0.45);
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.intro--light .intro__cta:hover {
    background: #e55049;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(248, 98, 88, 0.55);
}

.intro--light .intro__cta--secondary {
    color: rgba(26, 26, 26, 0.7);
    border-color: rgba(26, 26, 26, 0.25);
}

.intro--light .intro__cta--secondary:hover {
    background: rgba(26, 26, 26, 0.05);
    color: var(--black);
    border-color: rgba(26, 26, 26, 0.45);
}

.intro--light .intro__pillar {
    background: var(--white);
    border: 1px solid rgba(26, 26, 26, 0.08);
    border-left: 3px solid rgba(26, 26, 26, 0.2);
    box-shadow: 0 2px 16px rgba(26, 26, 26, 0.06);
}

.intro--light>.intro__pillars {
    width: 100%;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.intro--light .intro__pillar-title {
    color: var(--black);
}

.intro--light .intro__pillar-label {
    color: var(--coral);
}

.intro--light .intro__pillar-text {
    color: rgba(26, 26, 26, 0.6);
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100svh;
    background: var(--coral);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(2rem, 6vw, 5rem) clamp(1.5rem, 6vw, 8rem);
}

.hero__headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.6rem, 12.5vw, 16rem);
    font-weight: 400;
    line-height: 0.88;
    letter-spacing: 0.01em;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

/* Each line gets its own overflow-hidden wrapper for the clip reveal */
.hero__line-wrap {
    overflow: hidden;
}

.hero__wordmark {
    width: clamp(140px, 22vw, 380px);
    opacity: 0;
    /* GSAP animates this in */
}

/* ─── Vendor section ─────────────────────────────────────── */
.vendor {
    background: var(--black);
    padding: clamp(5rem, 12vw, 11rem) clamp(1.5rem, 6vw, 8rem);
    position: relative;
    overflow: hidden;
}

.vendor__inner {
    max-width: 1100px;
    margin-inline: auto;
    position: relative;
    z-index: 1;
}

.vendor__top {
    display: contents;
}

.vendor__macbook {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.32;
    mask-image: linear-gradient(to bottom, black 40%, transparent 68%);
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 68%);
}

.vendor__macbook img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.vendor__eyebrow {
    font-family: 'Mulish', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 1.5rem;
}

.vendor__headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 9vw, 11rem);
    font-weight: 400;
    line-height: 0.88;
    color: var(--white);
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.vendor__line-wrap {
    overflow: hidden;
}

.vendor__body {
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    max-width: 560px;
    line-height: 1.6;
    margin-bottom: clamp(3rem, 7vw, 6rem);
}

.vendor__pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(2rem, 4vw, 4rem);
    margin-bottom: clamp(3rem, 6vw, 5rem);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: clamp(2rem, 4vw, 3.5rem);
}

.vendor__pillar-num {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: var(--coral);
    margin-bottom: 0.75rem;
}

.vendor__pillar-title {
    font-family: 'Mulish', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.6rem;
}

.vendor__pillar-text {
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
}

.vendor__pillar-text a,
.vendor__pillar-text a:visited,
.vendor__body a,
.vendor__body a:visited {
    color: var(--coral);
}

.vendor__pillar-text a:hover,
.vendor__body a:hover {
    color: var(--coral);
    opacity: 0.8;
}

.vendor__cta {
    display: inline-block;
    font-family: 'Mulish', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--black);
    background: var(--coral);
    padding: 0.9rem 2.5rem;
    border-radius: 4px;
    transition: background 0.2s;
}

.vendor__cta:hover {
    background: #e55049;
    color: var(--black);
}

.vendor__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.vendor__cta--secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.vendor__cta--secondary:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

/* ─── Journey (How it works steps) ──────────────────────── */
.journey {
    list-style: none;
    margin: 2rem 0 2.5rem;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    grid-auto-flow: column;
    column-gap: 3rem;
}

.journey__step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.journey__track {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 2.75rem;
}

.journey__num {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: var(--coral);
    color: var(--white);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.journey__line {
    width: 2px;
    flex-grow: 1;
    min-height: 2rem;
    background: var(--coral);
    opacity: 0.2;
    margin-top: 0.4rem;
    margin-bottom: 0.4rem;
}

/* Last step in each column suppresses the connector */
.journey__step:nth-child(3) .journey__line,
.journey__step:last-child .journey__line {
    display: none;
}

.journey__content {
    padding-top: 0.4rem;
    padding-bottom: 2.25rem;
}

.journey__title {
    font-family: 'Mulish', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--off-white);
    margin-bottom: 0.5rem;
}

.journey__text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
}

.journey__img {
    display: block;
    width: 100%;
    max-width: 520px;
    border-radius: 8px;
    margin-top: 1.25rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.journey__img-pair {
    display: flex;
    gap: 1rem;
    margin-top: 1.25rem;
}

.journey__img-pair .journey__img {
    margin-top: 0;
    flex: 1;
    max-width: none;
}

@media (max-width: 700px) {
    .journey {
        grid-template-columns: 1fr;
        grid-template-rows: unset;
        grid-auto-flow: row;
    }

    /* Restore connector on step 3 in single-column layout */
    .journey__step:nth-child(3) .journey__line {
        display: block;
    }
}

/* ─── Vendor light variant (off-white bg) ────────────────── */
.vendor--light {
    background: var(--off-white);
}

.vendor--light .vendor__headline {
    color: var(--black);
}

.vendor--light .vendor__body {
    color: rgba(26, 26, 26, 0.65);
}

.vendor--light .journey__title {
    color: var(--black);
}

.vendor--light .journey__text {
    color: rgba(26, 26, 26, 0.6);
}

.vendor--light .journey__line {
    background: var(--black);
    opacity: 0.12;
}

/* ─── FAQ section ────────────────────────────────────────── */
.faq {
    background: var(--black);
    padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 6vw, 8rem);
}

.faq__inner {
    max-width: 860px;
    margin-inline: auto;
}

.faq__eyebrow {
    font-family: 'Mulish', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 1.5rem;
}

.faq__headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 9vw, 10rem);
    font-weight: 400;
    line-height: 0.88;
    color: var(--white);
    margin-bottom: clamp(3rem, 7vw, 6rem);
}

.faq__line-wrap {
    overflow: hidden;
}

.faq__group {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.faq__group-label {
    font-family: 'Mulish', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--coral);
    opacity: 0.8;
}

.faq__list {
    border-top: none;
}

.faq__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq__q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.5rem 0;
    font-family: 'Mulish', sans-serif;
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    font-weight: 700;
    color: var(--white);
    text-align: left;
    transition: color 0.2s;
}

.faq__q:hover {
    color: var(--coral);
}

.faq__icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: relative;
    transition: border-color 0.2s, transform 0.35s ease;
}

.faq__icon::before,
.faq__icon::after {
    content: '';
    position: absolute;
    background: var(--white);
    border-radius: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.25s, transform 0.25s;
}

.faq__icon::before {
    width: 10px;
    height: 2px;
}

.faq__icon::after {
    width: 2px;
    height: 10px;
}

.faq__q[aria-expanded="true"] .faq__icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq__q[aria-expanded="true"] .faq__icon {
    border-color: var(--coral);
}

.faq__a-wrap {
    height: 0;
    overflow: hidden;
}

.faq__a {
    padding-bottom: 1.5rem;
    font-size: 0.97rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
    max-width: 680px;
}

.faq__link {
    color: var(--coral);
    text-decoration: none;
    border-bottom: 1px solid rgba(248, 98, 88, 0.4);
    transition: border-color 0.2s;
}

.faq__link:hover {
    border-color: var(--coral);
}

.faq__a+.faq__a {
    padding-top: 0;
    margin-top: -0.75rem;
}

.faq__a strong {
    color: rgba(255, 255, 255, 0.8);
}

.faq__a-wrap ul {
    list-style: none;
    padding: 0;
    margin: 0 0 0.75rem 0;
}

.faq__a-wrap li {
    font-size: 0.97rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
    max-width: 680px;
    padding: 0.3rem 0 0.3rem 1.25rem;
    position: relative;
}

.faq__a-wrap li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75em;
    width: 5px;
    height: 5px;
    background: var(--coral);
    border-radius: 50%;
    opacity: 0.7;
}

/* ─── Consumer section ───────────────────────────────────── */
.consumer {
    background: var(--off-white);
    padding: clamp(5rem, 12vw, 11rem) clamp(1.5rem, 6vw, 8rem);
}

.consumer__inner {
    max-width: 1100px;
    margin-inline: auto;
}

.consumer__eyebrow {
    font-family: 'Mulish', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 1.5rem;
}

.consumer__headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 9vw, 11rem);
    font-weight: 400;
    line-height: 0.88;
    color: var(--black);
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.consumer__line-wrap {
    overflow: hidden;
}

.consumer__body {
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    font-weight: 600;
    color: rgba(26, 26, 26, 0.6);
    max-width: 560px;
    line-height: 1.6;
    margin-bottom: clamp(3rem, 7vw, 6rem);
}

.consumer__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(2rem, 4vw, 4rem);
    border-top: 1px solid rgba(26, 26, 26, 0.12);
    padding-top: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.consumer__stat strong {
    display: block;
    font-family: 'Mulish', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.consumer__stat span {
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(26, 26, 26, 0.55);
    line-height: 1.65;
}

.consumer__ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.consumer__store-btn {
    display: inline-flex;
    opacity: 1;
    transition: opacity 0.2s;
    will-change: opacity, transform;
}

.consumer__store-btn:hover {
    opacity: 0.8;
}

.consumer__store-badge {
    height: 52px;
    width: auto;
    display: block;
}

.consumer__store-btn--disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

.consumer__app-notice {
    margin-top: 1rem;
    font-family: 'Mulish', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(26, 26, 26, 0.45);
    letter-spacing: 0.02em;
}

/* ─── reCAPTCHA badge — move to bottom-left to avoid Tawk.to clash ── */
.grecaptcha-badge {
    left: 14px !important;
    right: auto !important;
}

/* ─── Footer ─────────────────────────────────────────────── */
.site-footer {
    background: var(--coral);
    padding: clamp(1.5rem, 4vw, 3rem) clamp(1.5rem, 6vw, 8rem);
}

.site-footer__inner {
    max-width: 1100px;
    margin-inline: auto;
    display: grid;
    gap: 2.5rem;
}

.site-footer__logo {
    height: 28px;
    width: auto;
    opacity: 0.9;
}

.site-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 2rem;
}

.site-footer__links a {
    font-family: 'Mulish', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer__links a:hover {
    color: var(--white);
}

.site-footer__socials {
    display: flex;
    gap: 1.25rem;
}

.site-footer__socials a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

.site-footer__socials a:hover {
    color: var(--white);
}

.site-footer__socials svg {
    width: 22px;
    height: 22px;
}

.site-footer__socials-instagram {
    gap: 0.6rem;
}

.site-footer__socials-instagram svg {
    width: 32px;
    height: 32px;
}

.site-footer__socials-instagram span {
    font-family: 'Mulish', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
}

.site-footer__legal p {
    font-family: 'Mulish', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
}

.site-footer__disclaimer {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ─── Scroll hint ────────────────────────────────────────── */
.hero__scroll-hint {
    position: absolute;
    bottom: clamp(1.5rem, 4vw, 3rem);
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    /* GSAP animates this in */
    color: rgba(255, 255, 255, 0.6);
    animation: scrollBounce 1.6s ease-in-out 1.6s infinite;
}

.hero__scroll-hint svg {
    width: 32px;
    height: 32px;
    display: block;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

.home-hero__cta-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.btn-indistamp {
    background-color: var(--indistamp-warm-white);
    color: var(--indistamp-red);
    border: none;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    letter-spacing: 0.02em;
}

.btn-indistamp:hover {
    background-color: #e8645a;
    color: var(--indistamp-red);
}

.btn-outline-light {
    border-radius: 6px;
}

/* ─── Phone ticker strip ─────────────────────────────────── */
.phone-ticker {
    background: var(--black);
    padding: clamp(3rem, 6vw, 5rem) 0;
    overflow: hidden;
}

.phone-ticker__track {
    display: flex;
    gap: clamp(1rem, 2.5vw, 2rem);
    width: max-content;
    animation: tickerScroll 30s linear infinite;
}

.phone-ticker__phone {
    height: clamp(200px, 28vw, 420px);
    width: auto;
    display: block;
    flex-shrink: 0;
    border-radius: 16px;
}

@keyframes tickerScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.phone-ticker:hover .phone-ticker__track {
    animation-play-state: paused;
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
    .phone-ticker__track {
        animation: none;
    }
}

/* (parallax removed) */