:root {
  --cream: #f8f1e3;
  --cream-deep: #efe4ce;
  --ink: #100e0b;
  --ink-2: #1a1610;
  --ink-3: #241e16;
  --brown: #3a2e1c;
  --gold: #f0b90b;
  --gold-bright: #fcd535;
  --gold-soft: #ffe08a;
  --gold-deep: #c98910;
  --bronze: #8a6418;
  --muted: #8d816c;
  --white: #fffbf3;
  --glass: rgba(16, 14, 11, 0.55);
  --line: rgba(240, 185, 11, 0.22);
  --shadow: 0 24px 60px rgba(16, 14, 11, 0.28);
  --radius: 28px;
  --header-h: 76px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: "Syne", "Segoe UI", system-ui, sans-serif;
  --font-body: "Outfit", "Segoe UI", system-ui, sans-serif;
  --px: 0;
  --py: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--white);
  background: var(--ink);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  min-height: 100%;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

code {
  font-family: ui-monospace, "Cascadia Code", "SF Mono", Menlo, Consolas, monospace;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 100;
  background: var(--gold);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 700;
}

.skip-link:focus {
  top: 12px;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

@media (min-width: 1800px) {
  .wrap {
    width: min(1380px, calc(100% - 80px));
  }
}

.gold-text {
  background: linear-gradient(180deg, var(--gold-soft) 0%, var(--gold) 48%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-deep);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5.4vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.5;
  max-width: 38ch;
}

.body-copy {
  color: var(--brown);
  font-size: 1.05rem;
  max-width: 48ch;
}

.cream-section .lede,
.cream-section .section-title {
  color: var(--ink);
}

.dark-section {
  background: var(--ink-2);
  color: var(--white);
}

.cream-section {
  background: var(--cream);
  color: var(--ink);
}

section {
  scroll-margin-top: calc(var(--header-h) + 12px);
  position: relative;
}

/* Noise + cursor */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 80;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 70;
  background: radial-gradient(circle, rgba(240, 185, 11, 0.16) 0%, transparent 68%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s;
  mix-blend-mode: screen;
}

body.has-pointer .cursor-glow.is-on {
  opacity: 1;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 12px 20px;
  font-size: 0.86rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s, color 0.35s, border-color 0.35s;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  will-change: transform;
  touch-action: manipulation;
}

.btn-icon {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
}

.btn-xl {
  padding: 20px 36px;
  font-size: 1.02rem;
  letter-spacing: 0.08em;
}

.btn-gold {
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 52%, var(--gold-deep) 100%);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(240, 185, 11, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.45) 48%, transparent 62%);
  transform: translateX(-120%);
  animation: shineSweep 4.8s ease-in-out infinite;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(240, 185, 11, 0.42);
}

.btn-outline {
  border: 1px solid rgba(240, 185, 11, 0.45);
  color: var(--gold-soft);
  background: rgba(240, 185, 11, 0.05);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  background: rgba(240, 185, 11, 0.12);
}

.btn-ghost {
  border: 1px solid rgba(255, 251, 243, 0.14);
  color: var(--white);
  background: rgba(255, 251, 243, 0.04);
}

.btn-ghost:hover {
  border-color: rgba(240, 185, 11, 0.5);
  color: var(--gold-soft);
}

.btn-copy {
  background: var(--ink);
  color: var(--gold-soft);
  border: 1px solid rgba(240, 185, 11, 0.28);
  min-width: 118px;
}

.btn-copy:hover,
.btn-copy.is-copied {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

@keyframes shineSweep {
  0%,
  55% {
    transform: translateX(-120%);
  }
  80%,
  100% {
    transform: translateX(120%);
  }
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  transition: background 0.35s, backdrop-filter 0.35s, border-color 0.35s, box-shadow 0.35s;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(16, 14, 11, 0.55), transparent);
}

.site-header.is-scrolled {
  background: rgba(16, 14, 11, 0.72);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom-color: rgba(240, 185, 11, 0.12);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.header-inner {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(240, 185, 11, 0.45);
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 0.92rem;
}

.nav-desktop {
  display: none;
  margin-left: auto;
  gap: 28px;
}

.nav-desktop a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 251, 243, 0.72);
  position: relative;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav-desktop a:hover {
  color: var(--white);
}

.nav-desktop a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.menu-toggle {
  margin-left: auto;
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 12px;
  border: 1px solid rgba(255, 251, 243, 0.12);
  background: rgba(255, 251, 243, 0.04);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s;
  transform-origin: center;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (min-width: 960px) {
  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
  .nav-desktop,
  .header-actions {
    display: flex;
  }
  .brand {
    justify-self: start;
  }
  .nav-desktop {
    justify-self: center;
    margin-left: 0;
  }
  .header-actions {
    justify-self: end;
    margin-left: 0;
  }
  .menu-toggle,
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 45;
  background: #100e0b;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s, transform 0.35s var(--ease);
  padding: 28px 24px 48px;
}

.mobile-menu.is-open {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 8vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 251, 243, 0.08);
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

body.menu-open {
  overflow: hidden;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-h) + 16px) 0 72px;
  background:
    radial-gradient(ellipse 80% 60% at 80% 30%, rgba(240, 185, 11, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(201, 137, 16, 0.12), transparent 50%),
    var(--ink);
  overflow: hidden;
}

.hero-geo {
  position: absolute;
  inset: -10%;
  background-image:
    linear-gradient(115deg, transparent 40%, rgba(240, 185, 11, 0.04) 50%, transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 126 126'%3E%3Cg fill='none' stroke='%23f0b90b' stroke-width='1.4' opacity='.09'%3E%3Cpath d='M63 18.5 76.8 32.3 63 46.1 49.2 32.3Z'/%3E%3Cpath d='M63 77.9 76.8 91.7 63 105.5 49.2 91.7Z'/%3E%3Cpath d='M18.5 63 32.3 49.2 46.1 63 32.3 76.8Z'/%3E%3Cpath d='M77.9 63 91.7 49.2 105.5 63 91.7 76.8Z'/%3E%3Cpath d='M52.4 63 63 52.4 73.6 63 63 73.6Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: auto, 180px 180px;
  transform: translate3d(calc(var(--px) * -18px), calc(var(--py) * -12px), 0);
  pointer-events: none;
  animation: geoDrift 28s linear infinite;
}

@keyframes geoDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 120px 0, 180px 90px;
  }
}

.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-paws {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.float-paw {
  position: absolute;
  width: 42px;
  height: 42px;
  fill: var(--gold);
  opacity: 0.12;
  animation: pawFloat 9s ease-in-out infinite;
}

.float-paw.p1 { top: 14%; left: 8%; animation-delay: 0s; }
.float-paw.p2 { top: 28%; left: 42%; width: 28px; animation-delay: 1.4s; }
.float-paw.p3 { top: 62%; left: 12%; width: 34px; animation-delay: 2.2s; }
.float-paw.p4 { top: 18%; right: 10%; animation-delay: 0.8s; }
.float-paw.p5 { bottom: 16%; right: 18%; width: 30px; animation-delay: 3s; }
.float-paw.p6 { bottom: 22%; left: 36%; width: 24px; animation-delay: 1.8s; }

@keyframes pawFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-8deg);
  }
  50% {
    transform: translateY(-16px) rotate(10deg);
  }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 40px;
  align-items: center;
  padding-top: 18px;
}

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: 1.2fr 0.9fr;
    gap: 40px;
    min-height: calc(100vh - var(--header-h) - 88px);
    align-items: center;
  }
  .hero-title {
    font-size: clamp(2.35rem, 3.5vw, 3.85rem);
  }
  .hero-line span {
    white-space: nowrap;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(240, 185, 11, 0.35);
  background: rgba(240, 185, 11, 0.08);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold-soft);
  width: fit-content;
  margin-bottom: 22px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.75);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.05rem, 4.6vw, 4.25rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
  margin-bottom: 18px;
}

.hero-title em {
  font-style: normal;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold) 55%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-line {
  display: block;
  overflow: hidden;
}

.hero-line span {
  display: block;
  animation: riseIn 1s var(--ease) both;
}

.hero-line:nth-child(2) span {
  animation-delay: 0.12s;
}

@keyframes riseIn {
  from {
    transform: translateY(110%);
  }
  to {
    transform: translateY(0);
  }
}

.hero-support {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255, 251, 243, 0.72);
  max-width: 32ch;
  margin-bottom: 14px;
}

.hero-ticker-word {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 22px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-visual {
  position: relative;
  isolation: isolate;
  transform-style: preserve-3d;
}

.hero-glow {
  position: absolute;
  inset: 8% 6%;
  background: radial-gradient(circle, rgba(240, 185, 11, 0.55) 0%, rgba(240, 185, 11, 0.08) 48%, transparent 70%);
  filter: blur(28px);
  z-index: 0;
  animation: auraPulse 5.5s ease-in-out infinite;
}

@keyframes auraPulse {
  0%,
  100% {
    opacity: 0.75;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

.hero-frame {
  position: relative;
  z-index: 1;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow), 0 0 0 1px rgba(240, 185, 11, 0.28);
  transform: translate3d(calc(var(--px) * 16px), calc(var(--py) * 10px), 0) rotateY(calc(var(--px) * 8deg)) rotateX(calc(var(--py) * -6deg));
  animation: floatArt 6.5s ease-in-out infinite;
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.22) 50%, transparent 65%);
  mix-blend-mode: screen;
  animation: frameShine 7s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes frameShine {
  0%,
  60% {
    transform: translateX(-40%);
    opacity: 0;
  }
  72% {
    opacity: 1;
  }
  100% {
    transform: translateX(40%);
    opacity: 0;
  }
}

@keyframes floatArt {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -12px;
  }
}

.hero-coin {
  position: absolute;
  width: clamp(120px, 28%, 210px);
  left: -8%;
  bottom: -6%;
  z-index: 3;
  filter: drop-shadow(0 18px 30px rgba(16, 14, 11, 0.45));
  animation: coinBob 5.2s ease-in-out infinite;
  transform: translate3d(calc(var(--px) * -22px), calc(var(--py) * -14px), 40px);
}

.hero-coin img {
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(240, 185, 11, 0.4), 0 0 40px rgba(240, 185, 11, 0.35);
}

@keyframes coinBob {
  0%,
  100% {
    rotate: -4deg;
  }
  50% {
    rotate: 5deg;
    translate: 0 -10px;
  }
}

/* CA bar */
.ca-bar {
  background: linear-gradient(90deg, #1c170f, #2a2216 40%, #1c170f);
  border-block: 1px solid var(--line);
}

.ca-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 72px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 12px 0;
}

.ca-label {
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--gold);
}

.ca-value {
  font-size: clamp(0.92rem, 2.4vw, 1.15rem);
  color: var(--gold-soft);
  background: rgba(0, 0, 0, 0.28);
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid rgba(240, 185, 11, 0.18);
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Marquee */
.marquee {
  overflow: hidden;
  background: var(--gold);
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid rgba(16, 14, 11, 0.12);
}

.marquee-track {
  display: flex;
  gap: 22px;
  width: max-content;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* About */
.about {
  padding: 108px 0 120px;
  overflow: hidden;
}

.about-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 880px) {
  .about-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 72px;
  }
}

.about-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.about-ring {
  position: absolute;
  width: min(92%, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px dashed rgba(201, 137, 16, 0.45);
  animation: spinSlow 24s linear infinite;
}

.about-ring::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1px solid rgba(240, 185, 11, 0.25);
}

@keyframes spinSlow {
  to {
    rotate: 360deg;
  }
}

.about-logo {
  width: min(78%, 360px);
  border-radius: 50%;
  position: relative;
  z-index: 1;
  object-fit: cover;
  aspect-ratio: 1;
  box-shadow: 0 30px 60px rgba(58, 46, 28, 0.18), 0 0 0 8px rgba(240, 185, 11, 0.18);
  animation: none;
}

.about-visual.is-in .about-logo {
  animation: logoPop 1.1s var(--ease) both, coinBob 6s ease-in-out 1.1s infinite;
}

@keyframes logoPop {
  from {
    opacity: 0;
    transform: scale(0.86) rotate(-8deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

.about-copy .lede {
  margin: 22px 0 16px;
}

.about-tag {
  margin-top: 22px;
  font-weight: 700;
  color: var(--bronze);
}

/* 4 mindset */
.mindset {
  padding: 110px 0 120px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(240, 185, 11, 0.1), transparent 32%),
    var(--ink-2);
}

.mindset-head {
  margin-bottom: 36px;
}

.mindset-layout {
  display: grid;
  gap: 20px;
  align-items: center;
}

@media (min-width: 980px) {
  .mindset-layout {
    grid-template-columns: 0.42fr 1fr;
    gap: 28px;
  }
}

.giant-four {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(9rem, 22vw, 22rem);
  line-height: 0.75;
  letter-spacing: -0.08em;
  background: linear-gradient(180deg, rgba(252, 213, 53, 0.95), rgba(240, 185, 11, 0.15) 70%, transparent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
  user-select: none;
  filter: drop-shadow(0 20px 40px rgba(240, 185, 11, 0.15));
}

.mindset-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 640px) {
  .mindset-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.mind-card {
  background: rgba(255, 251, 243, 0.03);
  border: 1px solid rgba(240, 185, 11, 0.14);
  border-radius: var(--radius);
  padding: 28px 24px 26px;
  min-height: 196px;
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform-style: preserve-3d;
  transition: border-color 0.35s, background 0.35s, transform 0.35s var(--ease);
}

.mind-card:hover {
  border-color: rgba(240, 185, 11, 0.4);
  background: rgba(240, 185, 11, 0.07);
}

.mind-card.featured {
  background: linear-gradient(180deg, rgba(240, 185, 11, 0.16), rgba(240, 185, 11, 0.04));
  border-color: rgba(240, 185, 11, 0.4);
}

.mind-num {
  display: block;
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
}

.mind-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.mind-card p {
  color: rgba(255, 251, 243, 0.65);
  font-size: 0.98rem;
}

/* Nine lives */
.lives {
  padding: 108px 0 120px;
}

.lives-head {
  margin-bottom: 40px;
  max-width: 720px;
}

.lives-head .lede {
  margin-top: 16px;
  color: var(--brown);
}

.lives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (min-width: 800px) {
  .lives-grid {
    gap: 16px;
  }
}

.life-card {
  background: #fffdf8;
  border: 1px solid rgba(58, 46, 28, 0.08);
  border-radius: 22px;
  padding: 18px 10px 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(58, 46, 28, 0.06);
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
}

.lives-grid.is-in .life-card {
  animation: lifeIn 0.7s var(--ease) both;
}

.lives-grid.is-in .life-card:nth-child(1) { animation-delay: 0.02s; }
.lives-grid.is-in .life-card:nth-child(2) { animation-delay: 0.1s; }
.lives-grid.is-in .life-card:nth-child(3) { animation-delay: 0.18s; }
.lives-grid.is-in .life-card:nth-child(4) { animation-delay: 0.26s; }
.lives-grid.is-in .life-card:nth-child(5) { animation-delay: 0.34s; }
.lives-grid.is-in .life-card:nth-child(6) { animation-delay: 0.42s; }
.lives-grid.is-in .life-card:nth-child(7) { animation-delay: 0.5s; }
.lives-grid.is-in .life-card:nth-child(8) { animation-delay: 0.58s; }
.lives-grid.is-in .life-card:nth-child(9) { animation-delay: 0.66s; }

@keyframes lifeIn {
  to {
    opacity: 1;
    transform: none;
  }
}

.life-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 185, 11, 0.45);
  box-shadow: 0 16px 36px rgba(240, 185, 11, 0.16);
}

.life-paw {
  width: 42px;
  height: 42px;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(240, 185, 11, 0.14);
  color: var(--gold-deep);
}

.life-paw svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.life-card:hover .life-paw {
  animation: pawBounce 0.55s var(--ease);
}

@keyframes pawBounce {
  0% { transform: scale(1); }
  35% { transform: scale(1.22) translateY(-4px); }
  100% { transform: scale(1); }
}

.life-n {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 4px;
}

.life-card strong {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2.4vw, 1.2rem);
}

.life-four {
  background: linear-gradient(180deg, #fff6d6, #fffdf8);
  border-color: rgba(240, 185, 11, 0.45);
  box-shadow: 0 0 0 1px rgba(240, 185, 11, 0.18), 0 12px 30px rgba(240, 185, 11, 0.12);
}

/* Statement */
.statement {
  position: relative;
  overflow: hidden;
  padding: 120px 0 130px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(240, 185, 11, 0.22), transparent 48%),
    linear-gradient(180deg, #16120c, #0c0a08 70%);
  text-align: center;
}

.paw-trail {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.trail-paw {
  position: absolute;
  width: 28px;
  height: 28px;
  fill: var(--gold);
  opacity: 0;
  offset-path: path("M -40 180 C 180 40, 360 320, 620 120 S 1080 80, 1400 240 S 1800 80, 2200 200");
  animation: trailRun 16s linear infinite;
}

.trail-paw:nth-child(odd) {
  offset-path: path("M -20 320 C 220 480, 480 80, 760 300 S 1200 420, 1600 140 S 2000 360, 2300 220");
}

@keyframes trailRun {
  0% {
    offset-distance: 0%;
    opacity: 0;
    rotate: -20deg;
  }
  8% {
    opacity: 0.35;
  }
  92% {
    opacity: 0.35;
  }
  100% {
    offset-distance: 100%;
    opacity: 0;
    rotate: 18deg;
  }
}

.statement-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 10vw, 8.4rem);
  line-height: 0.88;
  letter-spacing: -0.05em;
  position: relative;
  z-index: 1;
}

.statement-title span {
  display: block;
}

.statement-coin {
  width: min(220px, 46vw);
  margin: 28px auto 18px;
  position: relative;
  z-index: 1;
  animation: coinBob 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 50px rgba(240, 185, 11, 0.28));
}

.statement-coin img {
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1;
}

.statement-sub {
  position: relative;
  z-index: 1;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: rgba(255, 251, 243, 0.62);
  text-transform: uppercase;
  font-size: 0.82rem;
}

/* Join */
.join {
  padding: 108px 0 120px;
}

.join-head {
  margin-bottom: 48px;
}

.join-steps {
  display: grid;
  gap: 16px;
  counter-reset: none;
}

@media (min-width: 800px) {
  .join-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
}

.join-step {
  background: #fffdf8;
  border-radius: var(--radius);
  padding: 32px 26px;
  border: 1px solid rgba(58, 46, 28, 0.08);
  box-shadow: 0 16px 40px rgba(58, 46, 28, 0.06);
  position: relative;
}

.join-step::after {
  content: "";
  display: none;
}

@media (min-width: 800px) {
  .join-step:not(:last-child)::after {
    content: "";
    display: block;
    position: absolute;
    top: 48px;
    right: -14px;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    z-index: 1;
  }
}

.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-deep);
  display: block;
  margin-bottom: 18px;
  letter-spacing: -0.04em;
}

.join-step h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.join-step p {
  color: var(--brown);
}

.join-cta {
  margin-top: 40px;
  text-align: center;
}

/* Community */
.community {
  padding: 108px 0 120px;
}

.community-head {
  margin-bottom: 40px;
}

.community-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 800px) {
  .community-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.comm-card {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 32px 26px 28px;
  border-radius: var(--radius);
  background: rgba(255, 251, 243, 0.03);
  border: 1px solid rgba(240, 185, 11, 0.16);
  min-height: 220px;
  overflow: hidden;
  isolation: isolate;
}

.comm-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(130deg, transparent, var(--gold), transparent 60%);
  background-size: 200% 200%;
  animation: borderTravel 5s linear infinite;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.55;
}

@keyframes borderTravel {
  to {
    background-position: 200% 0;
  }
}

.comm-card:hover {
  transform: translateY(-6px);
  background: rgba(240, 185, 11, 0.08);
}

.comm-card.featured {
  background: linear-gradient(180deg, rgba(240, 185, 11, 0.16), rgba(240, 185, 11, 0.04));
}

.comm-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(240, 185, 11, 0.12);
  color: var(--gold);
  font-size: 1.2rem;
}

.comm-icon .icon {
  width: 22px;
  height: 22px;
}

.comm-label {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.comm-meta {
  color: rgba(255, 251, 243, 0.55);
}

.comm-go {
  position: absolute;
  right: 22px;
  bottom: 22px;
  color: var(--gold);
  font-size: 1.4rem;
}

/* Finale */
.finale {
  position: relative;
  overflow: hidden;
  padding: 96px 0 108px;
  text-align: center;
  background: linear-gradient(180deg, #1a150e, #0f0c09);
}

.finale-glow {
  position: absolute;
  width: 60%;
  height: 60%;
  left: 20%;
  top: 10%;
  background: radial-gradient(circle, rgba(240, 185, 11, 0.22), transparent 65%);
  pointer-events: none;
}

.finale-inner {
  position: relative;
  z-index: 1;
}

.finale-coin {
  width: min(128px, 34vw);
  margin: 0 auto 20px;
  animation: coinBob 6s ease-in-out infinite;
  filter: drop-shadow(0 16px 40px rgba(240, 185, 11, 0.3));
}

.finale-coin img {
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1;
}

.finale-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 6.2vw, 5.2rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  margin-bottom: 14px;
}

.finale-title span {
  display: block;
}

.finale-sub {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 36px;
}

/* Footer */
.site-footer {
  background: #0a0908;
  border-top: 1px solid rgba(240, 185, 11, 0.12);
  padding: 48px 0 36px;
  text-align: center;
  color: rgba(255, 251, 243, 0.7);
}

.footer-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.footer-brand strong {
  font-family: var(--font-display);
  letter-spacing: 0.16em;
  color: var(--white);
}

.footer-tag {
  margin-bottom: 18px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 22px;
}

.footer-links a {
  color: var(--gold-soft);
  font-weight: 600;
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.footer-links a:hover::after {
  transform: scaleX(1);
}

.footer-end {
  font-size: 0.92rem;
  color: rgba(255, 251, 243, 0.5);
}

/* Reveals */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.reveal:nth-child(2) { transition-delay: 0.05s; }
.reveal:nth-child(3) { transition-delay: 0.1s; }
.reveal:nth-child(4) { transition-delay: 0.16s; }

.mindset-grid .reveal:nth-child(1) { transition-delay: 0.05s; }
.mindset-grid .reveal:nth-child(2) { transition-delay: 0.12s; }
.mindset-grid .reveal:nth-child(3) { transition-delay: 0.18s; }
.mindset-grid .reveal:nth-child(4) { transition-delay: 0.24s; }

.join-steps .reveal:nth-child(1) { transition-delay: 0.05s; }
.join-steps .reveal:nth-child(2) { transition-delay: 0.14s; }
.join-steps .reveal:nth-child(3) { transition-delay: 0.22s; }

.community-grid .reveal:nth-child(1) { transition-delay: 0.05s; }
.community-grid .reveal:nth-child(2) { transition-delay: 0.12s; }
.community-grid .reveal:nth-child(3) { transition-delay: 0.2s; }

/* Small mobile */
@media (max-width: 479px) {
  .wrap {
    width: min(1180px, calc(100% - 28px));
  }
  .hero {
    padding-top: 12px;
  }
  .hero-frame {
    aspect-ratio: 16 / 11;
    border-radius: 22px;
  }
  .hero-coin {
    width: 96px;
    left: -4%;
    bottom: -8%;
  }
  .life-card {
    padding: 16px 8px 14px;
    border-radius: 16px;
  }
  .life-paw {
    width: 32px;
    height: 32px;
  }
  .ca-inner {
    justify-content: flex-start;
  }
  .header-inner {
    width: min(1280px, calc(100% - 20px));
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .life-card {
    opacity: 1;
    transform: none;
  }
  .hero-frame,
  .hero-coin,
  .hero-geo {
    transform: none !important;
    animation: none !important;
  }
  .cursor-glow {
    display: none;
  }
}

@supports not (offset-path: path("M 0 0 L 1 1")) {
  .trail-paw {
    animation: pawFloat 8s ease-in-out infinite;
    opacity: 0.2;
  }
}
