/* ============================================
   PURE CORE — V2 CSS
   Light mode content, dark hero + footer
   Accent: Slate Indigo #4A5D8A
   ============================================ */

:root {
    /* Dark palette (hero, footer, CTA) */
    --dark: #1c1e22;
    --dark-900: #24272c;
    --dark-800: #2d3035;
    --dark-700: #3a3d43;
    --dark-600: #4a4d54;
    --dark-500: #6b7075;

    /* Light palette (content sections) */
    --light-bg: #f5f5f5;
    --light-alt: #eeeeee;
    --light-border: #D0CFCF;
    --light-card: #EDECEC;

    /* Text */
    --text-primary: #1C1F26;
    --text-secondary: #4A4F58;
    --text-tertiary: #6B7075;
    --text-light: #8A8F96;

    /* Accent — Cool Slate */
    --accent: #838A9A;
    --accent-light: #969DB0;
    --accent-dim: #6E7585;
    --mining-green: #c1f526;

    /* Shared */
    --text-dark: #1C1F26;
    --form-bg: #f5f5f5;
    --form-border: #d8d8d8;
    --pure-white: #ffffff;
    --font-main: 'Libre Franklin', -apple-system, sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;
    --section-padding: 120px 0;
    --container-width: 1280px;

    /* ---- Typography scale ---- */
    --title-h1: clamp(44px, 5.5vw, 64px);   /* hero-title, page-hero-title */
    --title-h2: clamp(32px, 4vw, 48px);     /* section-title, cta-title, manifesto-statement */
    --title-h3: 23px;                        /* layer-title, project-title, news-title, why-title */
    --title-weight-h1: 500;
    --title-weight-h2: 500;
    --title-weight-h3: 600;
}

/* ============ UNIFIED TITLE SIZES ============ */
h1.hero-title,
h1.page-hero-title {
    font-size: var(--title-h1);
    font-weight: var(--title-weight-h1);
}

h2.section-title,
h2.cta-title,
.manifesto-statement {
    font-size: var(--title-h2);
    font-weight: var(--title-weight-h2);
}

h3.layer-title,
h3.project-title,
h3.why-title,
h3.news-title {
    font-size: var(--title-h3);
    font-weight: var(--title-weight-h3);
}

/* ============ SCROLL PROGRESS ============ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent);
    z-index: 999;
    transition: width 0.05s linear;
}

/* ============ LOADER ============ */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: linear-gradient(160deg, #5c6270 0%, var(--dark-600) 50%, #32363e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
}

.loader.loader-done {
    transform: translateY(-100%);
}

.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 200px;
}

.loader-line-track {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.loader-line {
    height: 100%;
    width: 0%;
    background: rgba(255,255,255,0.6);
    transition: width 0.1s linear;
}

.loader-text {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.4);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { background: none; border: none; font: inherit; cursor: pointer; color: inherit; }

/* ============ MONO TEXT WEIGHT FIX ============ */
/* IBM Plex Mono at 10-11px in 400 is too thin to read. Bump to 500. */
.tag,
.hero-tag,
.hero-explore-label,
.page-hero-tag,
.layer-label,
.layer-link,
.meta-label,
.news-date,
.news-link,
.project-nav-count,
.footer-heading,
.cookie-accept,
.form-group label {
    font-weight: 500;
}

/* ============ SKIP TO CONTENT (a11y) ============ */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10000;
    padding: 12px 24px;
    background: var(--accent);
    color: var(--pure-white);
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: top 0.2s;
}

.skip-to-content:focus {
    top: 16px;
}

/* ============ FOCUS VISIBLE (a11y) ============ */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

button:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
    outline: none;
}

/* ============ NOISE TEXTURE ============ */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* ============ CONTAINER ============ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ============ LOGO ============ */
.nav-logo img {
    height: 38px;
    width: auto;
}

.footer-logo img {
    height: 28px;
    width: auto;
    opacity: 0.7;
}

/* ============ NAVIGATION ============ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.nav.scrolled,
/* Nav-light: transparent at top, opaque when scrolled */
.nav-light .nav {
    background: transparent;
    backdrop-filter: none;
    border-bottom-color: transparent;
    box-shadow: none;
}

.nav-light .nav .nav-logo img { filter: invert(1); }
.nav-light .nav .nav-link { color: var(--text-tertiary); }
.nav-light .nav .nav-cta { background: var(--accent); color: var(--pure-white); }
.nav-light .nav .nav-hamburger span { background: var(--text-primary); }

.nav-light .nav.scrolled {
    background: rgba(245, 245, 245, 0.95);
    backdrop-filter: blur(24px);
    border-bottom-color: var(--light-border);
    box-shadow: 0 1px 12px rgba(0,0,0,0.08);
}

.nav-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    flex-direction: column;
}

/* Dark logo by default (on hero), invert when scrolled */
.nav.scrolled .nav-logo img {
    filter: invert(1);
}

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

.nav-link {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    letter-spacing: 1.5px;
    transition: color 0.3s;
    text-transform: uppercase;
}

.nav-link:hover {
    color: var(--pure-white);
}

.nav-link.nav-active {
    color: var(--pure-white);
}

.nav.scrolled .nav-link {
    color: var(--text-tertiary);
}

.nav.scrolled .nav-link.nav-active {
    color: var(--accent);
}

.nav.scrolled .nav-link:hover {
    color: var(--text-primary);
}

.nav-arrow {
    font-size: 8px;
    margin-left: 4px;
    transition: transform 0.3s;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    padding: 0;
}

.nav-dropdown.open .nav-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: -20px;
    padding-top: 16px;
}

.nav-dropdown.open .nav-dropdown-content {
    display: block;
}

.nav-dropdown-content a {
    display: block;
    padding: 10px 24px;
    font-size: 13px;
    color: var(--text-tertiary);
    transition: all 0.2s;
    background: var(--pure-white);
    border-left: 1px solid var(--light-border);
    border-right: 1px solid var(--light-border);
    min-width: 220px;
}

.nav-dropdown-content a:first-child {
    padding-top: 16px;
    border-top: 1px solid var(--light-border);
}

.nav-dropdown-content a:last-child {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--light-border);
}

.nav-dropdown-content a:hover {
    color: var(--accent);
    background: var(--light-alt);
}

.nav-dropdown-content a.nav-active {
    color: var(--accent);
    font-weight: 600;
}

.nav-hamburger {
    display: none;
}

.nav-close {
    display: none;
}

/* Nav CTA — Solid block style, matches btn-primary */
.nav-cta {
    font-family: var(--font-main);
    font-size: 11px;
    font-weight: 600;
    color: var(--pure-white);
    background: rgba(255,255,255,0.12);
    border: none;
    padding: 12px 28px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background-color 0.3s, color 0.3s, transform 0.15s;
}

.nav-cta:hover {
    background: rgba(255,255,255,0.25);
    color: var(--pure-white);
}

.nav-cta:active {
    transform: translateY(1px);
}

.nav.scrolled .nav-cta {
    color: var(--pure-white);
    background: var(--accent);
}

.nav.scrolled .nav-cta:hover {
    background: var(--accent-dim);
}

/* ============ BUTTONS ============ */
/* Base: shared typography for all buttons */
.btn {
    display: inline-block;
    font-family: var(--font-main);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    transition: color 0.3s, background-color 0.3s, transform 0.15s;
}

.btn:active {
    transform: translateY(2px);
}

/* Hide arrows (kept in HTML for external links only) */
.btn-arrow {
    display: none;
}

/* ---- PRIMARY (Style B — Solid block) ---- */
/* Fond plein, pas de bordure visible. Physique. */
.btn-primary {
    background: var(--accent);
    color: var(--pure-white);
    border: none;
    padding: 16px 36px;
}

.btn-primary:hover {
    background: var(--accent-dim);
}

.btn-primary:active {
    background: var(--accent-dim);
    transform: translateY(2px);
}

/* Primary: dark context (hero) */
.hero .btn-primary {
    background: var(--pure-white);
    color: var(--dark);
}

.hero .btn-primary:hover {
    background: rgba(255,255,255,0.85);
}

/* Primary: dark context (CTA section) */
.section-cta .btn-primary {
    background: var(--pure-white);
    color: var(--dark);
}

.section-cta .btn-primary:hover {
    background: rgba(255,255,255,0.85);
}

/* ---- GHOST (Style A — Underline shift) ---- */
/* Pas de bordure, pas de fond. Juste du texte + un trait qui slide. */
.btn-ghost {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 16px 4px;
}

.btn-ghost::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 4px;
    width: calc(100% - 8px);
    height: 1px;
    background: var(--text-light);
    transform: scaleX(0.5);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s;
}

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

.btn-ghost:hover::after {
    transform: scaleX(1);
    background: var(--accent);
}

/* Ghost: dark context (hero) */
.hero .btn-ghost {
    color: rgba(255,255,255,0.6);
}

.hero .btn-ghost::after {
    background: rgba(255,255,255,0.3);
}

.hero .btn-ghost:hover {
    color: var(--pure-white);
}

.hero .btn-ghost:hover::after {
    background: var(--pure-white);
}

/* Ghost in final-cta (white background) — use dark colors */
.final-cta .btn-ghost {
    color: var(--text-secondary);
    border: 1px solid var(--light-border);
    padding: 14px 28px;
}

.final-cta .btn-ghost::after {
    display: none;
}

.final-cta .btn-ghost:hover {
    color: var(--text-primary);
    border-color: var(--text-primary);
}

/* Ghost: dark context (CTA block centered — sub-pages) */
.cta-block .btn-ghost {
    color: rgba(255,255,255,0.6);
}

.cta-block .btn-ghost::after {
    background: rgba(255,255,255,0.3);
}

.cta-block .btn-ghost:hover {
    color: var(--pure-white);
}

.cta-block .btn-ghost:hover::after {
    background: var(--pure-white);
}

/* ---- Sizes ---- */
.btn-lg {
    padding: 20px 44px;
    font-size: 12px;
    letter-spacing: 2px;
}

.btn-lg.btn-ghost {
    padding: 20px 4px;
}

/* ============ STATS ============ */
.section-stats {
    background: var(--light-bg);
    padding: 80px 0;
}

.stats-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 0;
}

.stat-block {
    text-align: center;
    padding: 24px 40px;
}

.stat-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin-bottom: 14px;
}

.stat-num {
    font-family: var(--font-main);
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: -2px;
}

.stat-unit {
    font-family: var(--font-main);
    font-size: clamp(18px, 2vw, 28px);
    font-weight: 300;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.5px;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    display: block;
}

.stat-sep {
    width: 1px;
    height: 72px;
    background: var(--light-border);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .section-stats { padding: 40px 0; }
    .stats-row {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }
    .stat-sep { display: none; }
    .stat-block { padding: 20px 16px; }
}

/* ============ MANIFESTO ============ */
.section-manifesto {
    background: var(--light-bg);
    padding: 96px 0;
}

.manifesto-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.manifesto-statement {
    font-size: clamp(24px, 2.8vw, 36px);
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.3;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
}

.manifesto-statement .word {
    display: inline-block;
    opacity: 0.15;
    transition: opacity 0.6s ease;
}

.manifesto-statement.revealed .word {
    opacity: 1;
}

.manifesto-sub {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 640px;
    margin: 0 auto;
}

.manifesto-cta {
    display: inline-block;
    margin-top: 32px;
    font-size: 13px;
    font-family: var(--font-mono);
    letter-spacing: 0.04em;
    color: var(--text-light);
    text-decoration: none;
    border-bottom: none;
    padding-bottom: 4px;
    transition: color 0.2s;
    position: relative;
}

.manifesto-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--light-border);
    transform: scaleX(0.5);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s;
}
.manifesto-cta:hover {
    color: var(--text-primary);
}

.manifesto-cta:hover::after {
    transform: scaleX(1);
    background: var(--text-secondary);
}

/* ============ HERO — Dark, stays dark ============ */
.hero {
    position: relative;
    height: 100vh;
    height: 100svh;
    min-height: 700px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(
        155deg,
        #111215 0%,
        #1c1e22 15%,
        #2d3035 30%,
        #4a4d54 48%,
        #6b7075 55%,
        #3a3d43 68%,
        #24272c 82%,
        #111215 100%
    );
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Video hidden only if no source at all */
.hero-video:empty {
    display: none;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        180deg,
        rgba(50, 54, 62, 0.75) 0%,
        rgba(50, 54, 62, 0.45) 15%,
        rgba(50, 54, 62, 0.15) 35%,
        rgba(50, 54, 62, 0.15) 50%,
        rgba(50, 54, 62, 0.55) 75%,
        rgba(50, 54, 62, 0.95) 100%
    );
}

.hero-light {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(
        145deg,
        transparent 0%,
        transparent 25%,
        rgba(168, 172, 178, 0.05) 40%,
        rgba(197, 201, 205, 0.09) 48%,
        rgba(168, 172, 178, 0.05) 56%,
        transparent 70%,
        transparent 100%
    );
    animation: lightSweep 12s ease-in-out infinite alternate;
}

@keyframes lightSweep {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 4;
    background:
        linear-gradient(90deg, rgba(168, 172, 178, 0.025) 1px, transparent 1px),
        linear-gradient(rgba(168, 172, 178, 0.025) 1px, transparent 1px);
    background-size: 120px 120px;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px 100px;
    width: 100%;
}

.hero-divider {
    width: 100%;
    height: 1px;
    background: rgba(168, 172, 178, 0.2);
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeIn 0.6s ease 0.2s forwards;
}

.hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.hero-left {
    max-width: 640px;
}

.hero-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.7s ease 0.3s forwards;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.hero-title {
    font-size: clamp(44px, 5.5vw, 64px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--pure-white);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.7s ease 0.4s forwards;
}

.hero-line {
    display: block;
}

.hero-line-dim {
    color: rgba(255,255,255,0.35);
}

.hero-sub {
    font-size: 17px;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    max-width: 500px;
    line-height: 1.8;
    margin-bottom: 44px;
    opacity: 0;
    animation: fadeUp 0.7s ease 0.5s forwards;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    opacity: 0;
    animation: fadeUp 0.7s ease 0.6s forwards;
}

.hero-right {
    padding-bottom: 16px;
    opacity: 0;
    animation: fadeUp 0.7s ease 0.8s forwards;
}

.hero-explore {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-explore-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.hero-explore-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

.hero-explore-arrow {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(6px); opacity: 1; }
}

/* ============ SECTIONS — Light mode ============ */
.section {
    padding: var(--section-padding);
    position: relative;
    background: var(--light-bg);
}

.section-alt {
    background: var(--light-alt);
}

/* Platform section — first section after dark hero, acts as buffer */
.section-platform {
    background: var(--light-alt);
}

/* About section */
.section-about {
    background: var(--light-bg);
}

/* Investors section */
.section-investors {
    background: var(--light-alt);
    border-top: 1px solid var(--light-border);
}

.section-header {
    margin-bottom: 40px;
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 24px;
}

.section-desc {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.8;
}

/* ============ LAYERS GRID ============ */
.layers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--light-border);
}

.layer-card {
    background: var(--pure-white);
    padding: 56px 48px;
    transition: background 0.5s;
    position: relative;
    overflow: hidden;
}

.layer-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        145deg,
        transparent 0%,
        transparent 40%,
        rgba(74, 93, 138, 0.03) 50%,
        transparent 60%,
        transparent 100%
    );
    pointer-events: none;
}

.layer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s;
}

.layer-card:hover {
    background: var(--light-alt);
}

.layer-card:hover::before {
    transform: scaleX(1);
}

.layer-num {
    font-family: var(--font-main);
    font-size: 64px;
    font-weight: 400;
    color: var(--light-border);
    line-height: 1;
    display: block;
    margin-bottom: 24px;
    transition: color 0.5s;
}

.layer-card:hover .layer-num {
    color: var(--accent);
}

.layer-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-light);
    display: block;
    margin-bottom: 16px;
    transition: color 0.5s;
}

.layer-card:hover .layer-label {
    color: var(--text-secondary);
}

.layer-title {
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.layer-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

.layer-list {
    margin-bottom: 32px;
}

.layer-list li {
    font-size: 13px;
    color: var(--text-secondary);
    padding: 10px 0;
    border-bottom: 1px solid var(--light-border);
    font-weight: 500;
}

.layer-list li:last-child {
    border-bottom: none;
}

.layer-link {
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    transition: color 0.3s;
    position: relative;
    display: inline-block;
}

.layer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent-light);
    transform: scaleX(0.5);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.layer-link:hover {
    color: var(--accent-light);
}

.layer-link:hover::after {
    transform: scaleX(1);
}

/* Pipeline card — greyed out, coming soon feel */
.layer-card-pipeline {
    opacity: 0.55;
    transition: opacity 0.5s, background 0.5s;
}

.layer-card-pipeline:hover {
    opacity: 0.85;
}

.layer-card-pipeline .layer-label {
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 2px 8px;
    font-size: 9px;
    display: inline-block;
}

/* ============ VISUAL GALLERY — Reel carousel ============ */
.section-gallery {
    background: var(--light-bg);
    padding: 80px 0;
    overflow: hidden;
}

.gallery-reel {
    display: flex;
    gap: 14px;
    padding: 24px 80px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    align-items: center;
}
.gallery-reel::-webkit-scrollbar { display: none; }

.gallery-reel-item {
    flex: 0 0 400px;
    height: 480px;
    border-radius: 0;
    overflow: hidden;
    scroll-snap-align: center;
    transition: height 0.3s ease;
}

.gallery-reel-item--center {
    flex: 0 0 420px;
    height: 560px;
}

.gallery-reel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-reel-item:hover img {
    transform: scale(1.03);
}


/* ============ PROJECTS / PARTNERSHIPS ============ */
.project-nav {
    display: none; /* Hidden when single project — show via JS when multiple */
    align-items: center;
    gap: 16px;
}

.project-nav.has-multiple {
    display: flex;
}

.project-nav-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--light-border);
    color: var(--text-light);
    font-size: 18px;
    transition: border-color 0.3s, color 0.3s;
}

.project-nav-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.project-nav-btn:active {
    transform: scale(0.95);
}

.project-nav-count {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--text-light);
}

.project-card {
    background: var(--light-card);
    border: 1px solid var(--light-border);
    position: relative;
    overflow: hidden;
}

.project-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(74, 93, 138, 0.03) 50%,
        transparent 100%
    );
    pointer-events: none;
}

.project-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.project-info {
    padding: 56px;
}

.project-visual {
    position: relative;
}

.project-visual .gallery-placeholder {
    aspect-ratio: auto;
    height: 100%;
}

.project-logos {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--light-border);
}

.project-logo-text {
    display: flex;
    flex-direction: column;
}

/* Project logo needs dark version in light context */
.project-logo-text img {
    filter: invert(1);
}

.project-x {
    font-size: 28px;
    font-weight: 300;
    color: var(--text-light);
}

.project-partner {
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 6px;
    color: var(--text-primary);
    text-transform: uppercase;
}

.project-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #838A9A;
    margin-bottom: 20px;
}

.dot-live {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.project-title {
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.project-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 36px;
}

.project-meta {
    display: flex;
    gap: 40px;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.meta-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
}

.meta-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

/* ============ ABOUT (Split) ============ */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ============ EXTERNAL CTA BLOCK ============ */
.external-cta {
    margin-top: 40px;
    padding: 32px;
    border: 1px solid var(--light-border);
    background: var(--light-card);
    position: relative;
}

.external-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--accent);
}

.external-cta-badge {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 12px;
}

.external-cta-brand {
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.external-cta-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    padding: 3px 10px;
    border: 1px solid var(--light-border);
}

.external-cta-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* External link arrow — visible only for external links */
.external-cta .btn-arrow {
    display: inline-block;
    font-size: 13px;
    margin-left: 8px;
}

/* Mining-specific external CTA */
.external-cta-mining {
    border-color: var(--light-border);
    padding: 24px 28px;
}

.external-cta-mining::before {
    display: none;
}

.external-cta-label-green {
    color: #1C1F26;
    background: var(--mining-green);
    border-color: var(--mining-green);
}

.btn-mining {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    transition: color 0.3s;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.btn-mining::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent-light);
    transform: scaleX(0.5);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-mining .btn-arrow {
    display: inline-block;
    font-size: 11px;
    transition: transform 0.3s;
}

.btn-mining:hover {
    color: var(--accent-light);
}

.btn-mining:hover::after {
    transform: scaleX(1);
}

.btn-mining:hover .btn-arrow {
    transform: translate(2px, -2px);
}


/* ============ CTA BUTTONS GROUP ============ */
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.body-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 24px;
}

.video-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4/3;
}

.video-wrapper .split-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.video-wrapper .split-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    aspect-ratio: auto;
}

.video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(50, 54, 62, 0.2) 0%,
        rgba(74, 93, 138, 0.08) 50%,
        rgba(50, 54, 62, 0.25) 100%
    );
    pointer-events: none;
}

.split-video {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}


/* ============ NEWS ============ */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--light-border);
}

.news-card {
    background: var(--pure-white);
    transition: transform 0.4s, box-shadow 0.4s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.news-card-link {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.news-card:hover,
.news-card:focus-within {
    transform: translateY(-4px);
    z-index: 1;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.news-card .news-img img {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-card:hover .news-img img {
    transform: scale(1.05);
}


.news-img {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: linear-gradient(
        145deg,
        #D6D9DE 0%,
        #C0C4CA 50%,
        #D6D9DE 100%
    );
    border-bottom: 1px solid var(--light-border);
    transition: opacity 0.4s;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-body {
    padding: 24px 32px 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-body .news-link {
    margin-top: auto;
    align-self: flex-start;
}

.news-date {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.news-title {
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.news-link {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    transition: color 0.3s;
    position: relative;
    display: inline-block;
}

.news-excerpt {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.news-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent-light);
    transform: scaleX(0.5);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-link:hover {
    color: var(--accent-light);
}

.news-link:hover::after {
    transform: scaleX(1);
}

/* ============ INVESTORS ============ */
.ir-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.ir-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--light-bg);
    border: 1px solid var(--light-border);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.ir-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--light-card);
    transform: translateX(4px);
}

.ir-link-title {
    color: var(--text-primary);
    display: block;
    margin-bottom: 4px;
}

.ir-link-sub {
    font-size: 12px;
    color: var(--text-light);
}

.ir-icon {
    font-size: 10px;
    color: var(--accent);
}


/* ============ CTA ============ */
.section-cta {
    background: var(--pure-white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-block {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.cta-desc {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.8;
}

.section-cta .btn-primary {
    background: var(--accent);
    color: var(--pure-white);
}
.section-cta .btn-primary:hover {
    background: var(--accent-dim);
}

.contact-submit-link {
    background: none;
    border: none;
    border-bottom: 1px solid var(--light-border);
    padding: 4px 0;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
    margin-top: 8px;
    display: inline-block;
}
.contact-submit-link:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* ============ FINAL CTA — Split Layout ============ */
.final-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.final-cta-left {
    background: var(--pure-white);
    padding: 40px;
}

.final-cta-left .cta-title,
.final-cta-left .cta-desc {
    text-align: left;
}

.final-cta-left .cta-buttons {
    justify-content: flex-start;
}

.final-cta-right {
    width: 100%;
    background: var(--pure-white);
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dark-600);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--form-bg);
    border: 1px solid var(--form-border);
    color: var(--text-dark);
    font-family: var(--font-main);
    font-size: 14px;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.2s ease;
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(0,0,0,0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: var(--pure-white);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(0,0,0,0.4)' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-color: var(--form-bg);
    padding-right: 36px;
}

.form-group select option {
    background: var(--pure-white);
    color: var(--text-dark);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-submit {
    align-self: flex-start;
    margin-top: 8px;
}

.contact-submit.sending {
    opacity: 0.7;
    pointer-events: none;
}

.form-privacy {
    font-size: 12px;
    color: var(--dark-500);
    margin-top: 12px;
}
.form-privacy a {
    color: var(--dark-500);
    text-decoration: underline;
}

@media (max-width: 900px) {
    .final-cta {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ============ COOKIE BANNER ============ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9998;
    background: #32363e;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 16px 40px;
    display: none;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.cookie-banner.visible {
    display: flex;
    justify-content: center;
}

.cookie-banner.slide-down {
    transform: translateY(100%);
}

.cookie-inner {
    max-width: 1280px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
}

.cookie-text {
    font-size: 13px;
    color: var(--dark-500);
    margin: 0;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-accept {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: var(--accent);
    color: var(--pure-white);
    padding: 8px 20px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.cookie-accept:hover {
    background: var(--accent-light);
}

.cookie-decline {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: transparent;
    color: var(--dark-500);
    padding: 8px 20px;
    border: 1px solid var(--dark-700);
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.cookie-decline:hover {
    color: var(--pure-white);
    border-color: var(--dark-500);
}

.cookie-buttons {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .cookie-banner {
        padding: 16px 20px;
    }
    .cookie-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ============ FOOTER ============ */
.footer {
    background: linear-gradient(160deg, #5c6270 0%, var(--dark-600) 50%, #32363e 100%);
    border-top: none;
    padding: 80px 0 40px;
}

/* footer-stats/stat/stat-num/stat-label removed (CSS mort) */

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo { margin-bottom: 16px; }

.footer-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.footer-social a {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    transition: color 0.3s;
}

.footer-social a:hover { color: #ffffff; }

.footer-heading {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    padding: 6px 0;
    transition: color 0.3s;
}

.footer-col a:hover { color: #ffffff; }

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    font-family: var(--font-mono);
    letter-spacing: 1px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ============ ANIMATIONS ============ */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s, transform 0.7s;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in.stagger-1 { transition-delay: 0.1s; }
.fade-in.stagger-2 { transition-delay: 0.2s; }
.fade-in.stagger-3 { transition-delay: 0.3s; }

/* ============ PAGE HERO (for sub-pages) — Dark ============ */
.page-hero-image {
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.page-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.page-hero {
    position: relative;
    padding: 180px 0 80px;
    background: linear-gradient(160deg, #5c6270 0%, var(--dark-600) 50%, #32363e 100%);
    overflow: hidden;
}

.page-hero.page-hero-compact {
    padding: 140px 0 60px;
    min-height: auto;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(50, 54, 62, 0.3) 0%,
        rgba(50, 54, 62, 0.1) 100%
    );
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero-tag,
.page-hero-title,
.page-hero-desc {
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.7s ease forwards;
}

.page-hero-title { animation-delay: 0.1s; }
.page-hero-desc { animation-delay: 0.2s; }

.page-hero-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 24px;
}

.page-hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -2px;
    color: var(--pure-white);
    margin-bottom: 24px;
}

.page-hero-desc {
    font-size: 17px;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    line-height: 1.8;
}

/* ============ SR-ONLY (SEO) ============ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============ POWER COMING SOON ============ */
.power-coming-soon {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 40px 80px;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.power-coming-soon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(74,93,138,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.power-coming-soon-inner {
    max-width: 680px;
    text-align: center;
}

.power-cs-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 32px;
}

.power-cs-title {
    font-family: var(--font-main);
    font-size: clamp(48px, 8vw, 80px);
    font-weight: var(--title-weight-h1);
    color: var(--text-primary);
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 24px;
}

.power-cs-desc {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto 48px;
}

.power-cs-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 56px;
    padding: 32px 0;
    border-top: 1px solid var(--light-border);
    border-bottom: 1px solid var(--light-border);
}

.power-cs-stat {
    text-align: center;
}

.power-cs-num {
    display: block;
    font-family: var(--font-main);
    font-size: 32px;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: -1px;
    margin-bottom: 4px;
}

.power-cs-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
}

.power-cs-signup {
    margin-bottom: 40px;
}

.power-cs-signup-text {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.power-cs-form {
    display: flex;
    gap: 8px;
    max-width: 420px;
    margin: 0 auto;
}

.power-cs-input {
    flex: 1;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid var(--light-border);
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease;
}

.power-cs-input:focus {
    border-color: var(--accent);
}

.power-cs-input::placeholder {
    color: var(--text-light);
}

.power-cs-links {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.power-cs-links .btn-ghost {
    border: none;
    padding: 16px 4px;
}

.power-cs-links .btn-ghost::after {
    display: block;
}

@media (max-width: 768px) {
    .power-coming-soon { padding: 120px 20px 60px; }
    .power-cs-title { font-size: clamp(36px, 8vw, 80px); }
}

@media (max-width: 600px) {
    .power-cs-stats { flex-direction: row; gap: 16px; flex-wrap: nowrap; }
    .power-cs-num { font-size: clamp(24px, 6vw, 36px); }
    .power-cs-label { font-size: 9px; letter-spacing: 1px; }
    .power-cs-form { flex-direction: column; }
    .power-cs-links { flex-direction: column; align-items: center; }
}

/* ============ INVESTORS FIGURES BAR ============ */
.ir-figures-bar {
    background: var(--dark-600);
    padding: 40px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.ir-figures-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
}

.ir-figure {
    text-align: center;
}

.ir-figure-num {
    display: block;
    font-family: var(--font-main);
    font-size: 36px;
    font-weight: 800;
    color: var(--pure-white);
    letter-spacing: -1px;
    line-height: 1;
}

.ir-figure-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-top: 6px;
}

.ir-figure-divider {
    width: 1px;
    height: 40px;
    background: var(--dark-700);
}

@media (max-width: 768px) {
    .ir-figures-row { flex-wrap: wrap; gap: 24px; }
    .ir-figure-divider { display: none; }
    .ir-figure { width: 45%; }
    .ir-figure-num { font-size: 28px; }
}

/* ============ IR OVERVIEW ============ */
.ir-overview-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

.ir-highlight {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-border);
}

.ir-highlight:last-child {
    border-bottom: none;
}

.ir-highlight-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    white-space: nowrap;
    min-width: 80px;
}

.ir-highlight-text {
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .ir-overview-grid { grid-template-columns: 1fr; }
}


/* ============ PURPOSE VISION MISSION ============ */
.section-pvm {
    background: var(--light-bg);
}

.pvm-grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr 1px 1fr;
    align-items: start;
    gap: 0;
}

.pvm-col {
    padding: 48px 48px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.pvm-divider {
    background: var(--light-border);
    width: 1px;
    align-self: stretch;
    margin: 24px 0;
}

.pvm-title {
    font-family: var(--font-main);
    font-size: clamp(32px, 3.5vw, 52px);
    font-weight: 300;
    color: var(--text-primary);
    letter-spacing: -1.5px;
    line-height: 1;
}

.pvm-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 280px;
    text-align: center;
}

@media (max-width: 768px) {
    .pvm-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .pvm-divider {
        width: 40px;
        height: 1px;
        margin: 0 auto;
        align-self: auto;
    }
    .pvm-col { padding: 32px 24px; }
}

/* ============ WHAT WE DO ============ */
.section-wwd {
    background: var(--light-bg);
}

.wwd-split {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.wwd-title {
    font-family: var(--font-main);
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 300;
    color: var(--text-primary);
    letter-spacing: -2px;
    line-height: 1.05;
    position: sticky;
    top: 100px;
}

.wwd-intro {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--light-border);
}

.wwd-services {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.wwd-service {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 20px;
    padding: 32px 0;
    border-bottom: 1px solid var(--light-border);
}

.wwd-service-num {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--text-light);
    padding-top: 4px;
}

.wwd-service-title {
    font-size: var(--title-h3);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 8px;
}

.wwd-service-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 12px;
}

.what-link {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.what-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent-light);
    transform: scaleX(0.5);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.what-link:hover {
    color: var(--text-primary);
}

.what-link:hover::after {
    transform: scaleX(1);
}

@media (max-width: 768px) {
    .wwd-split { grid-template-columns: 1fr; gap: 32px; }
    .wwd-title { position: static; }
}

/* ============ WHY EUROPE — ORBIT LAYOUT ============ */
.why-europe-orbit {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: center;
}

.why-europe-col {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.why-europe-left {
    text-align: right;
}

.why-europe-right {
    text-align: left;
}

.why-europe-item {
    position: relative;
}

.why-europe-line {
    position: absolute;
    top: 14px;
    width: 32px;
    height: 1px;
    background: var(--light-border);
}

.why-europe-left .why-europe-line {
    right: -52px;
}

.why-europe-right .why-europe-line {
    left: -52px;
}

.why-europe-globe {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 40px;
    position: relative;
    flex-shrink: 0;
}

.why-europe-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: invert(1);
    mix-blend-mode: multiply;
    display: block;
}

.why-europe-num {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--text-light);
    display: block;
    margin-bottom: 8px;
}

.why-europe-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 6px;
}

.why-europe-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .why-europe-orbit {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .why-europe-globe {
        margin: 0 auto;
        width: 200px;
        height: 200px;
        order: -1;
    }
    .why-europe-left,
    .why-europe-right {
        text-align: left;
    }
    .why-europe-line {
        display: none;
    }
    .why-europe-col {
        gap: 32px;
    }
}

/* ============ SPLIT GRID TOP ALIGN ============ */
.split-grid-top {
    align-items: end;
}


/* ============ OFFERINGS ROWS ============ */
.offerings-rows {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--light-border);
}

.offering-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    padding: 40px 0;
    border-bottom: 1px solid var(--light-border);
}

.offering-num {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--text-light);
    padding-top: 4px;
}

.offering-title {
    font-size: var(--title-h3);
    font-weight: var(--title-weight-h3);
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 10px;
}

.offering-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.65;
}

.offering-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 4px;
}

.offering-list li {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
    padding-left: 12px;
    position: relative;
}

.offering-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent);
}

@media (max-width: 768px) {
    .offering-row {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }
    .offering-list { grid-column: 1; }
}

/* ============ RESOURCES ============ */
.resources-grid {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--light-border);
}

.resource-row {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--light-border);
    text-decoration: none;
}

.resource-icon {
    width: 48px;
    height: 48px;
    background: var(--light-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
    flex-shrink: 0;
}

.resource-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.resource-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

.resource-desc {
    font-size: 13px;
    color: var(--text-light);
}

.resource-action {
    font-family: var(--font-main);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--pure-white);
    white-space: nowrap;
    padding: 10px 24px;
    border: none;
    border-radius: 0;
    background: var(--accent);
    transition: background 0.2s, color 0.2s;
}

.resource-row:hover .resource-action {
    background: var(--accent-dim);
    color: var(--pure-white);
}

.resource-row:hover .resource-title {
    color: var(--accent);
}

.resources-empty {
    padding: 48px 0;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
}

@media (max-width: 600px) {
    .resource-row {
        grid-template-columns: 40px 1fr;
        grid-template-rows: auto auto;
    }
    .resource-action {
        grid-column: 2;
        justify-self: start;
    }
}





/* ============ SPLIT GRID IMAGE CONTAINERS ============ */
.split-right img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

/* ============ PROJECT VISUAL CONTAINER ============ */
.project-visual {
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.project-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============ GALLERY IMAGE CONTAINERS ============ */
.gallery-item {
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

/* Gallery reel — mobile */
@media (max-width: 768px) {
    .gallery-reel {
        padding: 16px 32px;
        gap: 10px;
    }
    .gallery-reel-item {
        flex: 0 0 280px;
        height: 360px;
    }
    .gallery-reel-item--center {
        flex: 0 0 300px;
        height: 400px;
    }
}


/* ============ ARTICLE PAGES ============ */
.article-content {
    max-width: 720px;
    margin: 0 auto;
}

.article-content h2 {
    font-family: var(--font-main);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 48px 0 16px;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.article-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.article-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.article-lead {
    font-size: 18px !important;
    line-height: 1.7 !important;
    color: var(--text-primary) !important;
    border-left: 3px solid var(--accent);
    padding-left: 20px;
    margin-bottom: 32px !important;
}

.article-cover {
    margin-bottom: 48px;
    aspect-ratio: 21/9;
    overflow: hidden;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1280px;
}

.article-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.article-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
    padding: 32px;
    background: var(--light-alt);
}

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

.article-stat-num {
    display: block;
    font-family: var(--font-main);
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.article-stat-label {
    display: block;
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-tertiary);
}

.article-cta {
    margin-top: 56px;
    padding: 40px;
    background: var(--light-alt);
    text-align: center;
}

.article-cta p {
    font-size: 18px !important;
    font-weight: 600;
    color: var(--text-primary) !important;
    margin-bottom: 24px !important;
}

.article-cta .btn {
    margin: 0 8px;
}

@media (max-width: 768px) {
    .article-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .article-cta .btn {
        display: block;
        margin: 8px 0;
    }
}

/* ============ RESPONSIVE — Tablet ============ */
@media (max-width: 1024px) {
    .layers-grid,
    .news-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .split-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .ir-grid { grid-template-columns: 1fr; }
    .project-content { grid-template-columns: 1fr; }
    .project-info { padding: 36px; }
    .project-meta { flex-wrap: wrap; gap: 24px; }
    .section-header-row { flex-direction: column; align-items: flex-start; gap: 16px; }
    .section-header-row .btn-ghost {
        border: 1px solid var(--light-border);
        padding: 12px 24px;
    }
    .section-header-row .btn-ghost::after { display: none; }
    .final-cta { grid-template-columns: 1fr; gap: 40px; }
    .cta-buttons { justify-content: flex-start !important; }
}

/* ============ RESPONSIVE — Mobile ============ */
@media (max-width: 768px) {
    :root { --section-padding: 72px 0; }

    /* Nav */
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(160deg, #5c6270 0%, var(--dark-600) 50%, #32363e 100%);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        z-index: 1000;
        padding: 80px 40px 40px;
    }
    .nav-links.mobile-open {
        display: flex;
    }
    .nav-links .nav-link {
        font-size: 14px;
        letter-spacing: 2px;
        padding: 18px 0;
        color: var(--pure-white);
        border-bottom: 1px solid rgba(255,255,255,0.1);
        width: 100%;
        text-align: center;
    }
    .nav-links .nav-link:hover,
    .nav-links .nav-link.nav-active {
        color: var(--pure-white);
    }
    .nav.scrolled .nav-links .nav-link {
        color: var(--pure-white);
    }
    .nav.scrolled .nav-links .nav-link:hover,
    .nav.scrolled .nav-links .nav-link.nav-active {
        color: var(--pure-white);
    }
    /* Mobile close button */
    .nav-close {
        position: absolute;
        top: 24px;
        right: 24px;
        background: none;
        border: none;
        color: var(--pure-white);
        font-size: 32px;
        line-height: 1;
        cursor: pointer;
        padding: 8px;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1001;
    }
    .nav-dropdown {
        width: 80%;
    }
    .nav-dropdown-content {
        position: static;
        padding-top: 0;
        background: transparent;
    }
    .nav-dropdown.open .nav-dropdown-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .nav-dropdown-content a {
        background: transparent;
        border: none;
        color: rgba(255,255,255,0.6);
        font-size: 13px;
        letter-spacing: 1.5px;
        text-transform: none;
        text-align: center;
        padding: 12px 0;
        min-width: auto;
        width: 100%;
    }
    .nav-dropdown-content a:hover,
    .nav-dropdown-content a.nav-active {
        color: var(--pure-white);
        background: transparent;
    }
    .nav-hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 210;
        padding: 12px;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }
    .nav-hamburger span {
        width: 22px;
        height: 1.5px;
        background: var(--pure-white);
        transition: transform 0.3s, opacity 0.3s;
    }
    .nav.scrolled .nav-hamburger span {
        background: var(--text-primary);
    }
    .nav-hamburger.active span {
        background: var(--pure-white);
    }
    .nav-hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(4.5px, 4.5px);
    }
    .nav-hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(4.5px, -4.5px);
    }
    .nav-cta { font-size: 9px; padding: 12px 20px; min-height: 44px; display: flex; align-items: center; }

    /* Split videos on mobile: show wrapper as static image, hide video */
    .split-video { display: none !important; }
    .split-right-video { display: none !important; }
    .video-wrapper {
        display: block;
        aspect-ratio: 4/3;
        background: var(--light-card);
    }
    .video-wrapper .split-poster {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .hero-video { display: block; }
    .nav-inner { padding: 0 20px; position: relative; }
    .nav-logo img { height: 26px; }
    .nav-hamburger {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Hero */
    .hero { min-height: auto; }
    .hero-content { padding: 0 20px 28px; }
    .hero-bottom { flex-direction: column; gap: 32px; }
    .hero-right { align-self: center; }
    .hero-title { font-size: 32px; letter-spacing: -0.5px; }
    .hero-sub { font-size: 15px; margin-bottom: 28px; }
    .hero-ctas { flex-direction: column; align-items: stretch; gap: 12px; }
    .hero-ctas .btn { text-align: center; }
    .hero-tag { font-size: 10px; letter-spacing: 3px; }
    .hero-divider { margin-bottom: 32px; }

    /* Sections */
    .container { padding: 0 20px; }
    .section-title { font-size: clamp(26px, 6vw, 36px); }
    .section-desc { font-size: 15px; }

    /* Layer cards */
    .layer-card { padding: 32px 24px; }
    .layer-num { font-size: 48px; }
    .layer-title { font-size: 22px; }
    .layer-card-pipeline .layer-label { font-size: 8px; }

    /* Gallery */
    .gallery-grid { grid-template-columns: 1fr; gap: 2px; }

    /* Projects */
    .project-logos { flex-direction: row; gap: 16px; align-items: center; }
    .project-info { padding: 24px; }
    .project-x { font-size: 20px; }
    .project-partner { font-size: 14px; letter-spacing: 3px; }
    .project-meta { gap: 16px; }

    /* News */
    .news-card:hover { transform: none; box-shadow: none; }

    /* CTA */
    .section-cta { padding: 72px 0; }
    .cta-title { font-size: clamp(24px, 5vw, 32px); }
    .final-cta { grid-template-columns: 1fr; gap: 0; }
    .final-cta-left { padding: 24px 24px 12px; }
    .final-cta-right { padding: 0 24px 24px; }
    .contact-form { gap: 12px; }
    .contact-form .form-row { grid-template-columns: 1fr; gap: 12px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; }

    /* Page hero */
    .page-hero { padding: 120px 0 56px; }
    .page-hero-title { font-size: clamp(28px, 7vw, 48px); letter-spacing: -1px; }
    .page-hero-desc { font-size: 15px; }

    /* External CTA */
    .external-cta { padding: 24px; }
    .external-cta-badge { flex-direction: column; gap: 8px; }

    /* Buttons */
    .btn { padding: 14px 28px; font-size: 10px; }
    .btn-lg { padding: 16px 32px; font-size: 11px; }

    /* Scroll progress */
    .scroll-progress { height: 2px; }

    /* === MOBILE UX AUDIT FIXES === */

    /* 1. Manifesto: 96px padding -> 48px mobile */
    .section-manifesto { padding: 48px 0; }

    /* 2. Gallery section: 80px padding -> 40px mobile */
    .section-gallery { padding: 40px 0; }

    /* 3. Hero explore: hide on mobile, wastes vertical space */
    .hero-right { display: none; }
    .hero-bottom { flex-direction: column; }

    /* 4. Page hero image (about, investors): 70vh -> 40vh mobile */
    .page-hero-image { height: 40vh; min-height: 200px; }

    /* 5. Footer: reduce top padding 80px -> 48px mobile */
    .footer { padding: 48px 0 32px; }

    /* 6. CTA desc: reduce bottom margin 48px -> 28px on mobile */
    .cta-desc { margin-bottom: 28px; }

    /* 7. News body: reduce horizontal padding 32px -> 20px */
    .news-body { padding: 20px 20px 24px; }

    /* 8. Form row: fix grid (flex-direction doesn't work on grid) */
    .form-row { grid-template-columns: 1fr; }

    /* 9. Power page: reduce top padding 120px -> 100px */
    .power-coming-soon { padding-top: 100px; }

    /* 10. Power stats: better mobile layout */
    .power-cs-stats { gap: 24px; flex-wrap: wrap; }

    /* 11. Featured news card excerpt: hide to save space */
    .news-card-featured .news-excerpt { display: none; }

    /* 12. Project visual: set reasonable mobile height */
    .project-visual { aspect-ratio: 16/9; }

    /* 13. Footer grid gap: tighter */
    .footer-grid { gap: 24px; margin-bottom: 32px; }
}

/* ============ RESPONSIVE — Small mobile ============ */
@media (max-width: 380px) {
    .hero-title { font-size: 26px; }
    .hero-content { padding: 0 16px 28px; }
    .container { padding: 0 16px; }
    .nav-inner { padding: 0 16px; }
    .section-title { font-size: 24px; }
    .layer-card { padding: 28px 20px; }
    .fade-in { transition: opacity 0.4s, transform 0.4s; }
    .fade-in.stagger-1,
    .fade-in.stagger-2,
    .fade-in.stagger-3 { transition-delay: 0s; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-tag, .hero-title, .hero-sub,
    .hero-ctas, .hero-right, .hero-divider {
        opacity: 1;
        transform: none;
    }

    .fade-in { opacity: 1; transform: none; }
}

/* ============ DISCLAIMER ============ */
.disclaimer {
    font-size: 11px;
    font-family: var(--font-mono);
    color: var(--text-light);
    padding: 16px 40px;
    background: var(--light-alt);
    border-bottom: 1px solid var(--light-border);
    text-align: center;
}

/* ============ FOOTER LEGAL ENTITY ============ */
.footer-legal-entity {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--dark-500);
    letter-spacing: 1px;
    margin-left: 16px;
}
