:root {
  --sky: #4a9fe0;
  --sky-deep: #1a6fb5;
  --wheel: #1e7ad6;
  --wheel-bright: #3d9cf0;
  --asphalt: #1c2128;
  --asphalt-mid: #2a323c;
  --grass: #5f9e3c;
  --sun: #f0c43a;
  --coat: #5a616b;
  --foam: #f4f7fb;
  --white: #ffffff;
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Barlow", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  background: var(--foam);
  color: var(--asphalt);
  font-family: var(--font-body);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

::selection {
  background: var(--wheel);
  color: #fff;
}

.display {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  font-weight: 400;
}

.container {
  width: min(72rem, calc(100% - 2.5rem));
  margin-inline: auto;
}

@media (min-width: 640px) {
  .container {
    width: min(72rem, calc(100% - 4rem));
  }
}

.text-wheel {
  color: var(--wheel);
}

.text-wheel-bright {
  color: var(--wheel-bright);
}

.text-foam {
  color: var(--foam);
}

.text-foam-muted {
  color: rgba(244, 247, 251, 0.75);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-sm {
  padding: 0.5rem 1rem;
}

.btn-wheel {
  background: var(--wheel);
  color: #fff;
}

.btn-wheel:hover {
  background: var(--wheel-bright);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  border-color: var(--sun);
  color: var(--sun);
}

.btn-asphalt {
  background: var(--asphalt);
  color: #fff;
}

.btn-asphalt:hover {
  background: var(--wheel);
}

.btn-outline {
  border: 2px solid var(--asphalt);
  background: transparent;
  color: var(--asphalt);
}

.btn-outline:hover {
  border-color: var(--wheel);
  color: var(--wheel);
}

.btn-glow {
  animation: pulse-glow 2.4s ease-out infinite;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(28, 33, 40, 0.7);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(30, 122, 214, 0.5);
}

.brand span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: #fff;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.75);
}

.nav-desktop a:hover {
  color: var(--sun);
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: flex-end;
  overflow: hidden;
  padding: 7rem 0 4rem;
}

@media (min-width: 640px) {
  .hero {
    align-items: center;
    padding: 5rem 0 6rem;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(28, 33, 40, 0.82) 0%,
      rgba(28, 33, 40, 0.55) 42%,
      rgba(26, 111, 181, 0.25) 100%
    ),
    linear-gradient(to top, rgba(28, 33, 40, 0.9) 0%, transparent 38%);
}

.speed-lines {
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0.6;
  background-image: repeating-linear-gradient(
    100deg,
    transparent 0 12px,
    rgba(255, 255, 255, 0.07) 12px 14px
  );
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-copy {
  max-width: 42rem;
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-logo {
  width: 4rem;
  height: 4rem;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4);
}

@media (min-width: 640px) {
  .hero-logo {
    width: 5rem;
    height: 5rem;
  }
}

.hero-name {
  margin: 0;
  font-size: clamp(2.75rem, 8vw, 4.5rem);
  line-height: 1;
  color: #fff;
}

.hero-ticker {
  margin: 0.25rem 0 0;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  letter-spacing: 0.18em;
  color: var(--sun);
}

.hero-title {
  margin: 0;
  font-size: clamp(2.25rem, 8vw, 4.5rem);
  line-height: 0.95;
  color: #fff;
}

.hero-lead {
  margin: 1.25rem 0 0;
  max-width: 28rem;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.road-bar {
  pointer-events: none;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 0.5rem;
}

.road-stripes {
  width: 100%;
  height: 100%;
  opacity: 0.9;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 28px,
    rgba(240, 196, 58, 0.85) 28px,
    rgba(240, 196, 58, 0.85) 48px
  );
  animation: road-scroll 0.7s linear infinite;
}

/* Marquee */
.speed-strip {
  overflow: hidden;
  border-block: 1px solid rgba(28, 33, 40, 0.2);
  background: var(--asphalt);
  padding: 0.75rem 0;
}

.marquee {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  white-space: nowrap;
  animation: speed-marquee 22s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  color: rgba(244, 247, 251, 0.9);
}

.wheel-mark {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--wheel-bright);
  animation: wheel-spin 1.8s linear infinite;
  flex-shrink: 0;
}

/* Sections */
.section {
  position: relative;
  padding: 5rem 0;
}

@media (min-width: 640px) {
  .section {
    padding: 7rem 0;
  }
}

.section-intro {
  max-width: 42rem;
}

.eyebrow {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}

.section-title {
  margin: 0.75rem 0 0;
  font-size: clamp(2.75rem, 6vw, 3.75rem);
  color: var(--asphalt);
}

.section-lead {
  margin: 1.25rem 0 0;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--coat);
}

.paw-pattern {
  background-image: radial-gradient(
    circle at 20% 30%,
    rgba(95, 158, 60, 0.08) 0 2px,
    transparent 3px
  );
  background-size: 48px 48px;
}

.story-grid {
  display: grid;
  gap: 2.5rem;
  margin-top: 3.5rem;
}

@media (min-width: 768px) {
  .story-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.story-beat {
  border-top: 2px solid var(--wheel);
  padding-top: 1.5rem;
}

.beat-label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--grass);
}

.story-beat h3 {
  margin: 0.75rem 0 0;
  font-size: 1.875rem;
  color: var(--asphalt);
}

.story-beat p:last-child {
  margin: 0.75rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--coat);
}

.quote {
  margin: 4rem 0 0;
  border-left: 4px solid var(--sun);
  padding-left: 1.5rem;
}

@media (min-width: 640px) {
  .quote {
    padding-left: 2rem;
  }
}

.quote p {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  line-height: 1.25;
  color: var(--asphalt);
}

.quote cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--coat);
}

/* Watch */
.section-asphalt {
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(61, 156, 240, 0.2), transparent),
    linear-gradient(180deg, #232a33 0%, #1c2128 100%);
  color: var(--foam);
}

.watch-head {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .watch-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.watch .section-title {
  color: var(--foam);
}

.watch-thumb {
  display: none;
  width: 9rem;
  height: 9rem;
  flex-shrink: 0;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(30, 122, 214, 0.4);
}

@media (min-width: 768px) {
  .watch-thumb {
    display: block;
  }
}

@media (min-width: 1024px) {
  .watch-thumb {
    width: 11rem;
    height: 11rem;
  }
}

.watch-list {
  margin-top: 3rem;
  border-block: 1px solid rgba(255, 255, 255, 0.1);
}

.watch-list li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.watch-list a {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.75rem 0;
  transition: color 0.2s ease;
}

@media (min-width: 640px) {
  .watch-list a {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}

.watch-eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--sun);
}

.watch-title {
  margin: 0.25rem 0 0;
  font-size: 1.875rem;
  color: #fff;
  transition: color 0.2s ease;
}

.watch-list a:hover .watch-title {
  color: var(--wheel-bright);
}

.watch-detail {
  margin: 0.5rem 0 0;
  max-width: 32rem;
  font-size: 0.875rem;
  color: rgba(244, 247, 251, 0.65);
}

.watch-open {
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--wheel-bright);
  transition: transform 0.2s ease;
}

.watch-list a:hover .watch-open {
  transform: translateX(4px);
}

/* Token */
.token {
  overflow: hidden;
  background: var(--foam);
}

.blob {
  pointer-events: none;
  position: absolute;
  border-radius: 999px;
  filter: blur(64px);
}

.blob-right {
  top: 2.5rem;
  right: -6rem;
  width: 18rem;
  height: 18rem;
  background: rgba(30, 122, 214, 0.1);
}

.blob-left {
  bottom: 0;
  left: -4rem;
  width: 16rem;
  height: 16rem;
  background: rgba(95, 158, 60, 0.15);
}

.token-grid {
  position: relative;
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .token-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.token-actions {
  margin-top: 2rem;
}

.ca-btn {
  display: flex;
  width: 100%;
  max-width: 36rem;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(42, 50, 60, 0.8);
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.ca-btn:hover {
  border-color: rgba(61, 156, 240, 0.6);
}

.ca-label {
  font-family: var(--font-display);
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  color: var(--wheel-bright);
}

.ca-value {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.875rem;
  color: rgba(244, 247, 251, 0.9);
}

.ca-status {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sun);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.token-card-wrap {
  position: relative;
}

.token-card-glow {
  position: absolute;
  inset: -0.75rem;
  background: linear-gradient(
    135deg,
    rgba(30, 122, 214, 0.3),
    transparent,
    rgba(95, 158, 60, 0.25)
  );
}

.token-card {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(28, 33, 40, 0.1);
  background: #fff;
}

.token-card > img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.token-card-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 2px solid var(--asphalt);
  background: var(--asphalt);
  padding: 1rem 1.25rem;
  color: var(--foam);
}

.token-card-bar .display {
  margin: 0;
  font-size: 1.5rem;
}

.token-tag {
  margin: 0.15rem 0 0;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--sun);
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--asphalt);
  padding: 2.5rem 0;
  color: var(--foam);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: cover;
}

.footer-brand .display {
  margin: 0;
  font-size: 1.25rem;
}

.footer-note {
  margin: 0.15rem 0 0;
  font-size: 0.75rem;
  color: rgba(244, 247, 251, 0.55);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(244, 247, 251, 0.7);
}

.footer-links a:hover {
  color: var(--sun);
}

/* Motion */
@keyframes speed-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes wheel-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(30, 122, 214, 0.45);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(30, 122, 214, 0);
  }
}

@keyframes road-scroll {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -80px 0;
  }
}

.animate-rise {
  animation: rise-in 0.8s ease-out both;
}

.animate-rise-delay-1 {
  animation: rise-in 0.8s ease-out 0.15s both;
}

.animate-rise-delay-2 {
  animation: rise-in 0.8s ease-out 0.3s both;
}

@media (prefers-reduced-motion: reduce) {
  .animate-rise,
  .animate-rise-delay-1,
  .animate-rise-delay-2,
  .btn-glow,
  .marquee,
  .wheel-mark,
  .road-stripes {
    animation: none;
  }
}
