/* Base & Defaults */
:root {
    --bg-dark: #0A0A0A;
    --bg-dark-alt: #0D0D0D;
    --bg-white: #FFFFFF;
    --accent: #AAFF00;
    --text-light: #FFFFFF;
    --text-dark: #111111;
    --text-muted: #888888;
    --font-sans: 'Inter', sans-serif;
    --radius-lg: 20px;
    --radius-md: 16px;
    --radius-pill: 9999px;
}

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

body {
    font-family: var(--font-sans);
    line-height: 1.7; /* PRD body paragraph */
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
}

/* Ensure the custom cursor applies universally across everything */
html, body, * {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48"><defs><filter id="glow" x="-50%" y="-50%" width="200%" height="200%"><feDropShadow dx="0" dy="0" stdDeviation="3" flood-color="%23AAFF00" flood-opacity="0.8"/></filter></defs><path d="M14 14 L30 19 L22 22 L19 30 Z" fill="%23AAFF00" stroke="%23AAFF00" stroke-width="4" stroke-linejoin="round" filter="url(%23glow)"/></svg>') 14 14, auto !important;
}

html {
    scroll-behavior: smooth;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.section-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.section-white {
    background-color: var(--bg-white);
    color: var(--text-dark);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background-color: var(--bg-dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.flickery-logo {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 900;
    color: var(--text-light);
    letter-spacing: -1px;
    animation: flicker 2s linear infinite;
}
@keyframes flicker {
    0%, 19.9%, 22%, 62.9%, 64%, 64.9%, 70%, 100% {
        opacity: 1;
        text-shadow: 0 0 20px rgba(170,255,0,0.4);
    }
    20%, 21.9%, 63%, 63.9%, 65%, 69.9% {
        opacity: 0.2;
        text-shadow: none;
    }
}

/* Scroll Reveal */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.reveal-up.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--accent);
    color: var(--text-dark);
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-weight: 500; /* PRD button text */
    transition: background-color 0.25s, color 0.25s, transform 0.2s;
}
.btn-primary:hover {
    background-color: #FFFFFF;
    color: #000000;
    transform: scale(1.05);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.08); /* PRD border */
    padding: 13px 28px;
    border-radius: var(--radius-pill);
    font-weight: 500;
    transition: background-color 0.2s, border-color 0.2s;
}
.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-book {
    background-color: #ffffff;
    color: #0a0a0a;
    padding: 10px 26px;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 14px;
    transition: background-color 0.2s ease, transform 0.15s ease;
    justify-self: end;
}
.btn-book:hover {
    background-color: rgba(255,255,255,0.88);
    transform: scale(1.04);
}

/* Section 1: Hero */
.hero {
    position: relative;
    padding: 24px 4% 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

/* Base text elevation */
.navbar, .hero-content {
    position: relative;
    z-index: 10;
}

/* Background FX Master Layer */
.hero-bg-fx {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

/* Concentric Circles */
.concentric-grid {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2000px;
    height: 2000px;
    pointer-events: none;
}
.circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
}
.circle-1 { width: 600px; height: 600px; }
.circle-2 { width: 1000px; height: 1000px; }
.circle-3 { width: 1400px; height: 1400px; border-color: rgba(255,255,255,0.12); }

/* Crosshairs */
.crosshairs {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.crosshair {
    position: absolute;
    width: 20px;
    height: 20px;
}
.crosshair::before, .crosshair::after {
    content: '';
    position: absolute;
    background: rgba(170,255,0,0.6);
}
.crosshair::before { top: 50%; left: 0; width: 100%; height: 1px; }
.crosshair::after { left: 50%; top: 0; height: 100%; width: 1px; }

.ch-1 { top: 30%; left: 15%; }
.ch-2 { top: 60%; right: 15%; }
.ch-3 { top: 20%; right: 25%; }
.ch-4 { bottom: 30%; left: 25%; }

/* Side Glows */
.hero-bg-fx .glow {
    position: absolute;
    width: 600px;
    height: 1200px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(120px);
    opacity: 0.9;
    top: 50%;
    transform: translateY(-50%);
}
.hero-bg-fx .corner-left {
    left: -300px;
    background: radial-gradient(ellipse, rgba(170,255,0,0.25) 0%, rgba(0,0,0,0) 70%);
}
.hero-bg-fx .corner-right {
    right: -300px;
    background: radial-gradient(ellipse, rgba(255,255,255,0.2) 0%, rgba(0,0,0,0) 70%);
}

/* Fisheye Video Carousel */
.fisheye-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.carousel-panel {
    position: absolute;
    width: 250px;
    height: 444px; /* approx 9:16 aspect ratio */
    top: 50%;
    margin-top: -222px;
    left: 0; /* JS will take over X */
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    background: #111;
    will-change: transform, opacity;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}
.bg-video.dark-filter {
    filter: grayscale(100%) brightness(40%) contrast(1.2);
}

/* Background Overlay / Vignette */
.bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 40%, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.95) 70%, rgba(10,10,10,1) 100%);
    z-index: 2;
    pointer-events: none;
}


.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px 24px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    pointer-events: none; /* let clicks pass through the shell */
}

.navbar-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    background: rgba(26, 26, 26, 0.88);
    border: none;
    border-radius: 12px;
    padding: 10px 18px 10px 20px;
    width: 100%;
    max-width: 880px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    pointer-events: all;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled .navbar-inner {
    background: rgba(10, 10, 10, 0.97);
    border-color: rgba(255, 255, 255, 0.13);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

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

.mobile-nav-overlay {
    display: none;
}

.logo {
    font-weight: 900;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none !important;
    border: none !important;
}
.logo-dot {
    color: var(--accent);
    font-size: 16px;
    text-decoration: none !important;
    border: none !important;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 36px;
    justify-self: center;
}
.highlight-glow {
    /* Same Waving Gradient as Subtitle */
    background: linear-gradient(90deg, #bbbbbb, #ffffff, var(--accent), #ffffff, #bbbbbb);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientWave 5s linear infinite;
    opacity: 0; 
    transition: opacity 0.4s ease;
}
.nav-links li a {
    color: #aaaaaa;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: color 0.2s ease;
}
.nav-links li a:hover {
    color: #ffffff;
}
.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #ffffff;
    transition: width 0.25s ease-out;
}
.nav-links li a:hover::after {
    width: 100%;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 10;
    padding-top: 80px; /* offset for fixed nav */
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    margin-top: -210px; /* Adjusted to bring the first line closer to the absolute screen center */
}

.hero-top-group {
    position: absolute;
    bottom: 100%;
    margin-bottom: 108px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: max-content;
}

/* Hero Top Badge */
.hero-top-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 6px 6px 6px 18px;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 23px; /* Moved down by 20px (from 43px to 23px) */
    font-size: 14px;
    font-family: "Neue Haas Grotesk Display Pro", "Neue Haas Grotesk Text Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style: italic;
    box-shadow: 0 0 24px rgba(170, 255, 0, 0.15), inset 0 0 12px rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.hero-top-badge:hover {
    border-color: rgba(170, 255, 0, 0.5);
    transform: translateY(-2px);
}

.hero-top-badge .badge-pill {
    background-color: var(--accent);
    color: #0a0a0a;
    padding: 2px 10px;
    border-radius: 9999px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease;
}

.hero-top-badge .badge-pill::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #ffffff;
    z-index: -1;
    transition: height 0.3s ease;
}

.hero-top-badge .badge-pill:hover::before {
    height: 100%;
}

.hero-top-badge .badge-pill:hover {
    color: #000000;
}

.hero-top-badge .badge-text {
    color: #ffffff;
    font-weight: 500;
}

.hero-top-badge .badge-and {
    margin: 0 2px;
    font-weight: 400;
    color: #cccccc;
}

/* Typewriter Block */
.typewriter-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: relative;
    z-index: 10;
}

.tw-line-wrap {
    display: block;
    line-height: 1.1;
    min-height: 1.2em;
}

/* Line 2 — big headline (types second) — Neue Haas Grotesk Medium, slightly smaller */
#tw-wrap2 {
    font-family: "Neue Haas Grotesk Display Pro", "Neue Haas Grotesk Text Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(36px, 4.8vw, 64px); /* Slightly increased size */
    font-weight: 500; /* Reduced boldness as requested */
    letter-spacing: -1.5px;
    color: #fff;
    line-height: 0.75; /* Extremely tight line height to pull 'category' very close */
    max-width: 700px;
    text-align: center;
}

#tw-text2-prefix {
    display: block;
    white-space: nowrap;
}

/* Line 1 — subtitle (types first, above headline) */
#tw-wrap1 {
    font-family: "Neue Haas Grotesk Display Pro", "Neue Haas Grotesk Text Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(16px, 1.8vw, 20px); /* Increased size by ~2px */
    font-weight: 500;
    letter-spacing: 0.5px; /* Increased letter spacing */
    margin-top: 0;
    margin-bottom: 0;
    display: inline-block;
    color: #cccccc; /* Solid color, removed gradient */
    position: relative;
    font-style: italic;
}

/* Endless Smooth Wave for Secondary Text */
@keyframes endlessWave {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

.hover-char {
    display: inline-block;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.2s ease;
    transform-origin: bottom center;
    position: relative;
}

/* The hovered item */
.hover-char:hover {
    animation: none !important;
    transform: scale(1.4) translateY(-2px) !important;
    z-index: 6;
    color: var(--accent);
}

/* --- LEFT SIDE WAVE --- */
/* Left 1 */
#tw-wrap1:has(.hover-char:hover) .hover-char:has(+ .hover-char:hover) {
    animation: none !important;
    transform: scale(1.3) translateY(-1px) !important;
    z-index: 5;
    color: #fff;
}
/* Left 2 */
#tw-wrap1:has(.hover-char:hover) .hover-char:has(+ .hover-char + .hover-char:hover) {
    animation: none !important;
    transform: scale(1.2) translateY(-0.5px) !important;
    z-index: 4;
    color: #fff;
}
/* Left 3 */
#tw-wrap1:has(.hover-char:hover) .hover-char:has(+ .hover-char + .hover-char + .hover-char:hover) {
    animation: none !important;
    transform: scale(1.1) translateY(0px) !important;
    z-index: 3;
}
/* Left 4 */
#tw-wrap1:has(.hover-char:hover) .hover-char:has(+ .hover-char + .hover-char + .hover-char + .hover-char:hover) {
    animation: none !important;
    transform: scale(1.05) translateY(0px) !important;
    z-index: 2;
}

/* --- RIGHT SIDE WAVE --- */
/* Right 1 */
.hover-char:hover + .hover-char {
    animation: none !important;
    transform: scale(1.3) translateY(-1px) !important;
    z-index: 5;
    color: #fff;
}
/* Right 2 */
.hover-char:hover + .hover-char + .hover-char {
    animation: none !important;
    transform: scale(1.2) translateY(-0.5px) !important;
    z-index: 4;
    color: #fff;
}
/* Right 3 */
.hover-char:hover + .hover-char + .hover-char + .hover-char {
    animation: none !important;
    transform: scale(1.1) translateY(0px) !important;
    z-index: 3;
}

.tw-hidden {
    visibility: hidden;
}

/* Blinking cursor bar */
.tw-cursor {
    display: inline-block;
    width: 3px;
    height: 0.85em;
    background: rgba(255, 255, 255, 0.75);
    vertical-align: middle;
    margin-left: 3px;
    border-radius: 2px;
    animation: tw-blink 0.75s step-end infinite;
}

.tw-cursor.cursor-done {
    opacity: 0;
    animation: none;
    transition: opacity 0.4s ease;
}

@keyframes tw-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #1a1a1a;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
}
.badge span {
    color: var(--accent);
}

.hero-headline {
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 500;
    line-height: 1;
    margin-bottom: 24px;
    letter-spacing: -3px;
}

/* Apply waving gradient to the highlighted word + Editorial New font */
.highlight-glow {
    position: relative;
    display: inline-block;
    
    font-family: "Editorial New", "PPEditorialNew-HeavyItalic", serif;
    font-style: italic;
    font-weight: 800; /* Heavy */
    font-size: clamp(55px, 8vw, 100px); /* Reduced size as requested */
    line-height: 0.75; /* Matches the extremely tight parent line-height */
    padding-bottom: 0.2em; /* Gives room for the 'g' descender so background-clip doesn't cut it */
    margin-bottom: -0.2em; /* Offsets padding to not expand the line gap */
    padding-right: 4px; /* Prevent italic clipping */
    letter-spacing: -7px; /* Reduced even further as requested */
    
    /* Waving Gradient Animation */
    background: linear-gradient(90deg, #bbbbbb, #ffffff, var(--accent), #ffffff, #bbbbbb);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientWave 3s linear infinite;
    
    opacity: 0; 
    transition: opacity 0.4s ease;
}

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

.hero-subtext {
    font-size: 22px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 8px;
}

.hero-secondary-wrap {
    position: absolute;
    top: 100%;
    margin-top: 60px; /* Increased to give room for the massive 'category' word */
    display: flex;
    flex-direction: column;
    align-items: center;
    width: max-content;
}

.hero-ctas {
    position: absolute;
    top: 100%;
    margin-top: 140px; /* Shifted down further */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

/* Primary CTA — lime green (Scalient "Get Started" style) */
.btn-hero-primary {
    display: inline-block;
    background-color: var(--accent);
    color: #0a0a0a;
    padding: 6px 14px;
    border-radius: 8px;
    font-family: "Neue Haas Grotesk Display Pro", "Neue Haas Grotesk Text Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    -webkit-text-stroke: 1px currentColor;
    font-size: 18px; /* Increased from 15px */
    letter-spacing: -0.1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.btn-hero-primary::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #ffffff;
    z-index: -1;
    transition: height 0.3s ease;
}
.btn-hero-primary:hover::before {
    height: 100%;
}
.btn-hero-primary:hover {
    color: #000000;
    transform: scale(1.04);
    box-shadow: 0 6px 24px rgba(255,255,255,0.28);
}

/* Secondary CTA — dark pill with play icon (Scalient "Watch Demo" style) */
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255,255,255,0.06);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.14);
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    font-family: "Neue Haas Grotesk Display Pro", "Neue Haas Grotesk Text Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn-hero-secondary:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: rgba(170, 255, 0, 0.4); /* Glow color (lime) */
    box-shadow: 0 0 20px rgba(170, 255, 0, 0.2); /* Slight glow */
    transform: translateY(-1px);
}

.play-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: #ffffff;
    color: #0a0a0a;
    border-radius: 50%;
    font-size: 9px;
    flex-shrink: 0;
    padding-left: 2px;
}

/* Bento Hero Grid */
.bento-hero-grid {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 16px;
    z-index: 10;
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.bento-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transition: transform 0.1s ease-out, box-shadow 0.4s ease;
    transform-style: preserve-3d;
}

.bento-item:hover {
    box-shadow: 0 20px 40px rgba(170,255,0,0.15);
    z-index: 20;
}

.bento-img-card {
    width: 260px;
    height: 320px;
    background: #222;
}
.bento-img-card .bento-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.4s ease, transform 0.8s ease;
}
.bento-img-card:hover .bento-bg {
    filter: grayscale(0%);
    transform: scale(1.05);
}
.bento-badge {
    position: absolute;
    top: 20px;
    right: -10px; /* pull right */
    background: #fff;
    color: #000;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
    transform: translateX(-20px);
    border: 1px solid #ddd;
}
.badge-dot {
    color: #000;
    font-size: 10px;
}

.bento-white-square {
    width: 180px;
    height: 180px;
    background: #fff;
    color: #111;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.bento-num {
    font-size: 40px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
}
.bento-text {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}

.bento-dark-vert {
    width: 160px;
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.bento-dark-1 { height: 220px; }
.bento-dark-2 { height: 260px; }

.bento-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.bento-icon {
    align-self: center;
    color: #fff;
    margin-top: 20px;
}
.icon-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
}
.cbar {
    width: 12px;
    background: #444;
    border-radius: 4px;
}
.cbar-1 { height: 30px; }
.cbar-2 { height: 45px; }
.cbar-3 { height: 60px; background: var(--accent); }
.cbar-4 { height: 25px; }

.bento-white-large {
    width: 300px;
    height: 300px;
    background: #fff;
    color: #111;
    padding: 32px 24px 0 24px;
    position: relative;
    display: flex;
    flex-direction: column;
}
.bento-num-large {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 4px;
}
.bento-text-inline {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 16px;
}

.bento-pills-wrap {
    display: flex;
    gap: 8px;
}
.bento-pill {
    background: #111;
    color: #fff;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    font-size: 10px;
    font-weight: 700;
}

.globe-placeholder {
    margin-top: auto;
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.globe-circle {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 30%, #333, #0b0b0b);
    margin-bottom: -150px; /* peeking out of bottom */
    box-shadow: inset 0 20px 40px rgba(0,0,0,0.5);
}

.glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(170,255,0,0.1) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
    z-index: 0;
}
.glow.bottom-left { bottom: -100px; left: -100px; }
.glow.bottom-right { bottom: -100px; right: -100px; }


/* Section 2: About */
.about {
    padding: 80px 4% 40px; /* Reduced padding to fit screen */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 11;
}

.about-top {
    display: flex;
    justify-content: center;
    align-items: center; /* Centered vertically */
    gap: 80px;
    margin-bottom: 0;
}
.about-video-container {
    height: 75vh;
    width: auto;
    aspect-ratio: 9 / 16;
    border-radius: 44px; /* Phone-like rounded corners */
    border: 10px solid #111; /* Bezel */
    outline: 1px solid rgba(255,255,255,0.1); /* Thin highlight edge */
    overflow: hidden;
    background: #000;
    box-shadow: 0 50px 100px rgba(0,0,0,0.4);
    flex-shrink: 0;
    position: relative;
}
.about-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.4s ease;
}

#about-video-wrap:hover .about-video {
    filter: brightness(0.9);
}

.video-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

#about-video-wrap:hover .video-controls {
    opacity: 1;
}

.mute-btn-simple {
    background: none;
    border: none;
    color: #fff;
    font-size: 14px; /* Smaller icon */
    cursor: default; /* custom cursor will override */
    padding: 10px;
    transition: transform 0.2s ease;
}

.mute-btn-simple:hover {
    transform: scale(1.1);
}

.center-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 11;
}

#about-video-wrap:hover .center-play-btn {
    opacity: 1;
}

.center-play-btn:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translate(-50%, -50%) scale(1.1);
}

.pause-icon {
    display: flex;
    gap: 4px;
}

.pause-icon span {
    display: block;
    width: 3px;
    height: 14px;
    background-color: #fff;
    border-radius: 1px;
}

.about-label {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
}
.about-text-container {
    width: 60%; /* Expanded to fill space */
}
.about-text {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #111; /* Final color */
}

/* Base state for scroll reveal spans */
.scroll-reveal-span {
    color: rgba(0, 0, 0, 0.1);
    transition: color 0.1s linear;
}

.fade-text {
    /* We'll handle this with the scroll reveal now */
    display: inline;
}

.about-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
}
.about-img-col {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 3/4;
}
.about-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-text-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding-bottom: 24px;
}
.about-text-col h3 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.1;
}


/* Section 3: Work Header */
.work-header {
    padding: 120px 0 0;
    text-align: center;
    overflow: hidden;
}

.giant-headline {
    font-size: clamp(60px, 10vw, 140px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.06em; /* Extremely tight for high-end look */
    margin-bottom: 60px;
    color: var(--text-dark);
}
.giant-headline .line1 {
    display: block;
}
.work-reveal-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.headline-o-circle {
    width: 0;
    height: 0.8em; /* Bolder presence to match letters */
    aspect-ratio: 1 / 1;
    background: var(--accent);
    border-radius: 50%;
    overflow: hidden;
    opacity: 0;
    margin: 0;
    flex-shrink: 0;
    transform: translateY(0.015em);
    box-shadow: 0 0 20px rgba(170, 255, 0, 0.2);
}

.moving-part {
    display: inline-block;
}

.portfolio-peek {
    width: 90%;
    margin: 0 auto;
    height: 200px;
    background-color: #1a1a1a;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    position: relative;
}
.abstract-visual {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 100%);
}

/* === Decorative Scatter Shapes (Hero) === */
.hero-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 4;
    overflow: hidden;
}

.decor-shape {
    position: absolute;
    color: rgba(255, 255, 255, 0.2);
    animation: decor-blink 4s ease-in-out infinite;
}

@keyframes decor-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.05; }
}

/* Left: star — upper-left area */
.ds-star {
    width: 20px; height: 20px;
    top: 22%;
    left: 7%;
    transform: rotate(-12deg);
    animation-delay: 0s;
    animation-duration: 4.2s;
}

/* Left: play button — lower-left, well below star */
.ds-play {
    width: 18px; height: 20px;
    top: 62%;
    left: 9%;
    transform: rotate(5deg);
    animation-delay: 1.5s;
    animation-duration: 5s;
}

/* Right: eyeball — upper-right area */
.ds-eye {
    width: 28px; height: 16px;
    top: 28%;
    right: 8%;
    transform: rotate(-4deg);
    animation-delay: 0.8s;
    animation-duration: 3.8s;
}

/* Right: pause button — lower-right, well below eyeball */
.ds-pause {
    width: 16px; height: 20px;
    top: 65%;
    right: 10%;
    transform: rotate(8deg);
    animation-delay: 2.3s;
    animation-duration: 4.5s;
}

/* Work section decor */
.work-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.wdecor-shape {
    position: absolute;
    width: 20px;
    height: 20px;
    color: rgba(0, 0, 0, 0.1);
}

/* Eyeball wider */
.wd-4 { width: 26px; height: 14px; }

.wd-1 { top: 8%;   left: 3%;   transform: rotate(-8deg); }
.wd-2 { top: 15%;  right: 4%;  transform: rotate(20deg); }
.wd-3 { bottom: 12%; left: 5%; transform: rotate(10deg); }
.wd-4 { top: 45%;  left: 2%;   transform: rotate(-5deg); }
.wd-5 { top: 30%;  right: 3%;  transform: rotate(-12deg); }
.wd-6 { bottom: 20%; right: 5%; transform: rotate(15deg); }
.wd-7 { top: 70%;  left: 8%;  transform: rotate(5deg); }
.wd-8 { top: 60%;  right: 8%; transform: rotate(-20deg); }

/* Section 4: Work Grid */
.work-grid-section {
    padding: 120px 4% 160px;
    background-color: var(--bg-white);
    position: relative;
}

.work-grid-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
      linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center top;
    -webkit-mask-image: radial-gradient(ellipse at center, black 10%, transparent 70%);
    mask-image: radial-gradient(ellipse at center, black 10%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.work-video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px; /* Restored original gap */
    max-width: 1400px; /* Restored original max-width */
    margin: 0 auto;
    perspective: 1500px; 
    position: relative;
    z-index: 1;
}

.work-video-card {
    width: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Fan Effect: 4-Column Symmetrical Tilt */
.work-video-card:nth-child(4n+1) {
    transform: rotateY(20deg) scale(0.9);
}

.work-video-card:nth-child(4n+2) {
    transform: rotateY(8deg) scale(0.95);
    z-index: 2;
}

.work-video-card:nth-child(4n+3) {
    transform: rotateY(-8deg) scale(0.95);
    z-index: 2;
}

.work-video-card:nth-child(4n) {
    transform: rotateY(-20deg) scale(0.9);
}

.work-video-wrap {
    aspect-ratio: 9 / 16;
    border-radius: 32px;
    overflow: hidden;
    background: #000;
    border: 3px solid rgba(0, 0, 0, 0.04); /* Lightened and thinned */
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    position: relative;
    max-height: 550px; /* Limit height for smaller frames */
}

.work-video-card:hover {
    transform: rotateY(0) scale(1.05) translateY(-10px) !important;
    z-index: 10;
}

.grid-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Animation State - overriding default to respect tilt */
.reveal-zoom {
    opacity: 0;
    /* Zoom out effect means starting slightly zoomed in (smaller) or out (larger) */
    /* User said fade in & zoom out - typically starts large and goes to natural */
    /* I will use the JS to manage the final state relative to the base transform */
}



/* Section 4.5: Process Walkthrough */
.process-section {
    padding: 80px 4% 80px;
    background-color: #0a0a0a;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Grain / noise overlay */
.process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.68' numOctaves='1' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.09'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 280px 280px;
}

/* Ensure children sit above the grain */
.process-section > * {
    position: relative;
    z-index: 1;
}

.process-header {
    text-align: center;
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.process-badge {
    background-color: #1a1a1a;
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: 2px;
    margin-bottom: 24px;
}
.process-header h2 {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 16px;
    color: #fff;
}
.underline-accent {
    position: relative;
    display: inline-block;
}
.underline-accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--accent);
    border-radius: 2px;
}
.process-subtitle {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.process-grid-wrap {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.process-phase-row {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 60px;
    align-items: center;
}

.phase-visual-box {
    background: linear-gradient(180deg, #111 0%, #050505 100%);
    border-radius: 24px;
    aspect-ratio: 1 / 1;
    max-width: 260px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.visual-glow {
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 40%;
    background: radial-gradient(ellipse at center, rgba(170, 255, 0, 0.15) 0%, transparent 70%);
    z-index: 1;
}

.phase-icon {
    width: 55%;
    height: 55%;
    color: var(--accent);
    filter: drop-shadow(0 10px 20px rgba(170, 255, 0, 0.3));
    z-index: 2;
    transform: perspective(1000px) rotateY(-10deg) rotateX(10deg);
}

.phase-content-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.phase-number {
    font-family: "Neue Haas Grotesk Display Pro", "Helvetica Neue", sans-serif;
    font-size: 72px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 12px;
    background: linear-gradient(180deg, var(--accent) 0%, rgba(170, 255, 0, 0.2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
}

.phase-title {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #fff;
    letter-spacing: -0.5px;
}

.phase-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 20px;
    max-width: none;
}

.phase-output-pill {
    background-color: rgba(170, 255, 0, 0.1);
    border: 1px solid rgba(170, 255, 0, 0.2);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.output-label {
    font-weight: 800;
}

@media (max-width: 1024px) {
    .process-grid-wrap {
        gap: 80px;
    }
    .process-phase-row {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .phase-content-box {
        align-items: center;
    }
    .phase-desc {
        margin: 0 auto 32px;
    }
    .phase-visual-box {
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }
}

/* Section 5: Services */
.services {
    padding: 80px 4% 120px;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-header .header-center {
    width: 100%;
}

.services-header h2 {
    font-family: "Neue Haas Grotesk Display Pro", "Helvetica Neue", sans-serif;
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -1px;
    margin: 0 auto;
}

.services-header .highlight-glow {
    opacity: 1;
    font-weight: 500;
}

.offerings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 80px;
}

.offering-card {
    background-color: #111111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 60px 40px 40px;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.2, 0, 0.2, 1), border-color 0.4s;
    display: flex;
    flex-direction: column;
}

.offering-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.offering-card .btn-cta-main {
    align-self: flex-start;
    margin-bottom: 0;
}

.offering-badge {
    position: absolute;
    top: -20px;
    left: 40px;
    padding: 10px 24px;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 8px;
    color: #000;
    transform: rotate(-3deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.studio-badge { background-color: #d1ffc4; } /* MMH CORE style */
.amplifier-badge { background-color: #f6e05e; } /* MMH OS style */

.offering-headline {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #fff;
}

.offering-body {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.offering-includes {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.offering-includes li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #eee;
    font-size: 16px;
    margin-bottom: 14px;
    line-height: 1.4;
}

.offering-includes .check {
    color: var(--accent);
    font-weight: bold;
}

.offering-platforms {
    margin-top: auto; /* Push everything below the list to the bottom */
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.p-icon {
    width: 20px;
    height: 20px;
    stroke: #fff;
    opacity: 0.7;
    transition: opacity 0.3s, stroke 0.3s;
}

.p-icon:hover {
    opacity: 1;
    stroke: var(--accent);
}

.platform-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.platform-icons {
    display: flex;
    gap: 12px;
}

.platform-tag {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.offering-cta {
    display: inline-flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: gap 0.3s;
}

.offering-cta:hover {
    gap: 8px;
}

@media (max-width: 900px) {
    .offerings-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .offering-card {
        padding: 60px 30px 40px;
    }
}

/* Section 6: Final CTA */
.final-cta-section {
    padding: 80px 4% 60px;
    background-color: var(--bg-white); /* Main background white */
}

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

.cta-card {
    background-color: #0d0d0d; /* Black-ish gray box */
    border-radius: 24px;
    padding: 80px 40px; 
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.15; /* Visible grain */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: "Neue Haas Grotesk Display Pro", "Helvetica Neue", sans-serif;
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 500;
    line-height: 1.1;
    color: #fff; /* White text for dark box */
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.cta-title .underlined {
    position: relative;
    display: inline-block;
    color: var(--accent); /* Theme green */
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-thickness: 3px;
}

.cta-highlight {
    color: var(--accent); /* Theme green */
}

.cta-subtext {
    font-size: clamp(16px, 2vw, 19px);
    color: #aaa;
    line-height: 1.4;
    margin-bottom: 32px;
    font-style: italic;
    letter-spacing: -0.8px;
}

.btn-cta-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent);
    color: #0a0a0a;
    padding: 12px 28px;
    border-radius: 8px;
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    font-weight: 500;
    -webkit-text-stroke: 1px currentColor;
    font-size: 18px;
    letter-spacing: -0.1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease, transform 0.15s ease, box-shadow 0.2s ease;
    text-decoration: none;
    margin-bottom: 24px;
    min-height: 52px; /* Ensure space for transition */
}

/* Elegant Text Swap for Service Buttons */
.btn-apply .btn-text-normal,
.btn-apply .btn-text-hover {
    display: block;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s;
}

.btn-apply .btn-text-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(100%);
    opacity: 0;
}

.btn-apply:hover .btn-text-normal {
    transform: translateY(-100%);
    opacity: 0;
}

.btn-apply:hover .btn-text-hover {
    transform: translateY(0);
    opacity: 1;
}

.btn-cta-main::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #fff; /* White hover fill */
    z-index: -1;
    transition: height 0.3s ease;
}

.btn-cta-main:hover::before {
    height: 100%;
}

.btn-cta-main:hover {
    color: #000;
    transform: scale(1.04);
    box-shadow: 0 6px 24px rgba(255, 255, 255, 0.1);
}

.cta-footer-note {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Simple Footer */
.simple-footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    color: #555;
    font-size: 13px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #555;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--accent);
}

@media (max-width: 768px) {
    .cta-card {
        padding: 60px 24px;
    }
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px 24px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}

/* FAQ Section */
.faq-container {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

@media (max-width: 991px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.faq-title {
    font-size: 80px;
    font-weight: 800;
    line-height: 1;
    margin: 0;
    color: #000;
    position: relative;
    display: inline-block;
}

.faq-q {
    position: relative;
}

.faq-q::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #000;
}

.faq-accent {
    position: absolute;
    top: -20px;
    right: -40px;
    width: 40px;
    height: 40px;
}

.acc-line {
    position: absolute;
    background: #aaff00;
    border-radius: 2px;
}

.acc-line.l1 {
    width: 15px;
    height: 3px;
    top: 10px;
    right: 0;
    transform: rotate(-45deg);
}

.acc-line.l2 {
    width: 15px;
    height: 3px;
    top: 0;
    right: 15px;
    transform: rotate(-90deg);
}

.acc-line.l3 {
    width: 15px;
    height: 3px;
    top: 25px;
    right: 5px;
    transform: rotate(-20deg);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-trigger {
    width: 100%;
    padding: 24px 32px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-trigger:hover {
    background: #1a1a1a;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background: #111;
}

.faq-content p {
    padding: 0 32px 24px;
    margin: 0;
    color: #888;
    line-height: 1.6;
    font-size: 16px;
}

.faq-item.active .faq-content {
    max-height: 500px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Footer Adjustments */
.footer-inner {
    padding: 80px 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 32px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* FAQ Contact Info Below FAQ Title on the Left */
.faq-contact-info {
    margin-top: 40px;
    text-align: left;
}

.faq-contact-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000;
}

.faq-contact-info p {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.faq-contact-info a {
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.faq-contact-info a:hover {
    border-bottom-color: #aaff00;
    color: #aaff00;
}

/* Grid Video Mute Button */
.grid-mute-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    padding: 0;
}

.grid-mute-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

.mute-svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.speaker-waves {
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.grid-mute-btn.unmuted .speaker-waves {
    opacity: 1;
}

.grid-mute-btn.unmuted {
    background: #aaff00;
    color: #000;
    border-color: #aaff00;
}

/* ==========================================================================
   Mobile Responsive Optimizations
   ========================================================================== */

@media (max-width: 1024px) {
    .nav-links { gap: 20px; }
    .hero-inner { margin-top: -100px; }
    .giant-headline { font-size: 12vw; }
}

@media (max-width: 768px) {
    /* Navbar Mobile */
    .nav-links, .navbar-inner .btn-book {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        gap: 6px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
        z-index: 1001;
    }
    
    .mobile-menu-btn span {
        display: block;
        width: 24px;
        height: 2px;
        background: #fff;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-btn.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-btn.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .mobile-nav-overlay {
        position: fixed;
        top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        z-index: 999;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .mobile-nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-nav-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    
    .mobile-nav-links {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    
    .mobile-nav-links a {
        font-size: 32px;
        font-weight: 700;
        color: #fff;
    }

    /* Hero Responsive */
    .hero { padding-top: 100px; }
    .hero-inner { margin-top: 0; }
    .typewriter-block { font-size: 32px; }
    .hero-secondary-wrap { font-size: 16px; width: 90%; }
    .hero-ctas { flex-direction: column; gap: 16px; width: 100%; }
    .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
    
    .fisheye-container { height: 70vh; top: 15vh; }
    .carousel-panel { width: 160px; height: 284px; margin-top: -142px; }

    /* About Section */
    .about-top { flex-direction: column; gap: 40px; }
    .about-video-container { width: 100%; height: 400px; }
    .about-text { font-size: 24px; line-height: 1.4; }

    /* Work Grid */
    .giant-headline { font-size: 16vw; }
    .work-video-grid { grid-template-columns: 1fr; gap: 24px; }
    .work-video-card { scale: 1 !important; transform: none !important; }

    /* Services */
    .offerings-container { grid-template-columns: 1fr; }
    .offering-card { padding: 30px 20px; }
    .offering-headline { font-size: 28px; }

    /* Process */
    .process-header { flex-direction: column; align-items: flex-start; gap: 10px; }
    .process-kicker { font-size: 14px; }
    .process-title { font-size: 48px; }
    .process-card { margin-left: 40px !important; width: calc(100% - 40px) !important; }
}

@media (max-width: 480px) {
    .typewriter-block { font-size: 28px; }
    .about-video-container { height: 300px; }
    .giant-headline { font-size: 18vw; }
}
