/* =============================================
   ARCHITECTURE OF WORK — Global Stylesheet
   ============================================= */

/* ===== FONTS ===== */
@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('https://fonts.gstatic.com/s/bricolagegrotesque/v1/3y9U6as8bTXq_nANBjzKo3IeZx8z6up5BeSl5jBNz_19PpbpMXuECpwUxJBOm_OJWiQ.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
}

/* ===== VARIABLES ===== */
:root {
  --midnight: #0a1628;
  --navy: #0f1f35;
  --signal: #3b82f6;
  --signal-dim: #1d4ed8;
  --signal-glow: rgba(59, 130, 246, 0.3);
  --ice: #e0f2fe;
  --paper: #f8fafc;
  --white: #ffffff;
  --slate: rgba(255,255,255,0.5);
  
  --cta: #FF6B35;
  --cta-hover: #E85A2A;
  
  --ink: #0f172a;
  --ink-80: rgba(15, 23, 42, 0.8);
  --ink-60: rgba(15, 23, 42, 0.6);
  --ink-40: rgba(15, 23, 42, 0.4);
  --ink-20: rgba(15, 23, 42, 0.2);
  --ink-10: rgba(15, 23, 42, 0.1);
  
  --font-display: 'Bricolage Grotesque', 'Arial Black', sans-serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--paper); color: var(--ink); line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* ===== NAVIGATION ===== */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: 64px; padding: 0 6vw; display: flex; justify-content: space-between; align-items: center; background: var(--midnight); }
.logo { display: flex; align-items: center; text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a { font-size: 0.85rem; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta { font-size: 0.85rem; font-weight: 500; color: var(--white) !important; background: var(--cta); padding: 0.6rem 1.25rem; text-decoration: none; transition: background 0.2s; }
.nav-cta:hover { background: var(--cta-hover); }

/* ===== LANGUAGE DROPDOWN ===== */
.lang-dropdown { position: relative; margin-left: 0.5rem; }
.lang-current { display: flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.6); cursor: pointer; padding: 0.4rem 0.6rem; border: 1px solid rgba(255,255,255,0.2); transition: all 0.2s; background: transparent; }
.lang-current:hover { color: var(--white); border-color: rgba(255,255,255,0.4); }
.lang-flag { font-size: 1rem; line-height: 1; }
.lang-arrow { font-size: 0.6rem; transition: transform 0.2s; }
.lang-dropdown:hover .lang-arrow { transform: rotate(180deg); }
.lang-menu { position: absolute; top: 100%; right: 0; margin-top: 0.5rem; background: var(--midnight); border: 1px solid rgba(255,255,255,0.15); min-width: 140px; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all 0.2s; z-index: 200; }
.lang-dropdown:hover .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu a { display: flex; align-items: center; gap: 0.6rem; padding: 0.6rem 1rem; font-size: 0.8rem; color: rgba(255,255,255,0.6) !important; text-decoration: none; transition: all 0.15s; }
.lang-menu a:hover { background: rgba(255,255,255,0.05); color: var(--white) !important; }
.lang-menu a.active { color: var(--signal) !important; }

/* ===== HAMBURGER ===== */
.mobile-menu { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; margin-right: -10px; }
.mobile-menu span { width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }

/* ===== SECTION TAG ===== */
.section-tag { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.15em; color: var(--ink-40); text-transform: uppercase; margin-bottom: 1rem; }

/* ===== HERO ===== */
.hero { min-height: 100vh; background: var(--midnight); color: var(--white); padding-top: 64px; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; }
.hero-content { padding: 8vh 6vw; display: flex; flex-direction: column; justify-content: center; }
.hero-headline { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1; letter-spacing: -0.04em; margin-bottom: 1.5rem; }
.hero-headline .outline { color: transparent; -webkit-text-stroke: 1.5px var(--signal); }
.hero-sub { font-size: 1.1rem; font-weight: 300; color: rgba(255,255,255,0.6); max-width: 440px; line-height: 1.7; margin-bottom: 2.5rem; }
.hero-cta { display: inline-flex; align-items: center; gap: 0.75rem; font-size: 1rem; font-weight: 500; color: var(--white); background: var(--cta); padding: 1rem 1.75rem; text-decoration: none; transition: all 0.2s; width: fit-content; }
.hero-cta:hover { background: var(--cta-hover); gap: 1rem; }
.hero-note { margin-top: 1rem; font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* ===== HERO VISUAL ===== */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.grid-pattern { position: absolute; inset: 0; background-image: linear-gradient(rgba(59, 130, 246, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(59, 130, 246, 0.12) 1px, transparent 1px); background-size: 50px 50px; mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%); }
.connect-svg { width: 100%; max-width: 550px; height: auto; animation: loopFade 6s ease-in-out infinite; }
@keyframes loopFade { 0%, 2% { opacity: 0; } 8%, 88% { opacity: 1; } 96%, 100% { opacity: 0; } }

/* Connection lines */
.conn-line { stroke: rgba(59, 130, 246, 0.4); stroke-width: 1.5; fill: none; stroke-dasharray: 500; stroke-dashoffset: 500; }
.conn-line.l1 { animation: weldLine 0.8s ease-out forwards 0.2s; }
.conn-line.l2 { animation: weldLine 0.8s ease-out forwards 0.4s; }
.conn-line.l3 { animation: weldLine 0.8s ease-out forwards 0.9s; }
.conn-line.l4 { animation: weldLine 0.8s ease-out forwards 1.1s; }
.conn-line.l5 { animation: weldLine 0.8s ease-out forwards 1.3s; }
.conn-line.l6 { animation: weldLine 0.8s ease-out forwards 1.5s; }
.conn-line.l7 { animation: weldLine 0.9s ease-out forwards 1.8s; }
.conn-line.l8 { animation: weldLine 0.8s ease-out forwards 2.1s; }
.conn-line.l9 { animation: weldLine 0.9s ease-out forwards 2.0s; }
.conn-line.l10 { animation: weldLine 0.8s ease-out forwards 2.3s; }
.conn-line.l11 { animation: weldLine 0.8s ease-out forwards 2.4s; }
.conn-line.l12 { animation: weldLine 0.8s ease-out forwards 2.6s; }
.conn-line.l13 { animation: weldLine 0.9s ease-out forwards 2.8s; }
@keyframes weldLine { to { stroke-dashoffset: 0; } }

/* Welding dots */
.weld-point { stroke: none; fill: none; }
.weld-dot { fill: #93c5fd; filter: drop-shadow(0 0 6px rgba(147, 197, 253, 1)) drop-shadow(0 0 12px rgba(59, 130, 246, 0.8)); }
.weld-dot.w1 { animation: weldMove1 0.8s ease-out forwards 0.2s; }
.weld-dot.w2 { animation: weldMove2 0.8s ease-out forwards 0.4s; }
.weld-dot.w3 { animation: weldMove3 0.8s ease-out forwards 0.9s; }
.weld-dot.w4 { animation: weldMove4 0.8s ease-out forwards 1.1s; }
.weld-dot.w5 { animation: weldMove5 0.8s ease-out forwards 1.3s; }
.weld-dot.w6 { animation: weldMove6 0.8s ease-out forwards 1.5s; }
.weld-dot.w7 { animation: weldMove7 0.9s ease-out forwards 1.8s; }
.weld-dot.w8 { animation: weldMove8 0.8s ease-out forwards 2.1s; }
.weld-dot.w9 { animation: weldMove9 0.9s ease-out forwards 2.0s; }
.weld-dot.w10 { animation: weldMove10 0.8s ease-out forwards 2.3s; }
.weld-dot.w11 { animation: weldMove11 0.8s ease-out forwards 2.4s; }
.weld-dot.w12 { animation: weldMove12 0.8s ease-out forwards 2.6s; }
.weld-dot.w13 { animation: weldMove13 0.9s ease-out forwards 2.8s; }
@keyframes weldMove1 { 0% { cx: 300; cy: 50; opacity: 1; } 90% { opacity: 1; } 100% { cx: 150; cy: 150; opacity: 0; } }
@keyframes weldMove2 { 0% { cx: 300; cy: 50; opacity: 1; } 90% { opacity: 1; } 100% { cx: 450; cy: 150; opacity: 0; } }
@keyframes weldMove3 { 0% { cx: 150; cy: 150; opacity: 1; } 90% { opacity: 1; } 100% { cx: 50; cy: 260; opacity: 0; } }
@keyframes weldMove4 { 0% { cx: 150; cy: 150; opacity: 1; } 90% { opacity: 1; } 100% { cx: 300; cy: 260; opacity: 0; } }
@keyframes weldMove5 { 0% { cx: 450; cy: 150; opacity: 1; } 90% { opacity: 1; } 100% { cx: 300; cy: 260; opacity: 0; } }
@keyframes weldMove6 { 0% { cx: 450; cy: 150; opacity: 1; } 90% { opacity: 1; } 100% { cx: 550; cy: 260; opacity: 0; } }
@keyframes weldMove7 { 0% { cx: 50; cy: 260; opacity: 1; } 90% { opacity: 1; } 100% { cx: 300; cy: 260; opacity: 0; } }
@keyframes weldMove8 { 0% { cx: 50; cy: 260; opacity: 1; } 90% { opacity: 1; } 100% { cx: 170; cy: 370; opacity: 0; } }
@keyframes weldMove9 { 0% { cx: 300; cy: 260; opacity: 1; } 90% { opacity: 1; } 100% { cx: 550; cy: 260; opacity: 0; } }
@keyframes weldMove10 { 0% { cx: 300; cy: 260; opacity: 1; } 90% { opacity: 1; } 100% { cx: 170; cy: 370; opacity: 0; } }
@keyframes weldMove11 { 0% { cx: 300; cy: 260; opacity: 1; } 90% { opacity: 1; } 100% { cx: 430; cy: 370; opacity: 0; } }
@keyframes weldMove12 { 0% { cx: 550; cy: 260; opacity: 1; } 90% { opacity: 1; } 100% { cx: 430; cy: 370; opacity: 0; } }
@keyframes weldMove13 { 0% { cx: 170; cy: 370; opacity: 1; } 90% { opacity: 1; } 100% { cx: 430; cy: 370; opacity: 0; } }

/* Node boxes */
.node-box { fill: rgba(59, 130, 246, 0.04); stroke: rgba(59, 130, 246, 0.25); stroke-width: 2; rx: 8; }
.node-box.nb1 { animation: boxActivate 0.3s ease forwards 0.15s, nodeFloat1 4s ease-in-out infinite 3.5s; }
.node-box.nb2 { animation: boxActivate 0.3s ease forwards 0.85s, nodeFloat2 4.5s ease-in-out infinite 3.6s; }
.node-box.nb3 { animation: boxActivate 0.3s ease forwards 0.35s, nodeFloat3 4.2s ease-in-out infinite 3.7s; }
.node-box.nb4 { animation: boxActivate 0.3s ease forwards 1.75s, nodeFloat1 4.8s ease-in-out infinite 3.8s; }
.node-box.nb5 { animation: boxActivate 0.3s ease forwards 1.05s, nodeFloat2 4.3s ease-in-out infinite 3.9s; }
.node-box.nb6 { animation: boxActivate 0.3s ease forwards 1.45s, nodeFloat3 4.6s ease-in-out infinite 4.0s; }
.node-box.nb7 { animation: boxActivate 0.3s ease forwards 2.05s, nodeFloat1 4.4s ease-in-out infinite 4.1s; }
.node-box.nb8 { animation: boxActivate 0.3s ease forwards 2.55s, nodeFloat2 4.7s ease-in-out infinite 4.2s; }
@keyframes boxActivate { to { stroke: rgba(59, 130, 246, 0.65); fill: rgba(59, 130, 246, 0.1); filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.15)); } }
@keyframes nodeFloat1 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(2px, -3px); } }
@keyframes nodeFloat2 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-2px, 2px); } }
@keyframes nodeFloat3 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(3px, 2px); } }

/* Node dots */
.node-dot { fill: rgba(59, 130, 246, 0.25); }
.node-dot.nd1 { animation: dotActivate 0.3s ease forwards 0.15s, dotPulse 2.5s ease-in-out infinite 3.5s; }
.node-dot.nd2 { animation: dotActivate 0.3s ease forwards 0.85s, dotPulse 2.5s ease-in-out infinite 3.6s; }
.node-dot.nd3 { animation: dotActivate 0.3s ease forwards 0.35s, dotPulse 2.5s ease-in-out infinite 3.7s; }
.node-dot.nd4 { animation: dotActivate 0.3s ease forwards 1.75s, dotPulse 2.5s ease-in-out infinite 3.8s; }
.node-dot.nd5 { animation: dotActivate 0.3s ease forwards 1.05s, dotPulse 2.5s ease-in-out infinite 3.9s; }
.node-dot.nd6 { animation: dotActivate 0.3s ease forwards 1.45s, dotPulse 2.5s ease-in-out infinite 4.0s; }
.node-dot.nd7 { animation: dotActivate 0.3s ease forwards 2.05s, dotPulse 2.5s ease-in-out infinite 4.1s; }
.node-dot.nd8 { animation: dotActivate 0.3s ease forwards 2.55s, dotPulse 2.5s ease-in-out infinite 4.2s; }
@keyframes dotActivate { to { fill: #3b82f6; filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.7)); } }
@keyframes dotPulse { 0%, 100% { filter: drop-shadow(0 0 6px rgba(59, 130, 246, 0.6)); } 50% { filter: drop-shadow(0 0 14px rgba(59, 130, 246, 0.9)); } }

/* ===== EVIDENCE ===== */
.evidence { background: var(--white); padding: 6rem 6vw; }
.evidence-header { text-align: center; margin-bottom: 4rem; }
.evidence-headline { font-family: var(--font-display); font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; letter-spacing: -0.03em; }
.evidence-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.evidence-card { background: var(--paper); padding: 2.5rem 2rem; text-align: center; border: 1px solid var(--ink-10); transition: all 0.2s; }
.evidence-card:hover { border-color: var(--signal); transform: translateY(-2px); }
.stat-number { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: var(--signal); line-height: 1; margin-bottom: 0.75rem; }
.stat-label { font-size: 0.9rem; font-weight: 400; color: var(--ink-60); line-height: 1.4; margin-bottom: 0.5rem; }
.stat-source { font-family: var(--font-mono); font-size: 0.65rem; color: var(--ink-40); letter-spacing: 0.05em; }

/* ===== PROBLEM ===== */
.problem { background: var(--midnight); color: var(--white); padding: 6rem 6vw; }
.problem-header { text-align: center; margin-bottom: 4rem; }
.problem-header .section-tag { color: rgba(255,255,255,0.4); }
.problem-headline { font-family: var(--font-display); font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; letter-spacing: -0.03em; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 3rem; }
.problem-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); padding: 2rem; }
.problem-icon { width: 48px; height: 48px; background: rgba(59, 130, 246, 0.15); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.problem-icon svg { width: 24px; height: 24px; stroke: var(--signal); fill: none; stroke-width: 1.5; }
.problem-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.75rem; }
.problem-desc { font-size: 0.9rem; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.6; }
.consequences { max-width: 700px; margin: 0 auto; padding: 2rem; border-left: 2px solid var(--signal); background: rgba(59, 130, 246, 0.05); }
.consequences p { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.7); line-height: 1.7; font-style: italic; }

/* ===== SOLUTION ===== */
.solution { background: var(--paper); padding: 6rem 6vw; }
.solution-header { text-align: center; margin-bottom: 4rem; }
.solution-headline { font-family: var(--font-display); font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 1rem; }
.solution-sub { font-size: 1.1rem; font-weight: 300; color: var(--ink-60); max-width: 600px; margin: 0 auto; }
.solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.solution-card { background: var(--white); border: 1px solid var(--ink-10); padding: 2.5rem 2rem; text-align: center; transition: all 0.2s; }
.solution-card:hover { border-color: var(--signal); transform: translateY(-2px); }
.solution-number { font-family: var(--font-mono); font-size: 0.7rem; color: var(--signal); letter-spacing: 0.1em; margin-bottom: 1rem; }
.solution-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; margin-bottom: 0.5rem; }
.solution-tagline { font-size: 0.85rem; color: var(--signal); font-weight: 500; margin-bottom: 1rem; }
.solution-desc { font-size: 0.9rem; font-weight: 300; color: var(--ink-60); line-height: 1.6; }

/* ===== PROCESS HOME ===== */
.process-home { background: var(--white); padding: 6rem 6vw; }
.process-home-header { text-align: center; margin-bottom: 4rem; }
.process-home-headline { font-family: var(--font-display); font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; letter-spacing: -0.03em; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.process-step { text-align: center; position: relative; }
.step-number { font-family: var(--font-mono); font-size: 0.7rem; color: var(--signal); letter-spacing: 0.1em; margin-bottom: 1rem; }
.step-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; margin-bottom: 0.5rem; }
.step-desc { font-size: 0.85rem; font-weight: 300; color: var(--ink-60); line-height: 1.5; margin-bottom: 0.5rem; }
.step-time { font-family: var(--font-mono); font-size: 0.7rem; color: var(--ink-40); }

/* ===== SOCIAL PROOF ===== */
.proof { background: var(--paper); padding: 6rem 6vw; }
.proof-header { text-align: center; margin-bottom: 4rem; }
.proof-headline { font-family: var(--font-display); font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; letter-spacing: -0.03em; }
.proof-placeholder { text-align: center; padding: 3rem; background: var(--white); border: 1px dashed var(--ink-20); }
.proof-placeholder p { color: var(--ink-40); font-size: 0.9rem; }

/* ===== FINAL CTA ===== */
.final-cta { background: var(--midnight); color: var(--white); padding: 8rem 6vw; text-align: center; }
.final-headline { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 1.5rem; }
.final-sub { font-size: 1.1rem; font-weight: 300; color: rgba(255,255,255,0.6); max-width: 550px; margin: 0 auto 2.5rem; line-height: 1.7; }
.final-cta-button { display: inline-flex; align-items: center; gap: 0.75rem; font-size: 1.1rem; font-weight: 500; color: var(--white); background: var(--cta); padding: 1.1rem 2rem; text-decoration: none; transition: all 0.2s; }
.final-cta-button:hover { background: var(--cta-hover); gap: 1rem; }
.final-note { margin-top: 1.5rem; font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* =============================================
   SUBPAGE STYLES
   ============================================= */

/* ===== PAGE HERO ===== */
.page-hero { background: var(--midnight); color: var(--white); padding: 10rem 6vw 5rem; text-align: center; }
.page-tag { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.15em; color: rgba(255,255,255,0.4); text-transform: uppercase; margin-bottom: 1.5rem; }
.page-headline { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 1.5rem; }
.page-sub { font-size: 1.1rem; font-weight: 300; color: rgba(255,255,255,0.6); max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* ===== PROBLEM STATS ===== */
.problem-stats { background: var(--paper); padding: 5rem 6vw; }
.stats-header { text-align: center; margin-bottom: 3rem; }
.stats-headline { font-family: var(--font-display); font-size: clamp(1.3rem, 2vw, 1.8rem); font-weight: 800; letter-spacing: -0.03em; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat-card { background: var(--white); border: 1px solid var(--ink-10); padding: 2rem 1.5rem; text-align: center; }

/* ===== PROCESS FLOW ===== */
.process-flow { background: var(--white); padding: 5rem 6vw; }
.process-header { text-align: center; margin-bottom: 3rem; }
.process-headline { font-family: var(--font-display); font-size: clamp(1.3rem, 2vw, 1.8rem); font-weight: 800; letter-spacing: -0.03em; }
.process-visual { max-width: 900px; margin: 0 auto 4rem; }
.process-svg { width: 100%; height: auto; }
.process-node-box { fill: rgba(59, 130, 246, 0.08); stroke: rgba(59, 130, 246, 0.3); stroke-width: 1.5; }
.process-connector { stroke: rgba(59, 130, 246, 0.3); stroke-width: 2; }
.process-arrow { fill: rgba(59, 130, 246, 0.4); }
.process-number { font-family: var(--font-mono); font-size: 12px; fill: var(--signal); }
.process-title { font-family: var(--font-body); font-size: 16px; font-weight: 600; fill: var(--ink); }
.process-desc { font-family: var(--font-body); font-size: 11px; fill: var(--ink-60); }
.process-details { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.process-detail { text-align: center; }
.detail-number { font-family: var(--font-mono); font-size: 0.7rem; color: var(--signal); letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.detail-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; margin-bottom: 0.75rem; }
.detail-desc { font-size: 0.85rem; font-weight: 300; color: var(--ink-60); line-height: 1.6; margin-bottom: 0.5rem; }
.detail-time { font-family: var(--font-mono); font-size: 0.7rem; color: var(--ink-40); }

/* ===== RESULTS ===== */
.results { background: var(--paper); padding: 5rem 6vw; }
.results-header { text-align: center; margin-bottom: 3rem; }
.results-headline { font-family: var(--font-display); font-size: clamp(1.3rem, 2vw, 1.8rem); font-weight: 800; letter-spacing: -0.03em; }
.results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.result-card { background: var(--white); border: 1px solid var(--ink-10); padding: 2rem 1.5rem; text-align: center; }
.result-icon { width: 48px; height: 48px; background: rgba(59, 130, 246, 0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.result-icon svg { width: 24px; height: 24px; stroke: var(--signal); fill: none; stroke-width: 1.5; }
.result-number { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--signal); line-height: 1; margin-bottom: 0.5rem; }
.result-label { font-size: 0.85rem; color: var(--ink-60); margin-bottom: 0.5rem; }
.result-source { font-family: var(--font-mono); font-size: 0.65rem; color: var(--ink-40); }

/* ===== ORGANIC ROLLOUT ===== */
.rollout { background: var(--white); padding: 5rem 6vw; }
.rollout-header { text-align: center; margin-bottom: 3rem; }
.rollout-headline { font-family: var(--font-display); font-size: clamp(1.3rem, 2vw, 1.8rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 1rem; }
.rollout-sub { font-size: 1rem; color: var(--ink-60); }
.rollout-table { max-width: 1000px; margin: 0 auto; border: 1px solid var(--ink-10); }
.rollout-row { display: grid; grid-template-columns: 1fr 1fr 1.5fr; border-bottom: 1px solid var(--ink-10); }
.rollout-row:last-child { border-bottom: none; }
.rollout-row.header { background: var(--paper); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-60); }
.rollout-cell { padding: 1.25rem 1.5rem; font-size: 0.9rem; border-right: 1px solid var(--ink-10); }
.rollout-cell:last-child { border-right: none; }
.rollout-pain { color: var(--ink-80); font-style: italic; }
.rollout-product { font-weight: 500; color: var(--signal); }
.rollout-arrow { color: var(--ink-40); margin: 0 0.25rem; }

/* ===== PAGE CTA ===== */
.page-cta { background: var(--midnight); color: var(--white); padding: 6rem 6vw; text-align: center; }
.cta-headline { font-family: var(--font-display); font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 1rem; }
.cta-sub { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.6); margin-bottom: 2rem; }
.cta-button { display: inline-flex; align-items: center; gap: 0.75rem; font-size: 1rem; font-weight: 500; color: var(--white); background: var(--cta); padding: 1rem 1.75rem; text-decoration: none; transition: all 0.2s; }
.cta-button:hover { background: var(--cta-hover); gap: 1rem; }
.cta-note { margin-top: 1rem; font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* ===== ABOUT: WHO WE ARE ===== */
.who-section { background: var(--paper); padding: 5rem 6vw; }
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.who-content h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 1.5rem; }
.who-content p { font-size: 1rem; font-weight: 300; color: var(--ink-60); line-height: 1.7; margin-bottom: 1rem; }
.who-visual { display: flex; flex-direction: column; gap: 1rem; }
.entity-block { background: var(--white); border: 1px solid var(--ink-10); padding: 1.5rem; }
.entity-block.holding { background: var(--midnight); border-color: var(--midnight); }
.entity-block.holding .entity-name, .entity-block.holding .entity-role { color: var(--white); }
.entity-block.holding .entity-role { color: rgba(255,255,255,0.6); }
.entity-name { font-weight: 600; margin-bottom: 0.25rem; }
.entity-role { font-size: 0.85rem; color: var(--ink-60); }

/* ===== ABOUT: THREE LAYERS ===== */
.layers-section { background: var(--white); padding: 5rem 6vw; }
.layers-header { text-align: center; margin-bottom: 3rem; }
.layers-headline { font-family: var(--font-display); font-size: clamp(1.3rem, 2vw, 1.8rem); font-weight: 800; letter-spacing: -0.03em; }
.layers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.layer-card { background: var(--paper); border: 1px solid var(--ink-10); padding: 2.5rem 2rem; text-align: center; }
.layer-icon { font-family: var(--font-mono); font-size: 0.7rem; color: var(--signal); letter-spacing: 0.1em; margin-bottom: 1rem; text-transform: uppercase; }
.layer-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; margin-bottom: 0.5rem; }
.layer-tagline { font-size: 0.85rem; color: var(--signal); font-weight: 500; margin-bottom: 1rem; }
.layer-desc { font-size: 0.9rem; font-weight: 300; color: var(--ink-60); line-height: 1.6; }

/* ===== ABOUT: GEOGRAPHY ===== */
.geo-section { background: var(--paper); padding: 5rem 6vw; }
.geo-header { text-align: center; margin-bottom: 3rem; }
.geo-headline { font-family: var(--font-display); font-size: clamp(1.3rem, 2vw, 1.8rem); font-weight: 800; letter-spacing: -0.03em; }
.geo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.geo-block { background: var(--white); border: 1px solid var(--ink-10); padding: 2rem; }
.geo-label { font-family: var(--font-mono); font-size: 0.65rem; color: var(--signal); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem; }
.geo-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; margin-bottom: 0.75rem; }
.geo-countries { font-size: 0.85rem; font-weight: 300; color: var(--ink-60); line-height: 1.5; margin-bottom: 0.5rem; }
.geo-note { font-family: var(--font-mono); font-size: 0.65rem; color: var(--ink-40); }

/* ===== ABOUT: PRINCIPLES ===== */
.principles-section { background: var(--white); padding: 5rem 6vw; }
.principles-header { text-align: center; margin-bottom: 3rem; }
.principles-headline { font-family: var(--font-display); font-size: clamp(1.3rem, 2vw, 1.8rem); font-weight: 800; letter-spacing: -0.03em; }
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.principle { text-align: center; padding: 2rem; }
.principle-number { font-family: var(--font-mono); font-size: 0.7rem; color: var(--signal); letter-spacing: 0.1em; margin-bottom: 1rem; }
.principle-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; margin-bottom: 0.75rem; }
.principle-desc { font-size: 0.9rem; font-weight: 300; color: var(--ink-60); line-height: 1.6; }

/* ===== FOOTER ===== */
footer { background: var(--midnight); color: rgba(255,255,255,0.4); padding: 2rem 6vw; display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem; }
footer a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--white); }
.footer-links { display: flex; gap: 2rem; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { min-height: 50vh; }
  .evidence-grid, .stats-grid, .results-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid, .solution-grid, .layers-grid, .principles-grid { grid-template-columns: 1fr; }
  .process-steps, .process-details, .geo-grid { grid-template-columns: repeat(2, 1fr); }
  .who-grid { grid-template-columns: 1fr; }
  .rollout-row { grid-template-columns: 1fr; }
  .rollout-cell { border-right: none; border-bottom: 1px solid var(--ink-10); }
  .rollout-row.header { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu { display: flex; }
  .evidence-grid, .stats-grid, .results-grid, .process-steps, .process-details, .geo-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 4vh 6vw; }
  .process-visual { display: none; }
  footer { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-links { flex-direction: column; gap: 0.5rem; }
}
