/* ============================================
   RAULUTION-GABON — SHARED STYLESHEET
   ============================================ */

:root {
  --accent: #FF4A1C;
  --accent-deep: #E63E14;
  --ink: #0a0908;
  --ink-2: #141210;
  --ink-3: #1d1a17;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --paper: #f4ede3;
  --paper-dim: #d8cfc1;
  --muted: rgba(244, 237, 227, 0.55);
  --muted-2: rgba(244, 237, 227, 0.38);

  --gabon-green: #009E60;
  --gabon-yellow: #FCD116;
  --gabon-blue: #3A75C4;

  --display: 'Archivo Black', 'Arial Black', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --body: 'Inter', system-ui, sans-serif;

  --maxw: 1440px;
  --gutter: clamp(20px, 4vw, 56px);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--ink);
  color: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--accent); color: var(--ink); }

/* ============================================
   GRID OVERLAY
   ============================================ */
.grid-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: linear-gradient(to right, var(--line) 1px, transparent 1px);
  background-size: calc((100vw - 2 * var(--gutter)) / 12) 100%;
  background-position: var(--gutter) 0;
  opacity: 0.6;
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  mix-blend-mode: difference;
  color: #fff;
  transition: background 0.3s, mix-blend-mode 0.3s;
}
.nav.solid {
  mix-blend-mode: normal;
  background: rgba(10, 9, 8, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.logo {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: -0.04em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.logo .dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  align-self: end;
  margin-bottom: 4px;
  margin-left: 4px;
}
.logo .full {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-left: 10px;
  opacity: 0.7;
  font-weight: 500;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
}
.nav-link {
  opacity: 0.7;
  transition: opacity 0.2s;
  position: relative;
}
.nav-link:hover { opacity: 1; }
.nav-link.active {
  opacity: 1;
  color: var(--accent);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -3px;
  height: 1.5px;
  background: var(--accent);
}

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  border: 1px solid rgba(255,255,255,0.25);
  overflow: hidden;
}
.lang-toggle button {
  padding: 5px 9px;
  opacity: 0.5;
  transition: opacity 0.2s, background 0.2s;
  font-size: 11px;
  font-family: var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.lang-toggle button:hover { opacity: 0.9; }
.lang-toggle button.lang-active {
  opacity: 1;
  background: var(--accent);
  color: var(--ink);
}

.btn-tag {
  background: var(--ink);
  color: var(--paper);
  padding: 10px 16px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  font-weight: 600;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  transition: transform 0.2s;
}
.btn-tag:hover { transform: translate(-2px, -2px); }

/* ============================================
   HERO — full height (index)
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--accent);
  color: var(--ink);
  padding: 140px var(--gutter) 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg svg {
  position: absolute;
  right: -10%;
  top: 5%;
  width: 75%;
  height: 110%;
  opacity: 0.18;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(48px, 8vw, 140px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin-bottom: 36px;
  text-wrap: pretty;
}
.hero h1 .line {
  display: block;
  overflow: hidden;
}
.hero h1 .line span {
  display: inline-block;
  transform: translateY(110%);
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero h1 .line:nth-child(1) span { animation-delay: 0.1s; }
.hero h1 .line:nth-child(2) span { animation-delay: 0.22s; }

@keyframes rise {
  to { transform: translateY(0); }
}

.hero-sub {
  font-size: 18px;
  line-height: 1.45;
  max-width: 480px;
  margin-bottom: 40px;
  font-weight: 500;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

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

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 80px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 60px;
  border-top: 1.5px solid var(--ink);
  padding-top: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-meta-item .label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 8px;
}
.hero-meta-item .val {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: -0.03em;
  line-height: 1;
}

/* ============================================
   INNER PAGE HERO — 60vh
   ============================================ */
.hero-inner {
  position: relative;
  min-height: 60vh;
  background: var(--accent);
  color: var(--ink);
  padding: 140px var(--gutter) 72px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-inner .hero-bg svg {
  opacity: 0.12;
}
.hero-inner-content {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
}
.hero-inner h1 {
  font-family: var(--display);
  font-size: clamp(44px, 7vw, 110px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin-bottom: 28px;
  text-wrap: pretty;
}
.hero-inner h1 .line {
  display: block;
  overflow: hidden;
}
.hero-inner h1 .line span {
  display: inline-block;
  transform: translateY(110%);
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-inner h1 .line:nth-child(1) span { animation-delay: 0.1s; }
.hero-inner h1 .line:nth-child(2) span { animation-delay: 0.22s; }
.hero-inner-sub {
  font-size: 17px;
  line-height: 1.5;
  max-width: 520px;
  font-weight: 500;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-inner-meta {
  display: flex;
  gap: 40px;
  border-top: 1.5px solid var(--ink);
  padding-top: 24px;
  margin-top: 36px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-inner-meta-item .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 6px;
}
.hero-inner-meta-item .val {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.03em;
  line-height: 1;
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
  background: var(--ink);
  color: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}
.marquee.on-accent {
  background: var(--accent);
  color: var(--ink);
  border-color: rgba(0,0,0,0.15);
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: scroll 38s linear infinite;
  width: max-content;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 48px;
}
.marquee-track .dot {
  width: 5px; height: 5px;
  background: currentColor;
  border-radius: 50%;
  opacity: 0.5;
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  position: relative;
  padding: 140px var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 14px;
  border: 1px solid var(--accent);
  margin-bottom: 48px;
}
.eyebrow::before {
  content: '×';
  font-weight: 700;
  font-size: 14px;
}
.eyebrow.plain { border: none; padding: 0; }
.eyebrow.plain::before { content: '◆'; font-size: 8px; }

.section-head { display: flex; justify-content: center; }
.section-head.left { justify-content: flex-start; }

.section h2 {
  font-family: var(--display);
  font-size: clamp(40px, 6.5vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 80px;
  text-wrap: balance;
}
.section h2 .hi {
  background: var(--accent);
  color: var(--ink);
  padding: 0 0.12em;
  display: inline-block;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-frame {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 16px 28px;
  border: 1.5px solid var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  transition: all 0.25s;
  background: transparent;
  color: var(--ink);
}
.btn-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
}
.btn-frame:hover { color: var(--accent); }
.btn-frame:hover::before { transform: scaleX(1); }
.btn-frame.solid {
  background: var(--ink);
  color: var(--accent);
}
.btn-frame.solid::before { background: var(--paper); }
.btn-frame.solid:hover { color: var(--ink); }

/* Dark-bg variant */
.btn-frame.light {
  border-color: var(--paper);
  color: var(--paper);
}
.btn-frame.light::before { background: var(--paper); }
.btn-frame.light:hover { color: var(--ink); }

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 60px;
}
.problem-card {
  background: var(--ink);
  padding: 36px 32px;
  position: relative;
  min-height: 280px;
  transition: background 0.3s;
}
.problem-card:hover { background: var(--ink-2); }
.problem-card .num {
  position: absolute;
  top: 36px; right: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  opacity: 0.4;
}
.problem-card .cat {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.problem-card h3 {
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 16px;
  font-weight: 400;
}
.problem-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 320px;
}
.problem-visual {
  background: var(--ink);
  padding: 0;
  position: relative;
  overflow: hidden;
  grid-row: span 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.radar {
  width: 80%;
  aspect-ratio: 1;
  position: relative;
}
.radar svg { width: 100%; height: 100%; opacity: 0.5; }
.radar .blip {
  position: absolute;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  bottom: 25%; right: 35%;
  box-shadow: 0 0 0 0 var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 74, 28, 0.6); }
  100% { box-shadow: 0 0 0 30px rgba(255, 74, 28, 0); }
}

/* ============================================
   SERVICES
   ============================================ */
.services-section {
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid var(--line);
}
.services-section .eyebrow { color: var(--accent); }
.services-section h2 .hi { background: var(--accent); color: var(--paper); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(10,9,8,0.12);
  border: 1px solid rgba(10,9,8,0.12);
}
.service-card {
  background: var(--paper);
  padding: 40px 32px 32px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}
.service-card > * { position: relative; z-index: 1; }
.service-card:hover { color: var(--paper); }
.service-card:hover::after { transform: translateY(0); }
.service-card .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  opacity: 0.5;
  margin-bottom: 28px;
}
.service-card .icon {
  width: 48px; height: 48px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card .icon svg {
  width: 100%; height: 100%;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}
.service-card h3 {
  font-family: var(--display);
  font-size: 32px;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 16px;
  font-weight: 400;
}
.service-card p {
  font-size: 14.5px;
  line-height: 1.55;
  opacity: 0.7;
  margin-bottom: auto;
}
.service-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 28px;
}
.service-card .tag, .tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  border: 1px solid currentColor;
  opacity: 0.6;
}
.service-card .arrow {
  position: absolute;
  top: 36px; right: 32px;
  width: 24px; height: 24px;
  transition: transform 0.3s;
  z-index: 1;
}
.service-card:hover .arrow { transform: rotate(-45deg); }

/* ============================================
   PROCESS
   ============================================ */
.process-section {
  background: var(--ink);
  border-top: 1px solid var(--line);
}
.process-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.process-row {
  display: grid;
  grid-template-columns: 100px 1fr 1.4fr 80px;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: padding 0.3s;
  position: relative;
}
.process-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 74, 28, 0.04), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.process-row:hover::before { opacity: 1; }
.process-row:hover { padding-left: 16px; }
.process-row .num {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--accent);
  padding-top: 8px;
}
.process-row h3 {
  font-family: var(--display);
  font-size: clamp(28px, 3.5vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1;
  font-weight: 400;
}
.process-row p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 480px;
}
.process-row .meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
  text-align: right;
  padding-top: 12px;
}

/* ============================================
   STATS
   ============================================ */
.stats-section {
  background: var(--accent);
  color: var(--ink);
  padding: 100px var(--gutter);
  position: relative;
  overflow: hidden;
}
.stats-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  border-top: 1.5px solid var(--ink);
  padding-top: 40px;
}
.stat .num {
  font-family: var(--display);
  font-size: clamp(60px, 9vw, 140px);
  letter-spacing: -0.05em;
  line-height: 0.85;
  margin-bottom: 16px;
}
.stat .num .unit {
  font-size: 0.5em;
  vertical-align: top;
  margin-left: 4px;
}
.stat .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  max-width: 180px;
  line-height: 1.4;
}
.stats-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.stats-eyebrow::before {
  content: '';
  width: 24px; height: 1.5px;
  background: var(--ink);
}
.stats-title {
  font-family: var(--display);
  font-size: clamp(40px, 5.5vw, 80px);
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 60px;
  max-width: 900px;
}

/* ============================================
   STACK
   ============================================ */
.stack-section {
  background: var(--ink);
  border-top: 1px solid var(--line);
}
.stack-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 40px;
}
.stack-item {
  background: var(--ink);
  padding: 28px 20px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 120px;
  transition: background 0.25s, color 0.25s;
  cursor: default;
}
.stack-item:hover { background: var(--ink-2); color: var(--paper); }
.stack-item .name {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--paper);
  font-weight: 400;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--paper);
  color: var(--ink);
  padding: 140px var(--gutter);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.cta-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: end;
}
.cta-title {
  font-family: var(--display);
  font-size: clamp(48px, 8vw, 128px);
  letter-spacing: -0.045em;
  line-height: 0.9;
  text-wrap: balance;
}
.cta-title em { font-style: normal; color: var(--accent); }
.cta-meta { display: flex; flex-direction: column; gap: 28px; padding-bottom: 12px; }
.cta-meta .row {
  border-top: 1px solid rgba(10,9,8,0.2);
  padding-top: 14px;
}
.cta-meta .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 6px;
}
.cta-meta .val {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.02em;
}
.cta-btn-row {
  margin-top: 60px;
  grid-column: 1 / -1;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-section .btn-frame { color: var(--ink); border-color: var(--ink); }
.cta-section .btn-frame.solid { background: var(--ink); color: var(--paper); }
.cta-section .btn-frame.solid:hover { color: var(--ink); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 80px var(--gutter) 32px;
  border-top: 1px solid var(--line);
}
.footer-inner { max-width: var(--maxw); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.footer-mark {
  font-family: var(--display);
  font-size: 80px;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 16px;
}
.footer-mark .dot {
  display: inline-block;
  width: 16px; height: 16px;
  background: var(--accent);
  border-radius: 50%;
  margin-left: 4px;
  margin-bottom: 10px;
  vertical-align: bottom;
}
.footer-tag {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
  max-width: 280px;
  line-height: 1.5;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; opacity: 0.75; transition: opacity 0.2s; }
.footer-col a:hover { opacity: 1; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
  flex-wrap: wrap;
  gap: 12px;
}
.flag-stripe {
  display: inline-flex;
  width: 36px; height: 8px;
  vertical-align: middle;
  margin-left: 8px;
}
.flag-stripe span { flex: 1; height: 100%; }
.flag-stripe span:nth-child(1) { background: var(--gabon-green); }
.flag-stripe span:nth-child(2) { background: var(--gabon-yellow); }
.flag-stripe span:nth-child(3) { background: var(--gabon-blue); }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.stagger > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in.stagger > * { opacity: 1; transform: translateY(0); }
.reveal.in.stagger > *:nth-child(1) { transition-delay: 0.05s; }
.reveal.in.stagger > *:nth-child(2) { transition-delay: 0.12s; }
.reveal.in.stagger > *:nth-child(3) { transition-delay: 0.19s; }
.reveal.in.stagger > *:nth-child(4) { transition-delay: 0.26s; }
.reveal.in.stagger > *:nth-child(5) { transition-delay: 0.33s; }
.reveal.in.stagger > *:nth-child(6) { transition-delay: 0.40s; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story-section {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-story-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 120px var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.about-story-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-story-label::before {
  content: '';
  width: 24px; height: 1.5px;
  background: var(--accent);
}
.about-story-year {
  font-family: var(--display);
  font-size: clamp(80px, 14vw, 200px);
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: var(--paper);
  opacity: 0.08;
  margin-top: 12px;
}
.about-story-body p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 24px;
}
.about-story-body p:last-child { margin-bottom: 0; }
.about-story-body strong { color: var(--paper); font-weight: 600; }

.team-section {
  background: var(--ink);
  border-top: 1px solid var(--line);
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 60px;
}
.team-card {
  background: var(--ink-2);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.team-card:hover { background: var(--ink-3); }
.team-card-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  opacity: 0.35;
  margin-bottom: 32px;
}
.team-card-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 28px;
  color: var(--ink);
  margin-bottom: 28px;
  flex-shrink: 0;
}
.team-card-name {
  font-family: var(--display);
  font-size: clamp(24px, 2.5vw, 36px);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 400;
}
.team-card-title {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.team-card-bio {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 420px;
}
.team-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.team-card-exp {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(255,74,28,0.3);
  padding: 4px 10px;
  display: inline-block;
  margin-top: 8px;
}

.mission-section {
  background: var(--accent);
  color: var(--ink);
  padding: 120px var(--gutter);
  position: relative;
  overflow: hidden;
}
.mission-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.mission-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mission-label::before {
  content: '';
  width: 24px; height: 1.5px;
  background: var(--ink);
}
.mission-statement {
  font-family: var(--display);
  font-size: clamp(36px, 5.5vw, 80px);
  letter-spacing: -0.04em;
  line-height: 0.97;
  max-width: 1100px;
}

.values-section {
  background: var(--ink);
  border-top: 1px solid var(--line);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 60px;
}
.value-card {
  background: var(--ink);
  padding: 40px 32px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  transition: background 0.3s;
}
.value-card:hover { background: var(--ink-2); }
.value-card .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  opacity: 0.7;
  margin-bottom: 40px;
}
.value-card h3 {
  font-family: var(--display);
  font-size: clamp(26px, 2.8vw, 38px);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 16px;
  font-weight: 400;
}
.value-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: auto;
}

/* ============================================
   CAREERS PAGE
   ============================================ */
.culture-section {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
}
.culture-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 120px var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.culture-pillars {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 48px;
}
.culture-pillar {
  background: var(--ink-2);
  padding: 24px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: background 0.2s;
}
.culture-pillar:hover { background: var(--ink-3); }
.culture-pillar-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
}
.culture-pillar-title {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  font-weight: 400;
}
.culture-pillar-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
}
.culture-text p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 20px;
}
.culture-text p strong { color: var(--paper); font-weight: 600; }
.culture-text p:last-child { margin-bottom: 0; }

.roles-section {
  background: var(--ink);
  border-top: 1px solid var(--line);
}
.roles-grid {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 60px;
}
.role-card {
  background: var(--ink);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  transition: background 0.3s;
  position: relative;
}
.role-card:hover { background: var(--ink-2); }
.role-card-left {}
.role-card-team {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.role-card-title {
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 40px);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 16px;
  font-weight: 400;
}
.role-card-desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 20px;
}
.role-card-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.role-badge {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid var(--line-strong);
  color: var(--muted);
}
.role-card-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  padding-top: 4px;
}

.careers-cta-section {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 100px var(--gutter);
}
.careers-cta-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.careers-cta-text h3 {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.04em;
  line-height: 0.97;
  margin-bottom: 16px;
  font-weight: 400;
}
.careers-cta-text p {
  font-size: 16px;
  color: var(--muted);
  max-width: 440px;
  line-height: 1.55;
}

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-section {
  background: var(--ink);
  border-top: 1px solid var(--line);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 60px;
}
.blog-card {
  background: var(--ink);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  transition: background 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.blog-card:hover { background: var(--ink-2); }
.blog-card-cat {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-card-cat::before {
  content: '';
  width: 16px; height: 1.5px;
  background: var(--accent);
}
.blog-card-title {
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 18px;
  font-weight: 400;
}
.blog-card-excerpt {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: auto;
}
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.blog-card-date {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
}
.blog-card-arrow {
  width: 20px; height: 20px;
  transition: transform 0.3s;
  opacity: 0.6;
}
.blog-card:hover .blog-card-arrow { transform: rotate(-45deg); opacity: 1; }

.blog-coming-soon {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-top: none;
  padding: 60px 40px;
  text-align: center;
}
.blog-coming-soon-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.blog-coming-soon-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-split {
  background: var(--ink);
  border-top: 1px solid var(--line);
  min-height: 100vh;
}
.contact-split-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 120px var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact-left-title {
  font-family: var(--display);
  font-size: clamp(56px, 9vw, 140px);
  letter-spacing: -0.05em;
  line-height: 0.88;
  margin-bottom: 48px;
}
.contact-left-title em { font-style: normal; color: var(--accent); }
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.contact-detail-row {
  background: var(--ink-2);
  padding: 24px 28px;
  transition: background 0.2s;
}
.contact-detail-row:hover { background: var(--ink-3); }
.contact-detail-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.contact-detail-val {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.contact-map-placeholder {
  margin-top: 1px;
  background: var(--ink-3);
  border: 1px solid var(--line);
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.contact-map-placeholder svg {
  width: 60px;
  height: 80px;
  opacity: 0.3;
  fill: var(--paper);
}
.contact-map-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
}

/* Contact form */
.contact-form-wrap {
  background: var(--ink-2);
  border: 1px solid var(--line);
  padding: 48px 40px;
}
.contact-form-title {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  font-weight: 400;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
}
.form-field input,
.form-field textarea {
  background: var(--ink);
  border: 1px solid var(--line-strong);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
  width: 100%;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  opacity: 0.3;
  font-size: 12px;
}
.form-submit {
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 18px 32px;
  background: var(--accent);
  color: var(--ink);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: background 0.2s, transform 0.2s;
  align-self: flex-start;
}
.form-submit:hover {
  background: var(--accent-deep);
  transform: translate(-2px, -2px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .hero-meta { grid-template-columns: 1fr 1fr; gap: 24px; }
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .problem-visual { grid-row: span 1; min-height: 280px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stack-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-row { grid-template-columns: 60px 1fr; gap: 16px; }
  .process-row p, .process-row .meta { grid-column: 2; }
  .process-row .meta { text-align: left; }
  .about-story-inner { grid-template-columns: 1fr; gap: 40px; }
  .culture-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-split-inner { grid-template-columns: 1fr; gap: 60px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .careers-cta-inner { flex-direction: column; align-items: flex-start; }
  .role-card { grid-template-columns: 1fr; }
  .role-card-action { align-items: flex-start; }
}

@media (max-width: 700px) {
  .hero-inner-meta { gap: 24px; }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .nav-right .nav-link { display: none; }
  .problem-grid, .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stack-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-meta { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
}
