*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy:   #04060F;
    --gold:   #C9A84C;
    --cream:  #FAFAF7;
    --ash:    #F4F4F0;
    --white:  #FFFFFF;
    --ink:    #1A1C26;
    --muted:  #7A7D8A;
    --border: #E8E8E2;
    --sans:   'Plus Jakarta Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    background: var(--white);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

/* ── NAV ─────────────────────────────────────────────── */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.nav-logo img {
    width: 36px; height: 36px;
    border-radius: 8px;
    object-fit: contain;
}
.nav-logo-name {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--navy);
}
.nav-logo-name span { color: var(--gold); font-weight: 300; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-links a {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.nav-store-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--sans);
    transition: color 0.2s;
    padding: 0;
}
.nav-store-link:hover { color: var(--gold); }
.nav-store-link i { font-size: 1rem; }
.nav-store-img {
    width: 18px; height: 18px;
    object-fit: contain;
    filter: grayscale(1);
    transition: filter 0.2s;
}
.nav-store-link:hover .nav-store-img { filter: grayscale(0); }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-actions { gap: 0.75rem; }
    .nav-store-link span { display: none; }
}

/* ── STATS BAR — minimalist pill row, all screens ───── */
.stats-bar {
    background: transparent;
}
.hero-stats {
    border-top: 1px solid var(--border);
    margin-top: 3rem;
    padding-top: 2rem;
}
.stats-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 16px;
    border: 1px solid var(--border);
    border-radius: 99px;
    background: var(--ash);
    transition: border-color 0.2s, background 0.2s;
    cursor: default;
}
.stat-item:hover { background: var(--white); border-color: var(--gold); }
.stat-value {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
    line-height: 1;
    white-space: nowrap;
}
.stat-value span { color: var(--gold); }
.stat-label {
    font-size: 7.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    white-space: nowrap;
    line-height: 1;
}
@media (max-width: 640px) {
    .hero-stats { margin-top: 2rem; padding-top: 1.5rem; }
    .stats-bar-inner { padding: 0 1.25rem; gap: 7px; }
    .stat-item { padding: 6px 13px; gap: 6px; }
    .stat-value { font-size: 0.8rem; }
    .stat-label { font-size: 7px; }
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 6rem 2rem;
}
.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 4rem;
}
.hero-content { text-align: left; }
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.25);
    background: rgba(201,168,76,0.06);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 2rem;
}
.hero h1 {
    font-size: clamp(2.6rem, 6vw, 4.4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: var(--navy);
    margin: 0 0 1.5rem;
}
.hero h1 span { color: var(--gold); font-weight: 300; }
.hero-sub {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 480px;
    margin: 0 0 3rem;
    line-height: 1.75;
    font-weight: 400;
}

/* Store buttons */
.store-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1rem;
}
.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 12px 20px;
    text-decoration: none;
    cursor: pointer;
    font-family: var(--sans);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.store-btn:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(201,168,76,0.1);
}
.store-btn i {
    font-size: 1.6rem;
    color: var(--navy);
    transition: color 0.2s;
}
.store-btn:hover i { color: var(--gold); }
.store-btn img {
    width: 26px; height: 26px;
    object-fit: contain;
    filter: grayscale(1);
    transition: filter 0.2s;
}
.store-btn:hover img { filter: grayscale(0); }
.store-btn-text { text-align: left; }
.store-btn-text .pre {
    display: block;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    line-height: 1;
    margin-bottom: 2px;
}
.store-btn-text .name {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.01em;
    line-height: 1;
}

/* iOS coming soon note */
.ios-coming-soon {
    font-size: 0.68rem;
    color: var(--muted);
    margin-top: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
    max-width: 380px;
}
.ios-coming-soon i {
    color: var(--gold);
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 1px;
}
@media (max-width: 900px) {
    .ios-coming-soon {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
}

/* ── HERO PHONE MOCKUP ───────────────────────────────── */
.hero-visual {
    display: flex;
    justify-content: center;
}
.phone-mockup {
    position: relative;
    width: 260px;
    max-width: 78vw;
    aspect-ratio: 9 / 19.5;
    background: var(--navy);
    border-radius: 32px;
    padding: 6px;
    box-shadow: 0 30px 80px -20px rgba(4,6,15,0.35), 0 0 0 1px rgba(201,168,76,0.12), inset 0 0 0 1px rgba(255,255,255,0.06);
}
.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 26px;
    overflow: hidden;
    background: var(--ash);
}
.phone-screen img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}
.phone-screen img.active { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
    .phone-screen img { transition: none; }
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hero-content { text-align: center; }
    .hero h1 { margin: 0 auto 1.5rem; }
    .hero-sub { margin: 0 auto 3rem; }
    .store-row { justify-content: center; }
    .ios-coming-soon { justify-content: center; }
}

/* ── FEATURES ────────────────────────────────────────── */
.features-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}
.section-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 3.5rem;
}
.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
}
.section-eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.5rem;
}
.section-eyebrow::before {
    content: '';
    display: block;
    width: 20px; height: 1px;
    background: var(--gold);
}
.section-title {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--navy);
    line-height: 1.1;
}
.section-sub {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 480px;
}
.section-rule {
    width: 80px; height: 2px;
    background: linear-gradient(to right, var(--gold), transparent);
    border-radius: 1px;
    flex-shrink: 0;
    margin-bottom: 6px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2rem;
    transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}
.feature-icon {
    width: 52px; height: 52px;
    background: var(--ash);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 1.25rem;
    transition: background 0.2s;
}
.feature-card:hover .feature-icon { background: rgba(201,168,76,0.12); }
.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--navy);
    margin-bottom: 0.5rem;
}
.feature-card p {
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.7;
}

@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }

/* ── CONTACT ─────────────────────────────────────────── */
.contact-section {
    background: var(--ash);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 6rem 2rem;
}
.contact-inner {
    max-width: 980px;
    margin: 0 auto;
}
.contact-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.contact-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
}

.contact-panel {
    width: 300px;
    flex-shrink: 0;
    background: var(--navy);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.contact-panel::before {
    content: '';
    position: absolute;
    bottom: -60px; right: -60px;
    width: 200px; height: 200px;
    background: rgba(201,168,76,0.06);
    border-radius: 50%;
}
.contact-panel h3 {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--gold);
    margin-bottom: 0.75rem;
    position: relative;
}
.contact-panel p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;
}
.contact-panel-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}
.contact-panel-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}
.contact-panel-item i { color: var(--gold); font-size: 0.75rem; margin-top: 2px; flex-shrink: 0; }

.contact-form-area {
    flex: 1;
    padding: 2.5rem;
}

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.field-row.full { grid-template-columns: 1fr; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
}
.field input:not([type="tel"]),
.field select,
.field textarea {
    background: var(--ash) !important;
    border: 1.5px solid var(--border) !important;
    border-radius: 8px !important;
    padding: 11px 14px !important;
    font-family: var(--sans);
    font-size: 0.875rem;
    color: var(--ink);
    width: 100%;
    transition: border-color 0.18s, box-shadow 0.18s;
    appearance: none;
}
.field input:not([type="tel"]):focus,
.field select:focus,
.field textarea:focus {
    outline: none !important;
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 3px rgba(201,168,76,0.1) !important;
    background: var(--white) !important;
}
.field textarea { resize: vertical; }

.phone-field { position: relative; display: block; width: 100%; }

.iti { width: 100% !important; display: block !important; }

.iti input[type="tel"],
.iti input[type="tel"]:focus {
    width: 100% !important;
    padding-left: 96px !important;
    padding-right: 14px !important;
    padding-top: 11px !important;
    padding-bottom: 11px !important;
    background: var(--ash) !important;
    border: 1.5px solid var(--border) !important;
    border-radius: 8px !important;
    font-family: var(--sans) !important;
    font-size: 0.875rem !important;
    color: var(--ink) !important;
    box-sizing: border-box !important;
}
.iti input[type="tel"]:focus {
    outline: none !important;
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 3px rgba(201,168,76,0.1) !important;
    background: var(--white) !important;
}

.iti__flag-container {
    position: absolute !important;
    top: 0 !important; bottom: 0 !important; left: 0 !important;
    padding: 0 !important;
    z-index: 1 !important;
}
.iti__selected-flag {
    height: 100% !important;
    padding: 0 6px 0 10px !important;
    border-radius: 8px 0 0 8px !important;
    background: transparent !important;
    display: flex !important;
    align-items: center !important;
    gap: 3px !important;
    min-width: 88px !important;
    border-right: 1.5px solid var(--border) !important;
}
.iti__selected-flag:hover,
.iti__selected-flag:focus { background: rgba(201,168,76,0.06) !important; }
.iti__arrow { margin-left: 3px !important; flex-shrink: 0 !important; }
.iti__selected-dial-code { font-size: 0.8rem !important; white-space: nowrap !important; }

.iti__country-list {
    z-index: 999 !important;
    border: 1px solid var(--border) !important;
    border-radius: 8px !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1) !important;
    font-family: var(--sans) !important;
    font-size: 0.83rem !important;
    max-height: 220px !important;
}
@media (max-width: 540px) {
    .iti__country-list {
        width: calc(100vw - 3rem) !important;
        left: 0 !important;
    }
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    cursor: pointer;
    transition: opacity 0.2s;
    margin-top: 1.25rem;
}
.btn-submit:hover:not(:disabled) { opacity: 0.85; }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-alert {
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 0.83rem;
    font-weight: 500;
    margin-top: 1.25rem;
    display: none;
    align-items: flex-start;
    gap: 12px;
}
.form-alert.show { display: flex; }
.form-alert.success { background: #F0FDF4; color: #166534; border: 1px solid #BBF7D0; }
.form-alert.error   { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }
.form-alert i { font-size: 1rem; flex-shrink: 0; }
.form-alert-body p:first-child { font-weight: 700; margin-bottom: 2px; }
.form-alert-body p:last-child { font-size: 0.78rem; opacity: 0.85; }

@media (max-width: 768px) {
    .contact-card { flex-direction: column; }
    .contact-panel { width: 100%; }
    .field-row { grid-template-columns: 1fr; }
}

/* ── FOOTER ──────────────────────────────────────────── */
footer {
    border-top: 1px solid var(--border);
    padding: 3rem 2rem;
}
@media (max-width: 768px) {
    footer { padding: 2rem 1.5rem; }
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-brand img { width: 30px; height: 30px; border-radius: 6px; object-fit: contain; }
.footer-brand-name { font-size: 0.9rem; font-weight: 800; letter-spacing: -0.01em; color: var(--navy); }
.footer-brand-name span { color: var(--gold); font-weight: 300; }
.footer-tagline { font-size: 0.72rem; color: var(--muted); margin-top: 4px; }

.footer-social {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-social a,
.footer-social button {
    color: var(--muted);
    font-size: 1rem;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--sans);
    transition: color 0.2s;
    padding: 0;
}
.footer-social a:hover,
.footer-social button:hover { color: var(--gold); }
.footer-social-img {
    width: 16px; height: 16px;
    object-fit: contain;
    display: block;
    filter: grayscale(1);
    transition: filter 0.2s;
}
.footer-social a:hover .footer-social-img { filter: grayscale(0); }

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 1.5rem 2rem 0;
    border-top: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.footer-copy {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
}
.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}
.footer-legal-links a {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-legal-links a:hover { color: var(--gold); }

@media (max-width: 768px) {
    /* Footer — minimalist mobile layout */
    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.25rem;
    }
    .footer-brand { justify-content: center; }
    /* Social icons — tighter, 2-row wrap */
    .footer-social {
        gap: 1rem;
        justify-content: center;
    }
    /* Bottom bar — stack cleanly */
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
        padding: 1.25rem 1.5rem 0;
    }
    .footer-legal-links { justify-content: center; gap: 1.25rem; }
    .section-header-row { flex-direction: column; align-items: flex-start; }
    .section-rule { display: none; }
}

/* ── iOS MODAL ───────────────────────────────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(4,6,15,0.6);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}
.modal-overlay.open { display: flex; }
.modal-box {
    background: var(--white);
    border-radius: 20px;
    max-width: 420px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.2);
    animation: fadeUp 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.modal-header {
    background: var(--ash);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.modal-header-left { display: flex; align-items: center; gap: 12px; }
.modal-icon {
    width: 40px; height: 40px;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--navy);
}
.modal-title { font-size: 0.95rem; font-weight: 700; color: var(--navy); letter-spacing: -0.01em; }
.modal-subtitle { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-top: 2px; }
.modal-close {
    background: none; border: none; cursor: pointer; font-size: 0.9rem;
    color: var(--muted); padding: 4px; transition: color 0.2s;
}
.modal-close:hover { color: var(--navy); }
.modal-body { padding: 2rem; }
.modal-body p { font-size: 0.83rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; }
.modal-steps { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.modal-step { display: flex; align-items: flex-start; gap: 12px; }
.step-num {
    width: 28px; height: 28px; flex-shrink: 0;
    background: rgba(201,168,76,0.1);
    color: var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.72rem; font-weight: 800;
}
.modal-step p { font-size: 0.83rem; color: var(--ink); line-height: 1.6; margin: 0; padding-top: 4px; }
.modal-step p strong { color: var(--navy); }
.modal-step a { color: var(--gold); font-weight: 600; }
.btn-modal-close {
    width: 100%;
    padding: 13px;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: opacity 0.2s;
}
.btn-modal-close:hover { opacity: 0.85; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}