/* ============================================
   OrbisApp — Landing Page Styles
   ============================================ */

/* --- Reset & Variables --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0a1a;
    --bg-secondary: #0e0e24;
    --bg-card: #111128;
    --bg-card-hover: #161640;

    --accent-primary: #6366f1;
    --accent-primary-light: #818cf8;
    --accent-secondary: #10b981;
    --accent-secondary-light: #34d399;
    --accent-sky: #0EA5E9;
    --accent-sky-light: #38BDF8;

    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-tertiary: #64748b;

    --border-subtle: rgba(99, 102, 241, 0.12);
    --border-card: rgba(99, 102, 241, 0.15);
    --glow-primary: rgba(99, 102, 241, 0.4);
    --glow-secondary: rgba(16, 185, 129, 0.4);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-pill: 100px;

    --container-max: 1140px;
    --nav-height: 72px;
}

/* --- Accessibility --- */
.sr-only,
.skip-link:not(:focus) {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    padding: 12px 24px;
    background: var(--accent-primary);
    color: #fff;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 17px;
    text-decoration: none;
}

/* --- Reduced Motion --- */
@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;
    }
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 19px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img { max-width: 100%; }

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Text Gradient --- */
.text-gradient {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-sky-light) 50%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   LOGO
   ============================================ */
.nav-logo {
    font-size: 31px;
    font-weight: 700;
    letter-spacing: -0.5px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-rbis {
    font-weight: 700;
    color: #ffffff;
}

.logo-app {
    font-weight: 700;
    color: #ffffff;
}

.logo-app-a {
    color: #0EA5E9;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        text-shadow: 0 0 4px rgba(14, 165, 233, 0.3);
    }
    50% {
        text-shadow: 0 0 12px rgba(14, 165, 233, 0.7), 0 0 24px rgba(14, 165, 233, 0.3);
    }
}

.logo-orbit-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 -1px;
    width: 1.1em;
    height: 1.1em;
    perspective: 100px;
}

.logo-orbit-wrapper i {
    font-size: 1.02em;
    color: #0EA5E9;
    animation: globeSpin 25s linear infinite !important;
    position: relative;
    z-index: 2;
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.3em;
    height: 1.3em;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(14, 165, 233, 0.3);
    border-radius: 50%;
    animation: orbitPulse 3s ease-in-out infinite !important;
    z-index: 1;
}

@keyframes globeSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes orbitPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        border-color: rgba(14, 165, 233, 0.3);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.15);
        border-color: rgba(14, 165, 233, 0.15);
    }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    background: rgba(10, 10, 26, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    transition: background 0.3s;
}

.navbar.scrolled {
    background: rgba(10, 10, 26, 0.95);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    padding: 8px 16px;
    font-size: 17px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
    font-size: 17px !important;
    padding: 8px 20px !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 18px;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
    text-decoration: none;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-primary-light));
    color: #fff;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.25);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.35);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 50px;
    overflow: hidden;
}

.hero-mesh {
    position: absolute;
    inset: 0;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(16, 185, 129, 0.10) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(14, 165, 233, 0.08) 0%, transparent 50%);
    animation: meshFloat 20s ease-in-out infinite;
    z-index: 0;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

@keyframes meshFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(2%, -2%) rotate(1deg); }
    66% { transform: translate(-1%, 1%) rotate(-0.5deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 740px;
    margin: 0 auto;
}

/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 18px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: var(--radius-pill);
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-primary-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-secondary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
}

.hero h1 {
    font-size: clamp(2.88rem, 6.6vw, 4.8rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.035em;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.4vw, 1.38rem);
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 36px;
}

/* ============================================
   WAITLIST FORM
   ============================================ */
.waitlist-form {
    display: flex;
    gap: 0;
    max-width: 460px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 5px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.waitlist-form:focus-within {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12), 0 0 40px rgba(99, 102, 241, 0.06);
}

.waitlist-form input[type="email"] {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 12px 16px;
    color: var(--text-primary);
    font-size: 18px;
    font-family: inherit;
    min-width: 0;
}

.waitlist-form input::placeholder {
    color: var(--text-tertiary);
}

.waitlist-form button {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-primary-light));
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 17px;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.waitlist-form button:hover {
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    transform: translateY(-1px);
}

.waitlist-form button:active {
    transform: translateY(0);
}

.btn-spinner i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.form-message {
    margin-top: 12px;
    font-size: 17px;
    min-height: 22px;
    text-align: center;
}

.form-message.success { color: var(--accent-secondary-light); }
.form-message.error { color: #ef4444; }

.hero-microcopy {
    margin-top: 12px;
    font-size: 16px;
    color: var(--text-tertiary);
}

/* ============================================
   SECTION COMMON
   ============================================ */
section {
    padding: 50px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 30px;
}

.section-badge {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-primary-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: clamp(2.16rem, 4.8vw, 3.12rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.26rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   BUILT FOR
   ============================================ */
.built-for {
    background: var(--bg-secondary);
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.audience-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    padding: 40px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.audience-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.06);
}

.audience-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 29px;
    margin-bottom: 24px;
    background: rgba(99, 102, 241, 0.12);
    color: var(--accent-primary-light);
}

.audience-icon.saas {
    background: rgba(16, 185, 129, 0.12);
    color: var(--accent-secondary-light);
}

.audience-card h3 {
    font-size: 1.44rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.audience-card > p {
    color: var(--text-secondary);
    font-size: 1.14rem;
    margin-bottom: 24px;
}

.audience-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.audience-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.audience-card li i {
    color: var(--accent-secondary);
    font-size: 17px;
    flex-shrink: 0;
}

/* ============================================
   FEATURES — BENTO GRID
   ============================================ */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bento-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.06);
}

.bento-card.featured {
    grid-column: span 2;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
    background: rgba(99, 102, 241, 0.12);
    color: var(--accent-primary-light);
}

.card-content {
    flex: 1;
    min-width: 0;
}

.bento-card h3 {
    font-size: 1.44rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.bento-card p {
    font-size: 1.14rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    background: var(--bg-secondary);
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.step-card {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 40px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    position: relative;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.step-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.06);
    transform: translateY(-4px);
}

.step-number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-primary-light));
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    font-size: 38px;
    color: var(--accent-primary-light);
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.44rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 1.14rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-connector {
    color: var(--text-tertiary);
    font-size: 24px;
    padding: 0 12px;
    flex-shrink: 0;
}

/* ============================================
   WHY ORBISAPP — COMPARISON
   ============================================ */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 800px;
    margin: 0 auto;
}

.comparison-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    padding: 36px;
}

.comparison-card.highlight {
    border-color: rgba(99, 102, 241, 0.35);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.06) 0%, rgba(16, 185, 129, 0.04) 100%);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.08);
}

.comparison-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.comparison-icon.bad {
    background: rgba(239, 68, 68, 0.12);
    color: #ef4444;
}

.comparison-icon.good {
    background: rgba(16, 185, 129, 0.12);
    color: var(--accent-secondary);
}

.comparison-card h4 {
    font-size: 1.44rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.comparison-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comparison-card li {
    font-size: 1.1rem;
    color: var(--text-secondary);
    padding-left: 8px;
    border-left: 2px solid var(--border-card);
}

.comparison-card.highlight li {
    border-left-color: var(--accent-secondary);
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
    background: var(--bg-secondary);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: rgba(99, 102, 241, 0.25);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.26rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    text-align: left;
}

.faq-question i {
    font-size: 19px;
    color: var(--text-tertiary);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: var(--accent-primary-light);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 1.14rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
    padding: 40px 0 50px;
    text-align: center;
}

.final-cta-text {
    max-width: 720px;
    margin: 0 auto 28px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.cta-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    padding: 32px 40px;
    text-align: center;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-card h2 {
    font-size: clamp(1.92rem, 4.2vw, 2.64rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    position: relative;
}

.cta-card > p {
    font-size: 1.26rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    position: relative;
}

.cta-card .waitlist-form {
    position: relative;
}

.cta-card .form-message {
    position: relative;
}

.cta-card .hero-microcopy {
    position: relative;
}

/* ============================================
   PRICING
   ============================================ */
.pricing-section {
    background: var(--bg-secondary);
}

.pricing-teaser {
    max-width: 480px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    text-align: center;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.08);
}

.teaser-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(14, 165, 233, 0.1));
    color: var(--accent-primary-light);
}

.pricing-card h3 {
    font-size: 1.56rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.pricing-card > p {
    color: var(--text-secondary);
    font-size: 1.14rem;
    margin-bottom: 28px;
    line-height: 1.6;
}

.teaser-features {
    list-style: none;
    text-align: left;
    margin: 0 0 32px;
    padding: 0;
}

.teaser-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 1.1rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-card);
}

.teaser-features li:last-child {
    border-bottom: none;
}

.teaser-features li i {
    color: var(--accent-secondary);
    font-size: 22px;
    flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    border-top: 1px solid var(--border-subtle);
    padding: 30px 0 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    padding-bottom: 24px;
}

.footer-brand {
    max-width: 260px;
}

.footer-brand .nav-logo {
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 1.08rem;
    color: var(--text-tertiary);
    margin-top: 12px;
}

.footer-links {
    display: flex;
    gap: 64px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.footer-col a {
    font-size: 17px;
    color: var(--text-tertiary);
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 1px solid var(--border-subtle);
}

.footer-bottom p {
    font-size: 16px;
    color: var(--text-tertiary);
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    font-size: 22px;
    color: var(--text-tertiary);
    transition: color 0.2s;
}

.footer-socials a:hover {
    color: var(--text-primary);
}

/* ============================================
   PERFORMANCE - CONTENT VISIBILITY
   ============================================ */
.built-for,
.features,
.how-it-works,
.why-section,
.pricing-section,
.faq-section,
.final-cta {
    content-visibility: auto;
    contain-intrinsic-size: 0 500px;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* CSS-only scroll animations for modern browsers */
@supports (animation-timeline: view()) {
    .reveal-css {
        animation: revealUp linear both;
        animation-timeline: view();
        animation-range: entry 0% entry 30%;
    }

    @keyframes revealUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bento-card.featured {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    section {
        padding: 36px 0;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(10, 10, 26, 0.98);
        backdrop-filter: blur(20px);
        padding: 16px 24px;
        border-bottom: 1px solid var(--border-subtle);
        gap: 4px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 12px 16px;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 80px 0 40px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .waitlist-form {
        flex-direction: column;
        gap: 8px;
        padding: 8px;
    }

    .waitlist-form button {
        width: 100%;
        justify-content: center;
        padding: 14px;
    }

    .audience-grid,
    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        flex-direction: column;
        gap: 16px;
    }

    .step-connector {
        transform: rotate(90deg);
        padding: 4px 0;
    }

    .step-card {
        max-width: 100%;
        width: 100%;
    }

    .footer-inner {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        gap: 40px;
        flex-wrap: wrap;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .cta-card {
        padding: 24px 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 2.04rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .audience-card,
    .bento-card,
    .step-card {
        padding: 28px 24px;
    }

    .footer-links {
        gap: 32px;
    }
}
