:root {
    /* Brand Config v3.1.0 - Aligned with ArceneauxPaul */
    --bg-dark: #030303;
    /* arceneauxpaul background */
    --bg-surface: #141414;
    /* arceneauxpaul card */
    --accent-lime: #A4F63D;
    /* Shared accent */
    --text-main: #ededed;
    /* arceneauxpaul text-primary */
    --text-muted: #a1a1a1;
    /* arceneauxpaul text-secondary */

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --spacing-container: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    /* Moody mist texture with Green Tint from ArceneauxPaul */
    background:
        radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(164, 246, 61, 0.06) 0%, transparent 40%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E"),
        linear-gradient(to bottom, #080808 0%, #000000 100%);
    background-size: cover;
    background-attachment: fixed;

    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Ambient Effects */
.noise-overlay {
    /* Kept for additional noise if needed, or we can remove since body has it now.
       ArceneauxPaul code had noise in body background AND a separate noise filter svg data url. 
       Let's just hide this one if body handles it to avoid double noise. 
       Actually, I will keep it but make it transparent or just remove it to be clean. */
    display: none;
}

.ambient-glow {
    /* Removed per "restrained" strategy */
    display: none;
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    padding: 1rem 2rem;
    /* Simpler glass nav */
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    background: transparent !important;
    border: none;
    box-shadow: none;
}

.links {
    display: flex;
    gap: 2rem;
}

.links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.links a:hover {
    color: var(--text-main);
}

.cta-small {
    background: var(--text-main);
    color: var(--bg-dark);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
    display: inline-block;
    text-decoration: none;
}

.cta-small:hover {
    transform: scale(1.05);
    background: var(--accent-lime);
}

/* Hero Section */
.hero {
    /* Changed from min-height: 100vh to auto/controlled height to prevent portrait stretching */
    min-height: auto;
    /* padding-top: 8rem; */
    /* padding-bottom: 4rem; */
    padding: 8rem 5% 6rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: relative;
    justify-content: center;
    position: relative;
    gap: 2rem;
    /* Reduced from 4rem */
    /* max-width: var(--spacing-container); --> Removed for full width request */
    margin: 0 auto;
    overflow: hidden;
    /* Prevent bleed */
}

/* Ensure content and visual take up defined space */

.hero-content {
    width: 100%;
    max-width: 600px;
    z-index: 10;
    flex: 0 1 auto;
    /* Don't grow, let justify-content center handle position */
    /* padding-left: 5%; REMOVED to allow true centering */
}

/* ... existing styles ... */

.hero-visual {
    flex: 0 1 auto;
    /* Don't grow, let justify-content center work */
    display: flex;
    justify-content: center;
}

/* Hero Visual Updates: Landscape Enforcement */
.panther-container {
    position: relative;
    width: 100%;
    /* 700px * 0.76 = ~532px */
    max-width: 532px;
    /* 400px * 0.76 = ~304px */
    height: 304px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* Ensure image doesn't bleed */
    border-radius: 20px;
    /* Optional: adds a nice touch for the contained image */
}

.panther-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Landscape cover */
    object-position: center;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.9;
    mix-blend-mode: screen;
}

.overlay-card {
    position: absolute;
    bottom: -20px;
    /* Overlap slightly */
    right: 20px;
    z-index: 2;
    padding: 1.5rem;
    width: 320px;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

.float-anim {
    /* Subtle float, ensure it doesn't cause layout overflow */
    animation: float 6s ease-in-out infinite;
}

/* Brands Carousel */
.brand-carousel {
    padding: 3rem 0;
    width: 100%;
    margin-bottom: 2rem;
    overflow: hidden;
    position: relative;
    background: transparent;
    /* Seamless with body */
}

.carousel-title {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.carousel-track-container {
    width: 100%;
    overflow: hidden;
    /* Mask fade edges for smooth entrance/exit */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.carousel-track {
    display: flex;
    align-items: center;
    gap: 12rem;
    /* Significantly increased spacing for lower density */
    width: max-content;
    animation: scroll 40s linear infinite;
    /* Smooth, slow loop */
}

.brand-logo {
    height: 130px;
    /* Increased by ~50% from 85px */
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    /* Restrained look */
    filter: grayscale(100%);
    /* Optional: removes brand color noise */
    transition: opacity 0.3s ease;
}

.brand-logo:hover {
    opacity: 1;
    /* Subtle feedback */
}

@media (max-width: 768px) {
    .carousel-track {
        gap: 4rem;
        /* Reduced spacing for mobile */
    }

    .brand-logo {
        height: 60px;
        /* Scaled down for mobile fit */
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-25%);
        /* Move 1/4 of track (since 4 duplicate sets) */
    }
}

/* Get Started Section */
.get-started {
    padding: 6rem 10%;
    border-top: 1px solid var(--glass-border);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    counter-reset: steps;
}

.step-card {
    background: var(--bg-surface);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    position: relative;
}

.step-card::before {
    counter-increment: steps;
    content: "0" counter(steps);
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--accent-lime);
    opacity: 0.3;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Updated Testimonials - Grid Layout */
.testimonials {
    padding: 6rem 10%;
    border-top: 1px solid var(--glass-border);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.quote-card {
    background: var(--bg-surface);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote-text {
    font-family: var(--font-body);
    font-size: 1.25rem;
    /* Slightly reduced for longer quotes */
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.author-name,
.author-role {
    font-size: 1.5rem;
    /* Increased ~50% from default */
    display: inline-block;
}

.author-name {
    margin-right: 0.3rem;
    /* Spacing between name and role */
}

.author strong {
    display: block;
    color: var(--accent-lime);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.author span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* FAQ Section */
.faq {
    padding: 6rem 10%;
    border-top: 1px solid var(--glass-border);
    background: var(--bg-dark);
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.faq-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--accent-lime);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* LinkedIn Icon */
.linkedin-link {
    display: inline-flex;
    align-items: center;
    margin-left: 10px;
    color: var(--text-muted);
    transition: color 0.3s ease;
    vertical-align: middle;
}

.linkedin-link:hover {
    color: #0A66C2;
    /* LinkedIn Blue */
}

.linkedin-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Logo Text */
.logo-text {
    color: var(--accent-lime);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    margin-left: 0.5rem;
    align-self: center;
}

/* Hide Insights */
.case-studies {
    display: none !important;
}

h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(90deg, #FFFFFF, #999999);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

/* Add custom underline/highlight */
.gradient-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--accent-lime);
    opacity: 0.2;
    z-index: -1;
    transform: skewX(-20deg);
}

.hero-sub {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.cta-primary {
    background: var(--accent-lime);
    color: var(--bg-dark);
    padding: 1rem 2rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(204, 255, 0, 0.2);
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 2rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-main);
    display: inline-block;
    position: relative;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 30px rgba(204, 255, 0, 0.4);
}

.cta-secondary {
    background: transparent;
    color: var(--text-main);
    padding: 1rem 2rem;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: var(--glass-bg);
    border-color: var(--text-main);
}

/* Hero Visual */
.glass-card {
    width: 400px;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.float-anim {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.card-header {
    display: flex;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red {
    background: #FF5F56;
}

.yellow {
    background: #FFBD2E;
}

.green {
    background: #27C93F;
}

.code-preview {
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    color: #dedede;
}

.line {
    display: block;
    margin-bottom: 4px;
}

.indent {
    margin-left: 1.5rem;
}

.str {
    color: #A5FF90;
}

.num {
    color: #FF9F43;
}

/* Trust Signals Bar */
.trust-bar {
    padding: 5rem 10%;
    /* Increased from 2rem */
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-surface));
}

.trust-bar p {
    font-size: 0.875rem;
    /* Increased by ~15% from 0.75rem */
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 3rem;
    /* Increased from 2rem */
    opacity: 0.6;
}

.founder-info p {
    border-left: none;
    padding-left: 0;
    border-top: 2px solid var(--accent-lime);
    padding-top: 1.5rem;
}


.logos-grid {
    display: flex;
    justify-content: center;
    gap: 6rem;
    /* Increased from 4rem */
    flex-wrap: wrap;
    align-items: center;
}

.trust-logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-muted);
    opacity: 0.3;
    transition: all 0.3s ease;
    cursor: default;
}

.trust-logo:hover {
    opacity: 0.8;
    color: var(--text-main);
}

/* Features Bento Grid - "Components" */
.features {
    padding: 4rem 10%;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 1.5rem;
}

.bento-item {
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.03);
    /* Barely visible initial border */
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1.0);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
}

/* Inner Light Effect */
.bento-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.04), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.bento-item:hover {
    transform: translateY(-5px);
    border-color: rgba(164, 246, 61, 0.3);
    /* Subtle Lime rim */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.bento-item:hover::before {
    opacity: 1;
}

.bento-item h3 {
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.02em;
    z-index: 2;
    position: relative;
}

.bento-item p {
    color: var(--text-muted);
    font-size: 1rem;
    z-index: 2;
    position: relative;
    max-width: 90%;
}

.bento-icon {
    position: relative;
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-top: auto;
    right: auto;
    bottom: auto;
    opacity: 0.8;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: drop-shadow(0 0 20px rgba(164, 246, 61, 0.1));
    z-index: 1;
}

.bento-item:hover .bento-icon {
    transform: translateY(-10px) scale(1.05);
    opacity: 1;
    filter: drop-shadow(0 0 30px rgba(164, 246, 61, 0.3));
}

.large {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--bg-surface) 0%, #0f1214 100%);
    display: flex;
    flex-direction: column;
}

.large .bento-icon {
    height: 300px;
    margin-top: -2rem;
    margin-bottom: -4rem;
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

.highlight {
    /* Subtle neon pulse instead of full background */
    background: var(--bg-surface);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, var(--accent-lime), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
}

/* Responsiveness */
@media (max-width: 900px) {
    /* .glass-nav { display: none; } REMOVED - Using hamburger now */


    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 6rem;
    }

    h1 {
        font-size: 3rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .large {
        grid-column: span 1;
    }
}

/* removed duplicate panther-container */

/* removed duplicate panther-img */

.overlay-card {
    position: relative;
    z-index: 2;
    /* Floats above the panther */
    backdrop-filter: blur(10px);
    /* Less blur to see panther through it? */
    background: rgba(20, 20, 20, 0.4);

    /* Darker glass */
}


/* Case Studies */
.case-studies {
    padding: 6rem 10%;
    border-top: 1px solid var(--glass-border);
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.case-card {
    background: var(--bg-surface);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.case-card:hover {
    border-color: var(--accent-lime);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.case-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--glass-border);
    transition: transform 0.5s ease;
}

.case-card:hover .case-img {
    transform: scale(1.05);
}

.case-content {
    padding: 2rem;
}

.case-meta {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--accent-lime);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.case-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.case-card p {
    color: var(--text-muted);
}

/* Philosophy Section */
.philosophy {
    padding: 8rem 10%;
    background: radial-gradient(circle at 50% 50%, #111 0%, var(--bg-dark) 70%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.philosophy h2 {
    font-size: 3.5rem;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(180deg, #FFF 0%, #666 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.philosophy p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Founder Section */
.founder {
    padding: 12.5rem 10%;
    border-top: 1px solid var(--glass-border);
    background: linear-gradient(to right, var(--bg-dark), #0d0d0f);
}

.founder-container {
    display: flex;
    align-items: center;
    gap: 8rem;
    max-width: 1400px;
    margin: 0 auto;
}

.founder-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.founder-avatar {
    width: 375px;
    height: 375px;
    border-radius: 50%;
    background: linear-gradient(135deg, #333, #111);
    border: 1px solid var(--accent-lime);
    box-shadow: 0 0 30px rgba(164, 246, 61, 0.15);
    position: relative;
    overflow: hidden;
}

/* Pseudo-image placeholder */
.founder-avatar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/founder_beard_direct_1768963658120.png') no-repeat center/cover;
    opacity: 1;
}

.founder-info {
    flex: 2;
}

.label-small {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--accent-lime);
    margin-bottom: 1rem;
    font-weight: 700;
}

.founder-info h3 {
    font-size: 3rem;
    /* Kept large */
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.founder-info p {
    font-size: 1.25rem;
    /* Kept large */
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 2rem;
    border-left: 2px solid var(--accent-lime);
    padding-left: 1.5rem;
}

.founder-sig strong {
    display: block;
    color: var(--text-main);
    font-size: 1.1rem;
}

.founder-sig span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .founder-container {
        flex-direction: column;
        text-align: center;
    }

    .founder-info p {
        border-left: none;
        padding-left: 0;
    }
}

/* Testimonials */
.testimonials {
    padding: 6rem 10%;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

/* Old quote styles removed or adapted above */

.author-name {
    display: block;
    color: var(--accent-lime);
    font-size: 1.1rem;
}

.author-role {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Footer */
.audit-footer {
    padding: 8rem 10% 4rem;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0c0c0c 100%);
    border-top: 1px solid var(--glass-border);
}

.audit-footer h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.audit-footer p {
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.cta-primary.big {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
}

/* removed duplicate panther-container */

.footer-links {
    margin-top: 6rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}



/* Hamburger Menu (Desktop: Hidden) */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-main);
    transition: all 0.3s ease-in-out;
}

/* Mobile (max-width: 768px) */
@media (max-width: 900px) {

    /* Enable Nav */
    .glass-nav {
        /* display: none; REMOVED */
        width: 90%;
        padding: 0.8rem 1.5rem;
        /* Keep it accessible */
    }

    /* Show Hamburger */
    .hamburger {
        display: flex;
        z-index: 101;
    }

    /* Mobile Drawer */
    .links {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
        background-color: rgba(20, 20, 20, 0.95);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-radius: 0 0 20px 20px;
        border: 1px solid var(--glass-border);
        border-top: none;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        gap: 1.5rem;

        /* Animation State: Hidden */
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease-in-out;
        z-index: 100;
        margin-top: 10px;
        /* Slight gap from bar */
    }

    .links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    /* Hamburger Animation */
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }



    .logo-img {
        height: 32px;
    }


    .hero h1 {
        font-size: 3rem;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        /* 1 column for mobile */
    }

    .large {
        grid-column: span 1;
    }

    /* Founder Mobile Adjustments */
    .founder {
        padding: 6rem 5%;
    }

    .founder-avatar {
        width: 250px;
        height: 250px;
    }

    .founder-info h3 {
        font-size: 2rem;
    }

    .founder-info p {
        font-size: 1.1rem;
    }

    .trust-bar {
        padding: 2rem 5%;
    }

    .logos-grid {
        gap: 2rem;
    }

    .trust-logo {
        font-size: 1.2rem;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .glass-card {
        width: 100%;
        padding: 1rem;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }

    .panther-container {
        width: 100%;
        height: 250px;
        /* Smaller constrained height for mobile */
    }

    .panther-img {
        object-position: top center;
    }
}