/* ========== RESET & VARIABLES ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg-deep: #0f0d0a;
    --bg-surface: #1a1714;
    --bg-elevated: #231f1a;
    --bg-card: #1e1b16;
    --border-subtle: rgba(237, 230, 214, 0.07);
    --border-medium: rgba(237, 230, 214, 0.12);
    --text-primary: #ede6d6;
    --text-secondary: #a69e8e;
    --text-muted: #6b6358;
    --accent-gold: #d4a053;
    --accent-gold-hover: #e0b56a;
    --accent-gold-glow: rgba(212, 160, 83, 0.15);
    --accent-terracotta: #c06b45;
    --accent-warm: #b8865a;
    --success: #7fb069;
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
}

/* ========== GRAIN OVERLAY ========== */
.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.035;
}
.grain svg { width: 100%; height: 100%; }

/* ========== AMBIENT BACKGROUND ========== */
.ambient {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}
.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    will-change: transform;
}
.ambient-orb--1 {
    width: 700px;
    height: 700px;
    top: -200px;
    left: -100px;
    background: radial-gradient(circle, rgba(212, 160, 83, 0.05), transparent 70%);
    animation: drift1 25s ease-in-out infinite;
}
.ambient-orb--2 {
    width: 500px;
    height: 500px;
    bottom: 20%;
    right: -100px;
    background: radial-gradient(circle, rgba(192, 107, 69, 0.04), transparent 70%);
    animation: drift2 30s ease-in-out infinite;
}

@keyframes drift1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(80px, 60px) scale(1.1); }
    66% { transform: translate(-40px, 100px) scale(0.95); }
}
@keyframes drift2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-60px, -80px) scale(1.08); }
}

/* ========== LAYOUT ========== */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 2.5rem);
}

section {
    position: relative;
    z-index: 1;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.1;
}

/* ========== SCROLL REVEAL ========== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.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; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ========== NAV ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 0;
    transition: background 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
    background: rgba(15, 13, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}
.nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 0;
}
.nav-logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.01em;
}
.nav-logo span {
    color: var(--accent-gold);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}
.nav-links .nav-cta-item {
    display: list-item;
}
.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: var(--text-primary);
}
.btn-nav {
    background: var(--accent-gold);
    color: var(--bg-deep);
    border: none;
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    text-decoration: none;
}
.btn-nav:hover {
    background: var(--accent-gold-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 24px var(--accent-gold-glow);
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: clamp(7rem, 14vh, 10rem) 0 clamp(4rem, 8vh, 6rem);
}
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: center;
}
.hero-content {
    max-width: 560px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border-medium);
    border-radius: 100px;
    padding: 0.4rem 1rem 0.4rem 0.6rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}
.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--success);
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(127, 176, 105, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(127, 176, 105, 0); }
}
.hero h1 {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-weight: 300;
}
.hero h1 em {
    font-style: normal;
    color: var(--accent-gold);
    position: relative;
}
.hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 460px;
}
.hero-form {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.hero-input {
    flex: 1;
    background: var(--bg-elevated);
    border: 1px solid var(--border-medium);
    border-radius: 100px;
    padding: 0.85rem 1.4rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.hero-input::placeholder {
    color: var(--text-muted);
}
.hero-input:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px var(--accent-gold-glow);
}
.btn-primary {
    background: var(--accent-gold);
    color: var(--bg-deep);
    border: none;
    padding: 0.85rem 2rem;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}
.btn-primary:hover {
    background: var(--accent-gold-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 30px var(--accent-gold-glow);
}
.hero-note {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.hero-note strong {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Hero Visual — Waveform + Phone */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 100%;
    overflow: visible;
}
.phone-frame {
    width: 280px;
    height: 560px;
    background: var(--bg-surface);
    border-radius: 36px;
    border: 1px solid var(--border-medium);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(0,0,0,0.3),
        0 20px 60px rgba(0,0,0,0.4),
        0 0 80px var(--accent-gold-glow);
    animation: phone-float 6s ease-in-out infinite;
}
@keyframes phone-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.phone-notch {
    width: 120px;
    height: 28px;
    background: var(--bg-deep);
    border-radius: 0 0 18px 18px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.phone-screen {
    padding: 1rem 1.25rem;
    height: calc(100% - 28px);
    display: flex;
    flex-direction: column;
}
.phone-time {
    text-align: center;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    font-weight: 500;
}
.phone-greeting {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 0.3rem;
}
.phone-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

/* Mini insight card inside phone */
.mini-insight {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 1rem;
    margin-bottom: 0.75rem;
}
.mini-insight-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}
.mini-mood {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.mini-mood-emoji { font-size: 1.3rem; }
.mini-mood-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-primary);
}
.mini-mood-dots {
    display: flex;
    gap: 3px;
}
.mini-mood-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border-medium);
}
.mini-mood-dots .dot.filled {
    background: var(--accent-gold);
}
.mini-themes {
    display: flex;
    gap: 0.35rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}
.mini-chip {
    background: rgba(212, 160, 83, 0.1);
    border: 1px solid rgba(212, 160, 83, 0.2);
    color: var(--accent-gold);
    font-size: 0.65rem;
    padding: 0.2rem 0.55rem;
    border-radius: 100px;
    font-weight: 500;
}
.mini-prompt {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.45;
    padding-left: 0.6rem;
    border-left: 2px solid var(--accent-gold);
}

/* Second mini card */
.mini-insight--prev {
    opacity: 0.5;
}
.mini-insight--prev .mini-prompt {
    border-left-color: var(--accent-terracotta);
}

/* Phone waveform */
.phone-record-area {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 0.75rem;
}
.phone-waveform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5px;
    height: 32px;
    margin-bottom: 0.75rem;
}
.phone-waveform .bar {
    width: 2.5px;
    border-radius: 2px;
    background: linear-gradient(to top, var(--accent-gold), var(--accent-terracotta));
    animation: wave 1.4s ease-in-out infinite;
}
@keyframes wave {
    0%, 100% { height: 15%; }
    50% { height: 85%; }
}
.phone-record-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-gold);
    border: 3px solid rgba(212, 160, 83, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: record-pulse 2s ease-in-out infinite;
}
.phone-record-btn::after {
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--bg-deep);
}
@keyframes record-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 160, 83, 0.3); }
    50% { box-shadow: 0 0 0 10px rgba(212, 160, 83, 0); }
}

/* ========== STATS BAR ========== */
.stats-bar {
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: clamp(2.5rem, 4vw, 3.5rem) 0;
    background: var(--bg-surface);
}
.stats-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
    flex-wrap: wrap;
}
.stat {
    text-align: center;
}
.stat-number {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--accent-gold);
    display: block;
    letter-spacing: -0.02em;
}
.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}
.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--border-subtle);
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
    padding: clamp(5rem, 10vw, 8rem) 0;
}
.section-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}
.section-subtitle {
    font-size: clamp(1rem, 1.6vw, 1.1rem);
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: clamp(3rem, 5vw, 4rem);
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
}
.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
}
.step-card:hover {
    border-color: var(--border-medium);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--accent-gold);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
}
.step-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
}
.step-icon--record {
    background: rgba(212, 160, 83, 0.1);
    border: 1px solid rgba(212, 160, 83, 0.2);
}
.step-icon--understand {
    background: rgba(192, 107, 69, 0.1);
    border: 1px solid rgba(192, 107, 69, 0.2);
}
.step-icon--grow {
    background: rgba(127, 176, 105, 0.1);
    border: 1px solid rgba(127, 176, 105, 0.2);
}
.step-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}
.step-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ========== INSIGHT DEMO ========== */
.insight-demo {
    padding: clamp(5rem, 10vw, 8rem) 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}
.insight-demo .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: center;
}
.insight-content {
    max-width: 480px;
}
.insight-visual {
    display: flex;
    justify-content: center;
}

/* Large Insight Card */
.insight-card-large {
    width: 100%;
    max-width: 380px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-medium);
    border-radius: 24px;
    padding: clamp(1.5rem, 3vw, 2rem);
    box-shadow:
        0 20px 60px rgba(0,0,0,0.3),
        0 0 80px rgba(212, 160, 83, 0.05);
    animation: card-breathe 5s ease-in-out infinite;
}
@keyframes card-breathe {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.01) rotate(0.3deg); }
}
.card-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.card-date-icon {
    width: 16px;
    height: 16px;
    opacity: 0.5;
}
.card-mood-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-subtle);
}
.card-mood-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.card-mood-emoji {
    font-size: 2.25rem;
    line-height: 1;
}
.card-mood-text .card-mood-label {
    font-family: var(--font-display);
    font-size: 1.25rem;
    display: block;
}
.card-mood-text .card-mood-score {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.card-dots {
    display: flex;
    gap: 5px;
}
.card-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bg-deep);
    border: 1px solid var(--border-medium);
    transition: all 0.3s;
}
.card-dots .dot.filled {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    box-shadow: 0 0 8px var(--accent-gold-glow);
}
.card-themes {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.card-chip {
    background: rgba(212, 160, 83, 0.08);
    border: 1px solid rgba(212, 160, 83, 0.18);
    color: var(--accent-gold);
    font-size: 0.8rem;
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    font-weight: 500;
}
.card-chip--alt {
    background: rgba(192, 107, 69, 0.08);
    border-color: rgba(192, 107, 69, 0.18);
    color: var(--accent-terracotta);
}
.card-reflection {
    background: rgba(212, 160, 83, 0.04);
    border-left: 3px solid var(--accent-gold);
    border-radius: 0 12px 12px 0;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}
.card-reflection-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
    font-weight: 600;
}
.card-reflection-text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.5;
}
.card-transcript-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s;
}
.card-transcript-toggle:hover { color: var(--text-secondary); }
.card-transcript-toggle svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s;
}

/* Insight features list */
.insight-features {
    list-style: none;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.insight-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}
.insight-features li .check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(127, 176, 105, 0.1);
    border: 1px solid rgba(127, 176, 105, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.insight-features li .check svg {
    width: 11px;
    height: 11px;
    stroke: var(--success);
}

/* ========== FEATURES ========== */
.features {
    padding: clamp(5rem, 10vw, 8rem) 0;
}
.features-header {
    text-align: center;
    margin-bottom: clamp(3rem, 5vw, 4rem);
}
.features-header .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
}
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    transition: border-color 0.4s, transform 0.3s;
}
.feature-card:hover {
    border-color: var(--border-medium);
    transform: translateY(-2px);
}
.feature-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}
.feature-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}
.feature-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========== PRIVACY ========== */
.privacy {
    padding: clamp(5rem, 10vw, 8rem) 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}
.privacy .container {
    text-align: center;
    max-width: 680px;
}
.privacy-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: rgba(212, 160, 83, 0.08);
    border: 1px solid rgba(212, 160, 83, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 1.8rem;
}
.privacy .section-title {
    margin-bottom: 1.5rem;
}
.privacy-text {
    font-size: clamp(1rem, 1.6vw, 1.1rem);
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 2.5rem;
}
.privacy-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.privacy-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
    padding: 0.5rem 1.1rem;
    font-size: 0.82rem;
    color: var(--text-secondary);
}
.privacy-badge svg {
    width: 16px;
    height: 16px;
    stroke: var(--accent-gold);
}

/* ========== PRICING ========== */
.pricing {
    padding: clamp(5rem, 10vw, 8rem) 0;
}
.pricing-header {
    text-align: center;
    margin-bottom: clamp(3rem, 5vw, 4rem);
}
.pricing-header .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 720px;
    margin: 0 auto;
}
.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    transition: transform 0.3s, box-shadow 0.3s;
}
.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.price-card--pro {
    border-color: var(--accent-gold);
    position: relative;
    background: linear-gradient(135deg, var(--bg-card), rgba(212, 160, 83, 0.04));
}
.price-card--pro::before {
    content: 'Most popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: var(--bg-deep);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.3rem 1rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.price-tier {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}
.price-amount {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.2rem);
    letter-spacing: -0.03em;
    margin-bottom: 0.25rem;
}
.price-amount span {
    font-size: 0.5em;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 400;
}
.price-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
}
.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 2rem;
}
.price-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.price-features li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.price-features li svg.check-icon { stroke: var(--success); }
.btn-price {
    width: 100%;
    padding: 0.85rem;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    display: block;
    text-decoration: none;
}
.btn-price--free {
    background: transparent;
    border: 1px solid var(--border-medium);
    color: var(--text-primary);
}
.btn-price--free:hover {
    background: var(--bg-elevated);
    border-color: var(--text-muted);
}
.btn-price--pro {
    background: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    color: var(--bg-deep);
}
.btn-price--pro:hover {
    background: var(--accent-gold-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 30px var(--accent-gold-glow);
}

/* ========== FINAL CTA ========== */
.final-cta {
    padding: clamp(5rem, 10vw, 8rem) 0;
    text-align: center;
    position: relative;
}
.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-gold-glow), transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}
.final-cta .container {
    position: relative;
    max-width: 600px;
}
.final-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-style: italic;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}
.final-cta .section-subtitle {
    margin: 0 auto 2.5rem;
}
.final-cta-form {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    max-width: 440px;
    margin: 0 auto 1rem;
}
.final-cta .hero-note {
    text-align: center;
}

/* ========== FORM SUCCESS STATE ========== */
.form-success {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.4rem;
    border-radius: 100px;
    background: rgba(127, 176, 105, 0.1);
    border: 1px solid rgba(127, 176, 105, 0.25);
    color: var(--success);
    font-size: 0.95rem;
    font-weight: 500;
    animation: fade-in 0.5s ease;
}
.form-success.show { display: flex; }
@keyframes fade-in {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* ========== FOOTER ========== */
.footer {
    border-top: 1px solid var(--border-subtle);
    padding: 3rem 0;
    position: relative;
    z-index: 1;
}
.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.footer-logo {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-primary);
    text-decoration: none;
}
.footer-logo span { color: var(--accent-gold); }
.footer-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--text-secondary); }
.footer-right {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========== MOBILE NAV ========== */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 110;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}
.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* Mobile menu overlay */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 13, 10, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mobile-menu.open {
    display: flex;
    opacity: 1;
}
.mobile-menu a {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s;
}
.mobile-menu a:hover {
    color: var(--accent-gold);
}
.mobile-menu .btn-nav {
    margin-top: 0.5rem;
    font-size: 1rem;
    padding: 0.75rem 2rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content { max-width: 100%; }
    .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-form { max-width: 420px; margin-left: auto; margin-right: auto; }
    .hero-visual { margin-top: 2rem; }
    .phone-frame { width: 240px; height: 480px; }
    .steps-grid { grid-template-columns: 1fr; max-width: 480px; }
    .insight-demo .container { grid-template-columns: 1fr; text-align: center; }
    .insight-content { max-width: 100%; margin: 0 auto; }
    .insight-features { align-items: center; }
    .insight-visual { order: -1; margin-bottom: 2rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
    .nav-links { display: none; }
    .nav-toggle { display: block; }
}
@media (max-width: 600px) {
    .container {
        padding: 0 1rem;
    }
    .hero h1 { font-size: clamp(1.8rem, 8vw, 3rem); }
    .hero-form { flex-direction: column; }
    .hero-input { text-align: center; }
    .features-grid { grid-template-columns: 1fr; }
    .stats-bar .container { flex-direction: column; gap: 1.5rem; }
    .stat-divider { width: 48px; height: 1px; }
    .final-cta-form { flex-direction: column; }
    .footer .container { flex-direction: column; text-align: center; }
    .footer-left { flex-direction: column; gap: 1rem; }
    .privacy-badges { flex-direction: column; align-items: center; }
    .phone-frame { width: 220px; height: 440px; }
    .mini-insight--prev { display: none; }
    .hero-badge { font-size: 0.72rem; padding: 0.35rem 0.8rem 0.35rem 0.5rem; }
    .insight-card-large { max-width: 300px; }
    .price-card--pro::before { font-size: 0.65rem; padding: 0.25rem 0.75rem; }
}
@media (max-width: 360px) {
    .container {
        padding: 0 0.75rem;
    }
    .hero h1 { font-size: 1.65rem; }
    .hero-sub { font-size: 0.9rem; }
    .hero-badge { font-size: 0.68rem; }
    .phone-frame { width: 200px; height: 400px; }
    .mini-chip { font-size: 0.6rem; padding: 0.15rem 0.4rem; }
    .mini-mood-label { font-size: 0.7rem; }
    .mini-prompt { font-size: 0.7rem; }
    .section-title { font-size: 1.6rem; }
    .step-card, .feature-card, .price-card { padding: 1.25rem; }
    .nav-logo { font-size: 1.05rem; }
    .btn-primary { padding: 0.75rem 1.4rem; font-size: 0.88rem; }
    .insight-card-large { max-width: 260px; padding: 1.25rem; }
    .card-mood-emoji { font-size: 1.75rem; }
    .card-mood-label { font-size: 1.05rem; }
    .card-reflection { padding: 0.75rem 1rem; }
    .card-reflection-text { font-size: 0.9rem; }
}
