:root {
  --ink: #08090b;
  --ink-2: #101216;
  --wine: #6f151b;
  --wine-2: #3d0b10;
  --gold: #d8aa55;
  --gold-soft: #f1d28a;
  --text: #f7f0e3;
  --muted: #b9ad9c;
  --line: rgba(216, 170, 85, 0.22);
  --glass: rgba(255, 255, 255, 0.055);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.55;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(115deg, rgba(111, 21, 27, 0.28), transparent 42%),
    linear-gradient(180deg, #07080a 0%, #101010 48%, #07080a 100%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.19;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 9, 11, 0.7);
  backdrop-filter: blur(18px);
  transition:
    padding 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.topbar.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  border-color: rgba(216, 170, 85, 0.22);
  background: rgba(8, 9, 11, 0.88);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand img {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(216, 170, 85, 0.28);
  border-radius: 50%;
  object-fit: contain;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.34);
}

.topbar nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.topbar nav a {
  transition: color 180ms ease;
}

.topbar nav a:hover {
  color: var(--gold-soft);
}

.hero {
  position: relative;
  min-height: calc(100svh - 79px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: stretch;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0 0 0 48%;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, var(--ink) 0%, rgba(8, 9, 11, 0.76) 18%, transparent 56%),
    linear-gradient(0deg, rgba(8, 9, 11, 0.42), rgba(8, 9, 11, 0.06));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 12%;
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 760px;
  padding: 92px clamp(22px, 6vw, 92px) 188px;
  transform: translateY(-44px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.02;
}

h1 {
  max-width: 820px;
  margin-bottom: 26px;
  font-size: clamp(46px, 7vw, 104px);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 4.8vw, 72px);
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.lead {
  max-width: 620px;
  color: #e8ddca;
  font-size: clamp(19px, 2vw, 27px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.primary-action {
  background: linear-gradient(135deg, #f0d082, #bd8131);
  color: #1a1108;
}

.secondary-action {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 210, 138, 0.7);
}

.hero-metrics {
  position: absolute;
  right: clamp(18px, 4vw, 64px);
  bottom: 34px;
  left: clamp(18px, 4vw, 64px);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(8, 9, 11, 0.62);
  backdrop-filter: blur(12px);
}

.hero-metrics div {
  padding: 22px 26px;
  border-right: 1px solid rgba(216, 170, 85, 0.16);
}

.hero-metrics div:last-child {
  border-right: 0;
}

.hero-metrics span {
  display: block;
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 42px);
}

.hero-metrics p,
.section p,
.statement p,
.knowledge-copy li,
.finale p {
  color: var(--muted);
}

.hero-metrics p {
  margin-bottom: 0;
  font-size: 14px;
}

.section,
.statement,
.knowledge,
.impact,
.revenue,
.outcomes,
.finale {
  width: min(100%, 1480px);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 140px) clamp(18px, 5vw, 72px);
}

.section,
.statement,
.knowledge,
.impact,
.revenue,
.outcomes,
.finale {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.section.is-visible,
.statement.is-visible,
.knowledge.is-visible,
.impact.is-visible,
.revenue.is-visible,
.outcomes.is-visible,
.finale.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.split,
.global,
.ecosystem,
.mentor {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
}

.section-copy {
  max-width: 660px;
}

.section-copy p:not(.eyebrow),
.global-copy p,
.knowledge-copy p,
.features p,
.finale p {
  font-size: clamp(17px, 1.45vw, 22px);
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.status-grid article,
.features article {
  min-height: 218px;
  padding: 28px;
  border: 1px solid rgba(216, 170, 85, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.status-grid span,
.roadmap li span {
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
}

.status-grid p,
.features p {
  margin-bottom: 0;
}

.statement {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: end;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.statement p {
  margin-bottom: 0;
  font-size: clamp(22px, 3vw, 42px);
  line-height: 1.18;
}

.global {
  position: relative;
}

.world-panel {
  position: relative;
  display: grid;
  gap: 14px;
  padding: clamp(30px, 5vw, 70px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(111, 21, 27, 0.36), rgba(255, 255, 255, 0.03)),
    #0d0f12;
  box-shadow: var(--shadow);
}

.world-panel span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: #f2e4c8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 46px);
}

.world-panel span::after {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
  box-shadow: 0 0 22px rgba(216, 170, 85, 0.8);
}

.world-panel span:last-child {
  border-bottom: 0;
}

.ecosystem {
  align-items: center;
}

.orbit {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    conic-gradient(
      from 90deg at 50% 50%,
      transparent 0deg,
      rgba(216, 170, 85, 0.2) 26deg,
      transparent 52deg,
      transparent 94deg,
      rgba(216, 170, 85, 0.16) 124deg,
      transparent 154deg,
      transparent 206deg,
      rgba(216, 170, 85, 0.14) 236deg,
      transparent 268deg,
      transparent 316deg,
      rgba(216, 170, 85, 0.18) 342deg,
      transparent 360deg
    ),
    radial-gradient(circle at center, rgba(216, 170, 85, 0.11), transparent 38%),
    radial-gradient(circle at 18% 20%, rgba(111, 21, 27, 0.32), transparent 34%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015));
  box-shadow: var(--shadow);
}

.orbit::before,
.orbit::after {
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(216, 170, 85, 0.18);
  border-radius: 50%;
  content: "";
}

.orbit::after {
  inset: 25%;
  border-style: dashed;
  animation: orbitPulse 5.8s ease-in-out infinite;
}

.core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 178px;
  height: 178px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(241, 210, 138, 0.65);
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1110, #5f1519);
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.15;
  text-align: center;
  box-shadow: 0 0 36px rgba(216, 170, 85, 0.18);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.orbit:hover .core {
  transform: translate(-50%, -50%) scale(1.04);
  border-color: rgba(241, 210, 138, 0.94);
  box-shadow: 0 0 58px rgba(216, 170, 85, 0.24);
}

.orbit-track {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: var(--orbit-size);
  height: var(--orbit-size);
  margin-top: calc(var(--orbit-size) / -2);
  margin-left: calc(var(--orbit-size) / -2);
  border-radius: 50%;
  animation: orbitFloat var(--orbit-speed) linear infinite;
  animation-delay: var(--orbit-delay);
  pointer-events: none;
}

.orbit:hover .orbit-track {
  animation-play-state: paused;
}

.orbit-track span {
  position: absolute;
  top: 50%;
  left: 100%;
  z-index: 4;
  display: grid;
  place-items: center;
  min-width: 156px;
  max-width: 250px;
  width: max-content;
  min-height: 44px;
  height: auto;
  padding: 0 20px;
  transform: translate(-50%, -50%) rotate(var(--label-start));
  border: 1px solid rgba(216, 170, 85, 0.24);
  border-radius: 999px;
  background: rgba(8, 9, 11, 0.82);
  color: #efe1c5;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  animation: orbitLabel var(--orbit-speed) linear infinite;
  animation-delay: var(--orbit-delay);
  pointer-events: auto;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease;
}

.orbit:hover .orbit-track span {
  animation-play-state: paused;
}

.orbit-track span:hover {
  z-index: 8;
  border-color: rgba(241, 210, 138, 0.76);
  background: rgba(63, 18, 18, 0.92);
  color: var(--gold-soft);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34), 0 0 28px rgba(216, 170, 85, 0.18);
}

.track-books {
  --orbit-size: 410px;
  --orbit-start: -92deg;
  --label-start: 92deg;
  --orbit-speed: 44s;
  --orbit-delay: 0s;
  transform: rotate(var(--orbit-start));
}

.track-video {
  --orbit-size: 500px;
  --orbit-start: -26deg;
  --label-start: 26deg;
  --orbit-speed: 44s;
  --orbit-delay: 0s;
  transform: rotate(var(--orbit-start));
}

.track-courses {
  --orbit-size: 460px;
  --orbit-start: 34deg;
  --label-start: -34deg;
  --orbit-speed: 44s;
  --orbit-delay: 0s;
  transform: rotate(var(--orbit-start));
}

.track-events {
  --orbit-size: 520px;
  --orbit-start: 92deg;
  --label-start: -92deg;
  --orbit-speed: 44s;
  --orbit-delay: 0s;
  transform: rotate(var(--orbit-start));
}

.track-community {
  --orbit-size: 490px;
  --orbit-start: 156deg;
  --label-start: -156deg;
  --orbit-speed: 44s;
  --orbit-delay: 0s;
  transform: rotate(var(--orbit-start));
}

.track-ai {
  --orbit-size: 380px;
  --orbit-start: 214deg;
  --label-start: -214deg;
  --orbit-speed: 44s;
  --orbit-delay: 0s;
  transform: rotate(var(--orbit-start));
}

@keyframes orbitPulse {
  0%,
  100% {
    opacity: 0.42;
    transform: scale(1);
  }

  50% {
    opacity: 0.86;
    transform: scale(1.045);
  }
}

@keyframes orbitFloat {
  from {
    transform: rotate(var(--orbit-start));
  }

  to {
    transform: rotate(calc(var(--orbit-start) + 360deg));
  }
}

@keyframes orbitLabel {
  from {
    transform: translate(-50%, -50%) rotate(var(--label-start));
  }

  to {
    transform: translate(-50%, -50%) rotate(calc(var(--label-start) - 360deg));
  }
}

.mentor {
  background: linear-gradient(180deg, rgba(111, 21, 27, 0.16), transparent);
}

.phone {
  width: min(100%, 390px);
  min-height: 720px;
  margin: 0 auto;
  padding: 16px;
  border: 1px solid rgba(241, 210, 138, 0.36);
  border-radius: 42px;
  background: linear-gradient(160deg, #20242a, #07080a);
  box-shadow: var(--shadow);
}

.phone-top {
  width: 108px;
  height: 24px;
  margin: 4px auto 18px;
  border-radius: 999px;
  background: #050506;
}

.chat {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 638px;
  padding: 26px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(111, 21, 27, 0.26), transparent),
    #101216;
}

.message {
  max-width: 88%;
  margin: 0;
  padding: 16px 18px;
  border-radius: 20px;
  font-size: 17px;
}

.message.user {
  align-self: flex-end;
  background: var(--gold);
  color: #171008;
  font-weight: 800;
}

.message.ai {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.source {
  margin-top: auto;
  margin-bottom: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-size: 13px;
}

.knowledge {
  display: grid;
  grid-template-columns: minmax(290px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
}

.knowledge-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.knowledge-image img {
  width: 100%;
  aspect-ratio: 0.78;
  object-fit: cover;
  object-position: 58% center;
}

.knowledge-copy ul {
  display: grid;
  gap: 16px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.knowledge-copy li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(216, 170, 85, 0.16);
  font-size: clamp(19px, 2vw, 28px);
}

.features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.features article {
  min-height: 330px;
}

.impact {
  text-align: center;
}

.impact-line {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.impact-line div {
  padding: clamp(34px, 6vw, 76px);
  background:
    linear-gradient(150deg, rgba(111, 21, 27, 0.3), rgba(255, 255, 255, 0.03)),
    #0e1013;
}

.impact-line span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
}

.impact-line strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 64px);
  font-weight: 500;
  line-height: 1.08;
}

.revenue {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.revenue-intro {
  max-width: 650px;
}

.revenue-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 22px);
}

.revenue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.revenue-grid article {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid rgba(216, 170, 85, 0.17);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(111, 21, 27, 0.11)),
    #0d0f12;
  box-shadow: var(--shadow);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.revenue-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(241, 210, 138, 0.56);
  background:
    linear-gradient(145deg, rgba(216, 170, 85, 0.12), rgba(111, 21, 27, 0.22)),
    #0d0f12;
}

.revenue-grid span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.revenue-grid h3 {
  margin-top: auto;
  color: #f5ead6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 2vw, 32px);
  font-weight: 500;
  line-height: 1.1;
}

.revenue-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.roadmap {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 6vw, 84px);
}

.roadmap ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.roadmap li {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  align-items: center;
  min-height: 86px;
  padding: 20px 24px;
  border: 1px solid rgba(216, 170, 85, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: #f5ead6;
  font-size: clamp(20px, 2.5vw, 34px);
  font-family: Georgia, "Times New Roman", serif;
}

.roadmap li span {
  margin-bottom: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.outcomes {
  padding-top: 40px;
}

.outcomes-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: end;
  margin-bottom: 30px;
}

.outcomes-intro h2 {
  margin-bottom: 0;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.outcomes-grid article {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(216, 170, 85, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    #0d0f12;
  box-shadow: var(--shadow);
}

.outcomes-grid article:nth-child(2),
.outcomes-grid article:nth-child(3) {
  transform: translateY(34px);
}

.outcomes-grid span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
}

.outcomes-grid h3 {
  margin-top: auto;
  color: #f5ead6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 500;
  line-height: 1.1;
}

.outcomes-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.quote-card {
  background:
    linear-gradient(150deg, rgba(111, 21, 27, 0.58), rgba(216, 170, 85, 0.08)),
    #120c0d !important;
}

.finale {
  min-height: 80svh;
  display: grid;
  align-content: center;
  text-align: center;
}

.finale h2 {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}

.finale p {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}

.project-footer {
  width: min(100%, 1480px);
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  border-top: 1px solid var(--line);
}

.project-footer h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(30px, 3.6vw, 54px);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.team-grid article {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(216, 170, 85, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.07), rgba(111, 21, 27, 0.12)),
    #0d0f12;
}

.team-grid span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.team-grid h3 {
  margin-top: 26px;
  color: #f5ead6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 2.4vw, 38px);
  font-weight: 500;
  line-height: 1.08;
  white-space: nowrap;
}

.team-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

@media (max-width: 980px) {
  .topbar {
    align-items: flex-start;
  }

  .topbar nav {
    display: none;
  }

  .hero {
    min-height: auto;
    display: block;
  }

  .hero-media {
    position: relative;
    inset: auto;
    height: 54svh;
    min-height: 430px;
  }

  .hero-media::after {
    background:
      linear-gradient(0deg, var(--ink) 0%, rgba(8, 9, 11, 0.16) 54%, transparent 100%),
      linear-gradient(90deg, rgba(8, 9, 11, 0.1), rgba(8, 9, 11, 0.2));
  }

  .hero-content {
    padding: 34px clamp(18px, 5vw, 44px) 30px;
  }

  .hero-metrics {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: 1fr;
    margin: 0 18px 30px;
  }

  .hero-metrics div {
    border-right: 0;
    border-bottom: 1px solid rgba(216, 170, 85, 0.16);
  }

  .hero-metrics div:last-child {
    border-bottom: 0;
  }

  .split,
  .global,
  .ecosystem,
  .mentor,
  .knowledge,
  .statement,
  .roadmap,
  .revenue,
  .project-footer {
    grid-template-columns: 1fr;
  }

  .mentor .section-copy {
    order: -1;
  }

  .features,
  .impact-line,
  .outcomes-intro,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .outcomes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .revenue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .outcomes-grid article:nth-child(2),
  .outcomes-grid article:nth-child(3) {
    transform: none;
  }

  .orbit {
    min-height: 470px;
  }

}

@media (max-width: 620px) {
  .brand span {
    display: none;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .hero-actions {
    display: grid;
  }

  .status-grid {
    grid-template-columns: 1fr;
  }

  .outcomes-grid {
    grid-template-columns: 1fr;
  }

  .revenue-grid {
    grid-template-columns: 1fr;
  }

  .outcomes-grid article {
    min-height: 280px;
  }

  .revenue-grid article {
    min-height: 220px;
  }

  .phone {
    min-height: 610px;
    border-radius: 34px;
  }

  .chat {
    min-height: 530px;
    padding: 20px;
  }

  .message {
    max-width: 96%;
    font-size: 15px;
  }

  .roadmap li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .orbit {
    min-height: auto;
    display: grid;
    gap: 10px;
    padding: 28px;
  }

  .orbit::before,
  .orbit::after {
    display: none;
  }

  .core,
  .orbit-track,
  .orbit-track span {
    position: static;
    width: 100%;
    height: auto;
    min-height: 52px;
    margin: 0;
    transform: none;
    border-radius: 6px;
    animation: none;
  }

  .core {
    min-height: 112px;
  }

  .orbit-track span {
    display: grid;
  }
}
