:root {
  --acid: #cdff00;
  --ink: #050608;
  --soft-ink: #0e1010;
  --cream: #f2efe4;
  --smoke: #a5a79d;
  --line: rgba(242, 239, 228, 0.18);
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--acid); color: var(--ink); }

#starfield { position: fixed; inset: 0; width: 100%; height: 100%; z-index: -3; }
.noise {
  position: fixed; inset: 0; z-index: 20; pointer-events: none; opacity: .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='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}
.cursor-glow {
  position: fixed; width: 420px; height: 420px; border-radius: 50%; z-index: -1;
  background: radial-gradient(circle, rgba(205,255,0,.08), transparent 66%);
  transform: translate(-50%, -50%); pointer-events: none; transition: opacity .25s;
}

.site-header {
  position: fixed; z-index: 15; top: 18px; left: 50%; transform: translateX(-50%);
  width: min(1220px, calc(100% - 36px)); height: 68px; padding: 0 12px 0 18px;
  display: flex; align-items: center; justify-content: space-between;
  border: 1px solid rgba(255,255,255,.14); background: rgba(6,7,8,.74);
  backdrop-filter: blur(18px); border-radius: 5px;
}
.brand { display: inline-flex; gap: 11px; align-items: center; font: 700 15px/1 var(--mono); letter-spacing: -.06em; }
.brand img { width: 34px; height: 34px; object-fit: cover; border-radius: 50%; filter: grayscale(1) contrast(1.15); }
.main-nav { display: flex; gap: 34px; }
.main-nav a { font: 600 10px/1 var(--mono); letter-spacing: .12em; color: #c7c7c0; transition: color .2s; }
.main-nav a:hover { color: var(--acid); }
.mini-buy { background: var(--acid); color: var(--ink); padding: 17px 20px; font: 800 11px/1 var(--mono); letter-spacing: .04em; transition: transform .2s, box-shadow .2s; }
.mini-buy:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(205,255,0,.2); }
.mini-buy span { margin-left: 14px; }
.menu-toggle { display: none; background: none; border: 0; color: white; width: 44px; height: 44px; padding: 13px; }
.menu-toggle span { display: block; height: 1px; background: currentColor; margin: 6px 0; transition: transform .25s; }

.hero { min-height: 100svh; max-width: 1400px; margin: 0 auto; padding: 145px clamp(24px,5vw,76px) 70px; display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; position: relative; isolation: isolate; }
.hero::before { content: ""; position: absolute; width: 60vw; height: 60vw; max-width: 860px; max-height: 860px; left: 47%; top: 49%; transform: translate(-50%,-50%); background: radial-gradient(circle, rgba(205,255,0,.09), transparent 65%); z-index: -2; }
.eyebrow, .section-label { font: 700 10px/1 var(--mono); letter-spacing: .16em; }
.eyebrow { color: var(--acid); margin-bottom: 26px; }
.live-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--acid); margin: 0 8px 1px 0; box-shadow: 0 0 14px var(--acid); animation: pulse 1.5s infinite; }
.hero h1 { margin: 0; text-transform: uppercase; font-family: var(--display); font-size: clamp(76px, 10.7vw, 174px); line-height: .72; letter-spacing: -.065em; transform: scaleX(.88); transform-origin: left center; }
.hero h1 span { display: block; white-space: nowrap; }
.hero h1 span:last-child { color: transparent; -webkit-text-stroke: 2px var(--cream); font-size: .79em; letter-spacing: -.045em; margin-top: .19em; }
.hero-sub { margin: 34px 0 26px; color: #aaaca4; font: 700 12px/1.55 var(--mono); letter-spacing: .16em; }
.hero-actions, .token-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.button { min-height: 52px; padding: 0 22px; border: 1px solid rgba(255,255,255,.22); display: inline-flex; justify-content: center; align-items: center; gap: 26px; background: transparent; color: var(--cream); cursor: pointer; font: 800 11px/1 var(--mono); letter-spacing: .06em; transition: transform .2s, background .2s, color .2s, border-color .2s; }
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--acid); color: var(--ink); border-color: var(--acid); }
.button-primary:hover { box-shadow: 0 10px 30px rgba(205,255,0,.18); }
.button-ghost:hover { border-color: var(--acid); color: var(--acid); }
.button-dark { background: var(--ink); color: var(--acid); border-color: var(--ink); }

.hero-visual { position: relative; width: min(42vw, 590px); justify-self: end; }
.image-frame { position: relative; aspect-ratio: 1/1.07; clip-path: polygon(10% 0, 100% 0, 100% 88%, 88% 100%, 0 100%, 0 10%); overflow: hidden; border: 1px solid rgba(205,255,0,.45); background: #151713; }
.image-frame::before { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(160deg, rgba(205,255,0,.12), transparent 35%, rgba(0,0,0,.15)); mix-blend-mode: color; pointer-events: none; }
.image-frame img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.68) contrast(1.08); transition: transform 1s cubic-bezier(.2,.7,0,1); }
.image-frame:hover img { transform: scale(1.035); }
.scanline { position: absolute; z-index: 3; top: -15%; left: 0; width: 100%; height: 12%; background: linear-gradient(transparent, rgba(205,255,0,.18), transparent); animation: scan 5s linear infinite; }
.planet-glow { position: absolute; z-index: -1; inset: -8%; border-radius: 50%; background: var(--acid); filter: blur(90px); opacity: .13; }
.status-chip { position: absolute; z-index: 4; background: rgba(5,6,8,.86); border: 1px solid rgba(205,255,0,.48); padding: 11px 14px; color: var(--acid); font: 700 9px/1 var(--mono); letter-spacing: .1em; backdrop-filter: blur(10px); }
.chip-top { top: 8%; right: -5%; }
.chip-bottom { left: -6%; bottom: 8%; color: #d5d6cf; }
.crosshair { position: absolute; right: -4%; bottom: -2%; color: var(--acid); font: 100 62px/1 var(--mono); opacity: .7; }
.hero-orbit { position: absolute; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; z-index: -1; pointer-events: none; }
.orbit-one { width: 58vw; height: 24vw; top: 46%; right: -18%; transform: rotate(-24deg); }
.orbit-two { width: 42vw; height: 42vw; max-width: 700px; max-height: 700px; right: -2%; top: 19%; border-color: rgba(205,255,0,.07); }
.scroll-cue { position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: #6f716c; font: 600 8px/1 var(--mono); letter-spacing: .13em; }
.scroll-cue i { display: block; width: 1px; height: 28px; background: linear-gradient(var(--acid), transparent); animation: scrollcue 1.8s infinite; }

.ticker { overflow: hidden; background: var(--acid); color: var(--ink); border-block: 1px solid var(--acid); transform: rotate(-1.2deg) scale(1.02); }
.ticker-track { display: flex; align-items: center; gap: 32px; width: max-content; padding: 17px 0; font: 900 19px/1 var(--mono); letter-spacing: -.04em; animation: ticker 24s linear infinite; }
.ticker-track b { font-size: 14px; }

.section-pad { padding: 130px max(24px, calc((100vw - 1220px)/2)); }
.section-label { display: flex; align-items: center; gap: 12px; color: #8c8f87; margin-bottom: 58px; }
.section-label span { color: var(--acid); }
.section-label::after { content: ""; width: 54px; height: 1px; background: #4b4d48; }
.signal { background: rgba(5,6,8,.73); }
.signal-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(50px,10vw,160px); }
.signal h2, .lore h2, .gallery h2, .final-cta h2 { margin: 0; font-family: var(--display); font-weight: 900; font-size: clamp(50px,7.4vw,108px); line-height: .85; letter-spacing: -.04em; }
.signal-wave { display: flex; gap: 5px; align-items: center; height: 50px; margin-top: 45px; }
.signal-wave i { display: block; width: 3px; height: 10px; background: var(--acid); animation: wave 1.5s ease-in-out infinite; }
.signal-wave i:nth-child(2n) { animation-delay: -.3s; }.signal-wave i:nth-child(3n) { animation-delay: -.7s; }
.signal-copy > p:first-child { margin: 0 0 24px; color: var(--acid); font-size: clamp(19px,2vw,30px); line-height: 1.25; font-weight: 700; }
.signal-copy .muted, .lore-copy p, .token-copy p { color: #999c94; font: 14px/1.8 var(--mono); }
.micro-stats { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 54px; padding-top: 26px; border-top: 1px solid var(--line); gap: 20px; }
.micro-stats span { display: block; color: var(--cream); font: 800 27px/1 var(--mono); }
.micro-stats small { display: block; margin-top: 10px; color: #6f716c; font: 700 8px/1 var(--mono); letter-spacing: .1em; }

.lore { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(60px,10vw,150px); background: #090a0b; }
.lore-image { position: relative; }
.lore-image::before { content: ""; position: absolute; inset: -16px 16px 16px -16px; border: 1px solid rgba(205,255,0,.23); z-index: 0; }
.lore-image img { position: relative; z-index: 1; width: 100%; aspect-ratio: 1.35; object-fit: cover; filter: saturate(.75) contrast(1.07); }
.image-code { position: absolute; z-index: 2; right: 12px; bottom: 10px; padding: 8px 10px; background: var(--ink); color: var(--acid); font: 700 8px/1 var(--mono); }
.lore .section-label { margin-bottom: 34px; }
.lore h2 em, .final-cta h2 em { color: var(--acid); font-style: normal; }
.lore-copy > p { max-width: 520px; }
.lore-copy > p:nth-of-type(2) { color: var(--cream); font-weight: 700; }
.text-link { display: inline-flex; gap: 28px; align-items: center; margin-top: 28px; padding-bottom: 7px; border-bottom: 1px solid var(--acid); color: var(--acid); font: 800 10px/1 var(--mono); letter-spacing: .08em; }
.text-link span { transition: transform .2s; }.text-link:hover span { transform: translateX(5px); }

.token-section { background: linear-gradient(180deg, rgba(5,6,8,.6), #0b0d0c); }
.token-panel { position: relative; display: grid; grid-template-columns: .65fr 1fr .8fr; gap: 48px; align-items: center; padding: clamp(28px,5vw,68px); border: 1px solid rgba(205,255,0,.35); background: radial-gradient(circle at 15% 50%, rgba(205,255,0,.08), transparent 32%), rgba(9,11,10,.88); overflow: hidden; }
.token-panel::after { content: "$FONE"; position: absolute; right: -4%; bottom: -18%; z-index: 0; color: rgba(255,255,255,.025); font: 900 190px/1 var(--display); pointer-events: none; }
.token-symbol { position: relative; z-index: 1; }
.token-symbol img { position: relative; z-index: 2; aspect-ratio: 1; object-fit: cover; border-radius: 50%; filter: grayscale(1) contrast(1.12); border: 7px solid var(--ink); }
.symbol-orbit { position: absolute; inset: -12%; border-radius: 50%; border: 1px solid rgba(205,255,0,.55); animation: spin 12s linear infinite; }
.symbol-orbit::after { content: ""; position: absolute; left: 50%; top: -4px; width: 8px; height: 8px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 15px var(--acid); }
.token-copy, .token-data, .contract-box, .token-actions { position: relative; z-index: 1; }
.token-kicker { color: var(--acid); font: 700 9px/1 var(--mono); letter-spacing: .1em; }
.token-copy h2 { margin: 6px 0 4px; font: 900 clamp(70px,9vw,126px)/.9 var(--display); letter-spacing: -.04em; }
.token-data { margin: 0; }
.token-data div { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--line); }
.token-data dt { color: #73766e; font: 700 9px/1 var(--mono); }
.token-data dd { margin: 0; color: var(--cream); font: 700 11px/1 var(--mono); }
.contract-box { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 16px 18px; border: 1px solid var(--line); background: rgba(0,0,0,.28); }
.contract-box small { display: block; color: #686b64; font: 700 8px/1 var(--mono); letter-spacing: .1em; margin-bottom: 7px; }
.contract-box code { color: var(--acid); font: 700 12px/1.3 var(--mono); word-break: break-all; }
.contract-box button { flex: 0 0 auto; border: 0; background: var(--acid); color: var(--ink); padding: 13px 17px; cursor: pointer; font: 800 9px/1 var(--mono); }
.token-actions { grid-column: 1 / -1; }

.gallery { background: #070808; }
.gallery-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 58px; }
.gallery-head .section-label { margin-bottom: 8px; align-self: flex-start; }
.gallery-head h2 { text-align: right; font-size: clamp(46px,6.4vw,88px); }
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.gallery-card { margin: 0; position: relative; overflow: hidden; border: 1px solid var(--line); background: #111; }
.gallery-card.card-wide { grid-column: 1 / -1; }
.gallery-card img { width: 100%; height: clamp(320px,41vw,590px); object-fit: cover; filter: saturate(.72) contrast(1.06); transition: transform .8s cubic-bezier(.16,1,.3,1), filter .5s; }
.gallery-card.card-wide img { height: clamp(250px,31vw,470px); }
.gallery-card:hover img { transform: scale(1.035); filter: saturate(1) contrast(1.03); }
.gallery-card figcaption { position: absolute; left: 12px; right: 12px; bottom: 12px; padding: 13px 15px; display: flex; justify-content: space-between; background: rgba(5,6,8,.8); backdrop-filter: blur(12px); font: 700 9px/1 var(--mono); }
.gallery-card figcaption span { color: #878a82; }.gallery-card figcaption b { color: var(--acid); }

.final-cta { position: relative; min-height: 680px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; background: var(--acid); color: var(--ink); }
.final-cta::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, transparent 0, transparent calc(10% - 1px), rgba(5,6,8,.06) 10%); }
.cta-content { position: relative; z-index: 2; }
.final-cta .eyebrow { color: var(--ink); }
.final-cta .live-dot { background: var(--ink); box-shadow: none; }
.final-cta h2 { font-size: clamp(65px,10vw,150px); line-height: .78; }
.final-cta h2 em { color: transparent; -webkit-text-stroke: 2px var(--ink); }
.final-cta p { font: 700 12px/1 var(--mono); letter-spacing: .15em; margin: 30px 0; }
.cta-ring { position: absolute; border: 1px solid rgba(5,6,8,.2); border-radius: 50%; }
.ring-a { width: 75vw; height: 75vw; max-width: 1000px; max-height: 1000px; }
.ring-b { width: 48vw; height: 48vw; max-width: 620px; max-height: 620px; border-width: 2px; }

footer { min-height: 120px; padding: 28px max(24px, calc((100vw - 1220px)/2)); display: flex; align-items: center; justify-content: space-between; gap: 25px; border-top: 1px solid var(--line); background: var(--ink); }
footer p, footer a { color: #6f716c; font: 700 8px/1.4 var(--mono); letter-spacing: .08em; }
footer > div { display: flex; gap: 24px; }
footer > div a:hover { color: var(--acid); }
.footer-brand span { color: var(--cream); font-size: 14px; }

.toast { position: fixed; left: 50%; bottom: 30px; z-index: 30; transform: translate(-50%, 24px); padding: 14px 20px; background: var(--acid); color: var(--ink); font: 800 10px/1 var(--mono); opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s; }
.toast.show { opacity: 1; transform: translate(-50%,0); }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s cubic-bezier(.2,.7,0,1), transform .8s cubic-bezier(.2,.7,0,1); }
.reveal.visible { opacity: 1; transform: none; }

@keyframes pulse { 50% { opacity: .35; box-shadow: 0 0 4px var(--acid); } }
@keyframes scan { to { top: 110%; } }
@keyframes scrollcue { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes wave { 50% { height: 43px; } }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 900px) {
  .site-header { top: 10px; width: calc(100% - 20px); }
  .mini-buy { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  .main-nav { position: fixed; inset: 77px 0 auto; width: 100%; min-height: calc(100svh - 87px); padding: 60px 28px; background: rgba(5,6,8,.98); flex-direction: column; gap: 31px; transform: translateX(110%); transition: transform .35s cubic-bezier(.2,.7,0,1); }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { font-size: 20px; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .hero { grid-template-columns: 1fr; padding-top: 130px; gap: 54px; }
  .hero h1 { font-size: clamp(78px,19vw,140px); }
  .hero-visual { width: min(86vw,590px); justify-self: center; }
  .scroll-cue { display: none; }
  .signal-grid, .lore { grid-template-columns: 1fr; }
  .lore-image { order: 2; }
  .token-panel { grid-template-columns: .65fr 1fr; }
  .token-data { grid-column: 1 / -1; }
  .gallery-head { display: block; }
  .gallery-head h2 { text-align: left; }
}

@media (max-width: 620px) {
  .section-pad { padding-top: 90px; padding-bottom: 90px; }
  .hero { padding-inline: 20px; min-height: auto; }
  .hero h1 { font-size: 24vw; }
  .hero h1 span:last-child { -webkit-text-stroke-width: 1px; }
  .hero-sub { margin-top: 26px; }
  .button { width: 100%; justify-content: space-between; }
  .hero-visual { width: 100%; }
  .chip-top { right: 4px; }.chip-bottom { left: 4px; }
  .section-label { margin-bottom: 38px; }
  .signal-grid { gap: 38px; }
  .micro-stats { gap: 8px; }
  .micro-stats span { font-size: 20px; }
  .lore { gap: 55px; }
  .token-panel { grid-template-columns: 1fr; gap: 30px; padding: 26px 18px; }
  .token-symbol { width: 54%; justify-self: center; }
  .token-copy, .token-data, .contract-box, .token-actions { grid-column: 1; }
  .contract-box { align-items: flex-start; }
  .contract-box code { font-size: 9px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card.card-wide { grid-column: 1; }
  .gallery-card img, .gallery-card.card-wide img { height: 95vw; max-height: 520px; }
  .gallery-card.card-wide img { height: 52vw; }
  .gallery-card figcaption { font-size: 7px; }
  .final-cta { min-height: 570px; padding-inline: 20px; }
  .final-cta h2 { font-size: 20vw; }
  footer { flex-direction: column; align-items: flex-start; padding-block: 38px; }
}

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