/* ─── Hero ──────────────────────────────────────────────── */
        .hero {
            position: relative;
            min-height: calc(100svh - 64px);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: clamp(60px, 10vh, 120px) 20px;
            overflow: hidden;
        }

        /* Ambient glow orbs */
        .hero::before,
        .hero::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            filter: blur(120px);
            pointer-events: none;
            z-index: 0;
        }
        .hero::before {
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(209, 21, 92, 0.18) 0%, transparent 70%);
            top: -20%;
            left: 50%;
            transform: translateX(-50%);
        }
        .hero::after {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(209, 21, 92, 0.08) 0%, transparent 70%);
            bottom: 0;
            right: 10%;
        }

        .hero-inner {
            position: relative;
            z-index: 1;
            max-width: 820px;
        }

        .hero-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--rose);
            background: var(--rose-dim);
            border: 1px solid rgba(209, 21, 92, 0.25);
            padding: 6px 14px;
            border-radius: 40px;
            margin-bottom: 32px;
        }
        .hero-label-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--rose);
            animation: pulse-dot 2s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.4; transform: scale(0.7); }
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(38px, 7vw, 80px);
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.02em;
            color: var(--text);
            margin-bottom: 24px;
        }
        .hero h1 em {
            font-style: italic;
            color: var(--rose);
        }

        .hero-sub {
            font-size: clamp(15px, 2vw, 18px);
            line-height: 1.75;
            color: var(--text-sub);
            max-width: 600px;
            margin-inline: auto;
            margin-bottom: 48px;
            font-weight: 400;
        }

        .hero-actions {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 48px;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--charcoal);
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            padding: 15px 36px;
            border-radius: 40px;
            border: none;
            cursor: pointer;
            transition: background 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.2s var(--ease);
            letter-spacing: 0.02em;
        }
        .btn-primary:hover {
            background: #000000;
            box-shadow: 0 8px 32px rgba(25, 27, 31, 0.3);
            transform: translateY(-2px);
        }
        .btn-primary svg { flex-shrink: 0; }

        .store-row {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .store-badge {
            height: 60px;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--border);
            transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
            cursor: pointer;
            padding: 0;
            background: none;
            display: inline-block;
        }
        .store-badge:hover {
            transform: translateY(-2px);
            border-color: rgba(255,255,255,0.2);
        }
        .store-badge img { height: 56px; width: auto; display: block; }



        /* App Store coming-soon modal */
        #appStoreModal {
            border: none;
            border-radius: 24px;
            padding: 0;
            background: transparent;
            max-width: 440px;
            width: calc(100vw - 40px);
            overflow: visible;
            margin: auto;
        }
        /* App Store coming-soon modal backdrop */
        #appStoreModal::backdrop {
            background: rgba(0, 0, 0, 0.75);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        #appStoreModal[open] {
            animation: modalFadeIn 0.22s cubic-bezier(0.4, 0, 0.2, 1);
        }
        @keyframes modalFadeIn {
            from { opacity: 0; scale: 0.95; }
            to   { opacity: 1; scale: 1; }
        }

        /* scroll cue — hidden */
        .hero-scroll-cue { display: none; }

        /* ─── Stats / Trust Strip ───────────────────────────────── */
        .stats-strip {
            border-top: 1px solid var(--border-2);
            border-bottom: 1px solid var(--border-2);
            background: var(--surface);
            padding: 48px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 40px;
            text-align: center;
        }
        .stat-item {}
        .stat-num {
            font-family: 'Playfair Display', serif;
            font-size: clamp(32px, 5vw, 52px);
            font-weight: 700;
            color: var(--text);
            line-height: 1;
            margin-bottom: 8px;
        }
        .stat-num span { color: var(--rose); }
        .stat-label {
            font-size: 13px;
            color: var(--text-sub);
            font-weight: 400;
            letter-spacing: 0.04em;
        }

        /* ─── Section Common ────────────────────────────────────── */
        section { padding: clamp(64px, 10vw, 120px) 0; }

        .section-label {
            display: inline-block;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--rose);
            margin-bottom: 16px;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(28px, 4vw, 46px);
            font-weight: 700;
            line-height: 1.15;
            color: var(--text);
            margin-bottom: 20px;
            letter-spacing: -0.01em;
        }
        .section-title em { font-style: italic; color: var(--rose); }

        .section-body {
            font-size: 16px;
            line-height: 1.85;
            color: var(--text-sub);
            max-width: 520px;
        }

        .city-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 16px;
            margin-top: 28px;
        }
        .city-card {
            display: block;
            min-height: 132px;
            padding: 22px;
            border: 1px solid var(--border-2);
            border-radius: 8px;
            background: var(--surface);
            text-decoration: none;
            color: var(--text);
            transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), background 0.2s var(--ease);
        }
        .city-card:hover {
            transform: translateY(-2px);
            border-color: rgba(209, 21, 92, 0.35);
            background: rgba(255, 255, 255, 0.03);
        }
        .city-card h3 {
            font-size: 18px;
            margin-bottom: 8px;
            color: var(--text);
        }
        .city-card p {
            font-size: 14px;
            line-height: 1.6;
            color: var(--text-sub);
        }

        /* ─── Features (alternating rows) ──────────────────────── */
        .features { background: var(--ink); }

        .feature-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(40px, 7vw, 100px);
            align-items: center;
            padding-block: clamp(40px, 6vw, 80px);
            border-bottom: 1px solid var(--border-2);
        }
        .feature-row:last-child { border-bottom: none; }

        .feature-row.reverse .feature-visual { order: -1; }

        .feature-visual {
            position: relative;
        }
        .feature-visual-card {
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: var(--surface);
            border: 1px solid var(--border);
            aspect-ratio: 4 / 3;
            position: relative;
        }
        .feature-visual-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s var(--ease);
        }
        .feature-visual-card:hover img { transform: scale(1.04); }

        /* floating accent badge on visual */
        .feature-badge {
            position: absolute;
            bottom: 16px;
            left: 16px;
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(0, 0, 0, 0.12);
            border-radius: var(--radius-sm);
            padding: 10px 14px;
            display: flex;
            align-items: center;
            gap: 10px;
            pointer-events: none;
        }
        .feature-badge-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: var(--rose-dim);
            border: 1px solid rgba(209,21,92,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .feature-badge-icon svg { color: var(--rose); }
        .feature-badge-text {}
        .feature-badge-title {
            font-size: 12px;
            font-weight: 600;
            color: var(--text);
            line-height: 1.2;
        }
        .feature-badge-sub {
            font-size: 10px;
            color: var(--text-sub);
            margin-top: 1px;
        }

        .feature-content {}
        .feature-content .section-body { max-width: 440px; }

        @media (max-width: 768px) {
            .feature-row {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .feature-row.reverse .feature-visual { order: 0; }
        }

        /* ─── Story / Mission ───────────────────────────────────── */
        .story { background: var(--surface); }

        .story-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(40px, 7vw, 100px);
            align-items: center;
        }

        .story-quote {
            font-family: 'Playfair Display', serif;
            font-size: clamp(22px, 3.5vw, 36px);
            font-style: italic;
            line-height: 1.4;
            color: var(--text);
            border-left: 2px solid var(--rose);
            padding-left: 28px;
        }
        .story-body {
            font-size: 15px;
            line-height: 1.9;
            color: var(--text-sub);
            margin-top: 24px;
        }

        .story-year-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--rose-dim);
            border: 1px solid rgba(209,21,92,0.25);
            border-radius: 40px;
            padding: 8px 18px;
            font-size: 13px;
            font-weight: 600;
            color: var(--rose);
            margin-bottom: 28px;
        }

        @media (max-width: 768px) {
            .story-inner { grid-template-columns: 1fr; }
        }

        /* ─── Testimonials ──────────────────────────────────────── */
        .testimonials { background: var(--ink); }

        .testimonials-header {
            text-align: center;
            margin-bottom: clamp(40px, 6vw, 70px);
        }

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

        .testimonial-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 28px;
            position: relative;
            transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
        }
        .testimonial-card:hover {
            border-color: rgba(209,21,92,0.35);
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(0,0,0,0.4);
        }

        .quote-mark {
            font-family: 'Playfair Display', serif;
            font-size: 60px;
            line-height: 0.6;
            color: var(--rose);
            opacity: 0.4;
            margin-bottom: 16px;
            display: block;
        }

        .testimonial-text {
            font-size: 15px;
            line-height: 1.75;
            color: var(--text);
            font-style: italic;
            margin-bottom: 24px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .testimonial-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
            border: 1.5px solid var(--rose);
            flex-shrink: 0;
        }
        .testimonial-name {
            font-size: 13px;
            font-weight: 600;
            color: var(--text);
        }
        .testimonial-meta {
            font-size: 11px;
            color: var(--text-sub);
            margin-top: 2px;
            letter-spacing: 0.04em;
        }

        @media (max-width: 900px) {
            .testimonial-track { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 600px) {
            .testimonial-track { grid-template-columns: 1fr; }
        }

        /* ─── Download CTA ──────────────────────────────────────── */
        .download-cta {
            background: var(--surface);
            border-top: 1px solid var(--border-2);
            border-bottom: 1px solid var(--border-2);
        }
        .download-cta-inner {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: clamp(40px, 8vw, 100px);
            align-items: center;
        }
        .download-cta-content {}
        .download-cta-visual {
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--border);
            background: var(--surface-2);
        }
        .download-cta-visual img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }
        .download-cta-content .section-body { margin-bottom: 32px; }
        @media (max-width: 768px) {
            .download-cta-inner { grid-template-columns: 1fr; }
            .download-cta-visual { display: none; }
        }

        /* ─── FAQ ───────────────────────────────────────────────── */
        .faq { background: var(--ink); }

        .faq-inner {
            max-width: 760px;
            margin-inline: auto;
        }
        .faq-header {
            text-align: center;
            margin-bottom: clamp(40px, 6vw, 64px);
        }
        .faq-header .section-body {
            margin-inline: auto;
            text-align: center;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .faq-item {
            background: var(--surface);
            border: 1px solid var(--border-2);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: border-color 0.3s var(--ease);
        }
        .faq-item:hover {
            border-color: rgba(209,21,92,0.25);
        }
        .faq-item.open {
            border-color: rgba(209,21,92,0.4);
        }

        .faq-trigger {
            width: 100%;
            background: none;
            border: none;
            padding: 20px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            cursor: pointer;
            text-align: left;
            color: var(--text);
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            font-weight: 600;
            line-height: 1.4;
        }
        .faq-trigger:focus-visible { outline: 2px solid var(--rose); outline-offset: -2px; }

        .faq-icon {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.3s var(--ease);
        }
        .faq-item.open .faq-icon {
            background: var(--rose);
            border-color: var(--rose);
            transform: rotate(180deg);
        }
        .faq-icon svg { width: 12px; height: 12px; fill: #fff; }

        .faq-panel {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s var(--ease);
        }
        .faq-answer {
            padding: 0 24px 20px;
            font-size: 14px;
            line-height: 1.75;
            color: var(--text-sub);
        }
        .faq-answer a {
            color: var(--rose);
            font-weight: 500;
        }
        .faq-answer a:hover { text-decoration: underline; }

        .hero-inner > * {
            animation: fade-up 0.8s var(--ease) both;
        }
        .hero-inner > *:nth-child(1) { animation-delay: 0.1s; }
        .hero-inner > *:nth-child(2) { animation-delay: 0.25s; }
        .hero-inner > *:nth-child(3) { animation-delay: 0.4s; }
        .hero-inner > *:nth-child(4) { animation-delay: 0.55s; }
