/* ============ Fonts ============ */
@font-face {
  font-family: "Unbounded";
  src: url("assets/fonts/unbounded/Unbounded-Light.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Unbounded";
  src: url("assets/fonts/unbounded/Unbounded-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Unbounded";
  src: url("assets/fonts/unbounded/Unbounded-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Unbounded";
  src: url("assets/fonts/unbounded/Unbounded-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Unbounded";
  src: url("assets/fonts/unbounded/Unbounded-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Comfortaa";
  src: url("assets/fonts/comfortaa/Comfortaa-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Comfortaa";
  src: url("assets/fonts/comfortaa/Comfortaa-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Comfortaa";
  src: url("assets/fonts/comfortaa/Comfortaa-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Comfortaa";
  src: url("assets/fonts/comfortaa/Comfortaa-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

/* ============ Tokens (Graphite) ============ */
:root {
  --obsidian: #0a0a0a;
  --black: #000000;
  --charcoal: #171717;
  --edge: #262626;
  --steel: #464646;
  --white: #fafafa;
  --paper: #e5e5e5;
  --fog: #a1a1a1;
  --ash: #737373;

  --font-display: "Unbounded", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Comfortaa", ui-sans-serif, system-ui, sans-serif;

  --radius-card: 10px;
  --radius-btn: 8px;
  --page: 1152px;
  --gap: 8px;

  --shadow-sm: rgba(0, 0, 0, 0.25) 0 4px 4px 0;
  --shadow-subtle: rgba(101, 129, 128, 0.15) 0 0 2px 2px inset,
    rgba(32, 47, 46, 0.15) 0 0 4px 4px inset;
  --shadow-btn-inset: rgb(255, 255, 255) 0 1px 0 0 inset, rgba(0, 0, 0, 0.1) 0 -2px 6px 0 inset;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--obsidian);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

button {
  font: inherit;
  color: inherit;
}

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

::selection {
  background: rgba(250, 250, 250, 0.25);
}

/* ============ Announcement ============ */
.announce {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  background: var(--charcoal);
  border-bottom: 1px solid var(--edge);
  padding: 8px 16px;
  font-size: 14px;
  line-height: 1.43;
}

.announce__pulse {
  width: 7px;
  height: 7px;
  border-radius: 9999px;
  background: var(--white);
  box-shadow: 0 0 0 0 rgba(250, 250, 250, 0.6);
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(250, 250, 250, 0.55);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(250, 250, 250, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(250, 250, 250, 0);
  }
}

.announce__text {
  font-weight: 600;
  color: var(--white);
}

.announce__divider {
  width: 1px;
  height: 14px;
  background: var(--steel);
}

.announce__meta {
  color: var(--fog);
  font-weight: 400;
}

/* ============ Shell / nav ============ */
.shell {
  position: sticky;
  top: 12px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: var(--page);
  margin: 16px auto 0;
  padding: 8px 16px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--edge);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--gap);
}

.brand__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--edge);
  object-fit: cover;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.3px;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--gap);
  margin-left: auto;
}

.nav__link {
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-btn);
  padding: 8px 12px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--fog);
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.nav__link:hover {
  color: var(--white);
  background: var(--charcoal);
  border-color: var(--edge);
}

.nav__link.is-active {
  color: var(--white);
  background: var(--edge);
  border-color: var(--steel);
}

.shell__actions {
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.nav-toggle {
  display: none;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap);
  border-radius: var(--radius-btn);
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.43;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--paper);
  color: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-btn-inset);
}

.btn--primary:hover {
  background: #ffffff;
}

.btn--secondary {
  background: var(--edge);
  color: var(--white);
  border: 1px solid var(--steel);
  box-shadow: rgba(0, 0, 0, 0.1) 0 1px 3px 0, rgba(0, 0, 0, 0.1) 0 1px 2px -1px;
}

.btn--secondary:hover {
  background: #2f2f2f;
}

.btn--ghost {
  background: transparent;
  color: var(--fog);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn--ghost:hover {
  color: var(--white);
  border-color: var(--steel);
}

.btn--discord {
  background: var(--charcoal);
  color: var(--white);
  border: 1px solid var(--steel);
}

.btn--discord:hover {
  background: var(--edge);
  border-color: var(--fog);
}

.btn--discord::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: var(--white);
  opacity: 0.75;
  animation: blink 2.4s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 1;
  }
}

.btn--lg {
  padding: 12px 20px;
  font-size: 15px;
}

.btn--primary:hover,
.btn--secondary:hover,
.btn--discord:hover {
  transform: translateY(-2px);
}

/* ============ Tabs ============ */
.tab {
  display: none;
  max-width: var(--page);
  margin: 0 auto;
  padding: 0 16px;
}

.tab.is-active {
  display: block;
  animation: fadeUp 0.35s ease both;
}

.tab.is-leaving {
  display: block;
}

.tab.enter-right {
  animation: enterRight 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.tab.enter-left {
  animation: enterLeft 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.tab.leave-left {
  animation: leaveLeft 0.24s cubic-bezier(0.55, 0, 0.55, 0.2) both;
}

.tab.leave-right {
  animation: leaveRight 0.24s cubic-bezier(0.55, 0, 0.55, 0.2) both;
}

@keyframes enterRight {
  from {
    opacity: 0;
    transform: translateX(72px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes enterLeft {
  from {
    opacity: 0;
    transform: translateX(-72px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes leaveLeft {
  from {
    opacity: 1;
    transform: none;
  }
  to {
    opacity: 0;
    transform: translateX(-48px);
  }
}

@keyframes leaveRight {
  from {
    opacity: 1;
    transform: none;
  }
  to {
    opacity: 0;
    transform: translateX(48px);
  }
}

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

/* ============ Hero ============ */
.hero {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 0 0;
}

.hero__copy {
  max-width: 820px;
}

.eyebrow {
  display: inline-block;
  border: 1px solid var(--edge);
  background: var(--charcoal);
  color: var(--fog);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.display {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 60px;
  line-height: 1;
  letter-spacing: -1.5px;
  color: var(--white);
  margin: 0 0 24px;
}

.display--sm {
  font-size: 48px;
  letter-spacing: -1.2px;
  margin: 16px 0;
}

.hero__lead {
  color: var(--fog);
  font-size: 18px;
  line-height: 1.5;
  max-width: 46ch;
  margin: 0 0 32px;
}

.hero__actions {
  display: flex;
  gap: var(--gap);
  flex-wrap: wrap;
}

.hint {
  margin: 16px 0 0;
  color: var(--ash);
  font-size: 12px;
}

/* Ticker strip */
.hero__strip {
  border-top: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
  padding: 20px 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.ticker {
  overflow: hidden;
}

.ticker__row {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.5px;
  color: var(--white);
  animation: ticker 26s linear infinite;
}

.ticker__row .dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: var(--ash);
  flex: none;
}

.hero__strip:hover .ticker__row {
  animation-duration: 14s;
}

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

/* ============ Sections ============ */
.section {
  padding: 128px 0 0;
}

.section--first {
  padding-top: 72px;
}

.section__head {
  margin-bottom: 32px;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 36px;
  line-height: 1.11;
  margin: 0 0 8px;
}

.section__sub {
  color: var(--fog);
  margin: 0;
  font-size: 16px;
}

/* ============ Mosaic / cards ============ */
.mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}

.card {
  position: relative;
  background: var(--obsidian);
  border: 1px solid var(--edge);
  border-radius: var(--radius-card);
  padding: 24px;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.card:hover {
  border-color: var(--steel);
  transform: translateY(-2px);
}

.card--wide {
  grid-column: span 2;
}

.card__tag {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 16px;
}

.card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.17;
  margin: 0 0 16px;
  color: var(--white);
}

.card__text {
  color: var(--fog);
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  max-width: 68ch;
}

.card__spectrum {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #fafafa, transparent);
  background-size: 200% 100%;
  opacity: 0.35;
  animation: sweep 3.5s linear infinite;
}

@keyframes sweep {
  from {
    background-position: 200% 0;
  }
  to {
    background-position: -200% 0;
  }
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  color: var(--white);
  font-size: 16px;
  line-height: 20px;
}

.link-arrow span {
  transition: transform 0.18s ease;
}

.link-arrow:hover {
  text-decoration: underline;
}

.link-arrow:hover span {
  transform: translateX(4px);
}

/* ============ Frame / steps ============ */
.frame {
  position: relative;
  background: var(--obsidian);
  border: 1px solid var(--edge);
  border-radius: var(--radius-card);
  padding: 32px 24px 56px;
  box-shadow: var(--shadow-subtle);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step__num {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  background: var(--charcoal);
  border: 1px solid var(--edge);
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--white);
}

.step__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  margin: 16px 0 8px;
}

.step__text {
  color: var(--fog);
  margin: 0;
  font-size: 15px;
}

.inline-ip {
  background: none;
  border: none;
  padding: 0;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  cursor: pointer;
  border-bottom: 1px dashed var(--steel);
}

.inline-ip:hover {
  text-decoration: underline;
}

.frame__tabs {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  gap: var(--gap);
  flex-wrap: wrap;
  justify-content: center;
}

.demo-tab {
  background: var(--black);
  border: 1px solid var(--edge);
  border-radius: 4px;
  padding: 4px 12px;
  font-size: 12px;
  color: var(--fog);
  white-space: nowrap;
}

/* ============ Shop / WIP ============ */
.wip {
  position: relative;
  background: var(--obsidian);
  border: 1px solid var(--edge);
  border-radius: var(--radius-card);
  padding: 56px 32px;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
}

.wip__badge {
  display: inline-block;
  background: var(--charcoal);
  border: 1px solid var(--steel);
  color: var(--white);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.wip__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  margin: 24px 0 12px;
}

.wip__text {
  color: var(--fog);
  max-width: 52ch;
  margin: 0 auto 32px;
}

.wip__skeleton {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  max-width: 720px;
  margin: 0 auto 32px;
}

.skeleton {
  height: 96px;
  border-radius: var(--radius-card);
  border: 1px dashed var(--edge);
  background: linear-gradient(90deg, #111 25%, #1a1a1a 50%, #111 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s linear infinite;
}

.skeleton--b {
  height: 120px;
}

@keyframes shimmer {
  to {
    background-position: -200% 0;
  }
}

/* ============ Background canvas / cursor / progress ============ */
.bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.55;
  pointer-events: none;
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 240px;
  height: 240px;
  margin: -120px 0 0 -120px;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(250, 250, 250, 0.06), rgba(250, 250, 250, 0) 65%);
  pointer-events: none;
  z-index: 90;
  opacity: 0;
  transition: opacity 0.4s ease;
  will-change: transform;
}

.cursor-glow.is-on {
  opacity: 1;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, #737373, #fafafa);
  z-index: 200;
  transition: width 0.08s linear;
}

/* ============ Split text ============ */
.line {
  display: block;
  overflow: hidden;
  padding-top: 0.18em;
  margin-top: -0.18em;
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
}

.line__inner {
  display: block;
  transform: translateY(110%);
  animation: lineUp 0.9s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: calc(var(--i, 0) * 120ms);
}

@keyframes lineUp {
  to {
    transform: translateY(0);
  }
}

.word {
  display: inline-block;
  opacity: 0;
  filter: blur(6px);
  transform: translateY(0.35em);
  animation: wordIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--i, 0) * 70ms + 120ms);
}

@keyframes wordIn {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

/* ============ Stats ============ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.stat {
  border: 1px solid var(--edge);
  background: rgba(23, 23, 23, 0.6);
  border-radius: var(--radius-card);
  padding: 20px 16px;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.stat:hover {
  border-color: var(--steel);
  background: var(--charcoal);
  transform: translateY(-4px);
}

.stat__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 32px;
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--white);
}

.stat__label {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--fog);
}

/* ============ Magnetic buttons + shine ============ */
.btn {
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.btn__label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: var(--gap);
}

.btn__shine {
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
  z-index: 1;
}

.btn:hover .btn__shine {
  animation: shine 0.7s ease;
}

@keyframes shine {
  to {
    left: 120%;
  }
}

.btn.is-burst {
  animation: burst 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes burst {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(0.94);
  }
  100% {
    transform: scale(1);
  }
}

/* ============ Card spotlight + tilt ============ */
.card {
  transform-style: preserve-3d;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.25s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    420px circle at var(--mx, 50%) var(--my, 50%),
    rgba(250, 250, 250, 0.09),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.card:hover::before {
  opacity: 1;
}

.card > *:not(.card__spectrum):not(.card__num-ghost) {
  position: relative;
  z-index: 1;
}

.card__num-ghost {
  position: absolute;
  right: 16px;
  top: 8px;
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: rgba(250, 250, 250, 0.04);
  z-index: 0;
  pointer-events: none;
  transition: transform 0.4s ease, color 0.4s ease;
}

.card:hover .card__num-ghost {
  transform: translateY(-4px);
  color: rgba(250, 250, 250, 0.08);
}

/* ============ Animations ============ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--d, 0) * 90ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.hero__copy .reveal {
  animation: rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--d, 0) * 110ms);
  transition: none;
  opacity: 1;
  transform: none;
}

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

.display {
  background: linear-gradient(180deg, #fafafa 40%, #737373 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.display[data-split] {
  background: none;
  -webkit-text-fill-color: initial;
  color: var(--white);
}

.display[data-split] .word {
  background-image: linear-gradient(180deg, #fafafa 40%, #737373 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.eyebrow {
  animation: float 5s ease-in-out infinite;
}

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

/* ============ Footer ============ */
.footer {
  max-width: var(--page);
  margin: 128px auto 0;
  padding: 32px 16px 48px;
  border-top: 1px solid var(--edge);
}

.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__row--bottom {
  margin-top: 32px;
  color: var(--ash);
  font-size: 12px;
}

.brand--footer .brand__icon {
  width: 28px;
  height: 28px;
}

.footer__meta {
  color: var(--fog);
  font-size: 14px;
  margin: 0;
}

.footer__copy,
.footer__note {
  font-size: 12px;
}

.footer__link {
  font-size: 13px;
  color: var(--fog);
  transition: color 0.15s ease;
}

.footer__link:hover {
  color: var(--white);
}

/* ============ Toast ============ */
.toast {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translate(-50%, 20px);
  background: var(--paper);
  color: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-btn-inset);
  border-radius: var(--radius-btn);
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 100;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .hero {
    padding-top: 32px;
    gap: 32px;
  }

  .ticker__row {
    font-size: 20px;
  }

  .display {
    font-size: 42px;
    letter-spacing: -1px;
  }

  .display--sm {
    font-size: 36px;
  }

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

  .card--wide {
    grid-column: span 1;
  }

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

  .section {
    padding-top: 72px;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--charcoal);
    border: 1px solid var(--edge);
    border-radius: var(--radius-card);
    padding: 8px;
    display: none;
  }

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

  .nav__link {
    text-align: left;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .shell {
    flex-wrap: wrap;
  }

  .shell__actions {
    margin-left: auto;
  }

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

@media (max-width: 480px) {
  .display {
    font-size: 34px;
    letter-spacing: -0.8px;
  }

  .section__title {
    font-size: 28px;
  }

  .btn--lg {
    width: 100%;
  }
}

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