/* ===================================
   52 STORIES — DESIGN SYSTEM
   =================================== */

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

:root {
    --charcoal:    #1A1A1A;
    --charcoal-md: #2D2D2D;
    --gold:        #B8976A;
    --gold-light:  #D4B896;
    --cream:       #F7F5F2;
    --cream-dark:  #EDE9E3;
    --white:       #FFFFFF;
    --text-mid:    #5C5C5C;
    --text-light:  #999999;
    --border:      #E4E0DA;
    --border-fine: #D0CCC6;

    --font-head:   'Cormorant Garamond', serif;
    --font-accent: 'Playfair Display', serif;
    --font-body:   'Inter', sans-serif;

    --max-w: 1240px;
    --pad:   clamp(20px, 5vw, 80px);
    --sec:   clamp(72px, 10vw, 128px);

    --ease:  cubic-bezier(0.4, 0, 0.2, 1);
    --dur:   0.4s;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--charcoal);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad);
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3, h4 {
    font-family: var(--font-head);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--charcoal);
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h3 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h4 { font-size: 1.4rem; }

p { color: var(--text-mid); line-height: 1.85; }

em { font-style: italic; color: var(--gold); }
strong { font-weight: 500; color: var(--charcoal); }

.eyebrow, .section-eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title { margin-bottom: 16px; }

.section-sub {
    font-size: 1.1rem;
    color: var(--text-mid);
    max-width: 680px;
    margin: 0 auto 64px;
    text-align: center;
    font-weight: 300;
    line-height: 1.8;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 44px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--dur) var(--ease);
    text-align: center;
    border-radius: 0;
}

.btn-primary {
    background: var(--charcoal);
    color: var(--white);
    border-color: var(--charcoal);
}
.btn-primary:hover {
    background: var(--charcoal-md);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}

.btn-outline {
    background: transparent;
    color: var(--charcoal);
    border-color: var(--border-fine);
}
.btn-outline:hover {
    border-color: var(--charcoal);
    background: var(--charcoal);
    color: var(--white);
}

.btn-ghost {
    background: transparent;
    color: rgba(255,255,255,0.85);
    border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover {
    border-color: rgba(255,255,255,0.85);
    color: var(--white);
}

.btn-lg  { padding: 18px 56px; font-size: 13px; }
.btn-nav { padding: 11px 28px; font-size: 12px; }
.btn-block { display: block; width: 100%; }

/* ===================================
   NAVBAR
   =================================== */
.navbar {
    position: fixed;
    inset: 0 0 auto;
    z-index: 900;
    padding: 22px 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all var(--dur) var(--ease);
}
.navbar.scrolled {
    padding: 16px 0;
    border-bottom-color: var(--border);
}

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

.nav-brand {
    font-family: var(--font-accent);
    font-size: 22px;
    font-weight: 400;
    color: var(--charcoal);
    text-decoration: none;
    letter-spacing: 0.04em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}
.nav-menu a {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.04em;
    color: var(--charcoal);
    text-decoration: none;
    transition: color var(--dur) var(--ease);
}
.nav-menu a:not(.btn):hover { color: var(--gold); }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: all var(--dur) var(--ease);
}

/* ===================================
   HERO
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 90px;
    background: linear-gradient(160deg, var(--charcoal) 0%, #2a2a2a 60%, #1a1510 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(184,151,106,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 20% 80%, rgba(184,151,106,0.05) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding-top: 40px;
    padding-bottom: 80px;
}

.hero .eyebrow { color: var(--gold-light); margin-bottom: 24px; }

h1.hero-heading, .hero-content h1 {
    color: var(--white);
    margin-bottom: 28px;
    text-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.hero-sub {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.75);
    max-width: 640px;
    margin-bottom: 48px;
    font-weight: 300;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-reassurance {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.03em;
    font-style: italic;
    margin-bottom: 0;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.35);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollpulse 2s ease-in-out infinite;
}
@keyframes scrollpulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 0.8; transform: scaleY(1.2); }
}

/* ===================================
   CONCEPT STRIP
   =================================== */
.concept-strip {
    background: var(--charcoal);
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.concept-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.concept-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.concept-num {
    font-family: var(--font-head);
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -0.02em;
}

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

.concept-divider {
    color: rgba(255,255,255,0.15);
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    margin-top: -8px;
}

/* ===================================
   HOW IT WORKS
   =================================== */
.how-it-works {
    padding: var(--sec) 0;
    background: var(--white);
}

.how-it-works .section-title,
.how-it-works .section-eyebrow { text-align: center; }
.how-it-works .section-sub { text-align: center; }

.steps {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    padding-bottom: 64px;
}
.step:last-child { padding-bottom: 0; }

.step-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 4px;
}

.step-n {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    display: block;
    text-align: center;
    width: 100%;
}

.step-line {
    width: 1px;
    flex: 1;
    background: linear-gradient(to bottom, var(--border), transparent);
    min-height: 80px;
}

.step-body h3 {
    margin-bottom: 12px;
    font-size: 1.8rem;
}

.step-body p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.85;
}
.step-body p:last-child { margin-bottom: 0; }

.step-example {
    background: var(--cream);
    border-left: 2px solid var(--gold);
    padding: 20px 24px;
    margin-top: 20px;
    border-radius: 0;
}

.example-label {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 400;
}

.example-text {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.5;
    margin: 0;
}

/* Voice demo */
.voice-demo {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.voice-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--charcoal);
    color: var(--white);
    padding: 16px 28px;
    font-size: 15px;
    font-weight: 400;
    width: fit-content;
    cursor: pointer;
    letter-spacing: 0.01em;
    border: 1px solid var(--charcoal-md);
    transition: all var(--dur) var(--ease);
}
.voice-btn:hover {
    background: var(--charcoal-md);
    transform: translateY(-1px);
}
.voice-btn svg { flex-shrink: 0; }

.voice-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    max-width: 420px;
    margin: 0;
}

/* ===================================
   SAMPLE PROMPTS
   =================================== */
.prompts-section {
    padding: var(--sec) 0;
    background: var(--cream);
}

.prompts-section .section-eyebrow,
.prompts-section .section-title { text-align: center; }

.prompts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-bottom: 48px;
}

.prompt-card {
    background: var(--white);
    padding: 40px 36px;
    transition: all var(--dur) var(--ease);
}
.prompt-card:hover {
    background: var(--cream);
    z-index: 1;
}

.prompt-week {
    display: block;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 400;
}

.prompt-text {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.5;
    margin-bottom: 20px;
}

.prompt-alt {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.prompts-note {
    text-align: center;
    font-size: 15px;
    color: var(--text-mid);
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   THE BOOK
   =================================== */
.book-section {
    padding: var(--sec) 0;
    background: var(--white);
}

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

/* Book mockup */
.book-visual { text-align: center; }

.book-mockup {
    display: inline-flex;
    align-items: stretch;
    margin-bottom: 24px;
    box-shadow: 16px 16px 48px rgba(0,0,0,0.15);
    transform: perspective(800px) rotateY(-8deg);
    transition: transform 0.6s var(--ease);
}
.book-mockup:hover { transform: perspective(800px) rotateY(-3deg); }

.book-cover {
    width: 260px;
    min-height: 360px;
    background: linear-gradient(160deg, var(--charcoal) 0%, #2a2418 100%);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.book-cover-title {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 8px;
    line-height: 1.3;
}

.book-cover-sub {
    font-size: 13px;
    color: var(--gold-light);
    letter-spacing: 0.08em;
    margin-bottom: 24px;
    font-weight: 300;
}

.book-cover-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 20px;
}

.book-cover-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.book-spine {
    width: 28px;
    background: linear-gradient(to right, #141414, var(--charcoal-md));
    border-left: 1px solid rgba(255,255,255,0.05);
}

.book-caption {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    max-width: 300px;
    margin: 0 auto;
}

/* Book content */
.book-content .section-eyebrow { margin-bottom: 16px; }
.book-content h2 { margin-bottom: 24px; }

.book-features {
    list-style: none;
    margin: 28px 0 36px;
}
.book-features li {
    padding: 13px 0;
    padding-left: 28px;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    font-weight: 300;
    color: var(--text-mid);
    position: relative;
}
.book-features li:last-child { border-bottom: none; }
.book-features li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 300;
}

.book-price {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 28px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}

.book-price-amount {
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 300;
    color: var(--charcoal);
    letter-spacing: -0.02em;
    line-height: 1;
}

.book-price-note {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
    max-width: 200px;
}

.book-optional {
    font-size: 14px;
    font-style: italic;
    color: var(--text-light);
    margin: 0;
}

/* ===================================
   TESTIMONIALS
   =================================== */
.testimonials {
    padding: var(--sec) 0;
    background: var(--cream);
}

.testimonials .section-eyebrow,
.testimonials .section-title { text-align: center; }

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 56px;
}

.testi {
    background: var(--white);
    padding: 48px 40px;
    transition: background var(--dur) var(--ease);
}
.testi:hover { background: #fefefe; }

.testi-text {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 28px;
}

.testi-author {
    font-size: 14px;
    color: var(--gold);
    letter-spacing: 0.04em;
    font-weight: 400;
    margin: 0;
}

/* ===================================
   PRICING
   =================================== */
.pricing {
    padding: var(--sec) 0;
    background: var(--white);
}

.pricing .section-eyebrow,
.pricing .section-title { text-align: center; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
    margin-top: 0;
}

.pricing-card {
    border: 1px solid var(--border);
    padding: 52px 40px;
    transition: all var(--dur) var(--ease);
    position: relative;
}
.pricing-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 40px rgba(0,0,0,0.07);
    transform: translateY(-3px);
}

.pricing-card.featured {
    border-color: var(--charcoal);
    background: linear-gradient(to bottom, var(--white), var(--cream));
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    transform: scale(1.02);
}
.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-3px);
}

.featured-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--charcoal);
    color: var(--white);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 7px 20px;
}

.pricing-card h3 {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--gold);
    margin-bottom: 24px;
}

.price-display {
    display: flex;
    align-items: flex-start;
    line-height: 1;
    margin-bottom: 8px;
    gap: 4px;
}

.price-currency {
    font-size: 20px;
    color: var(--text-light);
    font-weight: 300;
    margin-top: 8px;
}

.price-amount {
    font-family: var(--font-head);
    font-size: 4rem;
    font-weight: 300;
    color: var(--charcoal);
    letter-spacing: -0.03em;
}

.price-period {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 300;
    align-self: flex-end;
    padding-bottom: 8px;
}

.price-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.price-features {
    list-style: none;
    margin-bottom: 40px;
}
.price-features li {
    padding: 13px 0 13px 24px;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    font-weight: 300;
    color: var(--text-mid);
    position: relative;
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* ===================================
   FAQ
   =================================== */
.faq {
    padding: var(--sec) 0;
    background: var(--cream);
}

.faq-inner .section-eyebrow,
.faq-inner .section-title { text-align: center; }

.faq-list {
    max-width: 760px;
    margin: 56px auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--border-fine);
}
.faq-item:first-child { border-top: 1px solid var(--border-fine); }

.faq-item summary {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--charcoal);
    padding: 28px 40px 28px 0;
    cursor: pointer;
    list-style: none;
    position: relative;
    line-height: 1.3;
    letter-spacing: -0.01em;
    transition: color var(--dur) var(--ease);
}
.faq-item summary:hover { color: var(--gold); }
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 28px;
    font-size: 20px;
    color: var(--gold);
    font-weight: 300;
    font-family: var(--font-body);
    transition: transform var(--dur) var(--ease);
}
.faq-item[open] summary::after {
    content: '−';
    transform: none;
}

.faq-item p {
    padding: 0 40px 28px 0;
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-mid);
}

/* ===================================
   SUBSCRIBE / CTA
   =================================== */
.subscribe {
    padding: var(--sec) 0;
    background: var(--charcoal);
}

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

.subscribe-text .section-eyebrow { color: var(--gold-light); }
.subscribe-text h2 {
    color: var(--white);
    margin-bottom: 24px;
}
.subscribe-text p {
    color: rgba(255,255,255,0.65);
    margin-bottom: 16px;
    font-size: 16px;
}
.subscribe-text p:last-of-type { margin-bottom: 40px; }

.subscribe-trust {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.subscribe-trust span {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.04em;
}

/* Form card */
.form-card {
    background: var(--white);
    padding: 48px 44px;
}

.form-card h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 36px;
    color: var(--charcoal);
}

.field {
    margin-bottom: 24px;
}

.field label {
    display: block;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.field-note {
    text-transform: none;
    letter-spacing: 0;
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
}

.field input,
.field textarea,
.field select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    color: var(--charcoal);
    background: var(--white);
    outline: none;
    transition: border-color var(--dur) var(--ease);
    border-radius: 0;
    -webkit-appearance: none;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
    border-color: var(--charcoal);
}

.field textarea { resize: vertical; line-height: 1.6; }

.subscribe .btn-primary { margin-top: 8px; }

.form-reassurance {
    font-size: 13px;
    color: var(--text-light);
    text-align: center;
    font-style: italic;
    margin-top: 16px;
    line-height: 1.6;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--charcoal);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 64px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    font-family: var(--font-accent);
    font-size: 22px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255,255,255,0.35);
    font-style: italic;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-col-title {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 400;
}

.footer-links a {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color var(--dur) var(--ease);
    font-weight: 300;
}
.footer-links a:hover { color: rgba(255,255,255,0.8); }

.footer-bottom {
    padding: 24px var(--pad);
    text-align: center;
}
.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.2);
    margin: 0;
}

/* ===================================
   REVEAL ANIMATIONS
   =================================== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-3px); }

    .book-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .subscribe-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        inset: 70px 0 auto;
        background: var(--white);
        flex-direction: column;
        padding: 32px 24px;
        gap: 24px;
        box-shadow: 0 8px 32px rgba(0,0,0,0.1);
        transform: translateY(-120%);
        transition: transform var(--dur) var(--ease);
        border-bottom: 1px solid var(--border);
    }
    .nav-menu.open { transform: translateY(0); }

    .mobile-toggle { display: flex; }

    .hero-actions { flex-direction: column; align-items: flex-start; }

    .step { grid-template-columns: 56px 1fr; gap: 20px; }

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

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

    .book-mockup { transform: none; }

    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-links { grid-template-columns: repeat(2, 1fr); }

    .concept-numbers { gap: 20px; }
    .concept-divider { display: none; }

    .form-card { padding: 32px 24px; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2.6rem; }
    .step { grid-template-columns: 1fr; }
    .step-marker { flex-direction: row; align-items: center; gap: 16px; }
    .step-line { width: 40px; height: 1px; flex: none; }
    .footer-links { grid-template-columns: 1fr; }
}
