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

:root {
    --pink: #FF4D6D;
    --amber: #F9A825;
    --gold: #FFD93D;
    --teal: #0CB47A;
    --teal-lt: #7FE0C2;
    --white: #F0F0F8;
    --muted: #6B6B88;
    --night: #0D0D1C;
    --card: rgba(13,13,28,0.72);
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ── FULL-PAGE CINEMATIC BACKGROUND ── */
.bg-scene {
    position: fixed;
    inset: 0;
    z-index: 0;
}

/* Primary photo — warm golden-hour bar/café scene */
.bg-photo {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1470229722913-7c0e2dbbafd3?w=1800&q=85&auto=format&fit=crop');
    background-size: cover;
    background-position: center 30%;
    animation: slowZoom 30s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
    }
}

/* Multi-layer gradient overlay — dark at top/bottom, clear in middle */
.bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,8,20,0.97) 0%, rgba(10,8,20,0.78) 18%, rgba(10,8,20,0.60) 40%, rgba(10,8,20,0.68) 65%, rgba(10,8,20,0.92) 85%, rgba(10,8,20,0.99) 100% ), linear-gradient(135deg, rgba(255,77,109,0.12) 0%, rgba(249,168,37,0.08) 50%, rgba(12,180,122,0.06) 100% );
}

/* Subtle film grain */
.bg-grain {
    position: absolute;
    inset: 0;
    opacity: 0.055;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── CONTENT LAYER ── */
.content {
    position: relative;
    z-index: 1;
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10,8,20,0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nav-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    font-size: 50px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--pink), var(--amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

    .nav-logo span {
        font-style: normal;
        -webkit-text-fill-color: rgba(240,240,248,0.9);
    }

.nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-signin {
    font-size: 13px;
    font-weight: 500;
    color: rgba(240,240,248,0.7);
    text-decoration: none;
    transition: color 0.15s;
}

    .nav-signin:hover {
        color: var(--white);
    }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--pink), var(--amber));
    border: none;
    border-radius: 50px;
    color: white;
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    font-size: 14px;
    padding: 9px 22px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.15s, transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 4px 18px rgba(255,77,109,0.3);
}

    .nav-cta:hover {
        opacity: 0.88;
        transform: translateY(-1px);
        box-shadow: 0 6px 24px rgba(255,77,109,0.4);
    }

/* ── HERO ── */
.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

.hero {
    min-height: 90vh;
    display: grid;
    grid-template-columns: 1fr 580px;
    grid-template-rows: auto auto;
    gap: 48px;
    align-items: center;
    padding: 80px 0 60px;
}

/* Desktop: copy top-left, phone top-right, actions bottom-left */
.hero-copy {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
}

.phone-showcase {
    grid-column: 2;
    grid-row: 1 / 3;
}

.hero-actions-wrap {
    grid-column: 1;
    grid-row: 2;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    opacity: 0;
    animation: fadeUp 0.7s 0.65s forwards;
}

/* ── SIGN IN INLINE LINK ── */
.signin-inline {
    font-size: 13px;
    color: rgba(220,220,240,0.75);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(220,220,240,0.4);
    transition: color 0.15s, text-decoration-color 0.15s;
}

    .signin-inline:hover {
        color: var(--white);
        text-decoration-color: rgba(240,240,248,0.7);
    }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 22px;
    opacity: 0;
    animation: fadeUp 0.7s 0.2s forwards;
}


.hero-headline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(44px, 6vw, 68px);
    line-height: 1.08;
    margin-bottom: 26px;
    text-shadow: 0 2px 40px rgba(0,0,0,0.5);
    opacity: 0;
    animation: fadeUp 0.7s 0.35s forwards;
}

    .hero-headline em {
        font-style: normal;
        background: linear-gradient(135deg, var(--pink), var(--amber));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.hero-body {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(220,220,240,0.82);
    margin-bottom: 38px;
    max-width: 480px;
    text-shadow: 0 1px 12px rgba(0,0,0,0.4);
    opacity: 0;
    animation: fadeUp 0.7s 0.5s forwards;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    opacity: 0;
    animation: fadeUp 0.7s 0.65s forwards;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--pink), var(--amber));
    border: none;
    border-radius: 50px;
    color: white;
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    font-size: 18px;
    padding: 17px 38px;
    cursor: pointer;
    text-decoration: none;
    align-self: flex-start;
    white-space: nowrap;
    transition: opacity 0.15s, transform 0.18s, box-shadow 0.18s;
    box-shadow: 0 8px 32px rgba(255,77,109,0.35);
}

    .hero-btn:hover {
        opacity: 0.9;
        transform: translateY(-2px);
        box-shadow: 0 14px 40px rgba(255,77,109,0.45);
    }

.hero-btn-sub {
    font-size: 12px;
    color: rgba(220,220,240,0.55);
    letter-spacing: 0.04em;
}

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.35);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 0.7s 1.2s forwards;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 1.5px solid rgba(255,255,255,0.3);
    border-bottom: 1.5px solid rgba(255,255,255,0.3);
    transform: rotate(45deg);
    animation: scrollBounce 1.6s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%,100% {
        transform: rotate(45deg) translateY(0);
    }

    50% {
        transform: rotate(45deg) translateY(5px);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── APP SCREENSHOT PHONE FRAME ── */
.phone-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeUp 0.9s 0.8s forwards;
    overflow: visible;
}

.phone-glow-ring {
    position: absolute;
    width: 640px;
    height: 640px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,77,109,0.22), rgba(249,168,37,0.12) 50%, transparent 70%);
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%,100% {
        opacity: 0.7;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.06);
    }
}

.phone-frame {
    width: 560px;
    background: #0D0D1C;
    border: 2px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.04), inset 0 1px 0 rgba(255,255,255,0.08);
    overflow: hidden;
    position: relative;
}

.phone-notch {
    display: none;
}

.phone-screen-img {
    width: 325px;
    display: block;
}

.phone-screen-placeholder {
    width: 100%;
    aspect-ratio: 9/19;
    background: linear-gradient(160deg, #141428 0%, #0a0a1c 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    text-align: center;
}

.placeholder-icon {
    font-size: 40px;
}

.placeholder-text {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    line-height: 1.5;
}

/* Map preview inside placeholder */
.mini-map {
    width: 100%;
    flex: 1;
    background: linear-gradient(160deg, #1a2535 0%, #0f1a28 100%);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    margin-bottom: 8px;
}

    .mini-map::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
        background-size: 18px 18px;
    }

.mdot {
    position: absolute;
    border-radius: 50%;
    border: 2px solid #0D0D1C;
}

.mdot-you {
    width: 14px;
    height: 14px;
    background: #0CB47A;
    top: 52%;
    left: 48%;
    box-shadow: 0 0 0 5px rgba(12,180,122,0.2);
}

.mdot-a {
    width: 10px;
    height: 10px;
    background: #FF4D6D;
    top: 35%;
    left: 62%;
}

.mdot-b {
    width: 10px;
    height: 10px;
    background: #F9A825;
    top: 65%;
    left: 68%;
}

.mdot-c {
    width: 10px;
    height: 10px;
    background: #FFD93D;
    top: 40%;
    left: 30%;
}

.mdot-d {
    width: 10px;
    height: 10px;
    background: #7FE0C2;
    top: 70%;
    left: 35%;
}

.pulse-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(12,180,122,0.35);
    width: 50px;
    height: 50px;
    top: calc(52% - 18px);
    left: calc(48% - 18px);
    animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 20px;
    }

    .hero-body {
        margin-bottom: 0;
    }
    /* mobile order: copy → phone → actions (phone just before the button) */
    .hero-copy {
        grid-column: 1;
        grid-row: 1;
    }

    .phone-showcase {
        grid-column: 1;
        grid-row: 2;
        justify-content: center;
    }

    .hero-actions-wrap {
        grid-column: 1;
        grid-row: 3;
    }

    .phone-screen-img {
        width: 100%;
        max-width: 340px;
        display: block;
        margin: 0 auto;
        border-radius: 14px;
        box-shadow: 0 24px 60px rgba(0,0,0,0.6);
    }

    .phone-glow-ring {
        display: none;
    }
}

.stat-strip {
    position: relative;
    z-index: 2;
    background: rgba(10,8,20,0.7);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 28px 0;
}

.stat-strip-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.stat {
    text-align: center;
}

.stat-val {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--pink), var(--amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 12px;
    color: rgba(220,220,240,0.5);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ── PHOTO GRID SECTION ── */
.photo-section {
    position: relative;
    padding: 100px 0;
}

/* Second background photo — different scene, scrolls with page */
.photo-section-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1554118811-1e0d58224f24?w=1800&q=85&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}

.photo-section-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,8,20,0.96) 0%, rgba(10,8,20,0.72) 50%, rgba(10,8,20,0.96) 100%);
}

.photo-section-content {
    position: relative;
    z-index: 1;
}

.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 16px;
    text-align: center;
}

.section-headline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 38px;
    text-align: center;
    margin-bottom: 56px;
    color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: rgba(13,13,28,0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

    .feature-card:hover {
        transform: translateY(-6px);
        background: rgba(13,13,28,0.25);
        border-color: rgba(255,255,255,0.22);
        box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06);
    }

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
    }

    .feature-card:nth-child(1)::before {
        background: linear-gradient(90deg, var(--pink), var(--amber));
    }

    .feature-card:nth-child(2)::before {
        background: linear-gradient(90deg, var(--teal), var(--gold));
    }

    .feature-card:nth-child(3)::before {
        background: linear-gradient(90deg, var(--amber), var(--pink));
    }

    .feature-card:nth-child(4)::before {
        background: linear-gradient(90deg, var(--gold), var(--teal));
    }

    .feature-card:nth-child(5)::before {
        background: linear-gradient(90deg, var(--teal-lt), var(--pink));
    }

    .feature-card:nth-child(6)::before {
        background: linear-gradient(90deg, var(--pink), var(--gold));
    }

.feature-icon {
    font-size: 28px;
    margin-bottom: 14px;
}

.feature-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(180,180,210,0.75);
}

/* ── MANIFESTO SECTION — over third background ── */
.manifesto-section {
    position: relative;
    padding: 120px 0;
    text-align: center;
}

.manifesto-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1501339847302-ac426a4a7cbb?w=1800&q=80&auto=format&fit=crop');
    background-size: cover;
    background-position: center 40%;
    background-attachment: scroll;
}

.manifesto-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,8,20,0.97) 0%, rgba(10,8,20,0.85) 40%, rgba(10,8,20,0.97) 100%);
}

.manifesto-content {
    position: relative;
    z-index: 1;
}

.manifesto-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(22px, 3.5vw, 36px);
    line-height: 1.5;
    max-width: 700px;
    margin: 0 auto 24px;
    color: var(--white);
}

    .manifesto-quote span {
        background: linear-gradient(135deg, var(--pink), var(--amber));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.manifesto-sub {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(200,200,225,0.65);
    max-width: 520px;
    margin: 0 auto;
}

.drinks-bar {
    font-size: 28px;
    letter-spacing: 0.5em;
    text-align: center;
    padding: 24px 0;
    opacity: 0.6;
}

/* ── CTA SECTION ── */
.cta-section {
    position: relative;
    padding: 120px 0;
    text-align: center;
}

.cta-section-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1543269865-cbf427effbad?w=1800&q=85&auto=format&fit=crop');
    background-size: cover;
    background-position: center 40%;
}

.cta-section-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,8,20,0.96) 0%, rgba(10,8,20,0.72) 50%, rgba(10,8,20,0.96) 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-headline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 44px;
    margin-bottom: 14px;
}

.cta-sub {
    font-size: 16px;
    color: rgba(200,200,225,0.65);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--pink), var(--amber));
    border: none;
    border-radius: 50px;
    color: white;
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    font-size: 20px;
    padding: 18px 44px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 10px 40px rgba(255,77,109,0.35);
    transition: opacity 0.15s, transform 0.18s, box-shadow 0.18s;
}

    .cta-btn:hover {
        opacity: 0.9;
        transform: translateY(-3px);
        box-shadow: 0 16px 50px rgba(255,77,109,0.45);
    }

.cta-note {
    font-size: 12px;
    color: rgba(200,200,225,0.4);
    margin-top: 18px;
    letter-spacing: 0.05em;
}

/* ── FOOTER ── */
footer {
    background: rgba(8,6,16,0.98);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 40px 0;
    position: relative;
    z-index: 1;
}

.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-logo {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    font-size: 22px;
    background: linear-gradient(135deg, var(--pink), var(--amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links {
    display: flex;
    gap: 24px;
}

    .footer-links a {
        font-size: 13px;
        color: rgba(200,200,225,0.45);
        text-decoration: none;
        transition: color 0.15s;
    }

        .footer-links a:hover {
            color: rgba(200,200,225,0.8);
        }

.footer-copy {
    font-size: 12px;
    color: rgba(200,200,225,0.3);
}

/* ── HOW IT WORKS ── */
.hiw-section {
    position: relative;
    z-index: 2;
    padding: 100px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hiw-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1800&q=85&auto=format&fit=crop');
    background-size: cover;
    background-position: center 35%;
    background-attachment: scroll;
}

.hiw-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,8,20,0.97) 0%, rgba(10,8,20,0.88) 30%, rgba(10,8,20,0.82) 50%, rgba(10,8,20,0.88) 70%, rgba(10,8,20,0.97) 100% );
}

.hiw-content {
    position: relative;
    z-index: 1;
}

.hiw-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 56px;
    position: relative;
}

    .hiw-steps::before {
        content: '';
        position: absolute;
        top: 36px;
        left: calc(12.5% + 8px);
        right: calc(12.5% + 8px);
        height: 1px;
        background: linear-gradient(90deg, var(--pink), var(--amber), var(--teal));
        opacity: 0.3;
        z-index: 0;
    }

.hiw-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.hiw-num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    background: #0D0D1C;
}

.hiw-step:nth-child(1) .hiw-num {
    background: radial-gradient(circle at center, rgba(255,77,109,0.15) 0%, #0D0D1C 70%);
    border: 1.5px solid rgba(255,77,109,0.5);
    color: var(--pink);
    box-shadow: 0 0 0 4px rgba(255,77,109,0.08);
}

.hiw-step:nth-child(2) .hiw-num {
    background: radial-gradient(circle at center, rgba(249,168,37,0.15) 0%, #0D0D1C 70%);
    border: 1.5px solid rgba(249,168,37,0.5);
    color: var(--amber);
    box-shadow: 0 0 0 4px rgba(249,168,37,0.08);
}

.hiw-step:nth-child(3) .hiw-num {
    background: radial-gradient(circle at center, rgba(12,180,122,0.15) 0%, #0D0D1C 70%);
    border: 1.5px solid rgba(12,180,122,0.5);
    color: var(--teal);
    box-shadow: 0 0 0 4px rgba(12,180,122,0.08);
}

.hiw-step:nth-child(4) .hiw-num {
    background: radial-gradient(circle at center, rgba(255,217,61,0.15) 0%, #0D0D1C 70%);
    border: 1.5px solid rgba(255,217,61,0.5);
    color: var(--gold);
    box-shadow: 0 0 0 4px rgba(255,217,61,0.08);
}

.hiw-icon {
    font-size: 28px;
    margin-bottom: 16px;
}

.hiw-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.hiw-desc {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(180,180,210,0.7);
}

.hiw-signin-row {
    text-align: center;
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.hiw-signin-link {
    font-size: 13px;
    color: rgba(220,220,240,0.5);
    text-decoration: none;
    cursor: default;
}

    .hiw-signin-link span {
        color: rgba(220,220,240,0.8);
        text-decoration: underline;
        text-underline-offset: 3px;
        transition: color 0.15s;
        cursor: pointer;
    }

        .hiw-signin-link span:hover {
            color: var(--white);
        }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .hero {
        min-height: 85vh;
        padding: 60px 0 80px;
    }

    .hero-headline {
        font-size: 38px;
    }

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

    .stat-strip-inner {
        justify-content: center;
        gap: 32px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .hiw-steps {
        grid-template-columns: 1fr 1fr;
        gap: 32px 16px;
    }

        .hiw-steps::before {
            display: none;
        }

    /* Scale down large buttons so text never wraps on narrow screens */
    .hero-btn {
        font-size: 15px;
        padding: 14px 24px;
        align-self: stretch;
        justify-content: center;
    }

    .cta-btn {
        font-size: 16px;
        padding: 15px 28px;
    }

    .nav-cta {
        font-size: 13px;
        padding: 8px 16px;
    }
}

/* ── MODAL CSS VARIABLES (mirrors Register.css :root) ── */
/* Landing.css doesn't use :root vars elsewhere, so we scope them here */
#privacyModal, #contactModal {
    --gold: #FFD93D;
    --white: #F0F0F8;
    --muted: rgba(200,200,225,0.55);
}

/* ── PRIVACY & TERMS MODAL (exact copy from Register.css) ── */
#privacyModal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

    #privacyModal.open {
        display: flex;
    }

/* ── CONTACT MODAL (same chrome as privacy) ── */
#contactModal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

    #contactModal.open {
        display: flex;
    }

/* ── SHARED MODAL BOX / CHROME ── */
.privacy-box {
    background: rgba(16,14,30,0.96);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 20px;
    width: 100%;
    max-width: 680px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.7);
}

.privacy-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
}

.privacy-header-title {
    font-size: 15px;
    font-weight: 700;
    color: #F0F0F8;
    font-family: 'DM Sans', sans-serif;
}

.privacy-close {
    background: none;
    border: none;
    color: rgba(200,200,225,0.55);
    font-size: 18px;
    cursor: pointer;
    padding: 2px 6px;
    line-height: 1;
}

    .privacy-close:hover {
        color: #F0F0F8;
    }

.privacy-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    font-family: 'DM Sans', sans-serif;
    -webkit-overflow-scrolling: touch;
}

/* ── LEGAL CONTENT (exact copy from Register.css) ── */
.legal-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 24px;
    margin-bottom: 8px;
    color: #F0F0F8;
}

.legal-updated {
    font-size: 12px;
    color: rgba(200,200,225,0.55);
    margin-bottom: 24px;
}

.legal-toc {
    background: rgba(255,255,255,0.04);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 28px;
}

.legal-toc-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(200,200,225,0.55);
    margin-bottom: 10px;
}

.legal-toc ol {
    padding-left: 18px;
    color: rgba(200,200,225,0.55);
    font-size: 13px;
    line-height: 1.9;
    margin: 0;
}

.legal-toc a:hover {
    color: #F0F0F8;
}

.legal-section {
    margin-bottom: 28px;
}

    .legal-section h2 {
        font-size: 15px;
        font-weight: 700;
        color: #FFD93D;
        margin-bottom: 10px;
    }

    .legal-section p, .legal-section li {
        font-size: 13px;
        line-height: 1.75;
        color: rgba(200,200,225,0.8);
        margin-bottom: 8px;
    }

    .legal-section ul, .legal-section ol {
        padding-left: 20px;
    }

.legal-contact {
    font-size: 13px;
    color: rgba(200,200,225,0.55);
    line-height: 1.75;
}

.legal-highlight {
    background: rgba(255,77,109,0.08);
    border-left: 3px solid #FF4D6D;
    border-radius: 0 8px 8px 0;
    padding: 14px 18px;
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(200,200,225,0.8);
}

.legal-section strong {
    color: #F0F0F8;
}

@keyframes privacySpin {
    to {
        transform: rotate(360deg);
    }
}

/* ── CONTACT FORM FIELDS ── */
.ctc-form-group {
    margin-bottom: 16px;
}

.ctc-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: rgba(200,200,225,0.55);
    margin-bottom: 6px;
    font-family: 'DM Sans', sans-serif;
}

.ctc-input {
    width: 100%;
    box-sizing: border-box;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    color: #F0F0F8;
    outline: none;
    transition: border-color 0.15s;
}

    .ctc-input:focus {
        border-color: rgba(255,217,61,0.5);
    }

    .ctc-input::placeholder {
        color: rgba(200,200,225,0.25);
    }

.ctc-textarea {
    resize: vertical;
    min-height: 110px;
}

.ctc-btn-primary {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, #FF4D6D, #F9A825);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 4px;
    transition: opacity 0.15s, transform 0.15s;
}

    .ctc-btn-primary:hover:not(:disabled) {
        opacity: 0.88;
        transform: translateY(-1px);
    }

    .ctc-btn-primary:disabled {
        opacity: 0.55;
        cursor: not-allowed;
    }

/* ── Desktop Preview Section ─────────────────────────────────── */
.desktop-preview-section {
    position: relative;
    padding: 80px 0 90px;
    text-align: center;
    overflow: hidden;
}

.desktop-preview-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1800&q=85&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    z-index: 0;
}

.desktop-preview-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,8,20,0.96) 0%, rgba(10,8,20,0.78) 50%, rgba(10,8,20,0.96) 100%);
    z-index: 1;
}

.desktop-preview-section .wrap {
    position: relative;
    z-index: 2;
}

.desktop-preview-sub {
    max-width: 560px;
    margin: 0 auto 40px;
    font-size: 16px;
    line-height: 1.65;
    color: rgba(220,220,240,0.65);
    font-family: 'DM Sans', sans-serif;
}

@media (max-width: 768px) {
    .desktop-preview-section {
        padding: 56px 0 64px;
    }

    .desktop-preview-sub {
        font-size: 14px;
    }
}

/* ── Phone Shell ─────────────────────────────────────────────── */
.phone-shell {
    position: relative;
    width: 285px;
    background: linear-gradient(160deg, #1a1a2e 0%, #0f0f1e 100%);
    border-radius: 44px;
    padding: 3px;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.13), 0 0 0 3px rgba(255,255,255,0.04), 0 40px 80px rgba(0,0,0,0.75), 0 0 60px rgba(255,77,109,0.12), inset 0 1px 0 rgba(255,255,255,0.10);
}

/* side buttons */
.phone-shell-side-btn {
    position: absolute;
    background: linear-gradient(180deg, #2a2a40 0%, #18182c 100%);
    border-radius: 3px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 1px 0 4px rgba(0,0,0,0.4);
}

.phone-shell-vol-up {
    width: 3px;
    height: 30px;
    left: 0;
    top: 88px;
    border-radius: 2px 0 0 2px;
}

.phone-shell-vol-down {
    width: 3px;
    height: 30px;
    left: 0;
    top: 126px;
    border-radius: 2px 0 0 2px;
}

.phone-shell-power {
    width: 3px;
    height: 44px;
    right: 0;
    top: 108px;
    border-radius: 0 2px 2px 0;
}

.phone-shell-inner {
    background: #000;
    border-radius: 42px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* notch bar */
.phone-shell-notch {
    background: #000;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.phone-shell-speaker {
    width: 48px;
    height: 5px;
    background: #1a1a28;
    border-radius: 3px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.8);
}

.phone-shell-camera {
    width: 9px;
    height: 9px;
    background: #111122;
    border-radius: 50%;
    border: 1px solid #222234;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.04), inset 0 1px 2px rgba(0,0,0,0.9);
}

/* screen */
.phone-shell-screen {
    overflow: hidden;
    line-height: 0;
}

    .phone-shell-screen .phone-screen-img {
        width: 100%;
        height: auto;
        display: block;
    }

/* home indicator */
.phone-shell-home {
    background: #000;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .phone-shell-home::after {
        content: '';
        display: block;
        width: 90px;
        height: 4px;
        background: rgba(255,255,255,0.25);
        border-radius: 3px;
    }

/* soft glow behind phone */
.phone-showcase::before {
    content: '';
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite;
    z-index: 0;
}

.phone-shell {
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
    .phone-shell {
        width: 220px;
        border-radius: 36px;
    }

    .phone-shell-inner {
        border-radius: 34px;
    }

    .phone-shell-notch {
        height: 28px;
    }

    .phone-shell-vol-up {
        top: 72px;
        height: 24px;
    }

    .phone-shell-vol-down {
        top: 104px;
        height: 24px;
    }

    .phone-shell-power {
        top: 88px;
        height: 36px;
    }
}

/* ── Browser Chrome (Desktop Preview) ───────────────────────── */
.desktop-preview-frame {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.07), 0 40px 90px rgba(0,0,0,0.65), 0 0 70px rgba(255,77,109,0.07);
    background: #14141f;
}

.browser-chrome {
    background: linear-gradient(180deg, #1e1e30 0%, #181828 100%);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    height: 40px;
    box-sizing: border-box;
}

.browser-dots {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.browser-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: block;
}

.browser-dot-red {
    background: #FF5F57;
    box-shadow: 0 0 4px rgba(255,95,87,0.5);
}

.browser-dot-yellow {
    background: #FEBC2E;
    box-shadow: 0 0 4px rgba(254,188,46,0.4);
}

.browser-dot-green {
    background: #28C840;
    box-shadow: 0 0 4px rgba(40,200,64,0.4);
}

.browser-bar {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    max-width: 320px;
    margin: 0 auto;
}

.browser-lock {
    color: rgba(255,255,255,0.35);
    display: flex;
    align-items: center;
    line-height: 0;
}

.browser-url {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.02em;
}

.browser-screen {
    line-height: 0;
    overflow: hidden;
}

.desktop-preview-img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .browser-chrome {
        height: 34px;
        padding: 8px 12px;
    }

    .browser-dot {
        width: 9px;
        height: 9px;
    }

    .browser-url {
        font-size: 10px;
    }
}

/* ── Section labels inside stat strips ───────────────────────── */
.stat-strip .section-headline {
    margin-bottom: 0;
}

.stat-strip .section-label {
    margin-bottom: 6px;
}
