/* LONG Cat / $NOBIKO
   Blue field, stretched type, museum air.
   Related in spirit to the ARC longcat language — not a clone. */

:root {
  --blue: #0c47d4;
  --blue-deep: #08339c;
  --blue-dark: #051f72;
  --blue-mid: #1560ea;
  --ice: #dff0ff;
  --mist: rgba(255, 255, 255, .62);
  --line: rgba(255, 255, 255, .16);
  --white: #fff;
  --ink: #06143a;

  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-jp: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", Meiryo, sans-serif;
  --font-mono: "SFMono-Regular", "Cascadia Code", Consolas, monospace;

  --gutter: clamp(1.1rem, 4.2vw, 3.5rem);
  --max: 92rem;
  --ease: cubic-bezier(.19, 1, .22, 1);
  --snap: cubic-bezier(.175, .885, .32, 1.05);

  --stretch: 0;
  --grow: 0.06;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  background: var(--blue);
  color: var(--white);
  color-scheme: dark;
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.5;
  letter-spacing: -.011em;
  background:
    radial-gradient(1200px 700px at 50% -10%, rgba(255, 255, 255, .14), transparent 55%),
    linear-gradient(180deg, var(--blue-mid) 0%, var(--blue) 18%, var(--blue-deep) 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  min-height: 100%;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
code { font-family: var(--font-mono); font-size: .9em; }
::selection { background: var(--white); color: var(--blue-dark); }
:focus-visible {
  outline: 2px solid var(--ice);
  outline-offset: 3px;
  border-radius: .5rem;
}

.skip {
  position: absolute;
  left: .75rem;
  top: -4rem;
  z-index: 80;
  padding: .6rem 1rem;
  background: var(--white);
  color: var(--ink);
  border-radius: 999px;
}
.skip:focus { top: .75rem; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.kicker {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 1.1rem;
}

.display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5.4vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.display--sm { font-size: clamp(1.6rem, 3.4vw, 2.7rem); }
.mute { color: rgba(255, 255, 255, .58); font-weight: 600; }
.lede {
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  font-weight: 300;
  color: var(--ice);
  max-width: 38rem;
  line-height: 1.55;
}
.lede--emph {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  letter-spacing: -.03em;
  margin-top: 1.25rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: .22rem .55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.25rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: -.02em;
  white-space: nowrap;
  transition: transform .2s var(--snap), background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: scale(.96); }
.btn--solid {
  background: var(--white);
  color: var(--blue-dark);
}
.btn--solid:hover { background: var(--ice); }
.btn--ghost {
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 1px var(--line);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .5); background: rgba(255, 255, 255, .06); }

.section-head { margin-bottom: 2.5rem; max-width: 40rem; }

.reveal {
  opacity: 0;
  transform: translateY(1.4rem);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- nav ---------- */

.bar {
  position: fixed;
  z-index: 50;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: .45rem .45rem .45rem 1rem;
  width: max-content;
  max-width: calc(100% - 1.5rem);
  background: rgba(5, 31, 114, .48);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.bar.is-scrolled { background: rgba(5, 31, 114, .78); }

.brand {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: -.03em;
  flex: 0 0 auto;
}
.brand img {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 18%;
}

.nav {
  display: flex;
  align-items: center;
  gap: .15rem;
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 600;
}
.nav a {
  padding: .5rem .7rem;
  color: var(--mist);
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}
.nav a:hover { color: var(--white); }
.nav__mark {
  color: var(--white) !important;
  background: rgba(255, 255, 255, .1);
}
.nav__x {
  background: var(--white);
  color: var(--blue-dark) !important;
  margin-left: .2rem;
  padding-inline: .95rem !important;
}
.nav__x:hover { background: var(--ice) !important; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7.5rem var(--gutter) 4.5rem;
  overflow: hidden;
  isolation: isolate;
}

.hero__ghost {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%) scaleX(2.35);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(6rem, 28vw, 22rem);
  letter-spacing: -.08em;
  line-height: .8;
  color: rgba(255, 255, 255, .05);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 600;
  color: var(--mist);
  margin-bottom: 1.5rem;
  z-index: 1;
}
.ticker {
  font-weight: 800;
  color: var(--white);
  letter-spacing: .04em;
}
.dot {
  width: .35rem;
  height: .35rem;
  border-radius: 50%;
  background: var(--ice);
  opacity: .7;
}

.hero__stage {
  position: relative;
  width: min(34rem, 78vw);
  margin-bottom: .4rem;
  z-index: 1;
}
.hero__orb {
  position: absolute;
  inset: 12% 10%;
  background: radial-gradient(circle, rgba(223, 240, 255, .28), transparent 68%);
  pointer-events: none;
}
.hero__mascot {
  position: relative;
  margin: 0 auto;
  width: min(28rem, 70vw);
  will-change: transform;
}
.hero__mascot img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 50px rgba(2, 16, 70, .35));
  -webkit-mask-image: radial-gradient(ellipse 78% 78% at 50% 50%, #000 64%, transparent 82%);
  mask-image: radial-gradient(ellipse 78% 78% at 50% 50%, #000 64%, transparent 82%);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.4rem, 12vw, 8.5rem);
  line-height: .88;
  letter-spacing: -.07em;
  margin-top: -.4rem;
  z-index: 1;
}
.hero__hook {
  margin-top: 1.1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
  letter-spacing: -.03em;
  z-index: 1;
}
.hero__lede {
  margin-top: .45rem;
  color: var(--mist);
  font-size: 1.05rem;
  z-index: 1;
}

.hero__rule {
  width: min(42rem, 72vw);
  height: 1px;
  margin: 1.6rem 0 1.5rem;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .55), transparent);
  transform: scaleX(calc(0.28 + var(--stretch) * 0.72));
  transform-origin: center;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .65rem;
  z-index: 1;
}

/* ---------- story ---------- */

.story {
  position: relative;
  padding: 8rem var(--gutter) 4rem;
  max-width: var(--max);
  margin: 0 auto;
}
.story__rail {
  position: absolute;
  left: var(--gutter);
  top: 2rem;
  bottom: 2rem;
  width: 1px;
  background: linear-gradient(var(--white), transparent);
  transform: scaleY(calc(.15 + var(--stretch) * .85));
  transform-origin: top;
  opacity: .35;
}

.names {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 4vw, 3.5rem);
  margin: 3.5rem 0 1.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 7vw, 5.6rem);
  line-height: .95;
  letter-spacing: -.06em;
}
.names li:last-child {
  font-family: var(--font-jp);
  font-weight: 700;
  letter-spacing: -.02em;
  width: 100%;
}

.fragment {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  color: var(--mist);
  max-width: 28rem;
  margin-bottom: 4.5rem;
}

.timeline {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--line);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, .28) transparent;
}
.timeline li {
  position: relative;
  flex: 1 0 12rem;
  min-width: 12rem;
  padding: 1.6rem 1.4rem 1.4rem 0;
  scroll-snap-align: start;
}
.timeline li + li { padding-left: 1.4rem; border-left: 1px solid var(--line); }
.timeline li::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--white);
}
.timeline li + li::before { left: 1.4rem; }
.timeline__idx {
  display: block;
  font-family: var(--font-mono);
  font-size: .7rem;
  color: var(--mist);
  margin-bottom: .7rem;
  letter-spacing: .08em;
}
.timeline strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -.03em;
  margin-bottom: .4rem;
}
.timeline p { color: var(--mist); font-size: .95rem; max-width: 12rem; }

/* ---------- stretch loaf ---------- */

.stretch {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 6vw, 6rem);
  align-items: start;
  min-height: 160vh;
  padding: 4rem var(--gutter) 6rem;
  max-width: var(--max);
  margin: 0 auto;
}
.stretch__copy { position: sticky; top: 7rem; max-width: 22rem; }
.stretch__readout {
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: .85rem;
  color: var(--mist);
  letter-spacing: .04em;
}
.stretch__readout span { color: var(--white); font-size: 1.15rem; }

.loaf {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 5.5rem;
  margin-right: clamp(0rem, 8vw, 6rem);
  padding-top: 2rem;
}
.loaf__ears {
  display: flex;
  gap: 1.15rem;
  margin-bottom: -.35rem;
  z-index: 1;
}
.loaf__ears i {
  width: 1.15rem;
  height: 1.55rem;
  background: var(--white);
  border-radius: 70% 70% 20% 20%;
}
.loaf__ears i:first-child { transform: rotate(-18deg); }
.loaf__ears i:last-child { transform: rotate(18deg); }
.loaf__head {
  position: relative;
  width: 4.4rem;
  height: 3.5rem;
  background: var(--white);
  border-radius: 50% 50% 46% 46%;
  z-index: 1;
}
.loaf__eye {
  position: absolute;
  top: 42%;
  width: .38rem;
  height: .55rem;
  background: var(--blue-dark);
  border-radius: 50%;
}
.loaf__eye:first-child { left: 1.15rem; }
.loaf__eye:nth-child(2) { right: 1.15rem; }
.loaf__nose {
  position: absolute;
  left: 50%;
  top: 62%;
  width: .42rem;
  height: .28rem;
  background: var(--blue-dark);
  border-radius: 40%;
  transform: translateX(-50%);
}
.loaf__body {
  width: 2.55rem;
  height: calc(var(--grow) * 118vh);
  margin-top: -.2rem;
  background:
    repeating-linear-gradient(
      180deg,
      #fff 0 18px,
      #f3f8ff 18px 20px
    );
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(12, 71, 212, .06);
}
.loaf__paws {
  display: flex;
  gap: .55rem;
  margin-top: -.15rem;
}
.loaf__paws i {
  width: 1.05rem;
  height: 1.35rem;
  background: var(--white);
  border-radius: 40% 40% 35% 35%;
}

/* ---------- nobiko museum ---------- */

.nobiko {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  padding: 7rem var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.nobiko .lede[lang="ja"] {
  font-family: var(--font-jp);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  color: var(--white);
  margin: .4rem 0 2rem;
}
.nobiko blockquote {
  border-left: 1px solid var(--line);
  padding-left: 1.25rem;
  margin-bottom: 1.6rem;
  max-width: 28rem;
}
.nobiko blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -.03em;
}
.plate-copy {
  color: var(--mist);
  font-size: 1.05rem;
  line-height: 1.7;
}
.plate {
  justify-self: end;
  width: min(100%, 26rem);
  padding: .7rem;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--line);
  transform: rotate(1.4deg);
}
.plate img { width: 100%; height: auto; filter: grayscale(.08); }
.plate figcaption {
  margin-top: .7rem;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .06em;
  color: var(--mist);
  text-transform: uppercase;
}

/* ---------- arc / banner ---------- */

.arc {
  padding: 5rem 0 6rem;
  overflow: clip;
}
.arc__head {
  padding: 0 var(--gutter) 3rem;
  max-width: var(--max);
  margin: 0 auto;
}
.arc__stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .15rem;
  margin: .4rem 0 2rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.6rem, 12vw, 9.5rem);
  line-height: .86;
  letter-spacing: -.07em;
}
.arc__arrow {
  font-size: .35em;
  color: var(--ice);
  letter-spacing: 0;
  padding-left: .12em;
}
.banner {
  width: 100%;
  padding: 0;
}
.banner img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: cover;
}

/* ---------- token ---------- */

.token {
  padding: 7rem var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.token__intro { margin-bottom: 2.5rem; }
.specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}
.specs > div {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 1.2rem 1.15rem 0;
  border-bottom: 1px solid var(--line);
}
.specs dt {
  color: var(--mist);
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 600;
}
.specs dd { font-family: var(--font-display); font-weight: 700; }
.specs__ca { grid-column: 1 / -1; }
.copy {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  padding: .35rem .2rem;
  border-radius: .6rem;
}
.copy:hover { color: var(--ice); }
.copy__state {
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mist);
  font-family: var(--font-display);
  font-weight: 700;
}
.token__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 2.2rem;
}

/* ---------- chart ---------- */

.chart {
  padding: 2rem var(--gutter) 7rem;
  max-width: var(--max);
  margin: 0 auto;
}
.chart__frame {
  position: relative;
  height: min(70vh, 38rem);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  overflow: hidden;
  background: rgba(5, 31, 114, .35);
}
.chart__pending {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  gap: .4rem;
  padding: 2rem;
}
.chart__pending-kicker {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .75rem;
  color: var(--mist);
}
.chart__pending p { color: var(--ice); }
.chart__pending code {
  margin-top: .8rem;
  color: var(--mist);
  font-size: .78rem;
  word-break: break-all;
}
.chart__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #0b0e11;
}
.chart__frame.is-live .chart__pending { display: none; }

/* ---------- archive ---------- */

.archive {
  padding: 4rem var(--gutter) 5rem;
  max-width: var(--max);
  margin: 0 auto;
}

.wall {
  position: relative;
  min-height: clamp(28rem, 62vw, 42rem);
  margin-bottom: 5rem;
}
.card {
  position: absolute;
  background: rgba(255, 255, 255, .08);
  padding: .55rem;
  border: 1px solid var(--line);
  transform: rotate(var(--r, 0deg));
  transition: transform .4s var(--ease), z-index 0s;
  z-index: 1;
}
.card:hover,
.card:focus-within {
  transform: rotate(0deg) translateY(-8px) scale(1.03);
  z-index: 3;
}
.card img { width: 100%; height: auto; }
.card figcaption {
  margin-top: .45rem;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
}
.card--a { width: min(38%, 22rem); left: 4%; top: 8%; }
.card--b { width: min(24%, 14rem); left: 42%; top: 0; }
.card--c { width: min(40%, 24rem); right: 2%; top: 22%; }

.playground__head { margin-bottom: 1.4rem; }
.playground__hint { color: var(--mist); }
.floor {
  position: relative;
  height: clamp(22rem, 48vw, 32rem);
  border: 1px dashed var(--line);
  border-radius: 1.5rem;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px) 0 0 / 100% 2.5rem,
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px) 0 0 / 2.5rem 100%,
    rgba(5, 31, 114, .25);
  touch-action: pan-y;
}
.sticker {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: clamp(5.5rem, 12vw, 9.5rem);
  transform: rotate(var(--r));
  cursor: grab;
  touch-action: none;
  padding: 0;
  border-radius: 1rem;
  user-select: none;
  -webkit-user-select: none;
  transition: transform .2s var(--snap);
}
.sticker:hover { transform: rotate(var(--r)) scale(1.05); }
.sticker.is-drag {
  cursor: grabbing;
  transform: rotate(0deg) scale(1.08);
  z-index: 5;
  transition: none;
}
.sticker:nth-child(2) { width: clamp(7rem, 16vw, 13rem); }
.sticker:nth-child(4) { width: clamp(5rem, 11vw, 8.5rem); }

/* ---------- cta ---------- */

.cta {
  position: relative;
  padding: 8rem var(--gutter) 6rem;
  text-align: center;
  overflow: hidden;
}
.cta__ghost {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -58%) scaleX(1.8);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(5rem, 22vw, 16rem);
  letter-spacing: -.08em;
  color: rgba(255, 255, 255, .05);
  white-space: nowrap;
  pointer-events: none;
}
.cta__title {
  position: relative;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4rem, 14vw, 10rem);
  line-height: .85;
  letter-spacing: -.07em;
}
.cta__sub {
  position: relative;
  margin: 1rem 0 2rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  font-weight: 600;
}

/* ---------- footer ---------- */

.foot {
  padding: 2.2rem var(--gutter) 3rem;
  border-top: 1px solid var(--line);
  max-width: var(--max);
  margin: 0 auto;
}
.foot__row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: .7rem;
}
.foot__row span { color: var(--mist); font-weight: 600; }
.foot__note {
  font-size: .8rem;
  color: var(--mist);
  max-width: 36rem;
  line-height: 1.5;
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__mascot, .hero__rule, .story__rail, .hero__ghost {
    transition: none !important;
  }
  .btn:hover { transform: none; }
  .card:hover { transform: rotate(var(--r)); }
}

/* ---------- responsive ---------- */

@media (min-width: 1100px) {
  .timeline { overflow: visible; }
  .timeline li { flex: 1 1 0; min-width: 0; }
}

@media (max-width: 960px) {
  .nobiko { grid-template-columns: 1fr; }
  .plate { justify-self: start; transform: rotate(0); max-width: 22rem; }
  .stretch {
    grid-template-columns: 1fr auto;
    min-height: 130vh;
  }
  .names { gap: .6rem 1.4rem; }
}

@media (max-width: 820px) {
  .bar {
    left: .7rem;
    right: .7rem;
    transform: none;
    width: auto;
    max-width: none;
    overflow-x: auto;
    justify-content: flex-start;
  }
  .nav { flex: 1 0 auto; }
  .hero__title { letter-spacing: -.05em; }
  .wall { min-height: 56rem; }
  .card--a, .card--b, .card--c {
    position: relative;
    width: min(100%, 22rem);
    left: auto; right: auto; top: auto;
    margin: 0 auto 1.4rem;
  }
  .card--b { margin-left: 12%; }
  .card--c { margin-left: 4%; }
  .specs { grid-template-columns: 1fr; }
  .sticker { touch-action: manipulation; cursor: default; }
}

@media (max-width: 560px) {
  .hero { padding-top: 6.5rem; }
  .hero__actions .btn, .token__actions .btn, .cta .btn { min-height: 3.15rem; }
  .stretch { grid-template-columns: 1fr; min-height: 0; }
  .stretch__copy { position: relative; top: auto; }
  .loaf { margin: 2rem auto 0; }
  .loaf__body { height: calc(var(--grow) * 70vh); }
  .story__rail { display: none; }
  .arc__stack { font-size: clamp(2.8rem, 18vw, 4.4rem); }
  .cta { padding-top: 5rem; }
}

@media (pointer: coarse) {
  .sticker { touch-action: manipulation; }
}
