:root {
  --ink: #2b1722;
  --paper: #fff8f2;
  --cream: #fff0d2;
  --pink: #ff4e9a;
  --pink-hot: #f21375;
  --pink-deep: #a90d59;
  --purple: #7138dc;
  --gold: #ffd166;
  --mint: #77f2ba;
  --line: rgba(67, 26, 48, 0.16);
  --shadow: 0 25px 70px rgba(85, 9, 51, 0.22);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
}

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

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  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='.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.cursor-glow {
  pointer-events: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 224, 129, 0.18), transparent 66%);
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}

.site-header {
  height: 92px;
  padding: 0 clamp(22px, 5vw, 82px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: #fff;
  transition: height 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.scrolled {
  height: 72px;
  background: rgba(116, 9, 65, 0.72);
  backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(255,255,255,0.15), 0 12px 35px rgba(69, 5, 38, 0.16);
}

.brand {
  color: inherit;
  text-decoration: none;
  display: flex;
  gap: 11px;
  align-items: center;
  font-weight: 800;
  line-height: 0.88;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.brand-mark {
  width: 51px;
  height: 51px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.44);
  border-radius: 50%;
  background: rgba(255,255,255,0.13);
  box-shadow: inset 0 0 0 4px rgba(255,255,255,0.08);
}

.brand img { width: 46px; height: 46px; object-fit: contain; }
.brand em { font-family: "Playfair Display", serif; font-size: 15px; color: var(--gold); }

.nav-links { display: flex; gap: 38px; margin-left: 70px; }

.nav-links a {
  position: relative;
  padding: 12px 0;
  color: inherit;
  text-decoration: none;
  font: 700 10px "DM Mono", monospace;
  letter-spacing: 0.14em;
}

.nav-links a span { color: var(--gold); font-size: 7px; vertical-align: top; margin-right: 4px; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 5px; width: 0; height: 2px; background: var(--gold); transition: width 0.25s; }
.nav-links a:hover::after { width: 100%; }

.header-buy,
.primary-buy,
.action { display: flex; align-items: center; text-decoration: none; }

.header-buy {
  gap: 7px;
  padding: 8px 13px 8px 8px;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(84, 8, 48, 0.25);
  font: 800 10px Manrope, sans-serif;
  letter-spacing: 0.06em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-buy:hover { box-shadow: 0 14px 35px rgba(84, 8, 48, 0.35); }
.header-buy img { width: 28px; height: 28px; object-fit: contain; }
.header-buy b { color: var(--pink-hot); font-size: 17px; }

.hero {
  min-height: 890px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  color: #fff;
  padding: 146px clamp(22px, 8.6vw, 140px) 98px;
  background:
    radial-gradient(circle at 77% 42%, rgba(255, 233, 197, 0.93) 0 2%, rgba(255, 188, 216, 0.58) 19%, transparent 39%),
    radial-gradient(circle at 4% 12%, rgba(255, 221, 128, 0.28), transparent 20%),
    linear-gradient(122deg, #9e0a58 0%, #e51f78 38%, #ff5fa3 68%, #ff9ac3 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -35% auto auto 48%;
  z-index: -1;
  width: 56vw;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(255,255,255,0.055), 0 0 0 130px rgba(255,255,255,0.04), 0 0 0 195px rgba(255,255,255,0.025);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -18vw;
  bottom: -44vw;
  width: 62vw;
  aspect-ratio: 1;
  border: 80px solid rgba(255,255,255,0.06);
  border-radius: 50%;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.22;
  background-image: linear-gradient(rgba(255,255,255,0.13) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.13) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to right, #000, transparent 80%);
}

.shape, .floating-coin { position: absolute; pointer-events: none; will-change: transform; }

.shape-ring {
  border: 2px solid rgba(255,255,255,0.42);
  border-radius: 50%;
  box-shadow: inset 0 0 0 12px rgba(255,255,255,0.07);
}

.ring-one { width: 140px; height: 140px; right: 8%; top: 14%; }
.ring-two { width: 72px; height: 72px; left: 43%; bottom: 13%; border-color: rgba(255, 218, 112, 0.72); }

.shape-capsule {
  width: 120px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.48);
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(255,255,255,0.25), rgba(255,255,255,0.03));
  transform: rotate(-28deg);
}

.capsule-one { left: -22px; top: 31%; }
.capsule-two { right: 1.5%; bottom: 20%; width: 165px; transform: rotate(32deg); }

.floating-coin { z-index: 3; object-fit: contain; filter: drop-shadow(0 18px 18px rgba(103, 8, 58, 0.34)); }
.coin-one { width: 104px; height: 104px; right: 2%; top: 10%; animation: float 5.5s ease-in-out infinite; }
.coin-two { width: 66px; height: 66px; left: 46%; top: 15%; animation: float 4.8s ease-in-out -1.4s infinite; }

.hero-copy { position: relative; z-index: 5; width: min(48vw, 635px); }

.eyebrow {
  margin: 0 0 22px;
  color: var(--pink-hot);
  font: 500 10px "DM Mono", monospace;
  letter-spacing: 0.14em;
}

.eyebrow.light { color: #fff; }
.eyebrow span { display: inline-block; width: 27px; height: 2px; vertical-align: middle; margin: 0 8px 0 0; background: currentColor; }

.title-wrap { position: relative; width: max-content; max-width: 100%; }
.title-kicker { margin: 0 0 8px 5px; color: var(--gold); font: 700 9px "DM Mono", monospace; letter-spacing: 0.18em; }

.hero h1,
.section-heading h2,
.final-cta h2 {
  margin: 0;
  font: 800 clamp(66px, 7.2vw, 116px) / 0.75 "Playfair Display", serif;
  letter-spacing: -0.08em;
}

.hero h1 { position: relative; z-index: 2; text-shadow: 0 10px 36px rgba(91, 7, 51, 0.28); }
.hero h1 i { display: inline-block; color: var(--gold); font-weight: 700; transform: translateX(26px); }

.title-sticker {
  position: absolute;
  z-index: 3;
  right: -20px;
  top: 8px;
  width: 77px;
  height: 77px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  font: 800 8px "DM Mono", monospace;
  letter-spacing: 0.08em;
  transform: rotate(11deg);
  animation: stickerWiggle 4s ease-in-out infinite;
}

.lead { margin: 37px 0 25px; font-size: 15px; line-height: 1.72; text-shadow: 0 2px 14px rgba(62,0,33,0.2); }
.lead strong { color: var(--gold); }

.quick-buy-row { width: min(100%, 520px); display: grid; grid-template-columns: 1.45fr 0.85fr; gap: 10px; }

.primary-buy {
  min-height: 66px;
  padding: 8px 16px 8px 9px;
  gap: 12px;
  border: 2px solid var(--ink);
  border-radius: 13px;
  background: var(--gold);
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--ink), 0 20px 35px rgba(90,7,52,0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-buy:hover { transform: translate(-2px, -2px); box-shadow: 9px 9px 0 var(--ink), 0 24px 40px rgba(90,7,52,0.3); }
.primary-buy img { width: 46px; height: 46px; object-fit: contain; }
.primary-buy span { flex: 1; font-size: 12px; font-weight: 800; letter-spacing: 0.05em; }
.primary-buy small { display: block; margin-top: 4px; font: 500 8px "DM Mono", monospace; letter-spacing: 0.1em; opacity: 0.58; }
.primary-buy b { font-size: 24px; }

.copy-contract {
  min-height: 66px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.56);
  border-radius: 13px;
  background: rgba(255,255,255,0.13);
  color: #fff;
  text-align: left;
  backdrop-filter: blur(14px);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.copy-contract:hover { background: rgba(255,255,255,0.23); transform: translateY(-2px); }
.copy-contract span { display: block; font: 800 11px Manrope, sans-serif; letter-spacing: 0.08em; }
.copy-contract small { display: block; margin-top: 5px; font: 500 7px "DM Mono", monospace; letter-spacing: 0.08em; opacity: 0.65; }

.action-stack { width: min(100%, 520px); display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 12px; }

.action {
  min-width: 0;
  min-height: 57px;
  padding: 8px 10px;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.54);
  border-radius: 11px;
  background: rgba(255,255,255,0.94);
  color: var(--ink);
  box-shadow: 0 12px 22px rgba(82,5,47,0.18);
  transition: transform 0.2s ease, background 0.2s ease;
}

.action:hover { transform: translateY(-5px) rotate(-1deg); background: #fff; }
.action:nth-child(2):hover { transform: translateY(-5px) rotate(1deg); }
.action img, .action svg { width: 31px; height: 31px; flex: 0 0 31px; object-fit: contain; }
.action svg { padding: 7px; border-radius: 50%; background: #191919; fill: #fff; }
.action span { min-width: 0; flex: 1; font-size: 9px; font-weight: 800; letter-spacing: 0.03em; }
.action small { display: block; overflow: hidden; margin-top: 3px; font: 500 6px "DM Mono", monospace; letter-spacing: 0.04em; opacity: 0.55; white-space: nowrap; }
.action b { font-size: 14px; color: var(--pink-hot); }
.telegram-action svg { background: #2aa9e8; }

.hero-art {
  position: absolute;
  right: clamp(-80px, 2.5vw, 45px);
  bottom: -38px;
  z-index: 2;
  width: min(56vw, 740px);
  height: 790px;
}

.hero-art > img { position: relative; z-index: 3; width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 29px 30px rgba(102,9,58,0.34)); animation: catBreath 4.2s ease-in-out infinite; }

.art-halo {
  position: absolute;
  left: 18%;
  top: 12%;
  width: 64%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(255,255,255,0.08), 0 0 0 52px rgba(255,255,255,0.06), 0 0 90px rgba(255,236,197,0.52);
}

.art-sunburst {
  position: absolute;
  left: 12%;
  top: 6%;
  width: 76%;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.2;
  background: repeating-conic-gradient(from 10deg, #fff 0 6deg, transparent 6deg 15deg);
  animation: spin 42s linear infinite;
}

.speech-bubble {
  position: absolute;
  z-index: 5;
  right: 4%;
  top: 18%;
  width: 135px;
  height: 92px;
  display: grid;
  align-content: center;
  justify-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  box-shadow: 7px 7px 0 var(--pink-deep);
  transform: rotate(8deg);
}

.speech-bubble::after { content: ""; position: absolute; left: 10px; bottom: -19px; width: 27px; height: 28px; border-left: 2px solid var(--ink); background: #fff; clip-path: polygon(0 0,100% 0,12% 100%); transform: rotate(19deg); }
.speech-bubble span { font: 700 8px "DM Mono", monospace; letter-spacing: 0.12em; }
.speech-bubble strong { font: 800 24px "Playfair Display", serif; letter-spacing: -0.05em; }

.hero-badge {
  position: absolute;
  z-index: 5;
  left: 5%;
  bottom: 21%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px 9px 9px;
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: 999px;
  background: rgba(102,8,59,0.62);
  backdrop-filter: blur(13px);
  box-shadow: 0 12px 30px rgba(72,0,38,0.22);
}

.hero-badge b { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 50%; background: var(--gold); color: var(--ink); font: 800 12px "DM Mono", monospace; }
.hero-badge span { color: #fff; font: 600 8px "DM Mono", monospace; line-height: 1.5; letter-spacing: 0.08em; }

.scroll-note { position: absolute; left: 50%; bottom: 26px; z-index: 8; color: #fff; text-decoration: none; font: 500 8px "DM Mono", monospace; letter-spacing: 0.12em; transform: translateX(-50%); }
.scroll-note span { display: inline-block; margin-left: 8px; color: var(--gold); font-size: 19px; animation: bounce 1.6s ease-in-out infinite; }

.marquee { position: relative; z-index: 10; overflow: hidden; border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); background: var(--gold); color: var(--ink); transform: rotate(-1.2deg) scale(1.02); }
.marquee-track { width: max-content; display: flex; align-items: center; gap: 25px; padding: 12px 0; animation: marquee 22s linear infinite; }
.marquee span { font: 800 14px Manrope, sans-serif; letter-spacing: 0.07em; }
.marquee i { font: 700 18px "Playfair Display", serif; color: var(--pink-deep); }
.marquee i::before { content: ""; display: inline-block; width: 8px; height: 8px; margin-right: 25px; border: 2px solid var(--ink); border-radius: 50%; background: var(--pink); }

.section { position: relative; overflow: hidden; padding: 132px clamp(22px, 8.6vw, 140px); }
.roadmap { background: var(--paper); }
.roadmap::before { content: "CASCHIFFY"; position: absolute; right: -1vw; top: 38px; color: rgba(242,19,117,0.045); font: 800 14vw Manrope, sans-serif; letter-spacing: -0.08em; }
.road-orbit { position: absolute; right: -240px; top: -280px; width: 590px; height: 590px; border: 74px solid rgba(242,19,117,0.055); border-radius: 50%; box-shadow: 0 0 0 1px rgba(242,19,117,0.14); }

.section-heading { position: relative; z-index: 2; max-width: 760px; }
.section-heading h2 { color: var(--ink); font-size: clamp(54px, 6vw, 91px); line-height: 0.82; text-shadow: none; }
.section-heading h2 i { color: var(--pink-hot); font-weight: 700; }
.section-heading > p:last-child { max-width: 390px; margin-top: 26px; font-size: 14px; line-height: 1.72; }

.road-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; margin-top: 62px; }

.road-card {
  min-height: 350px;
  padding: 25px 27px 30px;
  overflow: hidden;
  position: relative;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: #fff;
  box-shadow: 7px 7px 0 rgba(43,23,34,0.95);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.road-card:hover { transform: translateY(-12px) rotate(-1deg); box-shadow: 12px 18px 0 rgba(43,23,34,0.95); }
.road-card:nth-child(2) { transform: translateY(25px) rotate(1deg); background: var(--cream); }
.road-card:nth-child(2):hover { transform: translateY(10px) rotate(0deg); }
.road-card:nth-child(3) { background: #e8dcff; }
.road-card.active { background: linear-gradient(145deg, #ff4e9a, #d2146c); color: #fff; }

.phase-top { display: flex; justify-content: space-between; align-items: center; font: 700 9px "DM Mono", monospace; letter-spacing: 0.1em; }
.phase-top b { padding: 5px 8px; border: 1px solid currentColor; border-radius: 99px; font-size: 7px; }
.active .phase-top b { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.road-status { margin: 80px 0 10px; color: var(--pink-hot); font: 600 9px "DM Mono", monospace; letter-spacing: 0.14em; }
.active .road-status { color: var(--gold); }
.road-card h3 { max-width: 260px; margin: 0; font: 800 27px "Playfair Display", serif; line-height: 1; letter-spacing: -0.03em; }
.road-card > p:not(.road-status) { position: relative; z-index: 2; max-width: 245px; margin-top: 17px; font-size: 12px; line-height: 1.75; opacity: 0.72; }
.card-number { position: absolute; right: -14px; bottom: -48px; color: rgba(43,23,34,0.07); font: 800 145px Manrope, sans-serif; letter-spacing: -0.12em; }
.active .card-number { color: rgba(255,255,255,0.09); }
.road-footnote { margin: 68px 0 0; text-align: center; font: 500 8px "DM Mono", monospace; letter-spacing: 0.15em; color: var(--pink-deep); }

.chart-section { background: #25141f; color: #fff; }
.chart-section::before { content: ""; position: absolute; inset: 0; opacity: 0.16; background-image: linear-gradient(rgba(255,255,255,0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.12) 1px, transparent 1px); background-size: 42px 42px; }
.chart-blob { position: absolute; width: 560px; height: 560px; right: -210px; top: -150px; border-radius: 38% 62% 57% 43% / 48% 42% 58% 52%; background: linear-gradient(135deg, rgba(242,19,117,0.36), rgba(113,56,220,0.17)); filter: blur(2px); animation: morph 9s ease-in-out infinite; }
.chart-title h2 { color: #fff; }
.chart-title h2 i { color: var(--gold); }
.chart-title .eyebrow { color: #ff80b7; }
.text-link { position: absolute; right: 0; bottom: 4px; padding-bottom: 5px; border-bottom: 1px solid var(--gold); color: var(--gold); text-decoration: none; font: 500 10px "DM Mono", monospace; letter-spacing: 0.1em; }

.chart-shell { position: relative; z-index: 2; margin-top: 54px; overflow: hidden; border: 1px solid rgba(255,255,255,0.24); border-radius: 18px; background: #171014; box-shadow: 0 30px 90px rgba(0,0,0,0.36), 8px 8px 0 var(--pink-hot); }
.chart-bar { min-height: 51px; padding: 0 18px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid rgba(255,255,255,0.13); background: rgba(255,255,255,0.035); font: 500 9px "DM Mono", monospace; letter-spacing: 0.1em; }
.chart-bar i { color: var(--gold); font-style: normal; }
.live-dot { display: inline-block; width: 8px; height: 8px; margin-right: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 13px var(--mint); animation: pulse 1.5s ease-in-out infinite; }
iframe { width: 100%; height: 570px; display: block; border: 0; background: #171014; }
.chart-placeholder { height: 570px; display: grid; place-items: center; color: var(--gold); font: 500 11px "DM Mono", monospace; letter-spacing: 0.14em; }

.final-cta {
  min-height: 670px;
  padding: 115px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  text-align: center;
  background: radial-gradient(circle at center, #ff93bd, #f53682 53%, #bf0c61 100%);
  color: #fff;
}

.final-cta::before, .final-cta::after { content: ""; position: absolute; width: 480px; height: 480px; border: 1px solid rgba(255,255,255,0.35); border-radius: 50%; box-shadow: 0 0 0 45px rgba(255,255,255,0.055), 0 0 0 90px rgba(255,255,255,0.035); }
.final-cta::before { left: -230px; top: -250px; }
.final-cta::after { right: -210px; bottom: -280px; }
.cta-coin { width: 150px; height: 150px; object-fit: contain; filter: drop-shadow(0 20px 25px rgba(87,2,47,0.3)); animation: float 4.5s ease-in-out infinite; }
.final-cta .eyebrow { margin-top: 25px; color: var(--gold); }
.final-cta h2 { position: relative; z-index: 2; font-size: clamp(55px, 7.6vw, 107px); }
.final-cta h2 i { color: var(--gold); }
.final-cta .primary-buy { z-index: 2; width: min(100%, 310px); margin-top: 37px; text-align: left; }

footer { min-height: 115px; padding: 23px clamp(22px, 8.6vw, 140px); display: flex; align-items: center; justify-content: space-between; gap: 20px; background: #1d1018; color: #fff; }
footer .brand-mark { width: 44px; height: 44px; }
footer .brand img { width: 39px; height: 39px; }
footer p { max-width: 250px; margin: 0; text-align: center; opacity: 0.48; font: 500 8px "DM Mono", monospace; letter-spacing: 0.09em; }

.reveal { opacity: 0; transform: translateY(35px); transition: opacity 0.75s ease, transform 0.75s cubic-bezier(.2,.72,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.road-card:nth-child(2).reveal { transform: translateY(55px) rotate(1deg); }
.road-card:nth-child(2).reveal.is-visible { transform: translateY(25px) rotate(1deg); }

@keyframes float { 0%,100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-18px) rotate(4deg); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(0.7); opacity: 0.55; } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes stickerWiggle { 0%,100% { transform: rotate(11deg); } 50% { transform: rotate(3deg) scale(1.05); } }
@keyframes catBreath { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-5px) scale(1.008); } }
@keyframes morph { 0%,100% { border-radius: 38% 62% 57% 43% / 48% 42% 58% 52%; transform: rotate(0); } 50% { border-radius: 61% 39% 37% 63% / 59% 61% 39% 41%; transform: rotate(9deg); } }

@media (max-width: 1050px) {
  .hero { min-height: 850px; padding-left: 55px; }
  .hero-copy { width: 53vw; }
  .hero h1 { font-size: 78px; }
  .hero-art { right: -100px; width: 61vw; height: 700px; }
  .title-sticker { right: -15px; }
  .nav-links { margin-left: 20px; gap: 21px; }
  .header-buy { font-size: 8px; }
}

@media (max-width: 800px) {
  .cursor-glow { display: none; }
  .site-header { height: 73px; padding: 0 16px; }
  .brand-mark { width: 42px; height: 42px; }
  .brand img { width: 38px; height: 38px; }
  .brand { font-size: 10px; }
  .brand em { font-size: 12px; }
  .nav-links { display: none; }
  .header-buy { padding: 6px 9px 6px 6px; }
  .header-buy img { width: 25px; height: 25px; }
  .header-buy b { display: none; }

  .hero { min-height: 1160px; padding: 112px 22px 515px; }
  .hero-copy { width: 100%; }
  .hero h1 { font-size: clamp(60px, 19vw, 82px); }
  .hero h1 i { transform: translateX(12px); }
  .title-sticker { right: 1px; top: 5px; width: 64px; height: 64px; font-size: 7px; }
  .lead { margin-top: 31px; font-size: 13px; }
  .quick-buy-row { grid-template-columns: 1fr; }
  .copy-contract { min-height: 56px; }
  .action-stack { grid-template-columns: repeat(3, 1fr); }
  .action { padding: 7px; justify-content: center; }
  .action span, .action b { display: none; }
  .action img, .action svg { width: 34px; height: 34px; flex-basis: 34px; }
  .hero-art { right: 50%; bottom: -25px; width: min(110vw, 550px); height: 555px; transform: translateX(50%); }
  .speech-bubble { right: 2%; top: 15%; width: 111px; height: 76px; }
  .speech-bubble strong { font-size: 20px; }
  .hero-badge { left: 2%; bottom: 20%; }
  .coin-one { width: 72px; height: 72px; right: -12px; top: 49%; }
  .coin-two { display: none; }
  .capsule-one { top: 48%; }
  .scroll-note { display: none; }

  .marquee-track { padding: 10px 0; gap: 18px; }
  .marquee span { font-size: 11px; }
  .marquee i { font-size: 15px; }
  .marquee i::before { margin-right: 18px; }
  .section { padding: 88px 22px; }
  .section-heading h2 { font-size: 52px; }
  .road-grid { grid-template-columns: 1fr; margin-top: 42px; }
  .road-card, .road-card:nth-child(2) { min-height: 305px; transform: none; }
  .road-card:nth-child(2).reveal, .road-card:nth-child(2).reveal.is-visible { transform: translateY(0); }
  .road-card:hover, .road-card:nth-child(2):hover { transform: translateY(-7px); }
  .road-status { margin-top: 58px; }
  .road-footnote { margin-top: 45px; line-height: 1.7; }
  .text-link { position: static; display: inline-block; margin-top: 22px; }
  .chart-shell { margin-top: 38px; box-shadow: 5px 5px 0 var(--pink-hot); }
  .chart-bar span, .chart-bar i { display: none; }
  iframe { height: 480px; }
  .chart-placeholder { height: 480px; }
  .final-cta { min-height: 600px; padding: 85px 20px; }
  .cta-coin { width: 120px; height: 120px; }
  footer { padding: 27px 22px; align-items: flex-start; flex-direction: column; }
  footer p { text-align: left; }
}

@media (max-width: 390px) {
  .header-buy { font-size: 7px; }
  .hero { min-height: 1115px; padding-bottom: 475px; }
  .hero h1 { font-size: 57px; }
  .title-sticker { width: 57px; height: 57px; }
  .primary-buy span { font-size: 10px; }
  .hero-art { height: 500px; }
  .section-heading h2 { font-size: 45px; }
}

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

[hidden] { display: none !important; }
