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

:root {
    --lime: #A8E63D;
    --lime-dark: #8acc28;
    --lime-faint: rgba(168,230,61,0.12);
    --lime-border: rgba(168,230,61,0.25);
    --bg: #0c0c0c;
    --bg-mid: #141414;
    --bg-card: #1a1a1a;
    --bg-card-hover: #202020;
    --border: rgba(255,255,255,0.07);
    --border-md: rgba(255,255,255,0.12);
    --text: #f0f0f0;
    --text-mid: #999;
    --text-muted: #666;
    --white: #ffffff;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 36px;
    --shadow-phone: 0 40px 80px rgba(0,0,0,0.6), 0 8px 24px rgba(0,0,0,0.4);
    --shadow-float: 0 16px 48px rgba(0,0,0,0.5), 0 4px 12px rgba(0,0,0,0.3);
}

/* ── LIGHT MODE ── */
body.light {
    --lime: #2d7a3a;
    --lime-dark: #1e6b1e;
    --lime-faint: rgba(45,122,58,0.1);
    --lime-border: rgba(45,122,58,0.25);
    --bg: #f7faf4;
    --bg-mid: #eef3ea;
    --bg-card: #ffffff;
    --bg-card-hover: #f4f8f0;
    --border: rgba(0,0,0,0.07);
    --border-md: rgba(0,0,0,0.13);
    --text: #0d1a0d;
    --text-mid: #3a5a3a;
    --text-muted: #6a8a6a;
    --shadow-phone: 0 40px 80px rgba(0,0,0,0.18), 0 8px 24px rgba(0,0,0,0.1);
    --shadow-float: 0 16px 48px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.07);
}
body.light nav { background: rgba(247,250,244,0.9); }
body.light .mobile-menu { background: var(--bg); }
body.light .hero-grid-overlay {
    background-image:
            linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
            linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
}
body.light .stats-bar { background: #dff0da; }
body.light .stat-num { color: #1e6b1e; }
body.light .stat-label { color: #4a6a4a; }
body.light .how { background: var(--bg-mid); }
body.light .float-card { background: #ffffff; border-color: rgba(45,122,58,0.15); }
body.light .float-label { color: #6a8a6a; }
body.light .float-value { color: #1e6b1e; }
body.light .float-value-sm { color: #0d1a0d; }
body.light .float-sub { color: #6a8a6a; }
body.light .float-icon { color: #1e6b1e; }
body.light .cta-section {
    background: linear-gradient(140deg, #1a4a20 0%, #2d7a3a 60%, #3a9a4a 100%);
}
body.light .cta-section .cta-title { color: white; }
body.light .cta-section .cta-sub { color: rgba(255,255,255,0.75); }
body.light .cta-section .cta-note { color: rgba(255,255,255,0.5); }
body.light .cta-section .cta-label { color: rgba(255,255,255,0.7); }
body.light .cta-form input { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); color: white; }
body.light .cta-form input::placeholder { color: rgba(255,255,255,0.5); }
body.light .btn-lime { background: white; color: #1e6b1e; }
body.light .btn-lime:hover { background: #f0f8f0; }
body.light .excl-panel-head { background: #dff0da; }
body.light .excl-panel-title { color: #0d1a0d; }
body.light .phone { border-color: #1c1c1e; }
body.light .hero-badge { background: rgba(45,122,58,0.1); border-color: rgba(45,122,58,0.25); color: #1e6b1e; }
body.light .badge-pulse { background: #1e6b1e; }
body.light .hero-h1 em { color: #1e6b1e; }
body.light .section-label { color: #1e6b1e; }
body.light .feature-card { background: #ffffff; }
body.light .feature-card:hover { border-color: rgba(45,122,58,0.3); box-shadow: 0 0 0 1px rgba(45,122,58,0.15); }
body.light .feature-icon { background: rgba(45,122,58,0.1); color: #1e6b1e; }
body.light .excl-icon-wrap { background: rgba(45,122,58,0.1); color: #1e6b1e; }
body.light .excl-tag { background: rgba(45,122,58,0.12); color: #1e6b1e; }
body.light .excl-dot { background: #2d7a3a; }
body.light .btn-primary { background: #2d7a3a; color: white; }
body.light .btn-primary:hover { background: #1e6b1e; box-shadow: 0 8px 24px rgba(45,122,58,0.3); }
body.light .app-badge { background: #1c1c1e; }
body.light .nav-logo { color: #0d1a0d; }
body.light .theme-toggle { background: #ffffff; }

/* ── THEME TOGGLE BUTTON ── */
.theme-toggle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border-md);
    background: var(--bg-card);
    color: var(--text-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.15s;
    flex-shrink: 0;
}
.theme-toggle:hover {
    border-color: var(--lime-border);
    color: var(--lime);
    transform: rotate(20deg);
}
/* show moon in dark mode, sun in light mode */
.theme-icon-light { display: none; }
.theme-icon-dark  { display: flex; }
body.light .theme-icon-light { display: flex; }
body.light .theme-icon-dark  { display: none; }

.theme-toggle-mobile {
    background: var(--bg-card);
    border: 1px solid var(--border-md);
    color: var(--text-muted);
    padding: 12px 24px;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}
.theme-toggle-mobile:hover { border-color: var(--lime-border); color: var(--lime); }

html { scroll-behavior: smooth; }
body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background 0.3s ease, color 0.3s ease;
}

/* ── UTILITIES ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 768px) { .container { padding: 0 24px; } }

.section-label {
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 400;
    color: var(--text);
    line-height: 1.1;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.75;
    max-width: 500px;
    margin-bottom: 40px;
}

/* Buttons */
.btn-primary {
    background: var(--lime);
    color: #0c0c0c;
    border: none;
    padding: 14px 26px;
    border-radius: 50px;
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.3px;
}
.btn-primary:hover {
    background: var(--lime-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(168,230,61,0.3);
}

.btn-lime {
    background: var(--lime);
    color: #0c0c0c;
    border: none;
    padding: 15px 28px;
    border-radius: 50px;
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
}
.btn-lime:hover { background: var(--lime-dark); transform: translateY(-1px); }

/* ── NAV ── */
nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(12,12,12,0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 66px;
}

.nav-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 5px;
    color: var(--text);
    text-decoration: none;
}
.nav-logo span { color: var(--lime); }
.nav-logo img { height: 44px; width: auto; display: block; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: var(--text-mid);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 190;
    align-items: center;
    justify-content: center;
}
.mobile-menu.open { display: flex; }
.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}
.mobile-menu-inner a {
    font-family: 'Instrument Serif', serif;
    font-size: 36px;
    color: var(--text);
    text-decoration: none;
}
.mobile-menu-inner a:hover { color: var(--lime); }

/* ── HERO ── */
.hero-section {
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
            linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 70% at 60% 40%, black 0%, transparent 70%);
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: calc(100vh - 66px);
    padding: 80px 0 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--lime-faint);
    color: var(--lime);
    border: 1px solid var(--lime-border);
    border-radius: 50px;
    padding: 7px 16px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-bottom: 32px;
    animation: fadeSlideUp 0.5s ease both;
}

.badge-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lime);
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

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

.hero-h1 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(50px, 6vw, 76px);
    line-height: 1.02;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 24px;
    animation: fadeSlideUp 0.5s ease 0.08s both;
}

.hero-h1 em {
    color: var(--lime);
    font-style: italic;
}

.hero-sub {
    font-size: 17px;
    color: var(--text-mid);
    line-height: 1.75;
    max-width: 440px;
    margin-bottom: 44px;
    animation: fadeSlideUp 0.5s ease 0.16s both;
}

.hero-form {
    margin-bottom: 36px;
    animation: fadeSlideUp 0.5s ease 0.24s both;
}

.form-field {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.form-field input {
    flex: 1;
    max-width: 300px;
    padding: 15px 22px;
    border: 1px solid var(--border-md);
    border-radius: 50px;
    font-size: 15px;
    font-family: 'DM Sans', sans-serif;
    background: var(--bg-card);
    color: var(--text);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input::placeholder { color: var(--text-muted); }
.form-field input:focus {
    border-color: var(--lime);
    box-shadow: 0 0 0 3px rgba(168,230,61,0.12);
}

.form-note {
    font-size: 12px;
    color: var(--text-muted);
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text-muted);
    animation: fadeSlideUp 0.5s ease 0.32s both;
}

.avatars { display: flex; }
.av {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--bg);
    margin-left: -9px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0c0c0c;
}
.av:first-child { margin-left: 0; }
.av1 { background: var(--lime); }
.av2 { background: #c8f060; }
.av3 { background: #8acc28; }
.av4 { background: #b4e035; }
.av5 { background: #d0f06a; }

/* ── PHONE SCENE ── */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 620px;
}

.phone-scene {
    position: relative;
    width: 360px;
    height: 600px;
}

.phone-scene .phone,
.phone-scene .float-card {
    opacity: 0;
    transform-origin: center bottom;
}

.phone-scene.phones-visible .phone-main {
    animation: phoneEntryMain 0.75s cubic-bezier(0.22,1,0.36,1) 0.1s both;
}
.phone-scene.phones-visible .phone-back {
    animation: phoneEntryBack 0.75s cubic-bezier(0.22,1,0.36,1) 0s both;
}
.phone-scene.phones-visible .phone-back2 {
    animation: phoneEntryBack2 0.75s cubic-bezier(0.22,1,0.36,1) 0.05s both;
}
.phone-scene.phones-visible .float-1 {
    animation: floatCardEntry 0.6s cubic-bezier(0.22,1,0.36,1) 0.45s both, floatY 3s ease-in-out 1.1s infinite;
}
.phone-scene.phones-visible .float-2 {
    animation: floatCardEntry 0.6s cubic-bezier(0.22,1,0.36,1) 0.6s both, floatY 3.8s ease-in-out 1.26s infinite;
}

@keyframes phoneEntryMain {
    from { opacity: 0; transform: perspective(1000px) rotateY(-10deg) rotateX(3deg) translateY(40px) scale(0.95); }
    to   { opacity: 1; transform: perspective(1000px) rotateY(-10deg) rotateX(3deg) translateY(0) scale(1); }
}
@keyframes phoneEntryBack {
    from { opacity: 0; transform: perspective(1000px) rotateY(-16deg) rotateX(4deg) translateY(40px) scale(0.95); }
    to   { opacity: 0.6; transform: perspective(1000px) rotateY(-16deg) rotateX(4deg) translateY(0) scale(1); }
}
@keyframes phoneEntryBack2 {
    from { opacity: 0; transform: perspective(1000px) rotateY(-7deg) rotateX(2deg) translateY(40px) scale(0.95); }
    to   { opacity: 0.78; transform: perspective(1000px) rotateY(-7deg) rotateX(2deg) translateY(0) scale(1); }
}
@keyframes floatCardEntry {
    from { opacity: 0; transform: translateY(16px) scale(0.95); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-9px); }
}

.phone {
    position: absolute;
    border-radius: 44px;
    overflow: hidden;
    box-shadow: var(--shadow-phone);
    border: 10px solid #222;
    background: #1a1a1a;
}

.phone-main {
    width: 242px;
    height: 500px;
    left: 56px;
    top: 30px;
    z-index: 3;
    cursor: pointer;
}
.phone-main:active { transform: perspective(1000px) rotateY(-10deg) rotateX(3deg) scale(0.97) !important; }

.phone-back {
    width: 215px;
    height: 447px;
    left: 0;
    top: 80px;
    z-index: 1;
    filter: blur(1.5px);
}

.phone-back2 {
    width: 206px;
    height: 430px;
    left: 110px;
    top: 100px;
    z-index: 2;
    filter: blur(0.5px);
}

/* ── PHONE SCREENS — matches actual app UI ── */
.screen {
    width: 100%;
    height: 100%;
    background: #eef7ee;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: 'DM Sans', sans-serif;
}
.screen > img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Page header (Deals, Search, My List, Exclusives) */
.screen-page-header {
    padding: 14px 13px 10px;
    background: #eef7ee;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.sph-left {}
.sph-title { font-size: 17px; font-weight: 800; color: #0d2b0d; line-height: 1.1; }
.sph-sub { font-size: 8px; color: #6a9a6a; margin-top: 1px; }
.sph-icons { display: flex; gap: 6px; padding-top: 2px; }
.sph-icon {
    width: 24px; height: 24px; border-radius: 50%;
    background: rgba(45,120,45,0.1);
    display: flex; align-items: center; justify-content: center;
}

/* Deal cards — matches real app */
.screen-body { padding: 6px 10px; flex: 1; overflow: hidden; display: flex; flex-direction: column; gap: 6px; }
.deal-card {
    background: white;
    border-radius: 11px;
    padding: 11px 12px;
    border: 1px solid #dceadc;
}
.deal-card-top { display: flex; justify-content: space-between; align-items: flex-start; }
.deal-name { font-size: 9px; font-weight: 700; color: #0d2b0d; line-height: 1.3; max-width: 150px; }
.deal-heart { font-size: 9px; color: #ccc; }
.deal-store { font-size: 7.5px; color: #6a9a6a; margin: 2px 0 6px; }
.deal-row { display: flex; align-items: center; justify-content: space-between; }
.deal-price-group { display: flex; align-items: baseline; gap: 4px; }
.deal-price { font-size: 17px; font-weight: 800; color: #1e6b1e; }
.deal-old { font-size: 8px; color: #bbb; text-decoration: line-through; }
.deal-badge { background: #ddf0d0; color: #1e6b1e; font-size: 7px; font-weight: 700; padding: 2px 5px; border-radius: 20px; }
.deal-save { font-size: 7.5px; color: #1e6b1e; font-weight: 600; }
.deal-footer { font-size: 7px; color: #aaa; margin-top: 5px; display: flex; justify-content: space-between; }

/* Search screen */
.s2-header { padding: 14px 12px 8px; background: #eef7ee; }
.s2-title { font-size: 17px; font-weight: 800; color: #0d2b0d; }
.s2-sub { font-size: 8px; color: #6a9a6a; }
.s2-searchbar {
    background: white; border: 1px solid #dceadc; border-radius: 22px;
    padding: 6px 11px; display: flex; align-items: center; gap: 5px;
    margin: 6px 10px; font-size: 8px; color: #aaa;
}
.s2-filter-row {
    display: flex; gap: 5px; padding: 0 10px 6px; overflow: hidden;
}
.s2-filter {
    background: #1e6b1e; color: white; border-radius: 20px;
    font-size: 7px; font-weight: 600; padding: 3px 9px; white-space: nowrap; flex-shrink: 0;
}
.s2-filter.off { background: white; color: #0d2b0d; border: 1px solid #dceadc; }
.s2-meta { font-size: 7.5px; color: #6a9a6a; padding: 0 10px 4px; }
.s2-meta-row { display: flex; justify-content: space-between; align-items: center; padding: 0 10px 6px; }
.s2-best-badge { background: #ddf0d0; color: #1e6b1e; font-size: 7px; font-weight: 700; padding: 2px 7px; border-radius: 20px; }
.s2-result {
    background: white; margin: 3px 10px; border-radius: 10px;
    border: 1px solid #dceadc; padding: 8px 10px;
    display: flex; align-items: center; gap: 7px;
}
.s2-rank {
    width: 19px; height: 19px; border-radius: 50%;
    background: #1e6b1e; color: white;
    font-size: 8px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.s2-rank.light { background: #ddf0d0; color: #1e6b1e; }
.s2-info { flex: 1; min-width: 0; }
.s2-store { font-size: 9px; font-weight: 700; color: #0d2b0d; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.s2-item { font-size: 7.5px; color: #8aaa8a; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.s2-right { text-align: right; flex-shrink: 0; }
.s2-price { font-size: 12px; font-weight: 800; color: #1e6b1e; }
.s2-price.muted { color: #3a7a3a; font-weight: 600; }
.s2-dist { font-size: 7px; color: #aaa; }
.s2-chevron { font-size: 8px; color: #ccc; }

/* List screen */
.s3-items {}
.s3-item {
    background: white; margin: 3px 10px; border-radius: 10px;
    border: 1px solid #dceadc; padding: 9px 11px;
    display: flex; align-items: center; gap: 9px;
    font-size: 8.5px; color: #0d2b0d; font-weight: 500;
}
.s3-circle { width: 16px; height: 16px; border-radius: 50%; border: 1.5px solid #aad0aa; flex-shrink: 0; }
.s3-trash { font-size: 9px; color: #ccc; margin-left: auto; }
.s3-add-row { display: flex; gap: 6px; margin: 3px 10px 6px; }
.s3-add-input {
    flex: 1; background: white; border: 1px solid #dceadc; border-radius: 10px;
    padding: 8px 10px; font-size: 8px; color: #aaa;
    display: flex; align-items: center; gap: 5px;
}
.s3-add-btn {
    width: 28px; height: 28px; background: #ddf0d0; border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; color: #1e6b1e; font-weight: 700;
}
.s3-btn {
    background: #1e6b1e; color: white; border-radius: 22px;
    font-size: 8.5px; font-weight: 700; padding: 9px;
    text-align: center; margin: 4px 10px 0;
    display: flex; align-items: center; justify-content: center; gap: 4px;
}

/* Best option cards */
.best-option-wrap { padding: 8px 10px 0; }
.best-label { font-size: 9px; font-weight: 700; color: #0d2b0d; margin-bottom: 6px; }
.best-card {
    background: white; border-radius: 10px;
    border: 1.5px solid #1e6b1e; padding: 9px 10px;
    margin-bottom: 5px;
}
.best-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1px; }
.best-store { font-size: 9px; font-weight: 700; color: #0d2b0d; }
.best-tag { background: #ddf0d0; color: #1e6b1e; font-size: 6.5px; font-weight: 700; padding: 2px 6px; border-radius: 5px; }
.best-meta { font-size: 7.5px; color: #6a9a6a; margin-bottom: 5px; }
.best-bottom { display: flex; justify-content: space-between; align-items: center; }
.best-price { font-size: 15px; font-weight: 800; color: #1e6b1e; }
.best-vs { font-size: 7.5px; color: #aaa; }

/* Scan/Price score screen */
.scan-result { flex: 1; display: flex; flex-direction: column; align-items: center; padding: 8px 12px; }
.scan-item-name { font-size: 9.5px; font-weight: 700; color: #0d2b0d; text-align: center; }
.scan-store { font-size: 8px; color: #6a9a6a; margin: 2px 0 8px; }
.score-ring-wrap { margin: 4px 0; }
.scan-verdict { font-size: 10px; font-weight: 600; color: #4a8a4a; margin: 4px 0 8px; }
.scan-better { width: 100%; }
.scan-better-label { font-size: 8.5px; font-weight: 700; color: #0d2b0d; margin-bottom: 5px; }
.scan-alt { background: white; border: 1px solid #dceadc; border-radius: 9px; padding: 7px 9px; font-size: 8px; color: #0d2b0d; margin-bottom: 4px; }

/* Bottom nav — matches real app */
.screen-nav {
    display: flex; justify-content: space-around;
    padding: 7px 0 6px;
    border-top: 1px solid #dceadc;
    background: white;
    margin-top: auto;
}
.nav-tab { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.nav-tab span { font-size: 6.5px; color: #aaa; }
.nav-tab.active span { color: #1e6b1e; font-weight: 700; }

/* Phone carousel */
.phone-carousel {
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.carousel-screen { min-width: 100%; height: 100%; overflow: hidden; }

/* Dots */
.phone-dots {
    position: absolute; bottom: 10px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 5px; z-index: 20; pointer-events: none;
}
.phone-dot {
    width: 5px; height: 5px; border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transition: background 0.3s, transform 0.3s;
}
.phone-dot.active { background: var(--lime); transform: scale(1.35); }

/* Tap hint */
.tap-hint {
    position: absolute; bottom: 76px; left: -90px;
    opacity: 1; transition: opacity 0.4s;
    pointer-events: none; z-index: 20;
    animation: tapBounce 1.4s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
}
.tap-hint.hidden { opacity: 0; animation: none; }
.tap-bubble {
    background: var(--lime);
    color: #0c0c0c;
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(168,230,61,0.4);
}
@keyframes tapBounce {
    0%, 100% { transform: translateX(0); }
    30%       { transform: translateX(8px); }
    60%       { transform: translateX(3px); }
    80%       { transform: translateX(7px); }
}
.phone-main.tapping .phone-carousel { animation: screenFlash 0.25s ease; }
@keyframes screenFlash {
    0%   { opacity: 1; }
    30%  { opacity: 0.75; }
    100% { opacity: 1; }
}

/* Floating cards */
.float-card {
    position: absolute;
    background: #1e1e1e;
    border-radius: var(--radius-md);
    padding: 14px 18px;
    box-shadow: var(--shadow-float);
    border: 1px solid var(--border-md);
    font-family: 'DM Sans', sans-serif;
    z-index: 10;
}

.float-1 { right: -20px; top: 100px; width: 148px; }
.float-2 { left: -24px; bottom: 120px; width: 154px; }

.click-me-badge {
    position: absolute;
    bottom: 130px;
    left: -45px;
    background: var(--lime);
    color: white;
    font-family: 'Syne', sans-serif;
    font-size: 12px;
    font-weight: 700;
    padding: 9px 16px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(168,230,61,0.4);
    z-index: 10;
    pointer-events: none;
    animation: floatY 2.5s ease-in-out infinite;
}

.badge-dir::after { content: ">"; }


.float-label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 5px; }
.float-value { font-size: 28px; font-weight: 700; color: var(--lime); line-height: 1; }
.float-value-sm { font-size: 16px; font-weight: 700; color: var(--text); margin-top: 2px; }
.float-sub { font-size: 10px; color: var(--text-muted); margin-top: 4px; }
.float-icon { font-size: 14px; margin-bottom: 6px; }

/* ── STATS BAR ── */
.stats-bar { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.stats-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}

.stat-item {
    padding: 56px 40px;
    border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }

.stat-num {
    font-family: 'Instrument Serif', serif;
    font-size: 54px;
    color: var(--lime);
    line-height: 1;
    margin-bottom: 10px;
}
.stat-label { font-size: 14px; color: var(--text-muted); max-width: 180px; margin: 0 auto; line-height: 1.55; }

/* ── FEATURES ── */
.features { padding: 110px 0; }
.features-head { margin-bottom: 60px; }

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
    cursor: default;
}
.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--lime-border);
    box-shadow: 0 0 0 1px var(--lime-border);
}

.feature-icon {
    width: 44px; height: 44px;
    background: var(--lime-faint);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--lime);
}

.feature-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
}
.feature-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* ── HOW IT WORKS ── */
.how { padding: 110px 0; background: var(--bg-mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.how-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.steps { margin-top: 40px; display: flex; flex-direction: column; gap: 0; }

.step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }

.step-num {
    font-family: 'Instrument Serif', serif;
    font-size: 36px;
    color: var(--lime-border);
    line-height: 1;
    flex-shrink: 0;
    width: 52px;
    transition: color 0.2s;
}
.step:hover .step-num { color: var(--lime); }

.step-content h4 {
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}
.step-content p { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

/* How phone */
.how-visual { display: flex; justify-content: center; }
.how-phone-wrap { position: relative; }
.how-phone {
    width: 270px;
    height: 540px;
    border-radius: 46px;
    border: 10px solid #222;
    overflow: hidden;
    box-shadow: var(--shadow-phone);
}

/* ── EXCLUSIVES ── */
.exclusives { padding: 110px 0; }

.excl-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.excl-cards { margin-top: 8px; }

.excl-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: transform 0.2s, border-color 0.2s;
}
.excl-card:hover { transform: translateX(5px); border-color: var(--lime-border); }

.excl-icon-wrap {
    width: 44px; height: 44px;
    background: var(--lime-faint);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--lime);
}

.excl-tag {
    display: inline-block;
    background: var(--lime-faint);
    color: var(--lime);
    font-size: 9px; font-weight: 700;
    padding: 3px 9px; border-radius: 50px;
    margin-bottom: 6px; letter-spacing: 0.5px;
}

.excl-card h4 { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.excl-card p { font-size: 13px; color: var(--text-mid); }

/* Exclusives right panel */
.excl-card-panel {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: sticky;
    top: 90px;
}

.excl-panel-head {
    background: #111;
    padding: 36px 32px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.excl-panel-title {
    font-family: 'Instrument Serif', serif;
    font-size: 28px;
    color: var(--text);
    margin-bottom: 6px;
}
.excl-panel-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }

.excl-panel-placeholder {
    background: rgba(255,255,255,0.03);
    border: 1px dashed var(--border-md);
    border-radius: var(--radius-md);
    padding: 28px 20px;
}
.excl-placeholder-icon { font-size: 32px; margin-bottom: 8px; }
.excl-placeholder-title { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.excl-placeholder-text { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

.excl-panel-body { padding: 24px 28px; }
.excl-panel-list-label { font-size: 11px; font-weight: 600; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.excl-panel-list { display: flex; flex-direction: column; gap: 12px; }
.excl-panel-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text-mid); }
.excl-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); flex-shrink: 0; }

/* ── CTA ── */
.cta-section {
    background: var(--bg-mid);
    border-top: 1px solid var(--border);
    padding: 120px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168,230,61,0.06) 0%, transparent 70%);
    top: -200px; left: 50%; transform: translateX(-50%);
    pointer-events: none;
}


.cta-label {
    font-family: 'Syne', sans-serif;
    font-size: 11px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--lime); margin-bottom: 20px;
}
.cta-title {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 400;
    color: var(--text);
    line-height: 1.1;
    margin-bottom: 18px;
}
.cta-sub { font-size: 17px; color: var(--text-mid); margin-bottom: 44px; }

.cta-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto 18px;
}
.cta-form input {
    flex: 1;
    padding: 16px 24px;
    border: 1px solid var(--border-md);
    border-radius: 50px;
    font-size: 15px;
    font-family: 'DM Sans', sans-serif;
    background: var(--bg-card);
    color: var(--text);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.cta-form input::placeholder { color: var(--text-muted); }
.cta-form input:focus {
    border-color: var(--lime);
    box-shadow: 0 0 0 3px rgba(168,230,61,0.12);
}

.cta-note { font-size: 12px; color: var(--text-muted); position: relative; z-index: 1; }

/* ── FOOTER ── */
footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 36px 0;
}
.footer-inner {
    display: flex; align-items: center; justify-content: space-between;
}
.footer-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800; font-size: 15px; letter-spacing: 4px;
    color: var(--text); margin-bottom: 6px;
}
.footer-logo img { height: 38px; width: auto; display: block; }
.footer-copy { font-size: 12px; color: var(--text-muted); }
.footer-legal {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-muted);
}
.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--lime); }

.social-icons { display: flex; gap: 16px; align-items: center; }
.social-icon {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: color 0.2s, transform 0.15s;
}
.social-icon:hover { color: var(--lime); transform: translateY(-2px); }

/* ── SCROLL ANIMATIONS ── */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── MOBILE ── */
@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; min-height: auto; padding: 60px 0 40px; gap: 60px; }
    .hero-visual { height: 520px; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .stats-inner { grid-template-columns: 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 40px; }
    .stat-item:last-child { border-bottom: none; }
    .how-inner { grid-template-columns: 1fr; }
    .how-visual { display: none; }
    .excl-inner { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .excl-card-panel { position: static; }
}

@media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
    .hero-h1 { font-size: 44px; }
    .form-field { flex-direction: column; }
    .form-field input { max-width: 100%; }
    .cta-form { flex-direction: column; align-items: stretch; padding: 0 12px; }
    .app-badges { flex-direction: column; align-items: center; }
    .phone-main { width: 200px; height: 415px; left: 34px; }
    .phone-back { width: 180px; height: 375px; }
    .phone-back2 { width: 172px; height: 358px; left: 76px; }
    .float-1 { right: -10px; }
    .float-2 { left: -10px; }
    .click-me-badge { left: 0; right: 0; margin: auto; width: fit-content; bottom: 100px; }
    .badge-dir::after { content: "↑"; }
}