@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/manrope-400.woff2") format("woff2");
}
@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/manrope-500.woff2") format("woff2");
}
@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/manrope-600.woff2") format("woff2");
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/jetbrains-mono-400.woff2") format("woff2");
}

:root {
  --bg: #0c0c0c;
  --bg-soft: #f4f4f4;
  --fg: #0c0c0c;
  --primary: #fff;
  --primary-fg: #0c0c0c;
  --muted: rgba(255, 255, 255, 0.55);
  --accent: #c4ffee;
  --teal: #59c0ac;
  --teal-border: rgba(89, 192, 172, 0.5);
  --mint: #81ffcf;
  --rh: #24f485;
  --deep: #024d60;
  --card-a: rgba(89, 192, 172, 0.28);
  --card-b: rgba(114, 228, 239, 0.25);
  --noise: url("/assets/images/noise.png");
  --pad: 20px;
  --max: 1440px;
  --inner: 1240px;
  --nav-h: 72px;
  --sans: Manrope, ui-sans-serif, system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --section-y: 28px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--primary);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: var(--noise);
  background-size: 180px 180px;
  opacity: 0.045;
  mix-blend-mode: overlay;
}
.noise-top,
.noise-rest {
  display: none;
}
.page {
  position: relative;
  z-index: 1;
}

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.wrap-tight {
  width: 100%;
  max-width: var(--inner);
  margin: 0 auto;
}

@media (min-width: 768px) {
  :root {
    --pad: 32px;
  }
}
@media (min-width: 1024px) {
  :root {
    --pad: 115px;
  }
}
@media (min-width: 1280px) {
  :root {
    --pad: 130px;
  }
}

/* NAV */
.nav-shell {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  padding: 8px 0;
}
.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 8px;
}
.nav-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 56px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(12, 12, 12, 0.72);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  position: relative;
}
.nav-bar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 9px;
  background: url("/assets/images/navbar-line.svg") no-repeat 18% 0 / auto 9px;
  pointer-events: none;
  opacity: 0.9;
}
@media (min-width: 768px) {
  .nav-shell {
    padding: 12px 0;
  }
  .nav-bar {
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
  }
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 6px;
  z-index: 2;
  justify-self: start;
}
.brand img,
.brand svg {
  width: 32px;
  height: 32px;
}
.brand-mark {
  width: 32px;
  height: 32px;
  color: #fff;
  flex: none;
  object-fit: contain;
}
.wordmark {
  font-family: var(--mono);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links {
  display: none;
  justify-content: center;
  align-items: stretch;
  height: 100%;
  gap: 0;
}
.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 16px 12px;
  font-size: 14px;
  letter-spacing: 0.14px;
  line-height: 1.3;
}
.nav-link span {
  position: relative;
  padding-bottom: 4px;
}
.nav-link span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-out;
}
.nav-link:hover span::after,
.nav-link.is-on span::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  z-index: 2;
  justify-self: end;
}
.nav-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: #fff;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}
.nav-open .nav-toggle span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}
.nav-open .nav-toggle span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}
@media (max-width: 1099px) {
  .nav-right > .btn-ghost {
    display: none;
  }
}
@media (max-width: 899px) {
  .nav-bar {
    display: flex !important;
    justify-content: space-between;
    gap: 8px;
  }
  .nav-links {
    display: none !important;
  }
  .nav-right .btn-fill,
  .nav-right .btn-arrow,
  .nav-right .btn-wave {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
}
@media (min-width: 900px) {
  .nav-bar {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  }
  .nav-links {
    display: flex;
    position: static;
    transform: none;
    justify-self: center;
  }
  .nav-toggle {
    display: none;
  }
}

.drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(12, 12, 12, 0.96);
  padding: 88px 20px 32px;
}
.nav-open .drawer {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.drawer a,
.drawer button {
  display: block;
  padding: 14px 4px;
  font-size: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}
.drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

/* BUTTONS */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow: hidden;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  height: 40px;
  padding: 0 12px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-lg {
  height: 52px;
  font-size: 16px;
  padding: 0 16px;
}
.btn-fill {
  background: var(--primary);
  color: var(--primary-fg);
}
.btn-ghost {
  border: 1px solid #fff;
  color: #fff;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
}
.btn-wave {
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover .btn-wave {
  opacity: 1;
}
.btn-wave img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 140%;
  object-fit: cover;
}
.wave-1 {
  animation: gradient-wave-1 5s ease-in-out infinite;
}
.wave-2 {
  animation: gradient-wave-2 5s ease-in-out infinite;
}
.wave-3 {
  animation: gradient-wave-3 5s ease-in-out infinite;
}
@keyframes gradient-wave-1 {
  0%,
  100% {
    opacity: 1;
  }
  33.33%,
  66.67% {
    opacity: 0;
  }
}
@keyframes gradient-wave-2 {
  0%,
  100% {
    opacity: 0;
  }
  33.33% {
    opacity: 1;
  }
  66.67% {
    opacity: 0;
  }
}
@keyframes gradient-wave-3 {
  0%,
  33.33% {
    opacity: 0;
  }
  66.67% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.btn-label {
  position: relative;
  padding: 0 8px 2px;
  z-index: 1;
}
.btn-arrow {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
  overflow: hidden;
  flex: none;
}
.btn-lg .btn-arrow {
  width: 24px;
  height: 24px;
}
.btn-arrows {
  display: flex;
  width: 200%;
  transform: translateX(-50%);
  transition: transform 0.3s ease-out;
}
.btn:hover .btn-arrows {
  transform: translateX(0);
}
.btn-arrows svg {
  width: 20px;
  height: 20px;
  flex: none;
}
.btn-lg .btn-arrows svg {
  width: 24px;
  height: 24px;
}
.btn.is-disabled,
.btn[aria-disabled="true"] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--nav-h) + 20px) 0 48px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero .wrap {
  width: 100%;
  min-width: 0;
  position: relative;
  z-index: 2;
}
.hero-split {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 28px;
}
@media (min-width: 960px) {
  .hero-split {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 24px;
    min-height: calc(100svh - 120px);
  }
}
.hero-visual {
  position: relative;
  z-index: 2;
  min-width: 0;
  height: min(72vw, 620px);
  display: grid;
  place-items: center;
}
.hero-iso {
  width: min(100%, 560px);
  height: auto;
  overflow: visible;
  transform: translate3d(var(--px, 0px), var(--py, 0px), 0);
  transition: transform 0.18s ease-out;
}
.iso-layer {
  transform-box: fill-box;
  transform-origin: 50% 50%;
}
.iso-lid { animation: iso-float 5.2s ease-in-out infinite; }
.iso-pcb { animation: iso-float 5.2s ease-in-out infinite .35s; }
.iso-base { animation: iso-float 5.2s ease-in-out infinite .7s; }
.iso-cube { animation: iso-cube 3.8s ease-in-out infinite; transform-box: fill-box; transform-origin: 50% 50%; }
.iso-guides line { animation: iso-dash 10s linear infinite; }
@keyframes iso-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}
@keyframes iso-cube {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes iso-dash {
  to { stroke-dashoffset: -80; }
}
.acc-wire {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  margin: 0 auto;
  animation: iso-float 6s ease-in-out infinite;
  filter: drop-shadow(0 24px 40px rgba(36, 244, 133, 0.12));
}
.rig {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform: rotateX(calc(var(--py, 0) * -7deg)) rotateY(calc(var(--px, 0) * 10deg));
  transition: transform 0.18s ease-out;
}
.guides {
  position: absolute;
  inset: 6% 22%;
  pointer-events: none;
}
.guides i {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  border-left: 1px dashed rgba(129, 255, 207, 0.28);
  animation: guide-pulse 4.5s ease-in-out infinite;
}
.guides i:first-child {
  left: 0;
}
.guides i:last-child {
  right: 0;
  animation-delay: -1.6s;
}
@keyframes guide-pulse {
  0%,
  100% {
    opacity: 0.25;
  }
  50% {
    opacity: 0.7;
  }
}
.iso {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 228px;
  height: 228px;
  margin: -114px 0 0 -114px;
  transform-style: preserve-3d;
  transform: rotateX(58deg) rotateZ(-45deg);
  animation: iso-yaw 16s ease-in-out infinite alternate;
}
@keyframes iso-yaw {
  from {
    transform: rotateX(58deg) rotateZ(-47deg);
  }
  to {
    transform: rotateX(60deg) rotateZ(-43deg);
  }
}
.wafer {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}
.face {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  overflow: hidden;
  backface-visibility: hidden;
}
.edge {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10px;
  transform-origin: bottom center;
  transform: rotateX(90deg);
  background: linear-gradient(#2a2a2a, #111);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.edge-teal {
  background: linear-gradient(#1a5c52, #0b2a26);
  box-shadow: 0 0 16px rgba(36, 244, 133, 0.25);
}
.edge-glow {
  height: 14px;
  background: linear-gradient(#81ffcf, #24f485 40%, #0b3d2c);
  box-shadow: 0 0 28px rgba(36, 244, 133, 0.55);
}
.face-lid {
  background: #141414;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 18px 18px;
  display: grid;
  place-items: center;
}
.lid-logo {
  width: 86px;
  height: 86px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(36, 244, 133, 0.45));
  animation: logo-breathe 3.6s ease-in-out infinite;
}
@keyframes logo-breathe {
  0%,
  100% {
    filter: drop-shadow(0 0 8px rgba(36, 244, 133, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 18px rgba(36, 244, 133, 0.7));
  }
}
.face-pcb {
  background: #0e3b34;
  background-image: radial-gradient(circle at 30% 30%, rgba(129, 255, 207, 0.18), transparent 55%);
}
.face-pcb svg {
  width: 100%;
  height: 100%;
}
.face-pcb svg path {
  stroke-dasharray: 180;
  animation: trace-run 7s linear infinite;
}
@keyframes trace-run {
  to {
    stroke-dashoffset: -360;
  }
}
.trace-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(196, 255, 238, 0.22) 50%, transparent 60%);
  background-size: 220% 220%;
  animation: scan 3.8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes scan {
  0% {
    background-position: 120% -20%;
  }
  100% {
    background-position: -20% 120%;
  }
}
.face-die {
  background: #070707;
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 30px rgba(36, 244, 133, 0.18);
}
.die-core {
  width: 46%;
  height: 46%;
  background: linear-gradient(145deg, #1b1b1b, #050505);
  border: 1px solid rgba(129, 255, 207, 0.45);
  box-shadow: 0 0 22px rgba(36, 244, 133, 0.35), inset 0 0 16px rgba(36, 244, 133, 0.2);
  animation: die-pulse 2.8s ease-in-out infinite;
}
@keyframes die-pulse {
  0%,
  100% {
    box-shadow: 0 0 14px rgba(36, 244, 133, 0.22), inset 0 0 10px rgba(36, 244, 133, 0.12);
  }
  50% {
    box-shadow: 0 0 32px rgba(36, 244, 133, 0.55), inset 0 0 22px rgba(36, 244, 133, 0.28);
  }
}
.die-pads {
  position: absolute;
  inset: 10%;
  background-image: repeating-linear-gradient(
      90deg,
      rgba(196, 255, 238, 0.18) 0 2px,
      transparent 2px 14px
    ),
    repeating-linear-gradient(0deg, rgba(196, 255, 238, 0.18) 0 2px, transparent 2px 14px);
  mask-image: linear-gradient(#000, #000), linear-gradient(#000, #000);
  pointer-events: none;
  opacity: 0.45;
}
.face-base {
  background: #101010;
}
.w-lid {
  animation: explode-lid 5.4s ease-in-out infinite;
}
.w-pcb {
  animation: explode-pcb 5.4s ease-in-out infinite;
}
.w-die {
  animation: explode-die 5.4s ease-in-out infinite;
}
.w-base {
  animation: explode-base 5.4s ease-in-out infinite;
}
@keyframes explode-lid {
  0%,
  100% {
    transform: translateZ(118px);
  }
  50% {
    transform: translateZ(168px);
  }
}
@keyframes explode-pcb {
  0%,
  100% {
    transform: translateZ(72px);
  }
  50% {
    transform: translateZ(102px);
  }
}
@keyframes explode-die {
  0%,
  100% {
    transform: translateZ(28px);
  }
  50% {
    transform: translateZ(44px);
  }
}
@keyframes explode-base {
  0%,
  100% {
    transform: translateZ(0);
  }
  50% {
    transform: translateZ(-8px);
  }
}
@media (min-width: 960px) {
  .iso {
    width: 260px;
    height: 260px;
    margin: -130px 0 0 -130px;
  }
  .hero-visual {
    height: min(70vh, 560px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .iso,
  .wafer,
  .lid-logo,
  .die-core,
  .trace-scan,
  .face-pcb svg path,
  .guides i,
  .hero-grid {
    animation: none !important;
  }
}
.hero-grid {
  position: absolute;
  right: -8%;
  bottom: -6%;
  width: min(92vw, 1100px);
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
  animation: grid-drift 28s ease-in-out infinite alternate;
}
.hero-grid img {
  width: 100%;
  height: auto;
}
@keyframes grid-drift {
  from {
    transform: translate3d(0, 0, 0) scale(1.02);
  }
  to {
    transform: translate3d(-3%, -2%, 0) scale(1.06);
  }
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: min(760px, 100%);
  min-width: 0;
}
.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 14px;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .kicker {
    font-size: 16px;
  }
}
.kicker-box {
  width: 20px;
  height: 20px;
  border: 1px dashed var(--teal);
  display: grid;
  place-items: center;
  flex: none;
}
@media (min-width: 768px) {
  .kicker-box {
    width: 24px;
    height: 24px;
  }
}
.kicker-dot {
  width: 8px;
  height: 8px;
  background: var(--teal);
}
.hero h1 {
  margin: 0 0 18px;
  font-family: var(--mono);
  font-weight: 400;
  font-size: clamp(1.7rem, 4.8vw, 3.35rem);
  line-height: 1.18;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  max-width: 22ch;
  overflow-wrap: break-word;
}
.lede {
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 1.45;
  max-width: min(680px, 100%);
  overflow-wrap: break-word;
}
@media (min-width: 1024px) {
  .lede {
    font-size: 20px;
  }
}

.agents-band {
  padding: 28px 0 8px;
}
.agents-band h2 {
  margin: 0;
  font-family: var(--mono);
  font-weight: 400;
  font-size: clamp(1.25rem, 3vw, 2.1rem);
  line-height: 1.2;
  text-transform: uppercase;
  max-width: 22ch;
}

/* ACCELERATE */
.accelerate {
  position: relative;
  padding: 72px 0 40px;
  overflow: hidden;
}
.acc-grad-top,
.acc-grad-bot {
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}
.acc-grad-top {
  top: 0;
  height: 180px;
  width: 100%;
  background: linear-gradient(180deg, rgba(36, 244, 133, 0.14), transparent);
}
.acc-grad-bot {
  bottom: 0;
  height: 280px;
  width: 100%;
  background: radial-gradient(ellipse at 70% 100%, rgba(36, 244, 133, 0.18), transparent 62%);
}
.acc-layout {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 40px;
}
@media (min-width: 1024px) {
  .accelerate {
    padding: 108px 0 64px;
  }
  .acc-layout {
    grid-template-columns: 1fr 0.9fr;
    gap: 64px;
    align-items: start;
  }
}
.acc-title {
  margin: 0 0 28px;
  font-family: var(--mono);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  text-transform: uppercase;
}
.acc-title em {
  font-style: normal;
  font-weight: 200;
  opacity: 0.85;
}
.acc-item {
  width: 100%;
  text-align: left;
  padding: 0;
}
.acc-head-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0;
}
.acc-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.acc-box {
  width: 22px;
  height: 22px;
  border: 1px dashed var(--teal);
  display: grid;
  place-items: center;
  flex: none;
}
.acc-dot {
  width: 10px;
  height: 10px;
  background: var(--teal);
}
@media (min-width: 1024px) {
  .acc-box {
    width: 24px;
    height: 24px;
  }
  .acc-dot {
    width: 12px;
    height: 12px;
  }
}
.acc-name {
  margin: 0;
  font-family: var(--mono);
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}
@media (min-width: 1024px) {
  .acc-name {
    font-size: 24px;
  }
}
.acc-item.is-open .acc-name,
.acc-item:hover .acc-name {
  color: #fff;
}
.acc-body {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.3s var(--ease), opacity 0.3s var(--ease);
}
.acc-item.is-open .acc-body {
  grid-template-rows: 1fr;
  opacity: 1;
}
.acc-body > div {
  overflow: hidden;
}
.acc-body p {
  margin: 0 0 8px;
  max-width: 568px;
  font-size: 16px;
  white-space: pre-line;
}
.acc-rule {
  width: 100%;
  height: 8px;
  margin: 18px 0 22px;
  display: block;
}
.acc-art {
  position: relative;
  min-height: 460px;
}
@media (max-width: 1023px) {
  .acc-art {
    order: -1;
    min-height: 320px;
  }
}

/* STRUCTURAL MODELS */
.model {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
  perspective: 900px;
  overflow: hidden;
}
.model-lattice {
  min-height: 460px;
}
.lat-orbit {
  position: absolute;
  inset: 8%;
  transform-style: preserve-3d;
  animation: lat-spin 18s linear infinite;
}
@keyframes lat-spin {
  to {
    transform: rotateY(360deg);
  }
}
.lat-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 92px;
  height: 92px;
  margin: -46px 0 0 -46px;
  background: #111;
  border: 1px solid rgba(36, 244, 133, 0.55);
  display: grid;
  place-items: center;
  box-shadow: 0 0 40px rgba(36, 244, 133, 0.25);
  animation: lat-core 4s ease-in-out infinite;
  transform: rotateX(18deg) rotateY(-18deg);
}
.lat-core img {
  width: 42px;
  height: 42px;
}
@keyframes lat-core {
  0%,
  100% {
    transform: rotateX(18deg) rotateY(-18deg) scale(1);
  }
  50% {
    transform: rotateX(24deg) rotateY(12deg) scale(1.05);
  }
}
.lat-node {
  position: absolute;
  width: 28px;
  height: 28px;
  background: rgba(12, 12, 12, 0.9);
  border: 1px solid var(--mint);
  box-shadow: 0 0 12px rgba(36, 244, 133, 0.35);
  animation: node-bob 3.2s ease-in-out infinite;
}
.n1 { left: 12%; top: 18%; animation-delay: 0s; }
.n2 { right: 14%; top: 22%; animation-delay: -0.6s; }
.n3 { left: 8%; bottom: 24%; animation-delay: -1.1s; }
.n4 { right: 10%; bottom: 18%; animation-delay: -1.7s; }
.n5 { left: 46%; top: 8%; animation-delay: -0.3s; }
.n6 { left: 44%; bottom: 10%; animation-delay: -2s; }
@keyframes node-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.lat-line {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(36, 244, 133, 0.7), transparent);
  transform-origin: left center;
}
.l1 { width: 42%; transform: rotate(28deg); }
.l2 { width: 38%; transform: rotate(148deg); }
.l3 { width: 44%; transform: rotate(-50deg); }
.l4 { width: 36%; transform: rotate(210deg); }

.model-panels {
  min-height: 380px;
  perspective: 1000px;
}
.panel {
  position: absolute;
  left: 18%;
  width: 64%;
  height: 46%;
  border: 1px solid rgba(129, 255, 207, 0.35);
  background: linear-gradient(135deg, rgba(89, 192, 172, 0.16), rgba(12, 12, 12, 0.4));
  backdrop-filter: blur(6px);
  transform: rotateX(62deg) rotateZ(-32deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}
.p1 { top: 8%; animation: pan-float 5s ease-in-out infinite; }
.p2 { top: 22%; opacity: 0.85; animation: pan-float 5s ease-in-out infinite -0.8s; }
.p3 { top: 36%; opacity: 0.7; animation: pan-float 5s ease-in-out infinite -1.6s; }
.p4 { top: 50%; opacity: 0.55; animation: pan-float 5s ease-in-out infinite -2.4s; }
@keyframes pan-float {
  0%, 100% { transform: rotateX(62deg) rotateZ(-32deg) translateY(0); }
  50% { transform: rotateX(62deg) rotateZ(-32deg) translateY(-14px); }
}
.panel-beam {
  position: absolute;
  left: 50%;
  top: 10%;
  width: 2px;
  height: 70%;
  background: linear-gradient(var(--rh), transparent);
  opacity: 0.45;
  animation: beam 2.8s ease-in-out infinite;
}
@keyframes beam {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.7; }
}

.surface-photo {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  height: min(52vw, 480px);
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.surf-model {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.surf-model.is-on {
  opacity: 1;
  pointer-events: auto;
}
.model-chain {
  display: grid;
  place-items: center;
}
.model-chain i {
  position: absolute;
  width: 140px;
  height: 88px;
  border: 10px solid rgba(36, 244, 133, 0.75);
  border-radius: 44px;
  box-shadow: 0 0 24px rgba(36, 244, 133, 0.2);
}
.model-chain i:nth-child(1) { transform: rotate(-28deg) translate(-40px, -10px); animation: chain-a 4s ease-in-out infinite; }
.model-chain i:nth-child(2) { transform: rotate(18deg) translate(36px, 8px); border-color: rgba(89, 192, 172, 0.85); animation: chain-a 4s ease-in-out infinite reverse; }
.model-chain i:nth-child(3) { width: 72px; height: 72px; border-width: 8px; animation: chain-spin 9s linear infinite; }
@keyframes chain-a {
  50% { transform: rotate(-22deg) translate(-36px, -18px); }
}
@keyframes chain-spin { to { transform: rotate(360deg); } }

.model-launch {
  display: grid;
  place-items: center;
}
.model-launch b {
  position: absolute;
  width: 8px;
  height: 58%;
  background: linear-gradient(#24f485, #024d60);
  border-radius: 4px;
  box-shadow: 0 0 16px rgba(36, 244, 133, 0.35);
}
.model-launch b:nth-child(1) { transform: translateX(-48px); animation: rail 2.4s ease-in-out infinite; }
.model-launch b:nth-child(2) { animation: rail 2.4s ease-in-out infinite -0.4s; }
.model-launch b:nth-child(3) { transform: translateX(48px); animation: rail 2.4s ease-in-out infinite -0.8s; }
.model-launch span {
  position: absolute;
  width: 70%;
  height: 4px;
  background: rgba(196, 255, 238, 0.35);
  top: 22%;
  animation: rail-bar 2.4s ease-in-out infinite;
}
@keyframes rail {
  50% { transform: translateY(-16px); }
}
@keyframes rail-bar {
  50% { top: 28%; opacity: 1; }
}

.model-liq i {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(36, 244, 133, 0.45);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ripple 4s ease-out infinite;
}
.model-liq i:nth-child(1) { width: 80px; height: 80px; animation-delay: 0s; }
.model-liq i:nth-child(2) { width: 140px; height: 140px; animation-delay: -1s; }
.model-liq i:nth-child(3) { width: 210px; height: 210px; animation-delay: -2s; }
.model-liq i:nth-child(4) { width: 36px; height: 36px; background: rgba(36, 244, 133, 0.35); animation: none; box-shadow: 0 0 24px #24f485; }
@keyframes ripple {
  0% { opacity: 0.7; }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.15); }
}

.model-setl {
  display: grid;
  grid-template-columns: repeat(3, 48px);
  gap: 14px;
  place-content: center;
  height: 100%;
  transform: rotateX(56deg) rotateZ(-20deg);
}
.model-setl b {
  width: 48px;
  height: 48px;
  background: rgba(12, 12, 12, 0.85);
  border: 1px solid rgba(129, 255, 207, 0.4);
  animation: cube 2.6s ease-in-out infinite;
}
.model-setl b:nth-child(odd) { animation-delay: -0.8s; }
@keyframes cube {
  50% { transform: translateZ(18px); box-shadow: 0 0 18px rgba(36, 244, 133, 0.3); }
}

.model-mesh i {
  position: absolute;
  width: 14px;
  height: 14px;
  background: #24f485;
  border-radius: 50%;
  box-shadow: 0 0 12px #24f485;
  animation: node-bob 3s ease-in-out infinite;
}
.model-mesh i:nth-child(1) { left: 22%; top: 30%; }
.model-mesh i:nth-child(2) { left: 50%; top: 22%; }
.model-mesh i:nth-child(3) { left: 72%; top: 34%; }
.model-mesh i:nth-child(4) { left: 28%; top: 62%; }
.model-mesh i:nth-child(5) { left: 54%; top: 70%; }
.model-mesh i:nth-child(6) { left: 76%; top: 58%; }
.model-mesh::before {
  content: "";
  position: absolute;
  inset: 24% 20%;
  background:
    linear-gradient(115deg, transparent 48%, rgba(36, 244, 133, 0.35) 49% 51%, transparent 52%),
    linear-gradient(70deg, transparent 48%, rgba(36, 244, 133, 0.25) 49% 51%, transparent 52%);
  animation: mesh-pulse 4s ease-in-out infinite;
}
@keyframes mesh-pulse {
  50% { opacity: 0.4; }
}

.model-beam {
  display: grid;
  place-items: center;
}
.model-beam b {
  position: absolute;
  height: 10px;
  width: 62%;
  background: linear-gradient(90deg, transparent, #24f485, transparent);
  animation: beam-slide 2.8s linear infinite;
}
.model-beam b:nth-child(2) { transform: translateY(28px); animation-delay: -0.9s; opacity: 0.6; }
.model-beam span {
  position: absolute;
  width: 70px;
  height: 70px;
  border: 2px solid rgba(36, 244, 133, 0.5);
  transform: rotate(45deg);
  animation: chain-spin 12s linear infinite;
}

.explore-deco {
  position: absolute;
  pointer-events: none;
  width: min(34vw, 280px);
  height: 70%;
}
.explore-deco.left { left: 0; bottom: 0; }
.explore-deco.right { right: 0; top: 8%; }
.shard {
  position: absolute;
  background: linear-gradient(135deg, rgba(12, 12, 12, 0.2), rgba(36, 244, 133, 0.18));
  border: 1px solid rgba(12, 12, 12, 0.35);
  transform: rotate(28deg) skewX(-18deg);
  animation: shard 6s ease-in-out infinite;
}
.s1 { width: 90px; height: 160px; left: 20px; bottom: 20px; }
.s2 { width: 60px; height: 110px; left: 70px; bottom: 70px; animation-delay: -1.4s; }
.s3 { width: 40px; height: 80px; left: 30px; bottom: 140px; animation-delay: -2.2s; }
.s4 { width: 120px; height: 180px; right: 24px; top: 20px; }
.s5 { width: 70px; height: 120px; right: 80px; top: 80px; animation-delay: -1s; }
.s6 { width: 46px; height: 90px; right: 40px; top: 160px; animation-delay: -2.6s; }
@keyframes shard {
  50% { transform: rotate(32deg) skewX(-18deg) translateY(-10px); }
}

.post-model {
  height: 220px;
  background: #050505;
  overflow: hidden;
}
.post-model.sm { height: 160px; }
.post-model .model {
  min-height: 0;
  height: 100%;
}

/* MARQUEE */
.purpose {
  padding: 28px 0 48px;
  overflow: hidden;
}
.purpose-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 var(--pad) 18px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint);
}
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: marquee 32s linear infinite;
}
.marquee-track span {
  font-family: var(--mono);
  font-size: clamp(1.4rem, 3.4vw, 2.4rem);
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 28px;
  color: var(--accent);
  letter-spacing: 0.04em;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* CONTEXT */
.context {
  padding: 72px 0;
}
@media (min-width: 1024px) {
  .context {
    padding: 108px 0;
  }
}
.context h2 {
  margin: 0 0 40px;
  font-family: var(--mono);
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  line-height: 1.15;
  text-transform: uppercase;
  max-width: 16ch;
}
.context-grid {
  display: grid;
  gap: 36px;
}
@media (min-width: 1024px) {
  .context-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 56px;
    align-items: center;
  }
}
.ctx-art {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}
.ctx-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.ctx-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(196, 255, 238, 0.18);
}
.ctx-num {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--teal);
  padding-top: 3px;
}
.ctx-item h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 500;
}
.ctx-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

/* SURFACES */
.surfaces {
  position: relative;
  padding: 72px 0 80px;
  overflow: hidden;
  background: var(--bg);
}
.surfaces::before {
  display: none;
}
@media (min-width: 1024px) {
  .surfaces {
    padding: 108px 0 96px;
  }
}
.surfaces h2 {
  position: relative;
  margin: 0 0 36px;
  max-width: 608px;
  font-family: var(--mono);
  font-weight: 400;
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  line-height: 1.2;
  text-transform: uppercase;
}
.surface-stage {
  position: relative;
  z-index: 1;
}
.surface-photo {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  height: min(52vw, 480px);
  background: #0a0a0a;
}
.surface-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 22px;
}
.surface-tab {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.25s;
}
.surface-tab.is-on,
.surface-tab:hover {
  color: #fff;
  border-bottom-color: var(--rh);
}
.surface-rail {
  display: flex;
  gap: 28px;
  overflow: auto;
  margin-top: 18px;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.surface-rail::-webkit-scrollbar {
  display: none;
}
.surface-rail span {
  font-family: var(--mono);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
}

/* SECURITY */
.security {
  padding: 72px 0 40px;
}
@media (min-width: 1024px) {
  .security {
    padding: 108px 0 60px;
  }
}
.security h2 {
  margin: 0 0 12px;
  font-family: var(--mono);
  font-weight: 400;
  font-size: clamp(1.7rem, 3.8vw, 2.8rem);
  line-height: 1.2;
  text-transform: uppercase;
  max-width: 16ch;
}
.security .sec-lede {
  margin: 0 0 36px;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}
.sec-scroller {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.sec-card {
  position: relative;
  flex: 0 0 77.3vw;
  max-width: 320px;
  min-height: 340px;
  scroll-snap-align: start;
  background: var(--card-b);
  padding: 1px;
  clip-path: polygon(0% 0%, 85% 0%, 100% 15%, 100% 100%, 0% 100%);
  overflow: hidden;
}
@media (min-width: 700px) {
  .sec-card {
    flex-basis: 300px;
  }
}
.sec-card-inner {
  position: relative;
  height: 100%;
  min-height: 338px;
  padding: 22px 22px 24px;
  background: rgba(12, 12, 12, 0.88);
  backdrop-filter: blur(10px);
  clip-path: inherit;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.sec-glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: radial-gradient(
    260px circle at var(--mx, 50%) var(--my, 50%),
    rgba(89, 192, 172, 0.55) 0%,
    rgba(114, 228, 239, 0.28) 28%,
    transparent 58%
  );
  mix-blend-mode: plus-lighter;
  opacity: var(--glow, 0);
  transition: opacity 0.2s;
}
.sec-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  position: relative;
}
.sec-card p {
  margin: 0;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.78);
  position: relative;
}
.sec-link {
  margin-top: auto;
  padding-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  position: relative;
}
.sec-link span {
  position: relative;
}
.sec-link span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-out;
}
.sec-link:hover span::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* BACKED */
.backed {
  padding: 64px 0 40px;
  overflow: hidden;
}
.backed h2 {
  margin: 0 auto 48px;
  text-align: center;
  font-family: var(--mono);
  font-weight: 400;
  font-size: clamp(1.2rem, 3vw, 2rem);
  line-height: 1.2;
  text-transform: uppercase;
  max-width: 22ch;
  padding: 0 24px;
}
.logo-marquee {
  overflow: hidden;
}
.logo-row {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 40s linear infinite;
  padding: 0 28px 18px;
}
.logo-row:nth-child(2) {
  animation-duration: 48s;
  animation-direction: reverse;
}
.logo-pill {
  display: flex;
  align-items: center;
  height: 47px;
  padding: 0 20px;
  opacity: 0.8;
  font-family: var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  white-space: nowrap;
}

/* EXPLORE */
.explore {
  position: relative;
  padding: 72px 0 90px;
  overflow: hidden;
  z-index: 4;
}
@media (min-width: 1024px) {
  .explore {
    padding: 126px 0 90px;
  }
}
.explore-shadow {
  filter: drop-shadow(0 20px 20px #0000000f);
}
.explore-clip {
  clip-path: polygon(0% 0%, 100% 0%, 100% 94%, 86% 100%, 0% 100%);
}
@media (min-width: 1024px) {
  .explore-clip {
    clip-path: polygon(0% 0%, 96% 0%, 100% 10%, 100% 100%, 0% 100%);
  }
}
.explore-frame {
  background: rgba(89, 192, 172, 0.35);
  padding: 1px;
}
.explore-inner {
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
  color: var(--fg);
  min-height: 420px;
  padding: 48px 28px 64px;
}
@media (min-width: 1024px) {
  .explore-inner {
    min-height: 520px;
    padding: 72px 80px 80px;
  }
}
.explore-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--noise);
  background-size: 72px 72px;
  image-rendering: pixelated;
  mix-blend-mode: multiply;
  opacity: 0.14;
  pointer-events: none;
}
.explore-deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.9;
}
.explore-deco.left {
  left: 0;
  bottom: 0;
  width: min(34vw, 280px);
}
.explore-deco.right {
  right: 0;
  top: 0;
  width: min(42vw, 360px);
}
.explore-copy {
  position: relative;
  z-index: 2;
  max-width: 520px;
}
.explore-copy h2 {
  margin: 0 0 18px;
  font-family: var(--mono);
  font-weight: 400;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.05;
  text-transform: uppercase;
}
.explore-copy p {
  margin: 0 0 28px;
  font-size: 17px;
  max-width: 42ch;
}
.explore .btn-fill {
  background: #0c0c0c;
  color: #fff;
}
.explore .btn-fill .btn-arrows svg path {
  stroke: #fff;
}

/* FOOTER */
.footer {
  position: relative;
  padding: 48px 0 28px;
  overflow: hidden;
}
.footer-word {
  width: 100%;
  max-width: var(--max);
  margin: 8px auto 28px;
  padding: 0 12px;
  font-family: var(--mono);
  font-size: clamp(3.2rem, 16vw, 11rem);
  letter-spacing: 0.14em;
  line-height: 0.9;
  text-transform: uppercase;
  text-align: center;
  color: #ebebeb;
  opacity: 0.92;
  overflow: hidden;
  user-select: none;
}
.footer-grid {
  display: grid;
  gap: 28px;
  padding-bottom: 28px;
}
@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 24px;
  }
}
.footer h3 {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}
.footer a,
.footer button,
.footer .muted {
  display: block;
  padding: 5px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}
.footer a:hover {
  color: #fff;
}
.ca-row {
  margin-top: 8px;
  padding: 10px 12px;
  border: 1px dashed rgba(89, 192, 172, 0.45);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mint);
}
.footer-note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* INNER PAGES */
.inner {
  padding: calc(var(--nav-h) + 48px) 0 80px;
}
.inner h1 {
  margin: 0 0 16px;
  font-family: var(--mono);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.15;
  text-transform: uppercase;
  max-width: 18ch;
}
.inner .intro {
  max-width: 680px;
  font-size: 18px;
  margin: 0 0 40px;
  color: rgba(255, 255, 255, 0.82);
}
.values {
  display: grid;
  gap: 18px;
}
@media (min-width: 800px) {
  .values {
    grid-template-columns: 1fr 1fr;
  }
}
.value {
  padding: 22px 20px 24px;
  border: 1px solid rgba(196, 255, 238, 0.16);
  background: rgba(255, 255, 255, 0.02);
}
.value .n {
  font-family: var(--mono);
  color: var(--teal);
  font-size: 13px;
  margin-bottom: 8px;
}
.value h3 {
  margin: 0 0 8px;
  font-size: 18px;
}
.value p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}
.roles {
  margin-top: 56px;
}
.role {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.role h3 {
  margin: 0 0 4px;
  font-size: 18px;
}
.role p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

.posts {
  display: grid;
  gap: 22px;
}
@media (min-width: 900px) {
  .posts {
    grid-template-columns: 1.4fr 1fr;
  }
}
.post {
  display: block;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.post img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.post-body {
  padding: 18px 18px 22px;
}
.post .tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}
.post h3 {
  margin: 8px 0 8px;
  font-size: 22px;
}
.post p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}
.article {
  max-width: 720px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.article h2 {
  font-family: var(--mono);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 22px;
  margin: 28px 0 10px;
}
.article p,
.article li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16.5px;
}
.article ul {
  padding-left: 18px;
  list-style: disc;
  margin: 0 0 16px;
}
.legal {
  max-width: 760px;
}
.legal h2 {
  font-family: var(--mono);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 18px;
  margin: 28px 0 8px;
}
.legal p,
.legal li {
  color: rgba(255, 255, 255, 0.78);
}
.legal ul {
  padding-left: 18px;
  list-style: disc;
}

/* ENTRANCE */
.rise.is-in {
  animation: section-rise 0.6s var(--ease) both;
}
@keyframes section-rise {
  from {
    opacity: 0.001;
    transform: translate3d(0, 16px, 0);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .rise.is-in {
    animation: none;
  }
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 959px) {
  .hero-visual {
    order: -1;
    max-width: 520px;
    margin: 0 auto;
  }
}
@media (max-width: 639px) {
  .hero {
    padding: calc(var(--nav-h) + 12px) 0 36px;
    min-height: auto;
  }
  .hero-grid {
    right: -10%;
    bottom: 0;
    width: 90%;
    max-width: 420px;
    opacity: 0.28;
  }
  .hero-copy {
    max-width: 100%;
  }
  .lede {
    font-size: 16px;
    padding-right: 4px;
  }
  .explore-deco.left,
  .explore-deco.right {
    opacity: 0.55;
  }
}
