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

:root {
  --paper: #f6f6f4;
  --white: #ffffff;
  --ink: #111111;
  --dim: #5c5c5c;
  --line: rgba(17, 17, 17, 0.12);
  --line-strong: rgba(17, 17, 17, 0.28);
  --mark: #e8e8e8;
  --hat: #8d8d8d;
  --pom: #6b3d2a;
  --font-display: Inter, system-ui, sans-serif;
  --font-body: Inter, system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 68px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.hl {
  display: inline;
  background: var(--mark);
  padding: 0.05em 0.28em;
  border-radius: 4px;
  font-weight: 700;
  box-decoration-break: clone;
}

.center {
  text-align: center;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(246, 246, 244, 0.88);
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease-out), border-color 0.35s, backdrop-filter 0.35s;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line-strong);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, 92vw);
  margin: 0 auto;
  height: 100%;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
}

.nav-mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
  background: #fff;
  border: 1.5px solid var(--ink);
}

.nav-wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  line-height: 1;
}

.nav-ticker {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 0.22rem 0.45rem;
  background: var(--mark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
}

.nav-links a {
  color: var(--dim);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-social {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-strong);
  color: var(--ink) !important;
}

.nav-social:hover {
  border-color: var(--ink);
  background: var(--mark);
}

.nav-cta {
  display: inline-flex !important;
  align-items: center;
  padding: 0.55rem 1.1rem !important;
  background: var(--ink);
  color: var(--white) !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--pom) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--line-strong);
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
}

/* ── Hero ── */
.hero {
  position: relative;
  z-index: 1;
  padding-top: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.hero-visual {
  background: #fff;
  border-bottom: 1px solid var(--ink);
}

.hero-launch {
  width: 100%;
  height: auto;
  max-height: min(68vh, 640px);
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
  background: #fff;
}

.hero-body {
  position: relative;
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding: 3.2rem 0 4.5rem;
  display: grid;
  grid-template-columns: 1fr minmax(160px, 220px);
  gap: 2.5rem;
  align-items: end;
}

.hero-content {
  animation: rise-in 1.1s var(--ease-out) both;
  min-width: 0;
}

.hero-kicker {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.85rem;
}

.hero-title {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin-bottom: 0.55rem;
}

.hero-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.25rem);
  letter-spacing: -0.02em;
  color: var(--dim);
  margin-bottom: 1.15rem;
}

.hero-lede {
  max-width: 38rem;
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  color: var(--dim);
  margin-bottom: 1.75rem;
  font-weight: 500;
}

.hero-lede strong {
  color: var(--ink);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2.4rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 2.2rem;
}

.hero-stats dt {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 0.3rem;
}

.hero-stats dd {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-polaroid {
  width: 100%;
  padding: 0.7rem 0.7rem 1.4rem;
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  transform: rotate(3.5deg);
  transition: transform 0.35s var(--ease-out);
}

.hero-polaroid:hover {
  transform: rotate(0deg) scale(1.03);
}

.hero-polaroid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
}

.hero-polaroid figcaption {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  margin-top: 0.55rem;
}

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.7rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 0;
  transition: transform 0.2s var(--ease-out), background 0.2s, color 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--pom);
  box-shadow: 4px 4px 0 var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}

.btn-ghost:hover {
  background: var(--mark);
}

.btn-lg {
  padding: 1.1rem 2.1rem;
}

.btn-copy {
  flex-shrink: 0;
  padding: 0.7rem 1.15rem;
  font-size: 0.75rem;
}

.btn-copy.copied {
  background: var(--hat);
  color: var(--white);
}

/* ── Ticker ── */
.ticker {
  position: relative;
  z-index: 2;
  background: var(--ink);
  color: var(--white);
  padding: 0.9rem 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
  width: max-content;
  animation: ticker 36s linear infinite;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.18em;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.ticker-track img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  background: #fff;
  border: 1px solid #fff;
}

.ticker-sep {
  opacity: 0.45;
  color: var(--hat);
}

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

/* ── Sections ── */
.section {
  position: relative;
  z-index: 1;
  padding: 6.5rem 0;
}

.section-head {
  max-width: 42rem;
  margin-bottom: 2.6rem;
}

.section-head .section-sub {
  margin-bottom: 0;
}

.eyebrow {
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pom);
  margin-bottom: 1rem;
}

.eyebrow.center {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.1rem, 5.5vw, 3.8rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 1.2rem;
}

.section-text {
  color: var(--dim);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  max-width: 36rem;
}

.section-text strong {
  color: var(--ink);
  font-weight: 700;
}

.section-sub {
  color: var(--dim);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  max-width: 40rem;
}

.section-sub strong {
  color: var(--ink);
}

/* ── Story ── */
.signal {
  background: var(--paper);
}

.banner-frame {
  margin-top: 1.75rem;
  border: 1.5px solid var(--ink);
  background: #fff;
}

.banner-frame img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  background: #fff;
}

.banner-frame figcaption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--ink);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}

.banner-frame a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

.banner-frame a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tweet-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 0.25rem;
}

.tweet-stage {
  background: #fff;
  border: 1.5px solid var(--ink);
  min-width: 0;
  box-shadow: 8px 8px 0 var(--ink);
}

.tweet-stage-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.05rem;
  border-bottom: 1px solid var(--ink);
  background: var(--mark);
}

.tweet-embed {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 1.15rem 1rem 1.25rem;
  min-height: 420px;
  background: #fff;
}

.tweet-embed iframe {
  width: 100% !important;
  max-width: 550px;
  min-height: 280px;
  border: 0;
  margin: 0 auto;
  display: block;
  background: #fff;
}

.tweet-embed.is-live {
  min-height: 0;
  padding: 0.7rem 0.65rem 0.85rem;
}

.tweet-embed.is-live .tweet-card {
  display: none;
}

.tweet-card {
  width: min(520px, 100%);
  padding: 1.2rem 1.15rem 1.05rem;
  border: 1px solid #cfd9de;
  border-radius: 16px;
  background: #fff;
  color: #0f1419;
  font-family: var(--font-body);
}

.tweet-user {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}

.tweet-user strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.2;
  color: #0f1419;
}

.tweet-user span {
  display: block;
  font-size: 0.88rem;
  color: #536471;
  font-weight: 400;
}

.tweet-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.tweet-avatar-tobias {
  background: #111;
  color: #fff;
}

.tweet-avatar-jacob {
  background: var(--mark);
  color: #111;
  border: 1px solid #cfd9de;
}

.tweet-text {
  font-size: 1.08rem;
  line-height: 1.45;
  margin: 0 0 0.85rem;
  color: #0f1419;
}

.tweet-text a {
  color: #1d9bf0;
  text-decoration: none;
}

.tweet-text a:hover {
  text-decoration: underline;
}

.tweet-quoted {
  padding: 0.85rem 0.9rem 0.75rem;
  border: 1px solid #cfd9de;
  border-radius: 12px;
  margin: 0.15rem 0 0.95rem;
}

.tweet-quoted .tweet-avatar {
  width: 22px;
  height: 22px;
  font-size: 0.7rem;
}

.tweet-quoted .tweet-user {
  margin-bottom: 0.45rem;
}

.tweet-quoted .tweet-user strong,
.tweet-quoted .tweet-user span {
  display: inline;
  font-size: 0.88rem;
}

.tweet-quoted .tweet-user span {
  margin-left: 0.3rem;
}

.tweet-quoted .tweet-text {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: #0f1419;
}

.tweet-media {
  width: 100%;
  border: 1px solid #cfd9de;
  border-radius: 12px;
  background: #fff;
  margin-bottom: 0.15rem;
}

.tweet-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.95rem;
  padding-top: 0.85rem;
  border-top: 1px solid #eff3f4;
  font-size: 0.85rem;
  color: #536471;
}

.tweet-card-foot a {
  color: #1d9bf0;
  text-decoration: none;
  font-weight: 600;
}

.tweet-card-foot a:hover {
  text-decoration: underline;
}

.embed-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: var(--ink);
}

.embed-open {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dim);
  text-decoration: none;
}

.embed-open:hover {
  color: var(--ink);
}

.quote-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.4rem 2rem;
  background: #fff;
  border: 1.5px solid var(--ink);
}

@media (min-width: 981px) {
  .tweet-showcase {
    align-items: start;
  }

  .quote-panel {
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
  }
}

.follow-btn {
  align-self: flex-start;
  margin-bottom: 1.4rem;
}

.hand-quote {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 1.1rem;
}

.quote-body {
  color: var(--dim);
  font-size: 1.05rem;
  margin-bottom: 1.6rem;
}

.quote-meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.6rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
}

.quote-meta a {
  color: var(--ink);
  text-decoration: none;
}

.quote-meta a:hover {
  text-decoration: underline;
}

/* ── Drawing ── */
.drawing {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.drawing-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.drawing-stage {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--ink);
  padding: 1.25rem;
  box-shadow: 8px 8px 0 var(--ink);
}

.drawing-stage img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #fff;
}

.drawing-tag {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  padding: 0.35rem 0.55rem;
  background: #fff;
  border: 1px solid var(--ink);
}

.checklist {
  list-style: none;
  margin-top: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 1.02rem;
}

.checklist li::before {
  content: "";
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #fff 0 28%, transparent 30%),
    var(--hat);
  box-shadow: inset 0 0 0 2px var(--hat);
}

/* ── Contract ── */
.ca-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 1.2rem;
  background: #fff;
  border: 1.5px solid var(--ink);
}

.ca-address {
  flex: 1;
  font-family: var(--font-mono);
  font-size: clamp(0.65rem, 2.4vw, 0.88rem);
  color: var(--ink);
  word-break: break-all;
  line-height: 1.5;
}

.copy-toast {
  text-align: center;
  margin-top: 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  min-height: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.copy-toast.show {
  opacity: 1;
}

/* ── Chart ── */
.chart-section {
  background: var(--paper);
}

.chart-section .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.chart-frame {
  border: 1.5px solid var(--ink);
  background: #fff;
  overflow: hidden;
}

.chart-frame iframe {
  display: block;
  width: 100%;
  height: min(640px, 78vh);
  border: 0;
  background: #fff;
}

.chart-link-wrap {
  text-align: center;
  margin-top: 1.25rem;
}

.text-link {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.92rem;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ── Buy ── */
.buy {
  overflow: hidden;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.buy-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.08;
  pointer-events: none;
}

.buy-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1);
}

.buy .container {
  position: relative;
  z-index: 1;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2.5rem 0 1.5rem;
}

.step {
  background: #fff;
  border: 1.5px solid var(--ink);
  padding: 1.85rem 1.4rem;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 6px 6px 0 var(--ink);
}

.step-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--pom);
  line-height: 1;
  margin-bottom: 0.85rem;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}

.step p {
  font-size: 0.95rem;
  color: var(--dim);
}

.buy-cta {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}

.buy-ca {
  max-width: 760px;
  margin: 0 auto;
}

.buy .copy-toast {
  color: var(--ink);
  margin-bottom: 1.5rem;
}

/* ── Tokenomics ── */
.tokenomics {
  background: var(--paper);
}

.center-head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.center-head .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.tok-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 2rem;
  align-items: center;
}

.tok-payload {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.tok-ring {
  width: min(280px, 72vw);
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 50%, var(--paper) 0 58%, transparent 59%),
    conic-gradient(from 210deg, var(--ink) 0 100%);
  border: 1.5px solid var(--ink);
  position: relative;
}

.tok-ring::before {
  content: "";
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  border: 1px solid var(--line);
}

.tok-ring span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 8vw, 4.2rem);
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--ink);
}

.tok-ring small {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: var(--pom);
  margin-top: 0.45rem;
}

.tok-payload-copy {
  max-width: 18rem;
  color: var(--dim);
  font-size: 0.95rem;
}

.tok-sheet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1.5px solid var(--ink);
  background: #fff;
}

.tok-sheet > div {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.tok-sheet > div:nth-child(2n) {
  border-right: none;
}

.tok-sheet > div:nth-last-child(-n + 2) {
  border-bottom: none;
}

.tok-sheet dt {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
}

.tok-sheet dd {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* ── Footer ── */
.footer {
  position: relative;
  z-index: 1;
  background: var(--white);
  color: var(--dim);
  padding: 3.25rem 0 2.25rem;
  border-top: 1.5px solid var(--ink);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.35rem;
  text-align: center;
}

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

.footer-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: #fff;
  border: 1.5px solid var(--ink);
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.3;
}

.footer-brand span {
  font-size: 0.82rem;
  color: var(--dim);
}

.footer-x {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

.footer-x:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-disclaimer {
  font-size: 0.72rem;
  max-width: 560px;
  line-height: 1.7;
}

/* ── Gallery ── */
.gallery {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1.5px solid var(--ink);
  background: #fff;
  text-decoration: none;
  color: inherit;
  display: block;
}

.gallery-item.span-2 {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: contain;
  background: #fff;
  transition: transform 0.7s var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item span {
  position: absolute;
  left: 0.7rem;
  bottom: 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.55rem;
  background: #fff;
  border: 1px solid var(--ink);
}

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ── Mobile ── */
@media (max-width: 980px) {
  .tweet-showcase,
  .drawing-layout,
  .tok-layout,
  .hero-body {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-polaroid {
    width: 160px;
    justify-self: end;
  }

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

  .hero-stats {
    gap: 1.2rem;
  }

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

}

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

  .nav-wordmark {
    font-size: 0.92rem;
  }

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.1rem;
    border-bottom: 1.5px solid var(--ink);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .hero-launch {
    max-height: none;
  }

  .hero-polaroid {
    width: 148px;
    margin-left: auto;
  }

  .ca-box {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-copy {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .nav-ticker {
    display: none;
  }

  .hero-actions,
  .buy-cta {
    width: 100%;
  }

  .hero-actions .btn,
  .buy-cta .btn {
    flex: 1;
    justify-content: center;
  }

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

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

  .gallery-item.span-2 {
    grid-column: span 1;
  }

  .tok-sheet {
    grid-template-columns: 1fr;
  }

  .tok-sheet > div {
    border-right: none;
  }

  .tok-sheet > div:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .tok-sheet > div:last-child {
    border-bottom: none;
  }

}

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
  }

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