:root {
    --bg-dark: #000000;
    --bg-darker: #050505;
    --bg-deep: #000000;
    --primary: #FF00FF; /* Pure Neon Magenta */
    --secondary: #00C3FF; /* Bright Neon Cyan */
    --accent: #A89B8C; /* Gold/Tan text color */
    --text-main: #FFFFFF;
    --text-muted: #888888;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --bg-light: #111111;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Oswald', sans-serif;
    cursor: none;
}

/* Body / description text stays readable with Inter */
p, li, span:not(.section-kicker), .team-role {
    font-family: 'Inter', sans-serif;
}

html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Hero Canvas - Three.js neural network sphere */
#hero-canvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.85;
}

/* ─── Squiggly Section Connector & Floating Emojis ────────────────────────── */

/* Container that runs alongside the main content below the hero */
.section-connector {
    position: absolute;
    top: 100vh; /* starts right after hero */
    left: 0;
    width: 100%;
    height: calc(100% - 100vh);
    pointer-events: none;
    z-index: 1;
    overflow: visible;
}

/* The SVG squiggly dashed line */
.squiggle-line {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    filter: drop-shadow(0 0 5px var(--secondary));
}

/* Diamond ✦ separators between sections */
.section-node {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 0;
    position: relative;
    z-index: 2;
}
.section-node::before,
.section-node::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #333, transparent);
    max-width: 40%;
}
.section-node span {
    margin: 0 1.5rem;
    font-size: 1.2rem;
    animation: nodePulse 3s ease-in-out infinite;
}
.section-node span[data-color="magenta"] {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary), 0 0 25px var(--primary);
}
.section-node span[data-color="cyan"] {
    color: var(--secondary);
    text-shadow: 0 0 10px var(--secondary), 0 0 25px var(--secondary);
}
@keyframes nodePulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50%       { transform: scale(1.4); opacity: 1; }
}

/* Floating illustration badges */
.float-illustration {
    position: absolute;
    width: 44px;
    height: 44px;
    animation: illustrationFloat 6s ease-in-out infinite;
    user-select: none;
    pointer-events: none;
}
.float-illustration svg {
    width: 100%;
    height: 100%;
}
.float-illustration[data-color="magenta"] svg {
    filter: drop-shadow(0 0 8px var(--primary));
    animation-duration: 7s;
}
.float-illustration[data-color="cyan"] svg {
    filter: drop-shadow(0 0 8px var(--secondary));
    animation-duration: 8.5s;
}
/* Stagger each badge */
.float-illustration:nth-child(2) { animation-delay: -1s; }
.float-illustration:nth-child(3) { animation-delay: -2.5s; }
.float-illustration:nth-child(4) { animation-delay: -4s; }
.float-illustration:nth-child(5) { animation-delay: -1.5s; }
.float-illustration:nth-child(6) { animation-delay: -3s; }
.float-illustration:nth-child(7) { animation-delay: -0.5s; }

@keyframes illustrationFloat {
    0%, 100% { transform: translateY(0px) rotate(-5deg); }
    33%       { transform: translateY(-14px) rotate(5deg); }
    66%       { transform: translateY(8px) rotate(-3deg); }
}

/* ─── Bento Grid Connectors ─────────────────────────────────────────────────── */
.bento-grid {
    position: relative;
}
.bento-connectors {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
}
.bento-connectors path {
    stroke: var(--primary);
    stroke-width: 4;
    fill: none;
    stroke-dasharray: 8 6;
    opacity: 1;
    filter: drop-shadow(0 0 8px var(--primary));
}

/* Mobile squiggly line – show it, just scale down */
@media (max-width: 768px) {
    .section-connector {
        display: block;
        opacity: 0.6;
    }
    .float-illustration {
        width: 28px;
        height: 28px;
    }
}

/* Layout wrappers */
.app-container, #smooth-wrapper, #smooth-content {
    position: relative;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Oswald', sans-serif;
    line-height: 1.1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.text-gradient {
    /* Changing to solid pink to match the logo vibe instead of a soft gradient */
    color: var(--primary);
    text-shadow: 2px 2px 0px rgba(255, 16, 240, 0.5);
    display: inline-block;
}

/* Magnetic Cursor */
.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 0; /* Sharp blocky cursor */
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--text-main);
    border-radius: 0;
    transition: width 0.1s ease-out, height 0.1s ease-out, border-color 0.1s ease-out;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #000;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.preloader-bg-glow {
    position: absolute;
    width: 100%; height: 20%;
    background: var(--secondary);
    opacity: 0.2;
    transform: skewY(-5deg);
}

.preloader-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.preloader-logo {
    font-size: 4rem;
    letter-spacing: 0.5rem;
    margin-bottom: 2rem;
    color: transparent;
    -webkit-text-stroke: 2px #fff;
    opacity: 0;
    position: relative;
}
.preloader-logo::after {
    content: 'MERGRR';
    position: absolute;
    top: 4px; left: 4px;
    color: var(--primary);
    -webkit-text-stroke: 0;
    z-index: -1;
}

.preloader-bar-container {
    width: 300px;
    height: 4px;
    background: #222;
    overflow: hidden;
}

.preloader-bar {
    width: 0%;
    height: 100%;
    background: var(--primary);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    top: 0; width: 100%;
    z-index: 100;
    background: #000;
    border-bottom: 1px solid #333;
}

.nav-logo {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    position: relative;
    display: inline-block;
}

.nav-logo::before {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    color: var(--primary);
    opacity: 0;
    z-index: -1;
}

.nav-logo:hover::before {
    opacity: 1;
    animation: professional-glitch 0.4s cubic-bezier(.25, .46, .45, .94) both infinite;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-btn {
    background: none; border: none;
    color: var(--text-main);
    font-size: 0.95rem; font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-btn.btn-primary {
    padding: 0.6rem 1.2rem;
    border-radius: 0;
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
    box-shadow: 4px 4px 0px var(--secondary);
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Oswald', sans-serif;
    transition: all 0.1s linear;
    position: relative;
}

.btn-primary {
    background: var(--primary);
    border: 1px solid var(--primary);
    color: #fff;
    box-shadow: 4px 4px 0px var(--secondary);
}

.btn-primary:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px var(--secondary);
}

.btn-outline {
    background: #000;
    border: 1px solid #fff;
    color: #fff;
    box-shadow: 4px 4px 0px #333;
}

.btn-outline:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #333;
    border-color: var(--primary);
    color: var(--primary);
}

/* Insane Hero Section */
.deep-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
    background: #000;
}

/* Replacing the soft glow with a sharp skewed box like the logo background */
.hero-bg-glow {
    display: none; /* Three.js canvas handles the background now */
}

.hero-fog {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    /* Ensure text stays sharp against the network background */
    text-shadow: 0 0 40px rgba(0,0,0,0.8);
}

.hero-headline {
    font-size: clamp(4rem, 8vw, 7rem);
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: transparent;
    -webkit-text-stroke: 1px #fff;
}

.hero-subheadline {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--accent);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 500;
}

.hero-ctas {
    display: flex; gap: 1.5rem; justify-content: center;
}

/* Floating UI Elements */
.floating-ui-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 5; pointer-events: none;
}

.float-card {
    position: absolute;
    background: #000;
    border: 1px solid #333;
    padding: 1.5rem;
    box-shadow: 8px 8px 0px #222;
    border-radius: 0;
}

.card-1 { top: 20%; left: 10%; transform: rotate(-5deg); }
.card-2 { bottom: 30%; right: 15%; transform: rotate(8deg); display: flex; align-items: center; gap: 10px; }
.card-3 { top: 30%; right: 10%; transform: rotate(3deg); }

.fc-avatar { width: 40px; height: 40px; border-radius: 0; background: var(--primary); margin-bottom: 10px; }
.fc-avatar.alt { background: var(--secondary); }
.fc-lines { display: flex; flex-direction: column; gap: 8px; }
.fc-line { width: 80px; height: 6px; background: #333; border-radius: 0; }
.fc-line.short { width: 40px; }
.fc-icon { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; }
.fc-icon svg { width: 100%; height: 100%; }
.fc-text { font-weight: 600; font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 1px; }

/* Social Proof Marquee */
.social-ticker {
    padding: 1.5rem 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    background: #050505;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 10;
}
.ticker-content { display: inline-block; animation: ticker 20s linear infinite; }
.ticker-content span { font-family: 'Oswald', sans-serif; font-size: 2.5rem; font-weight: 700; padding-right: 2rem; color: #fff; -webkit-text-stroke: 1px #333; letter-spacing: 2px; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Shared Section Styles */
.gs-section { padding: 8rem 5%; position: relative; background: #000; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-kicker { color: var(--accent); font-weight: 500; letter-spacing: 4px; font-size: 1rem; margin-bottom: 1rem; text-transform: uppercase; }
.section-header h2 { font-size: clamp(2.5rem, 4vw, 4rem); max-width: 800px; margin: 0 auto; letter-spacing: 1px; }

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-card {
    background: #000;
    border: 1px solid #333;
    border-radius: 0;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.1s linear;
    transform-style: preserve-3d;
}

.bento-card.span-2 { grid-column: span 2; }

/* Sharp Hover state for Bento Cards */
.bento-card:hover, .glitch-hover-subtle:hover {
    border-color: var(--primary);
    box-shadow: 8px 8px 0px var(--primary);
    transform: translate(-4px, -4px) !important;
}

.card-glow { display: none; /* Removed soft glows */ }

.bento-card h3 { font-size: 1.8rem; margin-bottom: 0.5rem; letter-spacing: 1px; color: #fff; }
.bento-card p { color: var(--text-muted); font-size: 1rem; font-family: 'Inter', sans-serif; text-transform: none; font-weight: 400; }

/* Process Timeline */
.process-timeline {
    padding-top: 2rem;
}
.process-timeline .section-header {
    margin-bottom: 1.5rem;
}


.timeline-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 1rem 0;
}

.timeline-step {
    position: relative;
    display: flex;
    justify-content: center;
    padding-bottom: 4rem;
}

.timeline-step .step-content {
    width: 45%;
    padding: 2.5rem;
    background: #000;
    border: 1px solid #333;
    position: relative;
    z-index: 2;
    transition: all 0.2s ease;
}

.timeline-step:nth-child(odd) {
    justify-content: flex-start;
}

.timeline-step:nth-child(even) {
    justify-content: flex-end;
}

/* The Curvy Line connecting the boxes */
.timeline-step::before {
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    border: 4px dashed var(--secondary);
    top: 50%;
    z-index: 1;
    opacity: 0.8;
}

/* Odd steps curve to the right */
.timeline-step:nth-child(odd)::before {
    left: 50%;
    border-left: none;
    border-top: none;
}

/* Even steps curve to the left */
.timeline-step:nth-child(even)::before {
    right: 50%;
    border-right: none;
    border-top: none;
}

/* Remove the line connecting from the last step */
.timeline-step:last-child::before {
    display: none;
}

.step-title {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.step-content p {
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .timeline-step::before { display: none; }
    .timeline-step { justify-content: center !important; padding-bottom: 2rem; }
    .timeline-step .step-content { width: 100%; }
}

/* About Team */
.team-grid {
    display: flex; justify-content: center; gap: 2rem;
    max-width: 1000px; margin: 0 auto; flex-wrap: wrap;
    position: relative;
}
.team-grid::before {
    content: '';
    position: absolute;
    top: 50%; left: 10%; right: 10%;
    height: 2px;
    border-top: 2px dashed var(--primary);
    opacity: 0.4;
    z-index: 0;
}
.team-card {
    flex: 0 1 220px;
    min-width: 180px;
    max-width: 240px;
    text-decoration: none; color: var(--text-main);
    display: flex; flex-direction: column; align-items: center; text-align: center;
    border: 1px solid #333;
    padding: 1rem;
    background: #000;
    transition: all 0.1s linear;
    position: relative;
    z-index: 1;
}

.team-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #111;
    border: 1px solid #333;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.team-card:hover { 
    border-color: var(--secondary); 
    box-shadow: 6px 6px 0px var(--secondary); 
    transform: translate(-3px, -3px); 
}
.team-card:hover .team-photo { border-color: var(--secondary); }
.team-card:hover .team-photo img { filter: grayscale(0) contrast(120%) !important; }

.team-name { font-size: 1.5rem; margin-bottom: 0.2rem; letter-spacing: 1px; }
.team-role { color: var(--primary); font-size: 0.9rem; font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 2px; }

/* Cinematic Reveal (ORIGINAL LOGO STYLES RESTORED) */
.cinematic-reveal {
    min-height: 100vh;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: #000;
}
.ambient-smoke {
    display: none; /* No soft smoke */
}
.reveal-subtitle {
    font-size: 1rem; color: var(--accent); text-transform: uppercase; letter-spacing: 4px; margin-bottom: 1rem;
    position: relative; z-index: 2; font-family: 'Oswald', sans-serif;
}
.logo-container { position: relative; z-index: 2; }

/* --- THE EXACT ORIGINAL LOGO CSS --- */
.logo {
    font-family: 'Oswald', sans-serif;
    font-size: 8rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 2px var(--text-main);
    letter-spacing: -2px;
    text-transform: uppercase;
    line-height: 1;
    position: relative;
    display: inline-block;
    transform: skewX(-5deg);
    padding: 0 20px;
    z-index: 2;
}
.logo::before {
    content: attr(data-text);
    position: absolute;
    top: 4px;
    left: -4px;
    width: 100%;
    height: 100%;
    color: var(--primary);
    -webkit-text-stroke: 0;
    opacity: 0; /* Highlight only on hover */
    z-index: -1;
}
.logo::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--secondary);
    -webkit-text-stroke: 0;
    opacity: 0;
}
.highlight-effect { position: relative; }
.highlight-effect::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -5%;
    width: 110%;
    height: 40%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: -1;
    transform: translateY(-50%) skewX(-15deg);
    opacity: 0.5;
    transition: all 0.3s;
}

/* Add extra pink highlight on hover */
.logo.glitch-hover:hover {
    text-shadow: 0 0 20px var(--primary);
}

/* Animation strictly ONLY on hover */
.logo.glitch-hover:hover::before {
    animation: professional-glitch 0.4s cubic-bezier(.25, .46, .45, .94) both infinite;
}
@keyframes professional-glitch {
    0% { transform: translate(4px, -4px) } /* Start from the static offset position */
    20% { transform: translate(2px, -2px); color: var(--secondary); }
    40% { transform: translate(6px, -6px) }
    60% { transform: translate(0px, 0px); color: var(--primary); }
    80% { transform: translate(5px, -5px) }
    100% { transform: translate(4px, -4px) }
}
/* --------------------------------- */

/* Footer */
.site-footer { text-align: center; border-top: 1px solid #333; background: #000; }
.footer-cta h2 { font-size: clamp(3rem, 5vw, 5rem); margin-bottom: 2rem; color: #fff; }
.footer-btns { display: flex; gap: 1rem; justify-content: center; }
.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #111;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}
.footer-email {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    text-decoration: none;
    position: relative;
    transition: all 0.2s ease;
}
.footer-email::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 100%; height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.footer-email:hover { text-shadow: 0 0 20px var(--primary), 0 0 40px var(--primary); }
.footer-email:hover::after { transform: scaleX(1); }
.footer-copy {
    color: #333;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
}

@media (max-width: 900px) {
    .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .bento-card.span-2 { grid-column: span 1; }
    .logo { font-size: 4rem; }
}


/* Forms Overlay */
.form-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 100;
}

.form-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.form-container {
    background: #111;
    border: 1px solid #333;
    border-radius: 0;
    padding: 3.5rem;
    width: 90%;
    max-width: 600px;
    transform: translateY(40px) scale(0.98);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: none;
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 15px 15px 0px var(--primary);
}

.form-container.active {
    display: block;
    transform: translateY(0) scale(1);
    opacity: 1;
}

.form-title {
    font-family: 'Oswald', sans-serif;
    color: #fff;
    margin-bottom: 2rem;
    font-size: 3rem;
    text-transform: uppercase;
    transform: skewX(-5deg);
    line-height: 1;
}

#business-form-container .form-title, #meeting-form-container .form-title {
    color: #fff;
}

.close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-muted);
}

.close-btn:hover {
    color: var(--primary);
}

/* Form Inputs */
.input-row {
    display: flex;
    gap: 1.5rem;
}

.input-row .input-group {
    flex: 1;
}

.input-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.input-group label {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: #fff;
    text-transform: uppercase;
}

.input-group input,
.input-group textarea,
.input-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #333;
    background: #000;
    color: #fff;
    font-size: 1rem;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
}

/* Text inputs get uppercase treatment */
.input-group input[type="text"] {
    text-transform: uppercase;
}

/* Datetime, email, url, number — keep natural casing so they work correctly */
.input-group input[type="datetime-local"],
.input-group input[type="date"],
.input-group input[type="time"],
.input-group input[type="email"],
.input-group input[type="url"],
.input-group input[type="number"] {
    font-family: 'Inter', sans-serif;
    text-transform: none;
    letter-spacing: 0;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: #555;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 4px 4px 0px var(--secondary);
}

/* iOS zoom prevention — keep font-size >= 16px on mobile inputs */
@media (max-width: 768px) {
    .input-group input,
    .input-group textarea,
    .input-group select {
        font-size: 16px;
        font-family: 'Oswald', sans-serif;
    }
    .input-group input[type="datetime-local"],
    .input-group input[type="date"],
    .input-group input[type="email"],
    .input-group input[type="url"] {
        font-family: 'Inter', sans-serif;
    }
}

.submit-btn {
    width: 100%;
    margin-top: 1rem;
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
    box-shadow: 4px 4px 0px var(--secondary);
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
}

.submit-btn:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px var(--secondary);
}

#business-form-container .submit-btn {
    background: var(--secondary);
    border-color: var(--secondary);
    box-shadow: 4px 4px 0px var(--primary);
}
#business-form-container .submit-btn:hover {
    box-shadow: 2px 2px 0px var(--primary);
}

#meeting-form-container .submit-btn {
    background: #fff;
    color: #000;
    border-color: #fff;
    box-shadow: 4px 4px 0px var(--primary);
}
#meeting-form-container .submit-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 2px 2px 0px var(--secondary);
}

/* Toast */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #111;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transform: translateX(120%);
    transition: transform 0.2s linear;
    z-index: 1000;
    border: 1px solid var(--primary);
    box-shadow: 8px 8px 0px var(--secondary);
}

.toast.show {
    transform: translateX(0);
}

/* Hide scrollbar for forms */
.form-container::-webkit-scrollbar {
    width: 8px;
}
.form-container::-webkit-scrollbar-track {
    background: #111;
}
.form-container::-webkit-scrollbar-thumb {
    background: #333;
}

/* ─── RESPONSIVE ───────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
    .about-container { grid-template-columns: 1fr; gap: 2rem; }
    .bento-grid { grid-template-columns: 1fr 1fr; }
    .bento-card.span-2 { grid-column: span 2; }
}

@media (max-width: 768px) {
    /* Hide custom cursor — not useful on touch */
    .cursor-dot, .cursor-outline { display: none; }

    /* Navbar */
    .navbar {
        padding: 0.8rem 4%;
        flex-wrap: nowrap;
        gap: 0.5rem;
        justify-content: space-between;
    }
    .nav-links {
        gap: 0.4rem;
        flex-shrink: 0;
    }
    .nav-btn {
        font-family: 'Oswald', sans-serif;
        font-size: 0.7rem;
        padding: 0.5rem 0.7rem;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }
    .nav-logo { font-size: 1.3rem; flex-shrink: 0; }

    /* Hero */
    .deep-hero { padding-top: 90px; padding-bottom: 3rem; }
    .hero-headline { font-size: clamp(2.8rem, 10vw, 4.5rem); }
    .hero-subheadline { font-size: 0.85rem; letter-spacing: 2px; }
    .hero-ctas { flex-direction: column; align-items: center; gap: 1rem; }
    .hero-ctas .btn { width: 80%; text-align: center; }

    /* Hide Three.js sphere on mobile — save GPU/CPU */
    #hero-canvas { display: none; }

    /* Floating cards — hide on mobile for clean look */
    .floating-ui-container { display: none; }

    /* General sections */
    section { padding: 4rem 5%; }
    .section-header { margin-bottom: 3rem; }
    .section-title { font-size: clamp(2.5rem, 8vw, 3.5rem); }
    .section-kicker { font-size: 0.7rem; letter-spacing: 3px; }

    /* Bento Grid */
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .bento-card.span-2 { grid-column: span 1; }
    .bento-card { padding: 1.5rem; }
    .bento-headline { font-size: 1.4rem; }

    /* Timeline */
    .timeline-step { justify-content: center !important; padding-bottom: 2rem; }
    .timeline-step .step-content { width: 100%; }
    .timeline-step::before { display: none; }

    /* Team grid */
    .team-grid { flex-direction: column; align-items: center; }
    .team-card { min-width: unset; max-width: 320px; width: 80%; flex: none; }

    /* Logo */
    .logo { font-size: 4rem; }

    /* Footer */
    .footer-cta h2 { font-size: 2.5rem; }
    .footer-btns { flex-direction: column; align-items: center; gap: 1rem; }
    .footer-btns .btn { width: 80%; text-align: center; }

    /* Forms */
    .form-overlay {
        align-items: flex-end; /* sheet slides up from bottom on mobile */
    }
    .form-container {
        padding: 2rem 1.2rem 2.5rem;
        width: 100%;
        max-width: 100%;
        max-height: 92vh;
        border-radius: 0;
        box-shadow: 0 -6px 0px var(--primary);
    }
    .input-row { flex-direction: column; gap: 0; }
    .form-title { font-size: 1.8rem; margin-bottom: 1.5rem; }
    .input-group label { font-size: 0.8rem; letter-spacing: 1.5px; }
    .input-group { margin-bottom: 1.2rem; }
    .close-btn { font-size: 1.2rem; top: 1rem; right: 1rem; padding: 0.5rem; }
    .submit-btn { padding: 1rem; font-size: 0.95rem; }

    /* Toast */
    .toast { right: 1rem; left: 1rem; text-align: center; font-size: 0.9rem; }
}

@media (max-width: 480px) {
    .hero-headline { font-size: clamp(2.2rem, 12vw, 3.5rem); }
    .logo { font-size: 3rem; }
    .team-card { width: 95%; }
    .section-title { font-size: 2.2rem; }
    .nav-links { gap: 0.4rem; }
    .nav-btn { padding: 0.4rem 0.6rem; font-size: 0.7rem; }
}