:root {
  --bg0: #080706;
  --bg1: #0e0c0a;
  --surface: rgba(24, 22, 19, 0.94);
  --surface2: rgba(32, 28, 24, 0.9);
  --line: rgba(210, 190, 160, 0.16);
  --ink: #f2ede3;
  --muted: #8f877a;
  --accent: #c6a035;
  --accent-bright: #e4ca6a;
  --accent2: #7a5f20;
  --accent-dim: rgba(198, 160, 53, 0.14);
  --gold: #e0cc8a;
  --font: "Outfit", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --radius: 11px;
  --console-radius: 15px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 4.25rem;
}

body {
  min-height: 100dvh;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg0);
  line-height: 1.45;
  -webkit-text-size-adjust: 100%;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.hidden {
  display: none !important;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  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");
}

.glow {
  position: fixed;
  width: 44rem;
  height: 44rem;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

.glow--a {
  top: -14rem;
  right: -10rem;
  background: radial-gradient(circle, #5c3d28 0%, transparent 72%);
}

.glow--b {
  bottom: -16rem;
  left: -8rem;
  background: radial-gradient(circle, #3a3830 0%, transparent 72%);
}

main,
.topbar,
.footer,
.strip,
.dock,
.sheet {
  position: relative;
  z-index: 1;
}

/* ——— Topbar ——— */
.topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.5rem;
  max-width: 960px;
  margin: 0 auto;
  padding: 0.45rem 1rem;
  padding-top: max(0.45rem, env(safe-area-inset-top, 0px));
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  justify-self: start;
}

.brand__mark {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse 90% 85% at 50% 100%, rgba(94, 234, 212, 0.12) 0%, transparent 58%),
    linear-gradient(160deg, #12100e 0%, #1c1915 55%, #141210 100%);
  box-shadow:
    0 0 0 1px rgba(212, 168, 75, 0.14),
    0 2px 14px rgba(0, 0, 0, 0.38);
  overflow: hidden;
}

.brand__glyph {
  width: 78%;
  height: 78%;
  display: block;
}

.brand__text strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.brand__text small {
  font-size: 0.66rem;
  color: var(--muted);
}

.nav {
  display: none;
  justify-self: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--muted);
}

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

@media (min-width: 880px) {
  .nav {
    display: flex;
  }
}

.topbar__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  justify-self: end;
}

.topbar__wallet {
  padding: 0.42rem 0.85rem;
  font-size: 0.82rem;
}

@media (max-width: 639px) {
  .topbar__wallet {
    display: none;
  }
}

.iconbtn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.55rem;
  height: 2.55rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  padding: 0 0.5rem;
}

.iconbtn span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
}

@media (min-width: 880px) {
  .iconbtn {
    display: none;
  }
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.85rem;
  transition: transform 0.12s ease, box-shadow 0.15s ease, border-color 0.15s, background 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--fill {
  background: linear-gradient(180deg, var(--accent-bright) 0%, var(--accent) 100%);
  color: #14110d;
  box-shadow: 0 3px 18px rgba(198, 160, 53, 0.22);
}

.btn--fill:hover {
  box-shadow: 0 5px 24px rgba(198, 160, 53, 0.3);
}

.btn--ghost {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
}

.btn--ghost:hover {
  border-color: rgba(198, 160, 53, 0.35);
}

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

.btn--line:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.03);
}

.btn--block {
  width: 100%;
  padding: 0.68rem 1rem;
}

.btn--sm {
  padding: 0.38rem 0.85rem;
  font-size: 0.78rem;
}

.btn--dock {
  padding: 0.46rem 1rem;
  font-size: 0.83rem;
  flex-shrink: 0;
}

/* ——— Sheet menu ——— */
.sheet {
  position: fixed;
  inset: 0;
  z-index: 50;
}

.sheet[hidden] {
  display: none;
}

.sheet__scrim {
  position: absolute;
  inset: 0;
  background: rgba(3, 6, 12, 0.78);
  border: none;
  cursor: pointer;
}

.sheet__panel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg1);
  border-top: 1px solid var(--line);
  border-radius: 20px 20px 0 0;
  padding: 1rem 1.25rem calc(1.25rem + env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  animation: rise 0.26s ease;
}

@keyframes rise {
  from {
    transform: translateY(100%);
    opacity: 0.65;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.sheet__panel a {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.sheet__panel .btn {
  margin-top: 0.35rem;
}

.sheet__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  padding-bottom: 0.35rem;
}

.sheet__close {
  font-size: 1.45rem;
  line-height: 1;
  padding: 0.25rem 0.45rem;
  opacity: 0.85;
}

/* ——— Hero ——— */
.hero {
  max-width: 960px;
  margin: 0 auto;
  padding: 0.65rem 1rem 1.35rem;
}

.hero__intro {
  text-align: center;
  max-width: 34rem;
  margin: 0 auto 0.85rem;
}

.kicker {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.45rem;
}

.hero h1 {
  font-size: clamp(1.38rem, 3.5vw, 2.05rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.028em;
  margin-bottom: 0.5rem;
}

.lead {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.52;
}

.hero__trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.85rem;
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.hero__trust li {
  padding-left: 1rem;
  position: relative;
}

.hero__trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

/* ——— Console ——— */
.console {
  max-width: 640px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--console-radius);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 248, 235, 0.03) inset;
  overflow: hidden;
}

.console__chrome {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.42rem 0.85rem;
  background: rgba(0, 0, 0, 0.32);
  border-bottom: 1px solid var(--line);
}

.console__dots {
  display: flex;
  gap: 6px;
}

.console__dots::before,
.console__dots::after {
  content: "";
}

.console__dots,
.console__dots::before,
.console__dots::after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4a433a;
}

.console__dots::before {
  background: #6b6256;
}

.console__dots::after {
  background: var(--accent);
  opacity: 0.65;
}

.console__title {
  flex: 1;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.console__badge {
  font-family: var(--mono);
  font-size: 0.62rem;
  padding: 0.16rem 0.4rem;
  border-radius: 5px;
  background: var(--accent-dim);
  color: var(--accent-bright);
  border: 1px solid rgba(198, 160, 53, 0.28);
}

.console__body {
  display: block;
}

.console__shell {
  position: relative;
  min-height: 215px;
  padding: 0.95rem 1rem 1.05rem;
}

.phase__hint {
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 0.7rem;
  line-height: 1.42;
}

.asset-toggle {
  display: flex;
  gap: 0;
  margin-bottom: 0.72rem;
  border-radius: 9px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.22);
}

.asset-toggle__opt {
  flex: 1;
  text-align: center;
  cursor: pointer;
}

.asset-toggle__opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.asset-toggle__opt span {
  display: block;
  padding: 0.45rem 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  transition: background 0.15s, color 0.15s;
}

.asset-toggle__opt input:checked + span {
  background: var(--accent-dim);
  color: var(--accent-bright);
}

.asset-toggle__opt:hover span {
  color: var(--ink);
}

.field {
  display: block;
  margin-bottom: 0.62rem;
}

.field__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.32rem;
}

.field input {
  width: 100%;
  padding: 0.6rem 0.82rem;
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--ink);
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid var(--line);
  border-radius: 9px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.field input::placeholder {
  color: #6a655c;
}

.field input:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.field input:focus {
  outline: none;
  border-color: rgba(198, 160, 53, 0.55);
  box-shadow: 0 0 0 3px rgba(198, 160, 53, 0.1);
}

.field input[aria-invalid="true"] {
  border-color: #c75a6a;
}

.field__err {
  font-size: 0.78rem;
  color: #e88896;
  margin: -0.35rem 0 0.65rem;
}

.phase {
  animation: fadeIn 0.35s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Loading — minimal */
.phase--loading {
  padding: 0.85rem 0 0.35rem;
}

.load__status {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  margin-bottom: 0.65rem;
  min-height: 1.3em;
}

.load__track {
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.load__bar {
  display: block;
  height: 100%;
  width: 38%;
  border-radius: 3px;
  background: var(--accent);
  opacity: 0.85;
  animation: loadSlide 1.15s ease-in-out infinite;
}

@keyframes loadSlide {
  0% {
    transform: translateX(-100%);
  }
  45% {
    opacity: 1;
  }
  100% {
    transform: translateX(280%);
    opacity: 0.65;
  }
}

.section__head--tight {
  margin-bottom: 0.65rem;
}

.section__head--tight h2 {
  margin-bottom: 0;
}

.section--compare {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.compare__footer-note {
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.65rem;
  line-height: 1.35;
}

.compare__footer-note strong {
  color: var(--accent-bright);
  font-weight: 600;
}

/* Preview — compact */
.phase--preview {
  padding-top: 0;
}

.preview__head {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.35rem;
  flex-wrap: wrap;
}

.preview__tag {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
}

.preview__ctx {
  font-family: var(--mono);
  font-size: 0.65rem;
  padding: 0.12rem 0.38rem;
  border-radius: 4px;
  background: var(--accent-dim);
  color: var(--accent-bright);
  border: 1px solid rgba(198, 160, 53, 0.25);
}

.preview__addr {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--gold);
  word-break: break-all;
  margin: 0 0 0.45rem;
  line-height: 1.3;
}

.preview__target-label {
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 0.2rem;
}

.preview__explain {
  font-size: 0.7rem;
  color: var(--muted);
  line-height: 1.45;
  margin: 0 0 0.5rem;
}

.preview__explain strong {
  color: var(--ink);
  font-weight: 600;
}

.preview__sample {
  position: relative;
  margin: 0 0 0.45rem;
  padding: 0.38rem 0.42rem 0.42rem;
  border-radius: 8px;
  border: 1px dashed rgba(198, 160, 53, 0.35);
  background: rgba(198, 160, 53, 0.04);
}

.preview__sample-badge {
  display: block;
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 0.35rem;
}

.preview__sample--stat {
  text-align: center;
  padding: 0.5rem 0.42rem 0.58rem;
}

.preview__sample--stat .preview__sample-badge {
  margin-bottom: 0.12rem;
}

.preview__big-stat {
  margin: 0;
  font-size: clamp(2.85rem, 15vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(185deg, #f0e6c8 0%, var(--accent-bright) 22%, var(--accent) 52%, var(--accent2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.preview__sample .preview__dl {
  margin: 0;
  padding: 0.32rem 0.45rem;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.18);
}

.preview__dl {
  margin: 0 0 0.45rem;
  padding: 0.4rem 0.52rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid var(--line);
  display: grid;
  gap: 0;
}

.preview__row {
  display: grid;
  grid-template-columns: 6.2rem 1fr;
  gap: 0.35rem 0.5rem;
  align-items: baseline;
  padding: 0.28rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.72rem;
}

.preview__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.preview__row:first-child {
  padding-top: 0;
}

.preview__row dt {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  font-weight: 500;
  margin: 0;
}

.preview__row dd {
  margin: 0;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.28;
}

.preview__row--full {
  grid-template-columns: 6.2rem 1fr;
}

@media (max-width: 380px) {
  .preview__row {
    grid-template-columns: 5.4rem 1fr;
    font-size: 0.68rem;
  }
}

.preview__note {
  font-size: 0.68rem;
  color: var(--muted);
  line-height: 1.35;
  margin: 0 0 0.5rem;
  padding: 0.38rem 0.48rem;
  border-radius: 7px;
  border: 1px dashed rgba(180, 165, 140, 0.22);
  background: rgba(0, 0, 0, 0.08);
}

/* Blur block (preview) */
.blur-lock {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.2);
}

.blur-lock__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.blur-lock__title {
  font-weight: 600;
  color: var(--ink);
}

.blur-lock__badge {
  font-family: var(--mono);
  font-size: 0.58rem;
  padding: 0.14rem 0.38rem;
  border-radius: 4px;
  color: var(--gold);
  border: 1px solid rgba(212, 168, 75, 0.3);
  background: rgba(212, 168, 75, 0.07);
}

.blur-lock__viewport {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.22);
}

.blur-lock__text {
  line-height: 1.45;
  color: var(--ink);
  filter: blur(4px);
  user-select: none;
  pointer-events: none;
  opacity: 0.5;
}

.blur-lock__text p + p {
  margin-top: 0.42rem;
}

.blur-lock__fog {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(8, 7, 6, 0.04) 0%,
    rgba(8, 7, 6, 0.42) 55%,
    rgba(8, 7, 6, 0.82) 100%
  );
}

.blur-lock--compact {
  padding: 0.48rem 0.52rem 0.55rem;
  margin-bottom: 0.45rem;
}

.blur-lock--compact .blur-lock__head {
  margin-bottom: 0.38rem;
}

.blur-lock--compact .blur-lock__title {
  font-size: 0.7rem;
}

.blur-lock--compact .blur-lock__viewport {
  min-height: 4.1rem;
  margin-bottom: 0.4rem;
}

.blur-lock--compact .blur-lock__text {
  padding: 0.48rem 0.52rem;
  font-size: 0.65rem;
}

.blur-lock__footer {
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
  align-items: stretch;
}

.blur-lock__hint {
  margin: 0;
  font-size: 0.65rem;
  color: var(--muted);
  line-height: 1.35;
  text-align: center;
}

.blur-lock__connect {
  font-size: 0.78rem;
  padding: 0.48rem 0.75rem;
}

.preview__reset {
  margin-top: 0;
  font-size: 0.82rem;
  padding: 0.52rem 0.85rem;
}

/* Strip */
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(198, 160, 53, 0.04);
}

.strip__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0.42rem 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.strip__inner--solo {
  justify-content: center;
}

.strip__text {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  margin: 0;
}

/* Sections */
.section {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.65rem 1rem;
}

.section--alt {
  background: linear-gradient(180deg, transparent, rgba(22, 19, 16, 0.55), transparent);
}

.section--narrow {
  max-width: 620px;
}

.section__head {
  margin-bottom: 1.15rem;
}

.section__head h2 {
  font-size: clamp(1.18rem, 2.6vw, 1.58rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.section__head p {
  color: var(--muted);
  font-size: 0.86rem;
  max-width: 32rem;
}

.timeline {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

@media (min-width: 768px) {
  .timeline {
    grid-template-columns: repeat(3, 1fr);
  }
}

.timeline li {
  padding: 0.85rem 0.92rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.timeline__idx {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--accent-bright);
  display: block;
  margin-bottom: 0.35rem;
}

.timeline h3 {
  font-size: 0.92rem;
  margin-bottom: 0.28rem;
}

.timeline p {
  font-size: 0.82rem;
  color: var(--muted);
}

.compare {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .compare {
    grid-template-columns: 1fr 1fr;
  }
}

.compare__col {
  padding: 1rem 1.05rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.compare__col--muted {
  background: rgba(255, 255, 255, 0.02);
}

.compare__col--muted li {
  opacity: 0.68;
}

.compare__col--accent {
  background: var(--accent-dim);
  border-color: rgba(198, 160, 53, 0.32);
}

.compare__col h3 {
  font-size: 0.95rem;
  margin-bottom: 0.65rem;
}

.compare__col ul {
  list-style: none;
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 0.85rem;
}

.compare__col li {
  padding: 0.38rem 0;
  padding-left: 1.1rem;
  position: relative;
}

.compare__col--accent li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-bright);
  font-size: 0.82rem;
}

.compare__col--muted li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--muted);
}

.compare--dense {
  gap: 0.5rem;
}

.compare--dense .compare__col {
  padding: 0.5rem 0.58rem;
}

.compare--dense .compare__col h3 {
  font-size: 0.7rem;
  margin-bottom: 0.32rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.compare--dense .compare__col ul {
  margin-bottom: 0;
}

  font-size: 0.68rem;
  line-height: 1.32;
}

.compare--dense .compare__list li {
  padding: 0.1rem 0 0.1rem 0.85rem;
}

.compare--dense .compare__col--accent li::before {
  font-size: 0.72rem;
  top: 0.06rem;
}

.section--compare .section__head--tight h2 {
  font-size: clamp(0.95rem, 2.2vw, 1.12rem);
  font-weight: 600;
}

.chips {
  display: grid;
  gap: 0.58rem;
}

@media (min-width: 600px) {
  .chips {
    grid-template-columns: repeat(2, 1fr);
  }
}

.chips article {
  padding: 0.78rem 0.88rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
}

.chips h3 {
  font-size: 0.88rem;
  margin-bottom: 0.22rem;
}

.chips p {
  font-size: 0.8rem;
  color: var(--muted);
}

.faq {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq__item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.78rem 0.92rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  font-weight: 500;
  font-size: 0.86rem;
}

.faq__item:last-of-type {
  border-bottom: none;
}

.faq__chev {
  font-family: var(--mono);
  color: var(--accent-bright);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq__panel {
  display: none;
  padding: 0 0.92rem 0.85rem;
  background: rgba(0, 0, 0, 0.14);
  font-size: 0.82rem;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.faq__item[aria-expanded="true"] + .faq__panel {
  display: block;
}

.faq__item[aria-expanded="true"] .faq__chev {
  transform: rotate(45deg);
}

.footer {
  padding: 1.25rem 1rem calc(5.1rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--line);
}

.footer__inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.footer__fine {
  margin-top: 0.38rem;
  font-size: 0.72rem;
  color: var(--muted);
}

.dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: 0.52rem 0.88rem calc(0.52rem + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, transparent, rgba(6, 5, 4, 0.94) 35%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
}

.dock__copy {
  display: flex;
  flex-direction: column;
  font-size: 0.76rem;
  color: var(--muted);
  min-width: 0;
}

.dock__copy strong {
  color: var(--ink);
  font-size: 0.86rem;
}

@media (min-width: 600px) {
  .dock {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 0.85rem;
    width: min(440px, calc(100% - 2rem));
    padding: 0.48rem 0.72rem;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(16, 14, 12, 0.94);
    backdrop-filter: blur(12px);
  }
}

body.is-menu-open {
  overflow: hidden;
}
