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

:root {
    --coral: #F86258;
    --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: 32px;
    width: auto;
}

.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__ctaGroup {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.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);
}

/* ─── 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;
    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__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);
}

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

.faq__inner {
    max-width: 860px;
}

.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;
}

.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: 0.5;
    pointer-events: none;
    transition: opacity 0.2s;
    will-change: opacity, transform;
}

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

.consumer__store-btn--disabled {
    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;
}

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

.site-footer__inner {
    max-width: 1100px;
    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__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) */