:root {
    --primary: #1a1a1a;
    --accent: #d4a574;
    --accent-light: #f5e6d3;
    --text: #2d2d2d;
    --text-light: #666;
    --bg: #fefdfb;
    --card-bg: #ffffff;
    --border: #ede8e0;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    position: relative;
}

/* Grain overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    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.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.022;
    pointer-events: none;
    z-index: 1000;
}

/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 900;
    padding: 0 clamp(16px, 5vw, 60px);
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(254, 253, 251, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: border-color 0.3s;
}
nav.scrolled { border-bottom-color: var(--border); }

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.02em;
    text-decoration: none;
}
.nav-logo span { color: var(--accent); }

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(16px, 3vw, 36px);
}
.nav-links a {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }

.nav-cta {
    background: var(--primary);
    color: #fff !important;
    padding: 9px 20px;
    border-radius: 50px;
    font-weight: 500 !important;
    font-size: 0.85rem !important;
    transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: #333 !important; transform: translateY(-1px); }

/* ─── HERO ─── */
.hero {
    padding-top: 64px;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-left: clamp(16px, 5vw, 60px);
    padding-right: clamp(16px, 5vw, 60px);
    padding-bottom: 60px;
    position: relative;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-light);
    color: var(--accent);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.7s 0.1s forwards;
}
.hero-eyebrow .dot {
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}

h1 {
font-family: 'Playfair Display', serif;
font-size: clamp(2.2rem, 5.5vw, 4.8rem);
font-weight: 700;
line-height: 1.08;
letter-spacing: -0.02em;
color: var(--primary);

margin: 7vh 0;

opacity: 0;
animation: fadeUp 0.8s 0.2s ease-out forwards;
}

h1 em {
font-style: italic;
color: var(--accent);
}

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

h1 em {
font-style: italic;
color: var(--accent);
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 300;
    color: var(--text-light);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 44px;
    opacity: 0;
    animation: fadeUp 0.8s 0.35s forwards;
}

/* Google CTA */
.cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 64px;
    opacity: 0;
    animation: fadeUp 0.8s 0.5s forwards;
}

.btn-google {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
    box-shadow: 0 4px 24px rgba(212, 165, 116, 0.4);
    letter-spacing: -0.01em;
}
.btn-google:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 36px rgba(212, 165, 116, 0.55);
    background: #c99460;
}
.btn-google:active { transform: translateY(-1px); }

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

.cta-note {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 400;
}
.cta-note strong { color: var(--text); font-weight: 500; }

/* ─── HERO VIDEO ─── */
.hero-video-wrap {
    width: 100%;
    max-width: 940px;
    opacity: 0;
    animation: fadeUp 1s 0.7s forwards;
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--primary);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(26,26,26,0.25), 0 0 0 1px rgba(255,255,255,0.06) inset;
    cursor: pointer;
    transition: transform 0.35s;
}
.video-placeholder:hover { transform: scale(1.005); }
.video-placeholder:hover .play-btn { transform: scale(1.12); }

/* Subtle grid pattern inside video */
.video-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}
.video-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 60%, rgba(212,165,116,0.12) 0%, transparent 65%);
}

.play-btn {
    width: 72px; height: 72px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 32px rgba(212,165,116,0.5);
}
.play-btn svg { margin-left: 4px; }

.video-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.3);
    font-family: monospace;
    letter-spacing: 0.04em;
    z-index: 1;
}

/* Screen chrome bar */
.browser-chrome {
    background: #2a2a2a;
    border-radius: 12px 12px 0 0;
    padding: 12px 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.chrome-dot { width: 10px; height: 10px; border-radius: 50%; }
.chrome-dot:nth-child(1) { background: #ff5f57; }
.chrome-dot:nth-child(2) { background: #ffbd2e; }
.chrome-dot:nth-child(3) { background: #28c840; }
.chrome-bar {
    flex: 1;
    height: 22px;
    background: rgba(255,255,255,0.07);
    border-radius: 4px;
    margin-left: 12px;
    display: flex;
    align-items: center;
    padding: 0 10px;
}
.chrome-url {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.3);
    font-family: monospace;
}
.video-frame-wrapper {
    border-radius: 0 0 16px 16px;
    overflow: hidden;
}

/* ─── SECTION UTILITY ─── */
section {
    padding: clamp(60px, 10vw, 120px) clamp(16px, 5vw, 60px);
}

.section-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--primary);
    max-width: 680px;
}

h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 600;
    color: var(--primary);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.section-intro {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: var(--text-light);
    line-height: 1.75;
    max-width: 560px;
    font-weight: 300;
    margin-top: 16px;
}

/* ─── HOW IT WORKS ─── */
.how-section { background: var(--card-bg); }

.how-header {
    display: flex;
    flex-direction: column;
    margin-bottom: clamp(40px, 6vw, 72px);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2px;
}

.step-card {
    background: var(--bg);
    padding: clamp(24px, 4vw, 44px);
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}
.step-card:first-child { border-radius: 12px 0 0 12px; }
.step-card:last-child { border-radius: 0 12px 12px 0; }
.step-card:hover { background: var(--accent-light); }

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(212,165,116,0.15);
    line-height: 1;
    margin-bottom: 16px;
    transition: color 0.3s;
}
.step-card:hover .step-number { color: rgba(212,165,116,0.4); }

.step-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}
.step-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.65;
    font-weight: 300;
}

/* ─── SCREENSHOTS SECTION ─── */
.screenshots-section {
    background: var(--bg);
}

.screenshots-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: clamp(40px, 6vw, 72px);
}
.screenshots-header h2 { text-align: center; }
.screenshots-header .section-intro { text-align: center; max-width: 520px; }

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: clamp(12px, 2vw, 24px);
}

.screenshot-card {
    background: var(--card-bg);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
}
.screenshot-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(26,26,26,0.1);
}

.screenshot-img {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #f0ebe3, #e8ddd0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.screenshot-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(212,165,116,0.08) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(212,165,116,0.08) 1px, transparent 1px);
    background-size: 24px 24px;
}
.screenshot-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(212,165,116,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.screenshot-img-label {
    font-size: 0.7rem;
    font-family: monospace;
    color: rgba(0,0,0,0.25);
    position: absolute;
    bottom: 10px;
    right: 12px;
    z-index: 1;
}

.screenshot-body {
    padding: 20px;
}
.screenshot-body h3 { font-size: 1rem; margin-bottom: 6px; }
.screenshot-body p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 300;
}

/* ─── FEATURES / WHY ─── */
.why-section { background: var(--primary); }

.why-section .section-label { color: var(--accent); }
.why-section h2 { color: #fff; max-width: 580px; }
.why-section .section-intro { color: rgba(255,255,255,0.45); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: clamp(16px, 2vw, 28px);
    margin-top: clamp(40px, 6vw, 72px);
}

.why-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: clamp(20px, 3vw, 36px);
    transition: background 0.3s, border-color 0.3s;
}
.why-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(212,165,116,0.3);
}

.why-icon {
    width: 44px; height: 44px;
    background: rgba(212,165,116,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.why-icon svg { color: var(--accent); }

.why-card h3 { color: #fff; font-size: 1rem; margin-bottom: 10px; }
.why-card p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    font-weight: 300;
}

/* ─── PROOF COPY ─── */
.proof-section {
    background: var(--accent-light);
    text-align: center;
    padding: clamp(60px, 8vw, 100px) clamp(16px, 5vw, 60px);
}

.proof-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 4vw, 2.8rem);
    font-weight: 600;
    color: var(--primary);
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.25;
    letter-spacing: -0.02em;
}
.proof-quote em { font-style: italic; color: var(--accent); }

.proof-sub {
    margin-top: 24px;
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    color: var(--text-light);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 300;
}

/* ─── PRICING ─── */
.pricing-section {
    background: var(--bg);
    text-align: center;
}

.pricing-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: clamp(40px, 6vw, 64px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: clamp(16px, 2vw, 24px);
    max-width: 740px;
    margin: 0 auto;
}

.plan-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: clamp(28px, 4vw, 44px);
    text-align: left;
    position: relative;
    transition: box-shadow 0.3s, transform 0.3s;
}
.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(26,26,26,0.08);
}
.plan-card.featured {
    background: var(--primary);
    border-color: var(--primary);
}
.plan-card.featured:hover {
    box-shadow: 0 20px 60px rgba(26,26,26,0.3);
}

.plan-badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 20px;
}
.plan-free-badge {
    display: inline-block;
    background: var(--accent-light);
    color: var(--accent);
    border: 1px solid rgba(212,165,116,0.3);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.plan-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.plan-card:not(.featured) .plan-name { color: var(--primary); }
.plan-card.featured .plan-name { color: #fff; }

.plan-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 28px;
}
.plan-card:not(.featured) .plan-desc { color: var(--text-light); }
.plan-card.featured .plan-desc { color: rgba(255,255,255,0.5); }

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 28px;
}
.price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
}
.plan-card:not(.featured) .price-amount { color: var(--primary); }
.plan-card.featured .price-amount { color: #fff; }

.price-period {
    font-size: 0.85rem;
    font-weight: 300;
}
.plan-card:not(.featured) .price-period { color: var(--text-light); }
.plan-card.featured .price-period { color: rgba(255,255,255,0.4); }

.price-was {
    font-size: 0.8rem;
    font-weight: 400;
    text-decoration: line-through;
    margin-left: 4px;
}
.plan-card:not(.featured) .price-was { color: var(--text-light); }
.plan-card.featured .price-was { color: rgba(255,255,255,0.3); }

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}
.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 300;
}
.plan-card:not(.featured) .plan-features li { color: var(--text); }
.plan-card.featured .plan-features li { color: rgba(255,255,255,0.75); }

.check-icon {
    width: 18px; height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}
.plan-card:not(.featured) .check-icon { color: var(--accent); }
.plan-card.featured .check-icon { color: var(--accent); }

.watermark-note {
    font-size: 0.75rem;
    font-style: italic;
    color: var(--text-light);
    margin-top: -4px;
    margin-bottom: 28px;
    padding: 8px 12px;
    background: var(--accent-light);
    border-radius: 8px;
    display: block;
}

.btn-plan {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform 0.25s, box-shadow 0.25s, opacity 0.25s;
}
.btn-plan:hover { transform: translateY(-2px); }
.btn-plan-outline {
    border: 1.5px solid var(--border) !important;
    background: transparent;
    color: var(--primary);
}
.btn-plan-outline:hover {
    border-color: var(--accent) !important;
    color: var(--accent);
    box-shadow: none;
}
.btn-plan-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 20px rgba(212,165,116,0.35);
}
.btn-plan-primary:hover {
    box-shadow: 0 8px 32px rgba(212,165,116,0.5);
}

/* ─── FINAL CTA ─── */
.final-cta {
    background: var(--primary);
    text-align: center;
    padding: clamp(80px, 12vw, 140px) clamp(16px, 5vw, 60px);
    position: relative;
    overflow: hidden;
}
.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 80%, rgba(212,165,116,0.12) 0%, transparent 60%);
}

.final-cta h2 {
    color: #fff;
    max-width: 640px;
    margin: 0 auto 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.final-cta p {
    color: rgba(255,255,255,0.45);
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    max-width: 420px;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-weight: 300;
    position: relative;
    z-index: 1;
}
.final-cta .cta-group {
    position: relative;
    z-index: 1;
    opacity: 1;
    animation: none;
}
.final-cta .cta-note { color: rgba(255,255,255,0.3); }
.final-cta .cta-note strong { color: rgba(255,255,255,0.5); }

/* ─── FOOTER ─── */
footer {
    background: var(--primary);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 32px clamp(16px, 5vw, 60px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
}
.footer-logo span { color: var(--accent); }
.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-links a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.6); }
.footer-copy {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.2);
    width: 100%;
}

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

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s 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; }

/* ─── DIVIDER ─── */
.divider {
    width: 48px;
    height: 2px;
    background: var(--accent);
    margin-top: 24px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 600px) {
    .nav-links .nav-hide { display: none; }
    .step-card:first-child { border-radius: 12px 12px 0 0; }
    .step-card:last-child { border-radius: 0 0 12px 12px; }
    .steps-grid { grid-template-columns: 1fr; gap: 2px; }
    footer { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 400px) {
    nav { padding: 0 12px; }
    .nav-logo { font-size: 1.1rem; }
}

.video-player {
border: 5px solid;
width: 100%;
height: 100%;
border-radius: 12px;
object-fit: cover;
display: block;
}