:root {
  --ink: #101512;
  --ink-2: #19211c;
  --ink-3: #26302a;
  --paper: #edf0eb;
  --surface: #ffffff;
  --surface-2: #e2e7e1;
  --line: #c8d0c8;
  --line-dark: #3b4940;
  --text: #141a16;
  --muted: #68736b;
  --muted-light: #a8b2aa;
  --mint: #9af2c1;
  --mint-deep: #167a4b;
  --cyan: #66cef2;
  --amber: #f3c95b;
  --coral: #f17862;
  --danger: #d95a50;
  --header-height: 72px;
  --shell: 1340px;
  --radius-sm: 4px;
  --radius-md: 7px;
  --font-sans: "Manrope", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  --shadow: 0 18px 42px rgba(16, 21, 18, .11);
  --ease: cubic-bezier(.2, .75, .25, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

html.i18n-pending body {
  visibility: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.62;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

::selection {
  background: var(--mint);
  color: var(--ink);
}

button,
input,
select {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
  cursor: pointer;
}

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

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

[hidden] {
  display: none !important;
}

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

.section-pad {
  padding: 104px 0;
}

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

h1,
h2,
h3 {
  line-height: 1.1;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 22px;
  font-size: 43px;
  font-weight: 750;
}

h3 {
  font-size: 20px;
}

.eyebrow,
.panel-label,
.modal-code,
.metric-item > span,
.pool-table-head,
.pool-row small,
.range-labels,
.estimate-head > span,
.estimate-primary small,
.trust-list small,
.wordmark-copy small {
  font-family: var(--font-mono);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--mint-deep);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--mint);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(154, 242, 193, .16);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  50% { opacity: .35; transform: scale(.8); }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.3;
  text-align: center;
  transition: transform 180ms var(--ease), background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button:focus-visible,
.pool-filter:focus-visible,
.pool-action:focus-visible,
.language-trigger:focus-visible,
.language-option:focus-visible,
.menu-toggle:focus-visible,
.faq-question:focus-visible,
.wallet-options button:focus-visible,
.modal-close:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.button-primary {
  border-color: var(--mint);
  background: var(--mint);
  color: var(--ink);
}

.button-primary:hover {
  border-color: var(--amber);
  background: var(--amber);
}

.button-ghost {
  border-color: rgba(255, 255, 255, .46);
  background: rgba(16, 21, 18, .28);
  color: #fff;
}

.button-ghost:hover {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: rgba(16, 21, 18, .9);
  color: #fff;
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(16, 21, 18, .98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
}

.header-row {
  display: flex;
  align-items: center;
  height: 100%;
}

.wordmark {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
}

.wordmark-mark {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  width: 28px;
  height: 28px;
  padding: 5px;
  border: 1px solid var(--mint);
  border-radius: 50%;
}

.wordmark-mark i {
  display: block;
  width: 4px;
  border-radius: 1px 1px 0 0;
  background: var(--mint);
}

.wordmark-mark i:nth-child(1) { height: 8px; }
.wordmark-mark i:nth-child(2) { height: 16px; }
.wordmark-mark i:nth-child(3) { height: 12px; }

.wordmark-copy {
  display: grid;
  gap: 0;
}

.wordmark-copy strong {
  font-size: 15px;
  letter-spacing: 0;
}

.wordmark-copy small {
  color: var(--mint);
  font-size: 7px;
  font-weight: 600;
  line-height: 1.2;
}

.primary-nav {
  display: flex;
  align-self: stretch;
  align-items: center;
  gap: 2px;
  margin-left: 58px;
}

.primary-nav a {
  position: relative;
  display: grid;
  place-items: center;
  height: 100%;
  padding: 0 15px;
  color: #bcc6be;
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
}

.primary-nav a::after {
  position: absolute;
  right: 15px;
  bottom: 15px;
  left: 15px;
  height: 2px;
  background: var(--mint);
  content: "";
  opacity: 0;
  transform: scaleX(.3);
  transition: opacity 160ms ease, transform 160ms ease;
}

.primary-nav a:hover {
  color: #fff;
}

.primary-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.network-status {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 36px;
  padding: 0 11px;
  border: 1px solid #35413a;
  border-radius: var(--radius-sm);
  color: #bac4bc;
  font-family: var(--font-mono);
  font-size: 9px;
}

.network-status i,
.footer-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 3px rgba(154, 242, 193, .12);
}

.language-switcher {
  position: relative;
}

.language-trigger {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 76px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid #35413a;
  border-radius: var(--radius-sm);
  background: transparent;
  color: #dce2dd;
  font-size: 11px;
  font-weight: 650;
}

.language-chevron {
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.language-switcher.open .language-chevron {
  transform: translateY(2px) rotate(225deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 120;
  width: 158px;
  padding: 6px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  background: var(--ink-2);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .28);
}

.language-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 38px;
  padding: 0 10px;
  border-radius: 2px;
  background: transparent;
  color: #dbe2dc;
  font-size: 11px;
  text-align: left;
}

.language-option span:last-child {
  color: #7f8c83;
  font-family: var(--font-mono);
  font-size: 9px;
}

.language-option:hover,
.language-option.is-active {
  background: var(--mint);
  color: var(--ink);
}

.language-option:hover span:last-child,
.language-option.is-active span:last-child {
  color: var(--ink);
}

.button-wallet {
  min-height: 36px;
  padding: 8px 14px;
  border-color: var(--mint);
  background: var(--mint);
  color: var(--ink);
  font-size: 11px;
}

.button-wallet:hover {
  border-color: var(--amber);
  background: var(--amber);
}

.button-wallet.is-connected {
  border-color: var(--cyan);
  background: transparent;
  color: var(--cyan);
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 36px;
  padding: 9px;
  border: 1px solid #35413a;
  border-radius: var(--radius-sm);
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: #fff;
  transition: transform 160ms ease;
}

.menu-toggle.is-open span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 780px;
  padding-top: var(--header-height);
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.hero-media,
.hero-mask {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("/assets/digital-wealth.jpeg");
  background-position: center;
  background-size: cover;
  opacity: .46;
}

.hero-mask {
  background:
    linear-gradient(90deg, rgba(16, 21, 18, .98) 0%, rgba(16, 21, 18, .91) 42%, rgba(16, 21, 18, .36) 78%, rgba(16, 21, 18, .68) 100%),
    linear-gradient(0deg, rgba(16, 21, 18, .78), transparent 44%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, .82fr);
  align-items: center;
  gap: 76px;
  min-height: 650px;
  padding-top: 68px;
  padding-bottom: 58px;
}

.hero-copy {
  max-width: 690px;
}

.hero h1 {
  margin-bottom: 26px;
  font-size: 60px;
  font-weight: 750;
}

.hero h1 span {
  color: var(--mint);
}

.hero-summary {
  max-width: 610px;
  margin-bottom: 30px;
  color: #c0cac2;
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #dce3dd;
  font-size: 11px;
}

.hero-features span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid #506057;
  border-radius: 50%;
  color: var(--mint);
  font-family: var(--font-mono);
  font-size: 8px;
}

.hero-features b {
  font-weight: 600;
}

.market-panel {
  width: 100%;
  overflow: hidden;
  border: 1px solid #536157;
  border-top: 3px solid var(--mint);
  border-radius: var(--radius-md);
  background: rgba(16, 21, 18, .88);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
  backdrop-filter: blur(15px);
}

.panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid #35413a;
}

.panel-head > div {
  display: grid;
  gap: 3px;
}

.panel-label {
  color: var(--mint);
  font-size: 9px;
  font-weight: 600;
}

.panel-head strong {
  color: #a7b1a9;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
}

.live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 7px;
  border: 1px solid #3c4a41;
  border-radius: 2px;
  color: var(--mint);
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 600;
}

.live-badge i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint);
}

.tvl-block {
  position: relative;
  display: grid;
  gap: 1px;
  padding: 24px 20px 4px;
}

.tvl-block > span {
  color: #8f9b91;
  font-size: 11px;
}

.tvl-block > strong {
  font-family: var(--font-mono);
  font-size: 33px;
  line-height: 1.25;
}

.tvl-block small {
  position: absolute;
  right: 20px;
  bottom: 10px;
  color: #8f9b91;
  font-family: var(--font-mono);
  font-size: 9px;
}

.tvl-block small b {
  color: var(--mint);
}

.chart-wrap {
  padding: 8px 20px 16px;
}

.tvl-chart {
  width: 100%;
  height: 165px;
  overflow: visible;
}

.tvl-chart .grid-line {
  fill: none;
  stroke: rgba(255, 255, 255, .08);
  stroke-width: 1;
}

.tvl-chart .area-line {
  fill: url("#chartFill");
  stroke: none;
}

.tvl-chart .value-line {
  fill: none;
  stroke: var(--mint);
  stroke-linecap: round;
  stroke-width: 3;
}

.tvl-chart circle {
  fill: var(--ink);
  stroke: var(--mint);
  stroke-width: 3;
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  color: #66736a;
  font-family: var(--font-mono);
  font-size: 8px;
}

.panel-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #35413a;
}

.panel-stats > div {
  display: grid;
  gap: 2px;
  padding: 15px 14px;
  border-right: 1px solid #35413a;
}

.panel-stats > div:last-child {
  border-right: 0;
}

.panel-stats span {
  color: #7d897f;
  font-size: 9px;
}

.panel-stats strong {
  font-family: var(--font-mono);
  font-size: 12px;
}

.market-ticker {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  min-height: 58px;
  border-top: 1px solid #354139;
  background: rgba(10, 14, 11, .94);
}

.ticker-track {
  display: grid;
  grid-template-columns: repeat(5, auto);
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
}

.ticker-track > span {
  color: #aeb9b0;
  font-family: var(--font-mono);
  font-size: 9px;
  white-space: nowrap;
}

.ticker-track b {
  margin-right: 7px;
  color: #fff;
}

.ticker-track em {
  margin-left: 6px;
  color: var(--mint);
  font-style: normal;
}

.ticker-track em.neutral {
  color: var(--cyan);
}

.metric-strip {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.metric-item {
  display: grid;
  align-content: center;
  min-height: 150px;
  padding: 26px 30px;
  border-left: 1px solid var(--line);
}

.metric-item:last-child {
  border-right: 1px solid var(--line);
}

.metric-item > span {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
}

.metric-item strong {
  margin-bottom: 3px;
  font-family: var(--font-mono);
  font-size: 27px;
  line-height: 1.2;
}

.metric-item small {
  color: var(--muted);
  font-size: 10px;
}

.metric-item.accent {
  background: var(--mint);
}

.metric-item.accent > span,
.metric-item.accent small {
  color: #315742;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 510px);
  align-items: end;
  gap: 54px;
  margin-bottom: 38px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 3px;
  color: var(--muted);
}

.pool-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}

.pool-filters {
  display: flex;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: var(--radius-sm);
}

.pool-filter {
  min-height: 39px;
  padding: 0 15px;
  border-right: 1px solid var(--ink);
  background: transparent;
  font-size: 11px;
  font-weight: 700;
}

.pool-filter:last-child {
  border-right: 0;
}

.pool-filter:hover,
.pool-filter.is-active {
  background: var(--ink);
  color: #fff;
}

.chain-filter {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
}

.chain-filter select {
  height: 39px;
  min-width: 150px;
  padding: 0 32px 0 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  outline: 0;
  background: var(--surface);
  font-size: 11px;
}

.pool-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: 0 7px 24px rgba(16, 21, 18, .05);
}

.pool-table-head,
.pool-row {
  display: grid;
  grid-template-columns: minmax(190px, 1.45fr) minmax(120px, .85fr) minmax(112px, .72fr) minmax(105px, .7fr) minmax(112px, .74fr) 78px 132px;
  align-items: center;
  gap: 12px;
}

.pool-table-head {
  min-height: 47px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--muted);
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
}

.pool-row {
  min-height: 94px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  transition: background-color 160ms ease;
}

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

.pool-row:hover {
  background: #f4f9f5;
}

.pool-row.is-hidden {
  display: none;
}

.pool-pair {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.token-stack {
  position: relative;
  display: flex;
  flex: 0 0 54px;
  align-items: center;
  width: 54px;
  height: 34px;
}

.token {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 3px solid var(--surface);
  border-radius: 50%;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  box-shadow: 0 2px 7px rgba(16, 21, 18, .14);
}

.token + .token {
  margin-left: -13px;
}

.token.usdc { background: #2775ca; }
.token.usdt { background: #26a17b; }
.token.eth { background: #5667a9; }
.token.btc { background: #f39b2f; }
.token.dai { background: #e6ae2e; }
.token.aero { background: #1184c9; }

.pool-pair > div {
  min-width: 0;
}

.pool-pair strong {
  display: block;
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pool-pair small,
.apy-cell small,
.data-cell small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 8px;
}

.network-cell {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 10px;
}

.chain {
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
}

.chain.ethereum { background: #4f5e96; }
.chain.arbitrum { background: #2a8ed0; }
.chain.base { background: #1752f0; }
.chain.polygon { background: #8247e5; }

.apy-cell,
.data-cell {
  min-width: 0;
}

.apy-cell strong {
  color: var(--mint-deep);
  font-family: var(--font-mono);
  font-size: 15px;
}

.data-cell strong {
  font-family: var(--font-mono);
  font-size: 11px;
}

.risk-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 48px;
  min-height: 25px;
  padding: 3px 7px;
  border: 1px solid;
  border-radius: 2px;
  font-size: 9px;
  font-weight: 750;
}

.risk-low {
  border-color: #99d8b6;
  background: #e5f7ed;
  color: #167449;
}

.risk-medium {
  border-color: #dec876;
  background: #fff8d9;
  color: #826316;
}

.risk-high {
  border-color: #e0a29c;
  background: #fff0ee;
  color: #a13d35;
}

.pool-action {
  min-height: 35px;
  padding: 7px 10px;
  border: 1px solid var(--ink);
  border-radius: var(--radius-sm);
  background: transparent;
  font-size: 10px;
  font-weight: 750;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.pool-action:hover {
  border-color: var(--mint);
  background: var(--mint);
}

.table-note {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.calculator {
  background: var(--ink);
  color: #fff;
}

.calculator-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(440px, .82fr);
  gap: 90px;
  align-items: center;
}

.calculator-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: #aeb9b0;
}

.calculator-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 36px;
}

.field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.field > span {
  color: #9ea9a0;
  font-size: 10px;
  font-weight: 700;
}

.field select,
.amount-input {
  width: 100%;
  height: 52px;
  border: 1px solid #4b594f;
  border-radius: var(--radius-sm);
  background: var(--ink-2);
  color: #fff;
}

.field select {
  padding: 0 12px;
  outline: 0;
  font-size: 12px;
}

.amount-input {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
}

.amount-input b,
.amount-input em {
  color: #839087;
  font-family: var(--font-mono);
  font-size: 10px;
  font-style: normal;
}

.amount-input input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 600;
}

.range-field {
  grid-column: 1 / -1;
  margin-top: 5px;
}

.range-field > span {
  display: flex;
  justify-content: space-between;
}

.range-field output {
  color: var(--mint);
  font-family: var(--font-mono);
}

.range-field input[type="range"] {
  width: 100%;
  height: 5px;
  margin: 10px 0 2px;
  outline: 0;
  accent-color: var(--mint);
}

.range-labels {
  display: flex;
  justify-content: space-between;
  color: #68766d;
  font-size: 8px;
}

.estimate-panel {
  overflow: hidden;
  border: 1px solid #4a584e;
  border-top: 3px solid var(--mint);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--text);
  box-shadow: 18px 18px 0 rgba(154, 242, 193, .09);
}

.estimate-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
}

.estimate-head > span {
  color: var(--muted);
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
}

.estimate-head > strong {
  font-size: 11px;
}

.estimate-primary {
  display: grid;
  padding: 23px 20px 18px;
}

.estimate-primary > span {
  color: var(--muted);
  font-size: 10px;
}

.estimate-primary > strong {
  margin: 5px 0 4px;
  font-family: var(--font-mono);
  font-size: 36px;
  line-height: 1.2;
}

.estimate-primary small {
  color: var(--mint-deep);
  font-size: 8px;
}

.estimate-breakdown {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.estimate-breakdown > div {
  display: grid;
  padding: 16px 18px;
  border-right: 1px solid var(--line);
}

.estimate-breakdown > div:last-child {
  border-right: 0;
}

.estimate-breakdown span {
  color: var(--muted);
  font-size: 9px;
}

.estimate-breakdown strong {
  margin: 4px 0 9px;
  font-family: var(--font-mono);
  font-size: 13px;
}

.estimate-breakdown i {
  display: block;
  height: 4px;
  overflow: hidden;
  background: var(--surface-2);
}

.estimate-breakdown b {
  display: block;
  width: 72%;
  height: 100%;
  background: var(--mint-deep);
  transition: width 220ms ease;
}

.estimate-breakdown > div:last-child b {
  width: 28%;
  background: var(--amber);
}

.estimate-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 20px;
}

.estimate-total span {
  font-size: 10px;
}

.estimate-total strong {
  font-family: var(--font-mono);
  font-size: 15px;
}

.estimate-panel > p {
  margin: 0 20px 17px;
  padding: 11px 12px;
  border-left: 3px solid var(--coral);
  background: #fff3ef;
  color: #79625c;
  font-size: 9px;
}

.calculator-action {
  width: calc(100% - 40px);
  margin: 0 20px 20px;
}

.how {
  background: #dfe5df;
}

.section-heading-dark {
  padding-bottom: 30px;
  border-bottom: 1px solid #adb8af;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border: 1px solid #adb8af;
  border-radius: var(--radius-md);
  list-style: none;
}

.steps-grid li {
  position: relative;
  min-height: 285px;
  padding: 24px;
  border-right: 1px solid #adb8af;
  background: rgba(255, 255, 255, .18);
}

.steps-grid li:last-child {
  border-right: 0;
}

.steps-grid li > span {
  color: var(--mint-deep);
  font-family: var(--font-mono);
  font-size: 9px;
}

.steps-grid h3 {
  margin: 28px 0 12px;
  font-size: 17px;
}

.steps-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
}

.step-icon {
  position: relative;
  display: block;
  width: 52px;
  height: 52px;
  margin-top: 30px;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.wallet-icon::before {
  position: absolute;
  inset: 14px 11px;
  border: 2px solid var(--ink);
  border-radius: 3px;
  content: "";
}

.wallet-icon::after {
  position: absolute;
  top: 22px;
  right: 9px;
  width: 10px;
  height: 7px;
  border: 2px solid var(--ink);
  background: var(--mint);
  content: "";
}

.compare-icon::before,
.compare-icon::after {
  position: absolute;
  left: 14px;
  width: 22px;
  height: 8px;
  border: 2px solid var(--ink);
  content: "";
}

.compare-icon::before { top: 14px; }
.compare-icon::after { bottom: 14px; }

.deposit-icon::before {
  position: absolute;
  top: 12px;
  left: 23px;
  width: 2px;
  height: 25px;
  background: var(--ink);
  content: "";
}

.deposit-icon::after {
  position: absolute;
  top: 12px;
  left: 18px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
  content: "";
  transform: rotate(45deg);
}

.claim-icon::before {
  position: absolute;
  inset: 13px;
  border: 2px dashed var(--ink);
  border-radius: 50%;
  content: "";
}

.claim-icon::after {
  position: absolute;
  top: 21px;
  left: 21px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint-deep);
  content: "";
}

.risk {
  background: var(--surface);
}

.risk-layout {
  display: grid;
  grid-template-columns: minmax(280px, .68fr) minmax(0, 1.32fr);
  gap: 84px;
  align-items: start;
}

.risk-intro {
  position: sticky;
  top: calc(var(--header-height) + 34px);
}

.risk-intro h2 {
  font-size: 38px;
}

.risk-intro > p:not(.eyebrow) {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 14px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 750;
}

.text-link b {
  color: var(--mint-deep);
}

.risk-matrix {
  border-top: 2px solid var(--ink);
}

.risk-matrix article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 104px;
  gap: 18px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.risk-index {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--danger);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
}

.risk-matrix h3 {
  margin: 0 0 7px;
  font-size: 16px;
}

.risk-matrix p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.risk-matrix article > strong {
  justify-self: end;
  padding: 5px 7px;
  border: 1px solid #e3b5af;
  border-radius: 2px;
  background: #fff1ef;
  color: #9b4b43;
  font-size: 8px;
  white-space: nowrap;
}

.transparency {
  background: #e6e9e4;
}

.transparency-grid {
  display: grid;
  grid-template-columns: minmax(370px, .9fr) minmax(0, 1.1fr);
  gap: 90px;
  align-items: center;
}

.transparency-visual {
  display: grid;
  grid-template-columns: 255px 1fr;
  align-items: center;
  gap: 40px;
}

.allocation-ring {
  display: grid;
  place-items: center;
  width: 255px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(var(--mint-deep) 0 48%, var(--cyan) 48% 72%, var(--amber) 72% 89%, var(--coral) 89% 100%);
}

.allocation-ring::before {
  grid-area: 1 / 1;
  width: 164px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #e6e9e4;
  content: "";
}

.allocation-ring > div {
  z-index: 1;
  grid-area: 1 / 1;
  display: grid;
  text-align: center;
}

.allocation-ring strong {
  font-family: var(--font-mono);
  font-size: 25px;
}

.allocation-ring span {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 8px;
}

.allocation-legend {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.allocation-legend li {
  display: grid;
  grid-template-columns: 8px 1fr auto;
  align-items: center;
  gap: 8px;
  padding-bottom: 9px;
  border-bottom: 1px solid #c5cbc5;
  font-size: 10px;
}

.allocation-legend i {
  width: 8px;
  height: 8px;
  background: var(--mint-deep);
}

.allocation-legend li:nth-child(2) i { background: var(--cyan); }
.allocation-legend li:nth-child(3) i { background: var(--amber); }
.allocation-legend li:nth-child(4) i { background: var(--coral); }

.allocation-legend strong {
  font-family: var(--font-mono);
  font-size: 9px;
}

.transparency-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
}

.trust-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 32px;
  border-top: 1px solid #bfc6bf;
  border-left: 1px solid #bfc6bf;
}

.trust-list > div {
  display: grid;
  padding: 17px;
  border-right: 1px solid #bfc6bf;
  border-bottom: 1px solid #bfc6bf;
}

.trust-list span {
  color: var(--muted);
  font-size: 9px;
}

.trust-list strong {
  margin: 3px 0;
  font-family: var(--font-mono);
  font-size: 19px;
}

.trust-list small {
  color: var(--mint-deep);
  font-size: 7px;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, .56fr) minmax(0, 1fr);
  gap: 90px;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 34px);
  align-self: start;
}

.faq-intro h2 {
  font-size: 37px;
}

.faq-intro > p:last-child {
  color: var(--muted);
}

.faq-list {
  border-top: 2px solid var(--ink);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  align-items: center;
  gap: 20px;
  width: 100%;
  min-height: 78px;
  padding: 18px 0;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
}

.faq-question i,
.faq-question i::after {
  display: block;
  width: 17px;
  height: 1px;
  background: var(--ink);
  content: "";
}

.faq-question i {
  position: relative;
  justify-self: end;
}

.faq-question i::after {
  position: absolute;
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.faq-item.is-open .faq-question i::after {
  transform: rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 260ms var(--ease);
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding: 0 54px 24px 0;
}

.closing {
  padding: 76px 0;
  background: var(--ink);
  color: #fff;
}

.closing-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}

.closing-row h2 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: 40px;
}

.closing-row p:not(.eyebrow) {
  margin-bottom: 0;
  color: #aeb8b0;
}

.closing-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 9px;
}

.site-footer {
  padding: 56px 0 28px;
  border-top: 3px solid var(--mint);
  background: #0a0e0b;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid #2b352e;
}

.footer-wordmark {
  color: #fff;
}

.footer-brand > p {
  max-width: 280px;
  margin: 20px 0 0;
  color: #7e8a80;
  font-size: 10px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-column h3 {
  margin: 0 0 8px;
  color: var(--mint);
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
}

.footer-column a,
.footer-column > span {
  width: fit-content;
  color: #879288;
  font-size: 10px;
}

.footer-column a:hover {
  color: #fff;
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
  align-items: end;
  padding-top: 24px;
}

.footer-bottom > p {
  max-width: 780px;
  margin: 0;
  color: #59635b;
  font-size: 8px;
  line-height: 1.7;
}

.footer-bottom > div {
  display: flex;
  gap: 16px;
  color: #68736a;
  font-family: var(--font-mono);
  font-size: 8px;
  white-space: nowrap;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(8, 11, 9, .78);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  width: min(100%, 465px);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 31px;
  border: 1px solid var(--line-dark);
  border-top: 4px solid var(--mint);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: 18px 18px 0 rgba(154, 242, 193, .15);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid var(--ink);
  border-radius: var(--radius-sm);
  background: transparent;
  font-size: 21px;
}

.modal-close:hover {
  background: var(--ink);
  color: #fff;
}

.modal-code {
  color: var(--mint-deep);
  font-size: 8px;
  font-weight: 600;
}

.modal-panel h2 {
  margin: 8px 45px 8px 0;
  font-size: 27px;
}

.modal-panel > p:not(.modal-note) {
  color: var(--muted);
  font-size: 11px;
}

.wallet-options {
  display: grid;
  gap: 8px;
  margin: 24px 0 20px;
}

.wallet-options button {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #f7f9f6;
  text-align: left;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.wallet-options button:hover {
  border-color: var(--ink);
  background: var(--surface);
}

.wallet-options button > span:nth-child(2) {
  display: grid;
}

.wallet-options strong {
  font-size: 11px;
}

.wallet-options small {
  color: var(--muted);
  font-size: 8px;
}

.wallet-options b {
  font-size: 14px;
}

.wallet-symbol {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
}

.wallet-symbol.metamask { background: #e2761b; }
.wallet-symbol.walletconnect { background: #2684ff; }
.wallet-symbol.coinbase { background: #1652f0; }

.modal-note {
  margin: 0;
  padding: 10px 11px;
  border-left: 3px solid var(--amber);
  background: #fff8df;
  color: #756539;
  font-size: 8px;
}

.selected-pool {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 22px 0;
  padding: 14px;
  border: 1px solid var(--line);
  background: #f4f7f3;
}

.selected-pool > div {
  display: grid;
}

.selected-pool strong {
  font-size: 13px;
}

.selected-pool small {
  color: var(--muted);
  font-size: 9px;
}

.deposit-panel > .field {
  margin-bottom: 16px;
}

.deposit-panel .amount-input {
  border-color: var(--line);
  background: #f7f9f6;
  color: var(--text);
}

.deposit-panel .amount-input input {
  color: var(--text);
}

.deposit-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 20px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 9px;
}

.deposit-summary span {
  color: var(--muted);
}

.deposit-summary strong {
  font-family: var(--font-mono);
  font-size: 9px;
}

.modal-connect {
  width: 100%;
  margin: 18px 0 12px;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 400;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: min(390px, calc(100% - 40px));
  min-height: 50px;
  padding: 11px 15px;
  border: 1px solid #4b5b50;
  border-left: 4px solid var(--mint);
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms var(--ease);
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.toast > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
}

.toast p {
  margin: 0;
  font-size: 10px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 640ms var(--ease), transform 640ms var(--ease);
}

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

html[dir="rtl"] .language-menu {
  right: auto;
  left: 0;
}

html[dir="rtl"] .faq-question {
  text-align: right;
}

html[dir="rtl"] .faq-item.is-open .faq-answer p {
  padding-right: 0;
  padding-left: 54px;
}

@media (max-width: 1180px) {
  .primary-nav {
    margin-left: 24px;
  }

  .primary-nav a {
    padding: 0 10px;
  }

  .network-status {
    display: none;
  }

  .hero-layout {
    gap: 42px;
  }

  .hero h1 {
    font-size: 51px;
  }

  .pool-table-head,
  .pool-row {
    grid-template-columns: minmax(180px, 1.5fr) minmax(104px, .8fr) 98px 100px 100px 64px 116px;
    gap: 8px;
  }

  .calculator-grid,
  .transparency-grid {
    gap: 55px;
  }
}

@media (max-width: 980px) {
  .primary-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    align-self: auto;
    margin: 0;
    padding: 14px 32px 22px;
    border-top: 1px solid #334038;
    border-bottom: 2px solid var(--mint);
    background: var(--ink);
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav a {
    display: block;
    height: auto;
    padding: 12px 0;
    border-bottom: 1px solid #303b34;
  }

  .primary-nav a::after {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 44px;
    min-height: 0;
    padding-top: 105px;
    padding-bottom: 118px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .market-panel {
    max-width: 680px;
  }

  .market-ticker {
    position: relative;
  }

  .ticker-track {
    overflow-x: auto;
    justify-content: start;
    gap: 38px;
  }

  .metric-item {
    padding: 24px 20px;
  }

  .pool-table {
    overflow-x: auto;
    background: transparent;
    box-shadow: none;
  }

  .pool-table-head {
    display: none;
  }

  .pool-row {
    grid-template-columns: minmax(180px, 1.2fr) 120px 100px 95px;
    min-width: 0;
    margin-bottom: 9px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
  }

  .pool-row:last-child {
    border-bottom: 1px solid var(--line);
  }

  .pool-row .volume-cell {
    display: none;
  }

  .pool-row .risk-tag {
    grid-column: 2;
    grid-row: 2;
  }

  .pool-row .pool-action {
    grid-column: 3 / 5;
    grid-row: 2;
  }

  .calculator-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .estimate-panel {
    max-width: 650px;
  }

  .risk-layout,
  .faq-grid {
    gap: 48px;
  }

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

  .transparency-visual {
    max-width: 620px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
  }

  .shell {
    width: min(100% - 32px, var(--shell));
  }

  .section-pad {
    padding: 76px 0;
  }

  h2 {
    font-size: 34px;
  }

  .site-header .wordmark-copy small {
    display: none;
  }

  .site-header .wordmark-copy strong {
    font-size: 13px;
  }

  .button-wallet {
    display: none;
  }

  .hero-layout {
    padding-top: 82px;
    padding-bottom: 85px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-summary {
    font-size: 15px;
  }

  .market-panel {
    max-width: none;
  }

  .ticker-track {
    min-height: 52px;
  }

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

  .metric-item {
    min-height: 124px;
    border-bottom: 1px solid var(--line);
  }

  .metric-item:nth-child(odd) {
    border-left: 0;
  }

  .metric-item:last-child {
    border-right: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .section-heading > p {
    max-width: 620px;
  }

  .pool-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .pool-filters {
    width: fit-content;
    max-width: 100%;
    overflow-x: auto;
  }

  .pool-filter {
    flex: 0 0 auto;
  }

  .chain-filter {
    justify-content: space-between;
  }

  .pool-row {
    grid-template-columns: minmax(160px, 1fr) 115px;
    gap: 14px;
  }

  .pool-row .network-cell {
    justify-self: end;
  }

  .pool-row .apy-cell,
  .pool-row .data-cell {
    padding-top: 10px;
    border-top: 1px solid var(--line);
  }

  .pool-row .data-cell {
    text-align: right;
  }

  .pool-row .risk-tag {
    grid-column: 1;
    grid-row: 3;
  }

  .pool-row .pool-action {
    grid-column: 2;
    grid-row: 3;
  }

  .calculator-form {
    grid-template-columns: 1fr;
  }

  .range-field {
    grid-column: auto;
  }

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

  .steps-grid li:nth-child(2) {
    border-right: 0;
  }

  .steps-grid li:nth-child(-n+2) {
    border-bottom: 1px solid #adb8af;
  }

  .risk-layout,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .risk-intro,
  .faq-intro {
    position: static;
  }

  .transparency-visual {
    grid-template-columns: 220px 1fr;
    gap: 25px;
  }

  .allocation-ring {
    width: 220px;
  }

  .allocation-ring::before {
    width: 142px;
  }

  .closing-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .closing-actions {
    flex-wrap: wrap;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

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

  .section-pad {
    padding: 64px 0;
  }

  h2 {
    font-size: 29px;
  }

  .header-row {
    gap: 7px;
  }

  .wordmark {
    gap: 7px;
  }

  .wordmark-mark {
    width: 25px;
    height: 25px;
  }

  .language-trigger {
    width: 38px;
    min-width: 38px;
    padding: 0;
    justify-content: center;
  }

  .language-current,
  .language-chevron {
    display: none;
  }

  .language-trigger::before {
    color: var(--cyan);
    content: "◎";
    font-size: 16px;
  }

  .language-menu {
    position: fixed;
    top: var(--header-height);
    right: 52px;
    left: auto;
  }

  .primary-nav {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-mask {
    background: linear-gradient(90deg, rgba(16, 21, 18, .96), rgba(16, 21, 18, .68)), linear-gradient(0deg, rgba(16, 21, 18, .8), transparent);
  }

  .hero-layout {
    gap: 36px;
    padding-top: 72px;
  }

  .hero h1 {
    font-size: 35px;
  }

  .hero-summary {
    font-size: 13px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 30px;
  }

  .tvl-block > strong {
    font-size: 25px;
  }

  .tvl-block small {
    position: static;
  }

  .tvl-chart {
    height: 125px;
  }

  .panel-stats {
    grid-template-columns: 1fr;
  }

  .panel-stats > div {
    grid-template-columns: 1fr auto;
    border-right: 0;
    border-bottom: 1px solid #35413a;
  }

  .panel-stats > div:last-child {
    border-bottom: 0;
  }

  .metric-item {
    min-height: 112px;
    padding: 19px 14px;
  }

  .metric-item strong {
    font-size: 22px;
  }

  .pool-filters {
    width: 100%;
  }

  .pool-filter {
    min-width: max-content;
    flex: 1;
    padding: 0 10px;
  }

  .pool-row {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .pool-row .network-cell {
    font-size: 8px;
  }

  .pool-action {
    min-width: 112px;
  }

  .calculator-copy h2 {
    font-size: 30px;
  }

  .estimate-primary > strong {
    font-size: 29px;
  }

  .estimate-breakdown {
    grid-template-columns: 1fr;
  }

  .estimate-breakdown > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .estimate-breakdown > div:last-child {
    border-bottom: 0;
  }

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

  .steps-grid li {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid #adb8af;
  }

  .steps-grid li:nth-child(2) {
    border-right: 0;
  }

  .steps-grid li:last-child {
    border-bottom: 0;
  }

  .step-icon {
    margin-top: 22px;
  }

  .risk-intro h2,
  .faq-intro h2 {
    font-size: 29px;
  }

  .risk-matrix article {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 13px;
  }

  .risk-matrix article > strong {
    grid-column: 2;
    justify-self: start;
  }

  .transparency-visual {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .allocation-legend {
    width: 100%;
  }

  .trust-list {
    grid-template-columns: 1fr;
  }

  .faq-item.is-open .faq-answer p {
    padding-right: 24px;
  }

  .closing {
    padding: 60px 0;
  }

  .closing-row h2 {
    font-size: 30px;
  }

  .closing-actions {
    display: grid;
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom > div {
    flex-wrap: wrap;
    white-space: normal;
  }

  .modal {
    padding: 12px;
  }

  .modal-panel {
    padding: 25px 19px;
    box-shadow: 8px 8px 0 rgba(154, 242, 193, .15);
  }

  .toast {
    right: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
