/* Memory Garden - Stealth Startup Minimal Design */

/* CSS Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Root Variables */
:root {
    /* Colors */
    --teal: #67B8B3;
    --blue: #4A90E2;
    --gold-light: #FAECD0;
    --gold: #E8D3A5;
    --gold-dark: #DDBE84;
    --text-primary: #3A4A52;
    --text-heading: #2C3E50;
    --charcoal: #222222;
    --gray-light: #5A6B76;
    --white: #FFFFFF;
    --bg-soft: #FAFBFC;
    --bg-gradient: linear-gradient(180deg, #F8FAFB 0%, #FDFEFE 50%, #F7F9FA 100%);
    --overlay-gradient: linear-gradient(135deg, rgba(103, 184, 179, 0.05) 0%, rgba(74, 144, 226, 0.05) 100%);

    /* Typography */
    --font-heading: 'Inter', 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Nunito', 'Source Sans Pro', 'Segoe UI', sans-serif;

    /* Spacing */
    --max-width: 800px;
    --padding: 2rem;
    --section-spacing: 8rem;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

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

/* 404 Error Page Styles */
.error-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.error-content {
    max-width: 800px;
    margin: 0 auto;
}

.error-icon {
    margin-bottom: 2rem;
}

.error-icon i {
    font-size: 5rem;
    color: var(--teal);
    opacity: 0.8;
}

.error-code {
    font-size: 8rem;
    font-weight: 700;
    color: var(--text-heading);
    line-height: 1;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.error-message {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.error-suggestions {
    margin: 4rem 0;
}

.error-suggestions h3 {
    font-size: 1.5rem;
    color: var(--text-heading);
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.suggestion-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(103, 184, 179, 0.1);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.suggestion-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--teal);
}

.suggestion-card i {
    font-size: 2rem;
    color: var(--teal);
}

.suggestion-card span {
    font-weight: 600;
    font-size: 0.95rem;
}

.error-help {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(103, 184, 179, 0.2);
}

.error-help p {
    color: var(--gray-light);
    font-size: 0.95rem;
}

.error-help a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
}

.error-help a:hover {
    text-decoration: underline;
}

/* Responsive adjustments for 404 page */
@media (max-width: 768px) {
    .error-code {
        font-size: 5rem;
    }

    .error-title {
        font-size: 1.5rem;
    }

    .error-message {
        font-size: 1rem;
    }

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

    .suggestion-card {
        padding: 1.5rem 1rem;
    }

    .suggestion-card i {
        font-size: 1.5rem;
    }

    .suggestion-card span {
        font-size: 0.875rem;
    }
}

/* Global Paragraph Styles */
p {
    margin-bottom: 1rem;
}

/* Global Link Styles */
a {
    color: var(--teal);
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

a:hover {
    color: var(--blue);
    text-decoration: underline;
}

/* Global Heading Styles */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-heading);
}

/* Global List Styles */
ul, ol {
    margin-left: 1.5rem;
    padding-left: 0;
}

ul {
    list-style-type: disc;
}

ol {
    list-style-type: decimal;
}

li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--padding);
}

/* Main Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(248, 250, 251, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-logo i {
    font-size: 1.2rem;
    -webkit-text-fill-color: var(--teal);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-heading);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--teal);
    background: rgba(103, 184, 179, 0.08);
}

.nav-link.active {
    color: var(--teal);
    background: rgba(103, 184, 179, 0.12);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.75rem;
    right: 0.75rem;
    height: 2px;
    background: var(--teal);
}

/* Medium screen navigation adjustments */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1rem;
    }

    .nav-link {
        padding: 0.5rem 0.5rem;
        font-size: 0.95rem;
    }
}

/* Hamburger Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle:hover span {
    background: var(--teal);
}

/* Adjust hero and content sections for fixed nav */
.hero {
    margin-top: 70px;
}

.content-main {
    margin-top: 70px;
}

.contact-main {
    margin-top: 70px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 1rem;
        text-align: center;
    }

    .nav-link.active::after {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: 60px;
    }

    /* Hamburger animation */
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: var(--section-spacing) var(--padding);
    text-align: center;
    background: linear-gradient(180deg,
        rgba(103, 184, 179, 0.06) 0%,
        rgba(253, 254, 254, 0.5) 50%,
        rgba(74, 144, 226, 0.06) 100%
    );
    overflow: hidden;
}

/* Gradient overlay - now used for radial glow behind headline */
.gradient-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle,
        rgba(103, 184, 179, 0.10) 0%,
        rgba(74, 144, 226, 0.10) 30%,
        transparent 70%
    );
    pointer-events: none;
    opacity: 0;
    animation: fadeIn 2s ease forwards;
    filter: blur(60px);
}

/* Noise texture overlay for banding prevention */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.015;
    pointer-events: none;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.5) 35px, rgba(255,255,255,.5) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(0,0,0,.03) 35px, rgba(0,0,0,.03) 70px);
    mix-blend-mode: multiply;
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    animation: fadeInUp 1s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 3.5vw, 1.8rem);
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
    animation: fadeInUp 1.1s ease;
    position: relative;
    z-index: 2;
}

.hero-subline {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: var(--gray-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.6;
    animation: fadeInUp 1.2s ease;
    position: relative;
    z-index: 2;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease;
    position: relative;
    z-index: 2;
}

/* Buttons - Base Styles */
.btn {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.2px;
    text-decoration: none;
    border-radius: 999px;
    min-height: 48px;
    padding: 14px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: transform 0.18s cubic-bezier(0.2, 0.7, 0.2, 1),
                box-shadow 0.18s cubic-bezier(0.2, 0.7, 0.2, 1),
                filter 0.18s cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* Primary CTA Button */
.btn-primary {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    color: var(--text-primary);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 26px rgba(221, 190, 132, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 12px 32px rgba(103, 184, 179, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.btn-primary:active {
    background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
    color: var(--white);
    transform: translateY(0);
    box-shadow: 0 6px 18px rgba(103, 184, 179, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Secondary CTA Button with Gradient Border */
.btn-secondary {
    background: linear-gradient(var(--white), var(--white)) padding-box,
                linear-gradient(90deg, var(--teal) 0%, var(--blue) 100%) border-box;
    color: var(--teal);
    position: relative;
    padding: 14px 22px;
    gap: 6px;
    border: 2px solid transparent;
    border-radius: 999px;
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;
}

.btn-secondary:hover {
    background: linear-gradient(90deg, var(--teal) 0%, var(--blue) 100%) padding-box,
                linear-gradient(90deg, var(--teal) 0%, var(--blue) 100%) border-box;
    color: var(--white);
    transform: translateY(-1px);
}

.btn-secondary:hover i {
    color: var(--white);
}

.btn-secondary:active {
    transform: translateY(0);
    background: linear-gradient(90deg, rgba(103, 184, 179, 0.04) 0%, rgba(74, 144, 226, 0.06) 100%) padding-box,
                linear-gradient(90deg, var(--teal) 0%, var(--blue) 100%) border-box;
}

/* Play icon sizing */
.btn-secondary i {
    font-size: 0.75em;
    color: var(--teal);
    transition: color 0.18s cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* Focus Visible States */
.btn:focus-visible {
    outline: 3px solid rgba(74, 144, 226, 0.5);
    outline-offset: 2px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .btn {
        transition: none;
    }

    .btn:hover {
        transform: none;
    }
}

/* How It Works Section */
.how-it-works {
    padding: var(--section-spacing) var(--padding);
    background: linear-gradient(180deg, var(--white) 0%, rgba(103, 184, 179, 0.02) 100%);
    text-align: center;
}

.how-it-works h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--text-heading);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.section-intro {
    font-size: 1.15rem;
    color: var(--gray-light);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.step-card {
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(103, 184, 179, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(103, 184, 179, 0.12);
    border-color: rgba(103, 184, 179, 0.3);
}

.step-number {
    display: inline-block;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 48px;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-heading);
    margin-bottom: 0.75rem;
}

.step-card h3 i {
    color: var(--teal);
    margin-right: 0.5rem;
}

.step-card p {
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.7;
    margin: 0;
}

.process-cta,
.effectiveness-cta,
.faq-cta {
    margin-top: 2rem;
}

.text-link {
    font-size: 1.05rem;
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: var(--blue);
    text-decoration: none;
}

.text-link i {
    margin-left: 0.35rem;
    font-size: 0.9em;
}

/* Who It Helps Section */
.who-it-helps {
    padding: var(--section-spacing) var(--padding);
    background: linear-gradient(180deg, rgba(103, 184, 179, 0.02) 0%, var(--white) 100%);
    text-align: center;
}

.who-it-helps h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--text-heading);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.conditions-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.condition-card {
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(103, 184, 179, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.condition-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(103, 184, 179, 0.12);
    border-color: rgba(103, 184, 179, 0.3);
}

.condition-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: linear-gradient(135deg, rgba(103, 184, 179, 0.1) 0%, rgba(74, 144, 226, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.condition-icon i {
    font-size: 2rem;
    color: var(--teal);
}

.condition-content {
    flex: 1;
    text-align: left;
}

.condition-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-heading);
    margin-bottom: 0.75rem;
    text-align: left;
}

.condition-card p {
    font-size: 1rem;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.condition-card p:last-of-type {
    margin-bottom: 1.25rem;
}

.card-link {
    font-size: 0.95rem;
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: var(--blue);
    text-decoration: none;
}

.card-link i {
    margin-left: 0.35rem;
    font-size: 0.85em;
}

/* Demo Video Section */
.demo-video {
    padding: 4rem var(--padding);
    background: var(--white);
    text-align: center;
}

.demo-video h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--text-heading);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.video-intro {
    font-size: 1.05rem;
    color: var(--gray-light);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.video-wrapper {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(103, 184, 179, 0.2),
                0 8px 20px rgba(74, 144, 226, 0.15);
    background: var(--charcoal);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 16 / 9;
}

.video-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 70px rgba(103, 184, 179, 0.25),
                0 10px 25px rgba(74, 144, 226, 0.2);
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.video-play-overlay:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.video-play-overlay i {
    font-size: 2rem;
    color: var(--teal);
    margin-left: 4px; /* Optical centering */
}

.video-play-overlay:active {
    transform: translate(-50%, -50%) scale(0.95);
}

/* Evidence Section */
.evidence-section {
    padding: var(--section-spacing) var(--padding);
    background: linear-gradient(180deg, var(--white) 0%, rgba(103, 184, 179, 0.02) 100%);
    text-align: center;
}

.evidence-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--text-heading);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.evidence-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.evidence-item {
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(103, 184, 179, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.evidence-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(103, 184, 179, 0.12);
    border-color: rgba(103, 184, 179, 0.3);
}

.evidence-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: linear-gradient(135deg, rgba(103, 184, 179, 0.1) 0%, rgba(74, 144, 226, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.evidence-icon i {
    font-size: 2rem;
    color: var(--teal);
}

.evidence-content {
    flex: 1;
    text-align: left;
}

.evidence-item h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-heading);
    margin-bottom: 0.75rem;
    text-align: left;
}

.evidence-item p {
    font-size: 1rem;
    color: var(--gray-light);
    line-height: 1.7;
    margin: 0;
}

.evidence-link {
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
}

.evidence-link:hover {
    color: var(--blue);
    text-decoration: underline;
}

.evidence-link i {
    font-size: 0.75em;
    margin-left: 0.25rem;
}

.evidence-note {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: linear-gradient(90deg, rgba(244, 228, 193, 0.12) 0%, rgba(232, 211, 165, 0.12) 100%);
    border-left: 4px solid var(--gold-dark);
    border-radius: 8px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.evidence-note p {
    color: var(--text-heading);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* Caregiver Story Section */
.caregiver-story {
    padding: var(--section-spacing) var(--padding);
    background: linear-gradient(180deg, rgba(103, 184, 179, 0.02) 0%, var(--white) 100%);
    text-align: center;
}

.caregiver-story h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--text-heading);
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.story-card {
    max-width: 700px;
    margin: 0 auto 2rem;
    padding: 3rem 2.5rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(103, 184, 179, 0.15);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    font-size: 2.5rem;
    color: var(--teal);
    opacity: 0.2;
}

.story-card blockquote {
    margin: 0;
    padding: 0;
    border: none;
}

.story-card blockquote p {
    font-size: 1.15rem;
    color: var(--gray-light);
    line-height: 1.9;
    font-style: italic;
    margin: 0;
}

.story-attribution {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: var(--text-heading);
    font-weight: 600;
    text-align: right;
}

.story-cta {
    margin-top: 1.5rem;
}

.story-cta p {
    font-size: 1rem;
    color: var(--gray-light);
}

.story-cta a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
}

.story-cta a:hover {
    color: var(--blue);
    text-decoration: underline;
}

/* Manifesto Section */
.manifesto {
    padding: var(--section-spacing) var(--padding);
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.03) 0%, rgba(103, 184, 179, 0.03) 100%);
}

.manifesto-text {
    text-align: center;
}

.manifesto-text p {
    font-family: var(--font-body);
    font-size: 1.3rem;
    color: var(--gray-light);
    margin-bottom: 1rem;
    line-height: 1.8;
    font-weight: 400;
}

.manifesto-emphasis {
    margin-top: 2.5rem !important;
    font-size: 1.4rem !important;
    color: var(--charcoal) !important;
    font-weight: 600 !important;
    padding: 1.5rem;
    background: linear-gradient(90deg, transparent, rgba(244, 228, 193, 0.1), transparent);
    border-radius: 10px;
}

/* Pillar Links */
.pillar-link {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--teal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.pillar-link:hover {
    color: var(--blue);
    text-decoration: none;
}

/* FAQ Section */
.faq-section {
    padding: var(--section-spacing) var(--padding);
    background: linear-gradient(180deg, rgba(103, 184, 179, 0.02) 0%, var(--white) 100%);
    text-align: center;
}

.faq-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--text-heading);
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(103, 184, 179, 0.1);
    transition: all 0.3s ease;
    text-align: left;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(103, 184, 179, 0.1);
}

.faq-item h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-heading);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.faq-item h3 i {
    color: var(--teal);
    margin-right: 0.5rem;
    font-size: 0.95em;
}

.faq-item p {
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.7;
    margin: 0;
}

.faq-item a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
}

.faq-item a:hover {
    color: var(--blue);
    text-decoration: underline;
}

.faq-cta p {
    font-size: 1.05rem;
    color: var(--gray-light);
}

.faq-cta a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
}

.faq-cta a:hover {
    color: var(--blue);
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    padding: var(--section-spacing) var(--padding);
    text-align: center;
    background: var(--white);
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-heading);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.cta-subtext {
    font-size: 1.1rem;
    color: var(--gray-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Video Examples Section */
.examples-heading {
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.video-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.video-example h3 {
    font-size: 1.2rem;
    color: var(--text-heading);
    margin-bottom: 1rem;
    text-align: center;
}

.video-example .video-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.playlist-link {
    margin: 2rem 0 1rem 0;
    font-size: 1.05rem;
    text-align: center;
}

.playlist-link i {
    color: var(--teal);
    margin-right: 0.5rem;
}

.example-note {
    font-style: italic;
    color: var(--gray-light);
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .video-examples {
        grid-template-columns: 1fr;
    }
}

/* Footer */
footer {
    padding: 4rem var(--padding);
    background: linear-gradient(180deg, var(--white) 0%, rgba(103, 184, 179, 0.02) 100%);
    text-align: center;
    border-top: 1px solid rgba(103, 184, 179, 0.1);
}

footer p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-tagline {
    margin-top: 0.5rem;
    font-style: italic;
    opacity: 0.8;
}

.footer-links {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.footer-links a {
    color: var(--teal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--blue);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Tall viewport adjustment */
@media (min-height: 900px) {
    .gradient-overlay {
        width: 50%;
        height: 50%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --section-spacing: 5rem;
        --padding: 1.5rem;
    }

    .hero {
        min-height: 100vh;
        padding: 3rem var(--padding);
    }

    .hero-headline {
        font-size: 2rem;
    }

    .hero-subline {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        max-width: 100%;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
    }

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

    .condition-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .condition-icon {
        width: 64px;
        height: 64px;
        min-width: 64px;
        align-self: center;
    }

    .condition-icon i {
        font-size: 1.8rem;
    }

    .condition-content {
        text-align: left;
    }

    .evidence-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .evidence-icon {
        width: 64px;
        height: 64px;
        min-width: 64px;
        align-self: center;
    }

    .evidence-icon i {
        font-size: 1.8rem;
    }

    .evidence-content {
        text-align: left;
    }

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

    .story-card {
        padding: 2rem 1.5rem;
    }

    .quote-icon {
        font-size: 2rem;
        top: 1rem;
        left: 1.5rem;
    }

    .manifesto-text p {
        font-size: 1.1rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }
}

/* Accessibility */
:focus {
    outline: 2px solid var(--teal);
    outline-offset: 2px;
}

.btn:focus {
    outline: 3px solid var(--blue);
    outline-offset: 3px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Content Pages (Effectiveness, etc.) */
.content-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--white);
}

.content-nav {
    padding: 2rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: var(--white);
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.content-main {
    flex: 1;
    padding: 6rem 2rem 4rem;
}

.content-container {
    max-width: 800px;
    margin: 0 auto;
}

.content-container h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-heading);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.lead-paragraph {
    font-size: 1.2rem;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(103, 184, 179, 0.1);
}

.condition {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(103, 184, 179, 0.02) 0%, rgba(74, 144, 226, 0.02) 100%);
    border-radius: 10px;
    border-left: 4px solid var(--teal);
}

.condition h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-heading);
    margin-bottom: 1rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.rank {
    font-size: 1.2rem;
    color: var(--teal);
    font-weight: 800;
}

.condition-details {
    list-style: none;
    padding: 0;
}

.condition-details li {
    padding: 0.5rem 0;
    color: var(--gray-light);
    line-height: 1.6;
}

.condition-details strong {
    color: var(--text-heading);
    font-weight: 600;
}

.closing-note {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(90deg, rgba(103, 184, 179, 0.08) 0%, rgba(74, 144, 226, 0.08) 100%);
    border-radius: 15px;
}

.closing-note h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-heading);
    margin-bottom: 1rem;
}

.closing-note p {
    color: var(--gray-light);
    line-height: 1.8;
}

.page-cta {
    margin-top: 3rem;
    text-align: center;
}

.content-footer {
    padding: 3rem 2rem;
    background: linear-gradient(180deg, var(--white) 0%, rgba(103, 184, 179, 0.02) 100%);
    text-align: center;
    border-top: 1px solid rgba(103, 184, 179, 0.1);
}

.content-footer p {
    color: var(--gray-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Effectiveness Page Specific Styles */
.subtitle-text {
    font-size: 1.1rem;
    color: var(--gray-light);
    font-style: italic;
    margin-bottom: 2rem;
}

.intro-section {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.important-note {
    padding: 1.5rem;
    background: linear-gradient(90deg, rgba(244, 228, 193, 0.15) 0%, rgba(232, 211, 165, 0.15) 100%);
    border-left: 4px solid var(--gold-dark);
    border-radius: 8px;
    margin-bottom: 3rem;
}

.important-note p {
    color: var(--text-heading);
    line-height: 1.7;
    margin: 0;
}

.guide-section {
    margin-bottom: 3rem;
}

.guide-section h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-heading);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(103, 184, 179, 0.2);
}

.section-intro {
    color: var(--gray-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.how-to-list, .safety-list, .tracking-list {
    list-style: none;
    padding: 0;
}

.how-to-list li, .safety-list li, .tracking-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: var(--gray-light);
    line-height: 1.7;
}

.how-to-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: bold;
}

.safety-list li::before {
    content: "⚠";
    position: absolute;
    left: 0;
    color: var(--gold-dark);
}

.tracking-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--teal);
}

.numbered-list {
    list-style: decimal;
    padding-left: 2rem;
    margin-bottom: 2rem;
}

.numbered-list li {
    padding: 0.5rem 0;
    color: var(--gray-light);
    line-height: 1.7;
}

.numbered-list li strong {
    color: var(--text-heading);
    font-weight: 600;
}

/* Table Styles */
.table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
}

.effectiveness-table,
.therapy-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.effectiveness-table thead,
.therapy-table thead {
    background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
    color: var(--white);
}

.effectiveness-table th,
.therapy-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
}

.effectiveness-table td,
.therapy-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(103, 184, 179, 0.1);
    color: var(--gray-light);
    line-height: 1.6;
}

.effectiveness-table tbody tr:hover,
.therapy-table tbody tr:hover {
    background: rgba(103, 184, 179, 0.02);
}

.effectiveness-table tbody tr:last-child td,
.therapy-table tbody tr:last-child td {
    border-bottom: none;
}

.table-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--gray-light);
    font-style: italic;
}

/* Condition Guides */
.condition-guide {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(103, 184, 179, 0.03) 0%, rgba(74, 144, 226, 0.03) 100%);
    border-radius: 10px;
    border-left: 3px solid var(--teal);
}

.condition-guide h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-heading);
    margin-bottom: 1rem;
}

.condition-guide p {
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.condition-guide p:last-child {
    margin-bottom: 0;
}

/* Process Phase Sections */
.process-phase {
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(103, 184, 179, 0.02) 0%, rgba(74, 144, 226, 0.02) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--teal);
}

.process-phase h2 i {
    color: var(--teal);
    margin-right: 0.75rem;
}

.process-phase ul {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.process-phase p:last-of-type {
    margin-bottom: 0;
}

/* Clinician Section */
.clinician-section {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, rgba(103, 184, 179, 0.05) 100%);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(74, 144, 226, 0.1);
}

.clinician-section p {
    color: var(--gray-light);
    line-height: 1.8;
}

/* Disclaimer */
.disclaimer {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(244, 228, 193, 0.08);
    border: 1px solid var(--gold-dark);
    border-radius: 10px;
}

.disclaimer h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-heading);
    margin-bottom: 1rem;
}

.disclaimer p {
    color: var(--gray-light);
    line-height: 1.7;
    font-size: 0.9rem;
}

/* Responsive adjustments for effectiveness page */
@media (max-width: 768px) {
    .effectiveness-table,
    .therapy-table {
        font-size: 0.75rem;
    }

    .effectiveness-table th,
    .effectiveness-table td,
    .therapy-table th,
    .therapy-table td {
        padding: 0.75rem 0.5rem;
    }

    .condition-guide {
        padding: 1rem;
    }
}

/* Contact Page Styles */
.contact-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.contact-nav {
    padding: 2rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.back-link {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.back-link:hover {
    color: var(--teal);
}

.contact-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.contact-container {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.contact-headline {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-heading);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease;
}

.contact-subtext {
    font-size: 1.2rem;
    color: var(--gray-light);
    margin-bottom: 3rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease;
}

.contact-primary {
    margin-bottom: 4rem;
    animation: fadeInUp 1.2s ease;
}

.contact-email-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.2px;
    border-radius: 999px;
    min-height: 48px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: transform 0.18s cubic-bezier(0.2, 0.7, 0.2, 1),
                box-shadow 0.18s cubic-bezier(0.2, 0.7, 0.2, 1),
                filter 0.18s cubic-bezier(0.2, 0.7, 0.2, 1);
    box-shadow: 0 10px 26px rgba(221, 190, 132, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.contact-email-btn:hover {
    background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 12px 32px rgba(103, 184, 179, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.contact-email-btn:active {
    background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
    color: var(--white);
    transform: translateY(0);
    box-shadow: 0 6px 18px rgba(103, 184, 179, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.contact-email-btn:focus-visible {
    outline: 3px solid rgba(74, 144, 226, 0.5);
    outline-offset: 2px;
}

.contact-helper {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--gray-light);
    opacity: 0.8;
}

/* Beta Notice */
.beta-notice {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(103, 184, 179, 0.03) 0%, rgba(74, 144, 226, 0.03) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--teal);
    animation: fadeInUp 1.2s ease;
    text-align: left;
}

.beta-notice p {
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: left;
}

.beta-notice p:last-child {
    margin-bottom: 0;
}

.beta-notice ul {
    margin: 1rem 0 1.5rem 1.5rem;
    padding-left: 0;
    text-align: left;
}

.beta-notice li {
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

/* Closing Line */
.closing-line {
    margin: 3rem 0;
    padding: 1.5rem;
    text-align: center;
    animation: fadeInUp 1.3s ease;
}

.closing-line p {
    font-size: 1.1rem;
    color: var(--teal);
    line-height: 1.7;
    margin: 0;
}

/* YouTube Section - Prominent */
.youtube-section {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(103, 184, 179, 0.05) 0%, rgba(74, 144, 226, 0.05) 100%);
    border-radius: 20px;
    margin-bottom: 3rem;
    animation: fadeInUp 1.4s ease;
}

.youtube-section h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-heading);
    margin-bottom: 0.5rem;
}

.youtube-section p {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
}

.youtube-large-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 999px;
    transition: transform 0.18s cubic-bezier(0.2, 0.7, 0.2, 1),
                box-shadow 0.18s cubic-bezier(0.2, 0.7, 0.2, 1),
                filter 0.18s cubic-bezier(0.2, 0.7, 0.2, 1);
    box-shadow: 0 10px 26px rgba(103, 184, 179, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.youtube-large-btn:hover {
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 12px 32px rgba(103, 184, 179, 0.45),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
    filter: brightness(1.1);
    text-decoration: none;
}

.youtube-icon {
    width: 24px;
    height: 24px;
}

.youtube-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--gray-light);
    font-style: italic;
}

/* Secondary Links */
.contact-secondary {
    margin: 3rem 0;
    animation: fadeInUp 1.6s ease;
}

.contact-question {
    color: var(--gray-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.waitlist-link {
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.waitlist-link:hover {
    border-bottom-color: var(--teal);
}

/* Contact Footer */
.contact-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(103, 184, 179, 0.1);
    animation: fadeIn 2s ease;
}

.contact-footer p {
    color: var(--gray-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Print Styles */
@media print {
    .gradient-overlay,
    .hero-cta,
    .cta-section {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .hero {
        min-height: auto;
        padding: 2rem;
    }
}