:root {
  --bg: #fff8e8;
  --bg-soft: #f5ecff;
  --surface: #fffdf4;
  --surface-2: #f8edff;
  --ink: #211c31;
  --muted: #655e78;
  --white: #ffffff;
  --cream: #fff8db;
  --pink: #ffc0cc;
  --pink-strong: #ff7899;
  --lavender: #8b85b7;
  --mint: #9df1d3;
  --shadow: rgba(0, 0, 0, 0.28);
  --glass: rgba(255, 255, 255, 0.42);
  --glass-strong: rgba(255, 255, 255, 0.64);
  --glass-soft: rgba(255, 248, 219, 0.42);
  --glass-border: rgba(255, 255, 255, 0.72);
  --glass-shadow: 0 24px 70px rgba(83, 69, 113, 0.18);
  --radius: 26px;
  --radius-small: 18px;
  --radius-pill: 999px;
  --font-display: "Fredoka", "Trebuchet MS", sans-serif;
  --font-body: "Nunito", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 6%, rgba(157, 241, 211, 0.42), transparent 28%),
    radial-gradient(circle at 82% 14%, rgba(255, 120, 153, 0.2), transparent 26%),
    radial-gradient(circle at 58% 44%, rgba(139, 133, 183, 0.22), transparent 32%),
    linear-gradient(135deg, #fffaf0 0%, #f6efff 45%, #fef6dc 100%);
  background-attachment: fixed;
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
}

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

a,
button {
  font: inherit;
}

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

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.42);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 12px 34px rgba(83, 69, 113, 0.08);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  min-width: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  overflow: hidden;
  border: 2px solid var(--cream);
  border-radius: 50%;
  background: var(--white);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.35);
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy span {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
}

.brand-copy small {
  margin-top: 3px;
  color: var(--pink);
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2.5vw, 28px);
  color: var(--ink);
  font-weight: 800;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 3px;
  content: "";
  border-radius: var(--radius-pill);
  background: var(--pink);
  transition: width 180ms ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 10px 24px rgba(83, 69, 113, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  margin: 4px 0;
  border-radius: var(--radius-pill);
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 112px clamp(18px, 5vw, 72px) 138px;
  background:
    radial-gradient(circle at 76% 32%, rgba(255, 192, 204, 0.5), transparent 28%),
    radial-gradient(circle at 12% 22%, rgba(157, 241, 211, 0.42), transparent 24%),
    linear-gradient(180deg, rgba(255, 250, 240, 0.82) 0%, rgba(248, 237, 255, 0.72) 58%, rgba(255, 241, 245, 0.68) 100%);
  color: var(--ink);
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  max-width: 1220px;
  margin: 0 auto;
}

.hero-copy {
  grid-column: 2;
}

.speech {
  position: relative;
  display: inline-flex;
  max-width: 100%;
  padding: 12px 18px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.48);
  color: var(--ink);
  box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
}

.speech::after {
  position: absolute;
  left: 28px;
  bottom: -13px;
  width: 22px;
  height: 22px;
  content: "";
  border-right: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.48);
  transform: rotate(45deg);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
}

.hero h1 {
  margin: 34px 0 20px;
  max-width: 760px;
  font-size: clamp(3.3rem, 7vw, 7.5rem);
  line-height: 0.92;
}

.hero h1 span {
  display: block;
}

.ticker {
  color: var(--pink);
  text-shadow: 4px 4px 0 #ffffff, 7px 7px 0 rgba(139, 133, 183, 0.28);
}

.lead {
  max-width: 690px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn,
.copy-ticker,
.social-card {
  min-height: 48px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  cursor: pointer;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.btn:hover,
.copy-ticker:hover,
.social-card:hover {
  transform: translate(2px, 2px);
  box-shadow: 0 16px 45px rgba(83, 69, 113, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 138px;
  padding: 13px 18px;
  font-weight: 900;
  white-space: nowrap;
}

.btn.primary {
  background: rgba(255, 192, 204, 0.66);
  color: var(--ink);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.56);
  color: var(--ink);
}

.btn.ghost {
  background: rgba(157, 241, 211, 0.62);
  color: var(--ink);
}

.hero-art {
  position: relative;
  display: grid;
  grid-column: 1;
  grid-row: 1;
  place-items: center;
  min-height: 430px;
}

.moon-card {
  position: relative;
  width: min(90%, 500px);
  aspect-ratio: 1 / 1;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.cat-art {
  position: absolute;
  left: 49%;
  top: 52%;
  width: 96%;
  max-width: none;
  filter: drop-shadow(0 26px 30px rgba(83, 69, 113, 0.24));
  transform: translate(-50%, -50%) rotate(-6deg);
  animation: floatCat 4.5s ease-in-out infinite;
}

.spark {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 3px solid var(--pink-strong);
  transform: rotate(45deg);
}

.spark-a {
  top: 14%;
  left: 18%;
}

.spark-b {
  right: 13%;
  top: 28%;
  border-color: var(--lavender);
}

.spark-c {
  right: 20%;
  bottom: 15%;
  border-color: var(--mint);
}

.hero-cloud {
  position: absolute;
  z-index: 1;
  width: 160px;
  height: 52px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-cloud::before,
.hero-cloud::after {
  position: absolute;
  bottom: 18px;
  content: "";
  border-radius: 50%;
  background: inherit;
}

.hero-cloud::before {
  left: 24px;
  width: 58px;
  height: 58px;
}

.hero-cloud::after {
  right: 28px;
  width: 74px;
  height: 74px;
}

.cloud-one {
  left: 4%;
  top: 22%;
}

.cloud-two {
  right: 10%;
  top: 14%;
  transform: scale(0.78);
}

.cloud-three {
  left: 48%;
  bottom: 18%;
  transform: scale(0.58);
}

.wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 130px;
}

.wave svg {
  width: 100%;
  height: 100%;
}

.wave path {
  fill: var(--surface);
}

.signal-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
  max-width: 1180px;
  margin: -72px auto 0;
  padding: 18px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background: var(--glass-soft);
  box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  z-index: 5;
}

.signal-item {
  display: grid;
  align-content: center;
  gap: 5px;
  min-height: 78px;
  padding: 8px 18px;
  text-align: center;
}

.signal-item span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.signal-item strong {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.6rem);
}

.divider {
  width: 2px;
  background: rgba(23, 21, 34, 0.14);
}

.section {
  padding: clamp(72px, 9vw, 124px) clamp(18px, 5vw, 72px);
  background: rgba(255, 253, 244, 0.42);
}

.section:nth-of-type(odd) {
  background: rgba(248, 237, 255, 0.42);
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(230px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(26px, 5vw, 70px);
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--lavender);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.8vw, 4.8rem);
  line-height: 0.98;
}

.section p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.story-copy {
  max-width: 740px;
}

.callout {
  padding: 20px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background: rgba(157, 241, 211, 0.52);
  box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--ink) !important;
  font-family: var(--font-display);
  font-size: clamp(1.32rem, 2vw, 1.8rem) !important;
  font-weight: 700;
  line-height: 1.2 !important;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.step-card {
  min-height: 268px;
  padding: 22px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background: var(--glass);
  box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.step-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  background: rgba(255, 192, 204, 0.64);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
}

.step-card h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.step-card p {
  margin-bottom: 0;
  font-size: 0.98rem;
  line-height: 1.55;
}

.token-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

.token-panel,
.roadmap-panel {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background: var(--glass-soft);
  box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.roadmap-panel {
  background: var(--glass);
}

.token-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 0;
  border-top: 1px solid rgba(23, 21, 34, 0.16);
}

.token-line span {
  color: var(--muted);
  font-weight: 900;
}

.token-line strong {
  text-align: right;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
}

.token-line .contract-value {
  max-width: min(100%, 360px);
  overflow-wrap: anywhere;
  font-size: clamp(0.82rem, 1.35vw, 1.05rem);
  line-height: 1.3;
}

.copy-ticker {
  width: 100%;
  margin-top: 18px;
  padding: 13px 18px;
  background: rgba(255, 192, 204, 0.66);
  color: var(--ink);
  font-weight: 900;
}

.roadmap-panel ul {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.roadmap-panel li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 1.06rem;
  font-weight: 750;
  line-height: 1.55;
}

.roadmap-panel li::before {
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 12px;
  height: 12px;
  content: "";
  border: 1px solid rgba(33, 28, 49, 0.42);
  background: rgba(157, 241, 211, 0.82);
  transform: rotate(45deg);
}

.faq {
  background: rgba(255, 253, 244, 0.36);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 108px;
  margin-bottom: 0;
}

.faq-intro p:not(.eyebrow):not(.faq-close) {
  max-width: 420px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.faq-card {
  position: relative;
  min-height: 0;
  padding: 0;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background: var(--glass);
  box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}

.faq-card summary {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 28px;
  gap: 20px;
  align-items: center;
  min-height: 86px;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary::after {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  content: "+";
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.faq-card[open] summary::after {
  content: "-";
}

.faq-card span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  background: rgba(255, 192, 204, 0.64);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
  font-family: var(--font-display);
  font-weight: 800;
}

.faq-card h3 {
  margin-bottom: 0;
  font-size: 1.35rem;
  line-height: 1.12;
}

.faq-card p {
  margin: 0;
  padding: 0 24px 24px 82px;
  font-size: 0.98rem;
  line-height: 1.6;
}

.faq-card strong {
  color: var(--ink);
  font-weight: 900;
}

.faq-close {
  max-width: 420px;
  margin: 28px 0 0;
  padding: 20px 24px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  background: rgba(157, 241, 211, 0.54);
  box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: var(--ink) !important;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.6rem) !important;
  font-weight: 800;
  line-height: 1.25 !important;
  text-align: left;
}

.community {
  background:
    linear-gradient(180deg, rgba(248, 237, 255, 0.42) 0%, rgba(255, 248, 219, 0.36) 100%);
}

.community-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.8fr);
  gap: clamp(26px, 5vw, 68px);
  align-items: center;
}

.community-copy p {
  max-width: 690px;
}

.social-grid {
  display: grid;
  gap: 16px;
}

.social-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 78px;
  padding: 18px 20px;
  border-color: var(--glass-border);
  background: var(--glass);
  color: var(--ink);
  text-align: left;
}

.social-card span {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
}

.social-card strong {
  color: var(--lavender);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 -14px 40px rgba(83, 69, 113, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: var(--muted);
}

.footer strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.footer span {
  color: var(--pink);
  font-weight: 900;
}

.footer p {
  max-width: 680px;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  text-align: right;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  max-width: min(360px, calc(100vw - 36px));
  padding: 14px 16px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background: rgba(157, 241, 211, 0.72);
  color: var(--ink);
  box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatCat {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(-6deg);
  }

  50% {
    transform: translate(-50%, -55%) rotate(-3deg);
  }
}

@media (max-width: 960px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 18px;
    display: none;
    width: min(260px, calc(100vw - 36px));
    padding: 12px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    background: rgba(255, 248, 219, 0.62);
    box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.82);
    color: var(--ink);
    gap: 8px;
    justify-content: stretch;
    align-items: stretch;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

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

  .nav-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 14px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.5);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
    text-align: center;
  }

  .nav-links a::after {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner,
  .two-column,
  .token-layout,
  .community-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    grid-column: auto;
    text-align: center;
  }

  .speech,
  .hero-actions {
    justify-content: center;
  }

  .speech {
    margin-inline: auto;
  }

  .speech::after {
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
  }

  .hero-art {
    grid-column: auto;
    grid-row: auto;
    min-height: 330px;
  }

  .moon-card {
    width: min(76%, 390px);
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }

  .faq-intro p:not(.eyebrow):not(.faq-close),
  .faq-close {
    max-width: 100%;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .signal-strip {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .divider {
    display: none;
  }

  .signal-item {
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-small);
    background: rgba(255, 255, 255, 0.26);
  }

  .footer {
    display: grid;
  }

  .footer p {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .navbar {
    padding-inline: 14px;
  }

  .brand-copy span {
    max-width: 138px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    padding: 100px 16px 118px;
  }

  .hero-cloud {
    display: none;
  }

  .hero h1 {
    grid-row: 3;
    font-size: 3.2rem;
    margin: 12px 0 18px;
    text-align: center;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-copy {
    display: contents;
  }

  .speech {
    grid-row: 1;
    margin-bottom: 4px;
  }

  .lead {
    grid-row: 4;
    text-align: center;
  }

  .hero-actions {
    grid-row: 5;
  }

  .hero-art {
    grid-row: 2;
    min-height: 190px;
    margin: 2px 0 10px;
  }

  .moon-card {
    width: min(62%, 220px);
  }

  .signal-strip {
    margin: -54px 14px 0;
    padding: 12px;
    box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  }

  .section {
    padding-inline: 16px;
  }

  .section h2 {
    font-size: 2.35rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: auto;
  }

  .faq-card {
    min-height: auto;
  }

  .faq-card summary {
    grid-template-columns: 34px minmax(0, 1fr) 26px;
    gap: 12px;
    min-height: 74px;
    padding: 18px 16px;
  }

  .faq-card span {
    width: 34px;
    height: 34px;
  }

  .faq-card h3 {
    font-size: 1.05rem;
  }

  .faq-card p {
    padding: 0 16px 20px 62px;
  }

  .token-line {
    display: grid;
    gap: 6px;
  }

  .token-line strong {
    text-align: left;
  }

  .social-card {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

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