/* ========================================
   1. CSS RESET & CUSTOM PROPERTIES
   ======================================== */

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

html {
    font-size: 18px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

/* --- Light Mode Custom Properties (default) --- */
:root {
    /* Sage greens */
    --sage-50: #f8faf8;
    --sage-100: #e8ede8;
    --sage-200: #d4ddd4;
    --sage-300: #b8c5b8;
    --sage-400: #9aaa9a;
    --sage-500: #7a8f7a;
    --sage-600: #5d735d;
    --sage-700: #4a5d4a;
    --sage-800: #3a4a3a;
    --sage-900: #2a3a2a;

    /* Creams */
    --cream-50: #fdfcfb;
    --cream-100: #faf8f5;
    --cream-200: #f5f1eb;
    --cream-300: #ede6db;

    /* Slates */
    --slate-50: #f8f9fa;
    --slate-100: #e9ecef;
    --slate-200: #dee2e6;
    --slate-300: #ced4da;
    --slate-400: #adb5bd;
    --slate-500: #6c757d;
    --slate-600: #495057;
    --slate-700: #343a40;
    --slate-800: #212529;

    /* Semantic aliases */
    --background: var(--cream-50);
    --surface: var(--cream-100);
    --surface-dark: var(--sage-800);
    --text-primary: var(--slate-800);
    --text-secondary: var(--slate-600);
    --text-muted: var(--slate-500);
    --accent: var(--sage-600);
    --border: var(--sage-200);

    /* Typography */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans:  'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-script:'Kalam', cursive;  /* poem / memory-card accent ONLY */

    /* Spacing */
    --section-padding: 60px;
    --container-width: 1200px;
}

/* --- Dark Mode Overrides --- */
@media (prefers-color-scheme: dark) {
    :root {
        --background: #1a1f1a;
        --surface: #242b24;
        --surface-dark: #0f130f;
        --text-primary: #e8ede8;
        --text-secondary: #b8c5b8;
        --text-muted: #9aaa9a;
        --accent: #9aaa9a;
        --border: #3a4a3a;
    }
}

/* ========================================
   2. BASE TYPOGRAPHY & ELEMENTS
   ======================================== */

body {
    font-family: var(--font-sans);
    font-weight: 400;
    color: var(--text-primary);
    background-color: var(--background);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--sage-700);
}

.skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 1000;
    padding: 0.65rem 0.9rem;
    border-radius: 4px;
    background: #ffffff;
    color: #212529;
    font-weight: 700;
    transform: translateY(-200%);
}

.skip-link:focus {
    color: #212529;
    outline: 3px solid #7e3f26;
    outline-offset: 2px;
    transform: translateY(0);
}

ul, ol {
    padding-left: 1.5em;
}

/* ========================================
   3. LAYOUT & CONTAINER
   ======================================== */

.container {
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

section {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
}

/* ========================================
   4. SHARED HEADER & NAVIGATION
   ======================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(253, 252, 251, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}

@media (prefers-color-scheme: dark) {
    .site-header {
        background-color: rgba(26, 31, 26, 0.85);
    }
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-primary);
}

.site-header .logo svg {
    height: 2rem;
    width: auto;
}

/* --- Desktop Navigation --- */

.site-header nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
}

.site-header nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.site-header nav a:hover {
    color: var(--text-primary);
}

.site-header nav a.current {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.site-header nav a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 2px;
}

/* --- CSS-only Hamburger Menu --- */

#nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    width: 1.5rem;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    position: relative;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: '';
    position: absolute;
    left: 0;
}

.nav-toggle-label span::before {
    top: -7px;
}

.nav-toggle-label span::after {
    top: 7px;
}

/* Hamburger open state */
#nav-toggle:checked ~ .nav-toggle-label span {
    background-color: transparent;
}

#nav-toggle:checked ~ .nav-toggle-label span::before {
    top: 0;
    transform: rotate(45deg);
}

#nav-toggle:checked ~ .nav-toggle-label span::after {
    top: 0;
    transform: rotate(-45deg);
}

.nav-toggle-label:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 2px;
}

/* --- Sub Navigation (App-level) --- */
.sub-nav {
    background-color: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 0;
    position: sticky;
    top: 57px;
    z-index: 99;
}

.sub-nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.sub-nav a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.25rem 0;
    transition: color 0.2s ease;
}

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

.sub-nav a.current {
    color: var(--accent);
    border-bottom: 2px solid var(--accent);
}

.sub-nav a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 2px;
}

/* ========================================
   5. SHARED FOOTER
   ======================================== */

.footer {
    background-color: var(--surface-dark);
    color: var(--sage-200);
    padding: 4rem 0 2rem;
}

.footer .container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
}

.footer h4 {
    color: var(--cream-100);
    font-family: var(--font-serif);
    margin-bottom: 1rem;
}

.footer p {
    color: var(--sage-300);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer a {
    color: var(--sage-300);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer a:hover {
    color: var(--cream-100);
}

.footer a:focus-visible {
    outline: 2px solid var(--sage-400);
    outline-offset: 2px;
    border-radius: 2px;
}

.footer .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    list-style: none;
    padding: 0;
}

.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
}

.footer .copyright {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--sage-800);
    font-size: 0.85rem;
    color: var(--sage-400);
}

/* ========================================
   6. SHARED COMPONENTS
   ======================================== */

/* --- Buttons --- */

.button {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--font-sans);
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    min-height: 44px;
    text-align: center;
}

.button:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.button-primary {
    background-color: var(--sage-600);
    color: var(--cream-50);
    border-color: var(--sage-600);
}

.button-primary:hover {
    background-color: var(--sage-700);
    border-color: var(--sage-700);
    color: var(--cream-50);
}

.button-secondary {
    background-color: transparent;
    color: var(--sage-600);
    border-color: var(--sage-400);
}

.button-secondary:hover {
    background-color: var(--sage-50);
    border-color: var(--sage-600);
    color: var(--sage-700);
}

/* --- Public document download --- */

.public-pdf-download {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    min-height: 44px;
    padding: 0.7rem 1rem;
    border: 1px solid var(--sage-600);
    border-radius: 6px;
    background: var(--sage-600);
    color: var(--cream-50);
    font-family: var(--font-sans);
    font-weight: 600;
    line-height: 1.25;
    text-decoration: none;
}

.public-pdf-download:hover {
    background: var(--sage-700);
    border-color: var(--sage-700);
    color: var(--cream-50);
}

.public-pdf-download:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.public-pdf-download__format {
    padding: 0.15rem 0.35rem;
    border: 1px solid currentColor;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.public-pdf-download__description {
    margin-top: 0.5rem;
}

/* --- Breadcrumbs --- */

.breadcrumb {
    padding: 1rem 0;
    font-size: 0.85rem;
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.25rem;
}

.breadcrumb li::after {
    content: '/';
    margin-left: 0.5rem;
    color: var(--text-muted);
}

.breadcrumb li:last-child::after {
    content: '';
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 2px;
}

.breadcrumb [aria-current="page"] {
    color: var(--text-primary);
}

/* --- Audio Player --- */

.audio-player {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.audio-player .audio-title {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.audio-player audio {
    width: 100%;
    height: 2.5rem;
}

/* --- Application Card --- */

.app-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    justify-content: center;
}

.app-card--portrait {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow 0.2s ease;
}

.app-card--portrait:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.app-card--portrait .app-tagline {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.app-card--portrait .app-features {
    text-align: left;
    padding-left: 1.25em;
    margin-bottom: 1.5rem;
}

.app-card--portrait .app-features li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 0.25rem 0;
}

/* Pause card tagline and features */
.app-card--pause .app-tagline {
    font-family: var(--font-pause-brand);
    font-size: 1.1rem;
    font-style: normal;
}

.app-card--pause .app-features li {
    font-family: var(--font-pause-brand);
    font-size: 1.05rem;
}

.app-card--portrait img {
    width: 100%;
    max-width: 280px;
    height: auto;
}

.app-card--portrait img:first-child {
    max-width: 100%;
    border-radius: 0;
}

.app-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    transition: box-shadow 0.2s ease;
}

.app-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.app-card .app-content h3 {
    font-family: var(--font-serif);
    color: var(--text-primary);
}

.app-card .app-tagline {
    font-style: italic;
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.app-card img {
    border-radius: 8px;
    margin: 1.5rem 0;
}

.app-card--pause > img:first-child {
    margin: 0;
    border-radius: 0;
    max-width: 100%;
}

/* App card header: logo + title side by side */
.app-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.app-card-header h3 {
    margin-bottom: 0.25rem;
}

.app-card-header .app-tagline {
    margin-bottom: 0;
}

/* App card body: image + details side by side on desktop */
.app-card-body {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.app-card-body > img {
    flex: 0 0 auto;
    max-width: 320px;
    margin: 0;
}

.app-card-details {
    flex: 1;
    min-width: 200px;
}

/* --- Pricing Tier Card --- */

.tier-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
}

.tier-card h3 {
    font-family: var(--font-serif);
    color: var(--text-primary);
}

.tier-card .tier-price {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.tier-card .tier-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.tier-card .tier-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.tier-card .tier-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.tier-card .tier-features li:last-child {
    border-bottom: none;
}

.tier-recommended {
    border-color: var(--sage-500);
    box-shadow: 0 4px 24px rgba(93, 115, 93, 0.12);
}

.tier-badge {
    display: inline-block;
    background-color: var(--sage-600);
    color: var(--cream-50);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
}

/* --- FAQ Item --- */

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

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-family: var(--font-serif);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

/* ========================================
   7. SCROLL ANIMATIONS (CSS only)
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(1.5rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-section {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

/* Progressive enhancement: scroll-driven animation where supported */
@supports (animation-timeline: view()) {
    .fade-in-section {
        opacity: 0;
        animation: fadeInUp ease both;
        animation-timeline: view();
        animation-range: entry 0% entry 100%;
    }
}

/* Fallback: if no scroll-driven support, just show content */
@supports not (animation-timeline: view()) {
    .fade-in-section {
        animation-delay: 0.15s;
    }
}

/* Reduced motion: freeze all decorative animations and transitions */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .fade-in-section {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* ========================================
   8. BRAND HOME PAGE STYLES
   ======================================== */

.hero {
    text-align: center;
}

.hero .subhead {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* Ethics section */
.ethics {
    background-color: var(--sage-50);
}

.ethics h2 {
    text-align: center;
}

.ethics-list {
    list-style: none;
    padding: 0;
    max-width: 640px;
    margin: 0 auto;
}

.ethics-list li {
    padding: 1.25rem 0 1.25rem 2rem;
    border-bottom: 1px solid var(--sage-200);
    position: relative;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.ethics-list li:last-child {
    border-bottom: none;
}

.ethics-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sage-600);
    font-weight: 600;
}

/* ========================================
   9. VERSE MY DAYS APP STYLES
   ======================================== */

/* --- How It Works Steps --- */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: var(--sage-600);
    color: var(--cream-50);
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* --- Feature Highlights Grid --- */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
}

.feature-card h3 {
    font-family: var(--font-serif);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* --- Audio Section --- */

.audio-section .container {
    max-width: 640px;
}

/* --- Social Proof --- */

.social-proof {
    text-align: center;
}

/* --- Pricing Preview --- */

.pricing-preview {
    text-align: center;
}

.pricing-preview .button {
    margin-top: 1rem;
}

/* --- Footer CTA --- */

.footer-cta {
    text-align: center;
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
    background-color: var(--surface);
}

.footer-cta .button {
    margin-bottom: 1rem;
}

.footer-cta p {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--text-muted);
}

/* ========================================
   9B. PAUSE BRAND STYLES (App-level only)
   ======================================== */

/* --- PAUSE Brand Tokens --- */
:root {
    /* PAUSE brand colours */
    --pause-sage: #8DA399;
    --pause-sage-light: #A8BDB3;
    --pause-sage-dark: #6E8A7E;
    --pause-silk: #F9F8F1;
    --pause-charcoal: #2F353B;

    /* PAUSE emotional circle colours */
    --pause-circle-red: #C4908A;
    --pause-circle-blue: #8FAFB5;
    --pause-circle-green: #9AB09E;

    /* PAUSE brand typography */
    --font-pause-brand: var(--font-sans);
}

/* --- PAUSE Carved Text Effect (on sage backgrounds) --- */

.pause-title {
    font-family: var(--font-sans);
    font-weight: 600;
    color: rgba(0, 0, 0, 0.08);
    text-shadow:
        -1px -1px 0px rgba(255, 255, 255, 0.55),
        -1.5px -1.5px 1.5px rgba(255, 255, 255, 0.25),
         1px  1px 1px rgba(0, 0, 0, 0.22),
         1.5px 1.5px 2.5px rgba(0, 0, 0, 0.10);
    line-height: 1;
}

.pause-subtitle {
    font-family: var(--font-sans);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    color: rgba(0, 0, 0, 0.06);
    text-shadow:
        -0.5px -0.5px 0px rgba(255, 255, 255, 0.45),
        -1px -1px 1px rgba(255, 255, 255, 0.2),
         0.5px  0.5px 0.5px rgba(0, 0, 0, 0.18),
         1px 1px 2px rgba(0, 0, 0, 0.08);
}

.pause-brand-bg {
    background-color: var(--pause-sage);
}

.pause-lockup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.pause-lockup .pause-title {
    font-size: 76px;
}

.pause-lockup .pause-subtitle {
    font-size: 10px;
}

.pause-lockup--sm .pause-title {
    font-size: 38px;
}

.pause-lockup--sm .pause-subtitle {
    font-size: 8px;
    letter-spacing: 3px;
}

/* --- PAUSE On Light Backgrounds --- */

.pause-title--on-light {
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--pause-sage);
    line-height: 1;
}

.pause-subtitle--on-light {
    font-family: var(--font-sans);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    color: var(--pause-charcoal);
    opacity: 0.35;
}

/* --- PAUSE On Dark Backgrounds --- */

.pause-title--on-dark {
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--pause-sage);
    line-height: 1;
}

.pause-subtitle--on-dark {
    font-family: var(--font-sans);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    color: rgba(255, 255, 255, 0.35);
}

/* --- PAUSE Dark Mode Override --- */
@media (prefers-color-scheme: dark) {
    .pause-title {
        color: var(--pause-sage);
        text-shadow: none;
    }

    .pause-subtitle {
        color: rgba(255, 255, 255, 0.35);
        text-shadow: none;
    }
}

/* --- Screenshot Tiles --- */

.screenshot-tiles {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.screenshot-tiles img {
    flex: 1 1 0;
    min-width: 0;
    border-radius: 12px;
    border: 1px solid var(--border);
    object-fit: contain;
}

/* --- Feature Video --- */

.feature-video {
    margin-top: 2rem;
}

.feature-video video {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    display: block;
    border-radius: 12px;
    border: 1px solid var(--border);
}

/* --- Screenshot Tiles (small variant for hero) --- */

.screenshot-tiles--sm {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* --- Store Badges --- */

.store-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.store-badge {
    display: flex;
    align-items: center;
    transition: opacity 0.2s ease;
}

.store-badge:hover {
    opacity: 0.8;
}

.store-badge img {
    height: 40px;
    width: auto;
    display: block;
}

.store-badges .button {
    display: flex;
    align-items: center;
    height: 40px;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0;
    font-size: 0.9rem;
    line-height: 40px;
}

/* --- Disabled Button --- */

.button.disabled {
    opacity: 0.5;
    cursor: default;
    pointer-events: none;
}

/* --- Newsletter Section --- */

.newsletter-section {
    background-color: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* ========================================
   10. RESPONSIVE BREAKPOINTS
   ======================================== */

/* --- Tablet (max-width: 968px) --- */
@media (max-width: 968px) {
    :root {
        --section-padding: 48px;
    }

    .footer .container {
        grid-template-columns: 1fr 1fr;
    }

    .tier-card {
        padding: 1.5rem;
    }

    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

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

/* --- Mobile (max-width: 640px) --- */
@media (max-width: 640px) {
    :root {
        --section-padding: 32px;
    }

    /* Mobile hamburger visible */
    .nav-toggle-label {
        display: flex;
    }

    /* Keyboard operability: the checkbox becomes a visually-hidden focusable
       control (display:none is not focusable); its focus ring is drawn on the
       hamburger label. Space toggles the native checkbox. */
    #nav-toggle {
        display: inline-block;
        position: absolute;
        width: 1px;
        height: 1px;
        opacity: 0;
        pointer-events: none;
    }
    #nav-toggle:focus-visible + .nav-toggle-label {
        outline: 2px solid var(--accent);
        outline-offset: 2px;
    }

    .site-header nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--background);
        border-bottom: 1px solid var(--border);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        visibility: hidden;
    }

    #nav-toggle:checked ~ nav {
        max-height: 100vh;
        visibility: visible;
    }

    .site-header nav ul {
        flex-direction: column;
        padding: 1rem 1.5rem;
        gap: 0;
    }

    .site-header nav a {
        display: block;
        padding: 0.75rem 0;
        min-height: 44px;
        line-height: 44px;
        border-bottom: none;
    }

    /* Single column layout */
    .footer .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer .copyright {
        grid-column: 1;
    }

    /* Audio player full width */
    .audio-player {
        padding: 1rem;
    }

    /* Touch targets */
    .button {
        min-height: 44px;
        min-width: 44px;
        padding: 0.75rem 1.5rem;
    }

    .site-header nav a,
    .footer a,
    .breadcrumb a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    /* Tier cards stack */
    .tier-card {
        padding: 1.5rem;
    }

    /* App card adjustments */
    .app-card {
        padding: 1.5rem;
    }

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

    .app-card--portrait {
        width: 100%;
        max-width: 100%;
    }

    .app-card-body {
        flex-direction: column;
    }

    .app-card-body > img {
        max-width: 100%;
    }

    .sub-nav ul {
        gap: 1rem;
    }

    .sub-nav a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    /* Steps and feature grid stack on mobile */
    .steps-grid {
        grid-template-columns: 1fr;
    }

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

    /* Screenshot tiles stack vertically on mobile */
    .screenshot-tiles {
        flex-direction: column;
    }
}

/* ========================================
   PHASE 3 — HOME PAGE & MEDITATION
   ======================================== */

/* --- Home hero (Night ground) --- */
.home-hero {
    min-height: 88vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 0 70px;
    position: relative;
    overflow: hidden;
}

.home-hero__inner {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 60px;
    align-items: center;
}

.home-hero__eyebrow {
    font-family: var(--font-sans);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .34em;
    font-size: 11px;
    color: var(--ink-lo, #7E7298);
    margin-bottom: 18px;
}

.home-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -.01em;
    color: var(--ink-hi, #F4F1F8);
    margin-bottom: 1.2rem;
}

.home-hero .subhead {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    line-height: 1.7;
    color: var(--ink-mid, #B9ABCF);
    max-width: 560px;
    margin-bottom: 2rem;
}

.home-hero .store-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.home-hero .store-badge img {
    height: 44px;
    width: auto;
}

.home-hero .tagline-line {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    color: var(--ink-lo, #7E7298);
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--rule, rgba(185,171,207,.16));
    max-width: 640px;
}

/* --- Three beats row --- */
.three-beats {
    padding: 64px 0;
    border-bottom: 1px solid var(--sage-200, #d4ddd4);
}

.beats-row {
    display: grid;
    grid-template-columns: 1fr 28px 1fr 28px 1fr;
    gap: 0;
    align-items: start;
    margin-top: 0;
}

.beat-card {
    padding: 28px 24px;
}

.beat-card__word {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.beat-card--notice .beat-card__word { color: var(--text-primary, #212529); }
.beat-card--keep   .beat-card__word { color: var(--amber-mid, #E0945A); }
.beat-card--return .beat-card__word { color: var(--indigo-mid, #7A5CC4); }

.beat-card__tag {
    font-size: 10.5px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--text-muted, #6c757d);
    margin-bottom: 12px;
    display: block;
}

.beat-card p {
    font-size: 0.9rem;
    color: var(--text-secondary, #495057);
    line-height: 1.6;
    margin-bottom: 12px;
}

.beat-card a {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--accent, #5d735d);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
}

.beats-arrow {
    display: flex;
    align-items: flex-start;
    padding-top: 36px;
    color: var(--text-muted, #6c757d);
    font-size: 1.2rem;
    justify-content: center;
}

/* --- Proof section (Day ground) --- */
.proof-section {
    padding: 80px 0;
    background: var(--day-surface, #F3EFE4);
}

.proof-section h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 500;
    color: var(--day-ink-hi, #2C382F);
    margin-bottom: 0.5rem;
}

.proof-section .section-lede {
    font-size: 1rem;
    color: var(--day-ink-mid, #56655A);
    margin-bottom: 2.5rem;
    max-width: 560px;
}

.proof-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
}

.proof-block {
    background: rgba(255,255,255,.55);
    border: 1px solid var(--day-line, #D8D2C4);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.proof-block video {
    flex-shrink: 0;
}

.proof-block__caption {
    margin-top: auto;
}

.proof-block__label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--day-ink-mid, #56655A);
    padding: 16px 20px 0;
    margin-bottom: 10px;
}

.proof-block video,
.proof-block audio {
    width: 100%;
    display: block;
}

.proof-block__caption {
    font-size: 0.82rem;
    color: var(--day-ink-mid, #56655A);
    padding: 10px 20px 16px;
    line-height: 1.5;
}

/* --- Return bridge (Night ground) --- */
.return-bridge {
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.return-bridge__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--indigo-core, #CDBAFF);
    margin-bottom: 14px;
}

.return-bridge h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 500;
    color: var(--ink-hi, #F4F1F8);
    margin-bottom: 0.6rem;
    line-height: 1.1;
}

.return-bridge .bridge-lede {
    font-size: 1rem;
    color: var(--ink-mid, #B9ABCF);
    max-width: 520px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.channel-slot {
    border: 1px solid var(--rule, rgba(185,171,207,.16));
    border-radius: 16px;
    padding: 40px 32px;
    max-width: 560px;
    margin: 0 auto;
    background: rgba(255,255,255,.03);
}

.channel-slot__coming {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--ink-lo, #7E7298);
    margin-bottom: 12px;
}

.channel-slot h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--ink-hi, #F4F1F8);
    margin-bottom: 8px;
}

.channel-slot p {
    font-size: 0.9rem;
    color: var(--ink-mid, #B9ABCF);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.channel-slot .button-ghost {
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid var(--indigo-mid, #7A5CC4);
    border-radius: 6px;
    color: var(--indigo-core, #CDBAFF);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: .04em;
    transition: background .2s, color .2s;
}

.channel-slot .button-ghost:hover {
    background: rgba(122,92,196,.15);
    color: var(--ink-hi, #F4F1F8);
}

/* --- Trust strip --- */
.trust-strip {
    padding: 48px 0;
    border-top: 1px solid var(--rule, rgba(185,171,207,.16));
}

.trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.trust-item__icon {
    font-size: 1.4rem;
    margin-bottom: 8px;
    line-height: 1;
}

.trust-item__label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ink-lo, #7E7298);
    display: block;
    margin-bottom: 4px;
}

.trust-item p {
    font-size: 0.78rem;
    color: var(--ink-mid, #B9ABCF);
    line-height: 1.5;
    margin: 0;
}

/* --- Home close CTA --- */
.home-close {
    padding: 80px 0 60px;
    text-align: center;
}

.home-close h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 500;
    color: var(--ink-hi, #F4F1F8);
    margin-bottom: 0.5rem;
}

.home-close p {
    font-size: 0.95rem;
    color: var(--ink-mid, #B9ABCF);
    margin-bottom: 1.8rem;
}

.home-close .coming-soon-note {
    font-size: 0.8rem;
    color: var(--ink-lo, #7E7298);
    margin-top: 1.5rem;
    margin-bottom: 0;
}

/* --- Meditation page --- */
.meditation-hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 0 70px;
    text-align: center;
}

.meditation-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 500;
    color: var(--ink-hi, #F4F1F8);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.meditation-hero .subhead {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    color: var(--ink-mid, #B9ABCF);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    font-weight: 300;
}

.meditation-hero .orb-stage {
    margin: 0 auto 2.5rem;
}

.session-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 2rem;
}

.session-type {
    border: 1px solid var(--rule, rgba(185,171,207,.16));
    border-radius: 12px;
    padding: 22px 18px;
    background: rgba(255,255,255,.02);
    text-align: center;
}

.session-type__name {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--ink-hi, #F4F1F8);
    margin-bottom: 4px;
}

.session-type__motion {
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--ink-lo, #7E7298);
    margin-bottom: 10px;
    display: block;
}

.session-type p {
    font-size: 0.82rem;
    color: var(--ink-mid, #B9ABCF);
    margin: 0;
    line-height: 1.5;
}

.weave-section {
    padding: 80px 0;
    border-top: 1px solid var(--rule, rgba(185,171,207,.16));
}

.weave-section h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 500;
    color: var(--ink-hi, #F4F1F8);
    margin-bottom: 0.6rem;
}

.weave-section .lede {
    color: var(--ink-mid, #B9ABCF);
    max-width: 640px;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.weave-steps {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-top: 2.5rem;
}

.weave-step {
    border-left: 2px solid var(--indigo-mid, #7A5CC4);
    padding-left: 18px;
}

.weave-step__num {
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--indigo-core, #CDBAFF);
    margin-bottom: 6px;
    display: block;
}

.weave-step h3 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--ink-hi, #F4F1F8);
    margin-bottom: 6px;
}

.weave-step p {
    font-size: 0.85rem;
    color: var(--ink-mid, #B9ABCF);
    line-height: 1.6;
    margin: 0;
}

.meditation-cta {
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid var(--rule, rgba(185,171,207,.16));
}

.meditation-cta h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 500;
    color: var(--ink-hi, #F4F1F8);
    margin-bottom: 0.6rem;
}

.meditation-cta p {
    color: var(--ink-mid, #B9ABCF);
    max-width: 480px;
    margin: 0 auto 1.8rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* --- Responsive Phase 3 --- */
@media (max-width: 860px) {
    .home-hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .home-hero__orb {
        order: -1;
        display: flex;
        justify-content: center;
    }
    .home-hero .subhead,
    .home-hero .tagline-line {
        margin-left: auto;
        margin-right: auto;
    }
    .home-hero .store-badges {
        justify-content: center;
    }
    .beats-row {
        grid-template-columns: 1fr;
    }
    .beats-arrow {
        display: none;
    }
    .beat-card {
        border-bottom: 1px solid var(--sage-200, #d4ddd4);
        padding: 20px 0;
    }
    .proof-grid {
        grid-template-columns: 1fr;
    }
    .trust-strip__grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
    .session-types {
        grid-template-columns: 1fr;
    }
    .weave-steps {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   PHASE 4 — FEATURES, PRICING, OVERVIEW
   ======================================== */

/* --- Feature group sections (Notice / Keep / Return) --- */
.feature-group {
    padding: 72px 0;
    border-bottom: 1px solid var(--border, var(--sage-200));
}

.feature-group[data-ground="night"] {
    border-bottom-color: var(--rule);
}

.feature-group[data-ground="day"] {
    border-bottom-color: var(--day-line);
}

.feature-group__header {
    margin-bottom: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 16px;
}

.feature-group__beat {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1;
    margin: 0;
}

.feature-group__beat--notice { color: var(--text-primary, #212529); }
.feature-group__beat--keep   { color: var(--amber-mid, #E0945A); }
.feature-group__beat--return { color: var(--indigo-core, #CDBAFF); }

.feature-group__tag {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--text-muted, #6c757d);
}

.feature-group[data-ground="night"] .feature-group__tag {
    color: var(--ink-lo);
}

.feature-group__lede {
    flex-basis: 100%;
    font-size: 1rem;
    color: var(--text-secondary, #495057);
    max-width: 600px;
    line-height: 1.65;
    margin: 8px 0 0;
}

.feature-group[data-ground="night"] .feature-group__lede {
    color: var(--ink-mid);
}

.feature-group[data-ground="day"] .feature-group__lede {
    color: var(--day-ink-mid);
}

/* Feature cards restyled for grounds */
.feature-group .feature-card {
    margin-bottom: 1.5rem;
    padding: 24px 26px;
    border-radius: 14px;
}

.feature-group[data-ground="night"] .feature-card {
    border: 1px solid var(--rule);
    background: rgba(255,255,255,.025);
}

.feature-group[data-ground="night"] .feature-card h3 {
    color: var(--ink-hi);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.feature-group[data-ground="night"] .feature-card p {
    color: var(--ink-mid);
    font-size: 0.92rem;
    margin-bottom: 0.6rem;
}

.feature-group[data-ground="night"] .feature-card strong {
    color: var(--ink-hi);
}

.feature-group[data-ground="day"] .feature-card {
    border: 1px solid var(--day-line);
    background: rgba(255,255,255,.5);
}

.feature-group[data-ground="day"] .feature-card h3 {
    color: var(--day-ink-hi);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.feature-group[data-ground="day"] .feature-card p {
    color: var(--day-ink-mid);
    font-size: 0.92rem;
    margin-bottom: 0.6rem;
}

.feature-group[data-ground="day"] .feature-card strong {
    color: var(--day-ink-hi);
}

.feature-group__tier-note {
    font-size: 0.8rem;
    font-style: italic;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.feature-group[data-ground="night"] .feature-group__tier-note { color: var(--ink-lo); }
.feature-group[data-ground="day"]   .feature-group__tier-note { color: var(--day-ink-mid); }

/* --- Pricing page --- */
.pricing-hero {
    padding: 80px 0 60px;
    text-align: center;
    background: var(--day-surface, #F3EFE4);
    border-bottom: 1px solid var(--day-line, #D8D2C4);
}

.pricing-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 500;
    color: var(--day-ink-hi, #2C382F);
    margin-bottom: 0.5rem;
}

.pricing-hero .subhead {
    color: var(--day-ink-mid, #56655A);
    font-size: 1rem;
    margin-bottom: 0;
}

.pricing-tiers-section {
    padding: 72px 0;
    background: var(--cream-50, #fdfcfb);
}

.tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.tier-card-v2 {
    border: 1px solid var(--sage-200, #d4ddd4);
    border-radius: 16px;
    padding: 28px 24px;
    background: #fff;
    position: relative;
}

.tier-card-v2--highlight {
    border-color: var(--indigo-mid, #7A5CC4);
    box-shadow: 0 0 0 1px var(--indigo-mid);
}

.tier-badge-v2 {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--indigo-mid, #7A5CC4);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.tier-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary, #212529);
    margin-bottom: 4px;
}

.tier-price-v2 {
    font-family: var(--font-sans);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary, #212529);
    line-height: 1.1;
    margin-bottom: 0;
}

.tier-price-v2 span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted, #6c757d);
}

.tier-annual {
    font-size: 0.82rem;
    color: var(--text-muted, #6c757d);
    margin-bottom: 1.2rem;
}

.tier-features-v2 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    border-top: 1px solid var(--sage-100, #e8ede8);
    padding-top: 1rem;
}

.tier-features-v2 li {
    font-size: 0.88rem;
    color: var(--text-secondary, #495057);
    padding: 5px 0 5px 18px;
    position: relative;
    line-height: 1.4;
}

.tier-features-v2 li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--sage-600, #5d735d);
    font-weight: 700;
    font-size: 0.8rem;
}

.tier-features-v2 li.tier-separator {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding-left: 0;
    margin-top: 8px;
}

.tier-features-v2 li.tier-separator::before { display: none; }

.pricing-why {
    padding: 72px 0;
    background: var(--sage-50, #f8faf8);
}

.pricing-why h2 {
    text-align: center;
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 500;
    margin-bottom: 0.6rem;
}

.pricing-why .lede {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 2rem;
    color: var(--text-secondary);
    font-size: 1rem;
}

.why-list {
    list-style: none;
    padding: 0;
    max-width: 680px;
    margin: 0 auto;
}

.why-list li {
    padding: 14px 0 14px 28px;
    border-bottom: 1px solid var(--sage-200);
    position: relative;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.why-list li:last-child { border-bottom: none; }

.why-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* --- Overview / How it works page --- */
.overview-hero {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 90px 0 60px;
    text-align: center;
}

.overview-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 500;
    color: var(--ink-hi);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.overview-hero .subhead {
    font-size: 1.05rem;
    color: var(--ink-mid);
    max-width: 540px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    line-height: 1.7;
}

.how-it-works-section {
    padding: 80px 0;
    border-top: 1px solid var(--rule);
}

.how-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 24px;
    align-items: start;
    padding: 28px 0;
    border-bottom: 1px solid var(--rule);
}

.how-step:last-child { border-bottom: none; }

.how-step__num {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--indigo-mid);
    line-height: 1;
    padding-top: 4px;
}

.how-step h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--ink-hi);
    margin-bottom: 8px;
}

.how-step p {
    font-size: 0.92rem;
    color: var(--ink-mid);
    margin: 0;
    line-height: 1.65;
}

/* footer coming-soon note */
.footer-coming-soon {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

/* Responsive Phase 4 */
@media (max-width: 760px) {
    .tier-grid { grid-template-columns: 1fr; }
    .feature-group__header { flex-direction: column; gap: 6px; }
}

/* ========================================
   PHASE 5 — Email capture + performance
   ======================================== */

/* Email capture form */
.email-capture {
    padding: 72px 0;
}

.email-capture__inner {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
}

.email-capture__eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--indigo-core);
    margin-bottom: 0.8rem;
}

.email-capture h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--ink-hi);
    margin-bottom: 0.6rem;
}

.email-capture p {
    font-size: 0.9rem;
    color: var(--ink-mid);
    margin-bottom: 1.6rem;
}

.email-form {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.email-form__input {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(185,171,207,0.3);
    border-radius: 6px;
    color: var(--ink-hi);
    font-family: var(--font-sans);
    font-size: 0.9rem;
}

.email-form__input::placeholder { color: var(--ink-lo); }

.email-form__input:focus {
    outline: none;
    border-color: var(--indigo-core);
}

.email-form__btn {
    padding: 12px 24px;
    background: var(--indigo-mid);
    border: none;
    border-radius: 6px;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.email-form__btn:hover { background: var(--indigo-glow); }

.email-form__note {
    width: 100%;
    font-size: 0.75rem;
    color: var(--ink-lo);
    margin-top: 0.6rem;
    margin-bottom: 0;
}

.email-form__success {
    display: none;
    padding: 14px 20px;
    background: rgba(143,181,146,0.12);
    border: 1px solid rgba(143,181,146,0.3);
    border-radius: 6px;
    color: var(--ink-mid);
    font-size: 0.9rem;
}

/* Lazy video wrapper — prevents layout shift on slow connections */
.video-lazy {
    aspect-ratio: 9/16;
    background: var(--night-1, #160E22);
    border-radius: 10px;
    overflow: hidden;
}
.video-lazy video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Overview hero app name wordmark */
.overview-hero__appname {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 500;
    color: var(--ink-hi);
    letter-spacing: 0.04em;
    line-height: 1;
    margin: 0.2rem 0 0.6rem;
}

/* --- Nav: unlaunched brand marker (no dead links, ever) --- */
.nav-soon {
    color: var(--text-muted, #6c757d); /* ≥4.5:1 on header ground (WCAG AA) */
    cursor: default;
    white-space: nowrap;
}
.nav-soon em {
    font-style: normal;
    font-size: 0.72em;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.75;
    margin-left: 0.25em;
}
