* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #030712;
    --bg-secondary: #020617;
    --bg-tertiary: #0f172a;
    --text-primary: #f9fafb;
    --text-secondary: #e5e7eb;
    --text-muted: #9ca3af;
    --border-color: rgba(148, 163, 184, 0.15);
    --border-subtle: rgba(148, 163, 184, 0.08);
    --glass-bg: rgba(15, 23, 42, 0.85);
    --glass-border: rgba(148, 163, 184, 0.1);
    --accent-primary: #22c55e;
    --accent-secondary: #4ade80;
    --accent-gradient: #22c55e;
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.4);
    --shadow-medium: 0 20px 60px rgba(0, 0, 0, 0.5);
}

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-padding-top: 100px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', 'Helvetica Neue', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(3, 7, 18, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    margin: 0;
    padding: 0;
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar.hidden {
    transform: translateY(-100%);
}

.navbar.scrolled {
    background: rgba(3, 7, 18, 0.92);
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    height: 88px;
    transition: height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar.scrolled .navbar-content {
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 200px;
    height: auto;
    transform-origin: left;
    transform: scale(1.5);
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar.scrolled .logo-img {
    transform: scale(1.3);
}

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

.nav-dropdown {
    position: relative;
}

.nav-dropdown-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.nav-dropdown-btn:hover {
    color: var(--text-primary);
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    min-width: 240px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s ease;
}

.nav-dropdown-item:hover {
    color: var(--text-primary);
    background: rgba(34, 197, 94, 0.08);
}

.nav-link {
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.3s ease;
}

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

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

.nav-role-btn {
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-secondary);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-role-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.nav-role-btn.active {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.2);
}

.nav-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 12px 28px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--bg-tertiary);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.btn-waitlist {
    background: var(--text-primary);
    border: none;
    color: var(--bg-primary);
    padding: 12px 28px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-waitlist:hover {
    transform: translateY(-1px);
    background: #e4e4e7;
}

.btn-primary {
    background: #ffffff;
    border: none;
    color: #000000;
    padding: 16px 40px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.15);
    background: #f0f0f0;
}

/* Hero Section */
.hero {
    padding: 180px 0 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at top, #0a0a0a 0%, #000000 70%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% -20%, rgba(255,255,255,0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Faded Background Text */
.faded-bg-text {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 120px;
    gap: 20px;
}

.bg-line {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: clamp(60px, 12vw, 140px);
    color: transparent;
    white-space: nowrap;
    user-select: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-image: 
        radial-gradient(circle, rgba(255,255,255,0.15) 1px, transparent 1px),
        linear-gradient(135deg, rgba(255,255,255,0.2), rgba(200,200,200,0.12), rgba(255,255,255,0.2));
    background-size: 8px 8px, 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    width: max-content;
    animation: 
        gradientPulse 8s ease-in-out infinite,
        scrollLeft 35s linear infinite;
    opacity: 0.3;
}

.line-2 {
    animation: 
        gradientPulse 8s ease-in-out infinite reverse,
        scrollRight 35s linear infinite;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes gradientPulse {
    0%, 100% {
        background-position: 0% 0%, 0% 0%;
    }
    50% {
        background-position: 100% 100%, 100% 100%;
    }
}

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

.hero-tagline {
    margin-bottom: 28px;
}

.hero-pill {
    display: inline-block;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #22c55e;
}

@keyframes goldShine {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-headline h1 {
    font-size: clamp(36px, 7vw, 96px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.hero-headline h1:first-child {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    white-space: nowrap;
}

.hero-headline h1:last-child {
    font-family: 'Space Grotesk', sans-serif;
}

.gradient-text {
    background: var(--accent-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheadline {
    font-size: 18px;
    color: var(--text-primary);
    max-width: 720px;
    margin: 32px auto 56px;
    line-height: 1.8;
}

/* Interaction Matrix */
.interaction-matrix {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(40px);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 48px;
    max-width: 640px;
    margin: 0 auto;
    box-shadow: var(--shadow-soft), var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.interaction-matrix::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.interaction-matrix:hover::before {
    opacity: 1;
}

.role-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    background: rgba(255,255,255,0.03);
    padding: 6px;
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
}

.role-tab {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.role-tab:hover {
    color: var(--text-primary);
    background: rgba(255,255,255,0.04);
}

.role-tab.active {
    background: rgba(255,255,255,0.08);
    color: var(--text-primary);
}

.email-input-container {
    display: flex;
    gap: 12px;
}

.email-input {
    flex: 1;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    padding: 16px 20px;
    border-radius: 16px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: var(--text-muted);
}

.email-input:focus {
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.06);
}

.micro-consent {
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-muted);
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Infrastructure Shift */
.infrastructure-shift {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
}

.infrastructure-shift::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.02) 0%, transparent 50%);
    pointer-events: none;
}

.infrastructure-shift .shift-content {
    background: linear-gradient(145deg, rgba(10, 10, 10, 0.6), rgba(5, 5, 5, 0.8));
    border: 1px solid var(--border-color);
    border-radius: 40px;
    padding: 80px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.infrastructure-shift .shift-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 0%, rgba(255,255,255,0.03) 0%, transparent 40%);
    pointer-events: none;
}

.shift-left {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.eyebrow {
    font-size: 12px;
    color: #22c55e;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 700;
}

@keyframes eyebrowShine {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.shift-heading {
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.roast-body p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.roast-closing {
    font-size: 18px !important;
    color: var(--text-primary) !important;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-subtle);
}

.shift-right {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.comparison-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 40px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.comparison-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-gradient);
    opacity: 0.03;
    pointer-events: none;
}

.comparison-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-subtle);
}

.comparison-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 100px;
    background: rgba(255,255,255,0.04);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.comparison-badge.badge-fovndx {
    background: #ffffff;
    color: #000000;
    font-weight: 800;
}

.comparison-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 12px;
}

.comparison-left-item,
.comparison-right-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.comparison-left-item {
    justify-content: flex-start;
}

.comparison-right-item {
    justify-content: flex-end;
}

.comparison-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-icon svg {
    display: block;
}

.comparison-icon.icon-bad {
    opacity: 0.4;
}

.comparison-icon.icon-bad svg {
    stroke: var(--text-secondary);
}

.comparison-icon.icon-good {
    opacity: 0.9;
}

.comparison-text {
    font-size: 15px;
    font-weight: 500;
}

.comparison-left-item .comparison-text {
    color: var(--text-secondary);
}

.comparison-right-item .comparison-text {
    color: var(--text-primary);
}

.comparison-arrow {
    font-size: 18px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
}

.comparison-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border-subtle);
}

.stat-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--accent-green);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.1);
    transform: translateY(-4px);
    background: rgba(255,255,255,0.04);
}

.stat-icon {
    margin-bottom: 8px;
}

.stat-icon svg {
    display: block;
    margin: 0 auto;
}

.stat-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Founder's Note */
.founders-note {
    padding: 140px 0;
    position: relative;
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(34, 197, 94, 0.02) 50%, var(--bg-primary) 100%);
}

.founders-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(34, 197, 94, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(14, 165, 233, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.note-content {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.founders-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 80px;
    align-items: start;
}

.founder-badge {
    display: inline-block;
    color: #22c55e;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    padding: 10px 24px;
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 100px;
    margin-bottom: 32px;
    background: rgba(34, 197, 94, 0.05);
}

.founder-left {
    text-align: left;
}

.founders-note .section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    text-align: left;
    margin-bottom: 40px;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.founder-right {
    position: sticky;
    top: 120px;
}

.founder-stats-card {
    background: linear-gradient(145deg, rgba(10, 10, 10, 0.95), rgba(15, 15, 15, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
}

.founder-stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #22c55e, #0ea5e9);
    opacity: 0.6;
}

.stats-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 36px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.stat-item:last-of-type {
    border-bottom: none;
    margin-bottom: 12px;
}

.stat-item:hover {
    transform: translateX(8px);
    padding-left: 8px;
}

.stat-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 22px;
    font-weight: 800;
    color: #22c55e;
    min-width: 44px;
    letter-spacing: -0.02em;
}

.stat-text {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: -0.01em;
}

.founder-cta {
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.quote-container {
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 56px 48px;
    position: relative;
    overflow: hidden;
}

.quote-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.3), transparent);
}

.quote-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 0%, rgba(34, 197, 94, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

.quote-marks {
    font-size: 72px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.06);
    line-height: 1;
    margin-bottom: 16px;
    font-family: 'Georgia', serif;
    display: inline-block;
}

.quote-content {
    position: relative;
    z-index: 1;
}

.quote-line {
    font-size: clamp(15px, 1.8vw, 18px);
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0 0 20px 0;
    padding: 0;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
}

.quote-line:last-of-type {
    margin-bottom: 0;
}

.quote-line.highlight {
    font-size: clamp(17px, 2.1vw, 20px);
    color: var(--text-primary);
    font-weight: 600;
    margin: 28px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.quote-footer {
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.founder-info {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px;
}

.founder-info:hover {
    /* No hover effects */
}

.founder-avatar {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 900;
    font-size: 22px;
    color: #030712;
}

/* Founders Note Section - Removed duplicates */

/* Careers Section */
.careers {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
}

.careers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 100%, rgba(255,255,255,0.02) 0%, transparent 50%);
    pointer-events: none;
}

.careers-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.careers-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 56px 0;
}

.benefit-card {
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-gradient);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-blue);
    background: rgba(255,255,255,0.04);
    box-shadow: 0 0 40px rgba(14, 165, 233, 0.1);
}

.benefit-card:hover::before {
    opacity: 0.03;
}

.benefit-icon {
    margin-bottom: 20px;
}

.benefit-icon svg {
    display: block;
    margin: 0 auto;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.careers-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.careers-cta .btn-primary {
    text-decoration: none;
    display: inline-block;
}

/* ============================================
   YC-INSPIRED PAGE STYLES (DARK THEME)
   ============================================ */

/* Page Hero - Clean & Simple */
.page-hero {
    padding: 120px 0 80px;
    background: #0a0a0a;
}

.page-hero-content {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 20px 0;
    color: #ffffff;
}

.page-subtitle {
    font-size: 1.125rem;
    color: #9ca3af;
    line-height: 1.8;
    max-width: 700px;
}

/* Page Content - Clean Readable Layout */
.page-content {
    padding: 60px 0 120px;
    background: #0a0a0a;
}

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

/* Section Heading */
.section-heading {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    color: #ffffff;
    margin: 60px 0 24px 0;
}

.section-heading:first-of-type {
    margin-top: 0;
}

/* Paragraph */
.content-paragraph {
    font-size: 1.125rem;
    color: #d1d5db;
    line-height: 1.8;
    margin: 0 0 28px 0;
}

/* List Style */
.content-list {
    margin: 0 0 28px 0;
    padding-left: 24px;
}

.content-list li {
    font-size: 1.125rem;
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 12px;
}

/* Steps - Clean Numbered Items */
.step-item {
    margin: 0 0 48px 0;
}

.step-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    color: #22c55e;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    color: #ffffff;
    margin-bottom: 12px;
}

.step-desc {
    font-size: 1.125rem;
    color: #d1d5db;
    line-height: 1.8;
}

/* Protection Grid - Simple Boxes */
.protection-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 24px 0 0 0;
}

.protection-item {
    padding: 24px;
    border-left: 3px solid #22c55e;
    background: rgba(255,255,255,0.02);
}

.protection-label {
    font-weight: 700;
    font-size: 1.125rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.protection-desc {
    font-size: 1rem;
    color: #9ca3af;
    line-height: 1.7;
}

/* Bottom Line Box - Simple Highlight */
.bottom-line-box {
    margin-top: 48px;
    padding: 28px;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.bottom-line-text {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.7;
}

.bottom-line-label {
    color: #22c55e;
    font-family: 'JetBrains Mono', monospace;
}

/* Apply Page Options */
.apply-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 32px 0;
}

.apply-option {
    padding: 28px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.02);
    cursor: pointer;
    transition: all 0.2s ease;
}

.apply-option:hover {
    border-color: #22c55e;
    background: rgba(34,197,94,0.05);
}

.apply-option-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    color: #22c55e;
    font-weight: 700;
    margin-bottom: 12px;
}

.apply-option-title {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 6px;
    font-family: 'Space Grotesk', sans-serif;
}

.apply-option-desc {
    color: #9ca3af;
    line-height: 1.6;
    font-size: 1rem;
}

/* Interview Guide Items */
.guide-item {
    margin: 0 0 40px 0;
    padding-left: 28px;
    border-left: 2px solid rgba(255,255,255,0.1);
}

.guide-number {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 0.875rem;
    color: #22c55e;
    margin-bottom: 12px;
}

.guide-content h3 {
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Space Grotesk', sans-serif;
}

.guide-content p {
    font-size: 1.0625rem;
    color: #d1d5db;
    line-height: 1.7;
}

/* FAQ Page Items */
.faq-item {
    margin: 0 0 36px 0;
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
}

.faq-answer {
    font-size: 1.0625rem;
    color: #9ca3af;
    line-height: 1.8;
    padding-left: 0;
    border-left: none;
}

/* CTA Button */
.btn-primary {
    display: inline-block;
    padding: 12px 28px;
    background: #ffffff;
    color: #0a0a0a;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: #e5e5e5;
    transform: translateY(-2px);
}

/* Base responsive improvements */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 60px;
    }
    .protection-grid {
        grid-template-columns: 1fr;
    }
    .apply-options {
        grid-template-columns: 1fr;
    }
    .footer-top {
        flex-direction: column;
        gap: 32px;
    }
    .guide-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .nav-buttons .btn-secondary {
        display: none;
    }
    .btn-primary, .btn-secondary, .btn-waitlist {
        min-height: 48px;
        padding: 12px 24px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .hero {
        padding: 100px 0 50px;
    }
    .hero-headline h1 {
        font-size: clamp(24px, 10vw, 36px);
    }
    .role-tabs {
        flex-direction: column;
        gap: 8px;
    }
    .role-tab {
        min-height: 44px;
        padding: 12px 16px;
        font-size: 14px;
    }
    .email-input {
        min-height: 48px;
        padding: 12px 16px;
        font-size: 16px;
    }
}
.footer {
    padding: 80px 0 48px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-subtle);
    position: relative;
}

.footer-content {
    display: flex;
    flex-direction: column;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-left {
    flex: 1;
    text-align: left;
}

.footer-right {
    flex: 1;
    text-align: right;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.footer-logo {
    margin-bottom: 24px;
}

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

.footer-tagline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
}

.tagline-highlight {
    background: linear-gradient(90deg, #22c55e, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.footer-metrics {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 14px;
    max-width: 400px;
}

.footer-links {
    margin-bottom: 32px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 16px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links span {
    color: var(--text-muted);
}

.footer-contact {
    margin-bottom: 32px;
    color: var(--text-muted);
    font-size: 14px;
}

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

.footer-contact a:hover {
    color: var(--text-primary);
}

.footer-social {
    margin-bottom: 0;
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(255,255,255,0.06);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 100px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.social-link:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.1);
    border-color: rgba(34, 197, 94, 0.3);
}

.social-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.social-text {
    font-size: 14px;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 13px;
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--border-subtle);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .nav-buttons {
        gap: 12px;
    }

    .btn-secondary, .btn-waitlist {
        padding: 10px 20px;
        font-size: 14px;
    }

    .infrastructure-shift .shift-content {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 48px;
    }

    .hero-headline h1 {
        font-size: clamp(40px, 8vw, 64px);
    }

    .bg-line {
        font-size: clamp(48px, 10vw, 100px);
    }

    .faded-bg-text {
        padding-top: 100px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .navbar-content {
        height: 72px;
    }

    .navbar.scrolled .navbar-content {
        height: 64px;
    }

    .logo-img {
        transform: scale(1.1);
        width: 120px;
    }

    .nav-buttons .btn-secondary {
        display: none;
    }

    .hero {
        padding: 110px 0 70px;
    }

    .hero-pill {
        font-size: 10px;
        padding: 8px 14px;
        letter-spacing: 0.1em;
    }

    .hero-headline h1 {
        font-size: clamp(24px, 10vw, 40px);
        letter-spacing: -0.02em;
        line-height: 1.1;
    }

    .hero-headline h1:first-child {
        white-space: normal;
        text-align: center;
    }

    .hero-subheadline {
        font-size: 14px;
        max-width: 100%;
        margin: 24px auto 40px;
    }

    .interaction-matrix {
        padding: 24px 16px;
        border-radius: 24px;
    }

    .role-tabs {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 20px;
    }

    .role-tab {
        font-size: 13px;
        padding: 10px 16px;
    }

    .email-input-container {
        flex-direction: column;
        gap: 10px;
    }

    .email-input {
        font-size: 14px;
        padding: 12px 16px;
    }

    .btn-primary {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
    }

    .micro-consent {
        font-size: 11px;
        line-height: 1.5;
    }

    .infrastructure-shift {
        padding: 80px 0;
    }

    .infrastructure-shift .shift-content {
        padding: 28px 16px;
        border-radius: 24px;
    }

    .shift-heading {
        font-size: clamp(22px, 6vw, 32px);
    }

    .roast-body p {
        font-size: 15px;
    }

    .roast-closing {
        font-size: 15px !important;
        margin-top: 28px;
        padding-top: 28px;
    }

    .comparison-card {
        padding: 24px 16px;
        border-radius: 24px;
    }

    .comparison-header {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .comparison-badge {
        font-size: 10px;
        padding: 6px 12px;
    }

    .comparison-item {
        padding: 12px 0;
    }

    .comparison-text {
        font-size: 13px;
    }

    .comparison-icon svg {
        width: 20px;
        height: 20px;
    }

    .comparison-stats {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 24px;
        padding-top: 24px;
    }

    .stat-card {
        padding: 20px 12px;
        border-radius: 16px;
    }

    .stat-label {
        font-size: 11px;
    }

    .founders-note {
        padding: 80px 0;
    }

    .founders-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .founder-right {
        position: static;
    }

    .founders-note .section-title {
        text-align: center;
        margin-bottom: 32px;
    }

    .founder-left {
        text-align: center;
    }

    .quote-container {
        padding: 40px 24px;
        border-radius: 24px;
        text-align: left;
    }

    .quote-marks {
        font-size: 56px;
    }

    .quote-line {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .quote-line.highlight {
        font-size: 17px;
    }

    .quote-footer {
        margin-top: 32px;
        padding-top: 24px;
    }

    .founder-info {
        gap: 16px;
        justify-content: center;
    }

    .founder-details {
        text-align: left;
    }

    .founder-avatar {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }

    .founder-name {
        font-size: 16px;
    }

    .founder-title {
        font-size: 12px;
    }

    .founder-stats-card {
        padding: 32px 24px;
        border-radius: 24px;
    }

    .stats-title {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-text {
        font-size: 15px;
    }

    .careers {
        padding: 70px 0;
    }

    .careers-benefits {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 40px 0;
    }

    .benefit-card {
        padding: 28px 20px;
        border-radius: 24px;
    }

    .benefit-card h3 {
        font-size: 18px;
    }

    .benefit-card p {
        font-size: 14px;
    }

    .footer {
        padding: 50px 0 28px;
    }
    
    .footer-logo-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-logo-img {
        height: 120px;
    }
    
    .footer-tagline {
        font-size: 16px;
    }

    .footer-metrics {
        font-size: 12px;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 20px;
    }

    .footer-links a {
        margin: 0;
        font-size: 12px;
    }

    .footer-links span {
        display: none;
    }

    .footer-contact {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .social-link {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
    }

    .social-text {
        font-size: 13px;
    }

    .footer-copyright {
        font-size: 12px;
    }

    .bg-line {
        font-size: clamp(32px, 12vw, 60px);
    }

    .faded-bg-text {
        padding-top: 70px;
        gap: 16px;
    }

    .btn-waitlist {
        padding: 10px 18px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .logo-img {
        width: 100px;
        transform: scale(1.05);
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-headline h1 {
        font-size: clamp(20px, 9vw, 32px);
    }

    .hero-subheadline {
        font-size: 13px;
    }

    .interaction-matrix {
        padding: 20px 14px;
    }

    .role-tab {
        font-size: 12px;
        padding: 10px 14px;
    }

    .email-input {
        padding: 11px 14px;
        font-size: 13px;
    }

    .btn-primary {
        padding: 11px 20px;
        font-size: 13px;
    }

    .infrastructure-shift .shift-content {
        padding: 24px 14px;
    }

    .shift-heading {
        font-size: clamp(20px, 7vw, 28px);
    }

    .founder-quote {
        padding: 24px 16px 24px;
    }

    .founder-quote p {
        font-size: 14px;
    }

    .benefit-card {
        padding: 24px 18px;
    }

    .bg-line {
        font-size: clamp(24px, 11vw, 48px);
    }

    .faded-bg-text {
        padding-top: 60px;
    }
}

.flock-red {
    color: #ef4444;
    font-weight: 700;
}
