:root {
  --bg: #070605;
  --bg-2: #0e0c0a;
  --fg: #f4f1ea;
  --fg-dim: #a39b90;
  --fg-mute: #6a635a;
  --line: rgba(244, 241, 234, 0.1);
  --ember: #e3874a;
  --mars: #c45c32;
  --glow: rgba(227, 135, 74, 0.55);
  --sans: "Geist", "Inter", system-ui, sans-serif;
  --serif: "Instrument Serif", "Times New Roman", serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --pad: clamp(1.1rem, 3.5vw, 3.25rem);
  --section: clamp(2.4rem, 5vw, 3.4rem);
  --radius: 14px;
  --dial: 301.6;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
}

::selection {
  background: rgba(196, 92, 50, 0.35);
}

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

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

button,
input {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.blob {
  position: fixed;
  width: 420px;
  height: 420px;
  margin: -210px 0 0 -210px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
  background: radial-gradient(circle, rgba(227, 135, 74, 0.16), transparent 62%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.4s;
}

.blob.is-on {
  opacity: 1;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  z-index: 70;
  background: linear-gradient(90deg, #c45c32, #f0c27a);
  box-shadow: 0 0 12px var(--glow);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem var(--pad);
  background: linear-gradient(to bottom, rgba(7, 6, 5, 0.72), transparent);
}

.nav.is-solid {
  background: rgba(7, 6, 5, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: 1.18rem;
  line-height: 1;
}

.wordmark {
  font-family: var(--serif);
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 0.3em;
  margin-right: -0.3em;
  text-transform: uppercase;
  color: #f3efe6;
  line-height: 1;
  transform: translateY(0.03em);
}

.brand-mark {
  width: 1.08em;
  height: 1.08em;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.brand-mark.tiny {
  width: 1.15rem;
  height: 1.15rem;
}

.nav-links {
  display: flex;
  gap: 1.35rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--fg-dim);
}

.nav-links a.is-active,
.nav-links a:hover,
.nav-links button:hover,
.nav-cta:hover {
  color: var(--fg);
}

.nav-links button {
  background: none;
  border: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  font-weight: 500;
}

.nav-end {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--fg-dim);
  font-size: 0.88rem;
  font-weight: 500;
}

.nav-cta {
  font: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  border: 1px solid var(--line);
  padding: 0.48rem 0.85rem;
  border-radius: 999px;
  background: transparent;
  color: var(--fg);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.nav-cta:hover {
  border-color: var(--fg);
}

.arrive {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.arrive-photo {
  position: absolute;
  inset: -8%;
  background: url("./images/mars-horizon.png") center 62% / cover no-repeat;
  transform: scale(1.04);
  animation: ken 28s ease-in-out infinite alternate;
  image-rendering: auto;
}

.arrive-dust {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.arrive-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(7, 6, 5, 0.82) 0%, rgba(7, 6, 5, 0.12) 42%, rgba(7, 6, 5, 0.35) 100%),
    radial-gradient(ellipse 70% 40% at 50% 88%, rgba(196, 92, 50, 0.28), transparent 70%);
}

.arrive-copy {
  position: relative;
  z-index: 2;
  padding: 0;
  max-width: 26rem;
}

.arrive-kicker {
  margin: 0 0 0.55rem;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ember);
}

.arrive h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.1rem, 5.4vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.arrive-scroll {
  position: absolute;
  z-index: 2;
  left: var(--pad);
  bottom: 1.15rem;
  font-size: 0.82rem;
  color: var(--fg-dim);
}

.arrive-scroll::after {
  content: "";
  display: inline-block;
  width: 2.4rem;
  height: 1px;
  margin-left: 0.55rem;
  background: var(--fg-mute);
  vertical-align: middle;
  animation: pulseLine 2.2s ease-in-out infinite;
}

@keyframes ken {
  from {
    transform: scale(1.06) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.12) translate3d(-1.4%, -1%, 0);
  }
}

@keyframes pulseLine {
  50% {
    opacity: 0.25;
    width: 3.2rem;
  }
}

.hero,
.layer,
.demo,
.ask,
.coin,
.wallet,
.faq,
.steps,
.legal {
  padding: var(--section) var(--pad);
}

.hero {
  padding-top: calc(var(--section) + 2.4rem);
}

.hero-name,
.section-kicker h2,
.coin h2,
.wallet h2,
.faq h2,
.voices-head h2,
.arrive h1 {
  font-family: var(--sans);
}

.transmit,
.eyebrow,
.card-kicker,
.panel-label,
.hold,
.token-meta,
.live,
.source,
.dial-read span,
.dial-hint,
.lumen-kind,
.move-light,
.hero-stats dt,
.token-card dt,
.wallet-card dt {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ember);
}

.hero h2 {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.hero-name {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.hero-line {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 400;
  color: var(--fg-dim);
  letter-spacing: -0.03em;
}

.hero-lede,
.lead,
.note,
.tier-copy {
  max-width: 40rem;
  color: var(--fg-dim);
}

.hero-lede {
  margin: 1rem 0 0;
}

.hero-actions,
.cta-row,
.wallet-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.1rem;
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.82rem;
  color: var(--fg-mute);
}

.hero-stats {
  margin: 1.6rem 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.hero-stats dd {
  margin: 0.2rem 0 0;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: 0.75rem 0;
  color: var(--fg-dim);
  font-size: 0.88rem;
  white-space: nowrap;
}

.ticker-track {
  display: flex;
  width: max-content;
  flex-wrap: nowrap;
  will-change: transform;
}

.ticker-unit {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.ticker-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 2.25rem;
  padding-right: 2.25rem;
}

.ticker-group span::after {
  content: "·";
  margin-left: 2.25rem;
  color: var(--mars);
}

@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.section-kicker h2,
.coin h2,
.wallet h2,
.faq h2,
.voices-head h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.bento {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.65rem;
}

.bento-card {
  position: relative;
  overflow: hidden;
  grid-column: span 4;
  padding: 1.15rem 1.15rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 241, 208, 0.04), transparent 50%), var(--bg-2);
  transition: transform 0.35s, border-color 0.35s;
}

.bento-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(227, 135, 74, 0.16), transparent 46%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.bento-card:hover {
  transform: translateY(-3px);
  border-color: rgba(227, 135, 74, 0.4);
}

.bento-card:hover::after {
  opacity: 1;
}

.bento-card.span-6 {
  grid-column: span 6;
}

.bento-card h3,
.steps h3,
.token-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.bento-card p,
.steps p {
  margin: 0;
  color: var(--fg-dim);
  font-size: 0.92rem;
}

.demo {
  padding-top: 0.4rem;
}

.demo-shell {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1.1fr;
  gap: 0.65rem;
}

.demo-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #090807;
  padding: 1rem;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.event-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}

.event-grid button,
.ask-chips button,
.tier {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--fg);
  padding: 0.62rem 0.7rem;
  text-align: left;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.event-grid button:hover,
.ask-chips button:hover,
.tier:hover {
  border-color: rgba(227, 135, 74, 0.7);
  background: rgba(196, 92, 50, 0.08);
}

.feed {
  margin-top: 0.85rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--fg-dim);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.feed div {
  display: grid;
  grid-template-columns: 3.1rem 1fr;
  gap: 0.6rem;
}

.meter-panel {
  align-items: center;
  text-align: center;
  overflow: visible;
}

.dial {
  position: relative;
  width: 168px;
  height: 168px;
  overflow: visible;
}

.dial-glow {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 135, 74, 0.32) 0%, rgba(227, 135, 74, 0.08) 48%, transparent 72%);
  pointer-events: none;
}

.dial svg {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  transform: rotate(-90deg);
}

.dial-track,
.dial-fill {
  fill: none;
  stroke-width: 5.5;
}

.dial-track {
  stroke: rgba(244, 241, 234, 0.12);
}

.dial-fill {
  stroke: var(--ember);
  stroke-linecap: round;
  stroke-dasharray: var(--dial);
  stroke-dashoffset: calc(var(--dial) * (1 - var(--p, 0.12)));
  transition: stroke-dashoffset 0.6s ease, stroke 0.4s;
}

.dial.hot .dial-fill {
  stroke: #e07a48;
}

.dial.hot .dial-glow {
  background: radial-gradient(circle, rgba(224, 122, 72, 0.38) 0%, rgba(224, 122, 72, 0.1) 48%, transparent 72%);
}

.dial-read {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
}

.dial-read strong {
  font-size: 2.1rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.dial-hint {
  margin: 0.7rem 0 0;
  color: var(--fg-mute);
}

.lumen-card {
  flex: 1;
  border: 1px solid rgba(227, 135, 74, 0.28);
  border-radius: var(--radius);
  padding: 1rem;
  background: linear-gradient(180deg, rgba(196, 92, 50, 0.1), transparent);
}

.lumen-card p {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  line-height: 1.35;
}

.ask {
  padding-top: 0.2rem;
}

.ask-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.72rem 1rem;
  background: rgba(14, 12, 10, 0.85);
  box-shadow: 0 0 0 1px rgba(227, 135, 74, 0.06), 0 20px 50px rgba(0, 0, 0, 0.25);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ask-bar:focus-within {
  border-color: rgba(227, 135, 74, 0.55);
  box-shadow: 0 0 0 1px rgba(227, 135, 74, 0.2), 0 0 40px rgba(196, 92, 50, 0.12);
}

.ask-mark {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #f3d7a0, #c45c32 55%, #a34424);
  box-shadow: 0 0 14px var(--glow);
  animation: pulseMark 3s ease-in-out infinite;
}

@keyframes pulseMark {
  50% {
    transform: scale(1.15);
    box-shadow: 0 0 22px var(--glow);
  }
}

.ask-bar input {
  width: 100%;
  background: none;
  border: 0;
  outline: none;
}

.ask-bar kbd {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--fg-mute);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.12rem 0.35rem;
}

.ask-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.7rem;
}

.ask-out {
  margin-top: 0.9rem;
  max-width: 44rem;
  font-size: 1.12rem;
  color: var(--fg-dim);
  letter-spacing: -0.02em;
}

.voices {
  padding: 1.6rem 0 var(--section);
}

.voices-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0 var(--pad) 0.9rem;
}

.voices-head h2 {
  margin: 0;
}

.move-light {
  margin: 0;
  color: var(--ember);
}

.voices-stage {
  position: relative;
  min-height: 68vh;
  margin: 0 var(--pad);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #050403;
  overflow: hidden;
  cursor: none;
}

.cursor-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  margin: -3.5px 0 0 -3.5px;
  border-radius: 50%;
  background: #fff6d8;
  box-shadow: 0 0 18px 6px rgba(255, 246, 216, 0.35);
  pointer-events: none;
  z-index: 3;
}

.spotlight {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(circle, rgba(255, 246, 216, 0.22) 0%, rgba(232, 160, 90, 0.08) 28%, transparent 70%);
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}

.voices-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  padding: 1.4rem 1.2rem 2rem;
  mask-image: radial-gradient(circle 210px at var(--lx, 50%) var(--ly, 40%), #000 0%, #000 38%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle 210px at var(--lx, 50%) var(--ly, 40%), #000 0%, #000 38%, transparent 72%);
}

.tweet {
  grid-column: span 4;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(242, 238, 230, 0.08);
  border-radius: 12px;
  background: rgba(18, 17, 15, 0.72);
  font-size: 0.84rem;
  color: #d8d3c8;
}

.tweet.t1 {
  grid-column: 1 / 6;
}
.tweet.t2 {
  grid-column: 8 / 13;
  margin-top: 1.4rem;
}
.tweet.t3 {
  grid-column: 2 / 7;
}
.tweet.t4 {
  grid-column: 7 / 13;
}
.tweet.t5 {
  grid-column: 1 / 6;
}
.tweet.t6 {
  grid-column: 6 / 12;
}

.tweet header {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  margin-bottom: 0.55rem;
}

.tweet header div {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.tweet header strong {
  font-size: 0.82rem;
  font-weight: 600;
}

.tweet header span,
.tweet a {
  font-size: 0.7rem;
  color: var(--fg-mute);
}

.tweet p {
  margin: 0 0 0.7rem;
}

.tweet a {
  color: var(--ember);
}

.av {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: block;
  object-fit: cover;
  background: #2a2824;
}

.av-ct {
  background: #1432c8;
  color: #fff;
}
.av-look {
  background: #1a3548;
  color: #fff;
}
.av-lens {
  background: #2a2218;
  color: #e8d4b8;
}
.av-bubble {
  background: #3d2a6b;
  color: #fff;
}
.av-sarah {
  background: #f2b6c6;
  color: #1a1012;
}
.av-space {
  background: #101014;
  color: #9ee7c2;
}

.steps ol {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  border-top: 1px solid var(--line);
}

.steps li {
  padding-top: 1rem;
}

.steps li span {
  font-size: 0.75rem;
  color: var(--ember);
}

.mirror {
  padding: 2.6rem var(--pad);
  border-block: 1px solid var(--line);
}

.mirror p {
  margin: 0;
  font-size: clamp(1.8rem, 5vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.mirror .accent {
  color: #fff1d0;
  font-weight: 400;
}

.mirror .quiet {
  margin-top: 0.9rem;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--fg-dim);
  letter-spacing: -0.02em;
}

.coin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.95fr);
  gap: 1.5rem;
  align-items: start;
}

.tiers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  margin: 1.1rem 0 0.8rem;
}

.tier {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.tier strong {
  font-size: 1.05rem;
  font-weight: 600;
}

.tier span {
  font-size: 0.75rem;
  color: var(--fg-mute);
}

.tier.is-on {
  border-color: var(--ember);
  background: rgba(196, 92, 50, 0.12);
}

.token-card,
.wallet-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem;
  background: var(--bg-2);
}

.token-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  color: var(--fg-mute);
}

.live {
  color: #8fbf7a;
}

.verified {
  margin: 0.8rem 0 0.3rem;
  font-size: 0.78rem;
  color: var(--ember);
}

.token-card h3 span {
  color: var(--fg-mute);
  font-size: 0.95rem;
}

.token-card dl,
.wallet-card dl {
  margin: 0.9rem 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.token-card dd,
.wallet-card dd {
  margin: 0.2rem 0 0;
}

.copy {
  background: none;
  border: 0;
  padding: 0;
  text-align: left;
}

.wallet {
  border-top: 1px solid var(--line);
}

.wallet-status {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: var(--fg-dim);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--fg);
  font-size: 0.9rem;
  font-weight: 500;
  transition: transform 0.18s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
  will-change: transform;
}

.btn.primary {
  background: #f3efe6;
  color: #111;
  border-color: #f3efe6;
}

.btn.primary:hover {
  background: #fff;
  box-shadow: 0 0 28px rgba(243, 239, 230, 0.25);
}

.btn.ghost {
  background: rgba(8, 8, 7, 0.28);
  border-color: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(8px);
}

.btn.ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  pointer-events: none;
}

.faq-list {
  margin-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  gap: 0.9rem;
  align-items: baseline;
  padding: 0.95rem 0;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  font-size: 0.75rem;
  color: var(--fg-mute);
  min-width: 1.5rem;
}

.faq-list details p {
  margin: 0 0 1rem 2.4rem;
  max-width: 42rem;
  color: var(--fg-dim);
}

.faq-list details[open] summary {
  color: #fff1d0;
}

.closer {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 4.5rem var(--pad) 1.4rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 50% at 82% 48%, rgba(196, 92, 50, 0.2), transparent 62%),
    linear-gradient(to top, #140806, #070605 58%);
}

.closer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(240px, 0.9fr);
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: center;
  flex: 1;
}

.closer-kicker {
  margin: 0 0 0.65rem;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.closer h2 {
  margin: 0;
  font-size: clamp(1.7rem, 4.4vw, 3.1rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.closer-copy {
  position: relative;
  z-index: 2;
  max-width: 36rem;
}

.closer-visual {
  position: relative;
  min-height: min(58vh, 540px);
  display: grid;
  place-items: center;
}

.mars-logo {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  aspect-ratio: 1;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 48px rgba(196, 92, 50, 0.38));
}

.orb-aura {
  position: absolute;
  width: 68%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 196, 120, 0.42) 0%, rgba(196, 92, 50, 0.14) 46%, transparent 72%);
  filter: blur(22px);
  animation: aura 6.5s ease-in-out infinite;
}

@keyframes aura {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}

.closer-foot {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  z-index: 2;
}

.closer-foot p,
.closer-foot nav {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(242, 238, 230, 0.52);
}

.closer-foot nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1.1rem;
}

.legal {
  padding: 2.2rem var(--pad) 2.6rem;
  border-top: 1px solid var(--line);
}

.legal h2 {
  margin: 0 0 0.45rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.legal p {
  margin: 0;
  max-width: 40rem;
  color: var(--fg-dim);
}

@media (max-width: 980px) {
  .demo-shell,
  .coin-grid,
  .steps ol,
  .closer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats,
  .bento {
    grid-template-columns: 1fr 1fr;
  }

  .bento-card,
  .bento-card.span-6 {
    grid-column: span 1;
  }

  .closer-copy {
    order: 1;
  }

  .closer-visual {
    min-height: 280px;
    order: 2;
  }
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 0.4rem var(--pad) 1rem;
    background: rgba(7, 6, 5, 0.96);
    border-bottom: 1px solid var(--line);
  }

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

  .nav-links a,
  .nav-links button {
    padding: 0.65rem 0;
  }

  .nav-toggle {
    display: block;
  }

  .blob {
    display: none;
  }
}

@media (max-width: 720px) {
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .voices-grid,
  .tweet.t1,
  .tweet.t2,
  .tweet.t3,
  .tweet.t4,
  .tweet.t5,
  .tweet.t6 {
    display: block;
  }

  .tweet {
    margin: 0 0 0.8rem;
  }

  .voices-stage {
    cursor: auto;
    min-height: auto;
  }

  .voices-grid {
    mask-image: none;
    -webkit-mask-image: none;
    padding: 1rem;
  }

  .spotlight,
  .cursor-dot {
    display: none;
  }

  .faq-list details p {
    margin-left: 0;
  }

  .arrive-copy {
    max-width: none;
  }
}

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

  .arrive-photo,
  .orb-aura,
  .ask-mark,
  .arrive-scroll::after {
    animation: none;
  }
}

.arrive-copy {
  padding: 0;
  max-width: 26rem;
}

.arrive-stage {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 26rem);
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: end;
  padding: 0 var(--pad) 3.4rem;
  width: 100%;
}

.arrive-chat {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.85rem 0.9rem 0.95rem;
  border: 1px solid rgba(244, 241, 234, 0.14);
  border-radius: 18px;
  background: rgba(10, 8, 7, 0.52);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.arrive-chat-top {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.arrive-chat-top div {
  flex: 1;
  min-width: 0;
}

.arrive-chat-top strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.arrive-chat-top em {
  display: block;
  font-style: normal;
  font-size: 0.72rem;
  color: var(--fg-mute);
}

.arrive-thread {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  max-height: min(32vh, 220px);
  overflow: auto;
}

.msg-lite {
  margin: 0;
  padding: 0.55rem 0.7rem;
  border-radius: 12px;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--fg-dim);
}

.msg-lite span {
  display: block;
  font-size: 0.68rem;
  color: var(--ember);
  margin-bottom: 0.15rem;
}

.msg-lite.user {
  align-self: flex-end;
  background: rgba(244, 241, 234, 0.08);
}

.msg-lite.lumen {
  background: rgba(196, 92, 50, 0.12);
  border: 1px solid rgba(227, 135, 74, 0.16);
}

.arrive-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.7rem;
  color: var(--fg-mute);
}

.arrive-ask {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.7rem;
  align-items: center;
  border: 1px solid rgba(244, 241, 234, 0.16);
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  background: rgba(7, 6, 5, 0.4);
}

.arrive-ask input {
  background: none;
  border: 0;
  outline: none;
  width: 100%;
}

.arrive-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.arrive-chips button {
  border: 1px solid rgba(244, 241, 234, 0.14);
  background: rgba(7, 6, 5, 0.4);
  color: var(--fg);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.78rem;
}

.arrive-status {
  position: absolute;
  top: 4.5rem;
  left: var(--pad);
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(244, 241, 234, 0.14);
  background: rgba(7, 6, 5, 0.45);
  backdrop-filter: blur(12px);
  color: var(--fg);
  border-radius: 999px;
  padding: 0.38rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 500;
}

.pill i {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #8fbf7a;
  box-shadow: 0 0 8px #8fbf7a;
}

.aware-pill strong {
  color: var(--ember);
  font-weight: 600;
}

.arrive-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.mechanics {
  padding: var(--section) var(--pad);
}

.mech-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.mech-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.05rem;
  background: var(--bg-2);
}

.mech-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.mech-card p {
  margin: 0 0 0.7rem;
  color: var(--fg-dim);
  font-size: 0.9rem;
}

.gap-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.55rem;
  align-items: center;
  font-size: 0.75rem;
  color: var(--fg-mute);
}

.gap-row input {
  width: 100%;
  accent-color: var(--ember);
}

.gap-read,
.mech-note {
  margin: 0.55rem 0 0;
  font-size: 0.82rem;
  color: var(--ember);
}

.mem-bars {
  display: grid;
  gap: 0.55rem;
}

.mem-bars div span {
  display: block;
  font-size: 0.75rem;
  color: var(--fg-mute);
  margin-bottom: 0.25rem;
}

.mem-bars i {
  display: block;
  height: 6px;
  width: 42%;
  border-radius: 99px;
  background: linear-gradient(90deg, #c45c32, #f0c27a);
  transition: width 0.5s;
}

.timeline,
.mirror-list,
.inspect {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.82rem;
  color: var(--fg-dim);
}

.timeline li,
.mirror-list li,
.inspect li {
  padding: 0.32rem 0;
  border-bottom: 1px solid var(--line);
}

.modal[hidden],
.agent[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(8px);
}

.modal-sheet {
  position: relative;
  width: min(420px, 100%);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #100e0c;
  padding: 1.15rem 1.15rem 1.2rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.modal-sheet header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}

.modal-sheet h2 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.modal-lead {
  margin: 0 0 0.9rem;
  color: var(--fg-dim);
  font-size: 0.88rem;
}

.wallet-list,
.wallet-option {
  display: grid;
  gap: 0.45rem;
}

.wallet-option {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  text-align: left;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--fg);
  border-radius: 12px;
  padding: 0.75rem 0.8rem;
}

.wallet-option:hover {
  border-color: rgba(227, 135, 74, 0.55);
  background: rgba(196, 92, 50, 0.08);
}

.wallet-option em {
  display: block;
  font-style: normal;
  font-size: 0.75rem;
  color: var(--fg-mute);
}

.wo-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: #1a1613;
  color: var(--ember);
}

.wo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wo-mark-mm {
  background: #fff;
  padding: 0.18rem;
}

.wo-mark-mm img {
  object-fit: contain;
}

.wo-mark-wc {
  background: #3396ff;
}

.wo-mark-cb {
  background: #0052ff;
}

.wo-mark-rh {
  background: #ccff00;
}

.wo-mark-ph {
  background: #ab9ff2;
}

.wallet-option.is-on {
  border-color: rgba(227, 135, 74, 0.7);
  background: rgba(196, 92, 50, 0.1);
}

.wallet-option.is-on em {
  color: var(--ember);
}

.wallet-address {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.4rem;
}

.wallet-address label {
  font-size: 0.75rem;
  color: var(--fg-mute);
}

.wallet-address-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.45rem;
}

.wallet-address input {
  min-width: 0;
  border: 1px solid var(--line);
  background: #110f0d;
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  outline: none;
}

.wallet-address input:focus {
  border-color: rgba(227, 135, 74, 0.5);
}

.wallet-address .btn {
  min-height: 44px;
  padding: 0.55rem 1rem;
}

.wallet-error {
  margin: 0.15rem 0 0;
  font-size: 0.75rem;
  color: #d4a08a;
}

.icon-btn {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--fg-dim);
  border-radius: 8px;
  min-height: 36px;
  padding: 0 0.55rem;
}

body.is-agent {
  overflow: hidden;
}

.agent {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 260px 1fr;
  background: #090807;
}

.agent-side {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1rem 0.9rem;
  border-right: 1px solid var(--line);
  background: #0c0a09;
}

.agent-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: 1.05rem;
  line-height: 1;
}

.agent-brand .wordmark {
  font-size: 1em;
}

.agent-brand .brand-mark {
  width: 1.08em;
  height: 1.08em;
}

.side-new {
  width: 100%;
}

.agent-aware,
.agent-wallet {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem;
  background: transparent;
  color: var(--fg);
  text-align: left;
}

.agent-aware span,
.side-label {
  display: block;
  font-size: 0.72rem;
  color: var(--fg-mute);
  margin-bottom: 0.25rem;
}

.agent-aware strong {
  font-weight: 600;
}

.agent-aware i {
  display: block;
  height: 4px;
  margin-top: 0.45rem;
  width: 12%;
  border-radius: 99px;
  background: var(--ember);
  transition: width 0.4s;
}

.session-list {
  flex: 1;
  overflow: auto;
  margin: 0;
  padding: 0;
  list-style: none;
}

.session-list button {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: var(--fg-dim);
  padding: 0.45rem 0.35rem;
  border-radius: 8px;
}

.session-list button.is-on,
.session-list button:hover {
  background: rgba(244, 241, 234, 0.05);
  color: var(--fg);
}

.agent-tools {
  display: grid;
  gap: 0.35rem;
  font-size: 0.78rem;
}

.agent-tools button,
.chk {
  color: var(--fg-dim);
  background: none;
  border: 0;
  text-align: left;
  padding: 0;
}

.agent-main {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  min-height: 0;
}

.agent-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid var(--line);
}

.agent-top div:first-child {
  margin-right: auto;
}

.agent-body {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto auto;
  min-height: 0;
  min-width: 0;
}

.agent.is-split {
  grid-template-columns: 260px 1fr 280px;
}

.agent-split {
  display: none;
  border-left: 1px solid var(--line);
  padding: 1rem;
  background: #0c0a09;
}

.agent.is-split .agent-split {
  display: block;
}

.palette {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: start center;
  padding-top: 12vh;
  background: rgba(0, 0, 0, 0.45);
}

.palette[hidden] {
  display: none;
}

.palette-sheet {
  width: min(480px, 92vw);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #120f0d;
  padding: 0.7rem;
}

.palette-sheet input {
  width: 100%;
  border: 1px solid var(--line);
  background: #0b0908;
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  margin-bottom: 0.45rem;
}

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

.palette-sheet button {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: var(--fg);
  padding: 0.55rem 0.6rem;
  border-radius: 8px;
}

.palette-sheet button:hover,
.palette-sheet button.is-on {
  background: rgba(227, 135, 74, 0.12);
}

.palette-sheet p {
  margin: 0.4rem 0 0;
  font-size: 0.72rem;
  color: var(--fg-mute);
}

.agent-top p {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.agent-top span {
  font-size: 0.75rem;
  color: var(--fg-mute);
}

.agent-thread {
  overflow: auto;
  padding: 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.msg {
  max-width: 42rem;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  line-height: 1.45;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.msg.user {
  align-self: flex-end;
  background: rgba(244, 241, 234, 0.08);
}

.msg.lumen {
  background: rgba(196, 92, 50, 0.1);
  border: 1px solid rgba(227, 135, 74, 0.18);
}

.msg .who {
  display: block;
  font-size: 0.72rem;
  color: var(--ember);
  margin-bottom: 0.3rem;
}

.typing i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 3px;
  border-radius: 50%;
  background: var(--ember);
  animation: pulseMark 1s infinite;
}

.agent-follow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0 1.2rem 0.6rem;
}

.agent-follow button {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--fg-dim);
  border-radius: 999px;
  padding: 0.32rem 0.7rem;
  font-size: 0.78rem;
}

.agent-compose {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
  padding: 0.85rem 1.2rem 1.1rem;
  border-top: 1px solid var(--line);
}

.agent-compose input {
  border: 1px solid var(--line);
  background: #110f0d;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  outline: none;
}

.agent-compose input:focus {
  border-color: rgba(227, 135, 74, 0.5);
}

.agent-lock {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 0.7rem;
  padding: 2rem 1.4rem;
  background: rgba(9, 8, 7, 0.92);
  grid-row: 1 / -1;
  grid-column: 1 / -1;
}

.agent-lock[hidden] {
  display: none;
}

.agent-lock h2 {
  margin: 0;
  max-width: 22rem;
  font-family: var(--serif, "Instrument Serif", serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.15;
}

.agent-lock p {
  margin: 0;
  max-width: 26rem;
  color: var(--fg-dim);
}

.agent-lock-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.agent-lock-row .btn {
  min-height: 44px;
}

.agent-lock-status {
  font-size: 0.78rem;
  color: var(--fg-mute);
}

.agent.is-locked .agent-follow,
.agent.is-locked .agent-compose {
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 860px) {
  .mech-grid {
    grid-template-columns: 1fr;
  }

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

  .agent-side {
    display: none;
  }

  .agent.is-split {
    grid-template-columns: 1fr;
  }

  .agent-split {
    display: none !important;
  }

  .arrive-scroll {
    display: none;
  }

  .arrive-stage {
    grid-template-columns: 1fr;
    align-items: stretch;
    padding-bottom: 1.6rem;
  }

  .arrive-copy {
    max-width: none;
    padding-bottom: 0;
  }

  .arrive-thread {
    max-height: 22vh;
  }

  .arrive h1 {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }
}
