/* ============================================
   GUARDRAIL - FLAT DESIGN + MODERN ANIMATIONS
   Bold, Shadow-Free, Color-Block Aesthetic
   ============================================ */

/* Design Tokens */
:root {
    /* Colors - Flat Design Palette */
    --color-bg: #FFFFFF;
    --color-bg-muted: #F3F4F6;
    --color-fg: #111827;
    --color-fg-muted: #6B7280;
    --color-primary: #3B82F6;
    --color-primary-dark: #2563EB;
    --color-secondary: #10B981;
    --color-secondary-dark: #059669;
    --color-accent: #F59E0B;
    --color-accent-dark: #D97706;
    --color-border: #E5E7EB;
    
    /* Typography */
    --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --container-max: 1280px;
    --section-padding: 120px;
    
    /* Radius - Consistent & Moderate */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    /* Animation Timing */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --duration-fast: 200ms;
    --duration-normal: 300ms;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--color-fg);
    background-color: var(--color-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

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

/* ============================================
   GEOMETRIC BACKGROUND DECORATION
   Flat shapes, no gradients, low opacity
   ============================================ */
.animated-bg {
    display: none; /* Disabled - using section-specific decoration */
}

.gradient-orb {
    display: none;
}

/* ============================================
   HEADER - Flat, No Shadow
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    background: var(--color-bg);
    transition: all var(--duration-normal) var(--ease-out);
}

.site-header.scrolled {
    background: var(--color-bg);
    border-bottom: 2px solid var(--color-border);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform var(--duration-fast) var(--ease-out);
}

.brand:hover {
    transform: scale(1.05);
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--color-primary);
    color: white;
    font-weight: 800;
    font-size: 1rem;
}

.brand-name {
    color: var(--color-fg);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    border: none;
    background: #4B5563;
    transition: transform var(--duration-fast) var(--ease-out);
}

.nav-link:hover {
    transform: scale(1.05);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 6px;
    z-index: 101;
}

.hamburger {
    width: 24px;
    height: 3px;
    background: var(--color-fg);
    border-radius: 2px;
    transition: all var(--duration-normal) var(--ease-out);
}

.mobile-menu-toggle.active .hamburger:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active .hamburger:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ============================================
   BUTTONS - Flat, Scale Hover, No Shadow
   ============================================ */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: var(--color-primary);
    color: white;
}

.cta-button.primary:hover {
    background: var(--color-primary-dark);
    transform: scale(1.05);
}

.cta-button.secondary {
    background: var(--color-bg-muted);
    color: var(--color-fg);
}

.cta-button.secondary:hover {
    background: var(--color-border);
    transform: scale(1.05);
}

.cta-button.large {
    padding: 20px 48px;
    font-size: 1.1rem;
}

/* Button Shine Effect - Subtle for flat design */
.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.4s ease;
}

.cta-button:hover .btn-shine {
    left: 100%;
}

/* ============================================
   HERO SECTION - Bold Blue Color Block
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 140px 0 120px;
    background: var(--color-primary);
    color: white;
    overflow: hidden;
}

/* Geometric Background Decoration */
.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

/* Additional geometric shape */
.hero-particles {
    position: absolute;
    top: 30%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transform: rotate(45deg);
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 32px;
    letter-spacing: -0.03em;
    color: white;
}

.hero-line {
    display: block;
    opacity: 0;
    transform: translateY(40px);
    padding: 4px 0;
}

.hero-line:first-child {
    margin-bottom: 8px;
}

.hero-description {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(30px);
}

.hero-cta {
    opacity: 0;
    transform: translateY(30px);
}

.hero .cta-button.primary {
    background: white;
    color: var(--color-primary);
    padding: 24px 56px;
    font-size: 1.25rem;
    font-weight: 700;
    animation: hero-btn-pulse 2s ease-in-out infinite;
}

.hero .cta-button.primary:hover {
    background: var(--color-secondary);
    color: white;
    transform: scale(1.08);
    animation: none;
}

@keyframes hero-btn-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ============================================
   FEATURE SECTIONS - Alternating Color Blocks
   ============================================ */
.feature-section {
    padding: var(--section-padding) 0;
    position: relative;
    background: var(--color-bg);
}

.feature-section.alt {
    background: var(--color-bg-muted);
}

/* Geometric decoration for feature sections */
.feature-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--color-primary);
    opacity: 0.03;
    border-radius: 50%;
    transform: translateY(-50%);
}

.feature-section.alt::before {
    left: -100px;
    right: auto;
    background: var(--color-secondary);
}

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

.feature-content.reverse {
    direction: rtl;
}

.feature-content.reverse > * {
    direction: ltr;
}

.feature-image {
    opacity: 0;
    transform: translateX(-60px);
}

.feature-content.reverse .feature-image {
    transform: translateX(60px);
}

.feature-text {
    opacity: 0;
    transform: translateX(60px);
}

.feature-content.reverse .feature-text {
    transform: translateX(-60px);
}

.feature-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--color-primary);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-section.alt .feature-badge {
    background: var(--color-secondary);
}

.feature-section[data-section="plan"] .feature-badge {
    background: var(--color-accent);
}

.feature-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: var(--color-fg);
}

.feature-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-fg-muted);
    margin-bottom: 32px;
}

.feature-benefits {
    list-style: none;
}

.feature-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 1.05rem;
    margin-bottom: 16px;
    color: var(--color-fg);
    opacity: 0;
    transform: translateX(20px);
}

.feature-benefits li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--color-secondary);
    color: white;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Screenshots - Flat, No Shadow */
.screenshots-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.screenshot-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--duration-normal) var(--ease-out);
    background: var(--color-bg-muted);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.screenshot-wrapper:hover {
    transform: scale(1.02);
}

.feature-screenshot {
    width: 100%;
    height: auto;
    display: block;
    border: 2px solid var(--color-border);
}

.screenshot-caption {
    padding: 12px 16px;
    background: var(--color-fg);
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    text-align: center;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    margin-top: -4px;
}


/* ============================================
   HOW IT WORKS - Dark Color Block
   ============================================ */
.how-it-works {
    padding: var(--section-padding) 0;
    background: var(--color-fg);
    color: white;
    position: relative;
    overflow: hidden;
}

/* Geometric decoration */
.how-it-works::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.how-it-works::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 20%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-lg);
    transform: rotate(45deg);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(30px);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.step-card {
    background: white;
    color: var(--color-fg);
    border-radius: var(--radius-md);
    padding: 48px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: transform var(--duration-fast) var(--ease-out);
}

.step-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: var(--color-primary);
    border-radius: 50%;
    transition: transform var(--duration-fast) var(--ease-out);
}

.step-card:hover .step-icon {
    transform: scale(1.1);
}

.step-card:nth-child(2) .step-icon {
    background: var(--color-secondary);
}

.step-card:nth-child(3) .step-icon {
    background: var(--color-accent);
}

.step-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-fg);
}

.step-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-fg-muted);
}

/* ============================================
   GET STARTED SECTION
   ============================================ */
.get-started-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.06) 0%, rgba(59, 130, 246, 0.02) 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.get-started-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
    opacity: 0.9;
}

.get-started-section .section-title-hero,
.faq-section .section-title-hero {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.get-started-section .section-title-hero::after,
.faq-section .section-title-hero::after {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background: var(--color-primary);
    margin: 20px auto 0;
    border-radius: 3px;
}

.faq-section .section-title-hero::after {
    background: var(--color-secondary);
}

.segment-card {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: 32px 40px;
    margin-bottom: 24px;
    border: 2px solid var(--color-border);
    opacity: 0;
    transform: translateY(40px);
}

.segment-card:last-child {
    margin-bottom: 0;
}

.segment-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-fg);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-primary);
    display: inline-block;
}

.segment-card p,
.segment-list {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--color-fg-muted);
    margin-bottom: 12px;
}

.segment-list {
    padding-left: 20px;
    margin-top: 8px;
}

.segment-list li {
    margin-bottom: 8px;
}

.steps-list {
    list-style: none;
    counter-reset: step;
    margin-bottom: 20px;
}

.steps-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 14px;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--color-fg);
}

.steps-list li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    background: var(--color-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 22px;
    text-align: center;
}

.steps-list code {
    background: var(--color-bg-muted);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.9em;
}

.segment-note {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--color-fg-muted);
    margin-bottom: 0;
}

.segment-card-help a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}

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

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #f0fdf4 0%, rgba(16, 185, 129, 0.04) 30%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -80px;
    width: 200px;
    height: 200px;
    background: var(--color-secondary);
    opacity: 0.08;
    border-radius: 50%;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -60px;
    width: 160px;
    height: 160px;
    background: var(--color-secondary);
    opacity: 0.05;
    border-radius: 50%;
}

.faq-category {
    background: var(--color-bg-muted);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    margin-bottom: 24px;
    border: 2px solid var(--color-border);
    opacity: 0;
    transform: translateY(40px);
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-primary);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-border);
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

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

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

.faq-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    margin: 0 -16px;
    background: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-fg);
    transition: background-color var(--duration-fast) var(--ease-out), color var(--duration-fast) var(--ease-out);
}

.faq-toggle:hover {
    color: var(--color-primary);
    background: rgba(59, 130, 246, 0.08);
}

.faq-toggle:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.faq-question-text {
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: white;
    border-radius: var(--radius-sm);
    transition: transform var(--duration-normal) var(--ease-out), background-color var(--duration-fast) var(--ease-out);
}

.faq-toggle:hover .faq-icon {
    background: var(--color-primary-dark);
}

.faq-icon::before {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
}

.faq-item.is-open .faq-icon::before {
    transform: rotate(45deg);
}

.faq-answer {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--color-fg-muted);
    padding: 0 0 16px 0;
    padding-left: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration-normal) var(--ease-out);
}

.faq-item.is-open .faq-answer {
    max-height: 1200px;
}

.faq-answer[hidden] {
    display: block;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.faq-item.is-open .faq-answer[hidden] {
    max-height: 1200px;
    padding-bottom: 16px;
}

/* ============================================
   FINAL CTA - Amber Color Block
   ============================================ */
.final-cta {
    padding: var(--section-padding) 0;
    background: var(--color-accent);
    position: relative;
    overflow: hidden;
}

/* Geometric decoration */
.final-cta::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.final-cta::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.cta-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: white;
    border-radius: var(--radius-lg);
    padding: 64px 48px;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: scale(0.95);
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    color: var(--color-fg);
}

.cta-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-fg-muted);
    margin-bottom: 40px;
}

.cta-card .cta-button.primary {
    background: var(--color-accent);
    color: white;
}

.cta-card .cta-button.primary:hover {
    background: var(--color-accent-dark);
    transform: scale(1.05);
}

.waitlist-notes {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.note-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--color-fg-muted);
    opacity: 0;
    transform: translateY(20px);
}

.note-icon {
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 1.1rem;
}

/* ============================================
   FOOTER - Dark Block
   ============================================ */
.site-footer {
    padding: 40px 0;
    text-align: center;
    background: var(--color-fg);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ============================================
   SECTION DIVIDER (Hidden)
   ============================================ */
.section-divider {
    display: none;
}

/* ============================================
   MOBILE RESPONSIVENESS
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .feature-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .feature-content.reverse {
        direction: ltr;
    }
    
    .feature-image {
        transform: translateY(40px) !important;
    }
    
    .feature-text {
        transform: translateY(40px) !important;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: var(--color-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
        transition: all 0.4s var(--ease-out);
    }
    
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
    
    .nav-link {
        font-size: 1.5rem;
        padding: 16px 32px;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }
    
    .hero .cta-button.primary {
        padding: 20px 40px;
        font-size: 1.1rem;
    }
    
    .feature-content {
        gap: 40px;
        text-align: center;
    }
    
    .feature-benefits li {
        justify-content: center;
        text-align: left;
    }
    
    .cta-card {
        padding: 48px 24px;
    }
    
    .waitlist-notes {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .cta-button.large {
        padding: 18px 32px;
    }
    
    .step-card {
        padding: 40px 24px;
    }
}

/* ============================================
   ACCESSIBILITY - Focus States
   ============================================ */
:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 4px;
}

.cta-button:focus-visible {
    outline: 2px solid var(--color-fg);
    outline-offset: 4px;
}

/* Selection */
::selection {
    background: var(--color-primary);
    color: white;
}
