/* ============================================
   Variables & Theme
   ============================================ */
:root {
    /* Colors */
    --primary-red: #ff3621;
    --dark-red: #d92b16;
    --light-red: #ffe3da;
    --cyan: #00c2ff;
    --dark-blue: #0b1f3a;
    --darker-blue: #0f1f35;
    --neo-black: #101828;
    --slate-500: #64748b;
    --slate-600: #475467;
    --slate-800: #1e293b;
    --slate-900: #0f172a;

    /* Gradients */
    --gradient-primary: linear-gradient(90deg, #ff7a52 0%, #ffb08a 45%, #00a8d6 100%);
    --gradient-glow: radial-gradient(circle, rgba(255, 122, 82, 0.08) 0%, transparent 70%);

    /* Fonts */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'DM Sans', 'Inter', sans-serif;

    /* Spacing */
    --nav-height: 64px;

    /* Hero */
    --primary-hero-bg: #F9FBFD;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    background: #f8f9fb;
    color: var(--slate-600);
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    color: var(--neo-black);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
}

/* ============================================
   Navigation
   ============================================ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(16px) saturate(120%);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    height: var(--nav-height);
    transition: box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.nav--scrolled {
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.12);
}

.nav--light {
    background: rgba(255, 255, 255, 0.55);
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.nav--light .logo {
    color: var(--neo-black);
}

.nav--light .nav-link {
    color: #000;
}

.nav--light .nav-link:hover,
.nav--light .nav-link.active {
    color: var(--primary-red);
}

.nav--light .nav-link.active {
    background: rgba(255, 54, 33, 0.08);
}

.nav--light .nav-social a {
    color: #000;
}

.nav--dark {
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav--dark .logo,
.nav--dark .nav-link,
.nav--dark .nav-social a {
    color: #e2e8f0;
}

.nav--dark .nav-link:hover,
.nav--dark .nav-link.active {
    color: #ff7a52;
}

.nav--dark .nav-link.active {
    background: rgba(255, 122, 82, 0.12);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 0;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.logo img {
    height: 64px;
    width: auto;
    object-fit: contain;
}

.nav--dark .logo img {
    filter: invert(1) brightness(1.2);
}

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

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

.nav-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #000;
    transition: all 0.2s;
    text-decoration: none;
}

.nav-social a:hover {
    background: var(--primary-red);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 54, 33, 0.3);
}

.nav-link {
    text-decoration: none;
    color: #000;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-display);
    transition: color 0.2s;
    position: relative;
    padding: 10px 12px;
    border-radius: 8px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 12px;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.2s;
}

.nav-link:hover::after {
    width: calc(100% - 24px);
}

.btn-nav {
    padding: 10px 20px;
    background: var(--primary-red);
    border: 1px solid var(--primary-red);
    color: white;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.btn-nav:hover {
    background: var(--dark-red);
    border-color: var(--dark-red);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(255, 54, 33, 0.3);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: inherit;
}

.mobile-panel {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px) saturate(120%);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(16, 24, 40, 0.12);
    display: none;
    z-index: 999;
}

.mobile-panel.open {
    display: block;
}

.mobile-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px 16px 16px;
}

.mobile-link {
    text-decoration: none;
    color: var(--slate-900);
    font-weight: 600;
    padding: 12px 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
}

@media (max-width: 1023px) {

    .nav-links,
    .nav-social,
    .btn-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    /* Critical: 100% viewport height minus nav bar */
    height: calc(100vh - var(--nav-height));
    margin-top: var(--nav-height);
    /* Push down by nav height */

    background: var(--primary-hero-bg);
    position: relative;
    display: flex;
    /* Enables centering */
    align-items: flex-start;
    /* Align content to top */
    padding: 3vh 4vw 3vh;
    /* Reduced top padding */
    overflow: hidden;
    /* Clips decorative elements */
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    width: 580px;
    height: 580px;
    filter: blur(80px);
    pointer-events: none;
}

.hero::before {
    top: -20%;
    left: 10%;
    background: radial-gradient(circle, rgba(255, 122, 82, 0.08) 0%, transparent 70%);
}

.hero::after {
    bottom: -25%;
    right: -5%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(0, 194, 255, 0.08) 0%, transparent 70%);
    filter: blur(100px);
}

.hero-container {
    max-width: 92vw;
    margin: 0 auto;
    width: 100%;

    /* Grid Layout for Content + Image */
    display: grid;
    grid-template-columns: 1fr;
    gap: 3vw;
    align-items: center;
    position: relative;
    z-index: 10;
}



.hero-content {
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.6vh 1.2vw;
    background: rgba(255, 122, 82, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 999px;
    border: 1px solid rgba(255, 122, 82, 0.2);
    color: var(--dark-red);
    font-size: max(11px, min(0.9vw, 14px));
    font-weight: 600;
    margin-bottom: 1.5vh;
    letter-spacing: 0.02em;
}

.hero-title {
    font-size: clamp(32px, 3.5vw, 62px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--slate-900);
    margin-bottom: 1.8vh;
    position: relative;
    z-index: 2;
    letter-spacing: -0.02em;
}

.hero-title span {
    white-space: nowrap;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.01em;
}

.hero-title .accent-text {
    display: inline;
    color: #000;
    letter-spacing: -0.01em;
    text-transform: none;
    font-weight: 500;
    font-size: 0.75em;
}

.hero-subtitle {
    font-size: clamp(15px, 1.25vw, 20px);
    line-height: 1.6;
    color: #000;
    margin-bottom: 3vh;
    max-width: 90%;
    font-weight: 400;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2vw;
    margin-bottom: 3vh;
    max-width: 90%;
}

.stat-item {
    text-align: left;
}

.stat-value {
    font-size: clamp(24px, 2.8vw, 48px);
    font-weight: 700;
    margin-bottom: 0.4vh;
}

.stat-item:nth-child(1) .stat-value {
    color: #f97316;
}

.stat-item:nth-child(2) .stat-value {
    color: #0891b2;
}

.stat-item:nth-child(3) .stat-value {
    color: #f59e0b;
}

.stat-label {
    font-size: clamp(10px, 0.85vw, 14px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--slate-500);
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.2vw;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    padding: 12px 24px;
    background: var(--primary-red);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(255, 54, 33, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 54, 33, 0.4);
    background: var(--dark-red);
}

.btn-secondary {
    padding: 12px 24px;
    background: white;
    color: var(--primary-red);
    border: 1.5px solid var(--primary-red);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: #fef2f2;
    border-color: var(--dark-red);
    color: var(--dark-red);
    background: linear-gradient(135deg, rgba(0, 194, 255, 0.08) 0%, transparent 50%);
    border-radius: 24px;
    filter: blur(60px);
}

.graph-column {
    position: relative;
    width: 100%;
    min-height: 400px;
}

#graphCanvas {
    width: 100%;
    height: 100%;
    /* Fill the container explicitly */
    display: block;
    /* Removed card styles: border, background, backdrop-filter, box-shadow */
}

/* Status Indicator (Canvas Visual) */
.status-pill {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 12px;
    color: #64748b;
    font-family: monospace;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
    z-index: 20;
    pointer-events: none;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #475569;
}

.dot.active {
    background: #38bdf8;
    box-shadow: 0 0 10px #38bdf8;
}

.graph-label {
    position: absolute;
    padding: 0.8vh 1vw;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(14px) saturate(120%);
    -webkit-backdrop-filter: blur(14px) saturate(120%);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-size: clamp(10px, 0.75vw, 12px);
    font-weight: 600;
    z-index: 10;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 6px 18px rgba(16, 24, 40, 0.12);
}

.label-top {
    top: 2vh;
    left: 1.5vw;
    color: #0891b2;
}

.label-bottom {
    bottom: 2vh;
    right: 1.5vw;
    color: #f59e0b;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Desktop Grid: 60% Left / 40% Right */
@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1.4fr 0.6fr;
        /* Approx 70% / 30% */
        gap: 4vw;
        height: 100%;
        /* Ensure container fills parent for centering */
        align-items: center;
        /* Centers text vertically */
    }

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

    .cta-buttons {
        justify-content: flex-start;
        flex-direction: row;
    }

    .graph-column {
        display: block;
        height: 100%;
        /* Full height */
        width: 100%;
        /* Full width of the grid cell */
        position: relative;
        align-self: stretch;
        /* Force grid item to stretch full height */
    }
}

/* Mobile Fallback */
@media (max-width: 1023px) {
    .hero {
        height: auto;
        min-height: calc(100vh - var(--nav-height));
        padding: 6vh 5vw 8vh;
    }

    .hero-container {
        text-align: center;
        /* Center align for mobile */
    }
}

/* ============================================
   Common Section Styles
   ============================================ */
.section-padding {
    padding: 100px 24px;
}

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

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.kicker {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 122, 82, 0.1);
    color: var(--primary-red);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 999px;
    font-size: 12px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-title .accent {
    color: var(--primary-red);
}

.section-subtitle {
    font-size: 18px;
    color: var(--slate-600);
    line-height: 1.6;
}

[data-theme="dark"] .section-title {
    color: white;
}

[data-theme="dark"] .section-subtitle {
    color: #94a3b8;
}

/* ============================================
   Problem Section
   ============================================ */
.problem-section {
    background: white;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.problem-card {
    padding: 32px;
    background: #F9FBFD;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
}

.problem-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--neo-black);
}

.problem-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--slate-600);
}

/* ============================================
   How It Works Section
   ============================================ */
.how-it-works-section {
    background: white;
    color: var(--neo-black);
    position: relative;
    overflow: hidden;
}

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

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.step-card {
    background: #F9FBFD;
    border: 1px solid #E2E8F0;
    padding: 40px 32px;
    border-radius: 20px;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
}

.step-number {
    font-size: 12px;
    font-weight: 800;
    color: var(--cyan);
    letter-spacing: 2px;
    margin-bottom: 24px;
    display: block;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--neo-black);
}

.step-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--slate-600);
}

/* ============================================
   Use Cases Section
   ============================================ */
.use-cases-section {
    background: #F9FBFD;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.use-case-card {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.use-case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #cbd5e1;
}

.uc-icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: #f1f5f9;
    color: #475569;
    transition: transform 0.3s ease;
}

.use-case-card:hover .uc-icon-wrapper {
    transform: scale(1.1);
    background: #e2e8f0;
    color: #334155;
}

.use-case-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--neo-black);
}

.uc-flow {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.uc-step {
    display: flex;
    flex-direction: column;
}

.uc-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 6px;
}

.uc-text {
    font-size: 15px;
    line-height: 1.5;
}

/* Problem State */
.uc-step.is-problem .uc-label {
    color: var(--slate-500);
}

.uc-step.is-problem .uc-text {
    color: var(--slate-600);
}

/* Connector Arrow */
.uc-connector {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 4px 0;
    color: #cbd5e1;
}

/* Solution State */
.uc-step.is-solution .uc-label {
    color: var(--primary-red);
}

.uc-step.is-solution .uc-text {
    color: var(--neo-black);
    font-weight: 500;
}



/* ============================================
   Team / Technology Section (V2 Redesign)
   ============================================ */
.team-section {
    background-color: #ffffff;
    /* Explicitly white */
    position: relative;
    z-index: 10;
}

.two-column-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

@media (min-width: 1024px) {
    .two-column-layout {
        flex-direction: row;
        gap: 100px;
        align-items: stretch;
        /* Equal height for both columns */
    }

    .tech-column {
        flex: 1.2;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .founder-column {
        flex: 0.8;
        display: flex;
        flex-direction: column;
    }

    .founder-card {
        height: 100%;
        width: 100%;
    }
}

.tech-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: transparent;
    /* Removed card bg for cleaner look */
    border-bottom: 1px solid #f1f5f9;
    /* Only bottom border */
    border-radius: 0;
    transition: all 0.3s ease;
}

.tech-card:last-child {
    border-bottom: none;
}

.tech-card:hover {
    transform: translateX(10px);
    /* Slide right interaction */
}

.tech-icon-wrapper {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: #f8fafc;
    color: #0f172a;
    border-radius: 50%;
    /* Circular */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.tech-card:hover .tech-icon-wrapper {
    background: var(--neo-black);
    color: white;
}

.tech-content h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--neo-black);
}

.tech-content p {
    font-size: 15px;
    color: var(--slate-600);
    line-height: 1.5;
}

/* Founder Card (V2 - Floating Premium) */
.founder-card {
    background: #f8fafc;
    /* Soft definition against white bg */
    border: none;
    border-radius: 32px;
    /* Apple-like smoothness */
    padding: 48px;
    position: relative;
    box-shadow: 0 20px 40px -4px rgba(0, 0, 0, 0.04);
}

.founder-card:hover {
    box-shadow: 0 20px 40px -4px rgba(0, 0, 0, 0.08);
}

.quote-icon {
    margin-bottom: 32px;
    color: #94a3b8;
    /* Lighter quote icon */
}

.founder-quote {
    font-family: 'Georgia', serif;
    /* Editorial Serif */
    font-size: 22px;
    font-weight: 400;
    /* Regular weight behaves better for Georgia */
    color: #1e293b;
    line-height: 1.6;
    margin-bottom: 40px;
    font-style: italic;
    letter-spacing: normal;
}

.founder-profile {
    display: flex;
    align-items: center;
    gap: 16px;
}

.founder-avatar {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-family: var(--font-sans);
}

.founder-info {
    display: flex;
    flex-direction: column;
    font-family: var(--font-sans);
}

.founder-name {
    font-size: 16px;
    color: #000000;
    font-weight: 700;
}

.founder-role {
    font-size: 13px;
    color: #334155;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* ============================================
   Pricing / Beta Section
   ============================================ */
.pricing-section {
    background: white;
    text-align: center;
}

.pricing-container {
    max-width: 800px;
}

.beta-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
}

.benefit-item {
    background: #F0FDF4;
    color: #15803d;
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
}

.beta-form-v2 {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto 16px;
}

.beta-form-v2 input {
    flex: 1;
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid #CBD5E1;
    font-size: 16px;
}

.beta-form-v2 .btn-primary {
    white-space: nowrap;
}

.micro-copy {
    font-size: 13px;
    color: var(--slate-500);
}

@media (max-width: 640px) {
    .beta-form-v2 {
        flex-direction: column;
    }

    .beta-form-v2 .btn-primary {
        width: 100%;
    }
}

.footer-full {
    background: #F9FBFD;
    color: var(--slate-600);
    padding: 80px 24px 48px;
    border-top: 1px solid #e5e7eb;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
}

.footer-heading {
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 8px;
    padding: 0;
    margin: 0;
    font-size: 0.95rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--slate-600);
    transition: color 0.2s ease;
}

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

.footer-bottom {
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 0.95rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    font-weight: 800;
    color: var(--slate-900);
    letter-spacing: -0.01em;
}

.footer-social {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-social a {
    color: #94a3b8;
    transition: color 0.2s ease;
}

.footer-social a:hover {
    color: var(--primary-red);
}

/* ============================================
   Utilities (New)
   ============================================ */
.bg-dark-section {
    background-color: #0a0a0a !important;
    color: white !important;
}

.text-white {
    color: white !important;
}

.text-slate-light {
    color: #94a3b8 !important;
}

.input-dark-transparent {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.border-red-500 {
    border-color: #ff0000;
}

.bg-red-500 {
    background: #ff0000;
}