:root {
  --red: #e84142;
  --red-deep: #c62828;
  --red-dark: #8f1d1d;
  --snow: #f4f9fc;
  --white: #ffffff;
  --ice: #e8f4fa;
  --ice-blue: #b8d9ea;
  --sky: #7ec8e3;
  --green: #26f0a0;
  --green-deep: #00c853;
  --green-pump: #1eff8b;
  --charcoal: #1c1c1e;
  --ink: #141416;
  --muted: #5a6a75;
  --terminal: #142028;
  --header-h: 76px;
  --wrap: 1180px;
  --radius: 18px;
  --radius-pill: 999px;
  --shadow: 0 18px 50px rgba(20, 24, 28, 0.12);
  --font-display: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  --font-body: "Outfit", "Segoe UI", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

code {
  font-family: var(--font-mono);
}

.wrap {
  width: min(calc(100% - 40px), var(--wrap));
  margin-inline: auto;
}

#about,
#machine,
#chart,
#buy,
#top {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 80;
  background: var(--charcoal);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 8px;
}

.skip-link:focus {
  top: 16px;
}

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

::selection {
  background: var(--red);
  color: var(--white);
}

/* Snow */
.snow-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 30;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  background: rgba(244, 249, 252, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-bottom-color: rgba(184, 217, 234, 0.7);
  box-shadow: 0 10px 30px rgba(20, 24, 28, 0.08);
}

.site-header.is-open {
  background: rgba(255, 255, 255, 0.96);
}

.header-inner {
  width: min(calc(100% - 32px), 1280px);
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.15rem;
  z-index: 2;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px 22px;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  padding: 8px 2px;
}

.site-nav a:hover {
  color: var(--red);
}

.nav-x {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 5px;
  flex-direction: column;
  z-index: 2;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  position: relative;
  overflow: hidden;
}

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

.btn-buy,
.btn-pump {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(232, 65, 66, 0.28);
}

.btn-buy::after,
.btn-pump::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.32) 50%, transparent 60%);
  transform: translateX(-130%);
  transition: transform 0.5s ease;
}

.btn-buy:hover,
.btn-pump:hover {
  background: var(--red-deep);
  transform: translateY(-2px);
}

.btn-buy:hover::after,
.btn-pump:hover::after {
  transform: translateX(130%);
}

.btn-pump {
  min-width: 160px;
  font-size: 1.05rem;
}

.btn-ghost {
  background: var(--white);
  color: var(--charcoal);
  border: 1.5px solid var(--ice-blue);
}

.btn-ghost:hover {
  border-color: var(--green);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(38, 240, 160, 0.16);
  transform: translateY(-2px);
}

.btn-copy {
  min-height: 40px;
  padding: 0 16px;
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.btn-copy:hover,
.btn-copy.is-copied {
  background: var(--green-deep);
}

.btn-x {
  background: var(--charcoal);
  color: var(--white);
}

.btn-x:hover {
  background: var(--ink);
  transform: translateY(-2px);
}

.nav-buy {
  min-height: 44px;
  padding: 0 18px;
  margin-left: 6px;
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  padding: 36px 0 0;
  min-height: calc(100vh - var(--header-h));
  background:
    radial-gradient(ellipse 70% 50% at 78% 18%, rgba(232, 65, 66, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 40% at 12% 80%, rgba(38, 240, 160, 0.1), transparent 50%),
    linear-gradient(180deg, #eaf6ff 0%, #f7fbfe 42%, #dceef8 100%);
  overflow: hidden;
}

.hero-mountains {
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
  pointer-events: none;
}

.hero-mountains svg {
  display: block;
  width: 100%;
  height: 180px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 32px;
  align-items: center;
  padding-bottom: 72px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--ice-blue);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--red-deep);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(232, 65, 66, 0.16);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(4.4rem, 11vw, 9.4rem);
  line-height: 0.86;
  letter-spacing: 0.02em;
  margin: 14px 0 4px;
  color: var(--ink);
}

.ticker {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--red);
  font-size: 1.15rem;
}

.tagline {
  margin-top: 18px;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  max-width: 16ch;
  line-height: 1.2;
}

.lede {
  margin-top: 14px;
  max-width: 36ch;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.ca-module {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  padding: 8px 8px 8px 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--ice-blue);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow);
}

.ca-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--muted);
  flex-shrink: 0;
}

.ca-value {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  overflow-wrap: anywhere;
  word-break: break-all;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.hero-curve {
  position: absolute;
  width: min(92%, 520px);
  height: auto;
  z-index: 0;
  opacity: 0.95;
}

.hero-curve-path {
  stroke-dasharray: 12 10;
  animation: curve-dash 18s linear infinite;
}

.hero-curve-dot {
  offset-path: path("M36 590 C 70 500, 86 430, 150 360 S 250 250, 292 168 S 380 48, 490 28");
  animation: ride 5.5s ease-in-out infinite;
}

.hero-mascot {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  height: auto;
  animation: bob 4.6s ease-in-out infinite;
  filter: drop-shadow(0 28px 36px rgba(28, 28, 30, 0.2));
}

/* Collision */
.collision {
  padding: 108px 0 96px;
  background:
    radial-gradient(circle at 8% 20%, rgba(232, 65, 66, 0.08), transparent 30%),
    var(--white);
}

.section-kicker {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  max-width: 16ch;
}

.collision-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
  margin-top: 28px;
}

.collision-panel,
.collision-result {
  border-radius: 28px;
  padding: clamp(28px, 5vw, 56px);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.collision-avax {
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.28), transparent 40%),
    linear-gradient(160deg, #ff6b6b 0%, var(--red) 48%, var(--red-dark) 100%);
  color: var(--white);
  clip-path: polygon(0 12%, 100% 0, 100% 100%, 0 100%);
}

.collision-pump {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.5), transparent 36%),
    linear-gradient(160deg, #eafff5 0%, #c9ffe4 40%, #26f0a0 100%);
  color: var(--ink);
  clip-path: polygon(0 0, 100% 18%, 100% 100%, 0 100%);
}

.collision-op,
.collision-equals {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6rem);
  color: var(--charcoal);
  display: grid;
  place-items: center;
  line-height: 1;
}

.collision-equals {
  margin: 8px 0 10px;
  color: var(--red);
}

.collision-word {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 5.6rem);
  line-height: 0.86;
  letter-spacing: 0.03em;
}

.collision-line {
  margin-top: 10px;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  font-weight: 600;
}

.collision-result {
  background:
    radial-gradient(circle at 88% 18%, rgba(38, 240, 160, 0.22), transparent 32%),
    linear-gradient(135deg, var(--ink) 0%, #2a2c31 100%);
  color: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 86%, 0 100%);
  position: relative;
  overflow: hidden;
}

.collision-result .collision-line {
  max-width: 14ch;
  color: var(--green);
}

.collision-result::after {
  content: "";
  position: absolute;
  right: 8%;
  top: 18%;
  width: 180px;
  height: 180px;
  border: 10px solid var(--green);
  border-radius: 50% 50% 50% 0;
  opacity: 0.35;
  transform: rotate(-18deg);
}

/* Machine */
.machine {
  padding: 40px 0 100px;
  background:
    linear-gradient(180deg, #f7fbfe 0%, #eaf4fa 100%);
}

.machine-flow {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 40px 0 48px;
}

.machine-arrow {
  font-size: 1.8rem;
  color: var(--red);
  line-height: 1;
}

.step-cap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 36px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: 0.06em;
  box-shadow: var(--shadow);
}

.step-red {
  background: var(--red);
  color: var(--white);
}

.step-green {
  background: var(--green);
  color: var(--ink);
}

.step-split {
  padding: 0;
  overflow: hidden;
  border: 2px solid var(--charcoal);
  background: var(--white);
  color: var(--ink);
}

.step-split span {
  display: inline-flex;
  align-items: center;
  min-height: 64px;
}

.step-split span:first-child {
  background: var(--red);
  color: var(--white);
  padding: 0 16px 0 32px;
}

.step-split span:last-child {
  padding: 0 32px 0 12px;
}

.curve-station {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(20, 32, 40, 0.18);
  box-shadow: var(--shadow);
  background: var(--terminal);
}

.curve-chrome {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 18px;
  background: linear-gradient(90deg, #1b2a33, #24343e);
  color: #d7ece4;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.bond-svg {
  display: block;
  width: 100%;
  height: auto;
}

.bond-path {
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: draw-curve 3.2s ease forwards, pulse-curve 3.8s ease-in-out 3.2s infinite;
}

.machine-manifesto {
  margin-top: 56px;
  text-align: center;
}

.machine-manifesto p {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
}

.machine-manifesto p:last-child {
  color: var(--red);
}

/* Narrative */
.narrative {
  padding: 90px 0;
  background: var(--white);
}

.narrative-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: end;
}

.narrative-block {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
}

.narrative-block p + p {
  margin-top: 8px;
}

.narrative-block-alt {
  color: var(--red);
  padding: 28px 0 0;
  border-top: 4px solid var(--green);
}

/* Banner */
.banner-break {
  margin: 0;
  background: #9ad4ef;
}

.banner-break img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

/* Chart */
.chart {
  padding: 96px 0;
  background:
    radial-gradient(ellipse at top, rgba(232, 65, 66, 0.08), transparent 40%),
    #eef6fb;
}

.chart-note {
  margin-top: 12px;
  color: var(--muted);
  max-width: 36ch;
}

.terminal {
  margin-top: 32px;
  border-radius: 22px;
  overflow: hidden;
  background: #0f1a20;
  border: 2px solid #9ec9dc;
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.55),
    0 24px 50px rgba(20, 32, 40, 0.18);
  position: relative;
}

.terminal::before,
.terminal::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--red);
  z-index: 2;
}

.terminal::before {
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.terminal::after {
  right: 0;
  bottom: 0;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.terminal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 18px;
  background: linear-gradient(90deg, #17303a, #1f3b46 40%, #17303a);
  color: #d9f3ea;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.terminal-lights {
  display: flex;
  gap: 6px;
}

.terminal-lights span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.terminal-lights span:nth-child(1) { background: var(--red); }
.terminal-lights span:nth-child(2) { background: #ffd166; }
.terminal-lights span:nth-child(3) { background: var(--green); }

.terminal-title {
  font-weight: 600;
}

.terminal-meta {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: min(42ch, 36vw);
}

.terminal-screen {
  height: min(62vh, 560px);
  background: #0b1418;
}

.terminal-screen iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.chart-cta {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

/* Convert */
.convert {
  padding: 40px 0 100px;
  background:
    linear-gradient(180deg, #eef6fb 0%, #f7fbfe 100%);
}

.convert-panel {
  text-align: center;
  padding: clamp(36px, 6vw, 72px) 24px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 0%, rgba(232, 65, 66, 0.16), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #eef7fb 100%);
  border: 1px solid var(--ice-blue);
  box-shadow: var(--shadow);
}

.convert-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.86;
  margin-top: 14px;
}

.convert-chain {
  margin-top: 6px;
  font-family: var(--font-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 0.82rem;
}

.convert-copy {
  max-width: 34ch;
  margin: 18px auto 0;
  color: var(--muted);
}

.ca-module-lg {
  margin: 28px auto 0;
}

.convert-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

/* Footer */
.site-footer {
  padding: 28px 0 36px;
  background: var(--white);
  border-top: 1px solid var(--ice-blue);
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.footer-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}

.footer-x {
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--ice-blue);
}

.footer-x:hover {
  border-color: var(--red);
  color: var(--red);
}

.disclaimer {
  width: min(calc(100% - 40px), var(--wrap));
  margin: 16px auto 0;
  font-size: 0.78rem;
  color: var(--muted);
  max-width: 62ch;
}

/* Reveals */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Motion */
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

@keyframes curve-dash {
  to { stroke-dashoffset: -400; }
}

@keyframes ride {
  0% { offset-distance: 0%; opacity: 0; }
  8% { opacity: 1; }
  92% { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}

@keyframes draw-curve {
  to { stroke-dashoffset: 0; }
}

@keyframes pulse-curve {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(38, 240, 160, 0)); }
  50% { filter: drop-shadow(0 0 8px rgba(38, 240, 160, 0.7)); }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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

  .hero-mascot,
  .hero-curve-path,
  .hero-curve-dot,
  .bond-path {
    animation: none !important;
  }
}

/* Tablet */
@media (max-width: 1100px) {
  .hero-grid {
    gap: 12px;
  }

  .hero h1 {
    font-size: clamp(4rem, 10vw, 7rem);
  }

  .hero-mascot {
    width: min(100%, 460px);
  }

  .narrative-grid {
    gap: 28px;
  }
}

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

  .collision-op {
    padding: 4px 0;
  }

  .collision-avax,
  .collision-pump,
  .collision-result {
    clip-path: none;
    min-height: 180px;
  }

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

  .terminal-meta {
    display: none;
  }
}

/* Mobile */
@media (max-width: 760px) {
  :root { --header-h: 68px; }

  .wrap {
    width: min(calc(100% - 28px), var(--wrap));
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 16px 20px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--ice-blue);
    box-shadow: 0 16px 30px rgba(20, 24, 28, 0.08);
  }

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

  .site-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 8px;
    border-bottom: 1px solid var(--ice);
  }

  .nav-buy {
    margin: 12px 0 0;
    justify-content: center;
    min-height: 52px;
    border-bottom: 0;
  }

  .hero {
    padding-top: 18px;
    min-height: 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-bottom: 48px;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 2;
    min-height: 0;
  }

  .hero-mascot {
    width: min(100%, 420px);
    margin-inline: auto;
  }

  .tagline {
    max-width: none;
  }

  .hero-actions .btn,
  .convert-actions .btn {
    flex: 1 1 160px;
    min-height: 52px;
  }

  .ca-module {
    width: 100%;
    justify-content: space-between;
  }

  .ca-value {
    overflow-wrap: anywhere;
  }

  .collision,
  .machine,
  .narrative,
  .chart {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .curve-chrome span:nth-child(2) {
    display: none;
  }

  .terminal-bar {
    flex-wrap: wrap;
  }

  .terminal-title {
    width: 100%;
    order: 3;
  }

  .terminal-screen {
    height: 420px;
  }

  .convert-actions {
    flex-direction: column;
  }

  .footer-inner {
    align-items: flex-start;
  }

  .disclaimer {
    width: min(calc(100% - 28px), var(--wrap));
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 4.2rem;
  }

  .ca-label {
    display: none;
  }
}
