@import url("https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,100..1000&display=swap");
:root {
  --ink: #05070a;
  --panel: #0b1015;
  --line: rgba(161, 181, 195, 0.16);
  --muted: #8c9aa5;
  --white: #f3f7f5;
  --acid: #b9ff4c;
  --cyan: #38dcff;
  --violet: #7e6bff;

  --font-head: "Manrope", sans-serif;
  --font-body: "Manrope", sans-serif;
  --mono: "DM Mono", monospace;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--ink);
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
}
a {
  color: inherit;
}
button {
  font: inherit;
}
.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 78% 12%,
      rgba(55, 226, 255, 0.07),
      transparent 28%
    ),
    radial-gradient(
      circle at 24% 45%,
      rgba(185, 255, 76, 0.04),
      transparent 26%
    );
}
.ambient:after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, #000, transparent 75%);
}
.ambient i {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    13vw 18vh #fff,
    29vw 61vh #b9ff4c,
    72vw 34vh #38dcff,
    91vw 79vh #fff,
    52vw 87vh #fff;
  opacity: 0.35;
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid transparent;
  transition: 0.3s;
}
.site-header.scrolled {
  background: rgba(5, 7, 10, 0.82);
  backdrop-filter: blur(18px);
  border-color: var(--line);
}
.nav-shell {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font: 700 15px/1 var(--font-head);
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  position: relative;
  transform: rotate(30deg);
}
.brand-mark b {
  position: absolute;
  width: 17px;
  height: 17px;
  border: 1px solid var(--acid);
}
.brand-mark b:nth-child(2) {
  width: 11px;
  height: 11px;
  transform: translate(5px, -5px);
  border-color: var(--cyan);
}
.brand-mark b:nth-child(3) {
  width: 5px;
  height: 5px;
  background: var(--white);
  border: 0;
}
.desktop-nav {
  display: flex;
  gap: 34px;
}
.desktop-nav a {
  font-size: 12px;
  text-decoration: none;
  color: #aab4bc;
  transition: 0.2s;
}
.desktop-nav a:hover {
  color: var(--white);
}
.nav-cta {
  font: 500 11px var(--mono);
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 99px;
}
.nav-cta span,
.text-link span,
.primary-button span,
.machine-action span {
  color: var(--acid);
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 36px;
  height: 36px;
}
.menu-toggle span {
  display: block;
  height: 1px;
  background: white;
  margin: 7px;
}
.hero {
  min-height: 760px;
  height: 100vh;
  max-height: 940px;
  padding-top: 110px;
  display: grid;
  grid-template-columns: 47% 53%;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-copy {
  position: relative;
  z-index: 3;
}
.status-pill {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  font: 10px var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #adb8c0;
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.02);
}
.status-pill span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 12px var(--acid);
  animation: pulse 2s infinite;
}
.hero h1 {
  font: 600 clamp(48px, 6.4vw, 90px)/0.9 var(--font-head);
  letter-spacing: -0.07em;
  margin: 26px 0 25px;
  max-width: 760px;
}
.hero h1 span {
  color: #aeb8bf;
}
.hero h1 em {
  color: var(--acid);
  font-style: normal;
}
.hero-lede {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 33px;
}
.primary-button {
  background: var(--acid) !important;
  color: #071007 !important;
  border: 0 !important;
  border-radius: 4px !important;
  font: 600 12px var(--mono) !important;
  height: 48px !important;
  padding: 0 21px !important;
  box-shadow: 0 0 28px rgba(185, 255, 76, 0.12);
  transition: 0.25s !important;
}
.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(185, 255, 76, 0.25);
}
.primary-button span {
  color: #071007;
  margin-left: 24px;
}
.text-link {
  font: 500 11px var(--mono);
  text-decoration: none;
  color: #d4dadd;
  border-bottom: 1px solid #53606a;
  padding-bottom: 6px;
}
.text-link span {
  margin-left: 9px;
}
.trust-row {
  display: flex;
  gap: 28px;
  margin-top: 50px;
  padding-top: 21px;
  border-top: 1px solid var(--line);
  max-width: 470px;
}
.trust-row div {
  display: grid;
  gap: 3px;
}
.trust-row strong {
  font: 500 16px var(--mono);
}
.trust-row span {
  font: 9px var(--mono);
  color: #7e8b94;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-visual {
  position: relative;
  height: min(72vh, 680px);
  min-height: 510px;
  perspective: 1000px;
}
.core-machine {
  width: 112%;
  height: 112%;
  position: absolute;
  left: -4%;
  top: -5%;
  overflow: visible;
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform 0.25s ease;
  filter: drop-shadow(0 40px 45px rgba(0, 0, 0, 0.65));
}
.orbit {
  transform-origin: 320px 320px;
}
.orbit-a {
  animation: orbit 17s linear infinite;
}
.orbit-b {
  animation: orbitBack 22s linear infinite;
}
.energy {
  animation: corePulse 2.8s ease-in-out infinite;
}
.core-lines {
  animation: lines 2.5s ease-in-out infinite;
}
.visual-label {
  position: absolute;
  right: 2%;
  top: 11%;
  display: grid;
  z-index: 2;
  font: 9px var(--mono);
  color: #7c8992;
  text-align: right;
}
.visual-label span {
  color: var(--acid);
}
.float-card {
  position: absolute;
  z-index: 4;
  background: rgba(10, 15, 20, 0.76);
  border: 1px solid rgba(167, 187, 199, 0.2);
  backdrop-filter: blur(14px);
  padding: 13px 15px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.32);
  font-family: var(--mono);
}
.float-card > span {
  font-size: 8px;
  color: #74828b;
  letter-spacing: 0.08em;
}
.float-card strong {
  display: block;
  font-size: 18px;
  margin-top: 5px;
}
.float-card strong small {
  font-size: 8px;
  color: #839098;
}
.float-card > i {
  display: block;
  width: 105px;
  height: 2px;
  background: #26313a;
  margin-top: 10px;
}
.float-card > i b {
  display: block;
  height: 100%;
  background: var(--acid);
  box-shadow: 0 0 8px var(--acid);
}
.card-hash {
  left: 3%;
  bottom: 20%;
  animation: float 4s ease-in-out infinite;
}
.card-node {
  right: 0;
  bottom: 31%;
  animation: float 4.6s 1s ease-in-out infinite;
}
.card-node strong {
  font-size: 10px;
  color: #dce5e7;
}
.card-node strong i {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--acid);
}
.card-node small {
  display: block;
  font-size: 8px;
  color: #697882;
  margin-top: 7px;
}
.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  gap: 10px;
  text-decoration: none;
  font: 8px var(--mono);
  letter-spacing: 0.14em;
  color: #65717a;
}
.scroll-cue i {
  font-style: normal;
  color: var(--acid);
}
.signal-strip {
  position: relative;
  z-index: 2;
  border-block: 1px solid var(--line);
  overflow: hidden;
  background: #080b0e;
  transform: rotate(-1deg);
  width: 102%;
  margin-left: -1%;
}
.ticker {
  width: max-content;
  display: flex;
  gap: 35px;
  align-items: center;
  padding: 14px;
  font: 9px var(--mono);
  letter-spacing: 0.12em;
  color: #78858e;
  animation: ticker 24s linear infinite;
}
.ticker i {
  color: var(--acid);
  font-size: 6px;
}
.section-block {
  position: relative;
  z-index: 1;
  padding-block: 130px;
}
.section-heading {
  max-width: 600px;
}
.section-index {
  font: 9px var(--mono);
  letter-spacing: 0.13em;
  color: var(--acid);
}
.section-heading h2,
.community-card h2,
.cta-panel h2 {
  font: 600 clamp(38px, 5vw, 67px)/0.98 var(--font-head);
  letter-spacing: -0.055em;
  margin: 16px 0;
}
.section-heading p,
.community-card p,
.cta-panel p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  max-width: 480px;
}
.process-grid,
.machine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  margin-top: 55px;
}
.process-card,
.machine-card {
  border: 1px solid var(--line);
  background: linear-gradient(
    145deg,
    rgba(17, 23, 29, 0.72),
    rgba(7, 10, 13, 0.58)
  );
  padding: 25px;
  min-height: 270px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}
.process-card:hover,
.machine-card:hover {
  border-color: rgba(185, 255, 76, 0.35);
  transform: translateY(-4px);
}
.process-card > span {
  font: 9px var(--mono);
  color: #66747d;
}
.process-card h3,
.machine-card h3 {
  font: 600 20px var(--font-head);
  letter-spacing: -0.03em;
  margin: 25px 0 8px;
}
.process-card p,
.machine-card p {
  font-size: 12px;
  line-height: 1.6;
  color: #77858f;
  max-width: 280px;
}
.process-card.featured {
  background: linear-gradient(
    145deg,
    rgba(185, 255, 76, 0.13),
    rgba(7, 10, 13, 0.7)
  );
}
.process-icon,
.chart-icon {
  height: 70px;
  margin-top: 28px;
  display: flex;
  align-items: end;
  gap: 7px;
}
.process-icon i {
  width: 27px;
  border: 1px solid #55636c;
  background: #0c1318;
  transform: skewY(-24deg);
}
.process-icon i:nth-child(1) {
  height: 31px;
}
.process-icon i:nth-child(2) {
  height: 51px;
  border-color: var(--acid);
}
.process-icon i:nth-child(3) {
  height: 39px;
}
.pulse-icon {
  height: 70px;
  position: relative;
  margin-top: 28px;
}
.pulse-icon i,
.pulse-icon b {
  position: absolute;
  border: 1px solid var(--acid);
  border-radius: 50%;
  inset: 10px auto auto 35px;
  width: 47px;
  height: 47px;
}
.pulse-icon b {
  inset: 25px auto auto 50px;
  width: 17px;
  height: 17px;
  background: var(--acid);
  box-shadow: 0 0 24px rgba(185, 255, 76, 0.5);
}
.pulse-icon i {
  animation: pulseRing 2s infinite;
}
.chart-icon i {
  width: 7px;
  background: #53606a;
}
.chart-icon i:nth-child(1) {
  height: 24px;
}
.chart-icon i:nth-child(2) {
  height: 42px;
}
.chart-icon i:nth-child(3) {
  height: 59px;
  background: var(--cyan);
  box-shadow: 0 0 15px rgba(56, 220, 255, 0.25);
}
.chart-icon i:nth-child(4) {
  height: 37px;
}
.split {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.machine-grid {
  margin-top: 35px;
}
.machine-card {
  padding: 18px;
  min-height: 430px;
}
.machine-top {
  display: flex;
  justify-content: space-between;
  font: 9px var(--mono);
  color: #68757e;
}
.machine-top i {
  font-style: normal;
  color: var(--acid);
  font-size: 7px;
}
.machine-render {
  height: 215px;
  margin: 15px -4px;
  display: grid;
  place-items: center;
  perspective: 550px;
  background: radial-gradient(
    circle,
    rgba(56, 220, 255, 0.09),
    transparent 63%
  );
}
.rig {
  position: relative;
  width: 138px;
  height: 116px;
  border: 1px solid #5d6b74;
  background: linear-gradient(145deg, #202a33, #070b0f 62%);
  transform: rotateX(62deg) rotateZ(-38deg);
  box-shadow: 20px 25px 35px #000;
}
.rig:before,
.rig:after {
  content: "";
  position: absolute;
  background: #111820;
  border: 1px solid #3e4a53;
}
.rig:before {
  width: 100%;
  height: 31px;
  left: 15px;
  top: 100%;
  transform: skewX(45deg);
  transform-origin: top;
}
.rig:after {
  width: 31px;
  height: 100%;
  left: 100%;
  top: 15px;
  transform: skewY(45deg);
  transform-origin: left;
}
.rig b {
  position: absolute;
  width: 43px;
  height: 35px;
  border: 1px solid #45535c;
  background: repeating-linear-gradient(90deg, #151e25 0 4px, #293640 4px 6px);
}
.rig b:nth-child(1) {
  left: 17px;
  top: 17px;
}
.rig b:nth-child(2) {
  right: 17px;
  top: 17px;
}
.rig b:nth-child(3) {
  left: 17px;
  bottom: 17px;
}
.rig b:nth-child(4) {
  right: 17px;
  bottom: 17px;
}
.rig span {
  position: absolute;
  width: 9px;
  height: 9px;
  background: var(--acid);
  box-shadow: 0 0 15px var(--acid);
  left: 64px;
  top: 53px;
}
.machine-card.violet .rig span,
.machine-card.violet progress::-webkit-progress-value {
  background: var(--violet);
  box-shadow: 0 0 15px var(--violet);
}
.machine-card.lime .rig span {
  background: var(--acid);
}
.machine-card h3 {
  margin: 15px 0 2px;
}
.machine-card p {
  margin: 0;
}
.machine-meter {
  margin-top: 18px;
}
.machine-meter span {
  display: flex;
  justify-content: space-between;
  font: 8px var(--mono);
  color: #68757e;
}
.machine-meter i {
  font-style: normal;
}
.machine-meter progress {
  width: 100%;
  height: 2px;
  border: 0;
  background: #273139;
}
.machine-meter progress::-webkit-progress-bar {
  background: #273139;
}
.machine-meter progress::-webkit-progress-value {
  background: var(--cyan);
}
.machine-action {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border: 1px solid var(--line);
  background: transparent;
  color: #aeb9c0;
  padding: 10px 12px;
  font: 9px var(--mono);
  margin-top: 17px;
}
.disclaimer {
  color: #59666e;
  font: 8px/1.6 var(--mono);
  margin-top: 16px;
  max-width: 700px;
}
.network-section {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  background: #080c10;
  border-block: 1px solid var(--line);
}
.network-grid {
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: center;
}
.country-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  margin-top: 28px;
}
.country-list span {
  border-bottom: 1px solid var(--line);
  padding: 9px 0;
  font-size: 11px;
  color: #a3adb4;
}
.country-list b {
  font: 8px var(--mono);
  color: var(--acid);
  margin-right: 10px;
}
.africa-map {
  height: 530px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(
    circle at 52% 51%,
    rgba(56, 220, 255, 0.12),
    transparent 43%
  );
  border-left: 1px solid var(--line);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%, 10% 73%, 5% 48%);
}
.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(130, 154, 167, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(130, 154, 167, 0.09) 1px, transparent 1px);
  background-size: 36px 36px;
  transform: perspective(400px) rotateX(12deg) rotateZ(-4deg);
  mask-image: radial-gradient(circle, #000, transparent 70%);
}
.africa-map:before {
  content: "";
  position: absolute;
  width: 260px;
  height: 350px;
  left: 42%;
  top: 15%;
  border: 1px solid rgba(185, 255, 76, 0.3);
  background: linear-gradient(140deg, rgba(185, 255, 76, 0.04), transparent);
  clip-path: polygon(
    32% 0,
    60% 5%,
    78% 23%,
    91% 37%,
    77% 61%,
    68% 84%,
    50% 100%,
    34% 78%,
    21% 59%,
    7% 42%,
    17% 21%
  );
}
.map-orbit {
  position: absolute;
  width: 390px;
  height: 180px;
  border: 1px solid rgba(56, 220, 255, 0.2);
  border-radius: 50%;
  left: 27%;
  top: 34%;
  transform: rotate(-20deg);
  animation: mapOrbit 8s linear infinite;
}
.node {
  position: absolute;
  font: 7px var(--mono);
  color: #b8c3c8;
}
.node i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 12px var(--acid);
  margin: auto;
}
.n1 {
  left: 42%;
  top: 37%;
}
.n2 {
  left: 71%;
  top: 42%;
}
.n3 {
  left: 62%;
  top: 57%;
}
.n4 {
  left: 70%;
  top: 59%;
}
.n5 {
  left: 58%;
  top: 70%;
}
.n6 {
  left: 56%;
  top: 80%;
}
.africa-map strong {
  position: absolute;
  left: 14%;
  bottom: 14%;
  font: 500 46px var(--mono);
  display: flex;
  align-items: center;
  gap: 9px;
}
.africa-map strong small {
  font: 7px/1.5 var(--mono);
  color: #78858e;
}
.community-section {
  position: relative;
  z-index: 1;
  padding-block: 120px;
}
.community-card {
  min-height: 480px;
  border: 1px solid var(--line);
  padding: 70px;
  display: grid;
  grid-template-columns: 58% 42%;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 82% 48%,
      rgba(126, 107, 255, 0.12),
      transparent 31%
    ),
    linear-gradient(135deg, #0b1116, #07090c);
}
.community-card h2 em {
  color: var(--acid);
  font-style: normal;
}
.community-card .primary-button {
  margin-top: 25px;
}
.community-orb {
  width: 300px;
  height: 300px;
  position: relative;
  border: 1px solid rgba(126, 107, 255, 0.4);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 70px rgba(126, 107, 255, 0.12);
  animation: float 6s ease-in-out infinite;
}
.community-orb i {
  position: absolute;
  border: 1px solid rgba(56, 220, 255, 0.28);
  border-radius: 50%;
  inset: 30px;
}
.community-orb i:nth-child(2) {
  inset: 67px;
  border-color: rgba(185, 255, 76, 0.3);
}
.community-orb i:nth-child(3) {
  inset: -25px;
  border-style: dashed;
}
.community-orb span {
  text-align: center;
  font: 10px/1.5 var(--mono);
  color: #ced8dc;
}
.community-orb b {
  position: absolute;
  width: 27px;
  height: 27px;
  border: 1px solid var(--line);
  background: #111820;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font: 7px var(--mono);
  color: var(--acid);
}
.community-orb b:nth-of-type(1) {
  left: 0;
  top: 42%;
}
.community-orb b:nth-of-type(2) {
  right: 35px;
  top: 8%;
}
.community-orb b:nth-of-type(3) {
  right: 16px;
  bottom: 23%;
}
.cta-section {
  position: relative;
  z-index: 1;
  padding-bottom: 120px;
}
.cta-panel {
  padding: 85px;
  text-align: center;
  background: var(--acid);
  color: #071007;
  clip-path: polygon(
    2% 0,
    98% 0,
    100% 12%,
    100% 88%,
    98% 100%,
    2% 100%,
    0 88%,
    0 12%
  );
}
.cta-panel .section-index {
  color: #1b3711;
}
.cta-panel p {
  color: #315223;
  margin: 15px auto;
}
.primary-button.light {
  background: #071007 !important;
  color: white !important;
  margin-top: 23px;
}
.primary-button.light span {
  color: var(--acid);
}
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  padding: 70px 0 25px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr 1fr;
  gap: 40px;
}
.footer-grid p {
  font-size: 12px;
  line-height: 1.7;
  color: #77858e;
}
.footer-grid > div {
  display: grid;
  gap: 9px;
}
.footer-grid > div span {
  font: 8px var(--mono);
  color: #57646c;
  margin-bottom: 5px;
}
.footer-grid > div a {
  font-size: 11px;
  color: #96a2aa;
  text-decoration: none;
}
.footer-base {
  border-top: 1px solid var(--line);
  margin-top: 55px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font: 8px var(--mono);
  color: #526068;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.process-card:nth-child(2),
.machine-card:nth-child(2) {
  transition-delay: 0.09s;
}
.process-card:nth-child(3),
.machine-card:nth-child(3) {
  transition-delay: 0.18s;
}
@keyframes pulse {
  50% {
    opacity: 0.4;
    box-shadow: 0 0 4px var(--acid);
  }
}
@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}
@keyframes orbitBack {
  from {
    transform: rotate(48deg);
  }
  to {
    transform: rotate(-312deg);
  }
}
@keyframes corePulse {
  50% {
    opacity: 0.27;
    transform: scale(0.85);
    transform-origin: 320px 223px;
  }
}
@keyframes lines {
  50% {
    stroke-opacity: 0.22;
  }
}
@keyframes float {
  50% {
    transform: translateY(-10px);
  }
}
@keyframes pulseRing {
  0% {
    transform: scale(0.7);
    opacity: 1;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}
@keyframes mapOrbit {
  to {
    transform: rotate(340deg);
  }
}
@media (max-width: 900px) {
  .desktop-nav {
    position: fixed;
    top: 68px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    padding: 25px;
    background: #0c1116;
    border: 1px solid var(--line);
  }
  .desktop-nav.is-open {
    display: flex;
  }
  .nav-cta {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .hero {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    padding-top: 145px;
    padding-bottom: 85px;
  }
  .hero-copy {
    max-width: 650px;
  }
  .hero h1 {
    font-size: clamp(49px, 12vw, 74px);
  }
  .hero-visual {
    height: 610px;
    margin-top: -40px;
  }
  .scroll-cue {
    display: none;
  }
  .process-grid,
  .machine-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-card:last-child,
  .machine-card:last-child {
    grid-column: 1/-1;
  }
  .network-grid {
    grid-template-columns: 1fr;
  }
  .africa-map {
    border-left: 0;
    margin-top: 55px;
  }
  .community-card {
    padding: 50px;
    grid-template-columns: 1fr;
  }
  .community-orb {
    margin: 50px auto 0;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > .brand,
  .footer-grid > p {
    grid-column: auto;
  }
  .section-block {
    padding-block: 95px;
  }
}
@media (max-width: 600px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }
  .nav-shell {
    height: 68px;
  }
  .hero {
    padding-top: 118px;
    padding-bottom: 70px;
  }
  .status-pill {
    font-size: 8px;
  }
  .hero h1 {
    font-size: 49px;
    margin-top: 22px;
  }
  .hero-lede {
    font-size: 13px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .trust-row {
    gap: 16px;
    justify-content: space-between;
  }
  .trust-row strong {
    font-size: 13px;
  }
  .trust-row span {
    font-size: 7px;
  }
  .hero-visual {
    height: 420px;
    min-height: 0;
    margin: 5px -20px -15px;
  }
  .core-machine {
    width: 124%;
    height: 124%;
    left: -12%;
    top: -12%;
  }
  .float-card {
    transform: scale(0.82);
  }
  .card-hash {
    left: -4%;
    bottom: 17%;
  }
  .card-node {
    right: -3%;
    bottom: 29%;
  }
  .visual-label {
    right: 7%;
    top: 6%;
  }
  .section-block {
    padding-block: 75px;
  }
  .section-heading h2,
  .community-card h2,
  .cta-panel h2 {
    font-size: 39px;
  }
  .process-grid,
  .machine-grid {
    grid-template-columns: 1fr;
  }
  .process-card:last-child,
  .machine-card:last-child {
    grid-column: auto;
  }
  .process-card {
    min-height: 245px;
  }
  .machine-card {
    min-height: 410px;
  }
  .split {
    align-items: flex-start;
    gap: 20px;
  }
  .split .text-link {
    display: none;
  }
  .network-section {
    padding: 75px 0;
  }
  .country-list {
    gap: 5px;
  }
  .africa-map {
    height: 390px;
    margin: 40px -15px -25px;
  }
  .africa-map:before {
    width: 205px;
    height: 275px;
  }
  .map-orbit {
    width: 290px;
    height: 130px;
    left: 18%;
  }
  .community-section {
    padding-block: 75px;
  }
  .community-card {
    padding: 35px 25px;
    min-height: 0;
  }
  .community-card br {
    display: none;
  }
  .community-orb {
    width: 220px;
    height: 220px;
  }
  .cta-section {
    padding-bottom: 75px;
  }
  .cta-panel {
    padding: 60px 22px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > .brand,
  .footer-grid > p {
    grid-column: 1/-1;
  }
  .footer-base {
    gap: 12px;
    flex-direction: column;
  }
  .ticker {
    animation-duration: 17s;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
.portfolio-intro {
  position: relative;
  z-index: 1;
  padding: 145px 0 100px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
}
.portfolio-statement h2 {
  font: 600 clamp(40px, 5.7vw, 76px)/0.95 var(--font-head);
  letter-spacing: -0.065em;
  margin: 18px 0;
}
.portfolio-statement h2 em {
  font-style: normal;
  color: var(--acid);
}
.portfolio-copy {
  padding-top: 30px;
}
.portfolio-copy p {
  font-size: 13px;
  line-height: 1.8;
  color: #8a979f;
}
.portfolio-copy a {
  display: inline-block;
  margin-top: 15px;
  color: var(--acid);
  font: 8px var(--mono);
  text-decoration: none;
}
.portfolio-facts {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}
.portfolio-facts article {
  display: grid;
  gap: 6px;
  padding: 25px;
  border-right: 1px solid var(--line);
}
.portfolio-facts article:last-child {
  border: 0;
}
.portfolio-facts span,
.leadership-grid > article > span {
  font: 7px var(--mono);
  color: #66737b;
}
.portfolio-facts strong {
  font: 500 20px var(--mono);
}
.portfolio-facts small {
  font: 7px var(--mono);
  color: #637079;
}
.leadership-section {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 50px;
}
.leadership-grid article {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #0e141a, #070a0d);
  padding: 25px;
}
.leader-monogram {
  width: 100%;
  height: 180px;
  margin: 18px 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle, rgba(185, 255, 76, 0.1), transparent 52%),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.018) 0 1px,
      transparent 1px 10px
    );
  border: 1px solid var(--line);
  font: 500 26px var(--mono);
  color: var(--acid);
}
.leadership-grid h3 {
  font: 600 18px var(--font-head);
  margin: 14px 0 7px;
}
.leadership-grid p {
  font-size: 9px;
  line-height: 1.7;
  color: #718089;
}
.leadership-grid small {
  font: 6px var(--mono);
  color: #59666e;
}
@media (max-width: 760px) {
  .portfolio-intro {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 90px 0 65px;
  }
  .portfolio-copy {
    padding-top: 0;
  }
  .portfolio-facts {
    grid-template-columns: 1fr 1fr;
  }
  .portfolio-facts article:nth-child(2) {
    border-right: 0;
  }
  .portfolio-facts article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .leadership-grid {
    grid-template-columns: 1fr;
  }
  .leader-monogram {
    height: 140px;
  }
  .leadership-section {
    padding: 80px 0;
  }
}
