:root {
  --sky: #6a9dc8;
  --cream: #feebcc;
  --word: #fcecd1;
  --chocolate: #51250b;
  --ink: #2c1408;
  --gold: #db943a;
  --gold-deep: #b87522;
  --red: #a12e36;
  --shadow: #3a1908;
  --display: "Lilita One", "Arial Rounded MT Bold", "Nunito", sans-serif;
  --body: "Nunito", "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--sky);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.05rem;
  line-height: 1.6;
  overflow-x: hidden;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  opacity: 0.14;
  mix-blend-mode: multiply;
  background-image: url("../assets/grain.svg");
  background-size: 180px 180px;
  animation: grain 14s linear infinite;
}

img { max-width: 100%; height: auto; }

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

button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

::selection {
  background: var(--chocolate);
  color: var(--cream);
}

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 120;
  background: var(--cream);
  color: var(--chocolate);
  border: 3px solid var(--chocolate);
  padding: 8px 12px;
  font-weight: 800;
}

.skip:focus { top: 12px; }

.flash {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--word);
  pointer-events: none;
  opacity: 0;
  animation: flash 1.15s ease both;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  z-index: 80;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: 0 50%;
}

.nav {
  position: fixed;
  z-index: 40;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1080px, calc(100% - 28px));
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px 8px 12px;
  background: rgba(254, 235, 204, 0.94);
  border: 3px solid var(--chocolate);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  transition: box-shadow 0.25s ease;
}

.nav.is-stuck { box-shadow: 4px 5px 0 var(--chocolate); }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--chocolate);
  background: var(--sky);
}

.brand span {
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--chocolate);
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-links a {
  font-weight: 800;
  color: var(--chocolate);
  padding: 8px 12px;
  border-radius: 999px;
}

.nav-links a:hover,
.nav-links a.is-on {
  background: var(--chocolate);
  color: var(--cream);
}

.nav-x {
  width: 44px;
  height: 44px;
  margin-left: 6px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 3px solid var(--chocolate);
  background: var(--gold);
  transition: transform 0.25s ease;
}

.nav-x img { width: 16px; height: 16px; }

.nav-x:hover { transform: rotate(-10deg) scale(1.05); }

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 0;
  border-radius: 50%;
  border: 3px solid var(--chocolate);
  background: transparent;
  cursor: pointer;
  place-items: center;
  align-content: center;
  justify-items: center;
  gap: 5px;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--chocolate);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav.is-open .menu-btn span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .menu-btn span:nth-child(2) { opacity: 0; }
.nav.is-open .menu-btn span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--sky);
  overflow: hidden;
}

.hero-grid {
  position: relative;
  z-index: 1;
  flex: 1;
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 126px 0 36px;
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) 1.14fr;
  gap: 20px;
  align-items: center;
}

.hero-logo {
  width: min(440px, 46vh);
  display: block;
  margin: 0 auto;
  background: transparent;
  -webkit-mask-image: radial-gradient(ellipse 80% 84% at 50% 54%, #000 62%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 84% at 50% 54%, #000 62%, transparent 100%);
  animation: float 5.6s ease-in-out infinite;
}

.hero-copy { position: relative; z-index: 1; max-width: 640px; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--chocolate);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--gold);
  border-radius: 99px;
}

.eyebrow.live::before { display: none; }

.rec {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(161, 46, 54, 0.65);
  animation: rec 1.7s ease-out infinite;
}

.hero h1 {
  margin: 0;
  padding: 0.04em 0.08em 0.02em 0;
  font-family: var(--display);
  font-size: clamp(4.6rem, 9vw, 8rem);
  font-weight: 400;
  line-height: 0.84;
  letter-spacing: 0.01em;
  color: var(--word);
  -webkit-text-stroke: 0.032em var(--chocolate);
  paint-order: stroke fill;
  text-shadow: 0.045em 0.055em 0 var(--shadow);
}

.hero h1 span { display: block; }

.swoosh {
  display: block;
  width: min(280px, 70%);
  height: auto;
  margin: 6px 0 12px;
}

.swoosh path {
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  animation: draw 1.5s 0.45s ease forwards;
}

.hero-lede {
  margin: 0;
  max-width: 36ch;
  font-size: clamp(1.12rem, 2vw, 1.4rem);
  font-weight: 800;
  color: var(--ink);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--cream);
  border: 2px solid var(--chocolate);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.chips img { width: 16px; height: 16px; }

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 16px 0 8px;
  border-radius: 999px;
  border: 3px solid var(--chocolate);
  font-family: var(--body);
  font-weight: 800;
  font-size: 1rem;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-position 0.45s ease;
}

.btn-ico {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
}

.btn-ico img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.btn-fill {
  background: linear-gradient(110deg, #51250b 0 38%, #7a4320 50%, #51250b 62% 100%);
  background-size: 220% 100%;
  color: var(--cream);
  box-shadow: 4px 4px 0 var(--gold);
}

.btn-line {
  background: var(--cream);
  color: var(--chocolate);
  box-shadow: 4px 4px 0 rgba(81, 37, 11, 0.18);
}

.btn:hover {
  transform: translate(-2px, -2px);
  background-position: 100% 0;
  box-shadow: 6px 6px 0 var(--gold);
}

.orb {
  position: absolute;
  right: -60px;
  top: 90px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0) 68%);
  animation: drift 13s ease-in-out infinite;
}

.orb-b {
  right: 16%;
  top: auto;
  bottom: 90px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(219, 148, 58, 0.28), transparent 70%);
  animation-delay: -5s;
}

.orb-c {
  left: -120px;
  top: 40px;
  right: auto;
  width: 380px;
  height: 380px;
}

.orb-d {
  left: auto;
  right: -80px;
  top: -40px;
  width: 360px;
  height: 360px;
}

.arcs-parallax {
  position: absolute;
  left: -140px;
  bottom: 10px;
  width: 620px;
  height: 620px;
  z-index: 0;
  pointer-events: none;
}

.arcs {
  width: 100%;
  height: 100%;
  animation: spin 56s linear infinite;
  transform-origin: 35% 62%;
}

.hound-a {
  position: absolute;
  top: 108px;
  right: 0;
  width: 108px;
  height: 210px;
  border-radius: 70px 0 0 70px;
  border: 3px solid var(--chocolate);
  border-right: 0;
  background: url("../assets/houndstooth.svg") center / 28px 28px;
  z-index: 1;
  pointer-events: none;
}

.marquee {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--chocolate);
  color: var(--cream);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee-track span {
  padding: 10px 0;
  white-space: nowrap;
  font-family: var(--display);
  letter-spacing: 0.14em;
  font-size: 1.02rem;
}

.carpet {
  position: relative;
  z-index: 1;
  height: 46px;
  overflow: hidden;
  background:
    linear-gradient(var(--gold), var(--gold)) top / 100% 4px no-repeat,
    linear-gradient(var(--gold), var(--gold)) bottom / 100% 4px no-repeat,
    linear-gradient(180deg, #b43842 0%, #7a1e28 48%, #b43842 100%);
}

.carpet::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 30%, rgba(254, 235, 204, 0.32) 50%, transparent 70%);
  transform: translateX(-120%);
  animation: sheen 4.8s ease-in-out infinite;
}

.wrap {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

.panel {
  width: min(1120px, calc(100% - 28px));
  margin: 34px auto;
  padding: 42px 36px 46px;
  background: var(--cream);
  border: 3px solid var(--chocolate);
  border-radius: 36px;
  box-shadow: 8px 10px 0 rgba(58, 25, 8, 0.18);
  position: relative;
  z-index: 1;
}

h2 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.6rem, 5vw, 4.1rem);
  line-height: 0.92;
  color: var(--chocolate);
}

.section-lede {
  margin: 0 0 22px;
  max-width: 62ch;
  font-weight: 700;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) 1.18fr;
  gap: 42px;
  align-items: center;
}

.frame {
  position: relative;
  margin: 0;
  max-width: 440px;
  padding: 16px 16px 0;
  background: url("../assets/houndstooth.svg") center / 26px 26px;
  border: 3px solid var(--chocolate);
  border-radius: 28px;
  box-shadow: 10px 12px 0 var(--chocolate);
}

.frame img {
  display: block;
  width: 100%;
  border-radius: 16px;
  background: var(--sky);
}

.gingham {
  height: 14px;
  margin-top: 12px;
  background-color: #e7eeff;
  background-image:
    linear-gradient(90deg, rgba(141, 161, 216, 0.95) 50%, transparent 50%),
    linear-gradient(rgba(141, 161, 216, 0.95) 50%, transparent 50%);
  background-size: 14px 14px;
}

.frame figcaption {
  margin: 0;
  padding: 10px 8px 12px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--chocolate);
  border-radius: 0 0 12px 12px;
}

.sticker {
  position: absolute;
  top: -12px;
  right: 18px;
  z-index: 2;
  padding: 6px 12px;
  background: var(--gold);
  color: var(--chocolate);
  border: 3px solid var(--chocolate);
  font-family: var(--display);
  letter-spacing: 0.06em;
  transform: rotate(7deg);
  animation: wobble 3.6s ease-in-out infinite;
}

.about-copy p { max-width: 58ch; font-weight: 700; }

.specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 22px 0 0;
}

.specs div {
  padding: 12px 14px;
  background: #fff8ec;
  border: 2px solid var(--chocolate);
  border-radius: 16px;
}

.specs dt {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.specs dd {
  margin: 2px 0 0;
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--chocolate);
}

.buy, .join {
  position: relative;
  z-index: 1;
  padding: 28px 0 64px;
}

.buy-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}

.ticket {
  display: flex;
  position: relative;
  background: var(--cream);
  border: 3px solid var(--chocolate);
  border-radius: 20px;
  box-shadow: 6px 6px 0 var(--gold);
  overflow: visible;
}

.ticket::before,
.ticket::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 0 4px var(--sky);
  transform: translateY(-50%);
}

.ticket::before { left: -16px; }
.ticket::after { right: -16px; }

.ticket-main { padding: 18px 16px 16px; flex: 1; }

.ticket-kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ticket-title {
  margin: 4px 0 0;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 0.95;
  color: var(--chocolate);
}

.ticket-symbol {
  margin: 4px 0 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #7a3d0c;
}

.ticket-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 4px 0;
  font-size: 0.92rem;
}

.ticket-row span {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.ticket-stub {
  width: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-left: 3px dashed var(--chocolate);
}

.ticket-stub img { width: 28px; height: 28px; }

.ticket-stub span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--display);
  letter-spacing: 0.16em;
  font-size: 0.95rem;
  color: var(--chocolate);
}

.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step {
  padding: 16px 16px 18px;
  background: var(--cream);
  border: 3px solid var(--chocolate);
  border-radius: 20px;
  box-shadow: 5px 5px 0 rgba(81, 37, 11, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--gold);
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.step img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.num {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--chocolate);
  font-family: var(--display);
}

.step h3 {
  margin: 10px 0 6px;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--chocolate);
}

.step p { margin: 0 0 10px; font-weight: 700; }

.more {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--chocolate);
}

.chart-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 18px;
}

.screen {
  background: var(--chocolate);
  border-radius: 22px;
  padding: 0 10px 10px;
  border: 3px solid var(--chocolate);
}

.bulbs {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  min-height: 28px;
  padding: 9px 6px;
}

.bulbs span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: bulb 1.35s ease-in-out infinite;
}

.finder {
  position: relative;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  min-height: 640px;
}

.finder::before {
  content: "Dexscreener";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 2rem;
  color: rgba(81, 37, 11, 0.28);
  pointer-events: none;
}

.finder iframe {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 640px;
  border: 0;
  background: #fff;
}

.corner {
  position: absolute;
  z-index: 2;
  width: 26px;
  height: 26px;
  border: 3px solid var(--chocolate);
  pointer-events: none;
}

.tl { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.tr { top: 10px; right: 10px; border-left: 0; border-bottom: 0; }
.bl { bottom: 10px; left: 10px; border-right: 0; border-top: 0; }
.br { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }

.banner-frame {
  margin: 8px 0 28px;
  padding: 8px 12px;
  background: var(--chocolate) url("../assets/houndstooth.svg") center / 28px 28px;
  border: 3px solid var(--chocolate);
  border-radius: 28px;
  box-shadow: 8px 10px 0 rgba(58, 25, 8, 0.25);
  animation: frameglow 4.6s ease-in-out infinite;
}

.banner-clip {
  aspect-ratio: 3 / 1;
  overflow: hidden;
  border-radius: 16px;
  border: 3px solid var(--cream);
  background: var(--sky);
}

.banner-clip img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.socials a {
  width: 118px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--chocolate);
  font-weight: 800;
  text-align: center;
}

.soc-ico {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  background: var(--cream);
  border: 3px solid var(--chocolate);
  border-radius: 50%;
  box-shadow: 4px 4px 0 var(--gold);
  transition: transform 0.25s ease;
}

.soc-ico img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.socials a:hover .soc-ico { transform: translateY(-6px) rotate(-8deg); }

.footer {
  position: relative;
  z-index: 1;
  color: var(--cream);
  background: var(--chocolate);
  padding: 0 0 28px;
}

.footer::before {
  content: "";
  display: block;
  height: 18px;
  margin-bottom: 28px;
  background: url("../assets/houndstooth.svg") center / 22px 22px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
}

.footer-brand {
  margin: 0;
  font-family: var(--display);
  font-size: 2.4rem;
  line-height: 0.9;
  color: var(--word);
  -webkit-text-stroke: 0.02em var(--shadow);
  paint-order: stroke fill;
}

.footer p { margin: 6px 0 0; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-weight: 800;
}

.footer-links a { text-decoration: underline; text-underline-offset: 3px; }

.disclaimer {
  width: min(1080px, calc(100% - 40px));
  margin: 18px auto 0;
  color: #f6dcc0;
  font-size: 0.92rem;
}

.reveal { transition: opacity 0.7s ease, transform 0.7s ease; }

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
}

.js .reveal.in {
  opacity: 1;
  transform: none;
}

.js .step.reveal.in:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--gold);
}

.steps .step:nth-child(2) { transition-delay: 0.08s; }
.steps .step:nth-child(3) { transition-delay: 0.16s; }
.steps .step:nth-child(4) { transition-delay: 0.24s; }

.rise { animation: rise 0.8s both; }
.d1 { animation-delay: 0.08s; }
.d2 { animation-delay: 0.16s; }
.d3 { animation-delay: 0.32s; }
.d4 { animation-delay: 0.46s; }
.d5 { animation-delay: 0.58s; }

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes spin { to { transform: rotate(360deg); } }

@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-18px, 16px, 0); }
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes sheen {
  0% { transform: translateX(-120%); }
  55%, 100% { transform: translateX(120%); }
}

@keyframes grain {
  from { background-position: 0 0; }
  to { background-position: 180px 90px; }
}

@keyframes flash {
  0% { opacity: 0.92; }
  40% { opacity: 0.12; }
  100% { opacity: 0; }
}

@keyframes draw { to { stroke-dashoffset: 0; } }

@keyframes rec {
  70% { box-shadow: 0 0 0 8px rgba(161, 46, 54, 0); }
  100% { box-shadow: 0 0 0 0 rgba(161, 46, 54, 0); }
}

@keyframes bulb {
  0%, 100% { opacity: 0.35; transform: scale(0.86); }
  50% { opacity: 1; transform: scale(1); background: var(--word); }
}

@keyframes wobble {
  0%, 100% { transform: rotate(6deg); }
  50% { transform: rotate(11deg); }
}

@keyframes frameglow {
  0%, 100% { box-shadow: 8px 10px 0 rgba(58, 25, 8, 0.25); }
  50% { box-shadow: 8px 10px 0 var(--gold); }
}

section[id] { scroll-margin-top: 100px; }

@media (max-width: 1320px) {
  .hound-a { display: none; }
}

@media (max-width: 980px) {
  .arcs-parallax { display: none; }
}

@media (max-width: 860px) {
  .menu-btn {
    display: grid;
    grid-template-columns: 18px;
    align-content: center;
    justify-content: center;
  }

  .nav {
    border-radius: 24px;
    flex-wrap: wrap;
    align-items: center;
  }

  .nav-links {
    display: none;
    order: 5;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    margin: 0;
    padding: 4px 4px 8px;
  }

  .nav.is-open .nav-links { display: flex; }

  .nav-links a { padding: 12px; }

  .hero { min-height: auto; }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 104px;
    padding-bottom: 18px;
    text-align: center;
  }

  .hero-logo { width: min(240px, 64vw); }

  .nav-x { display: none; }

  .cta { width: 100%; }

  .hero-copy { margin: 0 auto; }

  .eyebrow { justify-content: center; }
  .eyebrow.live { justify-content: center; }

  .hero-lede, .swoosh { margin-left: auto; margin-right: auto; }

  .chips, .cta { justify-content: center; }

  .about-grid,
  .buy-layout,
  .chart-head,
  .footer-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .chart-head,
  .footer-grid {
    align-items: start;
  }

  .frame { margin: 0 auto; }

  .panel { padding: 28px 18px 32px; border-radius: 26px; }

  .footer-links { justify-content: flex-start; }
}

@media (max-width: 680px) {
  .steps, .specs { grid-template-columns: 1fr; }

  .finder,
  .finder iframe { height: 520px; min-height: 520px; }

  .hero h1 { font-size: clamp(3.6rem, 20vw, 5.2rem); }

  .cta { flex-direction: column; align-items: center; }

  .btn {
    white-space: normal;
    width: min(100%, 280px);
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .flash { display: none; }

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .marquee-track { justify-content: center; width: 100%; }
  .marquee-track span:last-child { display: none; }
}
