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

:root {
  --black: #0a0a0a;
  --off-white: #f0ede6;
  --cream: #e6e1d8;
  --terracotta: #c8502a;
  --terra-light: #d96840;
  --terra-dark: #8c3518;
  --grey: #888;
  --grey-light: #bbbbbb;
  --dark-card: #161616;
  --dark-border: rgba(240, 237, 230, 0.09);
  --font: "Lora", Georgia, serif;
}

html {
  scroll-behavior: smooth;
}
body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: auto;
}

/* ─── CURSOR ─── */
#cur {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--terracotta);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    width 0.2s,
    height 0.2s;
}
#cur.big {
  width: 40px;
  height: 40px;
  opacity: 0.5;
}
@media (max-width: 580px) {
  #cur {
    display: none;
  }
  body {
    cursor: auto;
  }
}

/* ─── PROGRESS ─── */
#pb {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--terracotta);
  z-index: 9998;
}

/* ─── REVEAL ─── */
.r {
  opacity: 1;
  transform: translateY(28px);
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.r.on {
  opacity: 1;
  transform: none;
}
.rfx {
  opacity: 1;
  transform: translateX(-40px);
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.rfx.on {
  opacity: 1;
  transform: none;
}
.rfy {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.rfy.on {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}
.d3 {
  transition-delay: 0.3s;
}
.d4 {
  transition-delay: 0.4s;
}
.d5 {
  transition-delay: 0.5s;
}

/* ─── LAYOUT ─── */
.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
}
.section {
  padding: 110px 0;
}
@media (max-width: 768px) {
  .wrap {
    padding: 0 24px;
  }
  .section {
    padding: 72px 0;
  }
}

/* ─── EYEBROW ─── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
  font-style: italic;
}
.eyebrow::before {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--terracotta);
  flex-shrink: 0;
}
.eyebrow.dark {
  color: var(--terra-dark);
}
.eyebrow.dark::before {
  background: var(--terra-dark);
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition:
    background 0.4s,
    padding 0.3s;
}
nav.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(240, 237, 230, 0.07);
  padding: 13px 48px;
}
.nav-logo-svg {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-style: italic;
  color: rgba(240, 237, 230, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--off-white);
}
.nav-cta {
  background: var(--terracotta);
  color: var(--off-white);
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-style: italic;
  padding: 10px 24px;
  border-radius: 3px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}
.nav-cta:hover {
  background: var(--terra-light);
  transform: translateY(-1px);
}

/* Hamburger */
.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.ham span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--off-white);
  transition: 0.3s;
}
.ham.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.ham.open span:nth-child(2) {
  opacity: 0;
}
.ham.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile menu */
.mob {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 400;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mob.open {
  opacity: 1;
  pointer-events: all;
}
.mob a {
  font-family: var(--font);
  font-size: clamp(1.8rem, 7vw, 3rem);
  font-weight: 700;
  font-style: italic;
  color: var(--off-white);
  text-decoration: none;
  transition: color 0.2s;
}
.mob a:hover {
  color: var(--terracotta);
}
.mob-foot {
  position: absolute;
  bottom: 28px;
  font-family: var(--font);
  font-size: 0.65rem;
  font-style: italic;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ─── BUTTONS ─── */
.btn-terra {
  background: var(--terracotta);
  color: var(--off-white);
  border: 2px solid var(--terracotta);
  padding: 13px 36px;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.btn-terra:hover {
  background: var(--terra-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 80, 42, 0.35);
}
.btn-ghost-light {
  background: transparent;
  color: var(--off-white);
  border: 2px solid rgba(240, 237, 230, 0.22);
  padding: 13px 36px;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.btn-ghost-light:hover {
  border-color: var(--off-white);
  transform: translateY(-2px);
}
.btn-ghost-dark {
  background: transparent;
  color: var(--black);
  border: 2px solid rgba(10, 10, 10, 0.18);
  padding: 13px 36px;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.btn-ghost-dark:hover {
  border-color: var(--black);
  transform: translateY(-2px);
}

/* ═══════════════════════════
   IMIGONGO DIVIDERS
   Bold, lively, full presence
═══════════════════════════ */
.imigongo {
  width: 100%;
  display: block;
  line-height: 0;
  overflow: hidden;
}
.imigongo svg {
  width: 100%;
  display: block;
}

/* ═══════════════════════════
   HERO
═══════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 44%;
  opacity: 0.055;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.hero-tag-dot {
  width: 7px;
  height: 7px;
  background: var(--terracotta);
  border-radius: 50%;
  animation: pulse 2.4s ease infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.2;
    transform: scale(0.45);
  }
}
.hero-tag-txt {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.hero-h1 {
  font-family: var(--font);
  font-size: clamp(2.8rem, 5.8vw, 5.2rem);
  font-weight: 700;
  line-height: 1.06;
  color: var(--off-white);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-h1 em {
  font-style: italic;
  color: var(--terracotta);
}
.hero-h1 .outline {
  -webkit-text-stroke: 1.5px rgba(240, 237, 230, 0.3);
  color: transparent;
}
.hero-sub {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(240, 237, 230, 0.58);
  line-height: 1.85;
  max-width: 420px;
  margin-bottom: 32px;
}
.hero-sub strong {
  color: var(--off-white);
  font-weight: 600;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  cursor: pointer;
}
.hero-note {
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-note::before {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  background: rgba(240, 237, 230, 0.2);
}

/* Hero right cards */
.hero-right {
  position: relative;
  height: 500px;
}
.h-svg-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hcard {
  position: absolute;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 6px;
  z-index: 1;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.hcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
.hc-main {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 230px;
  padding: 18px;
}
.hc-l {
  top: 95px;
  left: 0;
  width: 148px;
  padding: 15px;
}
.hc-r {
  top: 95px;
  right: 0;
  width: 148px;
  padding: 15px;
}
.hc-feed {
  top: 235px;
  left: 50%;
  transform: translateX(-50%);
  width: 265px;
  padding: 17px;
}
.hc-alert {
  bottom: 38px;
  left: 18px;
  width: 195px;
  padding: 15px;
}
.hc-pts {
  bottom: 18px;
  right: 10px;
  width: 144px;
  padding: 13px;
}

.hcard-lbl {
  font-family: var(--font);
  font-size: 0.58rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 7px;
}
.hcard-big {
  font-family: var(--font);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--off-white);
  line-height: 1;
}
.hcard-big.terra {
  color: var(--terracotta);
}
.hcard-sub {
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(240, 237, 230, 0.45);
  line-height: 1.4;
  margin-top: 4px;
}
.hcard-trend {
  font-family: var(--font);
  font-size: 0.62rem;
  font-weight: 500;
  color: #7ec8a4;
  margin-top: 5px;
  font-style: italic;
}
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(126, 200, 164, 0.1);
  border: 1px solid rgba(126, 200, 164, 0.25);
  border-radius: 100px;
  padding: 3px 10px;
  font-family: var(--font);
  font-size: 0.58rem;
  font-style: italic;
  color: #7ec8a4;
}
.lpd {
  width: 5px;
  height: 5px;
  background: #7ec8a4;
  border-radius: 50%;
  animation: pulse 1.6s ease infinite;
}
.terra-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(200, 80, 42, 0.1);
  border: 1px solid rgba(200, 80, 42, 0.25);
  border-radius: 100px;
  padding: 3px 10px;
  font-family: var(--font);
  font-size: 0.58rem;
  font-style: italic;
  color: var(--terracotta);
  margin-bottom: 8px;
}
.hcard-feed-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(240, 237, 230, 0.05);
}
.hcard-feed-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hcard-feed-txt {
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 400;
  color: rgba(240, 237, 230, 0.45);
}
.hcard-feed-time {
  font-family: var(--font);
  font-size: 0.58rem;
  font-style: italic;
  color: var(--grey);
  margin-left: auto;
  white-space: nowrap;
}
.pts-bar {
  height: 3px;
  background: rgba(240, 237, 230, 0.1);
  border-radius: 2px;
  margin-top: 8px;
}
.pts-fill {
  height: 100%;
  background: var(--terracotta);
  border-radius: 2px;
  width: 68%;
}

/* ═══════════ TICKER ═══════════ */
.ticker {
  background: var(--terracotta);
  padding: 16px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  animation: tickMove 26s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 36px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  font-style: italic;
  color: var(--off-white);
}
.ticker-item span {
  font-family: var(--font);
  font-size: 0.62rem;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.65;
}
.ticker-dot {
  opacity: 0.4;
  font-size: 1.1rem;
}
@keyframes tickMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ═══════════ PROBLEM — off-white ═══════════ */
#problem {
  background: var(--off-white);
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.problem-h2 {
  font-family: var(--font);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.06;
  color: var(--black);
  margin-bottom: 24px;
}
.problem-h2 em {
  font-style: italic;
  color: var(--terracotta);
}
.problem-body {
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 400;
  color: #444;
  line-height: 1.88;
  margin-bottom: 26px;
}
.problem-body strong {
  color: var(--black);
  font-weight: 600;
}
.xlist {
  list-style: none;
}
.xlist li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
  font-family: var(--font);
  font-size: 0.86rem;
  font-weight: 400;
  color: #555;
}
.x-icon {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: rgba(200, 80, 42, 0.1);
  border: 1px solid rgba(200, 80, 42, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  color: var(--terracotta);
  flex-shrink: 0;
  font-style: normal;
}
.problem-close {
  font-family: var(--font);
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  font-weight: 700;
  font-style: italic;
  color: var(--black);
  line-height: 1.35;
  margin-top: 28px;
  border-left: 4px solid var(--terracotta);
  padding-left: 16px;
}
/* Stats */
.big-stats {
  padding-top: 52px;
}
.big-stat {
  padding: 26px 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}
.big-stat-n {
  font-family: var(--font);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--black);
}
.big-stat-n.terra {
  color: var(--terracotta);
}
.big-stat-d {
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #666;
  margin-top: 6px;
}
.big-stat-src {
  font-family: var(--font);
  font-size: 0.58rem;
  font-style: italic;
  color: rgba(10, 10, 10, 0.3);
  margin-top: 3px;
}

/* ═══════════ GAP — black ═══════════ */
#gap {
  background: var(--black);
}
.gap-h2 {
  font-family: var(--font);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.06;
  color: var(--off-white);
  margin-bottom: 48px;
}
.gap-h2 em {
  font-style: italic;
  color: var(--terracotta);
}
.gap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(240, 237, 230, 0.06);
  border-radius: 4px;
  overflow: hidden;
}
.gap-col {
  background: var(--dark-card);
  padding: 40px;
}
.gap-col-head {
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 13px;
  border-bottom: 2px solid;
}
.gap-col.can .gap-col-head {
  color: #7ec8a4;
  border-color: #7ec8a4;
}
.gap-col.cant .gap-col-head {
  color: var(--terracotta);
  border-color: var(--terracotta);
}
.gap-row {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(240, 237, 230, 0.05);
  font-family: var(--font);
  font-size: 0.86rem;
  font-weight: 400;
  color: rgba(240, 237, 230, 0.52);
}
.gap-row .t {
  color: #7ec8a4;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.gap-row .x {
  color: var(--terracotta);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.gap-punch {
  margin-top: 48px;
  text-align: center;
  font-family: var(--font);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  color: var(--off-white);
  line-height: 1.2;
}
.gap-punch .terra {
  color: var(--terracotta);
}

/* ═══════════ SOLUTION — off-white ═══════════ */
#solution {
  background: var(--off-white);
}
.sol-h2 {
  font-family: var(--font);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.06;
  color: var(--black);
  margin-bottom: 48px;
}
.sol-h2 em {
  font-style: italic;
  color: var(--terracotta);
}
.bda {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(10, 10, 10, 0.07);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 64px;
}
.bda-card {
  background: var(--off-white);
  padding: 36px 28px;
  border-top: 3px solid transparent;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.bda-card:hover {
  border-top-color: var(--terracotta);
  background: var(--cream);
}
.bda-lbl {
  font-family: var(--font);
  font-size: 0.62rem;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 13px;
}
.bda-num {
  font-family: var(--font);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(10, 10, 10, 0.07);
  line-height: 1;
  margin-bottom: 3px;
}
.bda-card h3 {
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}
.bda-card p {
  font-family: var(--font);
  font-size: 0.84rem;
  font-weight: 400;
  color: #555;
  line-height: 1.8;
}
/* Steps */
.steps5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}
.steps5::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 5%;
  width: 90%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(10, 10, 10, 0.14),
    rgba(10, 10, 10, 0.14),
    transparent
  );
}
.s5 {
  padding: 0 10px;
  position: relative;
  z-index: 1;
}
.s5-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(10, 10, 10, 0.12);
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
  opacity: 0;
  transform: scale(0.7);
  transition:
    opacity 0.4s,
    transform 0.4s,
    background 0.3s,
    border-color 0.3s,
    color 0.3s;
}
.s5-circle.on {
  opacity: 1;
  transform: scale(1);
}
.s5:hover .s5-circle {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--off-white);
}
.s5-title {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 5px;
}
.s5-desc {
  font-family: var(--font);
  font-size: 0.76rem;
  font-weight: 400;
  color: #666;
  line-height: 1.6;
}
.steps-note {
  text-align: center;
  margin-top: 28px;
  font-family: var(--font);
  font-size: 0.65rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #999;
}

/* ═══════════ DASHBOARD — black ═══════════ */
#dashboard {
  background: var(--black);
}
.dash-h2 {
  font-family: var(--font);
  font-size: clamp(1.9rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.06;
  color: var(--off-white);
  margin-bottom: 12px;
}
.dash-h2 em {
  font-style: italic;
  color: var(--terracotta);
}
.dash-intro {
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(240, 237, 230, 0.5);
  line-height: 1.82;
  max-width: 540px;
  margin-bottom: 46px;
}
.app-win {
  background: #111;
  border: 1px solid rgba(240, 237, 230, 0.07);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.7);
}
.app-tb {
  background: #161616;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(240, 237, 230, 0.05);
}
.app-dots {
  display: flex;
  gap: 6px;
}
.app-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.app-dot.r {
  background: #ff5f56;
}
.app-dot.y {
  background: #ffbd2e;
}
.app-dot.g {
  background: #27c93f;
}
.app-tb-name {
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(240, 237, 230, 0.28);
  margin-left: 6px;
}
.app-body {
  display: grid;
  grid-template-columns: 205px 1fr 255px;
}
/* Sidebar */
.app-sb {
  background: #0e0e0e;
  border-right: 1px solid rgba(240, 237, 230, 0.04);
  padding: 16px 0;
}
.app-sb-section {
  padding: 0 12px;
  margin-bottom: 5px;
}
.app-sb-lbl {
  font-family: var(--font);
  font-size: 0.56rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 237, 230, 0.18);
  padding: 0 7px;
  margin-bottom: 5px;
}
.app-sb-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 9px;
  border-radius: 5px;
  transition: background 0.2s;
  cursor: auto;
}
.app-sb-item:hover,
.app-sb-item.active {
  background: rgba(240, 237, 230, 0.04);
}
.app-sb-item.active {
  background: rgba(200, 80, 42, 0.09);
}
.app-sb-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.38;
}
.app-sb-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.app-sb-item.active .app-sb-icon {
  opacity: 1;
  color: var(--terracotta);
}
.app-sb-txt {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(240, 237, 230, 0.42);
}
.app-sb-item.active .app-sb-txt {
  color: var(--terracotta);
}
.app-sb-badge {
  margin-left: auto;
  background: rgba(200, 80, 42, 0.14);
  color: var(--terracotta);
  font-family: var(--font);
  font-size: 0.56rem;
  font-style: italic;
  padding: 2px 7px;
  border-radius: 100px;
}
/* Main */
.app-main {
  padding: 20px;
  overflow: hidden;
}
.app-main-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.app-main-title {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  font-style: italic;
  color: var(--off-white);
}
.app-date {
  background: rgba(240, 237, 230, 0.05);
  border: 1px solid rgba(240, 237, 230, 0.09);
  border-radius: 4px;
  padding: 5px 11px;
  font-family: var(--font);
  font-size: 0.6rem;
  font-style: italic;
  color: rgba(240, 237, 230, 0.36);
}
.app-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  margin-bottom: 14px;
}
.app-kpi {
  background: rgba(240, 237, 230, 0.03);
  border: 1px solid rgba(240, 237, 230, 0.06);
  border-radius: 6px;
  padding: 12px;
}
.app-kpi-l {
  font-family: var(--font);
  font-size: 0.56rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240, 237, 230, 0.26);
  margin-bottom: 5px;
}
.app-kpi-v {
  font-family: var(--font);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--off-white);
  line-height: 1;
}
.app-kpi-t {
  font-family: var(--font);
  font-size: 0.6rem;
  font-style: italic;
  color: #7ec8a4;
  margin-top: 3px;
}
.app-chart {
  background: rgba(240, 237, 230, 0.02);
  border: 1px solid rgba(240, 237, 230, 0.05);
  border-radius: 6px;
  padding: 13px;
  margin-bottom: 11px;
}
.app-chart-head {
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 500;
  font-style: italic;
  color: rgba(240, 237, 230, 0.45);
  margin-bottom: 11px;
}
.app-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 52px;
}
.app-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
}
.app-feed-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(240, 237, 230, 0.04);
}
.app-feed-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}
.app-feed-txt {
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(240, 237, 230, 0.42);
}
.app-feed-time {
  font-family: var(--font);
  font-size: 0.58rem;
  font-style: italic;
  color: rgba(240, 237, 230, 0.2);
  margin-left: auto;
}
/* Right panel */
.app-rp {
  background: #0a0a0a;
  border-left: 1px solid rgba(240, 237, 230, 0.04);
  padding: 16px;
}
.app-rp-title {
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 500;
  font-style: italic;
  color: rgba(240, 237, 230, 0.3);
  margin-bottom: 12px;
}
.app-action {
  background: rgba(200, 80, 42, 0.07);
  border: 1px solid rgba(200, 80, 42, 0.17);
  border-radius: 6px;
  padding: 12px;
  margin-bottom: 9px;
  cursor: auto;
  transition: background 0.2s;
}
.app-action:hover {
  background: rgba(200, 80, 42, 0.12);
}
.app-action-badge {
  font-family: var(--font);
  font-size: 0.56rem;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 5px;
}
.app-action-txt {
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(240, 237, 230, 0.55);
  line-height: 1.4;
}
.app-action-btn {
  display: inline-block;
  margin-top: 8px;
  background: var(--terracotta);
  color: var(--off-white);
  font-family: var(--font);
  font-size: 0.6rem;
  font-weight: 600;
  font-style: italic;
  padding: 5px 12px;
  border-radius: 3px;
  cursor: auto;
}
.app-guest {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(240, 237, 230, 0.04);
}
.app-guest-av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 700;
  flex-shrink: 0;
}
.app-guest-name {
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 600;
  font-style: italic;
  color: rgba(240, 237, 230, 0.72);
}
.app-guest-sub {
  font-family: var(--font);
  font-size: 0.58rem;
  font-style: italic;
  color: rgba(240, 237, 230, 0.26);
}
.app-guest-tag {
  margin-left: auto;
  font-family: var(--font);
  font-size: 0.54rem;
  font-style: italic;
  padding: 2px 7px;
  border-radius: 3px;
}
.tag-vip {
  background: rgba(200, 80, 42, 0.12);
  color: var(--terracotta);
}
.tag-risk {
  background: rgba(200, 80, 42, 0.12);
  color: var(--terracotta);
}
.tag-new {
  background: rgba(126, 200, 164, 0.12);
  color: #7ec8a4;
}

/* ═══════════ HUMAN STORY — off-white ═══════════ */
#story {
  background: var(--off-white);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-h2 {
  font-family: var(--font);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.06;
  color: var(--black);
  margin-bottom: 22px;
}
.story-h2 em {
  font-style: italic;
  color: var(--terracotta);
}
.story-body {
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 400;
  color: #555;
  line-height: 1.88;
  margin-bottom: 28px;
}
.story-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.07);
}
.story-step-n {
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 700;
  font-style: italic;
  color: rgba(10, 10, 10, 0.1);
  line-height: 1;
  flex-shrink: 0;
  width: 26px;
}
.story-step-title {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  font-style: italic;
  color: var(--black);
  margin-bottom: 4px;
}
.story-step-desc {
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 400;
  color: #666;
  line-height: 1.65;
}
.story-illus {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.illus-bg {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(200, 80, 42, 0.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ═══════════ PROOF — black ═══════════ */
#proof {
  background: var(--black);
}
.proof-h2 {
  font-family: var(--font);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.06;
  color: var(--off-white);
  margin-bottom: 48px;
}
.proof-h2 em {
  font-style: italic;
  color: var(--terracotta);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.proof-card {
  background: var(--dark-card);
  border: 1px solid rgba(240, 237, 230, 0.07);
  border-radius: 6px;
  padding: 36px;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.proof-card:hover {
  border-color: rgba(200, 80, 42, 0.35);
  transform: translateY(-4px);
}
.proof-card.hi {
  border-top: 3px solid var(--terracotta);
}
.proof-src {
  font-family: var(--font);
  font-size: 0.64rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 5px;
}
.proof-geo {
  font-family: var(--font);
  font-size: 0.62rem;
  font-style: italic;
  color: var(--grey);
  margin-bottom: 20px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(240, 237, 230, 0.06);
}
.proof-row {
  display: flex;
  align-items: baseline;
  gap: 11px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(240, 237, 230, 0.04);
}
.proof-n {
  font-family: var(--font);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--off-white);
  min-width: 52px;
}
.proof-d {
  font-family: var(--font);
  font-size: 0.76rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(240, 237, 230, 0.48);
  line-height: 1.4;
}

/* ═══════════ STRATEGY — off-white ═══════════ */
#strategy {
  background: var(--off-white);
}
.strat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.strat-h2 {
  font-family: var(--font);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.06;
  color: var(--black);
  margin-bottom: 18px;
}
.strat-h2 em {
  font-style: italic;
  color: var(--terracotta);
}
.strat-body {
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 400;
  color: #555;
  line-height: 1.85;
  margin-bottom: 26px;
}
.frow {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}
.frow-name {
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #777;
  width: 120px;
  flex-shrink: 0;
}
.frow-track {
  flex: 1;
  height: 2px;
  background: rgba(10, 10, 10, 0.1);
}
.frow-fill {
  height: 100%;
  background: var(--black);
  width: 0;
  transition: width 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.frow-fill.dim {
  background: #c0b8ac;
}
.frow-val {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  min-width: 70px;
  text-align: right;
  color: var(--black);
}
.strat-quote {
  font-family: var(--font);
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  font-weight: 700;
  font-style: italic;
  color: var(--black);
  line-height: 1.35;
  border-left: 4px solid var(--terracotta);
  padding-left: 16px;
  margin-top: 26px;
}
/* Timeline */
.tl-card {
  background: var(--black);
  border-radius: 6px;
  padding: 38px;
}
.tl-lbl-top {
  font-family: var(--font);
  font-size: 0.62rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(240, 237, 230, 0.24);
  margin-bottom: 22px;
  display: block;
}
.tl-row {
  margin-bottom: 14px;
}
.tl-row-lbl {
  font-family: var(--font);
  font-size: 0.62rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(240, 237, 230, 0.32);
  margin-bottom: 7px;
}
.tl-track {
  height: 26px;
  background: rgba(240, 237, 230, 0.04);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.tl-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: 4px;
  width: 0;
  transition: width 2s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  padding-right: 11px;
  justify-content: flex-end;
}
.tl-fill.terra {
  background: var(--terracotta);
}
.tl-fill.grey {
  background: rgba(240, 237, 230, 0.18);
}
.tl-fill-n {
  font-family: var(--font);
  font-size: 0.56rem;
  font-weight: 600;
  font-style: italic;
  color: var(--off-white);
}
.tl-big {
  font-family: var(--font);
  font-size: 4.8rem;
  font-weight: 700;
  font-style: italic;
  color: var(--terracotta);
  line-height: 1;
  display: block;
  text-align: center;
  margin-top: 22px;
}
.tl-big-l {
  display: block;
  text-align: center;
  font-family: var(--font);
  font-size: 0.6rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(240, 237, 230, 0.22);
  margin-top: 6px;
}

/* ═══════════ EXPANSION — black ═══════════ */
#expansion {
  background: var(--black);
}
.exp-h2 {
  font-family: var(--font);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.06;
  color: var(--off-white);
  margin-bottom: 48px;
}
.exp-h2 em {
  font-style: italic;
  color: var(--terracotta);
}
.exp-list {
  max-width: 660px;
}
.exp-item {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(240, 237, 230, 0.07);
  opacity: 0;
  transform: translateX(-24px);
  transition:
    opacity 0.5s,
    transform 0.5s,
    border-color 0.3s;
}
.exp-item.on {
  opacity: 1;
  transform: none;
}
.exp-item:hover {
  border-color: rgba(200, 80, 42, 0.35);
}
.exp-n {
  font-family: var(--font);
  font-size: 0.6rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.15em;
  color: rgba(240, 237, 230, 0.22);
  width: 24px;
  flex-shrink: 0;
}
.exp-name {
  font-family: var(--font);
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  font-weight: 700;
  color: var(--off-white);
  flex: 1;
  transition: color 0.2s;
}
.exp-item.now .exp-name,
.exp-item:hover .exp-name {
  color: var(--terracotta);
  font-style: italic;
}
.exp-time {
  font-family: var(--font);
  font-size: 0.62rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(240, 237, 230, 0.22);
}
.africa-wrap {
  max-width: 220px;
  margin: 52px auto 0;
  opacity: 0.07;
}

/* ═══════════ MEANING — terracotta ═══════════ */
#meaning {
  background: var(--terracotta);
  padding: 96px 0;
  overflow: hidden;
  position: relative;
}
.meaning-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font);
  font-size: clamp(16rem, 34vw, 36rem);
  font-weight: 700;
  font-style: italic;
  color: rgba(10, 10, 10, 0.07);
  letter-spacing: -0.03em;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}
.meaning-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.meaning-ey {
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.42);
  margin-bottom: 20px;
}
.meaning-defs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.meaning-word {
  font-family: var(--font);
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--off-white);
}
.meaning-lang {
  font-family: var(--font);
  font-size: 0.6rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.38);
  display: block;
  margin-top: 4px;
  text-align: center;
}
.meaning-sep {
  font-family: var(--font);
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(10, 10, 10, 0.22);
}
.meaning-copy {
  font-family: var(--font);
  font-size: clamp(1.1rem, 2vw, 1.65rem);
  font-weight: 600;
  font-style: italic;
  color: var(--off-white);
  line-height: 1.4;
  max-width: 640px;
  margin: 0 auto;
}

/* ═══════════ CTA — black ═══════════ */
#cta {
  background: var(--black);
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}
.cta-bg-l,
.cta-bg-r {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 28%;
  opacity: 0.035;
  pointer-events: none;
}
.cta-bg-r {
  right: 0;
  transform: scaleX(-1);
}
.cta-inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-ey {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 22px;
  display: block;
}
.cta-q {
  font-family: var(--font);
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.12;
  color: var(--off-white);
  margin-bottom: 26px;
}
.cta-offer {
  font-family: var(--font);
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  font-weight: 700;
  font-style: italic;
  line-height: 0.96;
  color: var(--terracotta);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.cta-body {
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(240, 237, 230, 0.5);
  line-height: 1.9;
  max-width: 480px;
  margin: 0 auto 40px;
}
.cta-btns {
  display: flex;
  gap: 13px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-note {
  margin-top: 20px;
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(240, 237, 230, 0.2);
}

/* ═══════════ FOOTER ═══════════ */
footer {
  background: #080808;
  border-top: 1px solid rgba(240, 237, 230, 0.04);
  padding: 60px 0 34px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 36px;
}
.footer-tag {
  font-family: var(--font);
  font-size: 0.62rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 10px;
}
.footer-sub {
  font-family: var(--font);
  font-size: 0.58rem;
  font-style: italic;
  color: rgba(136, 136, 136, 0.38);
  margin-top: 3px;
}
.footer-loc {
  font-family: var(--font);
  font-size: 0.7rem;
  font-style: italic;
  color: rgba(136, 136, 136, 0.42);
  margin-top: 20px;
}
.footer-right {
  text-align: right;
}
.footer-cl {
  font-family: var(--font);
  font-size: 0.6rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 10px;
}
.footer-email {
  font-family: var(--font);
  font-size: 0.82rem;
  font-style: italic;
  color: rgba(240, 237, 230, 0.48);
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
  transition: color 0.2s;
}
.footer-email:hover {
  color: var(--terracotta);
}
.footer-phone {
  font-family: var(--font);
  font-size: 0.74rem;
  font-style: italic;
  color: var(--grey);
  text-decoration: none;
  display: block;
  margin-bottom: 20px;
  transition: color 0.2s;
}
.footer-phone:hover {
  color: var(--off-white);
}
.footer-links {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}
.footer-links a {
  font-family: var(--font);
  font-size: 0.62rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--terracotta);
}
.footer-bottom {
  margin-top: 44px;
  padding-top: 18px;
  border-top: 1px solid rgba(240, 237, 230, 0.04);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy,
.footer-parent {
  font-family: var(--font);
  font-size: 0.58rem;
  font-style: italic;
  letter-spacing: 0.06em;
  color: rgba(136, 136, 136, 0.28);
}
.footer-parent a {
  color: var(--grey);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-parent a:hover {
  color: var(--terracotta);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  nav {
    padding: 15px 24px;
  }
  nav.scrolled {
    padding: 11px 24px;
  }
  .nav-links {
    display: none;
  }
  .ham {
    display: flex;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-right {
    display: none;
  }
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .big-stats {
    padding-top: 0;
  }
  .gap-grid {
    grid-template-columns: 1fr;
  }
  .bda {
    grid-template-columns: 1fr;
  }
  .steps5 {
    grid-template-columns: 1fr 1fr;
  }
  .steps5::before {
    display: none;
  }
  .app-body {
    grid-template-columns: 1fr;
  }
  .app-sb {
    display: none;
  }
  .app-rp {
    display: none;
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .story-illus {
    height: 280px;
  }
  .proof-grid {
    grid-template-columns: 1fr;
  }
  .strat-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .footer-inner {
    flex-direction: column;
  }
  .footer-right {
    text-align: left;
  }
  .footer-links {
    justify-content: flex-start;
  }
}
@media (max-width: 580px) {
  .steps5 {
    grid-template-columns: 1fr;
  }
  .cta-btns {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
    cursor: pointer;
  }
  .meaning-defs {
    flex-direction: column;
    gap: 14px;
  }
}
