/* Self-hosted fonts — zero third-party requests */
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 500 800;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/bricolage-grotesque.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/ibm-plex-mono-400.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/ibm-plex-mono-500.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/ibm-plex-sans.woff2') format('woff2');
}

:root {
  --cream: #f3ede0;
  --cream-2: #ece3d1;
  --paper: #fbf8f1;
  --ink: #0d1410;
  --ink-2: #060b08;
  --ink-soft: #41473f;
  --muted: #8b8a7c;
  --line: #e0d8c6;
  --line-2: #d2c8b2;
  --forest: #14624a;
  --forest-deep: #0d4533;
  --forest-tint: #dcebe2;
  --lime: #c8f24a;
  --lime-deep: #a6d626;
  --lime-ink: #233006;
  --radius: 22px;
  --radius-sm: 14px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.02;
}
p {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
::selection {
  background: var(--lime);
  color: var(--lime-ink);
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 22px;
}

.mono {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--lime-deep);
}
.eyebrow .n {
  color: var(--muted);
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 10px 16px;
  border-radius: 8px;
  z-index: 300;
}
.skip:focus {
  left: 12px;
  top: 12px;
}

/* ===== Logo mark ===== */
.logo {
  display: block;
}
.logo .ld {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.logo .fillpart {
  opacity: 1;
}

@media (prefers-reduced-motion: no-preference) {
  .logo .ld {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    animation: draw 1.3s var(--ease-out) forwards;
  }
  .logo .ld.d2 {
    animation-delay: 0.28s;
  }
  .logo .ld.d3 {
    animation-delay: 0.52s;
  }
  .logo .ld.d4 {
    animation-delay: 0.74s;
  }
  .logo .fillpart {
    opacity: 0;
    animation: fadeIn 0.8s ease 0.95s forwards;
  }
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* ===== Header ===== */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: color-mix(in srgb, var(--ink) 88%, transparent);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--cream);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: var(--cream);
}
.brand .wm {
  line-height: 1;
}
.brand .wm b {
  color: var(--lime);
  font-weight: 700;
}

.nav-links ul {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-size: 0.92rem;
  color: rgba(243, 237, 224, 0.72);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--lime);
  transition: right 0.25s var(--ease);
}
.nav-links a:hover {
  color: var(--cream);
}
.nav-links a:hover::after {
  right: 0;
}

.nav-cta {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--lime-ink);
  background: var(--lime);
  padding: 9px 16px;
  border-radius: 999px;
  transition:
    transform 0.18s var(--ease),
    box-shadow 0.18s var(--ease);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -8px rgba(166, 214, 38, 0.7);
}

/* CSS-only mobile nav toggle — no JS */
.nav-check {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.burger {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 18px;
  height: 1.8px;
  background: var(--cream);
  transition:
    transform 0.25s var(--ease),
    opacity 0.2s var(--ease);
}
.mobile-menu {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s var(--ease);
  background: var(--ink);
}
.mobile-menu > div {
  overflow: hidden;
}
.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 4px 22px 18px;
  display: flex;
  flex-direction: column;
}
.mobile-menu a {
  display: block;
  padding: 15px 4px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.3rem;
  color: var(--cream);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-menu a:last-child {
  border-bottom: none;
}
.nav-check:checked ~ .mobile-menu {
  grid-template-rows: 1fr;
}
.nav-check:checked ~ .wrap .burger span:nth-child(1) {
  transform: translateY(6.8px) rotate(45deg);
}
.nav-check:checked ~ .wrap .burger span:nth-child(2) {
  opacity: 0;
}
.nav-check:checked ~ .wrap .burger span:nth-child(3) {
  transform: translateY(-6.8px) rotate(-45deg);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.hero .mesh {
  position: absolute;
  inset: -20%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(40% 50% at 18% 22%, rgba(20, 98, 74, 0.55), transparent 70%),
    radial-gradient(35% 45% at 85% 30%, rgba(200, 242, 74, 0.16), transparent 70%),
    radial-gradient(45% 55% at 70% 90%, rgba(13, 69, 51, 0.7), transparent 72%);
  filter: blur(8px);
}
.hero .grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    linear-gradient(to right, rgba(243, 237, 224, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(243, 237, 224, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(120% 100% at 50% 0%, #000 35%, transparent 80%);
  mask-image: radial-gradient(120% 100% at 50% 0%, #000 35%, transparent 80%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding-top: 52px;
  padding-bottom: 56px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 7px 14px;
  border-radius: 999px;
}
.hero-tag .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(200, 242, 74, 0.6);
  animation: pulse 2.6s var(--ease) infinite;
}

.hero h1 {
  font-size: clamp(2.9rem, 12vw, 6.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.96;
  margin-top: 6px;
  max-width: 14ch;
}
.hero h1 .ln {
  display: block;
}
.hero h1 .home {
  color: var(--lime);
  position: relative;
}
.hero .sub {
  margin-top: 22px;
  max-width: 52ch;
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  color: rgba(243, 237, 224, 0.78);
  line-height: 1.5;
}
.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 15px 26px;
  border-radius: 14px;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    transform 0.18s var(--ease),
    background 0.18s var(--ease),
    border-color 0.18s var(--ease),
    box-shadow 0.18s var(--ease);
}
.btn svg {
  transition: transform 0.2s var(--ease);
}
.btn-primary {
  background: var(--lime);
  color: var(--lime-ink);
  box-shadow: 0 14px 32px -14px rgba(200, 242, 74, 0.8);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -16px rgba(200, 242, 74, 0.9);
}
.btn-primary:hover svg {
  transform: translateX(4px);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.22);
}
.btn-ghost:hover {
  border-color: var(--lime);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--ink);
  color: var(--cream);
}
.btn-dark:hover {
  background: var(--forest-deep);
  transform: translateY(-2px);
}
.btn-dark:hover svg {
  transform: translateX(4px);
}
.btn-forest {
  background: var(--forest);
  color: #f1fbf6;
  box-shadow: 0 14px 30px -14px rgba(13, 69, 51, 0.7);
}
.btn-forest:hover {
  background: var(--forest-deep);
  transform: translateY(-2px);
}
.btn-forest:hover svg {
  transform: translateX(4px);
}

/* hero centerpiece */
.hero-art {
  position: relative;
  justify-self: center;
  width: min(440px, 90vw);
  aspect-ratio: 1;
  margin-top: 14px;
  display: grid;
  place-items: center;
}
.hero-art .orbit {
  position: absolute;
  inset: 0;
}
.ring {
  fill: none;
  stroke-linecap: round;
}
.hero-art .spin-a {
  animation: spin 38s linear infinite;
  transform-origin: center;
}
.hero-art .spin-b {
  animation: spin 26s linear infinite reverse;
  transform-origin: center;
}
.hero-art .spin-c {
  animation: spin 60s linear infinite;
  transform-origin: center;
}
.hero-art .corelogo {
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 0 30px rgba(200, 242, 74, 0.35));
}
.hero-art .sat {
  transform-origin: center;
}
.hero-art .sat-a {
  animation: spin 14s linear infinite;
  transform-origin: center;
}
.hero-art .sat-b {
  animation: spin 20s linear infinite reverse;
  transform-origin: center;
}

.float {
  position: absolute;
  z-index: 1;
  opacity: 0.9;
}
.f1 {
  top: 8%;
  left: 4%;
  animation: float1 9s ease-in-out infinite;
}
.f2 {
  top: 16%;
  right: 6%;
  animation: float2 11s ease-in-out infinite;
}
.f3 {
  bottom: 12%;
  left: 8%;
  animation: float3 10s ease-in-out infinite;
}
.f4 {
  bottom: 20%;
  right: 4%;
  animation: float1 12s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(200, 242, 74, 0.55);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(200, 242, 74, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(200, 242, 74, 0);
  }
}
@keyframes float1 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-16px) rotate(8deg);
  }
}
@keyframes float2 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(14px) rotate(-10deg);
  }
}
@keyframes float3 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(-6deg);
  }
}

/* ===== Marquee ===== */
.marquee {
  background: var(--lime);
  color: var(--lime-ink);
  border-block: 2px solid var(--ink);
  overflow: hidden;
}
.marquee .track {
  display: flex;
  width: max-content;
  gap: 0;
  padding-block: 13px;
  animation: marquee 26s linear infinite;
}
.marquee:hover .track {
  animation-play-state: paused;
}
.marquee .item {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 26px;
  padding-inline: 13px;
  white-space: nowrap;
}
.marquee .star {
  color: var(--forest);
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ===== Section frames ===== */
section {
  scroll-margin-top: 76px;
}
.section {
  position: relative;
  padding-block: 72px;
}
.section-head {
  max-width: 64ch;
}
.section-head h2 {
  font-size: clamp(2rem, 6vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-top: 16px;
}
.section-head h2 .hl {
  color: var(--forest);
}
.section-head .lede {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 50ch;
}

/* scroll reveal */
.reveal {
  opacity: 1;
}
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .reveal {
      opacity: 0;
      animation: revealIn 0.9s var(--ease-out) both;
      animation-timeline: view();
      animation-range: entry 4% cover 26%;
    }
  }
}
@keyframes revealIn {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Privacy ===== */
.privacy {
  background: var(--cream);
}
.privacy-deco {
  position: absolute;
  top: -60px;
  right: -120px;
  width: 360px;
  height: 360px;
  color: var(--forest);
  opacity: 0.08;
  z-index: 0;
}
.privacy .wrap {
  position: relative;
  z-index: 1;
}
.rules {
  margin-top: 40px;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
.rule {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: 0 1px 2px rgba(13, 20, 16, 0.04);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    border-color 0.25s var(--ease);
}
.rule:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 50px -24px rgba(13, 20, 16, 0.3);
  border-color: var(--line-2);
}
.rule .rart {
  width: 100%;
  height: 138px;
  border-radius: 14px;
  background: var(--ink);
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.rule .rart .gl {
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 30% 20%, rgba(20, 98, 74, 0.6), transparent 70%);
}
.rule:hover .rart .pop {
  transform: translateY(-3px) scale(1.03);
}
.rule .rart .pop {
  transition: transform 0.4s var(--ease-out);
  position: relative;
  z-index: 1;
}
.rule .rno {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--muted);
}
.rule h3 {
  font-size: 1.5rem;
  margin-top: 8px;
  letter-spacing: -0.02em;
}
.rule p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 1rem;
}
.rule .kick {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  color: var(--forest);
  background: var(--forest-tint);
  border-radius: 999px;
  padding: 7px 13px;
}

/* ===== Products ===== */
.products {
  background: var(--cream-2);
  border-top: 1px solid var(--line);
}
.grid {
  margin-top: 40px;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
.pcard {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(13, 20, 16, 0.04);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    border-color 0.25s var(--ease);
}
.pcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 56px -26px rgba(13, 20, 16, 0.34);
  border-color: var(--line-2);
}
.pcard .pic {
  height: 152px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #0d1410, #103a2c);
  display: grid;
  place-items: center;
}
.pcard .pic .pgrid {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(243, 237, 224, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 237, 224, 0.07) 1px, transparent 1px);
  background-size: 26px 26px;
}
.pcard .pic svg {
  position: relative;
  z-index: 1;
  transition: transform 0.5s var(--ease-out);
}
.pcard:hover .pic svg {
  transform: scale(1.06) translateY(-2px);
}
.pcard .pbody {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pcard .ptop {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.pcard .pname {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.pcard .pname.code {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}
.pcard .pdesc {
  margin-top: 11px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  flex: 1;
}
.pcard .pfoot {
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.74rem;
  color: var(--muted);
}
.pcard .go {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--forest);
  opacity: 0;
  transform: translateX(-5px);
  transition:
    opacity 0.22s var(--ease),
    transform 0.22s var(--ease);
}
.pcard:hover .go {
  opacity: 1;
  transform: translateX(0);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.66rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 999px;
  white-space: nowrap;
  border: 1px solid transparent;
}
.pill .pd {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.pill.live {
  background: var(--forest-tint);
  color: var(--forest-deep);
  border-color: #c2e0d0;
}
.pill.live .pd {
  background: var(--forest);
  animation: pulse 2.6s var(--ease) infinite;
}
.pill.exp {
  background: #f6edd6;
  color: #8a5a14;
  border-color: #ecdcb8;
}
.pill.exp .pd {
  background: #c08820;
}
.pill.alpha {
  background: #e9eaf4;
  color: #3b4488;
  border-color: #d6d9ef;
}
.pill.alpha .pd {
  background: #4a52a6;
}
.pill.mvp {
  background: #efe5f3;
  color: #6c3d86;
  border-color: #e1d2ea;
}
.pill.mvp .pd {
  background: #8c54aa;
}

/* ===== Foundations ===== */
.foundations {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.foundations .mesh2 {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(40% 60% at 80% 10%, rgba(20, 98, 74, 0.5), transparent 70%),
    radial-gradient(30% 40% at 10% 90%, rgba(200, 242, 74, 0.1), transparent 70%);
}
.foundations .wrap {
  position: relative;
  z-index: 1;
}
.foundations .eyebrow {
  color: var(--lime);
}
.foundations .eyebrow::before {
  background: var(--lime);
}
.foundations .section-head h2 {
  color: var(--cream);
}
.foundations .section-head h2 .hl {
  color: var(--lime);
}
.foundations .lede {
  color: rgba(243, 237, 224, 0.7);
}
.found-grid {
  margin-top: 40px;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
.found {
  position: relative;
  overflow: hidden;
  padding: 26px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  transition:
    transform 0.25s var(--ease),
    background 0.25s var(--ease),
    border-color 0.25s var(--ease);
}
.found:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(200, 242, 74, 0.4);
}
.found .ficon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.25);
  display: grid;
  place-items: center;
  color: var(--lime);
  margin-bottom: 18px;
}
.found .fname {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
}
.found .fdesc {
  margin-top: 8px;
  font-size: 0.9rem;
  color: rgba(243, 237, 224, 0.62);
  line-height: 1.5;
}

/* ===== Contact / footer ===== */
footer {
  background: var(--ink-2);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
footer .glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(50% 70% at 50% 120%, rgba(20, 98, 74, 0.55), transparent 70%);
}
footer .wrap {
  position: relative;
  z-index: 1;
}
.foot-cta {
  padding-top: 76px;
  padding-bottom: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.foot-cta .eyebrow {
  color: var(--lime);
  justify-content: center;
}
.foot-cta .eyebrow::before {
  background: var(--lime);
}
.foot-cta h2 {
  font-size: clamp(2.4rem, 8vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-top: 18px;
  line-height: 0.98;
}
.foot-cta h2 .home {
  color: var(--lime);
}
.foot-cta p {
  margin-top: 18px;
  color: rgba(243, 237, 224, 0.7);
  max-width: 44ch;
  font-size: 1.08rem;
}
.mailto {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.05rem;
  color: var(--lime-ink);
  background: var(--lime);
  padding: 15px 26px;
  border-radius: 14px;
  transition:
    transform 0.18s var(--ease),
    box-shadow 0.18s var(--ease);
}
.mailto:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -16px rgba(200, 242, 74, 0.8);
}

.foot-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}
.foot-bar .brand {
  color: var(--cream);
}
.foot-bar .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  font-size: 0.84rem;
  color: rgba(243, 237, 224, 0.55);
}
.foot-bar .meta a {
  transition: color 0.16s var(--ease);
}
.foot-bar .meta a:hover {
  color: var(--lime);
}

/* ===== Responsive ===== */
@media (min-width: 680px) {
  .wrap {
    padding-inline: 32px;
  }
  .rules {
    grid-template-columns: 1fr 1fr;
  }
  .grid {
    grid-template-columns: 1fr 1fr;
  }
  .found-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 940px) {
  .nav-links ul {
    display: flex;
  }
  .nav-cta {
    display: inline-flex;
  }
  .burger {
    display: none;
  }
  .hero-inner {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 30px;
    padding-top: 76px;
    padding-bottom: 84px;
  }
  .hero-art {
    margin-top: 0;
    width: min(480px, 42vw);
  }
  .section {
    padding-block: 104px;
  }
  .grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1120px) {
  .hero h1 {
    font-size: 6.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .logo .ld {
    stroke-dashoffset: 0 !important;
  }
  .logo .fillpart {
    opacity: 1 !important;
  }
}
