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

:root {
    --primary: #1a1a1a;
    --accent: #d4a574;
    --accent-light: #f5e6d3;
    --text: #2d2d2d;
    --text-light: #666;
    --bg: #fefdfb;
    --card-bg: #ffffff;
    --border: #ede8e0;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

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

/* ── GRAIN OVERLAY ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
}

/* ── NAV ── */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 48px;
    transition: all 0.4s ease;
}

#navbar.scrolled {
    background: rgba(254, 253, 251, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 16px 48px;
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.3px;
}

.nav-logo span { color: var(--accent); }

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

.nav-links a {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: color 0.2s;
    cursor: pointer;
}

.nav-links a:hover { color: var(--primary); }

.nav-cta {
    background: var(--primary) !important;
    color: var(--bg) !important;
    padding: 10px 22px !important;
    border-radius: 100px !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
    background: #333 !important;
    transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Decorative background elements */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,165,116,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212,165,116,0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(212,165,116,0.1);
    border: 1px solid rgba(212,165,116,0.25);
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 36px;
    animation: fadeUp 0.8s ease both;
}

.hero-eyebrow-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

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

.hero h1 {
font-family: 'Playfair Display', serif;
font-size: clamp(2.8rem, 6vw, 5.5rem);
font-weight: 600;
line-height: 1.08;
letter-spacing: -0.03em;
max-width: 900px;
margin-bottom: 28px;
animation: fadeUp 0.7s 0.1s ease both;
}

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

.hero-sub {
    font-size: 18px;
    font-weight: 300;
    color: var(--text-light);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 48px;
    animation: fadeUp 0.8s 0.2s ease both;
}

.hero-sub strong {
    color: var(--text);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 72px;
    animation: fadeUp 0.8s 0.3s ease both;
}

/* Google Sign-in Button */
.btn-google {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary);
    color: #fff;
    padding: 16px 32px;
    border-radius: 100px;
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    letter-spacing: -0.2px;
    box-shadow: 0 4px 24px rgba(26,26,26,0.18);
}

.btn-google:hover {
    background: #2d2d2d;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(26,26,26,0.24);
}

.google-icon {
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.google-icon svg { width: 13px; height: 13px; }

.cta-note {
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.cta-note svg {
    color: var(--accent);
    width: 14px;
    height: 14px;
}

/* Hero video */
.hero-visual {
    width: 100%;
    max-width: 900px;
    position: relative;
    animation: fadeUp 0.8s 0.4s ease both;
}

.video-shell {
    background: var(--primary);
    border-radius: 20px;
    padding: 5px;
    box-shadow: 0 40px 100px rgba(26,26,26,0.18), 0 0 0 1px rgba(26,26,26,0.06);
    position: relative;
}

.video-shell::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    background: linear-gradient(135deg, rgba(212,165,116,0.3) 0%, transparent 50%, rgba(212,165,116,0.1) 100%);
    z-index: -1;
}

.video-chrome-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 5px 7px 5px;
}

.chrome-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 0.4;
}

.chrome-dot:nth-child(1) { background: #ff6058; }
.chrome-dot:nth-child(2) { background: #ffbd2e; }
.chrome-dot:nth-child(3) { background: #28c840; }

.chrome-url-bar {
    flex: 1;
    background: rgba(255,255,255,0.08);
    border-radius: 6px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    font-family: var(--sans);
    letter-spacing: 0.3px;
}

.video-frame {
    border-radius: 12px;
    overflow: hidden;
    line-height: 0;
    background: #111;
}

.video-frame video {
    width: 100%;
    border-radius: 12px;
    display: block;
}

/* ── SOCIAL PROOF STRIP ── */
.social-strip {
    background: var(--primary);
    padding: 20px 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    overflow: hidden;
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

.strip-number {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 600;
    color: var(--accent);
}

.strip-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.3px;
    font-weight: 300;
}

.strip-sep {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

/* ── SECTION SHARED ── */
.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

section { position: relative; }

/* ── HOW IT WORKS ── */
.how-section {
    padding: 120px 48px;
    background: var(--bg);
    max-width: 1200px;
    margin: 0 auto;
}

.how-header {
    text-align: center;
    margin-bottom: 80px;
}

.how-header h2 {
    font-family: var(--serif);
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--primary);
    margin-bottom: 16px;
}

.how-header p {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 300;
    max-width: 480px;
    margin: 0 auto;
}

.steps-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 40px rgba(26,26,26,0.06);
}

.step-card {
    background: var(--card-bg);
    padding: 52px 48px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.step-card:hover { background: #fffef9; }

.step-card::before {
    content: attr(data-num);
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-family: var(--serif);
    font-size: 140px;
    font-weight: 700;
    color: rgba(212,165,116,0.06);
    line-height: 1;
    pointer-events: none;
    transition: color 0.3s;
}

.step-card:hover::before { color: rgba(212,165,116,0.1); }

.step-num-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--accent-light);
    border-radius: 10px;
    font-family: var(--serif);
    font-size: 15px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 24px;
}

.step-title {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}

.step-desc {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.75;
    max-width: 340px;
}

/* ── WHY SECTION ── */
.why-section {
    padding: 120px 48px;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,165,116,0.3), transparent);
}

.why-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.why-top {
    max-width: 680px;
    margin-bottom: 72px;
}

.why-top h2 {
    font-family: var(--serif);
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 400;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
}

.why-top h2 em {
    font-style: italic;
    color: var(--accent);
    font-weight: 300;
}

.why-top p {
    font-size: 16px;
    color: rgba(255,255,255,0.45);
    font-weight: 300;
    line-height: 1.8;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.06);
    border-radius: 20px;
    overflow: hidden;
}

.why-card {
    background: rgba(255,255,255,0.02);
    padding: 44px 36px;
    position: relative;
    transition: background 0.3s;
}

.why-card:hover { background: rgba(255,255,255,0.05); }

.why-card-icon {
    width: 44px;
    height: 44px;
    background: rgba(212,165,116,0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent);
    flex-shrink: 0;
}

.why-card h3 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: -0.2px;
}

.why-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    font-weight: 300;
    line-height: 1.8;
}

/* ── PULL QUOTE ── */
.quote-section {
    padding: 100px 48px;
    background: var(--accent-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '\201C';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--serif);
    font-size: 300px;
    color: rgba(212,165,116,0.15);
    line-height: 1;
    pointer-events: none;
}

.quote-text {
    font-family: var(--serif);
    font-size: clamp(24px, 3.5vw, 44px);
    font-weight: 400;
    font-style: italic;
    color: var(--primary);
    line-height: 1.3;
    max-width: 820px;
    margin: 0 auto 24px;
    position: relative;
}

.quote-sub {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── PRICING ── */
.pricing-section {
    padding: 120px 48px;
    background: var(--bg);
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 64px;
}

.pricing-header h2 {
    font-family: var(--serif);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--primary);
    margin-bottom: 12px;
}

.pricing-header p {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 300;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 860px;
    margin: 0 auto;
}

.plan-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 48px 40px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(26,26,26,0.1);
}

.plan-card.featured {
    background: var(--primary);
    border-color: transparent;
    box-shadow: 0 8px 48px rgba(26,26,26,0.2);
}

.plan-badge-wrap {
    margin-bottom: 24px;
}

.plan-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--accent);
    color: #fff;
    padding: 5px 14px;
    border-radius: 100px;
}

.plan-free-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--accent-light);
    color: var(--accent);
    padding: 5px 14px;
    border-radius: 100px;
}

.plan-name {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 600;
    color: var(--primary);
    margin: 12px 0 8px;
    letter-spacing: -0.5px;
}

.plan-card.featured .plan-name { color: #fff; }

.plan-desc {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 28px;
}

.plan-card.featured .plan-desc { color: rgba(255,255,255,0.45); }

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.plan-card.featured .plan-price { border-bottom-color: rgba(255,255,255,0.1); }

.price-amount {
    font-family: var(--serif);
    font-size: 52px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1;
}

.plan-card.featured .price-amount { color: #fff; }

.price-period {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 300;
}

.plan-card.featured .price-period { color: rgba(255,255,255,0.4); }

.price-was {
    font-size: 16px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 4px;
}

.watermark-note {
    font-size: 12px;
    color: var(--text-light);
    display: block;
    margin-bottom: 16px;
    font-style: italic;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text);
    font-weight: 400;
}

.plan-card.featured .plan-features li { color: rgba(255,255,255,0.75); }

.feature-check {
    width: 18px;
    height: 18px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.plan-card.featured .feature-check {
    background: rgba(212,165,116,0.2);
}

.feature-check svg {
    width: 10px;
    height: 10px;
    color: var(--accent);
}

.btn-plan {
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 16px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 500;
    font-family: var(--sans);
    cursor: pointer;
    transition: all 0.25s;
}

.btn-plan-outline {
    border: 1.5px solid var(--border);
    color: var(--primary);
    background: transparent;
}

.btn-plan-outline:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

.btn-plan-primary {
    background: var(--accent);
    color: #fff;
    border: none;
}

.btn-plan-primary:hover {
    background: #c4945f;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(212,165,116,0.4);
}

/* ── FINAL CTA ── */
.final-cta {
    padding: 140px 48px;
    text-align: center;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(212,165,116,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
}

.final-cta h2 {
    font-family: var(--serif);
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 400;
    line-height: 1.08;
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.final-cta h2 em {
    font-style: italic;
    color: var(--accent);
    font-weight: 300;
}

.final-cta p {
    font-size: 17px;
    color: var(--text-light);
    font-weight: 300;
    max-width: 520px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

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

/* ── FOOTER ── */
footer {
    background: var(--primary);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-logo {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
}

.footer-logo span { color: var(--accent); }

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

.footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.2s;
}

.footer-links a:hover { color: rgba(255,255,255,0.7); }

.footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.25);
    font-weight: 300;
    width: 100%;
    text-align: center;
    margin-top: 8px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

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

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1.visible { transition-delay: 0.1s; }
.reveal-delay-2.visible { transition-delay: 0.2s; }
.reveal-delay-3.visible { transition-delay: 0.3s; }
.reveal-delay-4.visible { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
    #navbar { padding: 20px 24px; }
    #navbar.scrolled { padding: 14px 24px; }
    .nav-hide { display: none; }

    .how-section, .why-section, .pricing-section, .final-cta { padding: 80px 24px; }

    .steps-layout {
    grid-template-columns: 1fr;
    }

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

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

    .social-strip {
    flex-wrap: wrap;
    gap: 24px;
    padding: 24px;
    }

    .strip-sep { display: none; }

    footer {
    padding: 36px 24px;
    flex-direction: column;
    align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .hero { padding: 120px 20px 60px; }
    .step-card { padding: 36px 28px; }
    .why-card { padding: 36px 28px; }
    .plan-card { padding: 36px 28px; }
    .quote-section { padding: 72px 24px; }
}

/* ── STEP CARD GRID LAST ROW ── */
@media (min-width: 961px) {
    .steps-layout .step-card:nth-child(3),
    .steps-layout .step-card:nth-child(4) {
    border-top: 2px solid var(--border);
    }

    .steps-layout .step-card:nth-child(odd) {
    border-right: 2px solid var(--border);
    }
}

/* hover accent line for step cards */
.step-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent);
    transition: width 0.4s ease;
}

.step-card:hover::after { width: 100%; }
