/* ============================================
   ASTERA CINEMATIC THEME - STYLES v2.0
   Multi-depth parallax · Cinematic scroll · Anti-slop
   ============================================ */

:root {
    --bg: #0a0a0f;
    --bg-elev: #12121a;
    --bg-card: #1a1a26;
    --bg-deep: #06060a;
    --text: #e8e2d9;
    --text-muted: #8a8294;
    --steel: #3b6c8f;
    --steel-light: #5a8fb8;
    --copper: #c45d3e;
    --copper-light: #e07854;
    --copper-glow: rgba(196, 93, 62, 0.15);
    --steel-glow: rgba(59, 108, 143, 0.12);
    --border: rgba(232, 226, 217, 0.08);
    --border-hover: rgba(59, 108, 143, 0.4);
    --font-display: 'Space Grotesk', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --nav-h: 72px;
    --max-w: 1280px;
    --ease-cinematic: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-scrub: cubic-bezier(0.23, 1, 0.32, 1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a { color: var(--steel-light); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--copper-light); }

/* TYPOGRAPHY */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; }

.section-eyebrow {
    font-family: var(--font-body);
    font-size: clamp(0.75rem, 1vw, 0.875rem);
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.accent-text { color: var(--steel-light); }

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    transition: transform 0.3s var(--ease-cinematic), background 0.3s ease, border-color 0.3s ease;
}

.btn-primary {
    background: var(--copper);
    color: #fff;
}
.btn-primary:hover {
    background: var(--copper-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--steel);
}
.btn-outline:hover {
    border-color: var(--steel-light);
    color: var(--steel-light);
}

.btn-full { width: 100%; text-align: center; }

/* ============================================
   NAVIGATION
   ============================================ */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    background: transparent;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
    border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
    background: rgba(10, 10, 15, 0.92);
    backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
}

.nav-inner {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.nav-logo:hover { color: var(--text); }

/* Header logo: 14px height per spec */
.nav-logo-img {
    width: 80px; height: auto;
    display: block;
    transition: opacity 0.3s ease;
}
.nav-logo:hover .nav-logo-img { opacity: 0.85; }

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}
.nav-menu a {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--copper);
    transition: width 0.3s ease;
}
.nav-menu a:hover { color: var(--text); }
.nav-menu a:hover::after { width: 100%; }

.nav-cta {
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--steel);
    border-radius: 4px;
    color: var(--steel-light) !important;
}
.nav-cta:hover {
    background: var(--steel);
    color: #fff !important;
}
.nav-cta::after { display: none; }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    min-height: 44px;
    min-width: 44px;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: transform 0.3s ease;
}

/* ============================================
   HERO — multi-depth field
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: var(--nav-h) 2rem 4rem;
}

.hero-canvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(ellipse at center, rgba(10,10,15,0.3) 0%, rgba(10,10,15,0.85) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Depth layer 0.30: distant glows */
.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    pointer-events: none;
}
.hero-glow-l {
    top: -200px;
    left: -100px;
    background: radial-gradient(circle, var(--steel-glow) 0%, transparent 70%);
}
.hero-glow-r {
    bottom: -200px;
    right: -100px;
    background: radial-gradient(circle, var(--copper-glow) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-eyebrow {
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero-accent {
    background: linear-gradient(135deg, var(--steel-light), var(--copper));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    position: relative;
    z-index: 2;
    display: flex;
    gap: clamp(2rem, 6vw, 5rem);
    margin-top: 4rem;
    flex-wrap: wrap;
    justify-content: center;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--steel-light);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    letter-spacing: 0.05em;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.hero-scroll-indicator span {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--copper), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ============================================
   CHAPTER SECTIONS — cinematic scroll base
   ============================================ */
.chapter {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem;
    overflow: hidden;
}

.chapter-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--max-w);
    transform-style: preserve-3d;
}

/* Depth layer 0.15: atmospheric gradient */
.chapter-atmosphere {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at 30% 50%, var(--steel-glow) 0%, transparent 60%);
    opacity: 1;
}

/* Depth layer 0.30: blurred bg image */
.chapter-bg-blur {
    position: absolute;
    top: -10%; left: -10%;
    width: 120%; height: 120%;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    filter: blur(8px);
    z-index: 0;
    pointer-events: none;
}

/* Depth layer 0.50: secondary background */
.chapter-bg-secondary {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 0%, var(--bg-elev) 100%);
    opacity: 0.5;
}

.chapter-bg-ranch {
    background: linear-gradient(135deg, var(--bg-deep) 0%, #0d1a26 100%);
    opacity: 0.8;
}

/* Floating chapter number (depth 1.20) */
.chapter-number {
    position: absolute;
    top: -5rem;
    right: 0;
    font-family: var(--font-display);
    font-size: clamp(6rem, 12vw, 10rem);
    font-weight: 700;
    color: rgba(232, 226, 217, 0.03);
    letter-spacing: -0.05em;
    z-index: -1;
    pointer-events: none;
    line-height: 1;
}

/* ============================================
   VARY SECTION RHYTHM — each chapter looks different
   ============================================ */

/* Ch 01: Why Astera — left-aligned, asymmetric */
.chapter-features {
    background: var(--bg);
}
.chapter-features .chapter-wrapper {
    max-width: 1100px;
}
.chapter-features .section-title {
    text-align: left;
}

/* Ch 02: Market Stats — centered, dark gradient, full-bleed feel */
.chapter-market {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 50%, var(--bg) 100%);
}
.chapter-market .chapter-wrapper {
    text-align: center;
}
.chapter-market .section-title {
    text-align: center;
}
.chapter-market .chapter-atmosphere {
    background: radial-gradient(ellipse at 50% 50%, var(--copper-glow) 0%, transparent 70%);
}

/* Ch 03: Applications — left-aligned, dark with blurred bg */
.chapter-applications {
    background: var(--bg);
}
.chapter-applications .section-title {
    text-align: left;
}

/* Ch 04: Quality — elevated bg, centered rings */
.chapter-quality {
    background: var(--bg-elev);
}
.chapter-quality .chapter-wrapper {
    text-align: center;
}
.chapter-quality .section-title {
    text-align: center;
}

/* Ch 05: Partners — full-width, lighter feel */
.chapter-partners {
    background: var(--bg-deep);
}
.chapter-partners .chapter-wrapper {
    text-align: center;
}
.chapter-partners .section-title {
    text-align: center;
}

/* Ch 06: Jackson Ranch — left-aligned, dark with ranch bg */
.chapter-ranch {
    background: var(--bg);
}
.chapter-ranch .chapter-wrapper {
    max-width: 1100px;
}
.chapter-ranch .section-title {
    text-align: left;
}

/* Ch 07: News — left-aligned with info cards */
.chapter-news {
    background: var(--bg-elev);
}
.chapter-news .section-title {
    text-align: left;
}

/* Ch 08: Investor — full-bleed gradient, centered */
.chapter-investor {
    background: linear-gradient(135deg, var(--bg-elev) 0%, #0d1a26 100%);
}
.chapter-investor .chapter-wrapper {
    text-align: center;
}
.chapter-investor .section-title {
    text-align: center;
}

/* Ch 09: Contact — left-aligned with form */
.chapter-contact {
    background: var(--bg-elev);
}
.chapter-contact .section-title {
    text-align: left;
}

/* ============================================
   FEATURES GRID — asymmetric, not generic 4-card
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: transform 0.4s var(--ease-cinematic), border-color 0.4s ease;
    will-change: transform;
}
.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
}

.feature-icon {
    margin-bottom: 1.5rem;
    color: var(--copper);
}
.feature-icon svg {
    display: block;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   MARKET STATS
   ============================================ */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.market-stat-value {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--steel-light), var(--copper));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.market-stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
    letter-spacing: 0.05em;
}

/* ============================================
   APPLICATIONS — 2-col with images
   ============================================ */
.applications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.app-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s var(--ease-cinematic), border-color 0.4s ease;
    will-change: transform;
}
.app-card:hover {
    transform: translateY(-4px);
    border-color: rgba(196, 93, 62, 0.3);
}

.app-card-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.app-card-image::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60px;
    background: linear-gradient(to top, var(--bg-card), transparent);
}

.app-card-body { padding: 2rem; }
.app-card-body h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.app-card-body p { color: var(--text-muted); font-size: 0.95rem; }

/* ============================================
   QUALITY — centered rings
   ============================================ */
.quality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}

.quality-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quality-ring {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 1.5rem;
}

.quality-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.ring-bg {
    fill: none;
    stroke: var(--border);
    stroke-width: 4;
}

.ring-fill {
    fill: none;
    stroke: var(--copper);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 327;
    stroke-dashoffset: 327;
    transition: stroke-dashoffset 1.5s var(--ease-cinematic);
}

.quality-ring-label {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text);
}

.quality-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.quality-card p { color: var(--text-muted); font-size: 0.9rem; max-width: 280px; }

/* ============================================
   PARTNERS — real images, original colors
   ============================================ */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.partner-logo {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.partner-logo:hover {
    border-color: var(--steel);
    transform: translateY(-2px);
}

.partner-img {
    max-height: 80px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    opacity: 1;
    filter: none;
    transition: opacity 0.4s ease, filter 0.4s ease;
}
.partner-logo:hover .partner-img {
    opacity: 1;
    filter: none;
}

/* ============================================
   JACKSON RANCH
   ============================================ */
.ranch-content { max-width: 700px; }

.ranch-description {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.ranch-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.ranch-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: var(--text);
}

.ranch-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--copper);
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    flex-shrink: 0;
}
.ranch-feature-icon svg { display: block; }

/* ============================================
   NEWS / INFO
   ============================================ */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: transform 0.4s var(--ease-cinematic), border-color 0.4s ease;
    will-change: transform;
}
.info-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
}

.info-card-icon {
    margin-bottom: 1.5rem;
    color: var(--copper);
}
.info-card-icon svg { display: block; }

.info-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.info-card p { color: var(--text-muted); margin-bottom: 1.5rem; }

.info-link {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--copper);
}
.info-link:hover { color: var(--copper-light); }

/* ============================================
   INVESTOR
   ============================================ */
.investor-text {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.investor-highlights {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.investor-stat {
    display: flex;
    flex-direction: column;
}
.investor-stat-value {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--steel-light);
    line-height: 1;
}
.investor-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 2rem; }

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border-radius: 8px;
    flex-shrink: 0;
    color: var(--copper);
}
.contact-icon svg { display: block; }

.contact-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}
.contact-item a, .contact-item span {
    font-size: 1rem;
    color: var(--text);
}

.contact-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem;
}

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }

.form-group label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
    min-height: 44px;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--steel);
}

.form-group textarea { resize: vertical; }

.form-success {
    color: var(--copper-light);
    font-size: 0.9rem;
    text-align: center;
    padding-top: 0.5rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 4rem 2rem 2rem;
}

.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    color: var(--text);
}

.footer-col p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0.5rem; }
.footer-col a { color: var(--text-muted); }
.footer-col a:hover { color: var(--copper-light); }

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.footer-links a { font-size: 0.9rem; color: var(--text-muted); }

.footer-bottom {
    max-width: var(--max-w);
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

/* Centered footer globe */
.footer-globe-wrap {
    text-align: center;
    margin: 0 auto 1rem;
    display: flex;
    justify-content: center;
}

.footer-globe-img {
    display: block;
    margin: 0 auto;
    width: 120px;
    height: auto;
    opacity: 0.8;
}

.footer-bottom p { font-size: 0.85rem; color: var(--text-muted); }

/* ============================================
   REVEAL ANIMATIONS (initial states — GSAP overrides)
   ============================================ */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
}

/* ============================================
   RESPONSIVE — mobile: disable pinning, stack grids
   ============================================ */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .partners-grid { grid-template-columns: repeat(3, 1fr); }
    .info-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-row { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
    .footer-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: var(--nav-h);
        left: 0; right: 0;
        background: rgba(10, 10, 15, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--border);
    }
    .nav-menu.open { display: flex; }
    .nav-toggle { display: flex; }

    .features-grid { grid-template-columns: 1fr; }
    .applications-grid { grid-template-columns: 1fr; }
    .quality-grid { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
    .info-grid { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .ranch-features { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

    .hero-stats { gap: 1.5rem; }
    .investor-highlights { gap: 1.5rem; }

    .chapter { padding: 5rem 1.5rem; }
    .hero-section { padding: var(--nav-h) 1.5rem 3rem; }

    /* Disable 3D perspective on mobile */
    .chapter-wrapper { perspective: none !important; transform-style: flat !important; }
    .chapter-number { display: none; }
}

@media (max-width: 480px) {
    .stats-row { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: 1fr; }
}

/* ============================================
   REDUCED MOTION — disable all cinematic effects
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
    }
    .hero-canvas { display: none; }
    .scroll-line { animation: none; }
    .chapter-wrapper { perspective: none !important; transform-style: flat !important; }
    .chapter-number { display: none; }
}

/* ============================================
   FOOTER LOGO
   ============================================ */
.footer-logo-img {
    width: 80px; height: auto;
    margin-bottom: 1rem;
    display: block;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .footer-logo-img { width: 60px; height: auto; }
}
/* Partner logo specific sizing */
.partner-logo:nth-child(5) .partner-img { max-height: 120px; } /* OakTech - enlarged */
.partner-logo:nth-child(2) .partner-img { max-width: 80px; height: auto; }  /* ALTRIS - reduced */

/* Nav logo text */
.nav-logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: var(--text);
    margin-left: 0.5rem;
    white-space: nowrap;
}

/* Fallback: if GSAP doesn't load, show word-stagger text */
.no-js .word-stagger, .no-js .word {
    opacity: 1 !important;
    transform: none !important;
}

/* ===== HERO VIDEO ===== */
.hero-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.35;
}

/* Nav logo text - two parts like production site */
.nav-logo-name {
    font-weight: 700;
}
.nav-logo-sub {
    font-weight: 400;
    opacity: 0.7;
}

/* Footer logo text */
.footer-logo-text {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.5rem;
}
.footer-logo-name { font-weight: 700; color: var(--text); }
.footer-logo-sub { font-weight: 400; opacity: 0.7; color: var(--text); }

/* Jackson Ranch section: more visible background */
.chapter-ranch .chapter-bg-blur {
    opacity: 0.4 !important;
    filter: blur(4px) !important;
}
