:root {
  color-scheme: dark;
  --ink: #10130f;
  --ink-2: #171b15;
  --panel: #1d221b;
  --panel-2: #22281f;
  --paper: #f1eadc;
  --muted: #b8b7aa;
  --dim: #7f8478;
  --mint: #78f3bd;
  --mint-2: #2cc783;
  --amber: #f6d66b;
  --coral: #ff7f6e;
  --blue: #77a9ff;
  --line: rgba(241, 234, 220, 0.13);
  --line-strong: rgba(241, 234, 220, 0.28);
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --radius: 8px;
  --shell: 1180px;
  --display: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", sans-serif;
  --body: "Aptos", "Segoe UI Variable Text", "Segoe UI", sans-serif;
  --mono: "Bahnschrift", "Cascadia Mono", "Consolas", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 22% 8%, rgba(120, 243, 189, 0.12), transparent 32rem),
    radial-gradient(circle at 82% 16%, rgba(246, 214, 107, 0.09), transparent 28rem),
    linear-gradient(180deg, #0f120e 0%, #151912 46%, #10130f 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(241, 234, 220, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241, 234, 220, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 20;
  padding: 10px 14px;
  border: 1px solid var(--mint);
  border-radius: var(--radius);
  background: var(--ink);
  transform: translateY(-140%);
  transition: transform 180ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section {
  padding: 96px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(16, 19, 15, 0.78);
  border-bottom: 1px solid rgba(241, 234, 220, 0.1);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(241, 234, 220, 0.18);
  border-radius: 12px;
  color: var(--ink);
  background:
    radial-gradient(circle at 30% 26%, rgba(241, 234, 220, 0.65), transparent 0.34rem),
    linear-gradient(135deg, var(--mint), var(--amber));
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(120, 243, 189, 0.18);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-family: var(--display);
  font-size: 16px;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-family: var(--mono);
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.nav-menu a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  transition: color 180ms var(--ease), background 180ms var(--ease), transform 180ms var(--ease);
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--paper);
  background: rgba(241, 234, 220, 0.08);
  transform: translateY(-1px);
  outline: none;
}

.nav-menu .nav-cta {
  margin-left: 6px;
  color: var(--ink);
  background: var(--mint);
  font-weight: 700;
}

.nav-menu .nav-cta:hover,
.nav-menu .nav-cta:focus-visible {
  color: var(--ink);
  background: var(--amber);
}

.nav-toggle {
  width: 42px;
  height: 42px;
  display: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(241, 234, 220, 0.06);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--paper);
  transition: transform 180ms var(--ease);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  padding-top: 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.9fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--amber);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 1px;
  display: inline-block;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: 68px;
  font-weight: 780;
}

h2 {
  margin-bottom: 20px;
  font-size: 46px;
  font-weight: 740;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 740;
}

.hero-lede {
  max-width: 720px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 34px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 750;
  transition: transform 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--mint), var(--amber));
  box-shadow: 0 14px 34px rgba(120, 243, 189, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 20px 46px rgba(246, 214, 107, 0.24);
}

.button-secondary {
  color: var(--paper);
  border-color: var(--line-strong);
  background: rgba(241, 234, 220, 0.06);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(120, 243, 189, 0.42);
  background: rgba(120, 243, 189, 0.08);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  overflow: hidden;
}

.proof-strip div {
  padding: 16px;
  background: rgba(29, 34, 27, 0.72);
}

.proof-strip dt {
  margin-bottom: 6px;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 700;
}

.proof-strip dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  padding: 16px;
  border: 1px solid rgba(241, 234, 220, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(241, 234, 220, 0.08), rgba(241, 234, 220, 0.02)),
    var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  background: linear-gradient(0deg, rgba(120, 243, 189, 0.1), transparent);
  pointer-events: none;
}

.terminal-bar {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(16, 19, 15, 0.72);
  font-family: var(--mono);
  font-size: 13px;
}

.terminal-bar strong {
  color: var(--mint);
}

.route-orbit {
  position: relative;
  min-height: 330px;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(241, 234, 220, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(241, 234, 220, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(120, 243, 189, 0.1), transparent 54%),
    rgba(16, 19, 15, 0.78);
  background-size: 34px 34px, 34px 34px, auto, auto;
  overflow: hidden;
}

.route-orbit svg {
  width: 100%;
  height: 100%;
  min-height: 330px;
}

.route-line {
  fill: none;
  stroke: url(#lineGlow);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 8 12;
  animation: dash 6s linear infinite;
  opacity: 0.82;
}

.route-two {
  animation-direction: reverse;
  opacity: 0.52;
}

.node {
  fill: var(--ink);
  stroke: var(--mint);
  stroke-width: 3;
  filter: drop-shadow(0 0 14px rgba(120, 243, 189, 0.48));
}

.node-c,
.node-e {
  stroke: var(--amber);
}

.route-chip {
  position: absolute;
  padding: 7px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--paper);
  background: rgba(16, 19, 15, 0.78);
  font-family: var(--mono);
  font-size: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.chip-a {
  left: 22px;
  top: 82px;
}

.chip-b {
  left: 45%;
  top: 42px;
}

.chip-c {
  right: 22px;
  bottom: 58px;
}

.telemetry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  overflow: hidden;
}

.telemetry-grid div {
  min-height: 72px;
  padding: 13px;
  background: rgba(16, 19, 15, 0.68);
}

.telemetry-grid span,
.quote-panel span,
.quote-breakdown dt {
  display: block;
  color: var(--dim);
  font-size: 12px;
  text-transform: uppercase;
}

.telemetry-grid strong {
  display: block;
  margin-top: 5px;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 14px;
}

.decision-rail {
  padding-top: 20px;
}

.rail-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr 0.95fr;
  gap: 18px;
}

.rail-grid article {
  min-height: 222px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(29, 34, 27, 0.64);
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), background 220ms var(--ease);
}

.rail-grid article:nth-child(2) {
  transform: translateY(-24px);
  background: rgba(34, 40, 31, 0.92);
}

.rail-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(120, 243, 189, 0.34);
}

.rail-grid article:nth-child(2):hover {
  transform: translateY(-30px);
}

.rail-grid span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--amber);
  font-family: var(--mono);
}

.rail-grid h2 {
  margin-bottom: 12px;
  font-size: 26px;
}

.rail-grid p,
.section-copy p,
.section-heading p,
.network-header p,
.fee-copy p,
.boundary-panel p,
.faq-grid p,
.final-grid p,
.site-footer p {
  color: var(--muted);
}

.section-grid,
.boundaries-grid,
.fees-grid,
.faq-grid,
.final-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 56px;
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 120px;
}

.route-stack {
  display: grid;
  gap: 18px;
}

.route-step {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(241, 234, 220, 0.07), rgba(241, 234, 220, 0.025));
}

.route-step > strong {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--amber);
  font-family: var(--mono);
}

.route-step p,
.fee-layers p,
.boundary-list p,
.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.calculator-section {
  background:
    linear-gradient(180deg, rgba(120, 243, 189, 0.04), rgba(246, 214, 107, 0.04)),
    rgba(0, 0, 0, 0.16);
  border-block: 1px solid rgba(241, 234, 220, 0.08);
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 760px;
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 22px;
  align-items: stretch;
}

.calculator-panel,
.quote-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(29, 34, 27, 0.8);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.26);
}

.calculator-panel {
  padding: 24px;
}

.field-row {
  display: grid;
  gap: 16px;
}

.field-row.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  margin-bottom: 18px;
}

.field label,
.label-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: var(--paper);
  font-size: 14px;
  font-weight: 720;
}

.label-line output {
  color: var(--amber);
  font-family: var(--mono);
  font-size: 12px;
}

.select-button,
.amount-control {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--paper);
  background: rgba(16, 19, 15, 0.74);
  transition: border-color 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease);
}

.select-button:hover,
.select-button:focus-visible,
.amount-control:focus-within {
  border-color: rgba(120, 243, 189, 0.54);
  background: rgba(16, 19, 15, 0.92);
  box-shadow: 0 0 0 4px rgba(120, 243, 189, 0.08);
  outline: none;
}

.select-button b {
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--amber);
  border-bottom: 2px solid var(--amber);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms var(--ease);
}

.custom-select {
  position: relative;
}

.custom-select.open .select-button b {
  transform: rotate(225deg) translateY(-1px);
}

.select-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 5;
  display: none;
  max-height: 260px;
  overflow: auto;
  padding: 6px;
  margin: 0;
  list-style: none;
  border: 1px solid rgba(120, 243, 189, 0.32);
  border-radius: var(--radius);
  background: #12160f;
  box-shadow: var(--shadow);
}

.custom-select.open .select-menu {
  display: block;
}

.select-menu li {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 6px;
  color: var(--muted);
  cursor: pointer;
}

.select-menu li:hover,
.select-menu li[aria-selected="true"] {
  color: var(--paper);
  background: rgba(120, 243, 189, 0.1);
}

.amount-control input {
  width: 100%;
  min-width: 0;
  border: 0;
  color: var(--paper);
  background: transparent;
  outline: none;
  font-family: var(--mono);
  font-size: 18px;
}

.amount-control span {
  color: var(--amber);
  font-family: var(--mono);
  font-size: 13px;
}

input[type="range"] {
  width: 100%;
  height: 32px;
  margin: 0;
  accent-color: var(--mint);
  cursor: pointer;
}

input[type="range"]:focus-visible {
  outline: 2px solid rgba(120, 243, 189, 0.8);
  outline-offset: 4px;
  border-radius: var(--radius);
}

.scale {
  display: flex;
  justify-content: space-between;
  color: var(--dim);
  font-size: 12px;
}

.form-note {
  margin: 8px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.quote-panel {
  padding: 24px;
  background:
    radial-gradient(circle at 78% 12%, rgba(255, 127, 110, 0.12), transparent 18rem),
    rgba(29, 34, 27, 0.86);
}

.quote-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 32px;
}

.quote-top strong {
  font-family: var(--mono);
  color: var(--mint);
}

.quote-main strong {
  display: block;
  margin: 6px 0 22px;
  font-family: var(--display);
  font-size: 38px;
  line-height: 1.1;
}

.fee-meter {
  height: 10px;
  padding: 2px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(16, 19, 15, 0.8);
}

.fee-meter i {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mint), var(--amber), var(--coral));
  transition: width 220ms var(--ease);
}

.quote-breakdown {
  display: grid;
  gap: 1px;
  padding: 1px;
  margin: 24px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  overflow: hidden;
}

.quote-breakdown div {
  display: grid;
  grid-template-columns: minmax(140px, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  background: rgba(16, 19, 15, 0.62);
}

.quote-breakdown dd {
  margin: 0;
  font-family: var(--mono);
  color: var(--paper);
}

.route-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.route-tags span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(241, 234, 220, 0.04);
  font-size: 12px;
  text-transform: none;
}

.network-header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.72fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 30px;
}

.network-table {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(29, 34, 27, 0.6);
}

.table-row {
  display: grid;
  grid-template-columns: 0.72fr 1.22fr 1.05fr 0.8fr;
  gap: 1px;
  border-bottom: 1px solid var(--line);
}

.table-row:last-child {
  border-bottom: 0;
}

.table-row span {
  min-height: 70px;
  display: flex;
  align-items: center;
  padding: 16px;
  color: var(--muted);
  background: rgba(16, 19, 15, 0.42);
}

.table-row span:first-child {
  color: var(--paper);
  font-family: var(--mono);
}

.table-head span {
  min-height: 46px;
  color: var(--amber);
  background: rgba(16, 19, 15, 0.78);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

.fees-section {
  padding-top: 84px;
}

.text-link {
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 0 16px;
  border: 1px solid rgba(120, 243, 189, 0.42);
  border-radius: var(--radius);
  color: var(--ink);
  background: linear-gradient(135deg, var(--mint), var(--amber));
  font-weight: 750;
  box-shadow: 0 12px 26px rgba(120, 243, 189, 0.14);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), border-color 180ms var(--ease);
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(246, 214, 107, 0.2);
  outline: none;
  border-color: rgba(246, 214, 107, 0.8);
}

.fee-layers {
  display: grid;
  gap: 14px;
}

.fee-layers div {
  padding: 20px;
  border-left: 3px solid var(--mint);
  border-radius: var(--radius);
  background: rgba(29, 34, 27, 0.76);
}

.fee-layers div:nth-child(2) {
  border-left-color: var(--amber);
  margin-left: 42px;
}

.fee-layers div:nth-child(3) {
  border-left-color: var(--coral);
  margin-left: 84px;
}

.fee-layers span {
  color: var(--dim);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

.fee-layers strong {
  display: block;
  margin: 5px 0 8px;
  font-size: 20px;
}

.boundaries-section {
  background:
    linear-gradient(135deg, rgba(255, 127, 110, 0.08), transparent 36%),
    rgba(0, 0, 0, 0.18);
  border-block: 1px solid rgba(241, 234, 220, 0.08);
}

.boundary-panel {
  padding: 30px;
  border: 1px solid rgba(255, 127, 110, 0.28);
  border-radius: var(--radius);
  background: rgba(29, 34, 27, 0.72);
}

.boundary-list {
  display: grid;
  gap: 14px;
}

.boundary-list div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(16, 19, 15, 0.54);
}

.boundary-list strong {
  color: var(--amber);
  font-size: 18px;
}

.faq-grid {
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(29, 34, 27, 0.72);
  overflow: hidden;
}

.faq-list summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  color: var(--paper);
  cursor: pointer;
  font-weight: 760;
}

.faq-list summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--mint);
  font-family: var(--mono);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list summary:focus-visible {
  outline: 2px solid rgba(120, 243, 189, 0.72);
  outline-offset: -4px;
}

.faq-list p {
  padding: 0 20px 20px;
}

.final-cta {
  padding: 82px 0;
}

.final-grid {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 34px;
  border: 1px solid rgba(120, 243, 189, 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 0%, rgba(120, 243, 189, 0.12), transparent 22rem),
    rgba(29, 34, 27, 0.82);
}

.final-grid h2 {
  margin-bottom: 12px;
}

.final-grid p {
  max-width: 720px;
  margin-bottom: 0;
}

.site-footer {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  background: #0e110d;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.footer-grid p {
  margin: 0;
  font-size: 13px;
}

.footer-grid div {
  display: flex;
  gap: 16px;
}

.footer-grid div a {
  color: var(--muted);
  font-size: 13px;
}

.footer-grid div a:hover,
.footer-grid div a:focus-visible {
  color: var(--mint);
  outline: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 720ms var(--ease) forwards;
}

.hero-visual.reveal {
  animation-delay: 140ms;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dash {
  to {
    stroke-dashoffset: -120;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 980px) {
  .section {
    padding: 76px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 64px;
  }

  .hero-grid,
  .section-grid,
  .boundaries-grid,
  .fees-grid,
  .faq-grid,
  .calculator-layout,
  .network-header {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-lede {
    font-size: 18px;
  }

  .section-copy {
    position: static;
  }

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

  .rail-grid article:nth-child(2),
  .rail-grid article:nth-child(2):hover {
    transform: none;
  }

  .telemetry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .table-row {
    grid-template-columns: 0.78fr 1.25fr;
  }

  .table-head {
    display: none;
  }

  .table-row span {
    min-height: 60px;
  }

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

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .nav {
    min-height: 64px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    display: none;
    padding: 10px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    background: rgba(16, 19, 15, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-menu.open {
    display: grid;
    gap: 4px;
  }

  .nav-menu a {
    justify-content: center;
    min-height: 44px;
  }

  .nav-menu .nav-cta {
    margin-left: 0;
  }

  .hero {
    padding-top: 46px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 31px;
  }

  h3 {
    font-size: 18px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .proof-strip,
  .field-row.two,
  .final-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    padding: 12px;
  }

  .route-orbit,
  .route-orbit svg {
    min-height: 270px;
  }

  .route-chip {
    font-size: 11px;
  }

  .chip-b {
    left: 30%;
  }

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

  .route-step {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
  }

  .route-step > strong {
    width: 38px;
    height: 38px;
  }

  .calculator-panel,
  .quote-panel {
    padding: 18px;
  }

  .quote-main strong {
    font-size: 30px;
  }

  .fee-layers div:nth-child(2),
  .fee-layers div:nth-child(3) {
    margin-left: 0;
  }

  .final-grid {
    padding: 24px;
  }

  .final-grid .button {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .shell {
    width: min(calc(100% - 22px), var(--shell));
  }

  .section {
    padding: 62px 0;
  }

  h1 {
    font-size: 33px;
  }

  h2 {
    font-size: 27px;
  }

  .brand small {
    display: none;
  }

  .hero-lede {
    font-size: 16px;
  }

  .button {
    min-height: 48px;
    padding: 0 14px;
  }

  .route-orbit,
  .route-orbit svg {
    min-height: 238px;
  }

  .route-chip {
    display: none;
  }

  .table-row {
    grid-template-columns: 1fr;
  }

  .table-row span {
    min-height: auto;
    padding: 12px;
  }

  .quote-breakdown div {
    display: grid;
    gap: 4px;
  }
}
