/* =========================================================
   PROJECT SAHARA: Brevo Africa Strategy
   Fonts: Syne 800 (cover headline), Jost 500 (headings), Jost 400 (body)
   Colors: #0b996e main, #c1ffa6 accent, #1b573e dark
   ========================================================= */

/* -- TOKENS -- */
:root {
  --brevo-main:    #0b996e;
  --brevo-light:   #0dc886;
  --brevo-dark:    #1b573e;
  --brevo-deeper:  #0a3d2c;
  --accent:        #c1ffa6;
  --accent-dim:    rgba(193,255,166,0.15);
  --accent-glow:   rgba(193,255,166,0.08);

  --bg:       #060d09;
  --bg2:      #0c1610;
  --bg3:      #101e14;
  --surface:  #162019;
  --surface2: #1c2921;
  --border:   rgba(11,153,110,0.18);
  --border2:  rgba(11,153,110,0.08);

  --text:     #edf7f2;
  --text2:    #93c4ab;
  --text3:    #4a7a61;
  --text-inv: #060d09;

  --font-display: 'Syne', sans-serif;
  --font-head: 'Jost', sans-serif;
  --font-body: 'Jost', sans-serif;
  --font-mono: 'DM Mono', monospace;

  --radius:  8px;
  --radius2: 14px;
  --radius3: 22px;

  --sidebar-w: 258px;
  --topbar-h:  58px;

  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

[data-theme="light"] {
  --bg:       #f2faf6;
  --bg2:      #e5f5ed;
  --bg3:      #d8f0e3;
  --surface:  #ffffff;
  --surface2: #edf9f2;
  --border:   rgba(11,153,110,0.18);
  --border2:  rgba(11,153,110,0.08);
  --text:     #071a10;
  --text2:    #1b573e;
  --text3:    #4a8a6a;
  --text-inv: #ffffff;
}

/* -- RESET -- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}
a { color: var(--brevo-main); text-decoration: none; }
a:hover { color: var(--brevo-light); }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
::selection { background: var(--accent); color: var(--text-inv); }

/* -- AUTH OVERLAY -- */
#auth-overlay {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: #040a06;
  overflow: hidden;
}
.auth-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(11,153,110,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,153,110,0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}
#auth-card {
  position: relative; z-index: 2;
  background: linear-gradient(135deg, #0e1a12, #0a1209);
  border: 1px solid rgba(11,153,110,0.28);
  border-radius: var(--radius3);
  padding: 52px 46px;
  max-width: 430px; width: calc(100% - 40px);
  text-align: center;
  box-shadow: 0 40px 80px rgba(0,0,0,0.7), 0 0 60px rgba(11,153,110,0.06);
  animation: authIn 0.8s var(--ease-bounce) both;
}
@keyframes authIn {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.auth-logo {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin-bottom: 22px;
}
.auth-logo-dot {
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--brevo-main);
  box-shadow: 0 0 14px var(--brevo-main);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 10px var(--brevo-main); }
  50% { box-shadow: 0 0 26px var(--brevo-main), 0 0 50px rgba(11,153,110,0.25); }
}
.auth-logo-text {
  font-family: var(--font-head);
  font-weight: 500; font-size: 19px; letter-spacing: 5px;
  color: #fff;
}
.auth-badge {
  display: inline-block;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 2px; color: var(--accent);
  border: 1px solid rgba(193,255,166,0.25);
  border-radius: 4px; padding: 4px 12px; margin-bottom: 24px;
}
.auth-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 5vw, 38px);
  font-weight: 500; color: #fff;
  margin-bottom: 12px; letter-spacing: -0.3px;
}
.auth-subtitle {
  color: #4a7a61; font-family: var(--font-body);
  font-size: 14px; line-height: 1.7; margin-bottom: 32px;
}
.auth-input-wrap {
  display: flex; gap: 0;
  border: 1px solid rgba(11,153,110,0.35);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color 0.3s;
}
.auth-input-wrap:focus-within { border-color: var(--brevo-main); }
#auth-input {
  flex: 1; padding: 14px 18px;
  background: rgba(11,153,110,0.06);
  border: none; outline: none;
  color: #fff; font-size: 15px;
  font-family: var(--font-mono); letter-spacing: 3px;
}
#auth-input::placeholder { color: #2d5a42; letter-spacing: 1px; font-size: 12px; }
#auth-btn {
  padding: 14px 22px;
  background: var(--brevo-main); color: var(--text-inv);
  font-family: var(--font-head); font-weight: 500;
  font-size: 13px; letter-spacing: 1px;
  transition: background 0.2s;
  display: flex; align-items: center; gap: 8px;
}
#auth-btn:hover { background: var(--brevo-light); }
.auth-error {
  margin-top: 16px; color: #ff6b6b;
  font-size: 13px; font-family: var(--font-mono);
  animation: shake 0.4s var(--ease);
}
.auth-shake-msg {
  margin-top: 10px; color: #3a6a52; font-size: 12px;
}
@keyframes shake {
  0%,100% { transform: translateX(0); }
  20%,60% { transform: translateX(-6px); }
  40%,80% { transform: translateX(6px); }
}
.spinner {
  width: 13px; height: 13px;
  border: 2px solid rgba(0,0,0,0.2);
  border-top-color: #000; border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hidden { display: none !important; }

/* -- APP LAYOUT -- */
#app { min-height: 100vh; }

/* -- TOPBAR -- */
#topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--topbar-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px;
  background: rgba(6, 13, 9, 0.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border2);
  transition: background 0.4s;
}
[data-theme="light"] #topbar { background: rgba(242,250,246,0.93); }

.topbar-left, .topbar-right { display: flex; align-items: center; gap: 14px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span {
  display: block; width: 21px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all 0.3s;
}
.topbar-brand { display: flex; align-items: center; gap: 10px; }
.brand-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--brevo-main);
  box-shadow: 0 0 8px var(--brevo-main);
}
.brand-name {
  font-family: var(--font-head);
  font-weight: 500; font-size: 14px; letter-spacing: 1.5px;
  color: var(--text);
}
.topbar-center { flex: 1; max-width: 380px; margin: 0 20px; }
.progress-wrap { display: flex; align-items: center; gap: 10px; }
.progress-label {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--text3); letter-spacing: 1px; white-space: nowrap;
}
.progress-track {
  flex: 1; height: 3px;
  background: var(--border2); border-radius: 2px; overflow: hidden;
}
.progress-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--brevo-main), var(--accent));
  border-radius: 2px; transition: width 0.3s var(--ease);
  box-shadow: 0 0 8px var(--brevo-main);
}
.progress-pct {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--brevo-main); min-width: 30px;
}
.intel-score {
  display: flex; align-items: center; gap: 5px;
  font-family: var(--font-mono); font-size: 13px;
  color: var(--text2);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 5px 12px;
}
.intel-icon { color: var(--accent); font-size: 13px; }
#intel-val { color: var(--accent); font-weight: 500; }
.intel-max { color: var(--text3); font-size: 11px; }
.theme-toggle {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text2); font-size: 15px; transition: all 0.2s;
}
.theme-toggle:hover { border-color: var(--brevo-main); color: var(--brevo-main); background: rgba(11,153,110,0.08); }

/* -- SIDEBAR -- */
#sidebar {
  position: fixed; top: 0; left: 0; bottom: 0; z-index: 90;
  width: var(--sidebar-w);
  background: var(--bg2);
  border-right: 1px solid var(--border2);
  transform: translateX(0);
  transition: transform 0.35s var(--ease), background 0.4s;
  overflow-y: auto; padding-top: var(--topbar-h);
}
.sidebar-inner { display: flex; flex-direction: column; height: 100%; }
.sidebar-header {
  padding: 26px 22px 18px;
  border-bottom: 1px solid var(--border2);
}
.sidebar-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 500;
  font-size: 14px; letter-spacing: 2.5px; color: var(--text);
  margin-bottom: 5px;
}
.sidebar-tagline {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--text3); letter-spacing: 1px;
}
.nav-list { list-style: none; padding: 14px 0; flex: 1; }
.nav-item {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 22px; cursor: pointer;
  transition: background 0.2s; position: relative;
}
.nav-item:hover { background: rgba(11,153,110,0.07); }
.nav-item.active { background: rgba(11,153,110,0.11); }
.nav-item.active::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--brevo-main); border-radius: 0 2px 2px 0;
}
.nav-num {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--text3); min-width: 22px;
}
.nav-label {
  flex: 1; font-family: var(--font-body);
  font-size: 13px; font-weight: 400; color: var(--text2);
}
.nav-item.active .nav-label { color: var(--brevo-main); }
.nav-dot {
  width: 8px; height: 8px; border-radius: 50%; transition: all 0.3s;
}
.nav-dot.locked { background: var(--surface2); border: 1px solid var(--border); }
.nav-dot.unlocked { background: var(--accent); box-shadow: 0 0 6px rgba(193,255,166,0.6); }
.sidebar-footer {
  padding: 18px 22px; border-top: 1px solid var(--border2);
}
.sidebar-author {
  font-family: var(--font-head); font-weight: 500;
  font-size: 13px; color: var(--text);
}
.sidebar-role { font-family: var(--font-body); font-size: 11px; color: var(--text3); margin-top: 3px; }
.sidebar-overlay {
  display: none; position: fixed; inset: 0; z-index: 85;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(4px);
}

/* -- MAIN -- */
#main {
  margin-left: var(--sidebar-w);
  padding-top: var(--topbar-h);
  min-height: 100vh;
  transition: margin-left 0.35s var(--ease);
}

/* -- SECTIONS -- */
.section {
  padding: 96px 56px;
  position: relative;
  border-bottom: 1px solid var(--border2);
}
.section-dark { background: var(--bg2); }
.section-feature { background: linear-gradient(135deg, var(--bg2), var(--bg3)); }
.section-inner { max-width: 960px; margin: 0 auto; }
.section-label {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--brevo-main); letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 18px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 500; line-height: 1.15;
  color: var(--text); margin-bottom: 36px;
  letter-spacing: -0.5px;
}
.section-intro { margin-bottom: 44px; max-width: 680px; }
.body-lg {
  font-family: var(--font-body);
  font-size: 16px; line-height: 1.8;
  color: var(--text2); margin-bottom: 18px;
}
.body-lg strong { color: var(--text); font-weight: 500; }

/* -- REVEAL -- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* -- INTEL BADGE -- */
.intel-unlock-badge {
  position: absolute; bottom: 22px; right: 22px;
  background: rgba(193,255,166,0.08);
  border: 1px solid rgba(193,255,166,0.22);
  border-radius: 100px; padding: 7px 15px;
  font-family: var(--font-mono); font-size: 10px;
  color: var(--accent); letter-spacing: 1px;
  animation: badgeIn 0.5s var(--ease-bounce) both;
}
.ub-icon { margin-right: 5px; }
@keyframes badgeIn {
  from { opacity: 0; transform: translateY(10px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* -- COVER SECTION -- */
.section-cover {
  min-height: calc(100vh - var(--topbar-h));
  display: flex; flex-direction: column; justify-content: center;
  padding: 70px 56px;
  overflow: hidden;
  background: linear-gradient(145deg, #060d09 55%, #0a1a0e);
}
[data-theme="light"] .section-cover { background: linear-gradient(145deg, #e5f5ed 55%, #d4ede1); }

.cover-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(11,153,110,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,153,110,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black, transparent);
  pointer-events: none;
}

.cover-content { position: relative; z-index: 1; max-width: 960px; margin: 0 auto; width: 100%; }
.cover-eyebrow {
  display: flex; align-items: center; gap: 18px; margin-bottom: 28px;
}
.eyebrow-badge {
  display: inline-block; font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 2px; color: var(--accent);
  border: 1px solid rgba(193,255,166,0.25);
  border-radius: 4px; padding: 5px 13px;
}
.eyebrow-year {
  font-family: var(--font-mono); font-size: 11px; color: var(--text3);
}

/* !! CRITICAL: PROJECT SAHARA headline - Syne display, fully contained !! */
.cover-headline {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -3px;
  margin-bottom: 26px;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}
.headline-line {
  display: block;
  /* Fluid scale capped so text never overflows sidebar-offset viewport */
  font-size: clamp(44px, 9vw, 116px);
  color: var(--text);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: clip;
  max-width: 100%;
}
.headline-line.line-1 { animation: slideUp 0.9s var(--ease) 0.3s both; }
.headline-line.line-2 { animation: slideUp 0.9s var(--ease) 0.5s both; }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Outlined accent: color from #0b996e stroke */
.accent-text {
  -webkit-text-stroke: 2px var(--brevo-main);
  color: transparent;
  text-shadow: none;
}

.cover-sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.8vw, 20px);
  color: var(--text2); max-width: 580px;
  margin-bottom: 48px; line-height: 1.6;
  animation: slideUp 0.9s var(--ease) 0.7s both;
}
.cover-stats-row {
  display: flex; align-items: stretch; gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius2); overflow: hidden;
  margin-bottom: 36px;
  animation: slideUp 0.9s var(--ease) 0.9s both;
}
.cstat { flex: 1; padding: 24px 20px; text-align: center; }
.cstat-div { width: 1px; background: var(--border2); align-self: stretch; }
.cstat-val {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 500; color: var(--brevo-main); line-height: 1;
}
.cstat-label {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text3); margin-top: 6px; line-height: 1.4;
}
.cover-author-card {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  animation: slideUp 0.9s var(--ease) 1.1s both;
}
.author-avatar {
  width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brevo-dark), var(--brevo-main));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 500;
  font-size: 15px; color: #fff;
  border: 2px solid rgba(11,153,110,0.4); flex-shrink: 0;
}
.author-name {
  font-family: var(--font-head); font-weight: 500;
  font-size: 15px; color: var(--text);
}
.author-role { font-family: var(--font-body); font-size: 12px; color: var(--text3); margin-top: 3px; }
.author-location {
  margin-left: auto;
  font-family: var(--font-mono); font-size: 12px; color: var(--brevo-main);
}
.location-pin { margin-right: 4px; }
.cover-scroll-hint {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 4px; margin-top: 44px;
  font-family: var(--font-mono); font-size: 10px;
  color: var(--text3); letter-spacing: 1px;
  animation: fadeIn 1.2s ease 1.5s both;
}
.scroll-arrow {
  font-size: 17px; color: var(--brevo-main);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* -- TWO COL -- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

/* -- PULL QUOTE -- */
.pull-quote {
  border-left: 3px solid var(--brevo-main);
  padding: 18px 22px;
  background: var(--accent-glow);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-body);
  font-size: 17px; color: var(--text);
  line-height: 1.65; font-style: italic; margin-bottom: 34px;
}

/* -- TIMELINE -- */
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item { display: flex; gap: 16px; position: relative; padding-bottom: 22px; }
.timeline-item:not(:last-child) .tl-dot::after {
  content: ''; position: absolute;
  left: 7px; top: 14px; bottom: 0;
  width: 1px; background: var(--border2);
}
.tl-dot {
  width: 16px; height: 16px; border-radius: 50%;
  flex-shrink: 0; margin-top: 2px; position: relative; z-index: 1;
}
.tl-dot.unlocked { background: var(--brevo-main); }
.tl-dot.active { background: var(--accent); box-shadow: 0 0 0 4px rgba(193,255,166,0.2); }
.tl-dot.pulse { animation: tl-pulse 2s ease-in-out infinite; }
@keyframes tl-pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(193,255,166,0.2); }
  50%      { box-shadow: 0 0 0 8px rgba(193,255,166,0.08); }
}
.tl-content { flex: 1; }
.tl-year { font-family: var(--font-mono); font-size: 11px; color: var(--brevo-main); margin-bottom: 4px; }
.tl-text { font-family: var(--font-body); font-size: 13px; color: var(--text2); line-height: 1.55; }

/* -- MARKET CARDS -- */
.market-grid { display: grid; grid-template-columns: 1fr 1fr 1.15fr; gap: 18px; margin-bottom: 36px; }
.market-card {
  border: 1px solid var(--border); border-radius: var(--radius2);
  padding: 26px; background: var(--surface); position: relative;
  transition: transform 0.22s, box-shadow 0.22s;
}
.market-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.highlight-card {
  border-color: rgba(11,153,110,0.45);
  background: linear-gradient(135deg, var(--surface), rgba(11,153,110,0.06));
}
.mc-flag { font-size: 30px; margin-bottom: 12px; }
.mc-label { font-family: var(--font-head); font-weight: 500; font-size: 15px; color: var(--text); margin-bottom: 10px; }
.mc-status {
  display: inline-block; font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 1px; padding: 4px 10px; border-radius: 4px; margin-bottom: 12px;
}
.status-expensive { background: rgba(255,107,107,0.14); color: #ff6b6b; }
.status-saturated  { background: rgba(193,255,166,0.1); color: var(--accent); }
.status-open       { background: rgba(11,153,110,0.15); color: var(--brevo-main); }
.mc-detail { font-family: var(--font-body); font-size: 13px; color: var(--text2); line-height: 1.6; }
.mc-arrow {
  margin-top: 14px; font-family: var(--font-mono); font-size: 10px;
  color: var(--accent); letter-spacing: 1px; font-weight: 500;
}
.situation-callout {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--accent-glow); border: 1px solid rgba(193,255,166,0.15);
  border-radius: var(--radius2); padding: 26px;
}
.sc-icon { font-size: 22px; flex-shrink: 0; }
.sc-text { font-family: var(--font-body); font-size: 15px; color: var(--text2); line-height: 1.75; }

/* -- GAP CARDS -- */
.gap-intro { margin-bottom: 36px; }
.gap-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.gap-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius2); padding: 26px; cursor: pointer;
  transition: all 0.3s;
}
.gap-card:hover { border-color: rgba(11,153,110,0.4); }
.gap-card.expanded { border-color: var(--brevo-main); box-shadow: 0 0 28px rgba(11,153,110,0.1); }
.gc-num { font-family: var(--font-mono); font-size: 10px; color: var(--text3); margin-bottom: 12px; }
.gc-icon { font-size: 26px; margin-bottom: 12px; }
.gc-title { font-family: var(--font-head); font-weight: 500; font-size: 17px; color: var(--text); margin-bottom: 8px; }
.gc-short { font-family: var(--font-body); font-size: 13px; color: var(--text2); line-height: 1.6; }
.gc-expand {
  margin-top: 14px; font-family: var(--font-body); font-size: 13px;
  color: var(--text2); line-height: 1.7; display: none;
  border-top: 1px solid var(--border2); padding-top: 14px;
}
.gc-expand p { margin: 0; }
.gap-card.expanded .gc-expand { display: block; }
.gc-toggle { margin-top: 14px; font-family: var(--font-mono); font-size: 10px; color: var(--brevo-main); letter-spacing: 1px; }

/* -- WHATSAPP FEATURE -- */
.feature-visual { display: flex; gap: 52px; align-items: center; margin-bottom: 50px; }
.whatsapp-stat-ring { position: relative; flex-shrink: 0; width: 190px; height: 190px; }
.ring-svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring-bg { fill: none; stroke: var(--border); stroke-width: 11; }
.ring-fill {
  fill: none; stroke: var(--brevo-main); stroke-width: 11;
  stroke-linecap: round; transition: stroke-dasharray 1.5s var(--ease);
  filter: drop-shadow(0 0 8px rgba(11,153,110,0.5));
}
.ring-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.ring-val { font-family: var(--font-head); font-size: 34px; font-weight: 500; color: var(--brevo-main); }
.ring-label { font-family: var(--font-mono); font-size: 10px; color: var(--text3); text-align: center; line-height: 1.4; }
.whatsapp-facts { flex: 1; display: flex; flex-direction: column; gap: 16px; }
.wf-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px; background: var(--surface);
  border: 1px solid var(--border2); border-radius: var(--radius);
}
.wf-icon { font-size: 20px; flex-shrink: 0; }
.wf-text strong { display: block; font-family: var(--font-head); font-weight: 500; font-size: 13px; color: var(--text); margin-bottom: 3px; }
.wf-text span { font-family: var(--font-body); font-size: 12px; color: var(--text2); line-height: 1.5; }

/* -- COMPETITOR COMPARE -- */
.compare-title { font-family: var(--font-head); font-weight: 500; font-size: 17px; color: var(--text); margin-bottom: 18px; }
.compare-grid { border: 1px solid var(--border); border-radius: var(--radius2); overflow: hidden; }
.comp-row { display: grid; grid-template-columns: 2fr 1.5fr 1.1fr 1.5fr; gap: 0; }
.comp-row > div {
  padding: 13px 18px; font-family: var(--font-body); font-size: 13px; color: var(--text2);
  border-right: 1px solid var(--border2); border-bottom: 1px solid var(--border2);
}
.comp-row > div:last-child { border-right: none; }
.comp-header > div {
  font-family: var(--font-mono); font-size: 10px; color: var(--text3);
  letter-spacing: 1px; background: var(--surface2);
}
.comp-name { font-weight: 500; color: var(--text) !important; }
.comp-yes { color: var(--brevo-main) !important; font-weight: 500; }
.comp-no { color: #ff6b6b !important; }
.comp-partial { color: var(--accent) !important; }
.comp-high { color: #ff6b6b !important; }
.comp-winner > div {
  background: rgba(11,153,110,0.08) !important;
  border-top: 2px solid var(--brevo-main) !important;
}
.comp-winner .comp-name { color: var(--brevo-main) !important; }

/* -- PRICING -- */
.pricing-explainer { display: flex; gap: 28px; align-items: center; margin-bottom: 50px; }
.pe-card {
  flex: 1; border-radius: var(--radius2); padding: 28px;
  border: 1px solid var(--border); background: var(--surface);
}
.pe-brevo {
  border-color: rgba(11,153,110,0.4);
  background: linear-gradient(135deg, var(--surface), rgba(11,153,110,0.06));
}
.pe-brand { font-family: var(--font-head); font-weight: 500; font-size: 19px; margin-bottom: 4px; }
.pe-mailchimp .pe-brand { color: var(--accent); }
.pe-brevo .pe-brand { color: var(--brevo-main); }
.pe-model { font-family: var(--font-mono); font-size: 10px; color: var(--text3); letter-spacing: 1px; margin-bottom: 18px; }
.pe-label { font-family: var(--font-mono); font-size: 11px; color: var(--text3); margin-bottom: 10px; }
.pe-contacts, .pe-sends {
  font-family: var(--font-body); font-size: 13px; color: var(--text2);
  padding: 8px 0; border-bottom: 1px solid var(--border2);
}
.pe-result { margin-top: 14px; padding: 12px 14px; border-radius: var(--radius); font-size: 13px; font-weight: 500; }
.pe-bad { background: rgba(255,107,107,0.1); color: #ff6b6b; }
.pe-good { background: rgba(11,153,110,0.1); color: var(--brevo-main); }
.pe-icon { font-size: 26px; margin-top: 14px; }
.pe-vs { font-family: var(--font-head); font-weight: 500; font-size: 22px; color: var(--text3); flex-shrink: 0; }
.feature-matrix { }
.matrix-title { font-family: var(--font-head); font-weight: 500; font-size: 17px; color: var(--text); margin-bottom: 18px; }
.matrix-rows { border: 1px solid var(--border); border-radius: var(--radius2); overflow: hidden; }
.matrix-row {
  display: grid; grid-template-columns: 1fr 50px 1fr;
  align-items: center; padding: 15px 22px;
  border-bottom: 1px solid var(--border2); transition: background 0.2s;
}
.matrix-row:last-child { border-bottom: none; }
.matrix-row:hover { background: rgba(11,153,110,0.04); }
.mr-need { font-family: var(--font-body); font-size: 14px; color: var(--text2); }
.mr-arrow { text-align: center; color: var(--brevo-main); font-size: 17px; }
.mr-brevo { font-family: var(--font-body); font-size: 14px; color: var(--accent); font-weight: 400; }

/* -- SAHARA HERO -- */
.section-hero { background: linear-gradient(160deg, #0c1810, #060d09); }
.sahara-intro { max-width: 680px; margin-bottom: 44px; }
.sahara-title { color: var(--brevo-main); }
.sahara-goal-card {
  display: flex; gap: 22px; align-items: flex-start;
  background: var(--accent-glow); border: 1px solid rgba(193,255,166,0.18);
  border-radius: var(--radius2); padding: 30px; margin-bottom: 50px;
}
.sgc-icon { font-size: 30px; flex-shrink: 0; }
.sgc-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px; color: var(--accent); margin-bottom: 10px; }
.sgc-text { font-family: var(--font-body); font-size: 16px; color: var(--text); line-height: 1.75; }
.sahara-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.sm-item {
  text-align: center; padding: 26px 18px;
  background: var(--surface2); border: 1px solid var(--border2); border-radius: var(--radius2);
}
.sm-val { font-family: var(--font-head); font-size: 36px; font-weight: 500; color: var(--accent); line-height: 1; }
.sm-label { font-family: var(--font-mono); font-size: 11px; color: var(--text3); margin-top: 8px; line-height: 1.4; }

/* -- PILLARS -- */
.pillars-nav { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 30px; }
.pillar-tab {
  padding: 9px 16px; font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 1px; border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text3); transition: all 0.2s;
}
.pillar-tab:hover { border-color: var(--brevo-main); color: var(--brevo-main); }
.pillar-tab.active { background: var(--brevo-main); color: #fff; border-color: var(--brevo-main); }
.pillar-panel { display: none; }
.pillar-panel.active { display: block; animation: panelIn 0.4s var(--ease) both; }
@keyframes panelIn {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}
.pp-header { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 18px; }
.pp-num {
  font-family: var(--font-mono); font-size: 10px; color: var(--brevo-main);
  letter-spacing: 2px; padding: 5px 11px;
  border: 1px solid rgba(11,153,110,0.3); border-radius: 4px;
  white-space: nowrap; margin-top: 4px;
}
.pp-title { font-family: var(--font-head); font-weight: 500; font-size: 20px; color: var(--text); line-height: 1.3; }
.pp-desc { font-family: var(--font-body); font-size: 15px; color: var(--text2); line-height: 1.75; margin-bottom: 26px; }
.pp-deliverables { display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; }
.pd-item { display: flex; gap: 11px; font-family: var(--font-body); font-size: 14px; color: var(--text2); line-height: 1.55; }
.pd-check { color: var(--accent); flex-shrink: 0; font-size: 11px; margin-top: 3px; }
.pp-kpi {
  display: flex; gap: 12px; align-items: center;
  background: var(--accent-glow); border-left: 3px solid var(--accent);
  padding: 14px 18px; border-radius: 0 var(--radius) var(--radius) 0;
}
.kpi-label { font-family: var(--font-mono); font-size: 10px; color: var(--accent); white-space: nowrap; }
.kpi-val { font-family: var(--font-body); font-size: 13px; color: var(--text); }
.pillar-tracker {
  display: flex; align-items: center; gap: 14px; margin-top: 36px;
  padding: 18px; background: var(--surface); border: 1px solid var(--border2); border-radius: var(--radius);
}
.pt-label { font-family: var(--font-mono); font-size: 10px; color: var(--text3); white-space: nowrap; }
.pt-bars { display: flex; gap: 6px; flex: 1; }
.pt-bar { flex: 1; height: 4px; border-radius: 2px; background: var(--border); transition: background 0.4s var(--ease); }
.pt-bar.done { background: var(--accent); box-shadow: 0 0 8px rgba(193,255,166,0.35); }
.pt-count { font-family: var(--font-mono); font-size: 10px; color: var(--accent); white-space: nowrap; }

/* -- GODWIN PROFILE -- */
.godwin-profile { display: grid; grid-template-columns: 268px 1fr; gap: 44px; }
.gp-avatar-block {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 32px 24px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius2);
}
.gp-avatar {
  width: 76px; height: 76px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brevo-dark), var(--brevo-main));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 500; font-size: 24px; color: #fff;
  border: 3px solid rgba(11,153,110,0.4); margin-bottom: 14px;
  box-shadow: 0 0 28px rgba(11,153,110,0.2);
}
.gp-name { font-family: var(--font-head); font-weight: 500; font-size: 19px; color: var(--text); margin-bottom: 5px; }
.gp-title { font-family: var(--font-body); font-size: 12px; color: var(--text3); margin-bottom: 5px; }
.gp-location { font-family: var(--font-mono); font-size: 11px; color: var(--brevo-main); margin-bottom: 22px; }
.gp-contacts { width: 100%; display: flex; flex-direction: column; gap: 9px; }
.gp-contact-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; background: var(--bg2);
  border: 1px solid var(--border2); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 11px; color: var(--text2);
  text-decoration: none; text-align: left; transition: all 0.2s;
  word-break: break-all;
}
.gp-contact-item:hover { border-color: var(--brevo-main); color: var(--brevo-main); background: rgba(11,153,110,0.07); }
.gpc-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(11,153,110,0.12); display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--brevo-main); flex-shrink: 0;
}
.gp-matches { display: flex; flex-direction: column; }
.gm-title {
  font-family: var(--font-head); font-weight: 500; font-size: 15px; color: var(--text);
  margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--border2);
}
.gm-row {
  display: grid; grid-template-columns: 1fr 36px 1fr;
  gap: 12px; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--border2);
}
.gm-row:last-child { border-bottom: none; }
.gm-need { font-family: var(--font-body); font-size: 13px; color: var(--text2); }
.gm-arrow { text-align: center; color: var(--brevo-main); font-size: 15px; }
.gm-bring { font-family: var(--font-body); font-size: 13px; color: var(--text); }

/* -- FINAL / ASK -- */
.section-final { background: linear-gradient(160deg, var(--bg2), #050c07); }
.ask-callout {
  background: var(--accent-glow); border: 1px solid rgba(193,255,166,0.18);
  border-radius: var(--radius2); padding: 32px; margin: 36px 0;
}
.ask-callout-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px; color: var(--accent); margin-bottom: 14px; }
.ask-callout p { font-family: var(--font-body); font-size: 15px; color: var(--text2); line-height: 1.8; margin-bottom: 12px; }
.ask-callout p:last-child { margin-bottom: 0; }
.ask-callout em { color: var(--text); }
.cta-block { text-align: center; margin: 54px 0; }
.cta-title { font-family: var(--font-head); font-weight: 500; font-size: 30px; color: var(--text); margin-bottom: 26px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px; border-radius: var(--radius);
  font-family: var(--font-head); font-weight: 500; font-size: 14px;
  letter-spacing: 0.3px; text-decoration: none; transition: all 0.25s var(--ease);
}
.cta-icon { font-size: 17px; }
.cta-primary { background: var(--brevo-main); color: #fff; box-shadow: 0 8px 28px rgba(11,153,110,0.3); }
.cta-primary:hover { background: var(--brevo-light); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 36px rgba(11,153,110,0.4); }
.cta-secondary { background: transparent; color: var(--brevo-main); border: 2px solid var(--brevo-main); }
.cta-secondary:hover { background: rgba(11,153,110,0.1); color: var(--brevo-light); transform: translateY(-2px); }
.cta-tertiary { background: transparent; color: var(--text2); border: 2px solid var(--border); }
.cta-tertiary:hover { border-color: var(--brevo-main); color: var(--brevo-main); transform: translateY(-2px); }
.final-quote {
  text-align: center; padding: 70px 36px;
  background: linear-gradient(135deg, rgba(11,153,110,0.06), rgba(27,87,62,0.12));
  border: 1px solid rgba(11,153,110,0.15); border-radius: var(--radius3);
}
.fq-brevo-word { font-family: var(--font-mono); font-size: 11px; color: var(--text3); letter-spacing: 2px; margin-bottom: 18px; }
.fq-text {
  font-family: var(--font-head); font-weight: 500;
  font-size: clamp(28px, 5vw, 54px);
  color: var(--accent); letter-spacing: -0.5px; margin-bottom: 18px;
}
.fq-sub { font-family: var(--font-body); font-size: 16px; color: var(--text2); max-width: 480px; margin: 0 auto; line-height: 1.65; }
.achievement-card {
  display: flex; gap: 18px; align-items: center;
  background: linear-gradient(135deg, rgba(193,255,166,0.07), rgba(193,255,166,0.03));
  border: 1px solid rgba(193,255,166,0.22); border-radius: var(--radius2);
  padding: 26px; margin-top: 52px;
  animation: achieveIn 0.8s var(--ease-bounce) both;
}
@keyframes achieveIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
.ach-icon { font-size: 38px; flex-shrink: 0; }
.ach-title { font-family: var(--font-head); font-weight: 500; font-size: 17px; color: var(--accent); margin-bottom: 7px; }
.ach-sub { font-family: var(--font-body); font-size: 13px; color: var(--text2); line-height: 1.6; }

/* -- FOOTER -- */
#footer { padding: 22px 36px; background: var(--bg); border-top: 1px solid var(--border2); }
.footer-inner {
  max-width: 960px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
}
.footer-brand {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 500; font-size: 13px; color: var(--text2);
}
.footer-center { font-family: var(--font-mono); font-size: 10px; color: var(--text3); letter-spacing: 0.5px; text-align: center; }
.footer-right { font-family: var(--font-mono); font-size: 10px; }
.footer-right a { color: var(--text3); }
.footer-right a:hover { color: var(--brevo-main); }

/* -- RESPONSIVE -- */
@media (max-width: 900px) {
  :root { --sidebar-w: 0px; }
  #sidebar { width: 258px; transform: translateX(-258px); z-index: 200; }
  #sidebar.open { transform: translateX(0); box-shadow: 8px 0 40px rgba(0,0,0,0.5); }
  .sidebar-overlay.open { display: block; }
  .hamburger { display: flex; }
  #main { margin-left: 0; }
  .topbar-center { display: none; }
  .section { padding: 64px 22px; }
  .section-cover { padding: 56px 22px; }
  .cover-stats-row { flex-wrap: wrap; }
  .cstat { min-width: 48%; }
  .cstat-div { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .market-grid { grid-template-columns: 1fr; }
  .gap-cards { grid-template-columns: 1fr; }
  .feature-visual { flex-direction: column; align-items: flex-start; }
  .comp-row { grid-template-columns: 1.4fr 1fr 0.8fr 1fr; }
  .comp-row > div { padding: 11px 11px; font-size: 12px; }
  .pricing-explainer { flex-direction: column; }
  .pe-vs { display: none; }
  .sahara-metrics { grid-template-columns: 1fr 1fr; }
  .godwin-profile { grid-template-columns: 1fr; }
  .gp-avatar-block { flex-direction: row; text-align: left; flex-wrap: wrap; gap: 14px; align-items: center; }
  .gp-avatar { margin-bottom: 0; flex-shrink: 0; }
  .gm-row { grid-template-columns: 1fr; gap: 3px; }
  .gm-arrow { display: none; }
  .gm-bring { color: var(--brevo-main); font-size: 12px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-btn { width: 100%; max-width: 300px; justify-content: center; }
  .footer-inner { justify-content: center; text-align: center; }
  .pillars-nav { gap: 5px; }
  .pillar-tab { font-size: 10px; padding: 8px 11px; }
}

@media (max-width: 520px) {
  .headline-line { font-size: clamp(36px, 11vw, 60px); letter-spacing: -1px; white-space: normal; line-height: 1; }
  .cstat-val { font-size: 24px; }
  .section-title { font-size: 22px; }
  .cover-author-card { flex-wrap: wrap; }
  .author-location { margin-left: 0; }
  .sahara-metrics { grid-template-columns: 1fr 1fr; gap: 10px; }
  .sm-val { font-size: 26px; }
  .final-quote { padding: 42px 18px; }
  .comp-row > div:nth-child(3) { display: none; }
  .comp-row { grid-template-columns: 1.5fr 1fr 1fr; }
}
