:root {
  --forest: #073f2a;
  --forest-2: #0b5238;
  --ink: #153c2d;
  --cream: #fff8e9;
  --paper: #fffdf6;
  --mint: #bcefd2;
  --lime: #c6f25d;
  --pink: #ff9fb0;
  --yellow: #ffd76a;
  --line: rgba(7, 63, 42, .16);
  --shadow: 0 18px 60px rgba(7, 63, 42, .15);
  --display: "Arial Rounded MT Bold", "Trebuchet MS", "Avenir Next Rounded", sans-serif;
  --body: "Avenir Next", Avenir, "Trebuchet MS", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; width: 100%; }
::selection { background: var(--pink); color: var(--forest); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: .24;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(255,255,255,.16) 0 1px, transparent 1.4px),
    radial-gradient(circle at 72% 68%, rgba(7,63,42,.12) 0 1px, transparent 1.4px);
  background-size: 13px 13px, 17px 17px;
}

.site-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 30;
  width: min(1280px, calc(100% - 48px));
  height: 86px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--cream);
  border-bottom: 1px solid rgba(255, 248, 233, .22);
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--display); font-weight: 900; letter-spacing: -.03em; width: fit-content; }
.brand img { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--cream); object-fit: cover; }
.site-nav { display: flex; align-items: center; gap: 28px; font-size: .86rem; font-weight: 700; }
.site-nav a { position: relative; padding: 8px 0; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--pink); transition: right .25s ease; }
.site-nav a:hover::after { right: 0; }
.header-buy { justify-self: end; }
.menu-toggle { display: none; }

.button {
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--forest);
  background: var(--cream);
  font-weight: 800;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.button:hover { transform: translateY(-3px) rotate(-1deg); box-shadow: 0 10px 0 rgba(0, 0, 0, .12); }
.button-small { min-height: 42px; padding: 0 18px; font-size: .82rem; border: 0; background: var(--lime); }
.button-pink { background: var(--pink); border-color: var(--pink); }
.button-lime { background: var(--lime); border-color: var(--lime); }
.button-dark { background: var(--forest); color: var(--cream); }
.button-ghost { background: transparent; color: var(--cream); border-color: rgba(255,255,255,.48); }

section { position: relative; }
.section-dark { background: var(--forest); color: var(--cream); }
.section-cream { background: var(--cream); }
.section-mint { background: var(--mint); }
.section-pink { background: var(--pink); }

.hero {
  min-height: 820px;
  padding: 150px max(24px, calc((100vw - 1280px)/2)) 104px;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: clamp(44px, 6vw, 96px);
  align-items: center;
  overflow: hidden;
}
.hero::before { content: ""; position: absolute; width: 430px; height: 430px; border: 1px solid rgba(188, 239, 210, .18); border-radius: 50%; left: -180px; top: 100px; box-shadow: 0 0 0 75px rgba(188, 239, 210, .035), 0 0 0 150px rgba(188, 239, 210, .025); }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 6px rgba(198, 242, 93, .15); animation: pulse 2s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 11px rgba(198, 242, 93, 0); } }
h1, h2, h3 { font-family: var(--display); margin: 0; letter-spacing: -.06em; line-height: .96; }
h1 { margin: 28px 0 26px; font-size: clamp(3.45rem, 7.5vw, 6.8rem); color: var(--cream); }
.pink-dot, em { color: var(--pink); font-style: normal; }
.hero-intro { max-width: 560px; margin: 0 0 34px; color: rgba(255, 248, 233, .78); font-size: clamp(1rem, 1.5vw, 1.18rem); line-height: 1.7; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.contract-pill { margin-top: 22px; max-width: 100%; min-height: 48px; padding: 7px 14px 7px 7px; display: flex; align-items: center; gap: 10px; border: 1px solid rgba(255,255,255,.2); border-radius: 14px; color: rgba(255,255,255,.84); background: rgba(255,255,255,.07); cursor: pointer; transition: background .2s ease; }
.contract-pill:hover { background: rgba(255,255,255,.13); }
.contract-label { padding: 8px 10px; border-radius: 9px; color: var(--forest); background: var(--lime); font-size: .7rem; font-weight: 900; }
.contract-address { max-width: 190px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .78rem; }
.copy-icon { font-size: 1.1rem; }

.hero-visual { min-width: 0; }
.image-card { position: relative; border: 1px solid rgba(7,63,42,.16); border-radius: 32px; overflow: hidden; box-shadow: var(--shadow); }
.image-card img { height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.65,.25,1); }
.image-card:hover img { transform: scale(1.025); }
.hero-image-card { height: min(570px, 64vw); border-color: rgba(255,255,255,.15); transform: rotate(1.25deg); box-shadow: 22px 22px 0 rgba(188, 239, 210, .13); }
.image-sticker { position: absolute; z-index: 2; padding: 10px 14px; border: 2px solid var(--forest); border-radius: 10px; color: var(--forest); background: var(--yellow); font-family: var(--display); font-size: .72rem; font-weight: 900; letter-spacing: .04em; box-shadow: 4px 4px 0 var(--forest); }
.sticker-top { top: 20px; right: 18px; transform: rotate(4deg); }
.sticker-bottom { left: 20px; bottom: 20px; transform: rotate(-3deg); }
.ticker { position: absolute; left: 0; right: 0; bottom: 0; height: 54px; overflow: hidden; color: var(--forest); background: var(--lime); border-top: 1px solid var(--forest); border-bottom: 1px solid var(--forest); }
.ticker-track { width: max-content; height: 100%; display: flex; align-items: center; gap: 24px; font-family: var(--display); font-size: .78rem; font-weight: 900; letter-spacing: .08em; animation: ticker 26s linear infinite; }
.ticker-track i { color: var(--pink); font-size: 1.1rem; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section-grid, .token-layout, .guide-head, .steps, .section-heading {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}
.section-grid { min-height: 740px; padding: 104px 0; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(58px, 8vw, 118px); }
.section-grid.image-left .image-card { order: -1; }
.section-grid .image-card { height: 540px; }
.section-copy { max-width: 520px; }
.section-number { margin-bottom: 24px; font-size: .72rem; font-weight: 900; letter-spacing: .16em; color: var(--forest-2); }
h2 { font-size: clamp(2.55rem, 5vw, 4.8rem); }
.section-copy p, .guide-head p { margin: 28px 0; font-size: 1.05rem; line-height: 1.75; color: rgba(21,60,45,.76); }
.mini-facts { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.mini-facts div { padding: 24px 10px 0 0; }
.mini-facts strong { display: block; font-family: var(--display); font-size: 2rem; color: var(--forest); }
.mini-facts span { display: block; margin-top: 6px; font-size: .72rem; line-height: 1.4; color: rgba(21,60,45,.62); }
.image-note { position: absolute; left: 22px; bottom: 22px; padding: 11px 15px; border-radius: 999px; background: var(--cream); font-size: .72rem; font-weight: 800; }
.vertical-label { position: absolute; top: 18px; right: 18px; writing-mode: vertical-rl; padding: 14px 10px; border-radius: 99px; background: var(--forest); color: var(--cream); font-size: .65rem; font-weight: 900; letter-spacing: .15em; }
.paw-list { padding: 0; margin: 34px 0 0; list-style: none; border-top: 1px solid var(--line); }
.paw-list li { padding: 17px 0; display: flex; gap: 13px; align-items: center; border-bottom: 1px solid var(--line); font-weight: 700; }
.paw-list span { color: var(--pink); }

.token { padding: 108px 0; }
.section-heading { margin-bottom: 50px; display: flex; justify-content: space-between; align-items: end; }
.section-heading h2 { max-width: 760px; }
.token-layout { display: grid; grid-template-columns: 1.08fr .92fr; align-items: stretch; gap: 22px; }
.token-art { min-height: 570px; }
.token-panel { min-width: 0; padding: clamp(26px, 4vw, 48px); border: 1px solid var(--forest); border-radius: 32px; background: var(--mint); box-shadow: 10px 10px 0 var(--forest); }
.token-row { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-bottom: 1px solid rgba(7,63,42,.18); }
.token-row span { color: rgba(21,60,45,.64); font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.token-row strong { font-family: var(--display); font-size: 1.2rem; }
.contract-row { align-items: flex-start; padding: 21px 0; flex-direction: column; gap: 10px; }
.text-copy { max-width: 100%; padding: 0; border: 0; background: none; color: var(--forest); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .85rem; font-weight: 700; cursor: pointer; word-break: break-all; text-align: left; }
.text-copy b { font-family: var(--body); font-size: 1rem; }
.token-actions { margin-top: 34px; display: flex; gap: 12px; }
.circle-link { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid var(--forest); border-radius: 50%; font-weight: 900; transition: transform .25s ease, background .25s ease; }
.circle-link:hover { transform: rotate(8deg) scale(1.05); background: var(--pink); }
.fine-print { margin: 28px 0 0; color: rgba(21,60,45,.58); font-size: .72rem; line-height: 1.55; }

.buy-guide { padding: 108px 0; border-top: 1px solid var(--forest); border-bottom: 1px solid var(--forest); }
.guide-head { display: grid; grid-template-columns: 1.25fr .75fr; gap: 60px; align-items: end; }
.guide-head p { margin-bottom: 0; max-width: 410px; }
.wide-art { width: min(1180px, calc(100% - 48px)); height: 530px; margin: 60px auto 0; box-shadow: 12px 12px 0 var(--forest); }
.steps { margin-top: 58px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; list-style: none; padding: 0; }
.steps li { min-height: 220px; padding: 26px; border: 1px solid var(--forest); border-radius: 24px; background: var(--cream); }
.steps b { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: var(--lime); font-size: .76rem; }
.steps h3 { margin-top: 28px; font-size: 1.45rem; letter-spacing: -.04em; }
.steps p { margin: 12px 0 0; color: rgba(21,60,45,.66); font-size: .88rem; line-height: 1.55; }

.community .section-grid { min-height: 800px; }
.community .button { margin-top: 8px; }
.final-cta { min-height: 720px; padding: 104px max(24px, calc((100vw - 1180px)/2)); display: grid; grid-template-columns: .78fr 1.22fr; gap: 74px; align-items: center; overflow: hidden; }
.final-cta::before { content: "LONG"; position: absolute; left: -24px; bottom: -55px; color: rgba(255,255,255,.035); font-family: var(--display); font-size: 18rem; line-height: .8; }
.cta-copy { position: relative; z-index: 2; }
.cta-copy h2 { font-size: clamp(3rem, 6vw, 5.5rem); }
.cta-copy p { max-width: 390px; margin: 28px 0 32px; color: rgba(255,248,233,.72); line-height: 1.7; }
.light-number { color: var(--mint); }
.cta-art { height: 520px; border-color: rgba(255,255,255,.2); box-shadow: 14px 14px 0 rgba(255,159,176,.22); }

footer { position: relative; padding: 48px max(24px, calc((100vw - 1180px)/2)) 32px; display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; background: var(--lime); border-top: 1px solid var(--forest); }
.footer-brand { display: inline-flex; align-items: center; gap: 12px; width: fit-content; font-family: var(--display); font-size: 1.15rem; font-weight: 900; }
.footer-brand img { width: 48px; height: 48px; object-fit: cover; border-radius: 50%; border: 2px solid var(--forest); }
footer p { margin: 0; color: rgba(21,60,45,.66); font-size: .85rem; justify-self: end; }
.footer-links { display: flex; gap: 24px; font-size: .8rem; font-weight: 800; }
.footer-links a:hover { text-decoration: underline; }
footer small { justify-self: end; font-size: .7rem; color: rgba(21,60,45,.58); }

.toast { position: fixed; left: 50%; bottom: 24px; z-index: 80; padding: 14px 20px; transform: translate(-50%, 120px); border: 1px solid var(--lime); border-radius: 999px; color: var(--cream); background: var(--forest); box-shadow: 0 12px 40px rgba(0,0,0,.22); font-size: .82rem; font-weight: 800; opacity: 0; transition: transform .35s ease, opacity .35s ease; }
.toast.show { transform: translate(-50%, 0); opacity: 1; }
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.65,.25,1); }
.reveal-late { transition-delay: .12s; }
.reveal-later { transition-delay: .22s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .site-header { width: calc(100% - 36px); grid-template-columns: 1fr auto; }
  .header-buy { display: none; }
  .menu-toggle { width: 44px; height: 44px; padding: 0; display: grid; place-content: center; gap: 7px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; color: var(--cream); background: transparent; cursor: pointer; }
  .menu-toggle span:not(.sr-only) { width: 18px; height: 2px; display: block; background: currentColor; transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 86px 18px auto; padding: 24px; display: grid; gap: 4px; border: 1px solid rgba(255,255,255,.2); border-radius: 22px; background: var(--forest); box-shadow: 0 22px 50px rgba(0,0,0,.3); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: .25s ease; }
  .site-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav a { padding: 14px; border-bottom: 1px solid rgba(255,255,255,.12); }
  .hero { min-height: auto; padding-top: 132px; grid-template-columns: 1fr; }
  .hero-copy { max-width: 700px; }
  .hero-visual { width: 100%; }
  .hero-image-card { height: 590px; }
  .section-grid { min-height: auto; grid-template-columns: 1fr; padding: 86px 0; gap: 46px; }
  .section-grid .section-copy { max-width: 740px; }
  .section-grid.image-left .image-card { order: 0; }
  .section-grid .image-card { height: min(680px, 82vw); }
  .token-layout { grid-template-columns: 1fr; }
  .token-art { min-height: 600px; }
  .guide-head { grid-template-columns: 1fr; gap: 8px; }
  .wide-art { height: 480px; }
  .final-cta { grid-template-columns: 1fr; gap: 48px; }
  .cta-copy { max-width: 680px; }
}

@media (max-width: 680px) {
  .site-header { height: 74px; }
  .brand img { width: 38px; height: 38px; }
  .site-nav { top: 74px; }
  .hero { padding: 120px 20px 88px; gap: 45px; }
  h1 { font-size: clamp(3rem, 15.5vw, 4.6rem); overflow-wrap: anywhere; }
  h2 { font-size: clamp(2.35rem, 12vw, 3.6rem); }
  .hero-actions .button { width: 100%; }
  .hero-image-card { height: 450px; border-radius: 24px; }
  .section-grid, .token-layout, .guide-head, .steps, .section-heading { width: calc(100% - 36px); }
  .section-grid { padding: 72px 0; gap: 34px; }
  .section-grid .image-card { height: 430px; border-radius: 24px; }
  .mini-facts { grid-template-columns: 1fr; }
  .mini-facts div { padding: 15px 0; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); }
  .mini-facts span { text-align: right; }
  .token { padding: 74px 0; }
  .section-heading { margin-bottom: 34px; }
  .token-art { min-height: 410px; }
  .token-panel { border-radius: 24px; box-shadow: 6px 6px 0 var(--forest); }
  .token-row { align-items: flex-start; flex-direction: column; justify-content: center; gap: 7px; padding: 14px 0; }
  .buy-guide { padding: 74px 0; }
  .wide-art { width: calc(100% - 36px); height: 360px; margin-top: 38px; border-radius: 24px; box-shadow: 6px 6px 0 var(--forest); }
  .steps { margin-top: 40px; grid-template-columns: 1fr; }
  .steps li { min-height: 190px; }
  .final-cta { min-height: 0; padding: 76px 18px; gap: 38px; }
  .cta-copy .button { width: 100%; }
  .cta-art { height: 400px; border-radius: 24px; }
  footer { grid-template-columns: 1fr; }
  footer p, footer small { justify-self: start; }
}

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