:root {

  --black: #11100e;
  --black-soft: #24201c;

  --blue: #1677ff;
  --blue-dark: #0754c9;
  --blue-light: #4b9aff;

  --orange: #e84923;
  --orange-light: #ff633a;

  --cream: #fffaf4;
  --cream-2: #fff3e6;

  --white: #ffffff;

  --text: #17120f;
  --muted: #6f6258;

  --border: rgba(17,16,14,.10);

  --font:
    "Outfit",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}


* {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {

  margin: 0;

  background: var(--cream);

  color: var(--text);

  font-family: var(--font);

  overflow-x: hidden;

  -webkit-font-smoothing: antialiased;
}


body.menu-open {
  overflow: hidden;
}


img {
  display: block;
  max-width: 100%;
}


a {
  color: inherit;
  text-decoration: none;
}


button {
  font: inherit;
}


.container {

  width:
    min(
      calc(100% - 40px),
      1180px
    );

  margin-inline: auto;
}


section {
  position: relative;
}


/* ============================================================
   HEADER
   ============================================================ */

.about-header {

  position: sticky;

  top: 0;

  z-index: 100;

  background:
    rgba(255,250,244,.92);

  border-bottom:
    1px solid var(--border);

  backdrop-filter: blur(16px);

  -webkit-backdrop-filter: blur(16px);
}


.header-inner {

  width:
    min(
      calc(100% - 40px),
      1180px
    );

  min-height: 70px;

  margin: auto;

  display: flex;

  align-items: center;

  justify-content: space-between;
}


.logo {

  font-size: 1.5rem;

  font-weight: 800;

  letter-spacing: -.06em;
}


.logo span {
  color: var(--black);
}


.logo b {
  color: var(--blue);
}


.desktop-nav {

  display: flex;

  gap: 30px;
}


.desktop-nav a {

  color: #665b53;

  font-size: .78rem;

  font-weight: 700;

  transition: color .2s ease;
}


.desktop-nav a:hover {
  color: var(--blue);
}


.header-actions {

  display: flex;

  align-items: center;

  gap: 10px;
}


.header-cta {

  padding:
    10px 17px;

  border-radius: 8px;

  background: var(--black);

  color: white;

  font-size: .76rem;

  font-weight: 800;
}


.menu-btn {

  display: none;

  width: 42px;

  height: 42px;

  border:
    1px solid rgba(17,16,14,.2);

  border-radius: 9px;

  background: white;

  cursor: pointer;
}


.menu-btn span {

  display: block;

  width: 18px;

  height: 2px;

  margin: 4px auto;

  background: var(--black);
}


.mobile-menu {

  border-top:
    1px solid var(--border);

  background:
    var(--cream);
}


.mobile-menu a {

  display: block;

  padding: 15px 20px;

  border-bottom:
    1px solid var(--border);

  font-weight: 700;
}


/* ============================================================
   HERO
   ============================================================ */

.about-hero {

  min-height:
    calc(100svh - 70px);

  overflow: hidden;

  display: flex;

  align-items: center;

  background:
    linear-gradient(
      135deg,
      #fffaf4,
      #fff1e2
    );
}


.hero-container {

  display: grid;

  grid-template-columns:
    1fr .8fr;

  align-items: center;

  gap: 80px;

  padding:
    90px 0;
}


.hero-content {
  position: relative;
  z-index: 2;
}


.eyebrow {

  display: flex;

  align-items: center;

  gap: 10px;

  color: var(--blue);

  font-size: .65rem;

  font-weight: 800;

  letter-spacing: .18em;

  margin-bottom: 22px;
}


.eyebrow span {

  width: 35px;

  height: 2px;

  background:
    linear-gradient(
      90deg,
      var(--blue),
      var(--orange)
    );
}


.hero-content h1 {

  max-width: 780px;

  margin: 0;

  font-size:
    clamp(
      3.5rem,
      7vw,
      7rem
    );

  line-height: .88;

  letter-spacing: -.07em;

  font-weight: 800;
}


.hero-content h1 span {
  display: block;
  color: var(--blue);
}


.hero-content h2 {

  margin:
    28px 0 0;

  color: var(--orange);

  font-size:
    clamp(
      1.4rem,
      2.5vw,
      2.4rem
    );

  letter-spacing: -.04em;
}


.hero-content p {

  max-width: 650px;

  margin:
    22px 0 0;

  color: var(--muted);

  font-size: 1.05rem;

  line-height: 1.8;
}


.hero-buttons {

  display: flex;

  flex-wrap: wrap;

  gap: 12px;

  margin-top: 30px;
}


.primary-button,
.secondary-button {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 14px;

  padding:
    14px 18px;

  border-radius: 9px;

  font-size: .8rem;

  font-weight: 800;
}


.primary-button {

  background: var(--black);

  color: white;

  box-shadow:
    0 5px 0 #000;
}


.primary-button span {

  display: grid;

  place-items: center;

  width: 26px;

  height: 26px;

  border-radius: 7px;

  background: var(--blue);
}


.secondary-button {

  border:
    1px solid var(--border);

  background: white;
}


/* ============================================================
   HERO VISUAL
   ============================================================ */

.hero-visual {

  display: grid;

  place-items: center;

  min-height: 500px;
}


.visual-core {

  position: relative;

  width: 390px;

  height: 390px;

  border-radius: 50%;

  display: grid;

  place-items: center;
}


.core-ring {

  position: absolute;

  border-radius: 50%;

  border:
    1px solid rgba(22,119,255,.2);
}


.ring-one {

  inset: 25px;

  animation:
    spin 18s linear infinite;
}


.ring-two {

  inset: 70px;

  border-color:
    rgba(232,73,35,.22);

  animation:
    spin-reverse 13s linear infinite;
}


.core-center {

  width: 150px;

  height: 150px;

  border-radius: 50%;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  background:
    var(--black);

  color: white;

  box-shadow:
    0 25px 70px rgba(0,0,0,.2);
}


.core-center strong {

  color: white;

  font-size: 1.2rem;

  letter-spacing: -.04em;
}


.core-center span {

  margin-top: 6px;

  color: var(--blue-light);

  font-size: .55rem;

  font-weight: 800;

  letter-spacing: .16em;
}


.orbit {

  position: absolute;

  display: grid;

  place-items: center;

  width: 75px;

  height: 75px;

  border-radius: 50%;

  background: white;

  border:
    1px solid var(--border);

  box-shadow:
    0 15px 35px rgba(60,35,15,.09);

  font-size: .67rem;

  font-weight: 800;
}


.orbit-one {
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
}


.orbit-two {
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}


.orbit-three {
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}


.orbit-four {
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
}


.hero-orb {

  position: absolute;

  border-radius: 50%;

  filter: blur(1px);

  pointer-events: none;
}


.hero-orb-one {

  width: 500px;

  height: 500px;

  right: -200px;

  top: -180px;

  background:
    radial-gradient(
      circle,
      rgba(22,119,255,.12),
      transparent 70%
    );
}


.hero-orb-two {

  width: 400px;

  height: 400px;

  left: -220px;

  bottom: -200px;

  background:
    radial-gradient(
      circle,
      rgba(232,73,35,.08),
      transparent 70%
    );
}


/* ============================================================
   SECTION HEADINGS
   ============================================================ */

.section-heading {

  display: grid;

  grid-template-columns: 65px 1fr;

  gap: 20px;

  margin-bottom: 65px;
}


.section-heading.centered {

  display: block;

  max-width: 800px;

  margin-inline: auto;

  text-align: center;
}


.section-number {

  color: var(--blue);

  font-size: .7rem;

  font-weight: 800;

  letter-spacing: .12em;
}


.section-heading small,
.global-copy small,
.review-content small,
.status-copy small {

  display: block;

  margin-bottom: 12px;

  color: #8c7e72;

  font-size: .62rem;

  font-weight: 800;

  letter-spacing: .17em;
}


.section-heading h2 {

  max-width: 850px;

  margin: 0;

  font-size:
    clamp(
      2.2rem,
      4.5vw,
      4.5rem
    );

  line-height: .97;

  letter-spacing: -.06em;
}


.section-heading.centered p {

  max-width: 650px;

  margin:
    20px auto 0;

  color: var(--muted);

  line-height: 1.7;
}


/* ============================================================
   ABOUT
   ============================================================ */

.about-section {

  padding:
    115px 0;

  background: white;
}


.about-grid {

  display: grid;

  grid-template-columns:
    .9fr
    1.1fr;

  gap: 100px;
}


.about-statement {

  padding:
    40px;

  border-radius: 18px;

  background:
    linear-gradient(
      145deg,
      #15130f,
      #28221d
    );

  color: white;

  box-shadow:
    0 25px 65px rgba(30,20,10,.12);
}


.big-statement {

  margin: 0;

  font-size:
    clamp(
      2rem,
      4vw,
      3.6rem
    );

  line-height: 1.05;

  letter-spacing: -.055em;

  font-weight: 700;
}


.statement-line {

  width: 70px;

  height: 3px;

  margin:
    35px 0 18px;

  background:
    linear-gradient(
      90deg,
      var(--blue),
      var(--orange)
    );
}


.statement-small {

  margin: 0;

  color: #bdb4ab;

  font-size: .95rem;

  line-height: 1.6;
}


.about-copy p {

  margin:
    0 0 24px;

  color: var(--muted);

  line-height: 1.85;

  font-size: 1rem;
}


/* ============================================================
   PROBLEM
   ============================================================ */

.problem-section {

  padding:
    115px 0;

  background: var(--black);

  color: white;
}


.problem-layout {

  display: grid;

  grid-template-columns:
    .85fr
    1.15fr;

  gap: 100px;
}


.problem-title small {

  display: block;

  margin:
    12px 0;

  color: #8c8279;

  font-size: .62rem;

  font-weight: 800;

  letter-spacing: .16em;
}


.problem-title h2 {

  margin: 0;

  font-size:
    clamp(
      2.8rem,
      5vw,
      5.4rem
    );

  line-height: .94;

  letter-spacing: -.065em;
}


.problem-title h2 span {
  color: var(--blue-light);
}


.problem-copy p {

  margin:
    0 0 25px;

  color: #bdb5ad;

  line-height: 1.8;
}


.problem-quote {

  margin-top: 40px;

  padding:
    28px;

  border-left:
    3px solid var(--blue);

  background:
    rgba(255,255,255,.035);
}


.problem-quote span {

  color: var(--blue-light);

  font-size: .6rem;

  font-weight: 800;

  letter-spacing: .15em;
}


.problem-quote blockquote {

  margin:
    13px 0 0;

  font-size:
    clamp(
      1.3rem,
      2.3vw,
      1.8rem
    );

  line-height: 1.35;

  font-weight: 600;
}


/* ============================================================
   MODEL
   ============================================================ */

.model-section {

  padding:
    115px 0;

  background:
    linear-gradient(
      135deg,
      #fffaf4,
      #fff0df
    );
}


.model-grid {

  display: grid;

  grid-template-columns:
    repeat(4,1fr);

  gap: 15px;
}


.model-card {

  min-height: 310px;

  padding: 28px;

  border:
    1px solid var(--border);

  border-radius: 15px;

  background: white;

  box-shadow:
    0 15px 40px rgba(50,30,15,.055);

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}


.model-card:hover {

  transform:
    translateY(-7px);

  box-shadow:
    0 25px 50px rgba(50,30,15,.10);
}


.model-number {

  color: #aaa098;

  font-size: .62rem;

  font-weight: 800;
}


.model-icon {

  margin-top: 40px;

  color: var(--blue);

  font-size: 2rem;

  font-weight: 800;
}


.model-card h3 {

  margin:
    18px 0 10px;

  font-size: 1.35rem;
}


.model-card p {

  min-height: 95px;

  margin: 0;

  color: var(--muted);

  line-height: 1.65;

  font-size: .85rem;
}


.model-card strong {

  display: block;

  margin-top: 22px;

  color: var(--orange);

  font-size: .68rem;

  letter-spacing: .06em;
}


/* ============================================================
   GLOBAL
   ============================================================ */

.global-section {

  padding:
    115px 0;

  background: white;
}


.global-layout {

  display: grid;

  grid-template-columns:
    1fr
    1fr;

  gap: 90px;

  align-items: center;
}


.global-copy h2 {

  margin: 0;

  font-size:
    clamp(
      2.6rem,
      4.7vw,
      5rem
    );

  line-height: .95;

  letter-spacing: -.06em;
}


.global-copy p {

  margin:
    23px 0 0;

  color: var(--muted);

  line-height: 1.8;
}


.global-map-card {

  position: relative;

  min-height: 500px;

  overflow: hidden;

  border-radius: 20px;

  background:
    radial-gradient(
      circle at center,
      #24201c,
      #11100e 70%
    );

  box-shadow:
    0 30px 70px rgba(30,20,10,.15);
}


.africa-shape {

  position: absolute;

  left: 50%;

  top: 50%;

  transform:
    translate(-50%,-50%)
    rotate(-8deg);

  color: rgba(255,255,255,.05);

  font-size: 7rem;

  font-weight: 800;

  letter-spacing: -.08em;
}


.map-glow {

  position: absolute;

  inset: 20%;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(22,119,255,.18),
      transparent 65%
    );

  filter: blur(10px);
}


.country-dot {

  position: absolute;

  width: 42px;

  height: 42px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  background: var(--blue);

  color: white;

  font-size: .62rem;

  font-weight: 800;

  box-shadow:
    0 0 0 8px rgba(22,119,255,.10),
    0 0 30px rgba(22,119,255,.4);
}


.tz {

  left: 37%;

  top: 47%;
}


.cd {

  right: 30%;

  top: 40%;

  background: var(--orange);

  box-shadow:
    0 0 0 8px rgba(232,73,35,.10),
    0 0 30px rgba(232,73,35,.35);
}


.connection-line {

  position: absolute;

  width: 190px;

  height: 1px;

  left: 39%;

  top: 44%;

  transform:
    rotate(-12deg);

  background:
    linear-gradient(
      90deg,
      var(--blue),
      var(--orange)
    );
}


.global-label {

  position: absolute;

  padding:
    6px 9px;

  border-radius: 6px;

  background:
    rgba(255,255,255,.08);

  color: #aaa39c;

  font-size: .58rem;

  font-weight: 700;
}


.label-one {

  left: 24%;

  top: 56%;
}


.label-two {

  right: 18%;

  top: 34%;
}


.global-center {

  position: absolute;

  bottom: 35px;

  left: 0;

  right: 0;

  text-align: center;
}


.global-center strong {

  display: block;

  color: white;

  font-size: 1rem;

  letter-spacing: .08em;
}


.global-center span {

  display: block;

  margin-top: 5px;

  color: var(--blue-light);

  font-size: .55rem;

  font-weight: 800;

  letter-spacing: .16em;
}


/* ============================================================
   OPPORTUNITIES
   ============================================================ */

.opportunities-section {

  padding:
    115px 0;

  background: var(--cream);
}


.opportunity-grid {

  display: grid;

  grid-template-columns:
    repeat(3,1fr);

  gap: 18px;
}


.opportunity-card {

  padding: 30px;

  border-radius: 15px;

  background: white;

  border:
    1px solid var(--border);
}


.opportunity-top {

  display: flex;

  justify-content: space-between;

  gap: 15px;
}


.opportunity-top span {

  color: var(--blue);

  font-size: .6rem;

  font-weight: 800;

  letter-spacing: .12em;
}


.opportunity-top b {

  color: var(--orange);

  font-size: .58rem;

  letter-spacing: .1em;
}


.opportunity-card h3 {

  margin:
    35px 0 13px;

  font-size: 1.5rem;
}


.opportunity-card p {

  margin: 0;

  color: var(--muted);

  line-height: 1.75;

  font-size: .9rem;
}


.opportunity-bottom {

  margin-top: 30px;

  padding-top: 15px;

  border-top:
    1px solid var(--border);

  color: #887b70;

  font-size: .65rem;

  font-weight: 800;
}


/* ============================================================
   REVIEW
   ============================================================ */

.review-section {

  padding:
    115px 0;

  background: white;
}


.review-layout {

  display: grid;

  grid-template-columns:
    .8fr
    1.2fr;

  gap: 100px;

  align-items: center;
}


.review-visual {

  display: grid;

  place-items: center;
}


.review-circle {

  width: 340px;

  height: 340px;

  border-radius: 50%;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  background:
    linear-gradient(
      145deg,
      #15130f,
      #29231e
    );

  color: white;

  box-shadow:
    0 30px 70px rgba(30,20,10,.15);
}


.review-circle .small-label {

  color: var(--blue-light);

  font-size: .58rem;

  font-weight: 800;

  letter-spacing: .15em;
}


.review-circle strong {

  margin-top: 10px;

  font-size: 3rem;

  letter-spacing: -.06em;
}


.big-star {

  margin:
    15px 0;

  color: var(--orange);

  font-size: 2rem;
}


.review-circle small {

  color: #999088;

  font-size: .55rem;

  font-weight: 800;

  letter-spacing: .1em;
}


.review-content h2 {

  margin: 0;

  font-size:
    clamp(
      2.6rem,
      4.5vw,
      4.5rem
    );

  line-height: .95;

  letter-spacing: -.06em;
}


.review-content p {

  margin:
    22px 0 0;

  color: var(--muted);

  line-height: 1.8;
}


.review-note {

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  gap: 12px;

  margin-top: 30px;

  padding: 18px;

  border-radius: 10px;

  background:
    rgba(22,119,255,.055);

  color: var(--blue-dark);

  font-size: .72rem;
}


/* ============================================================
   STATUS
   ============================================================ */

.status-section {

  padding:
    115px 0;

  background:
    linear-gradient(
      135deg,
      #fffaf4,
      #fff0df
    );
}


.status-layout {

  display: grid;

  grid-template-columns:
    1fr
    .8fr;

  gap: 100px;

  align-items: center;
}


.status-copy h2 {

  margin: 0;

  font-size:
    clamp(
      2.7rem,
      5vw,
      5rem
    );

  line-height: .95;

  letter-spacing: -.06em;
}


.status-copy p {

  max-width: 650px;

  margin:
    22px 0 0;

  color: var(--muted);

  line-height: 1.8;
}


.phone-status {

  width: min(100%,360px);

  min-height: 500px;

  margin-inline: auto;

  padding: 25px;

  border-radius: 28px;

  background: var(--black);

  color: white;

  box-shadow:
    0 30px 70px rgba(30,20,10,.2);
}


.phone-top {

  display: flex;

  justify-content: space-between;

  color: #a9a29b;

  font-size: .58rem;

  font-weight: 800;

  letter-spacing: .08em;
}


.phone-top b {
  color: var(--blue-light);
}


.status-item {

  display: flex;

  align-items: center;

  gap: 12px;

  margin-top: 45px;

  padding:
    15px;

  border-radius: 13px;

  background:
    rgba(255,255,255,.06);
}


.status-avatar {

  width: 42px;

  height: 42px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  background: var(--blue);

  font-weight: 800;
}


.status-info {

  flex: 1;
}


.status-info strong {

  display: block;

  font-size: .75rem;
}


.status-info span {

  display: block;

  margin-top: 4px;

  color: #89817b;

  font-size: .57rem;
}


.play-button {

  width: 30px;

  height: 30px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  background: white;

  color: black;

  font-size: .55rem;
}


.status-wave {

  height: 100px;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 4px;
}


.status-wave i {

  width: 4px;

  border-radius: 999px;

  background:
    linear-gradient(
      180deg,
      var(--blue),
      var(--orange)
    );

  animation:
    wave 1s ease-in-out infinite alternate;
}


.status-wave i:nth-child(1) {
  height: 20px;
}

.status-wave i:nth-child(2) {
  height: 35px;
}

.status-wave i:nth-child(3) {
  height: 50px;
}

.status-wave i:nth-child(4) {
  height: 65px;
}

.status-wave i:nth-child(5) {
  height: 42px;
}

.status-wave i:nth-child(6) {
  height: 70px;
}

.status-wave i:nth-child(7) {
  height: 52px;
}

.status-wave i:nth-child(8) {
  height: 68px;
}

.status-wave i:nth-child(9) {
  height: 40px;
}

.status-wave i:nth-child(10) {
  height: 58px;
}

.status-wave i:nth-child(11) {
  height: 30px;
}

.status-wave i:nth-child(12) {
  height: 18px;
}


.status-wave i:nth-child(2n) {
  animation-delay: .2s;
}


.status-message {

  margin-top: 45px;

  padding:
    20px;

  border:
    1px solid rgba(22,119,255,.22);

  border-radius: 12px;

  background:
    rgba(22,119,255,.06);

  text-align: center;
}


.status-message span {

  display: block;

  color: var(--blue-light);

  font-size: .55rem;

  font-weight: 800;

  letter-spacing: .12em;
}


.status-message strong {

  display: block;

  margin-top: 8px;

  font-size: .8rem;
}


/* ============================================================
   ARTS
   ============================================================ */

.arts-section {

  padding:
    115px 0;

  background: white;
}


.arts-grid {

  display: grid;

  grid-template-columns:
    repeat(5,1fr);

  gap: 12px;
}


.art-item {

  min-height: 150px;

  padding: 20px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  border:
    1px solid var(--border);

  border-radius: 12px;

  background: var(--cream);
}


.art-item span {

  color: #aaa099;

  font-size: .6rem;

  font-weight: 800;
}


.art-item strong {

  font-size: 1.1rem;

  letter-spacing: -.03em;
}


/* ============================================================
   WIN
   ============================================================ */

.win-section {

  padding:
    100px 0;

  background: var(--blue);

  color: white;
}


.win-inner {

  text-align: center;
}


.win-inner > span {

  font-size: .6rem;

  font-weight: 800;

  letter-spacing: .16em;
}


.win-inner h2 {

  max-width: 850px;

  margin:
    18px auto 55px;

  font-size:
    clamp(
      2.7rem,
      5vw,
      5rem
    );

  line-height: .95;

  letter-spacing: -.06em;
}


.win-grid {

  display: grid;

  grid-template-columns:
    repeat(4,1fr);

  gap: 12px;
}


.win-grid div {

  padding: 25px;

  border:
    1px solid rgba(255,255,255,.18);

  border-radius: 12px;

  background:
    rgba(255,255,255,.08);
}


.win-grid strong {

  font-size: .7rem;

  letter-spacing: .1em;
}


.win-grid p {

  margin:
    10px 0 0;

  color:
    rgba(255,255,255,.72);

  font-size: .75rem;
}


/* ============================================================
   MISSION
   ============================================================ */

.mission-section {

  padding:
    120px 0;

  background:
    linear-gradient(
      135deg,
      #11100e,
      #211c18
    );

  color: white;

  text-align: center;
}


.mission-inner {

  max-width: 850px;

  margin: auto;
}


.mission-inner > span {

  color: var(--blue-light);

  font-size: .62rem;

  font-weight: 800;

  letter-spacing: .17em;
}


.mission-inner h2 {

  margin:
    20px 0;

  font-size:
    clamp(
      3rem,
      6vw,
      6rem
    );

  line-height: .9;

  letter-spacing: -.07em;
}


.mission-inner p {

  max-width: 700px;

  margin: auto;

  color: #aaa29a;

  line-height: 1.8;
}


.mission-line {

  width: 80px;

  height: 3px;

  margin:
    35px auto 18px;

  background:
    linear-gradient(
      90deg,
      var(--blue),
      var(--orange)
    );
}


.mission-inner strong {

  color: white;

  font-size: .7rem;

  letter-spacing: .12em;
}


/* ============================================================
   CTA
   ============================================================ */

.about-cta {

  padding:
    55px 0;

  background: var(--orange);

  color: white;
}


.cta-inner {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 35px;
}


.cta-inner small {

  font-size: .6rem;

  font-weight: 800;

  letter-spacing: .15em;
}


.cta-inner h2 {

  margin:
    10px 0 7px;

  font-size:
    clamp(
      2rem,
      3.5vw,
      3.4rem
    );

  line-height: .95;

  letter-spacing: -.055em;
}


.cta-inner p {

  margin: 0;

  color:
    rgba(255,255,255,.78);
}


.cta-button {

  display: inline-flex;

  align-items: center;

  gap: 15px;

  flex-shrink: 0;

  padding:
    14px 19px;

  border-radius: 9px;

  background: white;

  color: var(--black);

  font-size: .8rem;

  font-weight: 800;
}


.cta-button span {

  color: var(--orange);

  font-size: 1.1rem;
}


/* ============================================================
   REVEAL
   ============================================================ */

.reveal {

  opacity: 0;

  transform:
    translateY(25px);

  transition:
    opacity .7s ease,
    transform .7s ease;
}


.reveal.visible {

  opacity: 1;

  transform: none;
}


/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes spin {

  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}


@keyframes spin-reverse {

  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}


@keyframes wave {

  from {
    transform: scaleY(.65);
  }

  to {
    transform: scaleY(1.1);
  }
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 900px) {

  .desktop-nav {
    display: none;
  }


  .menu-btn {
    display: block;
  }


  .hero-container {

    grid-template-columns: 1fr;

    gap: 45px;

    padding:
      70px 0;
  }


  .hero-content {
    text-align: center;
  }


  .eyebrow {
    justify-content: center;
  }


  .hero-buttons {
    justify-content: center;
  }


  .hero-visual {
    min-height: 390px;
  }


  .model-grid {

    grid-template-columns:
      repeat(2,1fr);
  }


  .about-grid,
  .problem-layout,
  .global-layout,
  .review-layout,
  .status-layout {

    grid-template-columns: 1fr;

    gap: 55px;
  }


  .opportunity-grid {

    grid-template-columns:
      1fr;
  }


  .arts-grid {

    grid-template-columns:
      repeat(3,1fr);
  }


  .win-grid {

    grid-template-columns:
      repeat(2,1fr);
  }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 650px) {

  .container {

    width:
      min(
        calc(100% - 30px),
        550px
      );
  }


  .header-inner {

    width:
      calc(100% - 30px);
  }


  .header-cta {
    display: none;
  }


  .about-hero {

    min-height: auto;
  }


  .hero-container {

    padding:
      55px 0 70px;
  }


  .hero-content h1 {

    font-size:
      clamp(
        3rem,
        15vw,
        4.5rem
      );
  }


  .hero-content h2 {

    font-size: 1.35rem;
  }


  .hero-content p {

    font-size: .93rem;

    line-height: 1.7;
  }


  .hero-buttons {

    flex-direction: column;

    align-items: stretch;
  }


  .primary-button,
  .secondary-button {

    width: 100%;
  }


  .visual-core {

    width: 310px;

    height: 310px;
  }


  .core-center {

    width: 120px;

    height: 120px;
  }


  .core-center strong {
    font-size: 1rem;
  }


  .orbit {

    width: 60px;

    height: 60px;

    font-size: .58rem;
  }


  .section-heading {

    grid-template-columns: 1fr;

    gap: 8px;

    margin-bottom: 42px;
  }


  .section-heading h2 {

    font-size:
      clamp(
        2rem,
        10vw,
        3rem
      );
  }


  .about-section,
  .problem-section,
  .model-section,
  .global-section,
  .opportunities-section,
  .review-section,
  .status-section,
  .arts-section {

    padding:
      80px 0;
  }


  .about-statement {

    padding: 28px;
  }


  .big-statement {

    font-size: 2rem;
  }


  .model-grid {

    grid-template-columns: 1fr;
  }


  .model-card {

    min-height: 270px;
  }


  .global-map-card {

    min-height: 380px;
  }


  .africa-shape {

    font-size: 4.5rem;
  }


  .connection-line {

    width: 120px;
  }


  .review-circle {

    width: 280px;

    height: 280px;
  }


  .review-circle strong {

    font-size: 2.5rem;
  }


  .arts-grid {

    grid-template-columns:
      repeat(2,1fr);
  }


  .win-grid {

    grid-template-columns:
      1fr;
  }


  .mission-section {

    padding:
      85px 0;
  }


  .mission-inner h2 {

    font-size:
      clamp(
        2.8rem,
        14vw,
        4.5rem
      );
  }


  .cta-inner {

    flex-direction: column;

    align-items: flex-start;
  }


  .cta-button {

    width: 100%;

    justify-content: center;
  }

}


/* ============================================================
   SMALL PHONES
   ============================================================ */

@media (max-width: 390px) {

  .container {

    width:
      calc(100% - 24px);
  }


  .hero-content h1 {

    font-size: 2.8rem;
  }


  .visual-core {

    width: 280px;

    height: 280px;
  }


  .arts-grid {

    grid-template-columns: 1fr;
  }

}


/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }


  .reveal {

    opacity: 1;

    transform: none;

    transition: none;
  }


  * {

    animation-duration: .01ms !important;

    animation-iteration-count: 1 !important;

    transition-duration: .01ms !important;
  }

}