
:root {
  --bg: #070707;
  --panel: #0d0d0f;
  --panel-2: #121214;
  --text: #f5f2ea;
  --muted: #a6a2a0;
  --gold: #e8b84c;
  --gold-2: #ffdc7a;
  --line: rgba(255,255,255,.11);
  --glass: rgba(255,255,255,.055);
  --shadow: 0 30px 90px rgba(0,0,0,.45);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 70% 8%, rgba(232,184,76,.11), transparent 28%),
    radial-gradient(circle at 15% 30%, rgba(78,110,255,.05), transparent 30%),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  z-index: 99;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}
.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(232,184,76,.08), transparent 66%);
  transform: translate(-50%, -50%);
  transition: opacity .25s ease;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px));
  height: 72px;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px 0 12px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  background: rgba(9,9,10,.58);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
  transition: .3s ease;
}
.site-header.scrolled { top: 8px; background: rgba(8,8,9,.88); }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 48px; height: 48px; border-radius: 13px; object-fit: cover; }
.brand span { display: grid; gap: 2px; }
.brand strong { font-size: .94rem; }
.brand small { color: var(--muted); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 25px; font-size: .86rem; color: #d8d5ce; }
.nav-links a { transition: .2s ease; }
.nav-links a:hover { color: var(--gold-2); }
.nav-cta {
  padding: 12px 18px;
  color: #111 !important;
  font-weight: 700;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--gold-2), #b87c17);
  box-shadow: 0 10px 30px rgba(232,184,76,.18);
}
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; position: relative; }
.menu-toggle span { position: absolute; left: 10px; width: 24px; height: 2px; background: #fff; transition: .25s; }
.menu-toggle span:first-child { top: 17px; }
.menu-toggle span:last-child { top: 25px; }

.section { position: relative; z-index: 1; width: min(1240px, calc(100% - 40px)); margin: 0 auto; padding: 130px 0; }
.hero {
  width: 100%;
  min-height: 100svh;
  padding: 150px max(28px, calc((100vw - 1240px)/2)) 90px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 58px;
  isolation: isolate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  z-index: -1;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .27;
  z-index: -3;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black 30%, transparent 92%);
}
.hero-orbit {
  position: absolute;
  border: 1px solid rgba(232,184,76,.12);
  border-radius: 50%;
  z-index: -2;
  animation: spin 26s linear infinite;
}
.orbit-one { width: 670px; height: 670px; right: -160px; top: 80px; }
.orbit-two { width: 420px; height: 420px; right: -30px; top: 210px; animation-direction: reverse; animation-duration: 18s; }
.hero-orbit::before {
  content: "";
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold-2);
  top: 50%; left: -5px;
  box-shadow: 0 0 30px var(--gold);
}
@keyframes spin { to { transform: rotate(360deg); } }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--gold-2);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .19em;
  font-weight: 800;
}
.eyebrow span { width: 30px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }

h1, h2, h3, p { margin-top: 0; }
h1, h2 { letter-spacing: -.055em; line-height: .98; }
h1 { font-size: clamp(3.6rem, 6.1vw, 7rem); margin-bottom: 28px; max-width: 760px; }
h2 { font-size: clamp(2.8rem, 5vw, 5.4rem); margin-bottom: 28px; }
h1 span, h2 span, .big-quote span {
  background: linear-gradient(110deg, #fff2bf 0%, var(--gold) 35%, #8d5b0e 70%, #ffd875 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy, .section-heading > p:last-child, .territory-copy > p, .mobile-copy > p, .momog-copy > p, .cta-content > p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}
.hero-copy { max-width: 650px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  font-weight: 800;
  font-size: .92rem;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  color: #111;
  background: linear-gradient(135deg, #ffe38a, #c58a1c 70%);
  box-shadow: 0 18px 45px rgba(232,184,76,.18);
}
.btn-primary:hover { box-shadow: 0 22px 55px rgba(232,184,76,.28); }
.btn-ghost { border: 1px solid var(--line); background: rgba(255,255,255,.04); }
.btn-ghost:hover { background: rgba(255,255,255,.08); }
.trust-row { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 9px; }
.trust-row span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #aaa59f;
  font-size: .72rem;
  background: rgba(255,255,255,.025);
}

.hero-visual { perspective: 1200px; }
.dashboard-shell {
  position: relative;
  min-height: 570px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.09);
  overflow: hidden;
  transform: rotateY(-5deg) rotateX(2deg);
  transition: transform .15s ease-out;
}
.dashboard-shell::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(120deg, transparent 30%, rgba(255,220,122,.22), transparent 62%);
  transform: translateX(-100%);
  animation: sheen 6s ease-in-out infinite;
}
@keyframes sheen { 55%,100% { transform: translateX(100%); } }
.dashboard-topbar { height: 70px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; padding: 0 22px; }
.mini-brand { display: flex; align-items: center; gap: 10px; font-size: .82rem; font-weight: 700; }
.mini-brand img { width: 32px; height: 32px; border-radius: 9px; }
.status-pill { font-size: .7rem; color: #8ee7a9; border: 1px solid rgba(84,220,122,.2); padding: 7px 10px; border-radius: 999px; background: rgba(84,220,122,.06); }
.dashboard-layout { display: grid; grid-template-columns: 58px 1fr; min-height: 500px; }
.mock-sidebar { border-right: 1px solid var(--line); padding: 22px 13px; display: grid; align-content: start; gap: 16px; }
.mock-sidebar i { display: block; height: 30px; border-radius: 9px; background: rgba(255,255,255,.055); }
.mock-sidebar i.active { background: linear-gradient(135deg, var(--gold), #9c680f); }
.dashboard-main { padding: 25px; }
.dashboard-title { display: flex; align-items: end; justify-content: space-between; margin-bottom: 20px; }
.dashboard-title small { color: var(--gold-2); text-transform: uppercase; letter-spacing: .15em; font-size: .58rem; }
.dashboard-title h3 { margin: 5px 0 0; font-size: 1.55rem; }
.dashboard-title > span { color: #777; font-size: .62rem; }
.kpi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.kpi-grid article, .chart-card, .activity-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
}
.kpi-grid article { padding: 16px; display: grid; gap: 8px; }
.kpi-grid small { color: #87827d; font-size: .66rem; }
.kpi-grid strong { font-size: 1.4rem; }
.kpi-grid em { font-style: normal; color: #84d7a1; font-size: .65rem; }
.data-grid { display: grid; grid-template-columns: 1.35fr .85fr; gap: 12px; margin-top: 12px; }
.chart-card, .activity-card { padding: 16px; }
.card-head { display: flex; justify-content: space-between; font-size: .7rem; color: #c6c0b8; }
.card-head b { color: var(--gold-2); font-size: .62rem; }
.chart-card svg { width: 100%; height: 190px; margin-top: 12px; overflow: visible; }
.grid-line { stroke: rgba(255,255,255,.05); }
.area { fill: url(#chartFill); }
.line { fill: none; stroke: var(--gold-2); stroke-width: 3; filter: drop-shadow(0 0 8px rgba(232,184,76,.55)); stroke-dasharray: 700; stroke-dashoffset: 700; animation: draw 3.5s ease forwards 1s; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.activity-card ul { list-style: none; padding: 6px 0 0; margin: 0; }
.activity-card li { display: grid; grid-template-columns: 34px 1fr; gap: 10px; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.activity-card li:last-child { border-bottom: 0; }
.avatar { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; font-size: .62rem; color: #111; font-weight: 900; background: linear-gradient(135deg, #ffe38a, #b87914); }
.activity-card strong { display: block; font-size: .66rem; margin-bottom: 4px; }
.activity-card small { color: #716d68; font-size: .57rem; }

.scroll-cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); display: grid; justify-items: center; gap: 8px; color: #85817d; font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; }
.scroll-cue span { width: 1px; height: 36px; background: linear-gradient(var(--gold), transparent); animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: .3; transform: scaleY(.65); } }

.section-heading { max-width: 820px; margin-bottom: 58px; }
.section-heading.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading.centered > p:last-child { max-width: 720px; margin-left: auto; margin-right: auto; }

.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.problem-card {
  padding: 30px 24px;
  min-height: 245px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(255,255,255,.055), rgba(255,255,255,.015));
  transition: .3s ease;
}
.problem-card:hover { transform: translateY(-8px); border-color: rgba(232,184,76,.35); }
.problem-card b { color: var(--gold); font-size: .72rem; letter-spacing: .15em; }
.problem-card h3 { margin: 52px 0 12px; font-size: 1.24rem; }
.problem-card p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.65; }
.big-quote { max-width: 1050px; margin: 110px auto 0; text-align: center; font-size: clamp(2.2rem, 4vw, 4.8rem); font-weight: 800; line-height: 1.12; letter-spacing: -.04em; }

.hierarchy { padding-top: 80px; }
.org-chart { max-width: 1060px; margin: 0 auto; padding: 52px; border: 1px solid var(--line); border-radius: 30px; background: radial-gradient(circle at 50% 0, rgba(232,184,76,.08), transparent 45%), rgba(255,255,255,.025); }
.org-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.org-row.wide { grid-template-columns: repeat(3, 1fr); }
.org-row.wider { grid-template-columns: repeat(4, 1fr); }
.org-node { padding: 18px 14px; text-align: center; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.035); color: #d7d1c8; font-size: .86rem; box-shadow: inset 0 1px rgba(255,255,255,.05); }
.org-node.top, .org-node.accent { background: linear-gradient(135deg, #f7d675, #9e6913); color: #111; font-weight: 900; }
.org-node.top { max-width: 260px; margin: 0 auto; }
.org-line { width: 1px; height: 42px; margin: 0 auto; background: linear-gradient(var(--gold), rgba(232,184,76,.1)); }
.center-note { text-align: center; color: var(--muted); margin-top: 24px; }

.flip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.flip-card { perspective: 1200px; min-height: 330px; }
.flip-inner { position: relative; width: 100%; height: 100%; min-height: 330px; transform-style: preserve-3d; transition: transform .65s cubic-bezier(.2,.75,.2,1); }
.flip-card:hover .flip-inner { transform: rotateY(180deg); }
.flip-face { position: absolute; inset: 0; padding: 28px; border-radius: 24px; border: 1px solid var(--line); backface-visibility: hidden; overflow: hidden; }
.flip-front { background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.015)); }
.flip-front::after { content: ""; position: absolute; width: 190px; height: 190px; border-radius: 50%; right: -80px; bottom: -80px; background: radial-gradient(circle, rgba(232,184,76,.18), transparent 68%); }
.flip-front > span { color: #615f5b; font-size: .72rem; }
.flip-front .icon { margin: 58px 0 24px; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 16px; color: #17130a; font-size: 1.7rem; background: linear-gradient(135deg, #ffe48e, #a96d0e); box-shadow: 0 12px 35px rgba(232,184,76,.14); }
.flip-front h3 { margin-bottom: 10px; font-size: 1.34rem; }
.flip-front p { margin: 0; color: var(--muted); line-height: 1.6; font-size: .9rem; }
.flip-back { transform: rotateY(180deg); background: linear-gradient(145deg, #d8a83f, #7b4e0c); color: #100d08; }
.flip-back h3 { font-size: 1.35rem; margin-bottom: 26px; }
.flip-back ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 13px; }
.flip-back li::before { content: "✓"; margin-right: 9px; font-weight: 900; }

.territory { display: grid; grid-template-columns: .82fr 1.18fr; gap: 80px; align-items: center; }
.territory-copy h2 { font-size: clamp(2.8rem, 4.6vw, 5rem); }
.metric-row { display: flex; gap: 36px; margin-top: 38px; }
.metric-row div { display: grid; gap: 5px; }
.metric-row strong { font-size: 2rem; color: var(--gold-2); }
.metric-row small { color: var(--muted); }
.map-panel { min-height: 500px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 32px; background: radial-gradient(circle at 55% 45%, rgba(232,184,76,.09), transparent 35%), rgba(255,255,255,.025); overflow: hidden; position: relative; }
.senegal-map { width: 90%; filter: drop-shadow(0 25px 50px rgba(0,0,0,.5)); }
.map-shape { fill: rgba(232,184,76,.06); stroke: rgba(255,220,122,.85); stroke-width: 2.2; filter: url(#glow); }
.river { fill: none; stroke: rgba(77,143,255,.5); stroke-width: 3; }
.map-lines path { fill: none; stroke: rgba(255,255,255,.08); stroke-width: 1; }
.nodes circle { fill: var(--gold-2); filter: url(#glow); transform-origin: center; animation: mapPulse 2.2s ease-in-out infinite; }
.nodes circle:nth-child(2n) { animation-delay: .4s; }
.nodes circle:nth-child(3n) { animation-delay: .8s; }
@keyframes mapPulse { 50% { r: 9; opacity: .55; } }
.map-legend { position: absolute; left: 22px; bottom: 20px; display: flex; gap: 18px; color: #8f8a83; font-size: .68rem; }
.map-legend span { display: flex; align-items: center; gap: 7px; }
.map-legend i { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold); }

.mobile-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.phone-wrap { min-height: 680px; display: grid; place-items: center; position: relative; }
.phone {
  width: 320px;
  height: 640px;
  padding: 10px;
  border-radius: 48px;
  background: linear-gradient(145deg, #2b2b2d, #070708);
  box-shadow: 0 50px 90px rgba(0,0,0,.55), inset 0 0 0 2px rgba(255,255,255,.08);
  transform: rotate(-4deg);
}
.phone-screen { height: 100%; border-radius: 39px; padding: 24px 16px; overflow: hidden; background: radial-gradient(circle at 70% 10%, rgba(232,184,76,.18), transparent 25%), #0a0a0b; position: relative; }
.phone-notch { position: absolute; width: 105px; height: 25px; border-radius: 20px; background: #050506; z-index: 2; margin-left: 98px; margin-top: 8px; }
.app-top { display: flex; align-items: center; gap: 8px; margin: 18px 0 24px; font-size: .72rem; }
.app-top img { width: 26px; height: 26px; border-radius: 8px; }
.app-top b { margin-left: auto; letter-spacing: .15em; }
.member-card { padding: 22px; border-radius: 24px; color: #161008; background: linear-gradient(145deg, #ffe28c, #a76b0e); box-shadow: 0 25px 50px rgba(232,184,76,.14); }
.member-card small { font-size: .56rem; letter-spacing: .15em; }
.member-card h3 { margin: 16px 0 5px; font-size: 1.35rem; }
.member-card p { font-size: .7rem; margin-bottom: 22px; }
.qr { width: 112px; height: 112px; background: #fff; padding: 12px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; border-radius: 12px; }
.qr i { background: #151515; }
.qr i:nth-child(2), .qr i:nth-child(4), .qr i:nth-child(8) { background: transparent; }
.verified { display: inline-block; margin-top: 16px; padding: 7px 10px; border-radius: 999px; font-size: .62rem; background: rgba(0,0,0,.13); }
.phone-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }
.phone-stats article { padding: 15px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.04); display: grid; gap: 6px; }
.phone-stats small { color: #777; font-size: .58rem; }
.phone-stats strong { font-size: .78rem; }
.phone-nav { position: absolute; bottom: 18px; left: 16px; right: 16px; height: 54px; border: 1px solid var(--line); border-radius: 18px; display: flex; align-items: center; justify-content: space-around; background: rgba(18,18,20,.85); }
.phone-nav i { width: 12px; height: 12px; border-radius: 4px; background: #4b4844; }
.phone-nav i.active { background: var(--gold); box-shadow: 0 0 15px rgba(232,184,76,.5); }
.floating-note { position: absolute; padding: 12px 15px; border: 1px solid var(--line); border-radius: 13px; background: rgba(12,12,14,.75); backdrop-filter: blur(12px); font-size: .72rem; box-shadow: var(--shadow); animation: float 5s ease-in-out infinite; }
.note-a { left: 3%; top: 20%; }
.note-b { right: 0; top: 38%; animation-delay: 1s; }
.note-c { left: 8%; bottom: 16%; animation-delay: 2s; }
@keyframes float { 50% { transform: translateY(-12px); } }
.check-list { list-style: none; padding: 0; display: grid; gap: 16px; margin-top: 30px; color: #d8d3cb; }
.check-list li::before { content: "✓"; display: inline-grid; place-items: center; width: 24px; height: 24px; margin-right: 11px; border-radius: 8px; color: #181106; background: linear-gradient(135deg, var(--gold-2), #a3690e); font-weight: 900; font-size: .72rem; }

.security-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.security-grid article { min-height: 240px; padding: 28px; border-radius: 22px; border: 1px solid var(--line); background: rgba(255,255,255,.025); }
.security-grid span { color: var(--gold); font-size: .7rem; letter-spacing: .16em; }
.security-grid h3 { margin: 72px 0 12px; font-size: 1.25rem; }
.security-grid p { color: var(--muted); line-height: 1.65; font-size: .87rem; }

.roadmap-track { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.roadmap-track::before { content: ""; position: absolute; top: 31px; left: 5%; right: 5%; height: 1px; background: linear-gradient(90deg, var(--gold), rgba(255,255,255,.12)); }
.roadmap-track article { position: relative; padding: 70px 20px 20px 0; }
.roadmap-track b { position: absolute; top: 15px; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; font-size: .62rem; border: 1px solid var(--line); background: #0d0d0f; z-index: 2; }
.roadmap-track article.active b { color: #111; background: var(--gold-2); border-color: var(--gold-2); box-shadow: 0 0 25px rgba(232,184,76,.35); }
.roadmap-track h3 { font-size: 1.05rem; }
.roadmap-track p { color: var(--muted); font-size: .82rem; line-height: 1.6; }

.momog-card { display: grid; grid-template-columns: .75fr 1.25fr; gap: 60px; padding: 62px; border: 1px solid rgba(232,184,76,.22); border-radius: 34px; background: radial-gradient(circle at 18% 50%, rgba(232,184,76,.13), transparent 35%), linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018)); box-shadow: var(--shadow); }
.momog-logo-wrap { display: grid; place-items: center; }
.momog-logo-wrap img { width: 100%; max-width: 390px; filter: drop-shadow(0 25px 40px rgba(0,0,0,.45)); }
.momog-copy h2 { font-size: clamp(2.5rem, 4vw, 4.3rem); }
.method-row { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-top: 30px; color: #d8d2c8; font-size: .72rem; }
.method-row i { width: 22px; height: 1px; background: var(--gold); opacity: .5; }

.cta { min-height: 650px; display: grid; place-items: center; text-align: center; overflow: hidden; }
.cta::before { content: ""; position: absolute; inset: 20px 0; border: 1px solid var(--line); border-radius: 36px; background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.012)); z-index: -1; }
.cta-glow { position: absolute; width: 720px; height: 720px; border-radius: 50%; background: radial-gradient(circle, rgba(232,184,76,.17), transparent 65%); filter: blur(12px); z-index: -1; }
.cta-content { max-width: 860px; display: grid; justify-items: center; }
.cta-content .eyebrow { justify-content: center; }
.cta-content h2 { font-size: clamp(3.1rem, 6vw, 6.5rem); }
.cta-content > p { max-width: 700px; }
.disclaimer { margin-top: 24px; color: #6f6b66; }

footer {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 40px 0 55px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: #8d8882;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 46px; height: 46px; border-radius: 12px; }
.footer-brand div { display: grid; }
.footer-brand strong { color: #fff; }
.footer-brand span { font-size: .68rem; }
footer p { margin: 0; color: var(--gold); font-size: .84rem; }
.footer-links { display: flex; gap: 16px; font-size: .76rem; }
footer small { font-size: .68rem; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.75,.2,1); }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }

@media (max-width: 1100px) {
  .nav-links { gap: 15px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 160px; }
  .hero-content { max-width: 880px; }
  .hero-visual { max-width: 820px; width: 100%; margin: 0 auto; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .territory, .mobile-showcase { grid-template-columns: 1fr; }
  .territory-copy, .mobile-copy { max-width: 800px; }
  .map-panel { min-height: 430px; }
  .momog-card { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .cursor-glow { display: none; }
  .site-header { top: 8px; height: 64px; }
  .brand span { display: none; }
  .brand img { width: 44px; height: 44px; }
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 78px 16px auto;
    display: grid;
    gap: 4px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(8,8,9,.96);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: .25s;
  }
  .nav-links.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links a:not(.nav-cta) { display: block; padding: 12px; }
  .nav-cta { text-align: center; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); top: 21px; }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); top: 21px; }

  .section { width: min(100% - 28px, 1240px); padding: 95px 0; }
  .hero { width: 100%; padding: 135px 18px 85px; gap: 46px; }
  h1 { font-size: clamp(3rem, 15vw, 4.7rem); }
  h2 { font-size: clamp(2.4rem, 12vw, 3.8rem); }
  .hero-copy { font-size: 1rem; }
  .btn { width: 100%; }
  .dashboard-shell { min-height: 455px; transform: none; border-radius: 22px; }
  .dashboard-topbar { height: 58px; padding: 0 14px; }
  .status-pill { display: none; }
  .dashboard-layout { grid-template-columns: 42px 1fr; min-height: 397px; }
  .mock-sidebar { padding: 15px 8px; gap: 12px; }
  .mock-sidebar i { height: 24px; }
  .dashboard-main { padding: 14px; }
  .dashboard-title > span { display: none; }
  .dashboard-title h3 { font-size: 1.1rem; }
  .kpi-grid { grid-template-columns: 1fr 1fr; }
  .kpi-grid article:last-child { display: none; }
  .data-grid { grid-template-columns: 1fr; }
  .activity-card { display: none; }
  .chart-card svg { height: 145px; }
  .problem-grid, .flip-grid, .security-grid { grid-template-columns: 1fr; }
  .problem-card { min-height: 210px; }
  .problem-card h3 { margin-top: 40px; }
  .big-quote { margin-top: 80px; }
  .org-chart { padding: 25px 14px; overflow: hidden; }
  .org-row, .org-row.wide, .org-row.wider { grid-template-columns: 1fr; gap: 10px; }
  .org-line { height: 22px; }
  .flip-card, .flip-inner { min-height: 300px; }
  .metric-row { gap: 22px; }
  .metric-row strong { font-size: 1.55rem; }
  .map-panel { min-height: 330px; }
  .map-legend { flex-direction: column; gap: 7px; }
  .phone-wrap { min-height: 640px; }
  .phone { width: 286px; height: 590px; }
  .phone-notch { margin-left: 84px; }
  .floating-note { font-size: .62rem; }
  .note-a { left: -2%; }
  .note-b { right: -2%; }
  .roadmap-track { grid-template-columns: 1fr; }
  .roadmap-track::before { top: 0; bottom: 0; left: 16px; right: auto; width: 1px; height: auto; }
  .roadmap-track article { padding: 12px 0 35px 58px; }
  .roadmap-track b { top: 6px; left: 0; }
  .momog-card { padding: 30px 20px; gap: 30px; }
  .method-row i { display: none; }
  .cta { min-height: 620px; }
  .cta::before { inset: 10px 0; }
  footer { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer-links { justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
