/* Landing V3 — section-specific styles. Reuses tokens from /styles.css. */

/* ========== Sticky nav (announcement bar + header) ========== */

/* Header is already position:fixed in styles.css. Make its background always-on for v3
   so it reads cleanly as a sticky bar over scrolling content (no scroll listener needed). */
.landing-page .header {
    background: rgba(255, 253, 247, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(232, 226, 214, 0.7);
    padding: 14px 0;
}

.landing-page .header .logo img {
    height: 56px !important;
    transition: height 0.2s ease;
}

/* ========== Section 2: Split hero ========== */

.landing-hero {
    background: var(--bg);
    /* Header is position:fixed at top:37px — give plenty of clearance */
    padding: 150px 0 90px;
    overflow: hidden;
}

.landing-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    gap: 56px;
    align-items: center;
}

.landing-hero-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.landing-hero-eyebrow {
    font-family: 'Figtree', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: -8px;
}

.landing-hero-headline {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: clamp(48px, 6.4vw, 80px);
    line-height: 1.05;
    font-weight: 500;
    color: var(--text);
    margin: 0;
    letter-spacing: -0.01em;
}

.landing-hero-accent {
    display: inline-block;
    color: var(--text);
    animation: landing-hero-blush 1s ease-out 0.6s forwards;
}

.landing-hero-nowrap {
    white-space: nowrap;
}

@keyframes landing-hero-blush {
    from { color: var(--text); }
    to { color: var(--lilac-dark); }
}

.landing-hero-sub {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-mid);
    max-width: 540px;
    margin: 0;
}

.landing-hero-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.landing-hero-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    padding: 16px 10px 14px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.landing-hero-badge:hover {
    transform: translateY(-2px);
    border-color: var(--lilac);
}

.landing-hero-badge-icon {
    color: var(--lilac-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.landing-hero-badge-label {
    font-size: 13px;
    line-height: 1.25;
    color: var(--text);
    font-weight: 600;
}

.landing-hero-badge-caption {
    font-size: 11px;
    line-height: 1.3;
    color: var(--text-light);
    font-weight: 400;
}

/* CTA + listen link — single row, subnote sits tight under primary */
.landing-hero-cta-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.landing-hero-cta-row {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.landing-hero-primary {
    margin: 0;
    /* Span the width of the first two badge tiles + gap (badges row uses 4×1fr with 12px gap) */
    width: calc(50% - 6px);
    box-sizing: border-box;
    display: inline-block;
    align-self: center;
    text-align: center;
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 24px;
    background: var(--lilac);
    color: var(--text);
    border: 2.25px solid var(--text);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
}
.landing-hero-primary:hover {
    transform: translateY(-2px);
    background: var(--lilac-dark);
}

.landing-hero-listen {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.18s ease;
}

.landing-hero-listen:hover {
    color: var(--lilac-dark);
}

.landing-hero-listen-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--lilac);
    border: 1.5px solid var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    flex-shrink: 0;
}

.landing-hero-cta-subnote {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.landing-hero-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.landing-hero-rating-text {
    font-size: 14px;
    color: var(--text-mid);
    font-weight: 500;
}

/* Right column — photo wrap + press-play callout positioned to the LEFT of the photo */

.landing-hero-right {
    position: relative;
    width: 100%;
}

.landing-hero-photo-wrap {
    position: relative;
    aspect-ratio: 5 / 6;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(26, 26, 26, 0.18);
    background: var(--bg-alt);
}

.landing-hero-press-play {
    position: absolute;
    /* Right edge of callout sits at the left edge of the photo, with a small gap */
    right: calc(100% + 8px);
    /* Vertically aligned with the play button inside the audio card (~70px from photo bottom) */
    bottom: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
    pointer-events: none;
}

.landing-hero-press-play-text {
    text-align: right;
    font-family: 'Figtree', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--lilac-dark);
    letter-spacing: 0.01em;
    line-height: 1.15;
    transform-origin: bottom right;
    white-space: nowrap;
    animation: landing-press-play-text-wiggle 2.4s ease-in-out infinite;
}

.landing-hero-press-play-text > span {
    display: block;
}

.landing-hero-press-play-arrow {
    width: 90px;
    height: 50px;
    flex-shrink: 0;
    overflow: visible;
    transform-origin: left center;
    animation: landing-press-play-arrow-bob 2.4s ease-in-out infinite;
}

.landing-hero-press-play-arrow.mobile {
    display: none;
}

@keyframes landing-press-play-text-wiggle {
    0%, 100% { transform: rotate(-7deg) translate(0, 0); }
    25%      { transform: rotate(-9deg) translate(0, -1px); }
    50%      { transform: rotate(-6deg) translate(-1px, 1px); }
    75%      { transform: rotate(-8deg) translate(1px, 0); }
}

@keyframes landing-press-play-arrow-bob {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25%      { transform: translate(1px, -2px) rotate(2deg); }
    50%      { transform: translate(2px, 0) rotate(-1deg); }
    75%      { transform: translate(0, -1px) rotate(1deg); }
}

.landing-hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
    pointer-events: none;
}

.landing-hero-photo.active {
    opacity: 1;
    pointer-events: auto;
}

/* Slide indicator dots — bottom-center of photo */
.landing-hero-slide-dots {
    position: absolute;
    left: 50%;
    bottom: 8px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 5;
}

.landing-hero-slide-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 253, 247, 0.55);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}

.landing-hero-slide-dot:hover {
    background: rgba(255, 253, 247, 0.85);
}

.landing-hero-slide-dot.active {
    background: var(--lilac);
    transform: scale(1.2);
}

/* Floating transformation tile (top-right of photo) — pull-quote style */
.landing-hero-transform-tile {
    position: absolute;
    top: 22px;
    right: 22px;
    max-width: 250px;
    background: rgba(255, 253, 247, 0.97);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 18px 18px 16px;
    box-shadow: 0 8px 24px rgba(26, 26, 26, 0.18);
    overflow: hidden;
    z-index: 4;
    animation: landing-hero-tile-in 0.6s ease-out both;
}

@keyframes landing-hero-tile-in {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.landing-hero-transform-quote {
    position: absolute;
    top: 6px;
    left: 12px;
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 64px;
    line-height: 1;
    color: var(--lilac);
    font-weight: 500;
    font-style: normal;
    user-select: none;
}

.landing-hero-transform-text {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 16px;
    font-style: normal;
    line-height: 1.35;
    color: var(--text);
    margin: 0;
    padding-left: 32px;
    position: relative;
}

.landing-hero-transform-attribution {
    display: block;
    margin-top: 8px;
    padding-left: 32px;
    font-family: 'Figtree', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.01em;
}

/* Audio card (bottom of photo) — compact: [play+title/subtitle], [wave full-width], [0:00 / 1:18] */
.landing-hero-audio-card {
    position: absolute;
    left: 22px;
    bottom: 22px;
    right: 22px;
    background: rgba(255, 253, 247, 0.97);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(26, 26, 26, 0.18);
    z-index: 4;
}

.landing-hero-audio-meta {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.landing-hero-audio-wave-row {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.landing-hero-audio-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: var(--lilac-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.18s ease, background 0.18s ease;
    flex-shrink: 0;
}

.landing-hero-audio-btn:hover {
    transform: scale(1.08);
}

.landing-hero-audio-title {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.landing-hero-audio-subtitle {
    font-size: 12px;
    color: var(--text-mid);
    font-weight: 400;
    line-height: 1.3;
}

/* Waveform — fills remaining width with thin line-like bars */
.landing-hero-audio-waves {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 22px;
    min-width: 0;
}

.landing-hero-wave-bar {
    width: 3px;
    flex-shrink: 0;
    background: var(--lilac);
    border-radius: 1.5px;
    transform-origin: center;
    opacity: 0.85;
    transition: background 0.2s ease, opacity 0.2s ease;
}

.landing-hero-audio-waves.playing .landing-hero-wave-bar {
    background: var(--lilac-dark);
    opacity: 1;
    animation: landing-hero-wave-pulse 0.9s ease-in-out infinite;
}

@keyframes landing-hero-wave-pulse {
    0%, 100% { transform: scaleY(0.5); }
    50%      { transform: scaleY(1.0); }
}

/* Times row below the wave: 0:00 (current) on left, 1:18 (total) on right */
.landing-hero-audio-times {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-family: 'Figtree', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-mid);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
}

/* ===== iPad / tablet hero tuning (between mobile and full desktop) =====
   Badges grid is repeat(4, 1fr) with gap 12px:
     - Each badge tile width  W = (100% - 36px) / 4 = 25% - 9px
     - Badge 1 center         = W/2          = 12.5% - 4.5px
     - Badge 3 center         = 2.5W + 24    = 62.5% + 1.5px
   Span the CTA from badge-1 center to badge-3 center so it has enough
   room for "Create Their Story" on one line, visually centered over Badge 2:
     - left  = 12.5% - 4.5px
     - width = badge3-center − badge1-center = 2W + 24 = 50% + 6px */
@media (min-width: 901px) and (max-width: 1280px) {
    .landing-hero-cta-row {
        justify-content: flex-start;
    }
    .landing-hero-cta-block {
        align-items: stretch;
    }
    .landing-hero-primary {
        width: calc(50% + 6px);
        margin-left: calc(12.5% - 4.5px);
        text-align: center;
        align-self: flex-start;
    }
    .landing-hero-cta-subnote {
        width: calc(50% + 6px);
        margin-left: calc(12.5% - 4.5px);
        text-align: center;
    }

    /* Reviews — stack single-column and center on iPad */
    .landing-reviews-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        align-items: center;
    }
    .landing-reviews-left {
        text-align: center;
        align-items: center;
        max-width: 640px;
        margin: 0 auto;
    }
    .landing-reviews-right {
        margin-top: 0;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    .landing-reviews-quad {
        margin-left: auto;
        margin-right: auto;
    }
    .landing-reviews-lede {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ===== iPad mini & iPad Air (smaller tablets, ≤ 1180px landscape) =====
   Override the iPad Pro CTA span: button is 1/3 width and centered. */
@media (min-width: 901px) and (max-width: 1180px) {
    .landing-hero-primary {
        width: 33%;
        margin-left: auto;
        margin-right: auto;
    }
    .landing-hero-cta-subnote {
        width: 33%;
        margin-left: auto;
        margin-right: auto;
    }
    .landing-hero-cta-row {
        justify-content: center;
    }
    /* Center the rating row (★★★★★ 4.9 · Loved by hundreds of families) */
    .landing-hero-rating {
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .landing-hero {
        padding: 150px 0 60px;
    }

    .landing-hero-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    /* Flatten the left column so we can reorder its children alongside the photo */
    .landing-hero-left {
        display: contents;
    }

    /* Mobile order: eyebrow → headline → subhead → photo → badges → CTA → rating */
    .landing-hero-eyebrow   { order: 1; }
    .landing-hero-headline  { order: 2; }
    .landing-hero-sub       { order: 3; }
    .landing-hero-right     { order: 4; margin: 8px 0; }
    .landing-hero-badges    { order: 5; }
    .landing-hero-cta-block { order: 6; }
    .landing-hero-rating    { order: 7; }

    .landing-hero-badges {
        grid-template-columns: repeat(2, 1fr);
    }

    .landing-hero-transform-tile {
        max-width: 200px;
        padding: 10px 12px;
    }

    .landing-hero-transform-text {
        font-size: 13px;
    }

    /* Press-play callout was anchored to the LEFT of the photo on desktop —
       move it inside/below the photo column on mobile so it doesn't overlap
       the headline that now sits above. */
    .landing-hero-press-play {
        position: static;
        margin-top: 12px;
        justify-content: center;
    }

    .landing-hero-press-play-text {
        text-align: center;
    }

    /* Swap to the elbow-shaped arrow that points UP at the audio panel above.
       Mirrored horizontally so the tip sits on the upper-right. */
    .landing-hero-press-play-arrow.desktop {
        display: none;
    }
    .landing-hero-press-play-arrow.mobile {
        display: block;
        width: 56px;
        height: 64px;
        transform: scaleX(-1);
        order: 1;
    }
    .landing-hero-press-play-text {
        order: 2;
    }

    /* Stretch the primary CTA across the full width of the 2-column badge grid */
    .landing-hero-primary {
        width: 100%;
        text-align: center;
    }

    /* Center the "Start for free…" sub-note under the full-width button */
    .landing-hero-cta-subnote {
        text-align: center;
    }
}

/* ========== Section 3: Three feature cards (large image top, text below) ========== */

.landing-feature-row {
    background: var(--bg-alt);
    padding: 40px 0;
    border-top: 1px solid var(--border);
}

.landing-feature-row-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.landing-feature-card {
    display: flex;
    flex-direction: column;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.landing-feature-card:hover {
    border-color: var(--lilac);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(26, 26, 26, 0.06);
}

.landing-feature-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    background: var(--bg-alt);
}

.landing-feature-text {
    padding: 28px 28px 36px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.landing-feature-title {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--text);
    margin: 0;
    letter-spacing: -0.005em;
}

.landing-feature-body {
    font-family: 'Figtree', sans-serif;
    font-size: 15px;
    line-height: 1.55;
    color: var(--text-mid);
    margin: 0;
}

@media (max-width: 900px) {
    .landing-feature-row {
        padding: 60px 0;
    }
    .landing-feature-row-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ========== Section 4: Dark value band — copy + video left, comparison table right ========== */

.landing-value-band {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.92);
    padding: 36px 0 50px;
}

.landing-value-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.25fr;
    gap: 48px;
    align-items: center;
}

.landing-value-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.landing-value-eyebrow {
    font-family: 'Figtree', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
}

.landing-value-headline {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: clamp(36px, 4.5vw, 54px);
    font-weight: 500;
    line-height: 1.08;
    color: #fff;
    margin: 0;
    letter-spacing: -0.005em;
}

.landing-value-tagline {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: clamp(22px, 2.4vw, 30px);
    font-style: italic;
    line-height: 1.2;
    color: var(--lilac);
    margin: 0;
}

.landing-value-tagline em {
    font-style: italic;
    color: var(--lilac);
}

.landing-value-lede {
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
    margin: 14px 0 0;
}

/* Video + side text block */
.landing-value-video-wrap {
    margin-top: 6px;
    display: flex;
    align-items: stretch;
    gap: 22px;
}

/* Right of the video: tagline → lede → press-play callout all packed tightly at the top */
.landing-value-side {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;
}

.landing-value-video {
    width: 200px;
    max-width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 14px;
    background: #0a0a0a;
    object-fit: cover;
    flex-shrink: 0;
}

.landing-value-video-callout {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 14px;
    pointer-events: none;
}

.landing-value-video-arrow {
    width: 50px;
    height: 36px;
    flex-shrink: 0;
    overflow: visible;
}

.landing-value-video-text {
    display: flex;
    flex-direction: column;
    font-family: 'Figtree', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--lilac);
    line-height: 1.2;
    transform: rotate(-6deg);
    transform-origin: left center;
}

/* Right side — comparison table.
   Single 2-col grid; each pair of cells (OTHER + LBM) sits on the same grid row,
   so the row height auto-syncs even when LBM text is longer. */
.landing-value-table {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    overflow: hidden;
}

.landing-value-cell {
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 500;
}

.landing-value-cell-other {
    background: var(--dark-card);
    color: rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.landing-value-cell-lbm {
    background: var(--bg);
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.landing-value-cell-header {
    padding-top: 22px;
    padding-bottom: 22px;
    justify-content: center;
}

/* Drop trailing border on the last row */
.landing-value-table > .landing-value-cell:nth-last-child(-n+2) {
    border-bottom: none;
}

.landing-value-col-title {
    font-family: 'Figtree', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0;
}

.landing-value-cell-other .landing-value-col-title {
    color: rgba(255, 255, 255, 0.7);
}

.landing-value-cell-lbm .landing-value-col-title {
    color: var(--lilac-dark);
}

.landing-value-x,
.landing-value-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.landing-value-x {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.55);
}

.landing-value-check {
    background: var(--lilac);
    color: var(--bg);
}

@media (max-width: 900px) {
    .landing-value-band {
        padding: 60px 0;
    }
    .landing-value-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .landing-value-video-wrap {
        flex-direction: column;
        align-items: stretch;
    }
    .landing-value-video {
        width: 100%;
    }
    /* Side text block (tagline / lede / press-play) aligned to the center
       of the video frame above it. */
    .landing-value-side {
        width: 100%;
        align-items: center;
    }

    /* Hide the "Press play to see the difference" callout on mobile so the
       comparison table pulls up directly under the lede. */
    .landing-value-video-callout {
        display: none;
    }
    .landing-value-table {
        grid-template-columns: 1fr;
    }
    /* Stack all OTHER cells first, then all LBM cells (instead of interleaved) */
    .landing-value-cell-other { order: 1; }
    .landing-value-cell-lbm   { order: 2; }
    /* Drop the forced line break in "Don't just gift. / Shape who they become." */
    .landing-value-tagline br {
        display: none;
    }

    /* Center the tagline + lede on mobile */
    .landing-value-tagline,
    .landing-value-lede {
        text-align: center;
    }
}

/* ========== Section 5: "Read it & hear it" comparison ========== */

.landing-readhear {
    background: var(--bg);
    padding: 56px 0;
}

.landing-readhear-header {
    max-width: 660px;
    margin: 0 auto 28px;
    text-align: center;
}

.landing-readhear-headline {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 500;
    line-height: 1.15;
    color: var(--text);
    margin: 0;
    letter-spacing: -0.005em;
}

.landing-readhear-accent {
    color: var(--lilac-dark);
}

.landing-readhear-lede {
    font-family: 'Figtree', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-mid);
    margin: 10px 0 0;
}

.landing-readhear-lede-mobile { display: none; }

.landing-readhear-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.landing-readhear-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 20px 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.landing-readhear-card:hover {
    border-color: var(--lilac);
    transform: translateY(-2px);
}

.landing-readhear-card-eyebrow {
    font-family: 'Figtree', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--lilac-dark);
}

/* Left card: book photo + excerpt */
.landing-readhear-book {
    flex: 1;
    min-height: 260px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg);
}

.landing-readhear-book img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: var(--bg-alt);
    display: block;
}

.landing-readhear-excerpt {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.landing-readhear-excerpt-title {
    font-family: 'Figtree', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
}

.landing-readhear-excerpt-body {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 15px;
    line-height: 1.45;
    color: var(--text);
    margin: 0;
}

/* Right card: mirror left, with audio panel overlaid at bottom of the image */
.landing-readhear-card-audio {
    background: var(--lilac-soft);
    border-color: var(--lilac);
}

.landing-readhear-book-audio {
    position: relative;
    background: var(--bg);
}

.landing-readhear-book-audio img {
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.landing-readhear-audio-overlay {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    background: rgba(255, 253, 247, 0.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: 0 8px 22px rgba(26, 26, 26, 0.24);
}

.landing-readhear-audio-meta {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.landing-readhear-audio-title {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}

.landing-readhear-audio-subtitle {
    font-family: 'Figtree', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-mid);
}

.landing-readhear-audio-wave-row {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.landing-readhear-audio-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: var(--lilac-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.18s ease;
    flex-shrink: 0;
}

.landing-readhear-audio-btn:hover {
    transform: scale(1.08);
}

.landing-readhear-waves {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 22px;
    min-width: 0;
}

.landing-readhear-wave-bar {
    width: 2px;
    flex-shrink: 0;
    background: var(--lilac);
    border-radius: 1px;
    transform-origin: center;
    opacity: 0.85;
    transition: background 0.2s ease, opacity 0.2s ease;
}

.landing-readhear-waves.playing .landing-readhear-wave-bar {
    background: var(--lilac-dark);
    opacity: 1;
    animation: landing-hero-wave-pulse 0.9s ease-in-out infinite;
}

.landing-readhear-audio-times {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-family: 'Figtree', sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: var(--text-mid);
    font-variant-numeric: tabular-nums;
}

@media (max-width: 900px) {
    .landing-readhear {
        padding: 50px 0;
    }
    .landing-readhear-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .landing-readhear-lede-desktop { display: none; }
    .landing-readhear-lede-mobile { display: inline; }
}

/* ========== Section 6: A lasting impact — 4 photo cards ========== */

.landing-impact {
    background: var(--bg-alt);
    padding: 70px 0;
    border-top: 1px solid var(--border);
}

.landing-impact-header {
    max-width: 720px;
    margin: 0 auto 36px;
    text-align: center;
}

.landing-impact-headline {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 500;
    line-height: 1.15;
    color: var(--text);
    margin: 0;
    letter-spacing: -0.005em;
}

.landing-impact-accent {
    color: var(--lilac-dark);
}

.landing-impact-lede {
    font-family: 'Figtree', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-mid);
    margin: 10px 0 0;
}

.landing-impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.landing-impact-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    transition: transform 0.2s ease;
}

.landing-impact-card:hover {
    transform: translateY(-2px);
}

.landing-impact-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg);
}

.landing-impact-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.landing-impact-title {
    font-family: 'Figtree', sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text);
    margin: 4px 0 0;
}

.landing-impact-body {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    line-height: 1.45;
    color: var(--text-mid);
    margin: 0;
}

@media (max-width: 1100px) {
    .landing-impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .landing-impact {
        padding: 50px 0;
    }
    .landing-impact-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ========== Section 7: Reviews — static photo grid + rotating testimonial ========== */

.landing-reviews {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.92);
    padding: 40px 0;
}

.landing-reviews-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    align-items: start;
}

.landing-reviews-left {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.landing-reviews-eyebrow {
    font-family: 'Figtree', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
}

.landing-reviews-headline {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 500;
    line-height: 1.1;
    color: #fff;
    margin: 0;
    letter-spacing: -0.005em;
}

.landing-reviews-accent {
    color: var(--lilac);
}

.landing-reviews-lede {
    font-family: 'Figtree', sans-serif;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
    max-width: 460px;
    margin: 0;
}

.landing-reviews-quad {
    margin-top: 8px;
    max-width: 420px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-reviews-quad img {
    width: 100%;
    height: auto;
    display: block;
}

/* Right side — single rotating testimonial + source tabs.
   margin-top pushes the block down so its top aligns with the start of the quad image
   on the left (which sits below the eyebrow + headline + lede stack). */
.landing-reviews-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: clamp(190px, 17vw, 260px);
}

@media (max-width: 900px) {
    .landing-reviews-right {
        margin-top: 0;
    }
}

.landing-reviews-card {
    background: var(--dark-card);
    border: 1px solid rgba(196, 166, 232, 0.22);
    border-radius: 22px;
    padding: 28px 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 240px;
}

.landing-reviews-stars {
    line-height: 1;
}

.landing-reviews-quote {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: clamp(18px, 1.8vw, 22px);
    line-height: 1.45;
    font-style: italic;
    color: #fff;
    margin: 0;
    flex: 1;
    animation: landing-reviews-fade 0.45s ease-out;
}

@keyframes landing-reviews-fade {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}

.landing-reviews-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.landing-reviews-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--lilac);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.landing-reviews-author-name {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

/* Trust-signal badges (5-star average / Trustpilot / Google) */
.landing-reviews-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.landing-reviews-badge {
    background: rgba(255, 253, 247, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 14px;
    padding: 14px 12px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.landing-reviews-badge:hover {
    border-color: rgba(196, 166, 232, 0.4);
    background: rgba(255, 253, 247, 0.09);
}

.landing-reviews-badge-visual {
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.landing-reviews-badge-wordmark {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #fff;
}

.landing-reviews-badge-trustpilot-mark {
    color: #fff;
}

.landing-reviews-google-mark {
    font-family: 'Product Sans', 'Helvetica Neue', Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.landing-reviews-badge-caption {
    font-family: 'Figtree', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
}

@media (max-width: 600px) {
    .landing-reviews-badges {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .landing-reviews {
        padding: 60px 0;
    }
    .landing-reviews-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .landing-reviews-photos {
        max-width: 100%;
    }
}

/* ========== Section 8: Create their story in 5 minutes — 3 steps ========== */

.landing-create {
    background: var(--bg);
    padding: 70px 0 60px;
}

.landing-create-header {
    max-width: 700px;
    margin: 0 auto 44px;
    text-align: center;
}

.landing-create-headline {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 500;
    line-height: 1.15;
    color: var(--text);
    margin: 0;
    letter-spacing: -0.005em;
}

.landing-create-time {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--lilac-dark);
    position: relative;
    padding: 0 4px;
}

.landing-create-time-text {
    font-style: italic;
}

.landing-create-sparkle {
    display: inline-flex;
    align-items: center;
}

.landing-create-sparkle-left  svg { transform: translate(-2px, -8px); }
.landing-create-sparkle-right svg { transform: translate(2px, -10px); }

.landing-create-lede {
    font-family: 'Figtree', sans-serif;
    font-size: 15px;
    line-height: 1.55;
    color: var(--text-mid);
    margin: 12px 0 0;
}

.landing-create-highlight {
    color: var(--lilac-dark);
    font-weight: 600;
    border-bottom: 2px solid var(--lilac);
    padding-bottom: 1px;
}

/* 3 steps + 2 arrows in a single row */
.landing-create-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 16px;
    align-items: start;
    max-width: 980px;
    margin: 0 auto;
}

.landing-create-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 0 8px;
}

.landing-create-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--lilac);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 700;
    border: 1.5px solid var(--text);
}

.landing-create-step-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lilac-soft) 0%, #f6efff 100%);
    border: 1px solid rgba(196, 166, 232, 0.35);
    color: var(--lilac-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
    box-shadow: 0 4px 12px rgba(155, 123, 199, 0.12);
}

.landing-create-step-title {
    font-family: 'Figtree', sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text);
    margin: 4px 0 0;
}

.landing-create-step-body {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-mid);
    margin: 0;
    white-space: nowrap;
}

.landing-create-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 22px;
}

/* "Prefer talking?" hint pill — sits under Step 1's body */
.landing-create-voice-hint {
    margin: 8px 0 0;
    text-align: center;
    font-family: 'Figtree', sans-serif;
    font-size: 13px;
    color: var(--text-mid);
    background: var(--lilac-soft);
    border-radius: 999px;
    padding: 8px 16px;
    width: fit-content;
    align-self: center;
}

/* Primary CTA — sits inside Step 2's column with breathing room above. */
.landing-create-cta-wrap {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.landing-create-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--lilac);
    color: var(--text);
    border: 2px solid var(--text);
    border-radius: 12px;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.landing-create-cta:hover {
    transform: translateY(-1px);
    background: var(--lilac-dark);
    color: #fff;
}

.landing-create-cta-note {
    font-family: 'Figtree', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-mid);
    margin: 0;
    white-space: nowrap;
    text-align: center;
}

.landing-create-check {
    display: inline-flex;
    align-items: center;
}

@media (max-width: 900px) {
    .landing-create {
        padding: 50px 0;
    }
    .landing-create-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .landing-create-arrow {
        transform: rotate(90deg);
        margin: 0 auto;
    }
    .landing-create-step-body {
        white-space: normal;
    }
}

/* ========== Section 9: Perfect for life's meaningful moments ========== */

.landing-occasions {
    background: var(--bg-alt);
    padding: 56px 0;
    border-top: 1px solid var(--border);
}

.landing-occasions-header {
    text-align: center;
    margin: 0 auto 32px;
    max-width: 700px;
}

.landing-occasions-headline {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: clamp(28px, 3.4vw, 38px);
    font-weight: 500;
    line-height: 1.2;
    color: var(--text);
    margin: 0;
    letter-spacing: -0.005em;
}

.landing-occasions-accent {
    color: var(--lilac-dark);
}

.landing-occasions-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    align-items: start;
}

.landing-occasions-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 12px 4px;
    transition: transform 0.2s ease;
}

.landing-occasions-item:hover {
    transform: translateY(-3px);
}

.landing-occasions-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

/* Tone variants — pastel circle bg + icon stroke colors */
.landing-occasions-tone-lilac  .landing-occasions-icon { background: #EDE4F7; color: #7B5BB1; }
.landing-occasions-tone-green  .landing-occasions-icon { background: #DCEAE0; color: #2E8460; }
.landing-occasions-tone-pink   .landing-occasions-icon { background: #FCE0E0; color: #C25D6E; }
.landing-occasions-tone-yellow .landing-occasions-icon { background: #FCEACD; color: #B07B2C; }

.landing-occasions-label {
    font-family: 'Figtree', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.25;
    color: var(--text);
}

@media (max-width: 900px) {
    .landing-occasions-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .landing-occasions {
        padding: 40px 0;
    }
    .landing-occasions-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========== Section 10: Common questions — 4-tile grid (dark band) ========== */

.landing-faq {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.92);
    padding: 50px 0 60px;
}

.landing-faq-header {
    text-align: center;
    margin-bottom: 28px;
}

.landing-faq-headline {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 500;
    line-height: 1.15;
    color: #fff;
    margin: 0;
    letter-spacing: -0.005em;
}

.landing-faq-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.landing-faq-tile {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 18px 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.landing-faq-tile:hover {
    border-color: rgba(196, 166, 232, 0.45);
    background: rgba(196, 166, 232, 0.06);
    transform: translateY(-2px);
}

.landing-faq-q-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.landing-faq-q-text {
    font-family: 'Figtree', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    flex: 1;
}

.landing-faq-q-icon {
    color: var(--lilac);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.landing-faq-a-text {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
}

.landing-faq-contact {
    margin: 28px 0 0;
    text-align: center;
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.landing-faq-contact a {
    color: var(--lilac);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(196, 166, 232, 0.6);
    transition: color 0.18s ease;
}

.landing-faq-contact a:hover {
    color: #fff;
}

@media (max-width: 1100px) {
    .landing-faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .landing-faq {
        padding: 40px 0;
    }
    .landing-faq-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== Section 11a: Final CTA — horizontal sparkles + text + price + button ========== */

.landing-final-cta {
    background: var(--bg);
    padding: 30px 0 50px;
}

.landing-final-cta-row {
    background: var(--lilac-soft);
    border-radius: 22px;
    padding: 32px 40px;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 20px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Decorative sparkles on the far left */
.landing-final-cta-sparkles {
    position: relative;
    width: 56px;
    height: 80px;
    flex-shrink: 0;
}

.landing-final-cta-sparkle {
    position: absolute;
}

.landing-final-cta-sparkle.s1 { top: 6px;  left: 6px;  }
.landing-final-cta-sparkle.s2 { top: 36px; left: 30px; }
.landing-final-cta-sparkle.s3 { top: 60px; left: 4px;  }

/* Text block */
.landing-final-cta-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.landing-final-cta-headline {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 500;
    line-height: 1.2;
    color: var(--text);
    margin: 0;
    letter-spacing: -0.005em;
}

.landing-final-cta-lede {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    line-height: 1.45;
    color: var(--text-mid);
    margin: 0;
    max-width: 360px;
}

/* Price card */
.landing-final-cta-price {
    background: var(--bg);
    border-radius: 16px;
    padding: 20px 32px;
    text-align: center;
    flex-shrink: 0;
    min-width: 230px;
}

.landing-final-cta-price-label {
    font-family: 'Figtree', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 6px;
    line-height: 1.3;
}

.landing-final-cta-price-amount {
    font-family: 'Figtree', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--lilac-dark);
    margin: 0;
    line-height: 1;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
}

.landing-final-cta-price-currency {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-mid);
    letter-spacing: 0.04em;
}

.landing-final-cta-price-note {
    font-family: 'Figtree', sans-serif;
    font-size: 12px;
    color: var(--text-mid);
    margin: 8px 0 0;
}

/* CTA action */
.landing-final-cta-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.landing-final-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 44px;
    background: var(--lilac-dark);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-family: 'Figtree', sans-serif;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 18px rgba(123, 91, 177, 0.35);
    min-width: 220px;
}

.landing-final-cta-btn:hover {
    transform: translateY(-2px);
    background: #6E47B5;
    box-shadow: 0 10px 24px rgba(123, 91, 177, 0.45);
}

.landing-final-cta-note {
    font-family: 'Figtree', sans-serif;
    font-size: 12px;
    color: var(--text-mid);
    margin: 0;
}

@media (max-width: 1100px) {
    .landing-final-cta-row {
        grid-template-columns: auto 1fr;
        gap: 24px;
    }
    .landing-final-cta-price,
    .landing-final-cta-action {
        grid-column: span 2;
        justify-self: center;
    }
}

@media (max-width: 600px) {
    .landing-final-cta-row {
        grid-template-columns: 1fr;
        padding: 24px;
        text-align: center;
    }
    .landing-final-cta-sparkles {
        margin: 0 auto;
    }
    .landing-final-cta-text {
        align-items: center;
    }
    .landing-final-cta-price,
    .landing-final-cta-action {
        grid-column: 1;
    }
}

/* ========== Trust signals row ========== */

.landing-trust {
    background: var(--bg);
    padding: 28px 0;
    border-top: 1px solid var(--border);
}

.landing-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    align-items: start;
}

.landing-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.landing-trust-icon {
    color: var(--text);
    flex-shrink: 0;
    margin-top: 2px;
}

.landing-trust-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.landing-trust-title {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
}

.landing-trust-body {
    font-family: 'Figtree', sans-serif;
    font-size: 13px;
    line-height: 1.45;
    color: var(--text-mid);
}

/* ========== Footer ========== */

.landing-footer {
    background: var(--bg);
    padding: 24px 0 32px;
    border-top: 1px solid var(--border);
}

.landing-footer-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
    padding: 18px 0;
}

.landing-footer-logo img {
    height: 44px;
    width: auto;
}

.landing-footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.landing-footer-links a {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    transition: color 0.18s ease;
}

.landing-footer-links a:hover {
    color: var(--lilac-dark);
}

.landing-footer-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.landing-footer-social a {
    color: var(--text-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.18s ease;
}

.landing-footer-social a:hover {
    color: var(--lilac-dark);
}

.landing-footer-copy {
    text-align: center;
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.landing-footer-copy p {
    font-family: 'Figtree', sans-serif;
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.landing-footer-version {
    font-variant-numeric: tabular-nums;
}

.landing-footer-address {
    font-family: 'Figtree', sans-serif;
    font-size: 12px;
    color: var(--text);
    font-weight: 500;
    margin: 0 0 4px;
}

@media (max-width: 900px) {
    .landing-trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .landing-footer-row {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 18px;
    }
    .landing-footer-links {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .landing-trust-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== Placeholder removed (all sections complete) ========== */

.landing-placeholder {
    display: none;
}

/* ========== /about page ========== */

.about-page {
    background: var(--bg);
}

/* Hero */
.about-hero {
    background: var(--bg);
    padding: 150px 0 32px;
    text-align: center;
}

.about-hero-inner {
    max-width: 780px;
}

.about-eyebrow {
    display: inline-block;
    font-family: 'Figtree', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--lilac-dark);
    margin-bottom: 14px;
}

.about-title {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: clamp(34px, 4.4vw, 52px);
    font-weight: 500;
    line-height: 1.15;
    color: var(--text);
    margin: 0;
    letter-spacing: -0.005em;
}

.about-intro {
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-mid);
    margin: 18px auto 0;
    max-width: 660px;
}

/* 6-card grid */
.about-grid-section {
    background: var(--bg);
    padding: 32px 0 56px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 40px;
    max-width: 1080px;
    margin: 0 auto;
}

.about-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-card-icon {
    color: var(--lilac-dark);
    margin-bottom: 4px;
}

.about-card-title {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.25;
    color: var(--text);
    margin: 0;
}

.about-card-body {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-mid);
    margin: 0;
}

/* Founder section */
.about-founder {
    background: var(--bg-alt);
    padding: 48px 0;
    border-top: 1px solid var(--border);
}

.about-founder-row {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-founder-photo {
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--bg);
}

.about-founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-founder-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-founder-eyebrow {
    font-family: 'Figtree', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--lilac-dark);
}

.about-founder-name {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: clamp(28px, 3.6vw, 40px);
    font-weight: 500;
    line-height: 1.15;
    color: var(--text);
    margin: 0 0 4px;
    letter-spacing: -0.005em;
}

.about-founder-text p {
    font-family: 'Figtree', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    margin: 0;
}

.about-founder-signoff {
    margin-top: 8px !important;
    color: var(--text-mid) !important;
}

.about-founder-signoff strong {
    color: var(--text);
    font-weight: 600;
}

.about-founder-email {
    color: var(--lilac-dark);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--lilac);
    transition: color 0.18s ease;
}

.about-founder-email:hover {
    color: var(--text);
}

/* Contact strip */
.about-contact {
    background: var(--bg);
    padding: 40px 0 60px;
    border-top: 1px solid var(--border);
}

.about-contact-inner {
    text-align: center;
    max-width: 560px;
}

.about-contact-title {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--text);
    margin: 0;
}

.about-contact-body {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    color: var(--text-mid);
    margin: 6px 0 12px;
}

.about-contact-link {
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--lilac-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--lilac);
    transition: color 0.18s ease;
}

.about-contact-link:hover {
    color: var(--text);
}

@media (max-width: 900px) {
    .about-hero {
        padding: 120px 0 24px;
    }
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 24px;
    }
    .about-founder-row {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .about-founder-photo {
        max-width: 360px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== /privacy and /terms pages ========== */

.legal-page {
    background: var(--bg);
    padding: 150px 0 60px;
}

.legal-container {
    max-width: 760px;
}

.legal-eyebrow {
    display: inline-block;
    font-family: 'Figtree', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--lilac-dark);
    margin-bottom: 12px;
}

.legal-title {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 500;
    line-height: 1.15;
    color: var(--text);
    margin: 0 0 8px;
    letter-spacing: -0.005em;
}

.legal-effective {
    font-family: 'Figtree', sans-serif;
    font-size: 13px;
    color: var(--text-light);
    margin: 0 0 32px;
}

.legal-container h2 {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--text);
    margin: 32px 0 12px;
    letter-spacing: -0.005em;
}

.legal-container p {
    font-family: 'Figtree', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    margin: 0 0 14px;
}

.legal-container ul {
    font-family: 'Figtree', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    margin: 0 0 14px;
    padding-left: 20px;
}

.legal-container ul li {
    margin-bottom: 6px;
}

.legal-container a {
    color: var(--lilac-dark);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--lilac);
    transition: color 0.18s ease;
}

.legal-container a:hover {
    color: var(--text);
}

@media (max-width: 600px) {
    .legal-page {
        padding: 120px 0 40px;
    }
    .legal-container h2 {
        font-size: 20px;
    }
    .legal-container p,
    .legal-container ul {
        font-size: 14px;
    }
}

/* ========== /faq page ========== */

.faq-page {
    background: var(--bg);
}

.faq-hero {
    padding: 150px 0 30px;
    background: var(--bg);
}

.faq-hero-inner {
    max-width: 760px;
    text-align: center;
}

.faq-eyebrow {
    display: inline-block;
    font-family: 'Figtree', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--lilac-dark);
    margin-bottom: 14px;
}

.faq-title {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 500;
    line-height: 1.2;
    color: var(--text);
    margin: 0;
    letter-spacing: -0.005em;
}

.faq-title-accent {
    color: var(--lilac-dark);
}

.faq-intro {
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-mid);
    margin: 18px auto 0;
    max-width: 640px;
}

.faq-list {
    background: var(--bg);
    padding: 30px 0 60px;
}

.faq-list-inner {
    max-width: 760px;
}

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

.faq-item:first-of-type {
    border-top: 1px solid var(--border);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 4px 22px 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    font-family: 'Figtree', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
    transition: color 0.18s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }

.faq-item summary:hover {
    color: var(--lilac-dark);
}

.faq-q {
    flex: 1;
}

.faq-chevron {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-alt);
    color: var(--lilac-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s ease, background 0.2s ease;
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
    background: var(--lilac-soft);
}

.faq-item p {
    font-family: 'Figtree', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-mid);
    margin: 0;
    padding: 0 48px 22px 0;
}

/* Bottom CTA on the FAQ page */
.faq-cta {
    background: linear-gradient(180deg, #F6EFFF 0%, #EDE4F7 100%);
    padding: 60px 0 70px;
    text-align: center;
}

.faq-cta-inner {
    max-width: 720px;
}

.faq-cta-headline {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: clamp(26px, 3.2vw, 38px);
    font-weight: 500;
    line-height: 1.2;
    color: var(--text);
    margin: 0;
    letter-spacing: -0.005em;
}

.faq-cta-lede {
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    line-height: 1.55;
    color: var(--text-mid);
    margin: 14px auto 24px;
    max-width: 480px;
}

.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: var(--lilac-dark);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 18px rgba(123, 91, 177, 0.32);
}

.faq-cta-btn:hover {
    transform: translateY(-2px);
    background: #6E47B5;
    box-shadow: 0 10px 24px rgba(123, 91, 177, 0.4);
}

.faq-cta-note {
    font-family: 'Figtree', sans-serif;
    font-size: 13px;
    color: var(--text-mid);
    margin: 14px 0 0;
}

@media (max-width: 600px) {
    .faq-hero {
        padding: 120px 0 20px;
    }
    .faq-item summary {
        font-size: 15px;
        padding: 18px 0;
    }
    .faq-item p {
        font-size: 14px;
        padding: 0 32px 18px 0;
    }
}
