/* =========================================================
   $OYEN — Capybara Cat · global tokens
   ========================================================= */
:root {
  --cream: #FFF6E9;
  --cream-2: #F7E8CF;
  --sand: #F3D5B4;
  --caramel: #DBA776;
  --brown: #A56942;
  --ink: #2F241F;        /* espresso */
  --ink-2: #6A554A;
  --tangerine: #F59A23;
  --sky: #C7DADE;
  --sage: #939060;
  --white: #FFFCF7;

  --shadow-sm: 0 4px 0 rgba(47, 36, 31, .14);
  --shadow-md: 0 10px 0 rgba(47, 36, 31, .16);
  --shadow-lg: 0 20px 40px rgba(47, 36, 31, .18);
  --radius: 28px;

  --font-display: 'Lilita One', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
html.is-loading, html.is-loading body { overflow: hidden; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  overflow-x: clip;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; user-select: none; -webkit-user-drag: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input { font: inherit; }
em { font-style: italic; color: var(--brown); }

/* desktop gets the custom cursor; touch keeps the native one */
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  button, a { cursor: none; }
}

#fx-canvas {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
}

/* ========================== PRELOADER ========================== */
.preloader {
  position: fixed; inset: 0;
  z-index: 99999;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity .6s ease;
  cursor: auto;
}
.preloader.is-done { opacity: 0; pointer-events: none; }
.preload-grid {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(47,36,31,.10) 1px, transparent 0);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse at center, black 50%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 50%, transparent 80%);
  pointer-events: none;
}
.preload-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  text-align: center;
  padding: 24px;
}
.preload-char {
  width: 200px;
  filter: drop-shadow(0 18px 28px rgba(47,36,31,.2));
}
.preload-brand {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  letter-spacing: .04em;
  line-height: 1;
  color: var(--ink);
  text-shadow: 0 5px 0 rgba(245,154,35,.55);
}
.preload-bar {
  position: relative;
  width: clamp(220px, 28vw, 320px);
  height: 14px;
  background: rgba(47,36,31,.08);
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 4px 0 rgba(47,36,31,.14);
}
.preload-bar span {
  display: block; height: 100%; width: 0%;
  background: var(--tangerine);
  border-radius: 999px;
  transition: width .35s cubic-bezier(.2,.8,.3,1);
}
.preload-status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.preload-status #preloadPct { color: var(--brown); font-weight: 700; min-width: 38px; text-align: right; }
.preload-status #preloadMsg { min-width: 180px; text-align: left; }
.preload-dot { width: 5px; height: 5px; background: var(--ink); border-radius: 50%; opacity: .35; }
@media (max-width: 640px) {
  .preload-char { width: 140px; }
  .preload-status #preloadMsg { min-width: 140px; }
}

/* ========================== TYPE UTILITIES ========================== */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(47,36,31,.06);
  border-radius: 999px;
  margin-bottom: 28px;
}
.eyebrow::before {
  content: ''; width: 7px; height: 7px;
  border-radius: 50%; background: var(--tangerine);
  box-shadow: 0 0 0 4px rgba(245,154,35,.22);
  animation: blink 1.4s infinite;
}
@keyframes blink { 0%, 60% { opacity: 1 } 70% { opacity: .2 } 100% { opacity: 1 } }

.big-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 92px);
  line-height: .94;
  letter-spacing: -.02em;
  color: var(--ink);
}
.big-title em { display: inline; }
.big-title span { display: block; }
.reveal { overflow: hidden; }

.lead {
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--ink-2);
  max-width: 56ch;
  margin-top: 28px;
  line-height: 1.6;
}

/* ========================== NAV ========================== */
.nav {
  position: fixed;
  top: 18px; left: 18px; right: 18px;
  min-height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px 8px 18px;
  background: rgba(255, 246, 233, .85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 2px solid var(--ink);
  border-radius: 999px;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: .04em;
}
.nav-logo img { width: 32px; height: 32px; object-fit: contain; }
.nav-links {
  display: flex; align-items: center; gap: 4px;
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.nav-links > a:not(.nav-cta) {
  padding: 8px 14px; border-radius: 999px;
  transition: background .2s, color .2s;
}
.nav-links > a:not(.nav-cta):hover { background: var(--ink); color: var(--cream); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--tangerine); color: var(--ink);
  font-family: var(--font-display); font-size: 14px;
  letter-spacing: .04em;
  padding: 12px 20px; border-radius: 999px;
  border: 2px solid var(--ink);
  margin-left: 8px;
  transition: transform .2s, background .2s, color .2s;
}
.nav-cta:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px) rotate(-1deg); }
.nav-cta span { transition: transform .2s; }
.nav-cta:hover span { transform: translateX(4px); }

/* hamburger */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
  align-items: center; justify-content: center;
  flex-direction: column; gap: 4px;
}
.nav-toggle span {
  display: block; width: 18px; height: 2.5px;
  background: var(--ink); border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ========================== HERO ========================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 130px 40px 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 70% center;
  z-index: 0;
}
.hero-bg-fade {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255,246,233,.96) 0%, rgba(255,246,233,.80) 38%, rgba(255,246,233,.25) 68%, rgba(255,246,233,.10) 100%),
    linear-gradient(0deg, rgba(255,246,233,.9) 0%, rgba(255,246,233,0) 30%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 3;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.hero-text {
  position: relative; z-index: 3;
  text-align: left;
  max-width: 620px;
}
.hero-text .eyebrow { margin-bottom: 8px; background: rgba(47,36,31,.08); }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(46px, 7vw, 110px);
  line-height: .92;
  letter-spacing: -.02em;
  color: var(--ink);
  text-shadow: 0 6px 0 rgba(245,154,35,.45);
  margin-top: 14px;
}
.hero-title .line { display: block; }
.hero-title .word { display: inline-block; }
.hero-title .stroke {
  color: var(--cream);
  -webkit-text-stroke: 2.5px var(--ink);
  paint-order: stroke fill;
  font-size: .64em;
  text-shadow: 5px 6px 0 var(--tangerine), 8px 9px 0 var(--ink);
}
.hero-sub {
  margin-top: 24px;
  font-size: clamp(15px, 1.3vw, 19px);
  color: var(--ink-2);
  max-width: 46ch;
  line-height: 1.6;
  font-weight: 500;
}
.hero-cta {
  margin-top: 30px;
  display: flex; gap: 14px; flex-wrap: wrap;
}

/* contract pill */
.ca-pill {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  padding: 8px 8px 8px 14px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s, box-shadow .18s;
}
.ca-pill:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.ca-label {
  font-family: var(--font-display);
  font-size: 13px;
  background: var(--ink); color: var(--cream);
  padding: 4px 10px; border-radius: 999px;
  flex-shrink: 0;
}
.ca-addr {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-2);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ca-copy {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--tangerine);
  color: var(--ink);
  border: 2px solid var(--ink);
  padding: 5px 12px;
  border-radius: 999px;
  flex-shrink: 0;
}
.ca-pill.copied .ca-copy { background: var(--sage); color: var(--white); }

.hero-tag {
  position: absolute;
  top: 78px; right: 4%;
  z-index: 7;
  background: var(--tangerine);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 18px;
  padding: 10px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-display);
  transform: rotate(8deg);
  box-shadow: var(--shadow-md);
  z-index: 5;
  line-height: 1;
}
.hero-tag strong { font-size: 22px; letter-spacing: .04em; }
.hero-tag em {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  font-style: normal;
  margin-top: 5px;
  opacity: .85;
  color: var(--ink);
}

/* ---- hero proof cluster: real-footage polaroid + X post ---- */
.hero-photo {                 /* GSAP entrance still targets .hero-photo */
  position: absolute;
  right: 3.5%;
  top: 184px;
  z-index: 6;
  width: clamp(320px, 44vw, 600px);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  will-change: transform;
}
.proof-card {
  flex: 1 1 0;
  min-width: 0;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 6px;
  box-shadow: 0 22px 44px rgba(47, 36, 31, .28), 0 6px 0 rgba(47, 36, 31, .10);
}
.proof-card--photo {
  flex: 0 1 46%;
  padding: 11px 11px 34px;
  transform: rotate(-2deg);
  align-self: center;
}
.proof-card--tweet {
  flex: 1 1 54%;
  padding: 6px;
  overflow: hidden;
}

.proof-media {
  position: relative;
  display: block;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 5 / 4;
}
.proof-media img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 2px;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.16, 1, .3, 1);
}
.proof-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(47, 36, 31, 0) 45%, rgba(47, 36, 31, .4) 100%);
  transition: opacity .35s ease;
  pointer-events: none;
}
.proof-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--tangerine);
  border: 2.5px solid var(--white);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(47, 36, 31, .35);
  transition: transform .3s cubic-bezier(.16, 1, .3, 1), background .3s ease;
}
.proof-play svg { width: 22px; height: 22px; margin-left: 3px; }
.proof-play::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--tangerine);
  animation: heroPlayPulse 2.4s ease-out infinite;
}
@keyframes heroPlayPulse {
  0%   { transform: scale(1);   opacity: .8; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}
.proof-card--photo:hover .proof-media img { transform: scale(1.06); }
.proof-card--photo:hover .proof-media::after { opacity: .65; }
.proof-card--photo:hover .proof-play { transform: translate(-50%, -50%) scale(1.12); background: #ffb347; }

.proof-cap {
  position: absolute;
  left: 0; right: 0; bottom: 11px;
  text-align: center;
  font-family: var(--font-mono);
  padding: 0 10px;
}
.proof-cap strong {
  display: block;
  color: var(--brown);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

/* keep the embedded X post compact next to the photo */
.proof-card--tweet .tweet-embed {
  max-height: 56vh;
  overflow: hidden;
  border-radius: 3px;
}
.proof-card--tweet .twitter-tweet { margin: 0 auto !important; }
.proof-card--tweet iframe { border-radius: 4px !important; }

/* ---- first-load "watch the story" nudge ---- */
.video-nudge {
  position: fixed;
  left: 20px;
  bottom: 20px;
  transform: translateY(150%);
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px 10px 14px;
  background: var(--ink);
  color: var(--white);
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(47, 36, 31, .4);
  font-family: var(--font-body);
  opacity: 0;
  transition: transform .55s cubic-bezier(.16, 1, .3, 1), opacity .4s ease;
}
.video-nudge.is-in { transform: translateY(0); opacity: 1; }
.video-nudge-play {
  flex: none;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--tangerine);
  color: var(--ink);
}
.video-nudge-play svg { width: 15px; height: 15px; margin-left: 2px; }
.video-nudge-text { font-size: 13px; line-height: 1.2; white-space: nowrap; }
.video-nudge-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--tangerine);
}
.video-nudge-x {
  flex: none;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 252, 247, .14);
  color: var(--white);
  font-size: 15px;
  line-height: 1;
}
.video-nudge-x:hover { background: rgba(255, 252, 247, .28); }
@media (prefers-reduced-motion: reduce) {
  .proof-play::before { animation: none; }
  .video-nudge { transition: opacity .3s ease; transform: none; }
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 30px;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: .06em;
  border-radius: 999px;
  border: 2.5px solid var(--ink);
  transition: transform .18s ease, box-shadow .18s ease, background .18s;
  box-shadow: var(--shadow-md);
}
.btn:hover { transform: translateY(-3px) rotate(-1deg); box-shadow: 0 14px 0 rgba(47,36,31,.18); }
.btn-primary { background: var(--tangerine); color: var(--ink); }
.btn-primary:hover { background: var(--ink); color: var(--cream); }
.btn-ghost { background: var(--white); color: var(--ink); }
.btn-ghost:hover { background: var(--sand); }
.btn span { transition: transform .2s; }
.btn:hover span { transform: translateX(4px); }

/* peeks */
.peek { position: absolute; pointer-events: none; will-change: transform; z-index: 2; }
.peek { width: 76px; filter: drop-shadow(0 6px 0 rgba(47,36,31,.18)); }
.peek-tl { top: 15%; left: 7%; }
.peek-ml { top: 54%; left: 4%; }
.peek-bl { bottom: 18%; left: 11%; }
.peek-tr { top: 11%; right: 30%; width: 64px; }

.scroll-hint {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .2em;
  color: var(--ink-2);
  z-index: 3;
}
.scroll-hint svg { animation: bobble 1.6s ease-in-out infinite; }
@keyframes bobble { 0%,100% { transform: translateY(0) } 50% { transform: translateY(6px) } }

/* ========================== MARQUEE ========================== */
.marquee {
  position: relative;
  background: var(--ink); color: var(--cream);
  padding: 20px 0;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 60px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: .08em;
  animation: scroll-x 32s linear infinite;
}
.marquee-track span { display: inline-block; }
@keyframes scroll-x {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========================== STORY / ABOUT ========================== */
.about {
  position: relative;
  padding: 140px 64px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px; align-items: center;
  max-width: 1280px; margin: 0 auto;
}
.about-content { position: relative; z-index: 2; }
.about-content .reveal { display: block; }
.about-content .big-title { padding-bottom: .12em; }
.about-content .lead { margin-top: 34px; }
.about-char { position: relative; display: grid; place-items: center; }
.about-char > img {
  width: clamp(270px, 30vw, 440px);
  filter: drop-shadow(0 40px 60px rgba(47,36,31,.22));
  will-change: transform;
}

/* real-photo polaroid pinned to the cartoon */
.story-photo {
  position: absolute;
  right: -4%;
  bottom: 2%;
  z-index: 3;
  width: clamp(126px, 14vw, 176px);
  margin: 0;
  padding: 9px 9px 30px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 5px;
  box-shadow: 0 18px 34px rgba(47, 36, 31, .26), 0 5px 0 rgba(47, 36, 31, .1);
  transform: rotate(6deg);
}
.story-photo img {
  width: 100%;
  display: block;
  border-radius: 2px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.story-photo figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 9px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 0 8px;
  line-height: 1.35;
}
.story-photo figcaption span { color: var(--brown); font-weight: 600; }
.orbit {
  position: absolute;
  width: 92px; pointer-events: none;
  filter: drop-shadow(0 6px 0 rgba(47,36,31,.16));
  z-index: 1;
}
.orbit-1 { top: 4%; right: 8%; }
.orbit-2 { bottom: 12%; left: -1%; width: 76px; }
.orbit-3 { top: 32%; right: -1%; width: 70px; }
.orbit-4 { bottom: -2%; right: 28%; width: 64px; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 52px;
  border-top: 2px solid var(--ink);
  padding-top: 30px;
}
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.6vw, 60px);
  line-height: 1;
  color: var(--brown);
}
.stat-lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-2);
}

/* ========================== VIDEO ========================== */
.video-sec {
  padding: 96px 48px 120px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--sand) 100%);
  position: relative;
}
.video-wrap {
  max-width: 560px;
  margin: 0 auto;
}
/* the X/Twitter widget replaces .twitter-tweet with its own iframe */
.video-wrap .tweet-embed {
  min-height: 420px;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 0 rgba(47, 36, 31, .16);
  background: var(--white);
  padding: 6px;
}
.video-wrap .tweet-embed .twitter-tweet { margin: 0 auto !important; }
.video-wrap .tweet-embed iframe { border-radius: 14px !important; }
.video-fallback {
  margin-top: 18px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.video-fallback a {
  color: var(--brown);
  border-bottom: 2px solid var(--tangerine);
  padding-bottom: 1px;
}
.video-fallback a:hover { color: var(--ink); }

/* ========================== TOKENOMICS (reuses .squad / .card) ========================== */
.squad {
  padding: 120px 48px 150px;
  background: linear-gradient(180deg, var(--sand) 0%, var(--cream) 100%);
  position: relative;
}
.section-head { text-align: center; max-width: 900px; margin: 0 auto 72px; }
.section-head .lead { margin-left: auto; margin-right: auto; }
.section-head .reveal { display: inline-block; }
.section-head .big-title em { color: var(--brown); }

.squad-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.card {
  position: relative;
  background: var(--bg);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius);
  padding: 26px 22px 24px;
  display: flex; flex-direction: column;
  box-shadow: 0 10px 0 rgba(47,36,31,.16);
  transition: transform .25s cubic-bezier(.2,.8,.3,1.4), box-shadow .25s;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 1px 1px, rgba(47,36,31,.07) 1px, transparent 0);
  background-size: 18px 18px;
  opacity: .5;
  pointer-events: none;
}
.card:hover {
  transform: translateY(-10px) rotate(-1deg);
  box-shadow: 0 22px 0 rgba(47,36,31,.18);
}
.card-img {
  position: relative;
  height: 210px;
  overflow: hidden;
  margin-bottom: 16px;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 22px rgba(47,36,31,.2));
  transition: transform .35s cubic-bezier(.2,.8,.3,1.4);
}
.card:hover .card-img img { transform: translateY(-10px) rotate(4deg) scale(1.04); }
.card-info { display: flex; flex-direction: column; gap: 8px; position: relative; z-index: 1; }
.card-row { display: flex; justify-content: space-between; align-items: center; }
.card-num { font-family: var(--font-mono); font-size: 12px; color: var(--ink-2); letter-spacing: .14em; }
.card-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  background: var(--ink); color: var(--cream);
  padding: 4px 10px; border-radius: 999px;
  letter-spacing: .14em;
}
.card-name {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.05;
  color: var(--accent);
  letter-spacing: .01em;
}
.card-role { font-size: 13.5px; color: var(--ink-2); line-height: 1.5; }

/* ========================== ORANGE MACHINE (reuses .adopt) ========================== */
.adopt {
  position: relative;
  padding: 140px 48px 150px;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
}
.adopt-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245,154,35,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,154,35,.07) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
}
.adopt .eyebrow { background: rgba(245,154,35,.16); color: var(--tangerine); }
.adopt .eyebrow::before { background: var(--tangerine); box-shadow: 0 0 0 4px rgba(245,154,35,.2); }
.adopt .big-title { color: var(--cream); }
.adopt .big-title em { color: var(--tangerine); }

.adopt-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1080px;
  margin: 72px auto 0;
  align-items: center;
}
.adopt-machine { position: relative; display: grid; place-items: center; }
.adopt-machine img {
  width: clamp(240px, 24vw, 360px);
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.45));
  will-change: transform;
}
.lever-btn {
  position: relative;
  margin-top: 24px;
  padding: 22px 38px;
  background: var(--tangerine);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: .06em;
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: 0 10px 0 rgba(0,0,0,.5);
  transition: transform .12s, box-shadow .12s;
}
.lever-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 0 rgba(0,0,0,.5); }
.lever-btn:active { transform: translateY(6px); box-shadow: 0 2px 0 rgba(0,0,0,.5); }
.lever-shadow {
  position: absolute; inset: 0;
  border-radius: 999px;
  box-shadow: 0 0 60px rgba(245,154,35,.6);
  opacity: 0; transition: opacity .3s;
  pointer-events: none;
}
.lever-btn:hover .lever-shadow { opacity: 1; }

.adopt-result { display: flex; flex-direction: column; gap: 18px; }
.result-label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .2em;
  color: rgba(255,246,233,.6);
}
.result-card {
  position: relative;
  background: var(--cream);
  color: var(--ink);
  border: 3px solid var(--cream);
  border-radius: var(--radius);
  height: 360px;
  overflow: hidden;
  display: grid; place-items: center;
  box-shadow: 0 16px 0 rgba(245,154,35,.3);
}
.result-empty {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: var(--ink-2);
  text-align: center;
}
.result-empty img { width: 60px; }
.result-empty p {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase;
}
.result-content {
  position: absolute; inset: 0;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px; align-items: center;
}
.result-content .ri-img { height: 100%; overflow: hidden; }
.result-content .ri-img img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 16px 20px rgba(47,36,31,.2)); }
.result-content .ri-info { display: flex; flex-direction: column; gap: 8px; }
.result-content .ri-num { font-family: var(--font-mono); font-size: 11px; letter-spacing: .18em; color: var(--ink-2); }
.result-content .ri-name {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1; color: var(--accent, var(--brown));
}
.result-content .ri-role { font-size: 14px; color: var(--ink-2); }
.result-content .ri-stamp {
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--ink);
  padding: 6px 10px; border-radius: 999px;
  width: fit-content;
}
.adopt-counter { font-family: var(--font-mono); font-size: 12px; color: rgba(255,246,233,.7); letter-spacing: .14em; }
.adopt-counter span { color: var(--tangerine); font-size: 16px; }

/* ========================== HOW TO BUY ========================== */
.buy {
  padding: 130px 48px 150px;
  background: var(--cream);
  position: relative;
}
.buy-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
  counter-reset: step;
}
.buy-step {
  position: relative;
  background: var(--white);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius);
  padding: 30px 24px 26px;
  box-shadow: var(--shadow-md);
}
.buy-num {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  background: var(--tangerine);
  border: 2.5px solid var(--ink);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 16px;
}
.buy-step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: .01em;
  margin-bottom: 8px;
  text-transform: lowercase;
}
.buy-step p { font-size: 14px; color: var(--ink-2); line-height: 1.55; }
.buy-cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  justify-content: center;
  margin-top: 56px;
}
.ca-inline { font-family: var(--font-display); }

/* ========================== ROADMAP ========================== */
.roadmap {
  padding: 130px 48px 150px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--sky) 100%);
  position: relative;
}
.road-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}
.road-phase {
  background: var(--white);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius);
  padding: 26px 22px 24px;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 8px;
}
.road-icon {
  height: 140px;
  overflow: hidden;
  margin-bottom: 6px;
}
.road-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(47,36,31,.2));
}
.road-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brown);
}
.road-phase h3 {
  font-family: var(--font-display);
  font-size: 24px;
  text-transform: lowercase;
  letter-spacing: .01em;
}
.road-phase p { font-size: 13.5px; color: var(--ink-2); line-height: 1.5; }

/* ========================== FOOTER ========================== */
.footer {
  position: relative;
  background: var(--brown);
  color: var(--cream);
  padding: 150px 48px 40px;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,246,233,.12) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
}
.footer-mascot {
  position: absolute;
  top: 70px; right: 6%;
  width: clamp(200px, 22vw, 320px);
  filter: drop-shadow(0 30px 40px rgba(0,0,0,.28));
  pointer-events: none;
  z-index: 1;
  will-change: transform;
}
.footer-content { position: relative; z-index: 2; max-width: 880px; }
.footer .eyebrow { background: rgba(255,246,233,.16); color: var(--cream); }
.footer .eyebrow::before { background: var(--tangerine); box-shadow: 0 0 0 4px rgba(245,154,35,.3); }
.footer .big-title { color: var(--cream); }
.footer .big-title em { color: var(--tangerine); }
.footer .reveal { display: block; }

.socials {
  margin-top: 36px;
  display: flex; flex-wrap: wrap; gap: 12px;
}
.social-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  background: var(--cream);
  color: var(--ink);
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: .03em;
  box-shadow: 0 8px 0 rgba(0,0,0,.2);
  transition: transform .18s, box-shadow .18s, background .18s;
}
.social-btn span { font-size: 18px; }
.social-btn:hover { transform: translateY(-3px) rotate(-1deg); background: var(--tangerine); }

.ca-pill-footer { margin-top: 28px; background: rgba(255,246,233,.12); border-color: var(--cream); }
.ca-pill-footer .ca-addr { color: rgba(255,246,233,.8); }
.ca-pill-footer .ca-label { background: var(--cream); color: var(--ink); }

.footer-bar {
  position: relative; z-index: 2;
  margin-top: 90px;
  padding-top: 24px;
  border-top: 2px dashed rgba(255,246,233,.3);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px; align-items: center;
}
.footer-word {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: .04em;
  color: var(--cream);
}
.footer-links { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.footer-links a { opacity: .8; transition: opacity .2s; }
.footer-links a:hover { opacity: 1; }
.footer-c {
  text-align: right;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .08em;
  color: rgba(255,246,233,.75);
  text-transform: uppercase;
}
.footer-disclaimer {
  position: relative; z-index: 2;
  margin: 28px auto 0;
  max-width: 900px;
  text-align: center;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,246,233,.6);
}

/* ========================== DECO FLOATERS ========================== */
.deco, .deco-dark {
  position: absolute;
  pointer-events: none;
  will-change: transform;
  z-index: 1;
  filter: drop-shadow(0 6px 0 rgba(47,36,31,.18));
}
.deco { width: 64px; }
.deco-dark { width: 72px; opacity: .8; filter: drop-shadow(0 6px 0 rgba(0,0,0,.35)); }

.squad .deco-1 { top: 4%; left: 4%; }
.squad .deco-2 { top: 26%; right: 3%; width: 56px; }
.squad .deco-3 { bottom: 12%; left: 6%; width: 52px; }
.squad .deco-4 { top: 60%; right: 2%; width: 58px; }

.adopt .deco-d-1 { top: 14%; left: 5%; }
.adopt .deco-d-2 { top: 24%; right: 4%; }
.adopt .deco-d-3 { bottom: 18%; left: 12%; width: 58px; }
.adopt .deco-d-4 { bottom: 30%; right: 8%; width: 50px; }

/* ========================== RESPONSIVE ========================== */
@media (hover: none) {
  #fx-canvas { display: none; }
  .card:hover { transform: none; box-shadow: 0 10px 0 rgba(47,36,31,.16); }
  .card:hover .card-img img { transform: none; }
  .btn:hover { transform: none; box-shadow: var(--shadow-md); }
  .nav-cta:hover { transform: none; }
  .lever-btn:hover { transform: none; box-shadow: 0 10px 0 rgba(0,0,0,.5); }
  .social-btn:hover { transform: none; }
}

/* ----- Tablet / small laptop ----- */
@media (max-width: 1180px) {
  /* not enough side room for the proof cluster — drop it below the hero text */
  .hero { flex-direction: column; }
  .hero-text { max-width: 620px; margin: 0 auto; text-align: center; }
  .hero-text .eyebrow, .hero-sub, .ca-pill { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-photo {
    position: static;
    flex-direction: row;
    justify-content: center;
    width: min(680px, 92vw);
    margin: 40px auto 0;
    gap: 18px;
  }
  .peek-tr { display: none; }
}

@media (max-width: 1040px) {
  .squad-grid { grid-template-columns: repeat(2, 1fr); }
  .buy-steps { grid-template-columns: repeat(2, 1fr); }
  .road-track { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  /* Nav → hamburger */
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    background: rgba(255, 246, 233, .97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 2px solid var(--ink);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    font-size: 14px;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .2s, transform .2s;
  }
  .nav-links.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-links > a:not(.nav-cta) { padding: 12px 14px; text-align: center; }
  .nav-cta { margin: 6px 0 0; justify-content: center; }

  .hero { padding: 116px 22px 90px; min-height: auto; flex-direction: column; }
  .hero-bg { object-position: 60% center; }
  .hero-bg-fade {
    background:
      linear-gradient(0deg, rgba(255,246,233,.98) 0%, rgba(255,246,233,.90) 46%, rgba(255,246,233,.62) 100%);
  }
  .hero-text { text-align: center; max-width: 560px; margin: 0 auto; }
  .hero-text .eyebrow { margin-left: auto; margin-right: auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .ca-pill { margin-left: auto; margin-right: auto; }
  .hero-tag {
    position: static;
    margin: 0 auto 22px;
    width: fit-content;
    transform: rotate(-2deg);
  }
  .peek { display: none; }
  .scroll-hint { display: none; }
  .hero-photo {
    position: static;
    flex-direction: column;
    align-items: center;
    margin: 30px auto 0;
    width: min(340px, 86vw);
    gap: 20px;
  }
  .hero-photo .proof-card { width: 100%; transform: rotate(-1.5deg); }
  .hero-photo .proof-card--tweet { transform: rotate(1.5deg); }

  .about { grid-template-columns: 1fr; padding: 100px 30px; gap: 44px; }
  .about-char { order: -1; }
  .story-photo { right: 2%; bottom: -4%; width: clamp(116px, 30vw, 158px); transform: rotate(5deg); }
  .adopt-stage { grid-template-columns: 1fr; gap: 40px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-mascot { display: none; }
  .footer-bar { grid-template-columns: 1fr; text-align: center; }
  .footer-c { text-align: center; }
  .footer-bar-l, .footer-links { justify-content: center; }
}

/* ----- Phone ----- */
@media (max-width: 620px) {
  body { font-size: 15px; }

  .nav { left: 8px; right: 8px; padding: 4px 6px 4px 12px; min-height: 54px; }
  .nav-logo { gap: 8px; font-size: 17px; }
  .nav-logo img { width: 28px; height: 28px; }
  .nav-toggle { width: 40px; height: 40px; }

  .hero       { padding: 104px 16px 56px; }
  .about      { padding: 80px 18px; gap: 32px; }
  .video-sec  { padding: 84px 16px 96px; }
  .squad      { padding: 84px 16px 96px; }
  .adopt      { padding: 84px 16px 96px; }
  .buy        { padding: 84px 16px 96px; }
  .roadmap    { padding: 84px 16px 96px; }
  .footer     { padding: 96px 18px 30px; }

  .section-head { margin-bottom: 44px; }

  .hero-title { font-size: clamp(40px, 12vw, 60px); text-shadow: 0 4px 0 rgba(245,154,35,.45); }
  .hero-title .stroke {
    color: var(--cream);
    -webkit-text-stroke: 2px var(--ink);
    text-shadow: 3px 4px 0 var(--ink);
  }
  .hero-sub { font-size: 14px; }
  .hero-cta { gap: 10px; margin-top: 22px; width: 100%; }
  .hero-cta .btn { flex: 1 1 auto; justify-content: center; }
  .hero-tag { padding: 6px 14px; }
  .hero-tag strong { font-size: 15px; }
  .hero-tag em { font-size: 9px; }
  .peek { display: none; }
  .scroll-hint { display: none; }

  .ca-pill { width: 100%; padding: 6px 6px 6px 12px; }
  .ca-addr { font-size: 10.5px; }

  .marquee { padding: 14px 0; }
  .marquee-track { font-size: 17px; gap: 34px; }

  .big-title { font-size: clamp(34px, 10vw, 52px); }
  .lead { font-size: 14px; margin-top: 16px; }
  .eyebrow { font-size: 10px; padding: 6px 12px; margin-bottom: 20px; }

  .about-content { text-align: left; }
  .about-char img { width: 210px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 32px; padding-top: 20px; }
  .stat-num { font-size: 34px; }

  .squad-grid { grid-template-columns: 1fr; gap: 16px; }
  .card { padding: 22px 20px; }
  .card-img { height: 170px; }

  .buy-steps { grid-template-columns: 1fr; gap: 14px; }
  .road-track { grid-template-columns: 1fr; gap: 14px; }
  .road-icon { height: 110px; }

  .adopt-stage { gap: 28px; margin-top: 44px; }
  .adopt-machine img { width: 210px; }
  .lever-btn { padding: 16px 28px; font-size: 14px; }
  .result-card { height: 300px; }
  .result-content { grid-template-columns: 1fr; padding: 20px; gap: 10px; text-align: center; }
  .result-content .ri-img { height: auto; }
  .result-content .ri-img img { max-width: 46%; max-height: 130px; }
  .result-content .ri-name { font-size: 30px; }
  .result-content .ri-stamp { margin-left: auto; margin-right: auto; }

  .social-btn { flex: 1 1 auto; justify-content: center; }
  .footer-bar { gap: 16px; margin-top: 60px; }
  .footer-disclaimer { font-size: 11px; }

  .btn { padding: 15px 22px; font-size: 14px; }
  .deco, .deco-dark { display: none; }

  .preload-char { width: 130px; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 38px; }
  .nav-logo span { font-size: 15px; }
  .big-title { font-size: 30px; }
  .stat-num { font-size: 30px; }
}

/* ----- reduced motion ----- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001s !important; animation-iteration-count: 1 !important; transition-duration: .001s !important; }
  html { scroll-behavior: auto; }
}
