:root {
  --ink: #0a0d09;
  --ink-2: #10140f;
  --cream: #eee6d0;
  --paper: #d8d2bd;
  --frog: #9cad55;
  --frog-hi: #c8d57c;
  --frog-deep: #5e6d2d;
  --moss: #263219;
  --mud: #786541;
  --white: #f8f6ec;
  --line: rgba(238,230,208,.18);
  --shadow: 0 26px 70px rgba(0,0,0,.32);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 18% 9%, rgba(131,151,66,.22), transparent 22rem),
    radial-gradient(circle at 86% 38%, rgba(89,102,44,.18), transparent 24rem),
    var(--ink);
  font-family: "DM Mono", monospace;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
::selection { background: var(--frog-hi); color: var(--ink); }

.shell { width: min(1180px, calc(100% - 42px)); margin: 0 auto; }
.noise { position: fixed; inset: 0; pointer-events: none; opacity: .045; z-index: 50; 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='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E"); mix-blend-mode: soft-light; }
.pond-glow { position: fixed; width: 36vw; height: 36vw; border-radius: 50%; filter: blur(85px); opacity: .11; pointer-events: none; z-index: -1; animation: driftGlow 14s ease-in-out infinite alternate; }
.pond-glow--one { background: var(--frog); top: 10vh; left: -10vw; }
.pond-glow--two { background: #e5d7a6; bottom: -8vw; right: -14vw; animation-delay: -7s; }
@keyframes driftGlow { to { transform: translate3d(9vw, 7vh, 0) scale(1.14); } }

.flies { position: fixed; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.fly { position: absolute; width: 4px; height: 4px; border-radius: 50%; background: var(--frog-hi); box-shadow: 0 0 10px rgba(200,213,124,.65); opacity: .3; animation: flyMove var(--dur) linear infinite; }
@keyframes flyMove { 0% { transform: translate(0,0) scale(.7); } 25% { transform: translate(var(--dx1),var(--dy1)) scale(1); } 55% { transform: translate(var(--dx2),var(--dy2)) scale(.5); } 100% { transform: translate(var(--dx3),var(--dy3)) scale(.8); } }

.nav { height: 92px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); position: relative; z-index: 10; }
.brand { display: flex; align-items: center; gap: 10px; font-family: "League Spartan", sans-serif; font-weight: 900; letter-spacing: -.02em; }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--frog-hi); color: var(--ink); transform: rotate(-8deg); box-shadow: inset 0 0 0 5px rgba(10,13,9,.15); }
.brand-copy { font-size: 15px; line-height: .82; }
.nav-links { display: flex; gap: 26px; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.nav-links a { opacity: .7; transition: .2s ease; }
.nav-links a:hover { opacity: 1; color: var(--frog-hi); }
.tiny-ca { border: 1px solid var(--line); background: rgba(255,255,255,.025); color: var(--cream); padding: 12px 14px; border-radius: 999px; font-size: 10px; cursor: pointer; display: flex; gap: 8px; align-items: center; max-width: 220px; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--frog-hi); box-shadow: 0 0 12px var(--frog-hi); flex: 0 0 auto; }
#tinyCaText { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.hero { min-height: calc(100vh - 92px); display: grid; grid-template-columns: 1.02fr .98fr; gap: 70px; align-items: center; padding-top: 54px; padding-bottom: 72px; position: relative; }
.eyebrow, .section-kicker { text-transform: uppercase; font-size: 11px; letter-spacing: .16em; opacity: .7; display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 42px; height: 1px; background: var(--frog-hi); }
.hero h1 { margin: 18px 0 12px; font-family: "League Spartan", sans-serif; font-size: clamp(76px, 9vw, 142px); line-height: .72; letter-spacing: -.072em; text-transform: uppercase; }
.serif-ish { display: block; font-weight: 600; color: var(--paper); }
.frog-word { display: block; color: var(--frog-hi); position: relative; text-shadow: 0 7px 0 rgba(34,42,22,.85); transform: scaleX(1.04); transform-origin: left; }
.frog-word::after { content: attr(data-text); position: absolute; left: 0; top: 0; color: transparent; -webkit-text-stroke: 1px rgba(239,231,209,.22); transform: translate(6px, 8px); z-index: -1; }
.lede { max-width: 650px; line-height: 1.75; color: rgba(238,230,208,.71); font-size: 14px; }
.cta-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 28px; }
.btn { min-height: 54px; display: flex; align-items: center; justify-content: space-between; border: 1px solid var(--line); padding: 0 18px; border-radius: 4px; font-family: "League Spartan", sans-serif; font-weight: 800; font-size: 15px; letter-spacing: .08em; background: rgba(255,255,255,.03); transition: .2s ease; box-shadow: inset 0 -10px 30px rgba(255,255,255,.012); }
.btn:hover { transform: translateY(-3px); border-color: var(--frog-hi); background: rgba(200,213,124,.08); }
.btn-pump { background: var(--frog-hi); color: var(--ink); border-color: var(--frog-hi); }
.btn-pump:hover { background: var(--cream); border-color: var(--cream); }
.contract-card { margin-top: 12px; display: flex; align-items: center; justify-content: space-between; border: 1px solid var(--line); border-radius: 4px; padding: 14px 14px 14px 16px; background: #0f130d; }
.contract-card small { display: block; font-size: 8px; letter-spacing: .18em; opacity: .45; margin-bottom: 5px; }
.contract-card code { display: block; max-width: 380px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 11px; color: var(--frog-hi); }
.contract-card button { border: 0; background: var(--cream); color: var(--ink); font-family: "League Spartan", sans-serif; font-weight: 900; padding: 11px 14px; cursor: pointer; border-radius: 3px; min-width: 78px; }
.microstats { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); margin-top: 24px; padding-top: 20px; gap: 16px; }
.microstats div { display: flex; flex-direction: column; gap: 4px; }
.microstats strong { font-family: "League Spartan", sans-serif; font-size: 24px; color: var(--frog-hi); }
.microstats span { text-transform: uppercase; font-size: 8px; opacity: .45; letter-spacing: .12em; }

.hero-art { position: relative; min-width: 0; }
.portrait-frame { position: relative; aspect-ratio: .9; border: 1px solid rgba(238,230,208,.26); padding: 12px; background: #151910; box-shadow: var(--shadow); transform: rotate(1.3deg); }
.portrait-frame::before { content: ""; position: absolute; inset: -15px 17px 17px -15px; border: 1px solid rgba(200,213,124,.25); z-index: -1; }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; display: block; filter: saturate(.82) contrast(1.06) sepia(.04); }
.portrait-shade { position: absolute; inset: 12px; background: linear-gradient(180deg, transparent 44%, rgba(7,9,6,.7) 100%); pointer-events: none; }
.frame-stamp { position: absolute; z-index: 3; top: 26px; left: -24px; background: var(--cream); color: var(--ink); font-family: "League Spartan", sans-serif; font-weight: 900; font-size: 10px; padding: 8px 14px; letter-spacing: .15em; transform: rotate(-4deg); }
.corner { position: absolute; width: 34px; height: 34px; z-index: 4; }
.corner-a { top: 25px; right: 25px; border-top: 2px solid var(--frog-hi); border-right: 2px solid var(--frog-hi); }
.corner-b { bottom: 25px; left: 25px; border-bottom: 2px solid var(--frog-hi); border-left: 2px solid var(--frog-hi); }
.pond-badge { position: absolute; right: -32px; bottom: 28px; width: 112px; height: 112px; border-radius: 50%; display: grid; place-content: center; text-align: center; background: var(--frog-hi); color: var(--ink); border: 8px solid #10140f; transform: rotate(7deg); font-family: "League Spartan", sans-serif; box-shadow: 0 10px 35px rgba(0,0,0,.35); }
.pond-badge span { font-size: 9px; letter-spacing: .15em; line-height: 1.1; }
.pond-badge strong { font-size: 27px; line-height: .9; }
.float-note { position: absolute; z-index: 5; border: 1px solid rgba(238,230,208,.22); background: rgba(10,13,9,.89); backdrop-filter: blur(10px); padding: 11px 14px; font-size: 8px; line-height: 1.25; letter-spacing: .13em; text-transform: uppercase; box-shadow: 0 12px 34px rgba(0,0,0,.25); animation: bob 4s ease-in-out infinite; }
.float-note b { color: var(--frog-hi); font-size: 11px; }
.note-a { left: -44px; bottom: 72px; transform: rotate(-3deg); }
.note-b { right: -20px; top: 88px; transform: rotate(2deg); animation-delay: -2s; }
@keyframes bob { 50% { translate: 0 -8px; } }

.ticker { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; background: var(--frog-hi); color: var(--ink); transform: rotate(-.5deg) scale(1.01); }
.ticker-track { display: flex; width: max-content; animation: ticker 24s linear infinite; font-family: "League Spartan", sans-serif; font-size: 18px; font-weight: 900; letter-spacing: .08em; padding: 13px 0 11px; }
.ticker-track span { white-space: nowrap; padding-right: 8px; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding-top: 150px; padding-bottom: 150px; }
.about-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 90px; align-items: start; margin-top: 34px; }
.headline-stack { position: relative; }
.headline-stack h2, .roadmap-head h2, .chart-top h2, .final-inner h2 { font-family: "League Spartan", sans-serif; font-size: clamp(58px, 7vw, 106px); line-height: .82; letter-spacing: -.055em; margin: 0; }
.headline-stack h2 span, .chart-top h2 span { color: var(--frog-hi); }
.about-copy { padding-top: 8px; }
.about-copy p { color: rgba(238,230,208,.65); line-height: 1.8; }
.about-copy .big-copy { color: var(--cream); font-size: 21px; line-height: 1.45; font-family: "League Spartan", sans-serif; font-weight: 700; }
.quote-card { margin-top: 30px; border-left: 2px solid var(--frog-hi); padding: 4px 0 4px 24px; display: flex; gap: 12px; align-items: flex-start; }
.quote-card > span { color: var(--frog-hi); font-size: 46px; line-height: .85; font-family: Georgia, serif; }
.quote-card p { margin: 0; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.lily-orbit { width: 240px; height: 240px; position: absolute; right: 2%; bottom: -150px; border: 1px dashed rgba(200,213,124,.18); border-radius: 50%; animation: spin 22s linear infinite; }
.lily { position: absolute; width: 48px; height: 48px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, var(--frog-hi), var(--frog-deep)); clip-path: polygon(0 0, 100% 0, 100% 100%, 52% 52%, 0 100%); box-shadow: 0 0 0 1px rgba(255,255,255,.08); }
.lily-1 { top: -24px; left: 96px; }.lily-2 { right: -16px; bottom: 32px; transform: scale(.65) rotate(40deg); }.lily-3 { left: 2px; bottom: 16px; transform: scale(.8) rotate(-20deg); }
@keyframes spin { to { transform: rotate(360deg); } }

.manifesto { background: var(--cream); color: var(--ink); position: relative; overflow: hidden; }
.manifesto::before { content: "RIBBIT"; position: absolute; right: -2vw; top: -55px; font-family: "League Spartan", sans-serif; font-weight: 900; font-size: 17vw; letter-spacing: -.08em; color: rgba(10,13,9,.035); pointer-events: none; }
.manifesto-inner { position: relative; z-index: 1; }
.section-kicker.light { color: var(--ink); opacity: .5; }
.rule-grid { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 42px; border: 1px solid rgba(10,13,9,.14); }
.rule { min-height: 280px; padding: 28px 24px; border-right: 1px solid rgba(10,13,9,.14); display: flex; flex-direction: column; }
.rule:last-child { border-right: 0; }
.rule > span { font-size: 10px; opacity: .4; }
.rule h3 { font-family: "League Spartan", sans-serif; font-size: 30px; margin: auto 0 8px; }
.rule p { font-size: 11px; line-height: 1.7; opacity: .6; margin: 0; }

.roadmap-head { display: flex; justify-content: space-between; gap: 40px; align-items: end; margin-top: 34px; }
.roadmap-head p { max-width: 380px; color: rgba(238,230,208,.58); line-height: 1.7; font-size: 12px; }
.roadmap-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 48px; }
.phase { border: 1px solid var(--line); min-height: 320px; padding: 24px; display: flex; flex-direction: column; position: relative; overflow: hidden; background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.008)); transition: .25s ease; }
.phase::after { content: ""; position: absolute; width: 110px; height: 110px; right: -45px; top: -45px; border-radius: 50%; border: 1px solid rgba(200,213,124,.18); box-shadow: 0 0 0 18px rgba(200,213,124,.025), 0 0 0 36px rgba(200,213,124,.015); }
.phase:hover { transform: translateY(-8px); border-color: rgba(200,213,124,.62); }
.phase-num { font-size: 9px; opacity: .45; letter-spacing: .13em; }
.phase h3 { font-family: "League Spartan", sans-serif; font-size: 42px; color: var(--frog-hi); margin: 44px 0 12px; }
.phase p { font-size: 11px; color: rgba(238,230,208,.58); line-height: 1.7; min-height: 82px; }
.phase span { font-size: 8px; letter-spacing: .08em; margin-top: 8px; opacity: .72; }

.chart-top { display: flex; justify-content: space-between; gap: 40px; align-items: end; }
.chart-top .section-kicker { margin-bottom: 26px; }
.chart-top p { max-width: 380px; color: rgba(238,230,208,.55); line-height: 1.7; font-size: 11px; }
.chart-top code { color: var(--frog-hi); }
.chart-shell { margin-top: 46px; height: 610px; border: 1px solid var(--line); background: #070907; position: relative; box-shadow: var(--shadow); }
.chart-shell::before { content: ""; position: absolute; inset: 9px; border: 1px solid rgba(200,213,124,.1); pointer-events: none; z-index: 4; }
#dexFrame { width: 100%; height: 100%; border: 0; display: none; background: #070907; }
.chart-placeholder { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; gap: 8px; overflow: hidden; }
.chart-placeholder strong { font-family: "League Spartan", sans-serif; font-size: 24px; letter-spacing: .05em; z-index: 2; }
.chart-placeholder span { font-size: 10px; opacity: .45; z-index: 2; }
.radar { position: absolute; width: 390px; height: 390px; left: 50%; top: 50%; transform: translate(-50%,-50%); border-radius: 50%; border: 1px solid rgba(200,213,124,.12); background: repeating-radial-gradient(circle, transparent 0 48px, rgba(200,213,124,.08) 49px 50px), conic-gradient(from 10deg, rgba(200,213,124,.18), transparent 18%, transparent 100%); animation: radar 4s linear infinite; }
.radar::before, .radar::after { content: ""; position: absolute; background: rgba(200,213,124,.08); }
.radar::before { width: 1px; height: 100%; left: 50%; }.radar::after { height: 1px; width: 100%; top: 50%; }
@keyframes radar { to { transform: translate(-50%,-50%) rotate(360deg); } }

.final-cta { padding: 90px 0 0; background: var(--frog-hi); color: var(--ink); overflow: hidden; }
.final-inner { display: flex; justify-content: space-between; align-items: end; gap: 40px; padding-bottom: 80px; }
.final-inner small { display: block; font-size: 10px; letter-spacing: .18em; margin-bottom: 14px; opacity: .55; }
.big-hop { min-width: 260px; height: 90px; padding: 0 24px; background: var(--ink); color: var(--cream); display: flex; align-items: center; justify-content: space-between; font-family: "League Spartan", sans-serif; font-weight: 900; font-size: 19px; transform: rotate(-2deg); transition: .2s ease; }
.big-hop:hover { transform: rotate(0) scale(1.025); }
.big-hop span { font-size: 30px; }
.frog-marquee { font-family: "League Spartan", sans-serif; font-size: clamp(80px, 14vw, 220px); line-height: .58; font-weight: 900; letter-spacing: -.07em; white-space: nowrap; opacity: .09; transform: translateY(18px); }

.footer { min-height: 140px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer p { font-size: 9px; opacity: .45; text-align: center; }
.footer > a { font-size: 9px; letter-spacing: .1em; opacity: .65; }
.footer-brand { transform: scale(.86); transform-origin: left; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .85s cubic-bezier(.2,.7,.2,1), transform .85s cubic-bezier(.2,.7,.2,1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .12s; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; gap: 46px; padding-top: 72px; }
  .hero-art { max-width: 650px; margin: 0 auto; width: 100%; }
  .about-grid { grid-template-columns: 1fr; gap: 34px; }
  .lily-orbit { display: none; }
  .rule-grid { grid-template-columns: repeat(2,1fr); }
  .rule:nth-child(2) { border-right: 0; }
  .rule:nth-child(-n+2) { border-bottom: 1px solid rgba(10,13,9,.14); }
  .roadmap-grid { grid-template-columns: repeat(2,1fr); }
  .chart-shell { height: 520px; }
}

@media (max-width: 680px) {
  .shell { width: min(100% - 26px, 1180px); }
  .nav { height: 78px; }
  .nav-links { display: none; }
  .tiny-ca { max-width: 140px; }
  .hero { min-height: auto; padding: 54px 0 64px; }
  .hero h1 { font-size: clamp(70px, 24vw, 112px); }
  .lede { font-size: 12px; }
  .cta-row { gap: 7px; }
  .btn { padding: 0 12px; font-size: 13px; min-height: 50px; }
  .contract-card { align-items: stretch; gap: 10px; }
  .contract-card > div { min-width: 0; }
  .contract-card code { max-width: 195px; }
  .portrait-frame { transform: none; }
  .pond-badge { right: -8px; bottom: -20px; width: 96px; height: 96px; }
  .note-a { left: -6px; bottom: 46px; }
  .note-b { right: -2px; top: 66px; }
  .section { padding-top: 100px; padding-bottom: 100px; }
  .rule-grid, .roadmap-grid { grid-template-columns: 1fr; }
  .rule { border-right: 0; border-bottom: 1px solid rgba(10,13,9,.14); min-height: 220px; }
  .rule:last-child { border-bottom: 0; }
  .roadmap-head, .chart-top, .final-inner { flex-direction: column; align-items: flex-start; }
  .chart-shell { height: 500px; }
  .big-hop { width: 100%; min-width: 0; }
  .footer { padding: 32px 0; flex-direction: column; text-align: center; }
  .footer-brand { transform-origin: center; }
}

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