:root {
  color-scheme: light;
  --bg: #f2f3ef;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-solid: #ffffff;
  --surface-muted: #e9ebe7;
  --ink: #10120f;
  --muted: #747971;
  --soft-ink: #4d534b;
  --line: rgba(18, 21, 17, 0.1);
  --line-strong: rgba(18, 21, 17, 0.18);
  --lime: #c8ff3d;
  --lime-bright: #d8ff76;
  --lime-soft: #ecffc1;
  --lime-deep: #8ab40e;
  --sage: #9db49d;
  --stage: #f7ffe4;
  --shadow: 0 28px 70px rgba(37, 49, 31, 0.12);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0a0b09;
  --surface: rgba(24, 26, 22, 0.82);
  --surface-solid: #151713;
  --surface-muted: #20231e;
  --ink: #f4f6ef;
  --muted: #979d93;
  --soft-ink: #bdc3b8;
  --line: rgba(243, 246, 238, 0.1);
  --line-strong: rgba(243, 246, 238, 0.2);
  --lime: #c8ff3d;
  --lime-bright: #d8ff76;
  --lime-soft: #2a341d;
  --lime-deep: #9ccd16;
  --sage: #759075;
  --stage: #151b10;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  --pointer-x: 50vw;
  --pointer-y: 40vh;
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 12%, color-mix(in srgb, var(--lime) 10%, transparent), transparent 24rem),
    radial-gradient(circle at 86% 82%, color-mix(in srgb, var(--sage) 12%, transparent), transparent 27rem),
    var(--bg);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  transition: background-color 300ms ease, color 300ms ease;
}

a,
button {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  font: inherit;
}

.page-noise {
  position: fixed;
  z-index: 10;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' 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)' opacity='.7'/%3E%3C/svg%3E");
}

.site-shell {
  position: relative;
  width: min(100%, 1480px);
  min-height: 100svh;
  margin: 0 auto;
  padding: 14px clamp(18px, 3vw, 48px) 24px;
}

.nav {
  position: sticky;
  z-index: 40;
  top: 14px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 58px;
  padding: 7px 8px 7px 10px;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  box-shadow: 0 14px 45px rgba(28, 38, 24, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(18px) saturate(140%);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: color-mix(in srgb, var(--surface-solid) 72%, transparent);
  box-shadow: 0 7px 18px rgba(23, 36, 17, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  overflow: hidden;
}

.brand-mark img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.brand-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.brand-tag {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--surface-muted);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface-muted) 88%, transparent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.nav-pill a {
  padding: 9px 15px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav-pill a:hover,
.nav-pill a.is-active {
  background: var(--surface-solid);
  color: var(--ink);
  box-shadow: 0 3px 12px rgba(24, 31, 20, 0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
}

.icon-button,
.nav-buy {
  display: inline-grid;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface-solid) 80%, transparent);
  box-shadow: 0 7px 20px rgba(26, 34, 22, 0.06);
}

.icon-button {
  width: 42px;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
}

.icon-button svg {
  width: 16px;
  height: 16px;
}

.icon-button > svg:not(.sun-icon):not(.moon-icon) {
  fill: currentColor;
}

.theme-toggle svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.sun-icon,
html[data-theme="dark"] .moon-icon {
  display: none;
}

html[data-theme="dark"] .sun-icon {
  display: block;
}

.nav-buy {
  grid-auto-flow: column;
  gap: 10px;
  padding: 0 18px;
  border-color: color-mix(in srgb, var(--lime-deep) 42%, transparent);
  border-radius: 999px;
  background: var(--lime);
  color: #10120f;
  font-size: 13px;
  font-weight: 650;
  box-shadow: 0 10px 25px color-mix(in srgb, var(--lime) 24%, transparent);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px color-mix(in srgb, var(--lime) 32%, transparent);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(470px, 1.12fr);
  gap: clamp(36px, 5vw, 82px);
  align-items: center;
  min-height: calc(100svh - 124px);
  padding: clamp(34px, 5vh, 62px) 0 clamp(26px, 4vh, 48px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 620px;
  padding-left: clamp(0px, 2vw, 26px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: clamp(24px, 4vh, 46px);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime-deep);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--lime) 20%, transparent);
}

.eyebrow-separator {
  width: 24px;
  height: 1px;
  margin: 0 3px;
  background: var(--line-strong);
}

h1 {
  margin: 0;
}

.hero-intro {
  display: block;
  margin: 0 0 -0.05em 5px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(52px, 5.2vw, 80px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.86;
}

.hero-wordmark {
  display: block;
  width: min(100%, 580px);
  max-width: 100%;
  height: auto;
  margin: 10px 0 8px;
  filter: drop-shadow(0 12px 18px rgba(49, 82, 42, 0.12));
}

html[data-theme="dark"] .hero-wordmark {
  filter: brightness(1.12) drop-shadow(0 15px 26px rgba(176, 255, 157, 0.12));
}

.hero-line {
  margin: 4px 0 18px 4px;
  font-size: clamp(22px, 2.1vw, 33px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.hero-line em {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.18em;
  font-weight: 400;
}

.hero-description {
  max-width: 505px;
  margin: 0 0 28px 4px;
  color: var(--muted);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-left: 4px;
}

.button {
  display: inline-flex;
  min-height: 51px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 650;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  min-width: 164px;
  border-color: color-mix(in srgb, var(--lime-deep) 50%, transparent);
  background: var(--lime);
  color: #10120f;
  box-shadow: 0 13px 27px color-mix(in srgb, var(--lime) 24%, transparent);
}

.button-primary:hover {
  box-shadow: 0 17px 32px color-mix(in srgb, var(--lime) 32%, transparent);
}

.button-arrow {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: #11130f;
  color: #fff;
  font-size: 12px;
}

.button-secondary {
  background: color-mix(in srgb, var(--surface-solid) 76%, transparent);
}

.button-secondary:hover {
  background: var(--surface-solid);
  box-shadow: 0 12px 25px rgba(22, 29, 19, 0.08);
}

.button-secondary svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.contract-card {
  display: inline-flex;
  width: min(100%, 330px);
  align-items: center;
  gap: 11px;
  margin: 20px 0 0 4px;
  padding: 10px 12px 10px 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: color-mix(in srgb, var(--surface-solid) 70%, transparent);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.contract-card:hover {
  border-color: color-mix(in srgb, var(--lime-deep) 45%, var(--line));
  background: var(--surface-solid);
  transform: translateY(-1px);
}

.contract-icon {
  display: grid;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 11px;
  background: var(--surface-muted);
}

.contract-icon svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.contract-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.contract-copy small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contract-copy strong {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.copy-state {
  margin-left: auto;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  text-transform: lowercase;
}

.contract-card.is-copied .copy-state {
  color: var(--lime-deep);
}

.micro-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin: 23px 0 0 4px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.micro-facts span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.micro-facts b {
  color: var(--lime-deep);
  font-size: 8px;
}

.mascot-stage {
  --mx: 0px;
  --my: 0px;
  position: relative;
  min-width: 0;
  min-height: min(69vh, 680px);
  border: 1px solid color-mix(in srgb, var(--lime-deep) 38%, var(--line));
  border-radius: clamp(30px, 3.2vw, 48px);
  background:
    radial-gradient(circle at 64% 30%, rgba(255, 255, 255, 0.94), transparent 36%),
    linear-gradient(145deg, var(--lime-soft) 0%, var(--stage) 38%, var(--surface-solid) 100%);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  isolation: isolate;
  overflow: hidden;
  transform-style: preserve-3d;
}

html[data-theme="dark"] .mascot-stage {
  background:
    radial-gradient(circle at 64% 30%, rgba(126, 175, 116, 0.18), transparent 36%),
    linear-gradient(145deg, var(--lime-soft) 0%, var(--stage) 42%, var(--surface-solid) 100%);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.stage-glow {
  position: absolute;
  width: 76%;
  aspect-ratio: 1;
  top: 3%;
  left: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(213, 255, 125, 0.64), rgba(255, 255, 255, 0) 67%);
  filter: blur(8px);
}

.stage-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: linear-gradient(to bottom, transparent 2%, #000 32%, transparent 94%);
}

.orbit {
  position: absolute;
  z-index: -1;
  top: 48%;
  left: 51%;
  border: 1px solid color-mix(in srgb, var(--sage) 34%, transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-13deg);
}

.orbit::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  top: 11%;
  left: 14%;
  border-radius: 50%;
  background: var(--lime-deep);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--lime) 22%, transparent);
}

.orbit-one {
  width: 72%;
  aspect-ratio: 1;
}

.orbit-two {
  width: 92%;
  aspect-ratio: 1;
  opacity: 0.62;
  transform: translate(-50%, -50%) rotate(22deg);
}

.orbit-two::after {
  top: auto;
  right: 9%;
  bottom: 17%;
  left: auto;
  width: 5px;
  height: 5px;
}

.stage-label {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.stage-label-top {
  top: 27px;
  left: 30px;
}

.label-number {
  padding: 5px 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface-solid) 62%, transparent);
}

.mascot-wrap {
  position: absolute;
  z-index: 2;
  width: min(83%, 610px);
  aspect-ratio: 1;
  top: 47%;
  left: 52%;
  transform: translate(calc(-50% + var(--mx)), calc(-50% + var(--my)));
  transition: transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mascot {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 28px 24px rgba(35, 65, 32, 0.22));
  animation: frog-float 5.8s ease-in-out infinite;
  user-select: none;
}

.mascot-shadow {
  position: absolute;
  z-index: 1;
  width: 50%;
  height: 7%;
  bottom: 5%;
  left: 26%;
  border-radius: 50%;
  background: rgba(59, 77, 54, 0.24);
  filter: blur(16px);
  animation: shadow-breathe 5.8s ease-in-out infinite;
}

.speech-card {
  position: absolute;
  z-index: 5;
  top: 15%;
  right: clamp(16px, 3vw, 40px);
  display: flex;
  min-width: 165px;
  gap: 10px;
  padding: 14px 17px 14px 14px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 16px 38px rgba(48, 67, 40, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px) saturate(130%);
  color: #172015;
  transform: translate(calc(var(--mx) * -0.25), calc(var(--my) * -0.25)) rotate(2deg);
}

html[data-theme="dark"] .speech-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(27, 34, 24, 0.68);
  color: var(--ink);
}

.speech-mark {
  color: var(--lime-deep);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 38px;
  line-height: 0.8;
}

.speech-card p {
  margin: 0;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.speech-card em {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 18px;
  font-weight: 400;
}

.chain-chip {
  position: absolute;
  z-index: 5;
  right: clamp(16px, 3vw, 36px);
  bottom: 27px;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 204px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: color-mix(in srgb, var(--surface-solid) 77%, transparent);
  box-shadow: 0 14px 35px rgba(34, 46, 29, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  transform: translate(calc(var(--mx) * -0.18), calc(var(--my) * -0.18));
}

.chain-orb {
  flex: 0 0 auto;
  width: 35px;
  height: 35px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, #fff 0 10%, transparent 11%),
    linear-gradient(145deg, #efffd0, #a8e719);
  box-shadow: inset -5px -7px 12px rgba(89, 124, 17, 0.18), 0 5px 12px rgba(68, 90, 25, 0.1);
}

.chain-chip > span:nth-child(2) {
  display: grid;
  gap: 2px;
}

.chain-chip small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chain-chip b {
  font-size: 11px;
  font-weight: 650;
}

.chip-arrow {
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
}

.stage-corner {
  position: absolute;
  z-index: 4;
  bottom: 31px;
  left: 29px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-footer {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-footer a {
  color: inherit;
  transition: color 180ms ease;
}

.hero-footer a:hover {
  color: var(--ink);
}

.footer-line {
  width: 38px;
  height: 1px;
  background: var(--line-strong);
}

.footer-mark {
  margin-left: auto;
  color: var(--lime-deep);
  font-size: 13px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--bg);
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
}

.skip-link:focus {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--lime-deep);
  outline-offset: 3px;
}

.pointer-glow {
  position: fixed;
  z-index: -1;
  width: 420px;
  height: 420px;
  top: var(--pointer-y);
  left: var(--pointer-x);
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--lime) 13%, transparent), transparent 68%);
  filter: blur(9px);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 250ms ease;
}

.scroll-progress {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--lime-deep);
  box-shadow: 0 0 14px color-mix(in srgb, var(--lime) 65%, transparent);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
}

.stage-bubble {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.95), rgba(200, 255, 61, 0.1) 38%, rgba(132, 177, 112, 0.12));
  box-shadow: inset -8px -10px 18px rgba(54, 87, 44, 0.08), 0 10px 25px rgba(47, 67, 41, 0.08);
  backdrop-filter: blur(2px);
}

.bubble-one {
  width: 43px;
  height: 43px;
  top: 31%;
  left: 8%;
  animation: bubble-drift 7s ease-in-out infinite;
}

.bubble-two {
  width: 24px;
  height: 24px;
  right: 12%;
  bottom: 25%;
  animation: bubble-drift 5.5s ease-in-out 1.2s infinite reverse;
}

.ticker {
  position: relative;
  width: 100%;
  margin-top: clamp(32px, 5vw, 74px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.ticker::before,
.ticker::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 90px;
  pointer-events: none;
}

.ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.ticker::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg), transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  color: var(--soft-ink);
  animation: ticker-move 28s linear infinite;
}

.ticker-track span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-track i {
  color: var(--lime-deep);
  font-size: 10px;
  font-style: normal;
}

.campaign {
  padding-top: clamp(76px, 8vw, 124px);
}

.campaign-panel {
  position: relative;
  height: clamp(600px, 61vw, 820px);
  margin: 0;
  border: 1px solid rgba(200, 255, 61, 0.22);
  border-radius: clamp(30px, 4vw, 54px);
  background: #06100a;
  box-shadow:
    0 44px 100px rgba(10, 24, 13, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  color: #f7faef;
  isolation: isolate;
  overflow: hidden;
}

.campaign-panel::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  pointer-events: none;
}

.campaign-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(0.94) contrast(1.03);
  transform: scale(1.012);
  transition: filter 900ms ease, transform 1400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.campaign-panel:hover .campaign-image {
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.035);
}

.campaign-scrim {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 8, 5, 0.42), transparent 27%),
    linear-gradient(0deg, rgba(2, 7, 4, 0.88), transparent 58%),
    linear-gradient(90deg, rgba(2, 7, 4, 0.2), transparent 48%);
  pointer-events: none;
}

.campaign-meta {
  position: absolute;
  z-index: 3;
  top: clamp(25px, 3vw, 42px);
  left: clamp(26px, 3.4vw, 50px);
  right: clamp(26px, 3.4vw, 50px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(247, 250, 239, 0.6);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.campaign-meta span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.campaign-meta span:first-child::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 18px rgba(200, 255, 61, 0.7);
}

.campaign-copy {
  position: absolute;
  z-index: 3;
  left: clamp(26px, 4.8vw, 72px);
  bottom: clamp(38px, 5vw, 74px);
}

.campaign-copy > span {
  display: block;
  margin-bottom: 20px;
  color: var(--lime);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.campaign-copy h2 {
  margin: 0;
  font-size: clamp(55px, 7.6vw, 108px);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.84;
  text-shadow: 0 14px 42px rgba(0, 0, 0, 0.34);
}

.campaign-copy h2 em {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
}

.campaign-view {
  position: absolute;
  z-index: 4;
  right: clamp(26px, 3.4vw, 50px);
  bottom: clamp(38px, 4vw, 58px);
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 14px;
  padding: 0 19px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(8, 17, 10, 0.48);
  color: #f7faef;
  font-size: 11px;
  font-weight: 650;
  backdrop-filter: blur(14px);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.campaign-view:hover {
  border-color: rgba(200, 255, 61, 0.55);
  background: var(--lime);
  color: #10140e;
}

.campaign-coordinate {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: 20px;
  color: rgba(247, 250, 239, 0.36);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
}

.section-space {
  padding: clamp(96px, 10vw, 156px) 0 0;
  scroll-margin-top: 94px;
}

.section-heading {
  margin: 0 auto clamp(40px, 5vw, 72px);
  padding: 0 clamp(0px, 2vw, 26px);
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-kicker span:first-child {
  display: grid;
  width: 32px;
  height: 24px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--lime-deep);
}

.section-heading-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: clamp(34px, 8vw, 130px);
  align-items: end;
}

.section-heading h2,
.pond-copy h2 {
  margin: 0;
  font-size: clamp(58px, 7.8vw, 112px);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.83;
}

.section-heading h2 em,
.pond-copy h2 em {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
}

.section-heading-grid > p {
  max-width: 430px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.identity-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.16fr) minmax(0, 0.92fr);
  gap: 14px;
}

.identity-card {
  position: relative;
  min-width: 0;
  min-height: clamp(470px, 42vw, 590px);
  border: 1px solid var(--line);
  border-radius: clamp(25px, 2.5vw, 36px);
  overflow: hidden;
}

.card-index {
  position: absolute;
  z-index: 5;
  top: 23px;
  left: 24px;
  color: currentColor;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.6;
}

.origin-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 3vw, 38px);
  background:
    radial-gradient(circle at 70% 25%, rgba(200, 255, 61, 0.18), transparent 34%),
    #11130f;
  color: #f6f8f1;
}

.origin-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

.origin-orb {
  position: absolute;
  top: 15%;
  left: 50%;
  display: grid;
  width: min(57%, 220px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.24), rgba(200, 255, 61, 0.09) 48%, rgba(0, 0, 0, 0.08));
  box-shadow: inset -15px -18px 28px rgba(0, 0, 0, 0.28), 0 22px 55px rgba(0, 0, 0, 0.25);
  transform: translateX(-50%);
}

.origin-orb::before,
.origin-orb::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(200, 255, 61, 0.22);
  border-radius: 50%;
}

.origin-orb::before { inset: -22px; }
.origin-orb::after { inset: -46px; opacity: 0.45; }

.origin-orb img {
  width: 62%;
  height: 62%;
  object-fit: contain;
  filter: brightness(1.12) drop-shadow(0 10px 20px rgba(200, 255, 61, 0.14));
}

.origin-card > div:nth-of-type(2) {
  position: relative;
  z-index: 3;
}

.origin-card h3 {
  margin: 0 0 12px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(38px, 3.4vw, 54px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.origin-card p {
  max-width: 30ch;
  margin: 0;
  color: rgba(246, 248, 241, 0.58);
  font-size: 12px;
  line-height: 1.6;
}

.origin-card > a {
  position: relative;
  z-index: 3;
  display: inline-flex;
  width: fit-content;
  gap: 8px;
  margin-top: 24px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.portrait-card {
  background:
    radial-gradient(circle at 62% 25%, rgba(255, 255, 255, 0.94), transparent 37%),
    linear-gradient(145deg, var(--lime-soft), #f8ffeb 45%, #eef2e9);
}

html[data-theme="dark"] .portrait-card {
  background:
    radial-gradient(circle at 62% 25%, rgba(160, 209, 146, 0.22), transparent 37%),
    linear-gradient(145deg, #29351f, #171b14 48%, #11130f);
}

.portrait-card::before {
  content: "";
  position: absolute;
  width: 82%;
  aspect-ratio: 1;
  top: 48%;
  left: 50%;
  border: 1px solid color-mix(in srgb, var(--lime-deep) 25%, transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.portrait-card img {
  position: absolute;
  z-index: 2;
  width: 119%;
  max-width: none;
  top: 53%;
  left: 51%;
  filter: drop-shadow(0 28px 28px rgba(35, 65, 32, 0.2));
  transform: translate(-50%, -50%);
  transition: transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.portrait-card:hover img {
  transform: translate(-50%, -51.5%) scale(1.025);
}

.portrait-ring {
  position: absolute;
  z-index: 1;
  width: 112%;
  aspect-ratio: 1;
  top: 52%;
  left: 50%;
  border: 1px solid color-mix(in srgb, var(--sage) 23%, transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.portrait-caption {
  position: absolute;
  z-index: 4;
  right: 22px;
  bottom: 22px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: #293028;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.type-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 3vw, 38px);
  background: var(--surface-solid);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.type-card::before {
  content: "PONSI";
  position: absolute;
  top: 21%;
  left: 50%;
  color: var(--surface-muted);
  font-size: clamp(76px, 9vw, 130px);
  font-weight: 800;
  letter-spacing: -0.1em;
  line-height: 1;
  opacity: 0.45;
  transform: translateX(-50%) rotate(-90deg);
}

.type-card-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
}

.tiny-label {
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.type-card-copy img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 14px 18px rgba(49, 82, 42, 0.1));
}

.type-card-copy p {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(25px, 2.2vw, 36px);
  font-style: italic;
  letter-spacing: -0.03em;
}

.letter-chip {
  position: absolute;
  right: 23px;
  bottom: 23px;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--lime-deep) 38%, var(--line));
  border-radius: 18px;
  background: var(--lime);
  color: #11130f;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 24px;
  font-style: italic;
  box-shadow: 0 14px 30px color-mix(in srgb, var(--lime) 22%, transparent);
  transform: rotate(5deg);
}

.engine-panel {
  position: relative;
  padding: clamp(26px, 3.3vw, 48px);
  border: 1px solid rgba(94, 125, 21, 0.24);
  border-radius: clamp(30px, 4vw, 52px);
  background:
    radial-gradient(circle at 91% 4%, rgba(255, 255, 255, 0.78), transparent 31%),
    linear-gradient(145deg, #f1ffd5 0%, #dcff86 100%);
  box-shadow:
    0 34px 82px rgba(55, 76, 24, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
  color: #11150f;
  overflow: hidden;
}

.engine-panel::before {
  content: "PONSI / POND POLICY / 001";
  position: absolute;
  right: -38px;
  bottom: 82px;
  color: rgba(17, 21, 15, 0.22);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.19em;
  transform: rotate(90deg);
}

.engine-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: clamp(24px, 3vw, 38px);
  border-bottom: 1px solid rgba(17, 21, 15, 0.13);
  color: rgba(17, 21, 15, 0.58);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.engine-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #11150f;
}

.engine-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #11150f;
  box-shadow: 0 0 0 5px rgba(17, 21, 15, 0.1);
}

.engine-allocation {
  display: grid;
  grid-template-columns: minmax(200px, 0.74fr) minmax(390px, 1.48fr) minmax(140px, 0.48fr);
  gap: clamp(24px, 3.4vw, 52px);
  align-items: end;
  padding: clamp(36px, 4.4vw, 64px) 0;
}

.allocation-copy > span {
  display: block;
  margin-bottom: 10px;
  color: rgba(17, 21, 15, 0.5);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.allocation-copy > strong {
  display: block;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(43px, 4.4vw, 65px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.allocation-copy p {
  max-width: 310px;
  margin: 17px 0 0;
  color: rgba(17, 21, 15, 0.58);
  font-size: 12px;
  line-height: 1.6;
}

.allocation-meter {
  display: grid;
  min-height: 180px;
  grid-template-columns: 1fr 1fr;
  padding: 8px;
  border: 1px solid rgba(17, 21, 15, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.44);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.allocation-meter > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(20px, 2.3vw, 31px);
  border-radius: 23px;
}

.allocation-meter strong {
  font-size: clamp(43px, 5vw, 73px);
  font-weight: 650;
  letter-spacing: -0.075em;
  line-height: 0.8;
}

.allocation-meter span {
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.allocation-reserve {
  background: #11150f;
  color: #efffc9;
}

.allocation-lp {
  color: rgba(17, 21, 15, 0.72);
}

.allocation-note {
  padding-left: clamp(0px, 1vw, 14px);
}

.allocation-note strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(43px, 4.5vw, 68px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.allocation-note span {
  display: block;
  max-width: 150px;
  color: rgba(17, 21, 15, 0.55);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-transform: uppercase;
}

.engine-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(17, 21, 15, 0.13);
  border-bottom: 1px solid rgba(17, 21, 15, 0.13);
  list-style: none;
}

.engine-flow li {
  position: relative;
  min-height: 225px;
  padding: clamp(23px, 2.4vw, 34px);
}

.engine-flow li + li {
  border-left: 1px solid rgba(17, 21, 15, 0.13);
}

.flow-index {
  color: rgba(17, 21, 15, 0.45);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.flow-icon {
  position: absolute;
  top: 25px;
  right: 26px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(17, 21, 15, 0.15);
  border-radius: 50%;
  font-size: 16px;
}

.engine-flow h3 {
  margin: clamp(70px, 6vw, 88px) 0 13px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(28px, 2.5vw, 38px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.engine-flow p {
  max-width: 310px;
  margin: 0;
  color: rgba(17, 21, 15, 0.56);
  font-size: 11px;
  line-height: 1.6;
}

.engine-rails {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: clamp(24px, 3vw, 38px) 0;
}

.engine-rails span {
  padding: 12px 15px;
  border: 1px solid rgba(17, 21, 15, 0.13);
  border-radius: 999px;
  color: rgba(17, 21, 15, 0.68);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.engine-disclosure {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.engine-disclosure p {
  max-width: 790px;
  margin: 0;
  color: rgba(17, 21, 15, 0.58);
  font-size: 10px;
  line-height: 1.65;
}

.engine-disclosure p strong {
  color: #11150f;
}

.engine-contract {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border: 1px solid rgba(17, 21, 15, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  color: #11150f;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
}

.engine-contract:hover {
  border-color: rgba(17, 21, 15, 0.3);
  background: rgba(255, 255, 255, 0.54);
}

.engine-contract > span:first-child,
.engine-contract .copy-state {
  color: rgba(17, 21, 15, 0.55);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.engine-contract strong {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 650;
}

.engine-contract.is-copied .copy-state {
  color: #11150f;
}

.pond {
  padding-bottom: clamp(90px, 10vw, 150px);
}

.pond-panel {
  position: relative;
  display: grid;
  min-height: clamp(600px, 53vw, 730px);
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: clamp(32px, 4vw, 56px);
  background:
    radial-gradient(circle at 72% 42%, rgba(200, 255, 61, 0.19), transparent 35%),
    #10120f;
  color: #f5f8ef;
  box-shadow: 0 38px 90px rgba(15, 19, 13, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  isolation: isolate;
  overflow: hidden;
}

.pond-grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 70% 46%, #000, transparent 72%);
}

.pond-copy {
  position: relative;
  z-index: 4;
  padding: clamp(42px, 6vw, 86px);
}

.section-kicker-light {
  color: rgba(245, 248, 239, 0.55);
}

.section-kicker-light span:first-child {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: var(--lime);
}

.pond-copy h2 {
  font-size: clamp(55px, 6vw, 88px);
}

.pond-copy > p {
  max-width: 465px;
  margin: 30px 0 32px;
  color: rgba(245, 248, 239, 0.57);
  font-size: 14px;
  line-height: 1.7;
}

.pond-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pond-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  color: #f5f8ef;
}

.pond-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.pond-contract {
  display: flex;
  width: min(100%, 510px);
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.055);
  color: inherit;
  cursor: pointer;
  text-align: left;
  transition: background 180ms ease, border-color 180ms ease;
}

.pond-contract:hover {
  border-color: rgba(200, 255, 61, 0.4);
  background: rgba(255, 255, 255, 0.085);
}

.pond-contract > span:first-child {
  color: var(--lime);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.pond-contract strong {
  min-width: 0;
  overflow: hidden;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pond-contract .copy-state {
  margin-left: auto;
  color: rgba(245, 248, 239, 0.48);
}

.pond-contract.is-copied .copy-state {
  color: var(--lime);
}

.pond-art {
  position: relative;
  align-self: stretch;
  min-width: 0;
}

.pond-art img {
  position: absolute;
  z-index: 3;
  width: min(104%, 760px);
  max-width: none;
  right: -3%;
  bottom: -13%;
  filter: brightness(1.05) drop-shadow(0 36px 30px rgba(0, 0, 0, 0.3));
  transform: rotate(-2deg);
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pond-panel:hover .pond-art img {
  transform: translateY(-8px) rotate(-1deg);
}

.pond-halo {
  position: absolute;
  z-index: 1;
  width: 82%;
  aspect-ratio: 1;
  top: 49%;
  left: 50%;
  border: 1px solid rgba(200, 255, 61, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(200, 255, 61, 0.03), 0 0 0 120px rgba(200, 255, 61, 0.02);
  transform: translate(-50%, -50%);
}

.pond-stamp {
  position: absolute;
  z-index: 5;
  top: 16%;
  right: 9%;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 1px solid rgba(200, 255, 61, 0.45);
  border-radius: 50%;
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-align: center;
  transform: rotate(9deg);
}

.pond-stamp::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px dashed rgba(200, 255, 61, 0.32);
  border-radius: 50%;
}

.pond-bubble {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: radial-gradient(circle at 33% 28%, rgba(255, 255, 255, 0.34), rgba(200, 255, 61, 0.08) 45%, rgba(255, 255, 255, 0.015));
}

.pond-bubble-one {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 46%;
  animation: bubble-drift 8s ease-in-out infinite;
}

.pond-bubble-two {
  width: 34px;
  height: 34px;
  right: 5%;
  bottom: 12%;
  animation: bubble-drift 6s ease-in-out 1.5s infinite reverse;
}

.site-footer {
  padding: 42px clamp(0px, 2vw, 26px) 10px;
  border-top: 1px solid var(--line);
}

.footer-brand-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 34px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 700;
  letter-spacing: -0.065em;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.footer-brand-row > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 22px;
  font-style: italic;
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto auto;
  gap: 32px;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
  line-height: 1.55;
}

.footer-bottom nav {
  display: flex;
  gap: 20px;
}

.footer-bottom a {
  transition: color 180ms ease;
}

.footer-bottom a:hover {
  color: var(--ink);
}

.js .scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 850ms cubic-bezier(0.2, 0.75, 0.2, 1), transform 850ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.js .scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.identity-grid .scroll-reveal:nth-child(2) { transition-delay: 90ms; }
.identity-grid .scroll-reveal:nth-child(3) { transition-delay: 180ms; }

.toast {
  position: fixed;
  z-index: 50;
  right: 24px;
  bottom: 24px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  font-size: 12px;
  font-weight: 650;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal-in 700ms cubic-bezier(0.2, 0.75, 0.2, 1) forwards;
}

.reveal-1 { animation-delay: 80ms; }
.reveal-2 { animation-delay: 150ms; }
.reveal-3 { animation-delay: 230ms; }
.reveal-4 { animation-delay: 300ms; }
.reveal-5 { animation-delay: 370ms; }
.reveal-stage { animation-delay: 170ms; }

@keyframes reveal-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes frog-float {
  0%, 100% { transform: translateY(0) rotate(-0.6deg); }
  50% { transform: translateY(-13px) rotate(0.7deg); }
}

@keyframes shadow-breathe {
  0%, 100% { opacity: 0.78; transform: scaleX(1); }
  50% { opacity: 0.5; transform: scaleX(0.86); }
}

@keyframes ticker-move {
  to { transform: translateX(-50%); }
}

@keyframes bubble-drift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(9px, -15px, 0); }
}

@media (max-width: 1050px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-pill {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 0.93fr) minmax(420px, 1.07fr);
    gap: 34px;
  }

  .hero-intro {
    font-size: clamp(48px, 6vw, 68px);
  }

  .speech-card {
    top: 12%;
  }

  .identity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .identity-card {
    min-height: 520px;
  }

  .type-card {
    grid-column: 1 / -1;
    min-height: 360px;
  }

  .type-card::before {
    top: 50%;
    left: 78%;
    transform: translate(-50%, -50%);
  }

  .type-card-copy {
    max-width: 48%;
  }

  .engine-allocation {
    grid-template-columns: minmax(185px, 0.68fr) minmax(360px, 1.32fr);
  }

  .allocation-note {
    display: flex;
    grid-column: 1 / -1;
    align-items: center;
    gap: 16px;
    padding-left: 0;
  }

  .allocation-note strong {
    margin: 0;
  }

  .allocation-note span {
    max-width: 260px;
  }

  .pond-panel {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.82fr);
  }

  .pond-copy {
    padding: clamp(42px, 5vw, 62px);
  }
}

@media (max-width: 820px) {
  .site-shell {
    padding: 14px 16px 12px;
  }

  .nav {
    top: 10px;
  }

  .brand-tag,
  .nav-actions .icon-button:first-child {
    display: none;
  }

  .nav-buy {
    padding: 0 14px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
    padding-top: 62px;
  }

  .hero-copy {
    width: 100%;
    max-width: 680px;
    padding: 0 10px;
  }

  .hero-wordmark {
    width: min(100%, 540px);
  }

  .hero-description {
    max-width: 570px;
  }

  .mascot-stage {
    width: 100%;
    min-height: min(78vw, 650px);
  }

  .hero-footer {
    margin-top: 28px;
  }

  .section-space {
    padding-top: 110px;
  }

  .campaign {
    padding-top: 82px;
  }

  .campaign-panel {
    height: clamp(560px, 82vw, 680px);
  }

  .campaign-copy {
    max-width: 75%;
  }

  .campaign-copy h2 {
    font-size: clamp(54px, 10.4vw, 78px);
  }

  .campaign-view {
    right: 32px;
    bottom: 38px;
  }

  .section-heading-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading-grid > p {
    max-width: 590px;
  }

  .identity-card {
    min-height: 490px;
  }

  .type-card {
    min-height: 340px;
  }

  .engine-allocation {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .allocation-copy p {
    max-width: 520px;
  }

  .allocation-note {
    grid-column: auto;
  }

  .engine-disclosure {
    grid-template-columns: minmax(0, 1fr);
  }

  .engine-contract {
    justify-self: start;
  }

  .pond-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .pond-copy {
    padding: 58px 50px 12px;
  }

  .pond-copy > p {
    max-width: 560px;
  }

  .pond-art {
    min-height: 510px;
  }

  .pond-art img {
    width: min(86%, 620px);
    right: 2%;
    bottom: -18%;
  }

  .pond-halo {
    width: 66%;
  }

  .footer-bottom {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .footer-bottom > span {
    grid-column: 1 / -1;
  }
}

@media (max-width: 540px) {
  .site-shell {
    padding-inline: 12px;
  }

  .nav {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    top: 8px;
    min-height: 54px;
    padding: 6px;
    border-radius: 18px;
  }

  .nav-actions {
    gap: 6px;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
  }

  .brand-mark img {
    width: 33px;
    height: 33px;
  }

  .nav-buy {
    height: 39px;
    padding: 0 12px;
    font-size: 11px;
    white-space: nowrap;
  }

  .theme-toggle {
    width: 39px;
    height: 39px;
  }

  .hero {
    gap: 30px;
    padding-top: 48px;
  }

  .eyebrow {
    flex-wrap: wrap;
    margin-bottom: 30px;
  }

  .eyebrow-separator,
  .eyebrow > span:last-child {
    display: none;
  }

  .hero-intro {
    margin-left: 2px;
    font-size: clamp(44px, 15vw, 64px);
  }

  .hero-wordmark {
    margin: 9px 0 8px;
  }

  .hero-line,
  .hero-description,
  .hero-actions,
  .contract-card,
  .micro-facts {
    margin-left: 2px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    width: calc(100% - 2px);
  }

  .button {
    min-width: 0;
    padding-inline: 16px;
    font-size: 12px;
    white-space: nowrap;
  }

  .button-arrow {
    width: 22px;
    height: 22px;
  }

  .contract-card {
    width: calc(100% - 2px);
  }

  .micro-facts {
    gap: 12px;
  }

  .micro-facts span:last-child {
    display: none;
  }

  .mascot-stage {
    min-height: 490px;
    border-radius: 28px;
  }

  .mascot-wrap {
    width: 100%;
    top: 49%;
  }

  .speech-card {
    top: 70px;
    right: 14px;
    min-width: 145px;
    transform: rotate(2deg);
  }

  .chain-chip {
    right: 14px;
    bottom: 16px;
  }

  .stage-label-top {
    top: 20px;
    left: 20px;
  }

  .stage-corner {
    bottom: 23px;
    left: 18px;
  }

  .hero-footer {
    padding: 5px 4px 0;
    font-size: 8px;
  }

  .pointer-glow {
    display: none;
  }

  .ticker {
    margin-top: 48px;
  }

  .ticker-track {
    gap: 18px;
    padding: 17px 0;
  }

  .ticker-track span {
    font-size: 9px;
  }

  .section-space {
    padding-top: 94px;
  }

  .campaign {
    padding-top: 66px;
  }

  .campaign-panel {
    display: flex;
    height: auto;
    min-height: 0;
    flex-direction: column;
    border-radius: 28px;
  }

  .campaign-image {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    transform: none;
  }

  .campaign-panel:hover .campaign-image {
    filter: saturate(1.02) contrast(1.03);
    transform: none;
  }

  .campaign-scrim {
    height: 61%;
    bottom: auto;
    background:
      linear-gradient(180deg, rgba(3, 8, 5, 0.4), transparent 31%),
      linear-gradient(0deg, #06100a 0%, transparent 34%);
  }

  .campaign-meta {
    top: 19px;
    left: 19px;
    right: 19px;
    font-size: 7px;
  }

  .campaign-copy {
    position: relative;
    left: auto;
    bottom: auto;
    max-width: none;
    padding: 27px 23px 0;
  }

  .campaign-copy > span {
    margin-bottom: 16px;
    font-size: 8px;
  }

  .campaign-copy h2 {
    font-size: clamp(43px, 13.5vw, 58px);
    line-height: 0.88;
  }

  .campaign-view {
    position: relative;
    right: auto;
    bottom: auto;
    align-self: flex-start;
    margin: 28px 23px 24px;
  }

  .campaign-coordinate {
    display: none;
  }

  .section-heading {
    padding: 0 4px;
    margin-bottom: 32px;
  }

  .section-kicker {
    margin-bottom: 25px;
  }

  .section-heading h2,
  .pond-copy h2 {
    font-size: clamp(47px, 15vw, 66px);
    line-height: 0.87;
  }

  .section-heading-grid {
    gap: 22px;
  }

  .section-heading-grid > p {
    font-size: 13px;
  }

  .identity-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .identity-card,
  .type-card {
    grid-column: auto;
    min-height: 470px;
    border-radius: 27px;
  }

  .type-card {
    min-height: 380px;
  }

  .type-card::before {
    top: 17%;
    left: 50%;
    transform: translateX(-50%) rotate(-90deg);
  }

  .type-card-copy {
    max-width: none;
  }

  .portrait-card img {
    width: 126%;
  }

  .engine-panel {
    padding: 23px;
    border-radius: 29px;
  }

  .engine-panel::before {
    display: none;
  }

  .engine-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .engine-allocation {
    padding: 36px 0 42px;
  }

  .allocation-copy > strong {
    font-size: 48px;
  }

  .allocation-meter {
    min-height: 235px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    border-radius: 24px;
  }

  .allocation-meter > div {
    padding: 20px 15px;
    border-radius: 18px;
  }

  .allocation-meter strong {
    font-size: 43px;
  }

  .allocation-meter span {
    max-width: 105px;
    font-size: 7px;
    line-height: 1.45;
  }

  .allocation-note strong {
    font-size: 48px;
  }

  .engine-flow {
    grid-template-columns: minmax(0, 1fr);
  }

  .engine-flow li {
    min-height: 215px;
    padding: 25px 4px;
  }

  .engine-flow li + li,
  .engine-flow li:nth-child(3) {
    border-top: 1px solid rgba(17, 21, 15, 0.13);
    border-left: 0;
  }

  .flow-icon {
    right: 4px;
  }

  .engine-flow h3 {
    margin-top: 72px;
    font-size: 35px;
  }

  .engine-flow p {
    max-width: 285px;
  }

  .engine-rails {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .engine-rails span {
    padding-inline: 8px;
    font-size: 7px;
  }

  .engine-disclosure {
    gap: 20px;
  }

  .engine-contract {
    width: 100%;
    justify-content: space-between;
  }

  .pond {
    padding-bottom: 84px;
  }

  .pond-panel {
    min-height: 0;
    grid-template-rows: auto 400px;
    border-radius: 29px;
  }

  .pond-copy {
    padding: 42px 23px 28px;
  }

  .pond-copy > p {
    margin: 23px 0 26px;
    font-size: 13px;
  }

  .pond-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .pond-contract {
    margin-top: 18px;
  }

  .pond-contract strong {
    max-width: 175px;
  }

  .pond-art {
    min-height: 400px;
    overflow: hidden;
  }

  .pond-art img {
    width: 108%;
    right: -8%;
    bottom: -24%;
  }

  .pond-halo {
    width: 88%;
  }

  .pond-stamp {
    top: 7%;
    right: 6%;
    width: 72px;
    height: 72px;
    font-size: 8px;
  }

  .pond-bubble-one {
    left: 10%;
    top: 55%;
  }

  .site-footer {
    padding: 34px 4px 8px;
  }

  .footer-brand-row {
    display: grid;
    gap: 12px;
    padding-bottom: 28px;
  }

  .footer-brand-row > p {
    font-size: 18px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-bottom nav,
  .footer-bottom > span {
    grid-column: auto;
  }

  .footer-bottom nav {
    gap: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
