﻿:root {
  --black: #07080a;
  --ink: #16171b;
  --muted: #6f737b;
  --line: #e7e8eb;
  --white: #ffffff;
  --warm: #9d6d4d;
  --cream: #f6f4f1;
  --panel: rgba(255, 255, 255, 0.78);
  --soft-shadow: 0 18px 58px rgba(17, 18, 22, 0.065);
  --deep-shadow: 0 34px 110px rgba(17, 18, 22, 0.13);
  --page-width: min(1340px, calc(100% - 28px));
  --smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 8%, rgba(157, 109, 77, 0.055), transparent 28rem),
    radial-gradient(circle at 8% 28%, rgba(17, 18, 22, 0.032), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #fbfbfc 44%, #f6f4f1 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 19;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 180ms ease;
  content: "";
}

body.menu-open::before {
  opacity: 1;
}

body.admin-open {
  background: #fbf8f4;
}

body.admin-open .site-header,
body.admin-open main#top,
body.admin-open .site-footer,
body.admin-open .scroll-progress {
  display: none;
}

.scroll-progress {
  position: fixed;
  top: 50%;
  right: 22px;
  z-index: 30;
  width: 3px;
  height: 112px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 0 1px rgba(17, 18, 22, 0.08);
  transform: translateY(-50%);
  transition: opacity 180ms ease;
}

.scroll-progress.is-hidden {
  opacity: 0;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: calc(var(--page-progress, 0) * 100%);
  border-radius: inherit;
  background: var(--black);
  transition: height 140ms ease-out;
}

@keyframes heroImageIn {
  from {
    opacity: 0;
    transform: scale(1.06);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

@keyframes cuePulse {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

@keyframes menuIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: clamp(18px, 2.4vw, 30px);
  left: clamp(16px, 2.6vw, 44px);
  right: clamp(16px, 2.6vw, 44px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: auto;
  padding: 0;
  color: var(--white);
  transition: opacity 260ms ease, transform 360ms var(--smooth);
}

.site-header.is-scrolled {
  transform: translateY(-4px);
}

.site-header.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-170%);
}

.site-header.is-scrolled .brand,
.site-header.is-scrolled .menu-button {
  border-radius: 999px;
  background: rgba(10, 10, 12, 0.66);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(22px) saturate(1.3);
  transition: background 260ms ease, box-shadow 260ms ease, padding 260ms ease;
}

.site-header.is-scrolled .brand {
  padding: 7px 13px;
}

.site-header.is-scrolled .moa-brand img {
  width: clamp(158px, 10vw, 186px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0;
}

.moa-brand img {
  display: block;
  width: clamp(198px, 13vw, 258px);
  height: auto;
}

.brand strong {
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.menu-button {
  position: relative;
  z-index: 42;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: currentColor;
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px) saturate(1.2);
  cursor: pointer;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.menu-button:hover {
  transform: scale(1.04);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.menu-button:focus-visible {
  outline: 2px solid rgba(184, 132, 91, 0.88);
  outline-offset: 4px;
}

.menu-button span {
  grid-area: 1 / 1;
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button span:nth-child(1) {
  transform: translateY(-7px);
}

.menu-button span:nth-child(3) {
  transform: translateY(7px);
}

.menu-button.is-active span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-button.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-active span:nth-child(3) {
  transform: rotate(-45deg);
}

.menu-panel {
  position: fixed;
  top: 88px;
  right: max(28px, calc((100vw - 1260px) / 2));
  display: none;
  width: min(280px, calc(100vw - 32px));
  max-height: calc(100svh - 112px);
  overflow: auto;
  padding: 12px;
  border: 1px solid rgba(17, 18, 22, 0.08);
  border-radius: 26px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 247, 245, 0.86));
  box-shadow: 0 28px 90px rgba(17, 18, 22, 0.18);
  backdrop-filter: blur(34px) saturate(1.35);
  z-index: 40;
  overscroll-behavior: contain;
}

.menu-panel.is-open {
  display: grid;
  gap: 6px;
  animation: menuIn 180ms ease both;
}

.menu-panel a {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 16px;
  font-weight: 700;
}

.menu-auth {
  border: 0;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 16px;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.menu-auth.primary {
  min-height: 54px;
  margin-top: 6px;
  color: var(--white);
  background: var(--black);
  text-align: center;
}

.menu-panel a:hover,
.menu-auth:hover {
  background: rgba(247, 242, 237, 0.95);
}

.menu-auth.primary:hover {
  color: var(--white);
  background: #2b2c31;
}

.hero-photo {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  border-bottom-right-radius: 44px;
  border-bottom-left-radius: 44px;
  background:
    linear-gradient(90deg, #030304 0%, rgba(3, 3, 4, 0.92) 35%, rgba(3, 3, 4, 0.26) 100%),
    url("assets/hero-lifestyle.png") 66% center / cover no-repeat,
    var(--black);
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: -28px;
  z-index: 0;
  background: url("assets/hero-lifestyle.png") 58% center / cover no-repeat;
  filter: blur(22px);
  opacity: 0.2;
  transform: scale(1.03);
}

#vision,
#service,
#access,
#faq {
  scroll-margin-top: 150px;
}

.hero-photo img,
.service-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.hero-photo img {
  left: auto;
  z-index: 1;
  width: min(59vw, 800px);
  animation: heroImageIn 1200ms ease both;
  object-position: center 46%;
  transform: translate3d(0, var(--hero-parallax, 0px), 0) scale(var(--hero-scale, 1));
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 14% 62%, rgba(0, 0, 0, 0.34), transparent 34rem),
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.42) 43%, rgba(0, 0, 0, 0.05) 78%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.64), transparent 54%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.24), transparent 28%);
}

.hero-content {
  position: absolute;
  z-index: 3;
  left: clamp(18px, 3vw, 48px);
  bottom: clamp(128px, 13vh, 168px);
  width: min(680px, calc(100% - 36px));
  color: var(--white);
  animation: heroCopyIn 850ms var(--smooth) 220ms both;
  transform: translate3d(0, var(--hero-copy-parallax, 0px), 0);
  will-change: transform;
}

.hero-content h1 {
  max-width: 640px;
  margin: 0 0 20px;
  font-size: clamp(50px, 5.6vw, 86px);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-kicker {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin: 0 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(1.2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-content p {
  max-width: 540px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 1.16vw, 20px);
  font-weight: 650;
  line-height: 1.42;
}

.outline-button {
  display: inline-flex;
  min-width: 220px;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  color: var(--white);
  font-size: 14px;
  font-weight: 780;
  text-transform: none;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.hero-content .outline-button:first-of-type {
  border-color: var(--white);
  color: var(--black);
  background: var(--white);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.2);
}

.hero-content .outline-button:first-of-type:hover {
  color: var(--white);
  background: var(--black);
}

.outline-button:hover {
  color: var(--ink);
  background: var(--white);
  transform: translateY(-2px);
}

.auth-hero-button {
  margin-left: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px) saturate(1.25);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: min(600px, 100%);
  margin: 34px 0 0;
}

.hero-metrics div {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(20px) saturate(1.12);
}

.hero-metrics dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-metrics dd {
  margin: 5px 0 0;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: clamp(26px, 4vh, 42px);
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  transform: translateX(-50%);
  color: var(--white);
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(22px) saturate(1.2);
  font-size: 15px;
  font-weight: 750;
}

.scroll-cue span {
  position: relative;
  width: 20px;
  height: 32px;
  border: 2px solid var(--white);
  border-radius: 999px;
  animation: cuePulse 1600ms ease-in-out infinite;
}

.scroll-cue span::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  width: 4px;
  height: 7px;
  border-radius: 999px;
  background: var(--white);
  transform: translateX(-50%);
}

.intro-section,
.access-section,
.account-section,
.faq-section,
.site-footer {
  width: var(--page-width);
  margin: 0 auto;
}

.intro-section {
  padding: 112px 0 96px;
}

.section-title {
  max-width: 840px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-title h2,
.service-overlay h2,
.access-card h2,
.waitlist-form h2,
.account-panel h2,
.auth-form h2 {
  margin: 0 0 20px;
  color: var(--black);
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-title p {
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 20px);
  font-weight: 550;
  line-height: 1.45;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-grid article {
  position: relative;
  min-height: 236px;
  padding: clamp(24px, 2.6vw, 34px);
  border: 1px solid rgba(17, 18, 22, 0.06);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.66)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 58px rgba(17, 18, 22, 0.04);
  text-align: left;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.feature-grid article::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 82% 0%, rgba(157, 109, 77, 0.12), transparent 16rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), transparent);
  content: "";
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.feature-grid article:hover {
  border-color: rgba(17, 18, 22, 0.1);
  box-shadow: 0 22px 72px rgba(17, 18, 22, 0.08);
  transform: translateY(-4px);
}

.feature-grid article:hover::after {
  opacity: 1;
}

.feature-grid article > * {
  position: relative;
  z-index: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 820ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 820ms cubic-bezier(0.22, 1, 0.36, 1);
  filter: blur(2px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, var(--scroll-lift, 0px), 0);
  filter: blur(0);
}

.feature-grid article:nth-child(2),
.feature-grid article:nth-child(4),
.feature-grid article:nth-child(6) {
  transition-delay: 110ms;
}

.icon-card {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin: 0 0 24px;
  border-radius: 14px;
  color: var(--black);
  background: rgba(246, 244, 241, 0.9);
  box-shadow: inset 0 0 0 1px rgba(17, 18, 22, 0.06);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.feature-grid article:hover .icon-card {
  box-shadow: inset 0 0 0 1px rgba(17, 18, 22, 0.08), 0 18px 44px rgba(17, 18, 22, 0.08);
  transform: scale(1.04);
}

.icon-card svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-grid h3 {
  margin: 0 0 14px;
  font-size: clamp(21px, 1.9vw, 27px);
  line-height: 1.12;
}

.feature-grid p,
.access-card p,
.waitlist-form p,
.account-panel p,
.auth-form p,
.faq-item p,
.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.service-photo {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  width: var(--page-width);
  margin: 0 auto 96px;
  border-radius: 30px;
  box-shadow: var(--soft-shadow);
}

.service-photo img {
  transform: translate3d(0, var(--service-parallax, 0px), 0) scale(1.04);
  transition: transform 900ms var(--smooth);
}

.service-photo.is-visible img {
  transform: translate3d(0, var(--service-parallax, 0px), 0) scale(1.01);
}

.service-photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.18) 62%, rgba(0, 0, 0, 0.32)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.48), transparent 52%);
  content: "";
}

.service-overlay {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 500px;
  place-items: end start;
  align-content: center;
  padding: clamp(34px, 5vw, 68px);
  color: var(--white);
  text-align: left;
}

.service-overlay h2 {
  color: var(--white);
}

.service-overlay p {
  max-width: 840px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.65vw, 21px);
  font-weight: 600;
  line-height: 1.42;
}

.service-symbol {
  position: relative;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
}

.service-symbol span {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 4px solid var(--white);
  transform: rotate(45deg);
}

.service-symbol span:nth-child(1) {
  top: 0;
  left: 12px;
}

.service-symbol span:nth-child(2) {
  bottom: 0;
  left: 0;
}

.service-symbol span:nth-child(3) {
  right: 0;
  bottom: 0;
}

.access-section {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(360px, 0.7fr);
  align-items: stretch;
  gap: 14px;
  padding-top: 24px;
  padding-bottom: 96px;
}

.access-card,
.waitlist-form {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 18, 22, 0.07);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 248, 249, 0.78)),
    var(--panel);
  box-shadow: var(--soft-shadow);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.access-card::before,
.waitlist-form::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 28%, rgba(157, 109, 77, 0.12), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), transparent 58%);
}

.access-card:hover,
.waitlist-form:hover {
  box-shadow: var(--deep-shadow);
  transform: translateY(-3px);
}

.access-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(260px, 0.72fr);
  align-items: center;
  gap: clamp(42px, 5vw, 76px);
  padding: clamp(36px, 4.6vw, 60px);
}

.access-card > div:first-child,
.access-card .card-visual,
.waitlist-form > * {
  position: relative;
  z-index: 1;
}

.access-card > div:first-child {
  min-width: 0;
}

.access-card h2 {
  max-width: 390px;
  font-size: clamp(32px, 2.9vw, 44px);
  line-height: 1.06;
}

.access-card > div:first-child > p:not(.small-label) {
  max-width: 360px;
}

.small-label {
  margin: 0 0 14px;
  color: var(--warm);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.card-visual {
  display: grid;
  width: 100%;
  min-width: 0;
  max-width: 292px;
  min-height: 222px;
  align-content: space-between;
  padding: 32px;
  border-radius: 30px;
  color: var(--white);
  background:
    radial-gradient(circle at 22% 14%, rgba(255, 255, 255, 0.34), transparent 28%),
    radial-gradient(circle at 82% 110%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(135deg, #08090c, #7f5841);
  box-shadow: 0 30px 86px rgba(32, 24, 19, 0.28);
  transform: rotate(-1.5deg);
  justify-self: center;
}

.card-visual span,
.card-visual em {
  font-style: normal;
  font-weight: 800;
}

.card-visual strong {
  font-size: clamp(19px, 2vw, 23px);
}

.card-digits {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.card-digits i {
  width: 5px;
  height: 5px;
  display: block;
  border-radius: 999px;
  background: currentColor;
}

.card-digits b {
  font: inherit;
}

.waitlist-form {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 4.6vw, 58px);
}

.waitlist-form h2 {
  max-width: 340px;
  font-size: clamp(34px, 3.3vw, 46px);
  line-height: 1.08;
}

.waitlist-form label {
  display: block;
  margin: 34px 0 10px;
  font-weight: 900;
}

.waitlist-form div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.waitlist-form input,
.waitlist-form button {
  min-height: 56px;
  border: 0;
  border-radius: 999px;
}

.waitlist-form input {
  min-width: 0;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 0 0 1px rgba(17, 18, 22, 0.05);
}

.waitlist-form button {
  padding: 0 24px;
  color: var(--white);
  background: var(--black);
  font-weight: 900;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.waitlist-form button:hover {
  background: #2a2b30;
  transform: translateY(-2px);
}

.form-status {
  min-height: 24px;
  margin-top: 14px;
  font-weight: 800;
}

.product-section,
.partners-section,
.news-section {
  width: var(--page-width);
  margin: 0 auto;
}

.product-section {
  padding-bottom: 96px;
}

.product-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.product-card,
.news-grid a {
  display: flex;
  min-height: 292px;
  flex-direction: column;
  padding: clamp(26px, 3vw, 40px);
  border: 1px solid rgba(17, 18, 22, 0.07);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 58px rgba(17, 18, 22, 0.045);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.product-card:hover,
.news-grid a:hover {
  border-color: rgba(17, 18, 22, 0.12);
  box-shadow: 0 24px 78px rgba(17, 18, 22, 0.085);
  transform: translateY(-4px);
}

.product-card span,
.news-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--warm);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card h3,
.news-grid h3 {
  margin: 0 0 16px;
  color: var(--black);
  font-size: clamp(22px, 2vw, 29px);
  line-height: 1.08;
}

.product-card p,
.news-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.product-card strong {
  display: inline-flex;
  margin-top: auto;
  padding-top: 28px;
  color: var(--black);
  font-weight: 850;
}

.partners-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.7fr);
  gap: clamp(24px, 4vw, 60px);
  align-items: end;
  padding: clamp(36px, 4.6vw, 60px);
  margin-bottom: 96px;
  border-radius: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 0%, rgba(157, 109, 77, 0.4), transparent 25rem),
    linear-gradient(135deg, #08090c, #24201e);
  box-shadow: var(--deep-shadow);
}

.partners-section h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1;
}

.partners-section > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.45;
}

.partner-strip {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.partner-strip span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  font-weight: 800;
}

.news-section {
  padding-bottom: 96px;
}

body.subpage-open .site-header {
  color: var(--black);
}

body.subpage-open .site-header .moa-brand img {
  content: url("assets/moa-logo-dark.svg");
}

body.subpage-open .menu-button {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 0 0 1px rgba(17, 18, 22, 0.08), 0 16px 42px rgba(17, 18, 22, 0.08);
}

body.subpage-open .site-header.is-scrolled .brand,
body.subpage-open .site-header.is-scrolled .menu-button {
  color: var(--black);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 0 1px rgba(17, 18, 22, 0.08), 0 16px 44px rgba(17, 18, 22, 0.08);
  backdrop-filter: blur(20px) saturate(1.25);
}

body.subpage-open .site-header.is-scrolled .brand {
  padding: 7px 12px;
}

body.subpage-open .site-header.is-scrolled .moa-brand img {
  width: clamp(154px, 10vw, 182px);
}

body.subpage-open {
  background:
    radial-gradient(circle at 82% 0%, rgba(157, 109, 77, 0.08), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #fbfbfc 48%, #f6f4f1 100%);
}

body.route-moa-news {
  background:
    radial-gradient(circle at 84% 10%, rgba(37, 211, 224, 0.08), transparent 26rem),
    radial-gradient(circle at 16% 20%, rgba(157, 109, 77, 0.07), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #fbfbfc 54%, #f6f4f1 100%);
}

body.route-help-center {
  background:
    radial-gradient(circle at 84% 10%, rgba(157, 109, 77, 0.08), transparent 26rem),
    radial-gradient(circle at 14% 24%, rgba(17, 18, 22, 0.035), transparent 22rem),
    linear-gradient(180deg, #ffffff 0%, #fbfbfc 54%, #f6f4f1 100%);
}

body.route-about-us {
  background:
    radial-gradient(circle at 82% 6%, rgba(37, 211, 224, 0.07), transparent 28rem),
    radial-gradient(circle at 16% 18%, rgba(157, 109, 77, 0.08), transparent 25rem),
    linear-gradient(180deg, #ffffff 0%, #fbfbfc 54%, #f6f4f1 100%);
}

body.route-moa-swap {
  background:
    radial-gradient(circle at 78% 8%, rgba(37, 211, 224, 0.09), transparent 28rem),
    radial-gradient(circle at 17% 20%, rgba(157, 109, 77, 0.08), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #fbfbfc 50%, #f6f4f1 100%);
}

body.route-moa-card {
  background:
    radial-gradient(circle at 78% 8%, rgba(157, 109, 77, 0.11), transparent 28rem),
    radial-gradient(circle at 16% 24%, rgba(37, 211, 224, 0.055), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #fbfbfc 50%, #f6f4f1 100%);
}

.subpage-hero,
.subpage-grid,
.subpage-cta {
  width: var(--page-width);
  margin: 0 auto;
}

.subpage-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.66fr);
  gap: clamp(22px, 3.4vw, 54px);
  align-items: center;
  min-height: min(760px, 86svh);
  padding: 128px 0 62px;
}

body.route-moa-news .subpage-hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 0.86fr);
  gap: clamp(18px, 2.4vw, 38px);
  min-height: min(670px, 80svh);
  padding: 102px 0 36px;
}

body.route-help-center .subpage-hero {
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 0.7fr);
  gap: clamp(20px, 3vw, 42px);
  min-height: min(690px, 80svh);
  padding: 112px 0 42px;
}

body.route-about-us .about-hero {
  grid-template-columns: minmax(0, 0.88fr) minmax(430px, 0.74fr);
  gap: clamp(24px, 3vw, 44px);
  min-height: min(720px, 82svh);
  padding: 118px 0 54px;
}

body.route-moa-swap .swap-hero {
  grid-template-columns: minmax(0, 0.86fr) minmax(440px, 0.78fr);
  gap: clamp(22px, 3vw, 46px);
  min-height: min(700px, 80svh);
  padding: 114px 0 46px;
}

body.route-moa-card .card-hero {
  grid-template-columns: minmax(0, 0.86fr) minmax(440px, 0.78fr);
  gap: clamp(22px, 3vw, 46px);
  min-height: min(700px, 80svh);
  padding: 114px 0 46px;
}

.subpage-copy h1 {
  max-width: 820px;
  margin: 0 0 20px;
  color: var(--black);
  font-size: clamp(38px, 5vw, 70px);
  line-height: 0.98;
}

body.route-moa-news .subpage-copy .small-label {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 0 13px;
  color: #8a5d42;
  background: rgba(157, 109, 77, 0.09);
  box-shadow: inset 0 0 0 1px rgba(157, 109, 77, 0.14);
  letter-spacing: 0.08em;
}

body.route-help-center .subpage-copy .small-label {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 0 13px;
  color: #8a5d42;
  background: rgba(157, 109, 77, 0.09);
  box-shadow: inset 0 0 0 1px rgba(157, 109, 77, 0.14);
  letter-spacing: 0.08em;
}

body.route-about-us .subpage-copy .small-label {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 0 13px;
  color: #8a5d42;
  background: rgba(157, 109, 77, 0.09);
  box-shadow: inset 0 0 0 1px rgba(157, 109, 77, 0.14);
  letter-spacing: 0.08em;
}

body.route-moa-swap .subpage-copy .small-label {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 0 13px;
  color: #8a5d42;
  background: rgba(157, 109, 77, 0.09);
  box-shadow: inset 0 0 0 1px rgba(157, 109, 77, 0.14);
  letter-spacing: 0.08em;
}

body.route-moa-card .subpage-copy .small-label {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 0 13px;
  color: #8a5d42;
  background: rgba(157, 109, 77, 0.09);
  box-shadow: inset 0 0 0 1px rgba(157, 109, 77, 0.14);
  letter-spacing: 0.08em;
}

body.route-moa-news .subpage-copy h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.97;
}

body.route-help-center .subpage-copy h1 {
  max-width: 790px;
  margin-bottom: 22px;
  font-size: clamp(40px, 4.8vw, 66px);
  line-height: 0.98;
}

body.route-about-us .subpage-copy h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 0.97;
}

body.route-moa-swap .subpage-copy h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 0.96;
}

body.route-moa-card .subpage-copy h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 0.96;
}

.subpage-copy > p:not(.small-label) {
  max-width: 760px;
  margin: 0 0 32px;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 20px);
  font-weight: 560;
  line-height: 1.45;
}

body.route-moa-news .subpage-copy > p:not(.small-label) {
  max-width: 720px;
  margin-bottom: 26px;
  color: #666b73;
}

body.route-help-center .subpage-copy > p:not(.small-label) {
  max-width: 700px;
  margin-bottom: 30px;
}

body.route-about-us .subpage-copy > p:not(.small-label) {
  max-width: 720px;
  margin-bottom: 32px;
}

body.route-moa-swap .subpage-copy > p:not(.small-label) {
  max-width: 700px;
  margin-bottom: 26px;
  color: #666b73;
}

body.route-moa-card .subpage-copy > p:not(.small-label) {
  max-width: 700px;
  margin-bottom: 26px;
  color: #666b73;
}

.subpage-copy .outline-button {
  border-color: var(--black);
  color: var(--white);
  background: var(--black);
}

body.route-moa-news .subpage-copy .outline-button {
  min-width: 222px;
  min-height: 64px;
  box-shadow: 0 18px 46px rgba(7, 8, 10, 0.18);
}

body.route-moa-news .subpage-copy .outline-button:hover {
  background: #1c1d22;
  box-shadow: 0 24px 62px rgba(7, 8, 10, 0.22);
}

body.route-moa-swap .subpage-copy .outline-button {
  min-width: 190px;
  min-height: 58px;
  box-shadow: 0 18px 48px rgba(7, 8, 10, 0.18);
}

body.route-moa-swap .subpage-copy .outline-button:hover {
  background: #1c1d22;
  box-shadow: 0 24px 64px rgba(7, 8, 10, 0.22);
}

body.route-moa-card .subpage-copy .outline-button {
  min-width: 190px;
  min-height: 58px;
  box-shadow: 0 18px 48px rgba(7, 8, 10, 0.18);
}

body.route-moa-card .subpage-copy .outline-button:hover {
  background: #1c1d22;
  box-shadow: 0 24px 64px rgba(7, 8, 10, 0.22);
}

.subpage-media {
  min-height: 0;
  aspect-ratio: 0.86;
  overflow: hidden;
  border-radius: 34px;
  background: var(--cream);
  box-shadow: var(--soft-shadow);
}

body.route-moa-news .subpage-media {
  position: relative;
  align-self: center;
  aspect-ratio: 1.03;
  width: min(100%, 590px);
  justify-self: end;
  border: 1px solid rgba(17, 18, 22, 0.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at 72% 18%, rgba(37, 211, 224, 0.18), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(246, 244, 241, 0.64));
  box-shadow: 0 34px 110px rgba(17, 18, 22, 0.15), 0 0 0 10px rgba(255, 255, 255, 0.44);
}

body.route-help-center .subpage-media {
  position: relative;
  aspect-ratio: 0.96;
  width: min(100%, 520px);
  justify-self: end;
  border: 1px solid rgba(17, 18, 22, 0.08);
  border-radius: 34px;
  background: var(--cream);
  box-shadow: 0 30px 96px rgba(17, 18, 22, 0.12);
}

body.route-help-center .subpage-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.18)),
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.22), transparent 18rem);
}

body.route-help-center .subpage-media img {
  object-position: 52% center;
}

.help-hero,
.help-topic-grid,
.help-knowledge-section,
.help-support-strip {
  width: var(--page-width);
  margin: 0 auto;
}

.help-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: clamp(22px, 3.2vw, 48px);
  align-items: stretch;
  padding: 124px 0 44px;
}

.help-copy {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  justify-content: center;
}

.help-copy .small-label,
.help-knowledge-copy .small-label,
.help-support-strip .small-label {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  margin: 0 0 18px;
  border-radius: 999px;
  padding: 0 13px;
  color: #8a5d42;
  background: rgba(157, 109, 77, 0.09);
  box-shadow: inset 0 0 0 1px rgba(157, 109, 77, 0.14);
  letter-spacing: 0.08em;
}

.help-copy h1 {
  max-width: 790px;
  margin: 0 0 22px;
  color: var(--black);
  font-size: clamp(42px, 4.9vw, 68px);
  line-height: 0.97;
  letter-spacing: -0.04em;
}

.help-copy > p {
  max-width: 690px;
  margin: 0 0 30px;
  color: #5f646d;
  font-size: clamp(17px, 1.45vw, 21px);
  font-weight: 620;
  line-height: 1.45;
}

.help-search {
  display: grid;
  width: min(100%, 720px);
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(17, 18, 22, 0.09);
  border-radius: 24px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 72px rgba(17, 18, 22, 0.08);
  backdrop-filter: blur(18px);
}

.help-search span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 16px;
  color: var(--black);
  background: #f5f0eb;
}

.help-search svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.help-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  color: var(--black);
  background: transparent;
  font: inherit;
  font-size: 16px;
  font-weight: 760;
  outline: none;
}

.help-search input::placeholder {
  color: #8a8f98;
}

.help-search a,
.help-service-card a,
.help-support-strip a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 20px;
  color: var(--white);
  background: var(--black);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.help-service-card {
  position: relative;
  overflow: hidden;
  align-self: center;
  min-height: 560px;
  border: 1px solid rgba(17, 18, 22, 0.08);
  border-radius: 34px;
  background: #ffffff;
  box-shadow: 0 30px 96px rgba(17, 18, 22, 0.12);
}

.help-service-card img {
  width: 100%;
  height: 58%;
  object-fit: cover;
  object-position: 52% center;
}

.help-service-card div {
  display: grid;
  gap: 12px;
  padding: 28px;
}

.help-service-card small {
  color: #8a5d42;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.help-service-card strong {
  color: var(--black);
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.help-service-card p {
  margin: 0;
  color: #666b73;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.55;
}

.help-service-card a {
  width: fit-content;
  margin-top: 6px;
  color: var(--black);
  background: #f3eee8;
}

.help-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 10px 0 66px;
}

.help-topic-grid article {
  display: flex;
  min-height: 248px;
  flex-direction: column;
  border: 1px solid rgba(17, 18, 22, 0.08);
  border-radius: 28px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 64px rgba(17, 18, 22, 0.055);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.help-topic-grid article:hover {
  border-color: rgba(157, 109, 77, 0.18);
  box-shadow: 0 28px 86px rgba(17, 18, 22, 0.09);
  transform: translateY(-3px);
}

.help-topic-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 15px;
  color: var(--black);
  background: #f5f0eb;
  box-shadow: inset 0 0 0 1px rgba(17, 18, 22, 0.06);
}

.help-topic-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.help-topic-grid span {
  display: block;
  margin: 18px 0 12px;
  color: var(--black);
  font-size: clamp(23px, 2vw, 29px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.help-topic-grid p {
  margin: 0;
  color: #666b73;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.5;
}

.help-topic-grid strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--black);
  font-size: 14px;
  font-weight: 900;
}

.help-topic-grid strong i {
  font-style: normal;
}

.help-knowledge-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 44px);
  align-items: start;
  padding: 52px;
  border: 1px solid rgba(17, 18, 22, 0.08);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 20px 70px rgba(17, 18, 22, 0.06);
}

.help-knowledge-copy h2,
.help-support-strip h2 {
  margin: 0 0 14px;
  color: var(--black);
  font-size: clamp(34px, 3.3vw, 50px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.help-knowledge-copy p,
.help-support-strip p {
  margin: 0;
  color: #666b73;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.55;
}

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

.help-faq-list article {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(17, 18, 22, 0.07);
  border-radius: 20px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.72);
}

.help-faq-list strong {
  color: var(--black);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.25;
}

.help-faq-list p {
  margin: 0;
  color: #666b73;
  font-size: 15px;
  font-weight: 640;
  line-height: 1.5;
}

.help-support-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 18px;
  margin-bottom: 88px;
  border-radius: 30px;
  padding: 34px 42px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(17, 18, 22, 0.96), rgba(58, 58, 54, 0.92)),
    var(--black);
  box-shadow: 0 28px 94px rgba(17, 18, 22, 0.16);
}

.help-support-strip .small-label {
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.help-support-strip h2 {
  color: var(--white);
}

.help-support-strip p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
}

.help-support-strip a {
  flex: 0 0 auto;
  color: var(--black);
  background: var(--white);
}

body.route-moa-news .subpage-media::before {
  content: "";
  position: absolute;
  inset: -18%;
  background:
    radial-gradient(circle at 72% 20%, rgba(37, 211, 224, 0.22), transparent 24rem),
    radial-gradient(circle at 20% 80%, rgba(157, 109, 77, 0.16), transparent 20rem);
  filter: blur(18px);
  opacity: 0.7;
}

.subpage-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

body.route-moa-news .subpage-media img {
  border-radius: inherit;
  transform: scale(1.01);
}

.news-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 650px;
  margin-top: 24px;
}

.news-trust-strip span {
  display: grid;
  min-height: 58px;
  align-content: center;
  gap: 3px;
  border-radius: 18px;
  padding: 12px 14px;
  color: #1c1d22;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(17, 18, 22, 0.08), 0 14px 38px rgba(17, 18, 22, 0.06);
  font-size: 12px;
  font-weight: 900;
}

.news-trust-strip b {
  color: var(--warm);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.swap-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.swap-secondary-link {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  color: #202126;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.swap-secondary-link:hover {
  color: #8a5d42;
}

.swap-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 660px;
  margin-top: 24px;
}

.swap-trust-strip span {
  display: grid;
  min-height: 62px;
  align-content: center;
  gap: 4px;
  border: 1px solid rgba(17, 18, 22, 0.08);
  border-radius: 18px;
  padding: 12px 14px;
  color: #1c1d22;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 44px rgba(17, 18, 22, 0.06);
  font-size: 12px;
  font-weight: 900;
}

.swap-trust-strip b {
  color: var(--warm);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.swap-product-visual {
  position: relative;
  display: grid;
  min-height: 540px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(17, 18, 22, 0.08);
  border-radius: 36px;
  background:
    radial-gradient(circle at 72% 16%, rgba(37, 211, 224, 0.2), transparent 18rem),
    radial-gradient(circle at 22% 86%, rgba(157, 109, 77, 0.2), transparent 18rem),
    linear-gradient(145deg, #08090c 0%, #151311 54%, #30231d 100%);
  box-shadow: 0 34px 110px rgba(17, 18, 22, 0.15);
}

.swap-product-visual::before {
  content: "";
  position: absolute;
  inset: 9%;
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 52px 52px,
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 52px 52px;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 78%, transparent);
  pointer-events: none;
}

.swap-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  pointer-events: none;
}

.swap-orbit-a {
  width: 410px;
  height: 410px;
}

.swap-orbit-b {
  width: 270px;
  height: 270px;
  border-color: rgba(37, 211, 224, 0.16);
}

.swap-panel {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(390px, 80%);
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 32px;
  padding: 24px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 10%, rgba(37, 211, 224, 0.14), transparent 12rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.06));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 34px 86px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
}

.swap-panel-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.swap-panel-top strong {
  color: rgba(166, 255, 222, 0.9);
}

.swap-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.swap-row small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.swap-row strong {
  color: var(--white);
  font-size: 30px;
  line-height: 1;
}

.swap-row span {
  align-self: center;
  border-radius: 999px;
  padding: 8px 10px;
  color: #101115;
  background: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 900;
}

.swap-row-primary {
  background: rgba(255, 255, 255, 0.12);
}

.swap-route-node {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 2px 12px;
  align-items: center;
  padding: 0 12px;
}

.swap-route-node i {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(37, 211, 224, 0.72));
  box-shadow: 0 0 34px rgba(37, 211, 224, 0.34);
}

.swap-route-node b {
  color: var(--white);
  font-size: 14px;
}

.swap-route-node em {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-style: normal;
}

.swap-network-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
}

.swap-network-list span {
  border-radius: 999px;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 900;
}

.swap-network-list i {
  width: 18px;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.swap-floating-card {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 3px;
  min-width: 144px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.swap-floating-card small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.swap-floating-card strong {
  color: var(--white);
  font-size: 16px;
}

.swap-floating-card-a {
  top: 16%;
  right: 8%;
}

.swap-floating-card-b {
  left: 8%;
  bottom: 14%;
}

.swap-flow-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.68fr) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 42px);
  width: var(--page-width);
  margin: 0 auto 24px;
  border: 1px solid rgba(17, 18, 22, 0.08);
  border-radius: 34px;
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 76px rgba(17, 18, 22, 0.08);
}

.swap-flow-section h2 {
  max-width: 540px;
  margin: 0;
  color: var(--black);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.02;
}

.swap-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.swap-flow-grid article {
  border: 1px solid rgba(17, 18, 22, 0.08);
  border-radius: 24px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.swap-flow-grid span {
  display: inline-flex;
  margin-bottom: 22px;
  color: #a8704e;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.swap-flow-grid strong {
  display: block;
  color: var(--black);
  font-size: 17px;
}

.swap-flow-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.card-secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border-radius: 999px;
  padding: 0 16px;
  color: #202126;
  font-size: 14px;
  font-weight: 900;
}

.card-secondary-link:hover {
  color: #8a5d42;
}

.card-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 660px;
  margin-top: 24px;
}

.card-trust-strip span {
  display: grid;
  min-height: 62px;
  align-content: center;
  gap: 4px;
  border: 1px solid rgba(17, 18, 22, 0.08);
  border-radius: 18px;
  padding: 12px 14px;
  color: #1c1d22;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 44px rgba(17, 18, 22, 0.06);
  font-size: 12px;
  font-weight: 900;
}

.card-trust-strip b {
  color: var(--warm);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card-product-visual {
  position: relative;
  display: grid;
  min-height: 540px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(17, 18, 22, 0.08);
  border-radius: 36px;
  background:
    radial-gradient(circle at 76% 16%, rgba(157, 109, 77, 0.28), transparent 18rem),
    radial-gradient(circle at 18% 86%, rgba(37, 211, 224, 0.18), transparent 17rem),
    linear-gradient(145deg, #08090c 0%, #171311 54%, #402c22 100%);
  box-shadow: 0 34px 110px rgba(17, 18, 22, 0.15);
}

.card-product-visual::before {
  content: "";
  position: absolute;
  inset: 9%;
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 52px 52px,
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 52px 52px;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 78%, transparent);
  pointer-events: none;
}

.card-glow {
  position: absolute;
  width: 340px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.13), transparent 64%);
  filter: blur(8px);
}

.card-phone {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(360px, 78%);
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  padding: 24px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 10%, rgba(157, 109, 77, 0.18), transparent 12rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.06));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 34px 86px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
}

.card-phone-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-phone-top strong {
  color: rgba(166, 255, 222, 0.9);
}

.premium-card-mock,
.card-cta-card {
  display: grid;
  min-height: 190px;
  align-content: space-between;
  border-radius: 28px;
  padding: 24px;
  color: var(--white);
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.38), transparent 4.5rem),
    linear-gradient(135deg, #24211e 0%, #4b3429 58%, #9d704f 100%);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.26);
}

.premium-card-mock span,
.card-cta-card span {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.premium-card-mock strong,
.card-cta-card strong {
  max-width: 210px;
  color: var(--white);
  font-size: 28px;
  line-height: 1.12;
}

.premium-card-mock em,
.card-cta-card em {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.card-balance-row {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.08);
}

.card-balance-row small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-balance-row strong {
  color: var(--white);
  font-size: 24px;
}

.card-control-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.card-control-grid span {
  border-radius: 999px;
  padding: 9px 8px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.card-floating-chip {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 3px;
  min-width: 150px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.card-floating-chip small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card-floating-chip strong {
  color: var(--white);
  font-size: 16px;
}

.card-floating-chip-a {
  top: 16%;
  right: 8%;
}

.card-floating-chip-b {
  left: 8%;
  bottom: 14%;
}

.card-benefit-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.68fr) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 42px);
  width: var(--page-width);
  margin: 0 auto 24px;
  border: 1px solid rgba(17, 18, 22, 0.08);
  border-radius: 34px;
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 76px rgba(17, 18, 22, 0.08);
}

.card-benefit-section h2 {
  max-width: 540px;
  margin: 0;
  color: var(--black);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.02;
}

.card-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.card-benefit-grid article {
  border: 1px solid rgba(17, 18, 22, 0.08);
  border-radius: 24px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.card-benefit-grid span {
  display: inline-flex;
  margin-bottom: 22px;
  color: #a8704e;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.card-benefit-grid strong {
  display: block;
  color: var(--black);
  font-size: 17px;
}

.card-benefit-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.about-product-visual {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(17, 18, 22, 0.08);
  border-radius: 36px;
  background:
    radial-gradient(circle at 78% 18%, rgba(37, 211, 224, 0.2), transparent 18rem),
    radial-gradient(circle at 18% 84%, rgba(157, 109, 77, 0.18), transparent 18rem),
    linear-gradient(145deg, #090a0d 0%, #181513 58%, #2b211b 100%);
  box-shadow: 0 34px 110px rgba(17, 18, 22, 0.14);
}

.about-product-visual::before {
  content: "";
  position: absolute;
  inset: 9%;
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 56px 56px;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 78%, transparent);
  pointer-events: none;
}

.about-phone {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(270px, 58vw);
  min-height: 430px;
  align-content: start;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 38px;
  padding: 26px 22px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 16%, rgba(37, 211, 224, 0.18), transparent 10rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.045));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 36px 90px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.about-phone > span {
  width: 52px;
  height: 5px;
  justify-self: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.about-phone strong {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-phone b {
  color: var(--white);
  font-size: 42px;
  line-height: 1;
}

.about-phone p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.45;
}

.about-chart {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 8px;
  min-height: 118px;
  margin: 10px 0 6px;
  border-radius: 22px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.about-chart i {
  display: block;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, rgba(37, 211, 224, 0.9), rgba(37, 211, 224, 0.16));
}

.about-chart i:nth-child(1) { height: 44%; }
.about-chart i:nth-child(2) { height: 62%; }
.about-chart i:nth-child(3) { height: 82%; }
.about-chart i:nth-child(4) { height: 56%; }
.about-chart i:nth-child(5) { height: 72%; }

.about-card-mock {
  position: absolute;
  right: 7%;
  bottom: 12%;
  z-index: 3;
  display: grid;
  width: 220px;
  min-height: 132px;
  align-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  padding: 20px;
  color: var(--white);
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.22), transparent 35%),
    linear-gradient(135deg, #0b0c10, #6d4c39);
  box-shadow: 0 26px 76px rgba(0, 0, 0, 0.3);
  transform: rotate(-3deg);
}

.about-card-mock span,
.about-card-mock em {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.about-card-mock strong {
  max-width: 8ch;
  color: var(--white);
  font-size: 22px;
  line-height: 1.05;
}

.about-dashboard-chip,
.about-float-chip {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.about-dashboard-chip {
  left: 7%;
  top: 17%;
}

.about-dashboard-chip small,
.about-float-chip small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-dashboard-chip strong,
.about-float-chip strong {
  color: var(--white);
  font-size: 14px;
}

.subpage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 104px;
}

body.route-moa-news .subpage-grid {
  gap: 18px;
  padding-bottom: 64px;
}

body.route-help-center .subpage-grid {
  gap: 18px;
  padding-bottom: 96px;
}

body.route-about-us .about-pillars {
  gap: 18px;
  padding-bottom: 72px;
}

.subpage-grid article {
  display: flex;
  min-height: 218px;
  flex-direction: column;
  padding: clamp(26px, 3vw, 40px);
  border: 1px solid rgba(17, 18, 22, 0.07);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 58px rgba(17, 18, 22, 0.045);
}

body.route-moa-news .subpage-grid article {
  position: relative;
  overflow: hidden;
  min-height: 306px;
  border-color: rgba(17, 18, 22, 0.08);
  background:
    radial-gradient(circle at 92% 0%, rgba(37, 211, 224, 0.09), transparent 13rem),
    radial-gradient(circle at 8% 100%, rgba(157, 109, 77, 0.08), transparent 12rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.76));
  box-shadow: 0 22px 76px rgba(17, 18, 22, 0.07);
  cursor: pointer;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease, background 220ms ease;
}

body.route-moa-news .subpage-grid article::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(157, 109, 77, 0.68), rgba(37, 211, 224, 0.62), transparent);
  opacity: 0.74;
}

body.route-moa-news .subpage-grid article::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -42px;
  width: 150px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(37, 211, 224, 0.12), transparent 66%);
  opacity: 0;
  transition: opacity 200ms ease, transform 200ms ease;
}

body.route-help-center .subpage-grid article {
  display: flex;
  min-height: 284px;
  flex-direction: column;
  border-color: rgba(17, 18, 22, 0.08);
  box-shadow: 0 20px 70px rgba(17, 18, 22, 0.055);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

body.route-help-center .subpage-grid article:hover {
  border-color: rgba(157, 109, 77, 0.18);
  box-shadow: 0 32px 96px rgba(17, 18, 22, 0.1);
  transform: translateY(-4px);
}

body.route-about-us .about-pillars article {
  min-height: 360px;
  border-color: rgba(17, 18, 22, 0.08);
  box-shadow: 0 20px 70px rgba(17, 18, 22, 0.055);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

body.route-about-us .about-pillars article:hover {
  border-color: rgba(157, 109, 77, 0.18);
  box-shadow: 0 32px 96px rgba(17, 18, 22, 0.11);
  transform: translateY(-5px);
}

.about-card-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 15px;
  color: var(--black);
  background: rgba(247, 242, 237, 0.92);
  box-shadow: inset 0 0 0 1px rgba(17, 18, 22, 0.06);
}

.about-card-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-pillars ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.about-pillars li {
  position: relative;
  padding-left: 20px;
  color: #666b73;
  font-size: 15px;
  font-weight: 720;
  line-height: 1.4;
}

.about-pillars li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--warm);
}

body.route-help-center .subpage-grid span {
  font-size: clamp(24px, 2.1vw, 30px);
}

body.route-moa-news .subpage-grid article:hover {
  border-color: rgba(37, 211, 224, 0.26);
  background:
    radial-gradient(circle at 92% 0%, rgba(37, 211, 224, 0.12), transparent 13rem),
    radial-gradient(circle at 8% 100%, rgba(157, 109, 77, 0.1), transparent 12rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.82));
  box-shadow: 0 36px 110px rgba(17, 18, 22, 0.13), 0 0 0 1px rgba(37, 211, 224, 0.08);
  transform: translateY(-6px);
}

body.route-moa-news .subpage-grid article:hover::after {
  opacity: 1;
  transform: translate(-10px, -10px);
}

.news-card-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 15px;
  color: var(--black);
  background: rgba(247, 242, 237, 0.92);
  box-shadow: inset 0 0 0 1px rgba(17, 18, 22, 0.06), 0 14px 34px rgba(17, 18, 22, 0.055);
  transition: color 200ms ease, background 200ms ease, transform 200ms ease;
}

body.route-moa-news .subpage-grid article:hover .news-card-icon {
  color: #075e66;
  background: rgba(231, 252, 253, 0.92);
  transform: translateY(-2px);
}

body.route-moa-swap .swap-card-grid {
  gap: 18px;
  padding-bottom: 72px;
}

body.route-moa-swap .swap-card-grid article {
  position: relative;
  overflow: hidden;
  min-height: 292px;
  border-color: rgba(17, 18, 22, 0.08);
  background:
    radial-gradient(circle at 94% 0%, rgba(37, 211, 224, 0.08), transparent 13rem),
    radial-gradient(circle at 8% 100%, rgba(157, 109, 77, 0.09), transparent 12rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78));
  box-shadow: 0 22px 76px rgba(17, 18, 22, 0.07);
  cursor: pointer;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease, background 220ms ease;
}

body.route-moa-swap .swap-card-grid article::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(157, 109, 77, 0.68), rgba(37, 211, 224, 0.62), transparent);
  opacity: 0.72;
}

body.route-moa-swap .swap-card-grid article::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -46px;
  width: 150px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(37, 211, 224, 0.13), transparent 66%);
  opacity: 0;
  transition: opacity 200ms ease, transform 200ms ease;
}

body.route-moa-swap .swap-card-grid article:hover {
  border-color: rgba(37, 211, 224, 0.25);
  background:
    radial-gradient(circle at 94% 0%, rgba(37, 211, 224, 0.12), transparent 13rem),
    radial-gradient(circle at 8% 100%, rgba(157, 109, 77, 0.11), transparent 12rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.84));
  box-shadow: 0 36px 110px rgba(17, 18, 22, 0.13), 0 0 0 1px rgba(37, 211, 224, 0.08);
  transform: translateY(-6px);
}

body.route-moa-swap .swap-card-grid article:hover::after {
  opacity: 1;
  transform: translate(-10px, -10px);
}

.swap-card-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 15px;
  color: var(--black);
  background: rgba(247, 242, 237, 0.92);
  box-shadow: inset 0 0 0 1px rgba(17, 18, 22, 0.06), 0 14px 34px rgba(17, 18, 22, 0.055);
  transition: color 200ms ease, background 200ms ease, transform 200ms ease;
}

body.route-moa-swap .swap-card-grid article:hover .swap-card-icon {
  color: #075e66;
  background: rgba(231, 252, 253, 0.92);
  transform: translateY(-2px);
}

body.route-moa-card .card-card-grid {
  gap: 18px;
  padding-bottom: 72px;
}

body.route-moa-card .card-card-grid article {
  position: relative;
  overflow: hidden;
  min-height: 292px;
  border-color: rgba(17, 18, 22, 0.08);
  background:
    radial-gradient(circle at 94% 0%, rgba(157, 109, 77, 0.1), transparent 13rem),
    radial-gradient(circle at 8% 100%, rgba(37, 211, 224, 0.07), transparent 12rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78));
  box-shadow: 0 22px 76px rgba(17, 18, 22, 0.07);
  cursor: pointer;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease, background 220ms ease;
}

body.route-moa-card .card-card-grid article::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(157, 109, 77, 0.72), rgba(37, 211, 224, 0.5), transparent);
  opacity: 0.72;
}

body.route-moa-card .card-card-grid article::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -46px;
  width: 150px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(157, 109, 77, 0.14), transparent 66%);
  opacity: 0;
  transition: opacity 200ms ease, transform 200ms ease;
}

body.route-moa-card .card-card-grid article:hover {
  border-color: rgba(157, 109, 77, 0.24);
  background:
    radial-gradient(circle at 94% 0%, rgba(157, 109, 77, 0.13), transparent 13rem),
    radial-gradient(circle at 8% 100%, rgba(37, 211, 224, 0.1), transparent 12rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.84));
  box-shadow: 0 36px 110px rgba(17, 18, 22, 0.13), 0 0 0 1px rgba(157, 109, 77, 0.08);
  transform: translateY(-6px);
}

body.route-moa-card .card-card-grid article:hover::after {
  opacity: 1;
  transform: translate(-10px, -10px);
}

.card-card-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 15px;
  color: var(--black);
  background: rgba(247, 242, 237, 0.92);
  box-shadow: inset 0 0 0 1px rgba(17, 18, 22, 0.06), 0 14px 34px rgba(17, 18, 22, 0.055);
  transition: color 200ms ease, background 200ms ease, transform 200ms ease;
}

body.route-moa-card .card-card-grid article:hover .card-card-icon {
  color: #7a4c32;
  background: rgba(249, 241, 234, 0.94);
  transform: translateY(-2px);
}

.card-card-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.swap-card-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.news-card-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.subpage-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 26px;
}

.subpage-card-meta small {
  color: var(--warm);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.subpage-card-meta small:last-child {
  color: #8b9098;
}

.subpage-grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--black);
  font-size: clamp(21px, 2vw, 26px);
  font-weight: 820;
}

body.route-moa-news .subpage-grid span {
  max-width: 320px;
  margin-bottom: 16px;
  font-size: clamp(24px, 2.1vw, 30px);
  line-height: 1.12;
}

.subpage-grid p,
.subpage-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.subpage-grid article strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 28px;
  color: var(--black);
  font-size: 15px;
  font-weight: 850;
  transition: gap 180ms ease, color 180ms ease;
}

.subpage-grid article strong::after {
  content: "->";
  font-size: 16px;
}

body.route-moa-swap .subpage-grid article strong::after {
  content: "";
}

body.route-moa-card .subpage-grid article strong::after {
  content: "";
}

body.route-moa-swap .subpage-grid article strong i {
  font-style: normal;
  transition: transform 180ms ease;
}

body.route-moa-card .subpage-grid article strong i {
  font-style: normal;
  transition: transform 180ms ease;
}

body.route-moa-swap .subpage-grid article:hover strong i {
  transform: translateX(3px);
}

body.route-moa-card .subpage-grid article:hover strong i {
  transform: translateX(3px);
}

.subpage-grid article:hover strong {
  gap: 10px;
  color: #096c75;
}

.about-trust-section,
.about-story-section,
.news-trust-section {
  width: var(--page-width);
  margin: 0 auto;
}

.about-trust-section {
  padding: 0 0 84px;
}

.about-trust-section .section-title {
  margin-bottom: 28px;
}

.about-trust-section .section-title h2,
.about-story-section h2 {
  max-width: 820px;
}

.about-trust-section .section-title p:not(.small-label) {
  max-width: 820px;
}

.about-trust-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.about-trust-grid article {
  min-height: 186px;
  border: 1px solid rgba(17, 18, 22, 0.08);
  border-radius: 24px;
  padding: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 211, 224, 0.06), transparent 10rem),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 58px rgba(17, 18, 22, 0.05);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.about-trust-grid article:hover {
  border-color: rgba(37, 211, 224, 0.2);
  box-shadow: 0 26px 82px rgba(17, 18, 22, 0.085);
  transform: translateY(-4px);
}

.about-trust-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--black);
  font-size: 18px;
  line-height: 1.1;
}

.about-trust-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 560;
  line-height: 1.5;
}

.about-story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
  margin-bottom: 72px;
  border: 1px solid rgba(17, 18, 22, 0.08);
  border-radius: 32px;
  padding: clamp(30px, 4.6vw, 58px);
  background:
    radial-gradient(circle at 100% 0%, rgba(157, 109, 77, 0.1), transparent 20rem),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 76px rgba(17, 18, 22, 0.06);
}

.about-story-section h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
}

.about-story-section p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 560;
  line-height: 1.58;
}

.about-story-section p:last-child {
  margin-bottom: 0;
}

.news-trust-section {
  padding: 0 0 76px;
}

.news-trust-section .section-title {
  margin-bottom: 26px;
}

.news-trust-section .section-title h2 {
  max-width: 760px;
}

.news-trust-section .section-title p:not(.small-label) {
  max-width: 820px;
}

.news-trust-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.news-trust-grid article {
  display: grid;
  min-height: 188px;
  align-content: start;
  gap: 18px;
  border: 1px solid rgba(17, 18, 22, 0.08);
  border-radius: 24px;
  padding: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 211, 224, 0.06), transparent 10rem),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 64px rgba(17, 18, 22, 0.055);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.news-trust-grid article:hover {
  border-color: rgba(37, 211, 224, 0.22);
  box-shadow: 0 30px 92px rgba(17, 18, 22, 0.095), 0 0 0 1px rgba(37, 211, 224, 0.055);
  transform: translateY(-4px);
}

.news-trust-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  color: var(--black);
  background:
    radial-gradient(circle at 70% 20%, rgba(37, 211, 224, 0.18), transparent 3rem),
    #f6f2ed;
  box-shadow: inset 0 0 0 1px rgba(17, 18, 22, 0.07);
  font-size: 13px;
  font-weight: 950;
}

.news-trust-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--black);
  font-size: 18px;
  line-height: 1.1;
}

.news-trust-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 560;
  line-height: 1.5;
}

.subpage-cta {
  position: relative;
  margin-bottom: 64px;
  overflow: hidden;
  padding: clamp(34px, 4.6vw, 60px);
  border-radius: 32px;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 0%, rgba(157, 109, 77, 0.42), transparent 24rem),
    linear-gradient(135deg, #08090c, #24201e);
  box-shadow: var(--deep-shadow);
}

.subpage-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 20%, rgba(37, 211, 224, 0.18), transparent 20rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 46%);
}

.subpage-cta > * {
  position: relative;
  z-index: 1;
}

body.route-moa-news .subpage-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 0.78fr);
  align-items: center;
  gap: clamp(26px, 4vw, 64px);
  min-height: 440px;
  padding: clamp(42px, 5vw, 72px);
  background:
    radial-gradient(circle at 80% 28%, rgba(37, 211, 224, 0.26), transparent 24rem),
    radial-gradient(circle at 16% 0%, rgba(157, 109, 77, 0.38), transparent 22rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px) 0 0 / 54px 54px,
    linear-gradient(135deg, #07080a 0%, #151415 54%, #251d18 100%);
}

body.route-moa-news .subpage-cta::after {
  content: none;
}

.news-cta-visual {
  min-height: 410px;
}

.news-cta-visual::before {
  width: min(540px, 98%);
  filter: blur(24px);
}

.news-cta-visual .cta-device {
  width: min(350px, 70vw);
  min-height: 446px;
  padding: 34px 28px;
  border-radius: 42px;
}

.news-cta-visual .cta-device b {
  font-size: 52px;
}

.news-cta-visual .cta-card-mini {
  right: -4%;
  bottom: 4%;
  width: 238px;
  min-height: 138px;
}

.news-metric-chip {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.news-metric-chip-a {
  left: 2%;
  top: 10%;
}

.news-metric-chip-b {
  right: 4%;
  top: 24%;
}

.news-metric-chip-c {
  left: 0;
  bottom: 12%;
}

.news-metric-chip small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-metric-chip strong {
  color: var(--white);
  font-size: 14px;
}

body.route-about-us .about-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  align-items: center;
  gap: clamp(26px, 4vw, 62px);
  min-height: 360px;
  padding: clamp(34px, 4.8vw, 58px);
  background:
    radial-gradient(circle at 82% 24%, rgba(37, 211, 224, 0.2), transparent 22rem),
    radial-gradient(circle at 12% 0%, rgba(157, 109, 77, 0.34), transparent 22rem),
    linear-gradient(135deg, #07080a 0%, #151415 54%, #251d18 100%);
}

body.route-moa-swap .swap-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(26px, 4vw, 58px);
  min-height: 390px;
  padding: clamp(36px, 4.8vw, 64px);
  background:
    radial-gradient(circle at 80% 26%, rgba(37, 211, 224, 0.24), transparent 24rem),
    radial-gradient(circle at 14% 0%, rgba(157, 109, 77, 0.36), transparent 22rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px) 0 0 / 54px 54px,
    linear-gradient(135deg, #07080a 0%, #141516 54%, #261d18 100%);
}

body.route-moa-card .card-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(26px, 4vw, 58px);
  min-height: 390px;
  padding: clamp(36px, 4.8vw, 64px);
  background:
    radial-gradient(circle at 80% 26%, rgba(157, 109, 77, 0.34), transparent 24rem),
    radial-gradient(circle at 14% 0%, rgba(37, 211, 224, 0.18), transparent 22rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px) 0 0 / 54px 54px,
    linear-gradient(135deg, #07080a 0%, #151312 54%, #2f211b 100%);
}

body.route-moa-swap .swap-cta h2 {
  max-width: 760px;
}

body.route-moa-card .card-cta h2 {
  max-width: 760px;
}

.swap-cta-visual {
  min-height: 320px;
}

.swap-cta-visual::before {
  width: min(440px, 92%);
  filter: blur(24px);
}

.swap-cta-card {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(330px, 76vw);
  min-height: 190px;
  align-content: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 30px;
  padding: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 14%, rgba(37, 211, 224, 0.22), transparent 10rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.055));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 30px 80px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
}

.swap-cta-card span,
.swap-cta-card em {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-style: normal;
}

.swap-cta-card strong {
  color: var(--white);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
}

.swap-cta-lines {
  position: absolute;
  z-index: 1;
  display: grid;
  gap: 14px;
  width: min(420px, 90%);
}

.swap-cta-lines i {
  display: block;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(37, 211, 224, 0.42), rgba(255, 255, 255, 0.22), transparent);
}

.swap-cta-chip {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  padding: 11px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
  font-size: 12px;
  font-weight: 900;
}

.swap-cta-chip-a {
  left: 4%;
  top: 18%;
}

.swap-cta-chip-b {
  right: 1%;
  bottom: 18%;
}

.card-cta-visual {
  min-height: 320px;
}

.card-cta-visual::before {
  width: min(440px, 92%);
  filter: blur(24px);
}

.card-cta-card {
  position: relative;
  z-index: 2;
  width: min(340px, 76vw);
  min-height: 210px;
  transform: rotate(-3deg);
}

.card-cta-card strong {
  font-size: clamp(30px, 3vw, 42px);
}

.card-cta-chip {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  padding: 11px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
  font-size: 12px;
  font-weight: 900;
}

.card-cta-chip-a {
  left: 4%;
  top: 18%;
}

.card-cta-chip-b {
  right: 1%;
  bottom: 18%;
}

body.route-about-us .about-cta h2 {
  max-width: 760px;
}

.about-cta-visual {
  min-height: 260px;
}

.about-cta-visual .cta-device {
  width: min(230px, 58vw);
  min-height: 300px;
}

.about-cta-visual .cta-card-mini {
  right: 0;
  bottom: 2%;
}

.about-float-chip {
  left: 2%;
  top: 12%;
}

.subpage-cta h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1;
}

.subpage-cta p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
}

.subpage-cta-copy {
  max-width: 680px;
}

.subpage-cta a {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  border-radius: 999px;
  padding: 0 24px;
  color: var(--black);
  background: var(--white);
  font-weight: 850;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.subpage-cta a:hover {
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}

.subpage-cta-visual {
  position: relative;
  display: grid;
  min-height: 240px;
  place-items: center;
}

.subpage-cta-visual::before {
  content: "";
  position: absolute;
  width: min(320px, 80%);
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 40% 42%, rgba(37, 211, 224, 0.32), transparent 38%),
    radial-gradient(circle at 62% 64%, rgba(157, 109, 77, 0.26), transparent 42%);
  filter: blur(18px);
}

.cta-device {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(210px, 58vw);
  min-height: 280px;
  align-content: start;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 34px;
  padding: 24px 20px;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 12%, rgba(37, 211, 224, 0.2), transparent 8rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 30px 88px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.cta-device span {
  width: 44px;
  height: 5px;
  justify-self: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.cta-device strong {
  margin-top: 16px;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.cta-device em {
  color: rgba(255, 255, 255, 0.58);
  font-style: normal;
  font-size: 13px;
}

.cta-device b {
  font-size: 34px;
  line-height: 1;
}

.cta-card-mini {
  position: absolute;
  right: 3%;
  bottom: 8%;
  z-index: 3;
  display: grid;
  width: 178px;
  min-height: 104px;
  align-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  padding: 18px;
  color: var(--white);
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.24), transparent 35%),
    linear-gradient(135deg, #0b0c10, #6d4c39);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.cta-card-mini span,
.cta-card-mini strong {
  font-size: 13px;
}

.account-section {
  padding-bottom: 104px;
}

.account-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 0%, rgba(157, 109, 77, 0.4), transparent 25rem),
    linear-gradient(135deg, #08090c, #24201e);
  box-shadow: var(--deep-shadow);
}

.account-panel h2,
.account-panel p {
  color: var(--white);
}

.account-panel p {
  max-width: 740px;
  opacity: 0.76;
}

.account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.account-actions button {
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 0 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
  cursor: pointer;
}

.account-actions button:last-child {
  color: var(--black);
  background: var(--white);
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 24% 16%, rgba(184, 132, 91, 0.24), transparent 28rem),
    radial-gradient(circle at 78% 72%, rgba(37, 211, 224, 0.16), transparent 30rem),
    rgba(10, 11, 14, 0.74);
  backdrop-filter: blur(22px) saturate(1.16);
}

.auth-modal[hidden],
.auth-form {
  display: none;
}

.auth-dialog {
  position: relative;
  width: min(640px, 100%);
  max-height: min(820px, calc(100vh - 48px));
  overflow: auto;
  padding: 24px 34px 26px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 211, 224, 0.08), transparent 18rem),
    radial-gradient(circle at 0% 12%, rgba(184, 132, 91, 0.12), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 246, 242, 0.98)),
    #fbf8f4;
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(255, 255, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.auth-dialog::before {
  position: absolute;
  inset: 0 0 auto;
  height: 150px;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), transparent),
    linear-gradient(90deg, rgba(17, 18, 22, 0.04) 1px, transparent 1px) 0 0 / 46px 46px;
  content: "";
}

.auth-brandline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 56px 14px 0;
}

.auth-brandline img {
  width: 162px;
  height: auto;
}

.auth-brandline span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  color: var(--warm);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(17, 18, 22, 0.06);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-close {
  position: absolute;
  top: 24px;
  right: 24px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--black);
  box-shadow: 0 16px 34px rgba(17, 18, 22, 0.2);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.auth-close:hover {
  background: #2c2d32;
  transform: scale(1.04);
}

.auth-tabs {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin: 0 56px 18px 0;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(17, 18, 22, 0.055), 0 18px 46px rgba(17, 18, 22, 0.06);
}

.auth-tabs button {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.auth-tabs button.is-active {
  color: var(--white);
  background: var(--black);
  box-shadow: 0 16px 36px rgba(17, 18, 22, 0.22);
}

.auth-form.is-active {
  display: grid;
  position: relative;
  z-index: 1;
}

.auth-form h2 {
  max-width: 520px;
  margin-bottom: 8px;
  font-size: clamp(36px, 4vw, 48px);
  line-height: 0.98;
  letter-spacing: 0;
}

.auth-form p {
  max-width: 500px;
  margin-bottom: 12px;
  color: #747982;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.auth-field-table {
  display: grid;
  gap: 0;
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid rgba(17, 18, 22, 0.075);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 58px rgba(17, 18, 22, 0.055), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.auth-field-row {
  display: grid;
  grid-template-columns: minmax(124px, 0.34fr) minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 9px 14px;
}

.auth-field-row + .auth-field-row {
  border-top: 1px solid rgba(17, 18, 22, 0.065);
}

.auth-form label {
  margin: 0;
  color: #202126;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.auth-form input {
  min-height: 50px;
  border: 1px solid rgba(17, 18, 22, 0.08);
  border-radius: 18px;
  padding: 0 20px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 10px 26px rgba(17, 18, 22, 0.025);
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.auth-form input:focus {
  border-color: rgba(157, 109, 77, 0.62);
  background: var(--white);
  box-shadow: 0 0 0 5px rgba(157, 109, 77, 0.12), 0 14px 34px rgba(17, 18, 22, 0.055);
}

.auth-password-control {
  display: grid;
  gap: 10px;
}

.auth-password-shell {
  position: relative;
  display: grid;
}

.auth-password-shell input {
  width: 100%;
  padding-right: 60px;
}

.auth-form .password-toggle {
  position: absolute;
  top: 50%;
  right: 9px;
  display: inline-grid;
  width: 40px;
  min-height: 40px;
  height: 40px;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(17, 18, 22, 0.08);
  border-radius: 14px;
  color: #6f747c;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 22px rgba(17, 18, 22, 0.045);
  transform: translateY(-50%);
}

.auth-form .password-toggle:hover {
  color: var(--black);
  background: var(--white);
  box-shadow: 0 12px 26px rgba(17, 18, 22, 0.08);
  transform: translateY(-50%);
}

.password-toggle svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.password-toggle::after {
  position: absolute;
  width: 21px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: rotate(-42deg) scaleX(0.7);
  transition: opacity 160ms ease, transform 160ms ease;
}

.password-toggle.is-visible::after {
  opacity: 1;
  transform: rotate(-42deg) scaleX(1);
}

.password-rules {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.password-rules span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  border: 1px solid rgba(17, 18, 22, 0.07);
  border-radius: 999px;
  padding: 6px 10px;
  color: #767b83;
  background: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 880;
  line-height: 1;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.password-rules span::before {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #c9cdd3;
  content: "";
  box-shadow: 0 0 0 3px rgba(201, 205, 211, 0.18);
}

.password-rules span.is-met {
  color: #086446;
  border-color: rgba(8, 100, 70, 0.12);
  background: rgba(220, 250, 236, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.password-rules span.is-met::before {
  background: #16a36d;
  box-shadow: 0 0 0 3px rgba(22, 163, 109, 0.16);
}

.auth-register-note,
.auth-recovery-note {
  display: grid;
  grid-template-columns: minmax(120px, auto) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin-top: 16px;
  border: 1px solid rgba(157, 109, 77, 0.13);
  border-radius: 22px;
  padding: 13px 15px;
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 211, 224, 0.08), transparent 9rem),
    rgba(255, 255, 255, 0.58);
}

.auth-register-note span,
.auth-recovery-note span {
  color: var(--warm);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.auth-register-note p,
.auth-recovery-note p {
  margin: 0;
  color: #6e737b;
  font-size: 13px;
  font-weight: 680;
  line-height: 1.45;
}

.auth-form button,
.wasabi-panel button {
  min-height: 56px;
  border: 0;
  border-radius: 20px;
  margin-top: 16px;
  color: var(--white);
  background: var(--black);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 20px 48px rgba(17, 18, 22, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.auth-form button:hover,
.wasabi-panel button:hover {
  background: #292a2f;
  box-shadow: 0 16px 30px rgba(17, 18, 22, 0.16);
  transform: translateY(-1px);
}

.auth-login-tools {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.auth-form .demo-fill,
.auth-form .forgot-link,
.auth-form .auth-back-button {
  min-height: 46px;
  margin-top: 0;
  color: var(--black);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 18, 22, 0.08);
  box-shadow: 0 12px 30px rgba(17, 18, 22, 0.05);
}

.auth-form .forgot-link {
  color: #7d553f;
  background: rgba(247, 242, 237, 0.82);
}

.auth-form .demo-fill:hover,
.auth-form .forgot-link:hover,
.auth-form .auth-back-button:hover {
  color: var(--black);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(17, 18, 22, 0.08);
}

.auth-recovery-actions {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.auth-recovery-actions button {
  margin-top: 0;
}

.auth-status {
  min-height: 24px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.auth-status.is-error {
  color: #a23939;
}

.wasabi-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
  padding: 14px 16px;
  border: 1px solid rgba(17, 18, 22, 0.05);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 46px rgba(17, 18, 22, 0.06);
}

.wasabi-panel[hidden] {
  display: none;
}

.wasabi-panel span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wasabi-panel strong {
  display: block;
  margin-top: 5px;
  color: var(--black);
  font-size: 15px;
}

.wasabi-panel strong.is-error {
  color: #a23939;
}

.wasabi-panel button {
  margin-top: 0;
  padding: 0 18px;
  border-radius: 999px;
}

.admin-shell {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 228px minmax(0, 1fr);
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 8%, rgba(157, 109, 77, 0.12), transparent 30rem),
    radial-gradient(circle at 0% 92%, rgba(37, 211, 224, 0.05), transparent 26rem),
    linear-gradient(180deg, #fbfaf8, #f5f2ee 54%, #ffffff);
}

.admin-shell[hidden] {
  display: none;
}

.admin-mobile-bar {
  display: none;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100svh;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 12px;
  padding: 14px 24px 12px 12px;
  border-right: 1px solid rgba(17, 18, 22, 0.07);
  color: var(--black);
  background:
    radial-gradient(circle at 20% 0%, rgba(157, 109, 77, 0.14), transparent 18rem),
    rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(24px) saturate(1.15);
  overflow: auto;
  scrollbar-width: none;
}

.admin-sidebar::-webkit-scrollbar {
  display: none;
}

.admin-brand,
.admin-user {
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 18px;
}

.admin-brand {
  min-height: 44px;
  padding: 4px 10px 8px;
}

.admin-brand > div {
  display: none;
}

.admin-brand img {
  width: 134px;
  height: auto;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 24px rgba(17, 18, 22, 0.1));
}

.admin-user > div:first-child {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(135deg, #111216, #a87956);
  font-weight: 900;
}

.admin-brand strong,
.admin-user strong {
  display: block;
  font-size: 16px;
  line-height: 1.1;
}

.admin-brand span,
.admin-user span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.admin-user {
  width: calc(100% - 12px);
  min-width: 0;
  justify-self: start;
  padding: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 242, 237, 0.78));
  box-shadow: inset 0 0 0 1px rgba(17, 18, 22, 0.06), 0 14px 34px rgba(17, 18, 22, 0.04);
}

.admin-user > div:first-child {
  background: linear-gradient(135deg, #111216, #a87956);
}

.admin-user > div:last-child {
  min-width: 0;
}

.admin-user span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-nav {
  display: grid;
  align-content: start;
  gap: 6px;
  padding-top: 4px;
}

.admin-nav p {
  margin: 12px 10px 2px;
  color: rgba(111, 115, 123, 0.82);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-nav p:first-child {
  margin-top: 0;
}

.admin-nav button,
.admin-logout {
  display: flex;
  width: calc(100% - 12px);
  justify-self: start;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 14px;
  padding: 0 10px;
  color: var(--muted);
  background: transparent;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
  transition: background 160ms ease, box-shadow 160ms ease, color 160ms ease, transform 160ms ease;
}

.admin-nav button[hidden] {
  display: none;
}

.admin-nav button span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--warm);
  box-shadow: inset 0 0 0 1px rgba(17, 18, 22, 0.04);
  font-size: 12px;
}

.admin-nav button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.admin-nav button.is-active,
.admin-nav button:hover,
.admin-logout:hover {
  color: var(--white);
  background: var(--black);
  box-shadow: 0 14px 34px rgba(17, 18, 22, 0.12);
  transform: none;
}

.admin-nav button.is-active span,
.admin-nav button:hover span {
  color: var(--black);
  background: var(--white);
}

.admin-logout {
  color: var(--black);
  background: var(--white);
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(17, 18, 22, 0.08);
}

.admin-main {
  min-width: 0;
  padding: clamp(16px, 2vw, 26px);
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  padding: 16px 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(157, 109, 77, 0.08), transparent 18rem),
    rgba(255, 255, 255, 0.56);
  box-shadow: 0 18px 56px rgba(17, 18, 22, 0.055);
  backdrop-filter: blur(22px) saturate(1.08);
}

.admin-topbar p,
.admin-card span,
.admin-table-card span {
  margin: 0 0 8px;
  color: var(--warm);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-topbar h1 {
  margin: 0;
  color: var(--black);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 0.98;
}

.admin-topbar [data-admin-subtitle] {
  display: block;
  max-width: 620px;
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.admin-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 420px;
}

.admin-actions button,
.admin-table-card button {
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  color: var(--white);
  background: var(--black);
  font-weight: 900;
  cursor: pointer;
}

.admin-actions button[aria-label] {
  display: grid;
  width: 42px;
  min-width: 42px;
  padding: 0;
  place-items: center;
  color: var(--black);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: inset 0 0 0 1px rgba(17, 18, 22, 0.07), 0 12px 28px rgba(17, 18, 22, 0.05);
}

.admin-actions button[aria-label]:hover {
  color: var(--white);
  background: var(--black);
}

.admin-actions svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.admin-status {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
  color: #7a4b13;
  background: rgba(255, 242, 212, 0.86);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.admin-status.is-connected {
  color: #0e6b44;
  background: rgba(223, 248, 237, 0.9);
}

.admin-status.is-error {
  color: #9a2e2e;
  background: #ffe4e4;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.admin-page {
  display: none;
}

.admin-page.is-active {
  display: block;
}

.admin-card,
.admin-table-card {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 44px rgba(17, 18, 22, 0.055);
  backdrop-filter: blur(22px) saturate(1.1);
}

.admin-card {
  padding: 16px;
}

.admin-card-wide {
  grid-column: span 3;
}

.dashboard-balance-card {
  position: relative;
  overflow: hidden;
  min-height: 174px;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 14%, rgba(37, 211, 224, 0.18), transparent 20rem),
    radial-gradient(circle at 16% 8%, rgba(157, 109, 77, 0.28), transparent 20rem),
    linear-gradient(135deg, #07080a, #171411 58%, #2a211b);
  box-shadow: 0 30px 90px rgba(17, 18, 22, 0.18);
}

.dashboard-balance-card::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 300px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(37, 211, 224, 0.18), transparent 66%);
  pointer-events: none;
}

.dashboard-balance-card > * {
  position: relative;
  z-index: 1;
}

.dashboard-balance-card .admin-card-heading span,
.dashboard-balance-card p,
.dashboard-balance-card dt {
  color: rgba(255, 255, 255, 0.66);
}

.dashboard-balance-card .admin-card-heading h2 {
  color: var(--white);
  font-size: clamp(28px, 2.8vw, 38px);
  letter-spacing: 0;
}

.dashboard-balance-card .admin-card-heading strong {
  color: #0e6b44;
  background: rgba(223, 248, 237, 0.95);
}

.balance-meta,
.portfolio-list {
  display: grid;
  gap: 10px;
}

.balance-meta {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0 0;
}

.balance-meta div {
  min-width: 0;
  min-height: 58px;
  border-radius: 12px;
  padding: 8px 9px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.balance-meta dt,
.portfolio-list dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.balance-meta dd,
.portfolio-list dd {
  margin: 7px 0 0;
  color: inherit;
  font-weight: 900;
}

.balance-meta dd {
  color: var(--white);
  font-size: 13px;
  line-height: 1.18;
}

.admin-card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.admin-card-heading h2,
.admin-card h2,
.admin-table-card h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.1;
}

.admin-card-heading strong {
  display: inline-grid;
  min-width: 46px;
  min-height: 34px;
  place-items: center;
  border-radius: 12px;
  color: var(--black);
  background: var(--cream);
  font-size: 15px;
}

.admin-card p,
.admin-table-card td {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.stat-card {
  position: relative;
  display: grid;
  min-height: 126px;
  max-height: none;
  align-content: start;
  gap: 5px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.stat-card:hover {
  border-color: rgba(157, 109, 77, 0.18);
  box-shadow: 0 22px 64px rgba(17, 18, 22, 0.085);
  transform: translateY(-3px);
}

.stat-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  margin-bottom: 2px;
  border-radius: 11px;
  color: var(--black);
  background: rgba(246, 244, 241, 0.92);
  box-shadow: inset 0 0 0 1px rgba(17, 18, 22, 0.06);
}

.stat-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-card h2 {
  font-size: clamp(15px, 1.25vw, 18px);
}

.stat-card h2 b {
  font-size: clamp(20px, 1.8vw, 24px);
}

.stat-card em {
  display: inline-flex;
  width: fit-content;
  min-height: 24px;
  align-items: center;
  margin-top: 4px;
  border-radius: 999px;
  padding: 0 9px;
  color: #7b563d;
  background: rgba(157, 109, 77, 0.09);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

[data-admin-page="dashboard"] .admin-grid {
  grid-template-columns: minmax(420px, 1.55fr) repeat(2, minmax(210px, 0.58fr));
  grid-template-areas:
    "balance accounts cards"
    "balance pending pending";
  align-items: stretch;
}

[data-admin-page="dashboard"] .admin-card-wide {
  grid-area: balance;
  grid-column: auto;
}

[data-admin-page="dashboard"] .admin-grid > .stat-card:nth-of-type(2) {
  grid-area: accounts;
}

[data-admin-page="dashboard"] .admin-grid > .stat-card:nth-of-type(3) {
  grid-area: cards;
}

.dashboard-pending-card {
  grid-area: pending;
  min-height: 82px;
  max-height: none;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  align-content: center;
  gap: 8px 12px;
  padding: 12px 16px;
}

[data-admin-page="dashboard"] .admin-card p {
  margin: 0;
}

[data-admin-page="dashboard"] .dashboard-balance-card p {
  margin-top: -4px;
  font-size: 13px;
  line-height: 1.35;
}

[data-admin-page="dashboard"] .stat-card p {
  line-height: 1.3;
}

.dashboard-pending-card .stat-icon {
  grid-row: span 2;
  margin: 0;
}

.dashboard-pending-card span {
  margin: 0;
}

.dashboard-pending-card h2 {
  margin: 0;
  font-size: clamp(18px, 1.6vw, 23px);
}

.dashboard-pending-card h2 b {
  font-size: clamp(24px, 2.1vw, 30px);
}

.dashboard-pending-card p {
  grid-column: 2;
  margin: -4px 0 0;
}

.dashboard-pending-card em {
  grid-column: 3;
  grid-row: 1 / span 2;
  margin: 0;
  white-space: nowrap;
}

.admin-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.admin-form label {
  display: grid;
  gap: 8px;
  color: var(--black);
  font-size: 13px;
  font-weight: 900;
}

.admin-form input,
.admin-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(17, 18, 22, 0.1);
  border-radius: 14px;
  padding: 0 14px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.92);
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.admin-form input:focus,
.admin-form select:focus {
  outline: none;
  border-color: rgba(157, 109, 77, 0.36);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(157, 109, 77, 0.1);
}

.admin-form button,
.receive-card button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  color: var(--white);
  background: var(--black);
  font-weight: 900;
  cursor: pointer;
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.admin-form button:hover,
.receive-card button:hover {
  box-shadow: 0 14px 34px rgba(17, 18, 22, 0.14);
  transform: translateY(-2px);
}

.admin-form button {
  align-self: end;
}

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

.admin-inline-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: #0e6b44;
  font-weight: 900;
}

[data-admin-page="receive"] .admin-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: start;
  gap: 12px;
}

[data-admin-page="receive"] .admin-card-wide {
  grid-column: auto;
}

[data-admin-page="receive"] .admin-card {
  align-self: start;
}

[data-admin-page="receive"] .receive-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 10px;
}

[data-admin-page="receive"] .receive-card::after {
  content: "";
  position: absolute;
  right: -72px;
  top: -80px;
  width: 190px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(37, 211, 224, 0.12), transparent 66%);
  pointer-events: none;
}

[data-admin-page="receive"] .receive-card > * {
  position: relative;
  z-index: 1;
}

[data-admin-page="receive"] .receive-card button {
  width: fit-content;
}

[data-admin-page="cards"] .admin-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 12px;
}

[data-admin-page="cards"] .admin-card-wide {
  grid-column: auto;
}

.card-request-card,
.bind-card-panel {
  display: grid;
  align-content: start;
}

.card-request-card {
  overflow: hidden;
}

.card-request-card .admin-form {
  grid-template-columns: 1fr;
}

.card-request-card .admin-form label:nth-child(3) {
  grid-column: auto;
}

.card-request-card .admin-form button {
  grid-column: auto;
}

.card-request-summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: auto;
  border: 1px solid rgba(17, 18, 22, 0.07);
  border-radius: 18px;
  padding: 16px;
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 211, 224, 0.08), transparent 14rem),
    radial-gradient(circle at 0% 100%, rgba(157, 109, 77, 0.09), transparent 15rem),
    rgba(247, 242, 237, 0.64);
}

.card-request-summary span {
  margin: 0 0 8px;
}

.card-request-summary strong {
  display: block;
  color: var(--black);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.15;
}

.card-request-summary p {
  max-width: 460px;
  margin: 10px 0 0;
}

.card-request-summary dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.card-request-summary dl div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border-radius: 13px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(17, 18, 22, 0.04);
}

.card-request-summary dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-request-summary dd {
  margin: 0;
  color: var(--black);
  font-size: 12px;
  font-weight: 900;
  text-align: right;
}

.transfer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  align-items: start;
  gap: 14px;
  margin-bottom: 14px;
}

.transfer-main-column,
.transfer-side-column {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
}

.transfer-compose-card {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 2.6vw, 30px);
}

.transfer-compose-card::after {
  content: "";
  position: absolute;
  right: -100px;
  top: -120px;
  width: 260px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(157, 109, 77, 0.14), transparent 66%);
  pointer-events: none;
}

.transfer-compose-card > * {
  position: relative;
  z-index: 1;
}

.transfer-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.transfer-card-head h2 {
  font-size: clamp(28px, 2.8vw, 38px);
}

.transfer-card-head p {
  max-width: 560px;
  margin: 10px 0 0;
}

.transfer-status-pill {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  color: #7b563d;
  background: rgba(157, 109, 77, 0.09);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.transfer-guide {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  border: 1px solid rgba(17, 18, 22, 0.08);
  border-radius: 16px;
  padding: 12px;
  background:
    radial-gradient(circle at 0% 0%, rgba(37, 211, 224, 0.08), transparent 12rem),
    rgba(255, 255, 255, 0.68);
}

.transfer-guide[hidden] {
  display: none;
}

.transfer-guide-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  color: #7b563d;
  background: rgba(157, 109, 77, 0.1);
}

.transfer-guide-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.transfer-guide-copy {
  min-width: 0;
}

.transfer-guide strong {
  display: block;
  color: var(--black);
  font-size: 14px;
  font-weight: 900;
}

.transfer-guide p {
  max-width: 560px;
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.transfer-guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.transfer-guide-actions button {
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  padding: 0 13px;
  color: var(--black);
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(17, 18, 22, 0.08);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.transfer-guide-actions button:hover {
  color: var(--white);
  background: var(--black);
}

.transfer-compose-card .admin-form {
  gap: 18px;
  margin-top: 28px;
}

.transfer-compose-card .admin-form input,
.transfer-compose-card .admin-form select {
  min-height: 54px;
  border-radius: 18px;
  padding: 0 18px;
  font-weight: 850;
}

.transfer-compose-card .admin-form button {
  min-height: 54px;
  grid-column: 1 / -1;
  max-width: 360px;
}

.transfer-compose-card .admin-form button:disabled {
  color: rgba(17, 18, 22, 0.45);
  background: rgba(17, 18, 22, 0.08);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.transfer-limit-card {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 211, 224, 0.08), transparent 15rem),
    rgba(255, 255, 255, 0.78);
}

.transfer-limit-card h2 {
  max-width: 8ch;
  font-size: clamp(26px, 2.4vw, 34px);
}

.transfer-limit-card p {
  margin: 0;
}

.transfer-limit-card dl {
  display: grid;
  gap: 8px;
  margin: 6px 0 0;
}

.transfer-limit-card dl div {
  border-radius: 13px;
  padding: 10px 12px;
  background: rgba(247, 242, 237, 0.76);
}

.transfer-limit-card dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.transfer-limit-card dd {
  margin: 5px 0 0;
  color: var(--black);
  font-weight: 900;
}

.transfer-review-card {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(157, 109, 77, 0.08), transparent 13rem),
    rgba(255, 255, 255, 0.78);
}

.transfer-review-card h2 {
  overflow-wrap: anywhere;
  font-size: clamp(18px, 1.5vw, 22px);
}

.transfer-review-card p {
  margin: 0;
}

.transfer-review-card dl {
  display: grid;
  gap: 8px;
  margin: 4px 0 0;
}

.transfer-review-card dl div {
  border-radius: 13px;
  padding: 10px 12px;
  background: rgba(247, 242, 237, 0.76);
}

.transfer-review-card dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.transfer-review-card dd {
  margin: 5px 0 0;
  color: var(--black);
  font-weight: 900;
}

.transfer-history-card {
  padding: clamp(20px, 2.4vw, 26px);
}

.receive-code {
  width: 116px;
  height: 116px;
  margin: 16px 0;
  border-radius: 20px;
  background:
    linear-gradient(90deg, var(--black) 10px, transparent 10px) 0 0 / 28px 28px,
    linear-gradient(var(--black) 10px, transparent 10px) 0 0 / 28px 28px,
    var(--cream);
  box-shadow: inset 0 0 0 12px var(--white);
}

.wallet-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  align-items: stretch;
  gap: 12px;
  margin-bottom: 12px;
}

.wallet-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 12px;
  margin-bottom: 12px;
}

.wallet-balance-card {
  position: relative;
  overflow: hidden;
  min-height: 198px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(37, 211, 224, 0.2), transparent 18rem),
    radial-gradient(circle at 8% 0%, rgba(157, 109, 77, 0.34), transparent 18rem),
    linear-gradient(135deg, #050608, #16110e 62%, #34251c);
  box-shadow: 0 28px 86px rgba(17, 18, 22, 0.16);
}

.wallet-balance-card::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 20px;
  width: 118px;
  aspect-ratio: 1.58;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(37, 211, 224, 0.18), rgba(157, 109, 77, 0.18));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  transform: rotate(-7deg);
  pointer-events: none;
}

.wallet-balance-card > * {
  position: relative;
  z-index: 1;
}

.wallet-balance-card h2 {
  color: var(--white);
  font-size: clamp(31px, 3.1vw, 44px);
}

.wallet-balance-card p {
  max-width: 520px;
  margin: -2px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.wallet-balance-card .admin-card-heading span,
.wallet-balance-card dt {
  color: rgba(255, 255, 255, 0.62);
}

.wallet-balance-card .admin-card-heading strong {
  color: #0e6b44;
  background: rgba(223, 248, 237, 0.96);
}

.wallet-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 0 0;
}

.wallet-meta div {
  min-width: 0;
  border-radius: 14px;
  padding: 10px 11px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.wallet-meta dt {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wallet-meta dd {
  margin: 7px 0 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
}

.wallet-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.wallet-actions button,
.wallet-receive-card button,
.wallet-empty button {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  padding: 0 15px;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: box-shadow 160ms ease, transform 160ms ease, background 160ms ease;
}

.wallet-actions button {
  color: var(--black);
  background: rgba(255, 255, 255, 0.94);
}

.wallet-actions button:first-child,
.wallet-receive-card button,
.wallet-empty button {
  color: var(--white);
  background: var(--black);
}

.wallet-actions button:hover,
.wallet-receive-card button:hover,
.wallet-empty button:hover {
  box-shadow: 0 14px 34px rgba(17, 18, 22, 0.16);
  transform: translateY(-2px);
}

.wallet-receive-card {
  display: grid;
  align-content: stretch;
  gap: 10px;
  min-height: 251px;
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 211, 224, 0.09), transparent 14rem),
    rgba(255, 255, 255, 0.78);
}

.wallet-receive-card h2 {
  font-size: clamp(18px, 1.7vw, 24px);
}

.wallet-receive-card p {
  margin: 0;
  overflow-wrap: anywhere;
}

.wallet-receive-meta {
  display: grid;
  gap: 7px;
  margin: 4px 0 0;
}

.wallet-receive-meta div {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  border-radius: 13px;
  padding: 9px 10px;
  background: rgba(247, 242, 237, 0.76);
  box-shadow: inset 0 0 0 1px rgba(17, 18, 22, 0.04);
}

.wallet-receive-meta dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wallet-receive-meta dd {
  margin: 0;
  color: var(--black);
  font-size: 12px;
  font-weight: 900;
  text-align: right;
}

.wallet-receive-card button {
  align-self: end;
  width: fit-content;
}

.wallet-assets-card,
.wallet-history-card {
  padding: 16px;
}

.wallet-assets-card {
  align-self: start;
}

.wallet-asset-list,
.wallet-network-list {
  display: grid;
  gap: 7px;
}

.wallet-asset-list {
  max-height: 260px;
  overflow: auto;
  padding-right: 2px;
}

.wallet-network-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-height: none;
  overflow: visible;
}

.wallet-asset-item,
.wallet-network-list div {
  display: grid;
  min-height: 48px;
  align-items: center;
  border-radius: 14px;
  padding: 9px 11px;
  background: rgba(247, 242, 237, 0.72);
}

.wallet-network-list div {
  min-height: 38px;
  padding: 7px 10px;
}

.wallet-asset-item {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.wallet-asset-item strong,
.wallet-network-list strong {
  display: block;
  color: var(--black);
  font-size: 15px;
}

.wallet-asset-item span,
.wallet-network-list span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.wallet-network-list .wallet-network-summary {
  min-height: 34px;
  place-items: center;
  color: #7b563d;
  background: rgba(157, 109, 77, 0.09);
  font-size: 12px;
  font-weight: 900;
}

@media (max-width: 1080px) {
  .wallet-network-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.wallet-asset-item b {
  display: block;
  color: var(--black);
  font-size: 15px;
  text-align: right;
}

.wallet-asset-item em {
  display: block;
  margin-top: 4px;
  color: #0e6b44;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  text-align: right;
}

.wallet-network-card {
  display: grid;
  align-content: start;
  gap: 7px;
  padding: 14px 16px;
}

.wallet-network-card h2 {
  font-size: clamp(22px, 2vw, 28px);
}

.wallet-network-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
}

.wallet-empty {
  border: 1px solid rgba(17, 18, 22, 0.08);
  border-radius: 18px;
  padding: 16px;
  background:
    radial-gradient(circle at 100% 0%, rgba(157, 109, 77, 0.08), transparent 13rem),
    rgba(255, 255, 255, 0.64);
}

.wallet-empty strong {
  display: block;
  color: var(--black);
  font-size: 18px;
}

.wallet-empty p {
  max-width: 440px;
  margin: 7px 0 14px;
}

.wallet-history-card .admin-table-wrap {
  max-height: 240px;
}

.admin-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 0;
}

.admin-meta div {
  min-width: 0;
  border-radius: 16px;
  padding: 14px;
  background: #f4f9ff;
  background: rgba(247, 242, 237, 0.78);
}

.admin-meta div:first-child {
  grid-column: 1 / -1;
}

.admin-meta dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-meta dd {
  margin: 6px 0 0;
  overflow-wrap: anywhere;
  color: var(--black);
  font-weight: 900;
}

.admin-meta a,
.admin-card h2 a {
  color: inherit;
  text-decoration: none;
}

.admin-meta a:hover,
.admin-card h2 a:hover {
  text-decoration: underline;
}

.dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.dashboard-actions button {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  padding: 0 15px;
  color: var(--white);
  background: var(--black);
  font-weight: 900;
  cursor: pointer;
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.dashboard-actions button:nth-child(2),
.dashboard-actions button:nth-child(3) {
  color: var(--black);
  background: rgba(255, 255, 255, 0.9);
}

.dashboard-actions button:hover {
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  transform: translateY(-2px);
}

.dashboard-split {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(286px, 0.58fr);
  align-items: stretch;
  gap: 12px;
}

.dashboard-side-stack {
  display: grid;
  gap: 12px;
  align-content: start;
}

.dashboard-mini-list {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
}

.dashboard-mini-list div {
  border-radius: 12px;
  padding: 9px 11px;
  background: rgba(247, 242, 237, 0.78);
}

.portfolio-card,
.system-status-card {
  min-height: 0;
}

.portfolio-list {
  margin: 12px 0 0;
}

.portfolio-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid rgba(17, 18, 22, 0.07);
  padding: 9px 0;
}

.portfolio-list div:first-child {
  padding-top: 0;
}

.portfolio-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.portfolio-list dd {
  color: var(--black);
  font-size: 13px;
}

.system-status-card h2::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin: 0 9px 3px 0;
  border-radius: 999px;
  background: #18a56c;
  box-shadow: 0 0 0 5px rgba(24, 165, 108, 0.12);
}

.system-status-card.is-error h2::before {
  background: #c94a4a;
  box-shadow: 0 0 0 5px rgba(201, 74, 74, 0.12);
}

.dashboard-mini-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.dashboard-mini-list dd {
  margin: 4px 0 0;
  color: var(--black);
  font-weight: 900;
  font-size: 13px;
}

.admin-table-card {
  padding: 16px;
}

.admin-table-wrap {
  overflow: auto;
}

.admin-table-card table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

[data-admin-page="dashboard"] .admin-table-card {
  max-height: 310px;
  overflow: hidden;
}

[data-admin-page="dashboard"] .admin-table-card .admin-table-wrap {
  max-height: 218px;
  overflow: auto;
}

[data-admin-page="dashboard"] .dashboard-split > .admin-table-card:first-child {
  max-height: none;
  min-height: 342px;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  align-content: stretch;
}

[data-admin-page="dashboard"] .dashboard-split > .admin-table-card:first-child .admin-table-wrap {
  max-height: 136px;
}

[data-admin-page="dashboard"] .dashboard-split > .admin-table-card:first-child table {
  min-width: 0;
}

[data-admin-page="dashboard"] .dashboard-split > .admin-table-card:first-child th,
[data-admin-page="dashboard"] .dashboard-split > .admin-table-card:first-child td {
  padding-right: 12px;
  font-size: 12px;
  white-space: nowrap;
}

[data-admin-page="dashboard"] .dashboard-split > .admin-table-card:first-child th:nth-child(5),
[data-admin-page="dashboard"] .dashboard-split > .admin-table-card:first-child td:nth-child(5) {
  display: none;
}

.dashboard-activity-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  align-self: stretch;
  gap: 18px;
  margin-top: 18px;
  border: 1px solid rgba(17, 18, 22, 0.07);
  border-radius: 18px;
  padding: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 211, 224, 0.08), transparent 14rem),
    radial-gradient(circle at 0% 100%, rgba(157, 109, 77, 0.08), transparent 15rem),
    rgba(247, 242, 237, 0.62);
}

.dashboard-activity-detail div {
  align-self: start;
}

.dashboard-activity-detail span {
  margin-bottom: 8px;
  font-size: 11px;
}

.dashboard-activity-detail strong {
  display: block;
  color: var(--black);
  font-size: 20px;
  line-height: 1.15;
}

.dashboard-activity-detail p {
  max-width: 560px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.dashboard-activity-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0 0;
}

.dashboard-activity-metrics div {
  min-width: 0;
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 0 0 1px rgba(17, 18, 22, 0.06);
}

.dashboard-activity-metrics dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-activity-metrics dd {
  margin: 6px 0 0;
  overflow: hidden;
  color: var(--black);
  font-size: 12px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-activity-detail button {
  width: auto;
  min-width: 112px;
  white-space: nowrap;
}

[data-admin-page="dashboard"] .portfolio-card {
  padding: 16px;
}

[data-admin-page="dashboard"] .system-status-card {
  padding: 16px;
}

[data-admin-page="dashboard"] .portfolio-list,
[data-admin-page="dashboard"] .dashboard-mini-list {
  gap: 0;
}

[data-admin-page="dashboard"] .portfolio-list div,
[data-admin-page="dashboard"] .dashboard-mini-list div {
  min-height: 34px;
  border-radius: 0;
  padding: 7px 0;
  background: transparent;
}

[data-admin-page="dashboard"] .dashboard-mini-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid rgba(17, 18, 22, 0.07);
}

[data-admin-page="dashboard"] .dashboard-mini-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

[data-admin-page="dashboard"] .dashboard-mini-list dt,
[data-admin-page="dashboard"] .dashboard-mini-list dd {
  margin: 0;
}

[data-admin-page="dashboard"] .system-status-card h2 {
  font-size: 18px;
}

[data-admin-page="dashboard"] .system-status-card p {
  font-size: 13px;
  line-height: 1.35;
}

.empty-state {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 18px 14px;
  text-align: center;
}

.empty-state strong {
  color: var(--black);
  font-size: 18px;
}

.empty-state p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
}

.empty-state button {
  min-height: 36px;
  margin-top: 4px;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  color: var(--white);
  background: var(--black);
  font-weight: 900;
  cursor: pointer;
}

.transfer-empty-state {
  min-height: 150px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 0%, rgba(157, 109, 77, 0.08), transparent 18rem),
    rgba(247, 242, 237, 0.48);
}

.admin-table-card th,
.admin-table-card td {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(17, 18, 22, 0.08);
  text-align: left;
}

.admin-table-card td[colspan] {
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.admin-table-card th {
  color: var(--black);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-section {
  padding-bottom: 118px;
}

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

.faq-item {
  width: 100%;
  padding: 28px 32px;
  border: 1px solid rgba(17, 18, 22, 0.07);
  border-radius: 24px;
  color: var(--ink);
  text-align: left;
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.faq-item:hover {
  border-color: rgba(17, 18, 22, 0.12);
  box-shadow: 0 18px 54px rgba(17, 18, 22, 0.06);
  transform: translateY(-2px);
}

.faq-item span {
  display: block;
  font-size: 21px;
  font-weight: 800;
}

.faq-item p {
  max-height: 0;
  margin-top: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 240ms ease, opacity 220ms ease, margin-top 220ms ease;
}

.faq-item.is-open p {
  max-height: 180px;
  margin-top: 14px;
  opacity: 1;
}

.site-footer {
  padding: 0 0 58px;
}

.footer-statement {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  border: 1px solid rgba(17, 18, 22, 0.06);
  border-radius: 28px;
  padding: clamp(24px, 3.5vw, 38px);
  background:
    radial-gradient(circle at 92% 10%, rgba(37, 211, 224, 0.08), transparent 18rem),
    rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 62px rgba(17, 18, 22, 0.045);
}

.footer-statement p {
  margin: 0;
  color: var(--warm);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-statement h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.04;
}

.brand.dark {
  color: var(--black);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 5vw, 72px);
  padding: clamp(34px, 4.2vw, 58px);
  border: 1px solid rgba(17, 18, 22, 0.06);
  border-radius: 32px;
  background:
    radial-gradient(circle at 8% 0%, rgba(157, 109, 77, 0.12), transparent 25rem),
    radial-gradient(circle at 92% 20%, rgba(17, 18, 22, 0.05), transparent 20rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(247, 247, 248, 0.76));
  box-shadow: 0 20px 74px rgba(17, 18, 22, 0.065);
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 20px;
}

.footer-brand p {
  max-width: 420px;
}

.footer-brand .moa-brand img {
  width: clamp(176px, 15vw, 220px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
}

.footer-links div {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links h2 {
  margin: 0 0 6px;
  color: var(--black);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links button,
.footer-bottom a {
  color: var(--muted);
  border: 0;
  padding: 0;
  background: transparent;
  text-align: left;
  font: inherit;
  font-size: 15px;
  font-weight: 760;
  cursor: pointer;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-links a:hover,
.footer-links button:hover,
.footer-bottom a:hover {
  color: var(--black);
  transform: translateX(2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 4px 0;
}

.footer-bottom p {
  font-size: 14px;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

@media (max-width: 1100px) {
  .access-section {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .news-grid,
  .subpage-grid {
    grid-template-columns: 1fr;
  }

  .partners-section,
  .subpage-hero {
    grid-template-columns: 1fr;
  }

  body.route-moa-news .subpage-hero,
  body.route-moa-news .subpage-cta,
  .news-trust-grid,
  body.route-about-us .about-hero,
  body.route-about-us .about-cta,
  .about-story-section,
  body.route-help-center .subpage-hero,
  .help-hero,
  .help-knowledge-section,
  body.route-moa-swap .swap-hero,
  body.route-moa-swap .swap-cta,
  .swap-flow-section,
  .swap-flow-grid,
  body.route-moa-card .card-hero,
  body.route-moa-card .card-cta,
  .card-benefit-section,
  .card-benefit-grid {
    grid-template-columns: 1fr;
  }

  body.route-moa-news .subpage-hero {
    gap: 28px;
  }

  body.route-moa-news .subpage-cta {
    align-items: start;
    grid-template-columns: 1fr;
  }

  body.route-moa-swap .swap-hero {
    gap: 28px;
  }

  body.route-moa-swap .swap-cta {
    align-items: start;
  }

  body.route-moa-card .card-hero {
    gap: 28px;
  }

  body.route-moa-card .card-cta {
    align-items: start;
  }

  body.route-moa-news .subpage-media {
    width: 100%;
    justify-self: stretch;
  }

  .about-product-visual {
    min-height: 480px;
  }

  .swap-product-visual {
    min-height: 500px;
  }

  .card-product-visual {
    min-height: 500px;
  }

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

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

  .subpage-cta-visual {
    width: min(100%, 420px);
    justify-self: start;
  }

  .subpage-media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  body.route-moa-news .subpage-media {
    aspect-ratio: 16 / 9;
  }

  body.route-help-center .subpage-media {
    width: 100%;
    justify-self: stretch;
    aspect-ratio: 16 / 10;
  }

  .help-copy {
    min-height: auto;
  }

  .help-service-card {
    min-height: 0;
  }

  .help-service-card img {
    aspect-ratio: 16 / 8;
    height: auto;
  }

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

@media (max-width: 1080px) {
  .admin-shell {
    grid-template-columns: 228px minmax(0, 1fr);
  }

  .admin-sidebar {
    position: sticky;
    height: 100svh;
    grid-template-rows: auto auto 1fr auto;
    gap: 14px;
    padding: 16px 26px 16px 12px;
    border-right: 1px solid rgba(17, 18, 22, 0.08);
    border-bottom: 0;
  }

  .admin-brand {
    display: flex;
    min-height: 44px;
    gap: 10px;
    padding: 4px 12px 8px;
  }

  .admin-brand img {
    width: 134px;
  }

  .admin-user {
    padding: 14px 26px 14px 14px;
  }

  .admin-nav {
    grid-template-columns: 1fr;
    padding-top: 0;
    gap: 8px;
  }

  .admin-nav button {
    min-width: 0;
    min-height: 46px;
    padding: 0 12px;
  }

  .admin-logout {
    min-height: 46px;
  }

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

  .admin-card-wide {
    grid-column: 1 / -1;
  }

  [data-admin-page="receive"] .admin-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  [data-admin-page="receive"] .admin-card-wide {
    grid-column: auto;
  }

  [data-admin-page="cards"] .admin-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  [data-admin-page="cards"] .admin-card-wide {
    grid-column: auto;
  }

  .card-request-summary {
    grid-template-columns: 1fr;
  }

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

  [data-admin-page="dashboard"] .admin-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-areas: none;
  }

  [data-admin-page="dashboard"] .admin-card-wide {
    grid-area: auto;
    grid-column: 1 / -1;
  }

  [data-admin-page="dashboard"] .admin-grid > .stat-card:nth-of-type(2),
  [data-admin-page="dashboard"] .admin-grid > .stat-card:nth-of-type(3),
  .dashboard-pending-card {
    grid-area: auto;
  }

  .dashboard-split {
    grid-template-columns: 1fr;
  }

  .dashboard-pending-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .dashboard-pending-card em {
    grid-column: 2;
    grid-row: auto;
  }

  .transfer-layout {
    grid-template-columns: 1fr;
  }

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

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

  .admin-topbar {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-actions {
    justify-content: flex-start;
    max-width: none;
  }
}

@media (max-width: 900px) {
  .admin-sidebar {
    padding: 14px 24px 14px 10px;
  }

  .admin-shell {
    grid-template-columns: 222px minmax(0, 1fr);
  }

  .admin-brand {
    min-height: 42px;
    padding: 4px 10px 8px;
  }

  .admin-brand img {
    width: 122px;
  }

  .admin-brand strong,
  .admin-user strong {
    font-size: 16px;
  }

  .admin-brand span,
  .admin-user span {
    font-size: 12px;
  }

  .admin-user {
    align-items: center;
  }

  .admin-user > div:first-child {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }

  .admin-nav button,
  .admin-logout {
    min-height: 44px;
    border-radius: 14px;
    font-size: 14px;
  }

  .admin-nav button span {
    width: 30px;
    height: 30px;
  }

  .admin-nav button svg {
    width: 17px;
    height: 17px;
  }

  .site-header {
    top: 20px;
    left: 16px;
    right: 16px;
  }

  body.subpage-open .site-header {
    top: 18px;
    left: 14px;
    right: 14px;
  }

  body.subpage-open .site-header.is-scrolled .brand {
    padding: 5px 8px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
  }

  body.subpage-open .site-header.is-scrolled .moa-brand img {
    width: 154px;
  }

  body.subpage-open .site-header.is-scrolled .menu-button {
    width: 46px;
    height: 46px;
  }

  .moa-brand img {
    width: clamp(184px, 24vw, 230px);
  }

  .hero-photo {
    border-bottom-right-radius: 36px;
    border-bottom-left-radius: 36px;
  }

  .hero-photo img {
    width: min(72vw, 720px);
    object-position: center 48%;
  }

  .hero-content {
    bottom: 132px;
  }

  .access-card {
    grid-template-columns: 1fr;
  }

  .card-visual {
    justify-self: start;
    max-width: 340px;
  }
}

@media (max-width: 760px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }

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

  [data-admin-page="dashboard"] .admin-grid {
    grid-template-columns: 1fr;
    grid-template-areas: none;
  }

  [data-admin-page="dashboard"] .admin-card-wide,
  [data-admin-page="dashboard"] .admin-grid > .stat-card:nth-of-type(2),
  [data-admin-page="dashboard"] .admin-grid > .stat-card:nth-of-type(3),
  .dashboard-pending-card {
    grid-area: auto;
  }

  .balance-meta {
    grid-template-columns: 1fr;
  }

  .admin-mobile-bar {
    position: sticky;
    top: 0;
    z-index: 75;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 72px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(17, 18, 22, 0.08);
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(18px);
  }

  .admin-mobile-bar img {
    width: 138px;
    height: auto;
  }

  .admin-mobile-bar button {
    min-height: 42px;
    border: 0;
    border-radius: 999px;
    padding: 0 18px;
    color: var(--white);
    background: var(--black);
    font-weight: 900;
  }

  .admin-sidebar {
    position: fixed;
    top: 84px;
    left: 12px;
    z-index: 80;
    width: min(360px, calc(100vw - 24px));
    height: calc(100svh - 96px);
    grid-template-rows: none;
    padding: 14px 28px 14px 14px;
    border: 1px solid rgba(17, 18, 22, 0.08);
    border-radius: 24px;
    box-shadow: 0 26px 70px rgba(32, 24, 19, 0.16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px) scale(0.98);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .admin-sidebar .admin-brand > div {
    display: none;
  }

  .admin-shell.admin-menu-open .admin-sidebar {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .admin-nav {
    grid-template-columns: 1fr;
  }

  .scroll-progress {
    display: none;
  }

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

  .feature-grid {
    gap: 16px;
  }

  .product-grid,
  .news-grid,
  .subpage-grid {
    grid-template-columns: 1fr;
  }

  .partners-section,
  .subpage-hero {
    grid-template-columns: 1fr;
  }

  body.route-moa-news .subpage-hero,
  body.route-moa-news .subpage-cta,
  body.route-help-center .subpage-hero,
  .help-hero,
  .help-knowledge-section,
  body.route-moa-swap .swap-hero,
  body.route-moa-swap .swap-cta,
  .swap-flow-section,
  .swap-flow-grid,
  .swap-trust-strip,
  body.route-moa-card .card-hero,
  body.route-moa-card .card-cta,
  .card-benefit-section,
  .card-benefit-grid,
  .card-trust-strip {
    grid-template-columns: 1fr;
  }

  .help-hero {
    gap: 18px;
    padding: 92px 0 34px;
  }

  .help-copy h1 {
    font-size: clamp(40px, 11vw, 56px);
  }

  .help-copy > p {
    margin-bottom: 22px;
    font-size: 16px;
  }

  .help-search {
    grid-template-columns: auto minmax(0, 1fr);
    border-radius: 22px;
  }

  .help-search a {
    grid-column: 1 / -1;
    width: 100%;
  }

  .help-service-card {
    border-radius: 28px;
  }

  .help-service-card img {
    aspect-ratio: 16 / 10;
    height: auto;
  }

  .help-service-card div,
  .help-topic-grid article {
    padding: 22px;
  }

  .help-topic-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-bottom: 44px;
  }

  .help-topic-grid article {
    min-height: 0;
    border-radius: 24px;
  }

  .help-knowledge-section {
    gap: 22px;
    border-radius: 28px;
    padding: 24px;
  }

  .help-knowledge-copy h2,
  .help-support-strip h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .help-support-strip {
    align-items: stretch;
    flex-direction: column;
    border-radius: 28px;
    padding: 26px;
    margin-bottom: 56px;
  }

  .help-support-strip a {
    width: 100%;
  }

  body.route-moa-swap .swap-hero {
    padding: 88px 0 36px;
  }

  body.route-moa-card .card-hero {
    padding: 88px 0 36px;
    gap: 16px;
  }

  body.route-moa-swap .subpage-copy h1 {
    margin-bottom: 18px;
  }

  body.route-moa-card .subpage-copy h1 {
    margin-bottom: 18px;
  }

  body.route-moa-swap .subpage-copy > p:not(.small-label) {
    margin-bottom: 20px;
  }

  body.route-moa-card .subpage-copy > p:not(.small-label) {
    margin-bottom: 20px;
  }

  .swap-actions {
    gap: 8px;
  }

  .card-actions {
    gap: 8px;
  }

  .swap-actions .outline-button {
    min-height: 54px;
  }

  .card-actions .outline-button {
    min-height: 54px;
  }

  .swap-secondary-link {
    min-height: 34px;
    justify-content: center;
  }

  .card-secondary-link {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(17, 18, 22, 0.08);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 14px 38px rgba(17, 18, 22, 0.055);
    justify-content: center;
  }

  .swap-trust-strip {
    gap: 8px;
    margin-top: 16px;
  }

  .card-trust-strip {
    gap: 8px;
    margin-top: 16px;
  }

  .swap-trust-strip span {
    min-height: 54px;
  }

  .card-trust-strip span {
    min-height: 54px;
  }

  .swap-product-visual {
    min-height: 420px;
    border-radius: 28px;
  }

  .card-product-visual {
    min-height: 390px;
    border-radius: 28px;
  }

  .swap-panel {
    width: min(100%, 340px);
    padding: 20px;
    border-radius: 28px;
  }

  .card-phone {
    width: min(100%, 330px);
    padding: 20px;
    border-radius: 28px;
  }

  .swap-row strong {
    font-size: 26px;
  }

  .swap-floating-card {
    min-width: 128px;
  }

  .card-floating-chip {
    min-width: 128px;
  }

  .swap-floating-card-a {
    top: 10%;
    right: 5%;
  }

  .card-floating-chip-a {
    top: 10%;
    right: 5%;
  }

  .swap-floating-card-b {
    left: 5%;
    bottom: 8%;
  }

  .card-floating-chip-b {
    left: 5%;
    bottom: 8%;
  }

  .swap-flow-section {
    gap: 22px;
    border-radius: 28px;
    padding: 24px;
  }

  .card-benefit-section {
    gap: 22px;
    border-radius: 28px;
    padding: 24px;
  }

  .swap-card-grid {
    padding-bottom: 52px;
  }

  .card-card-grid {
    padding-bottom: 52px;
  }

  .swap-cta-visual {
    width: 100%;
    min-height: 270px;
  }

  .card-cta-visual {
    width: 100%;
    min-height: 270px;
  }

  .swap-cta-card {
    width: min(100%, 300px);
    min-height: 170px;
  }

  .card-cta-card {
    width: min(100%, 300px);
    min-height: 180px;
  }

  .swap-cta-chip-a {
    left: 0;
    top: 8%;
  }

  .card-cta-chip-a {
    left: 0;
    top: 8%;
  }

  .swap-cta-chip-b {
    right: 0;
    bottom: 8%;
  }

  .card-cta-chip-b {
    right: 0;
    bottom: 8%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (min-width: 761px) and (max-height: 520px) {
  .admin-sidebar {
    gap: 8px;
    padding: 10px;
  }

  .admin-brand {
    gap: 6px;
    min-height: 38px;
    padding: 4px 8px 6px;
  }

  .admin-brand img {
    width: 118px;
  }

  .admin-brand strong,
  .admin-user strong {
    font-size: 15px;
  }

  .admin-brand span,
  .admin-user span {
    margin-top: 2px;
    font-size: 11px;
  }

  .admin-user {
    padding: 8px;
  }

  .admin-user > div:first-child {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 13px;
  }

  .admin-nav {
    gap: 6px;
  }

  .admin-nav button,
  .admin-logout {
    min-height: 42px;
    border-radius: 14px;
  }

  .admin-nav button span {
    width: 28px;
    height: 28px;
  }

  .admin-nav button svg {
    width: 16px;
    height: 16px;
  }

  .transfer-card-head {
    flex-direction: column;
  }

  .transfer-guide {
    align-items: flex-start;
    grid-template-columns: auto minmax(0, 1fr);
  }

  .transfer-guide-actions {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: flex-start;
  }

  .transfer-compose-card .admin-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  #vision,
  #service,
  #access,
  #faq {
    scroll-margin-top: 138px;
  }

  .menu-panel {
    top: 76px;
    right: 16px;
    left: 16px;
    width: auto;
    max-height: calc(100svh - 96px);
    padding: 12px;
    border-radius: 22px;
    box-shadow: 0 24px 64px rgba(17, 18, 22, 0.24);
  }

  .menu-panel a,
  .menu-auth {
    min-height: 48px;
    font-size: 15px;
  }

  .menu-auth.primary {
    min-height: 54px;
  }

  .brand {
    font-size: 18px;
  }

  .moa-brand img {
    width: 172px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .admin-sidebar {
    top: 82px;
    left: 10px;
    width: calc(100vw - 20px);
    height: calc(100svh - 94px);
    padding: 12px;
    border-radius: 24px;
  }

  .admin-brand {
    display: flex;
    min-height: 42px;
    gap: 8px;
  }

  .admin-brand img {
    width: 138px;
  }

  .admin-brand,
  .admin-user {
    padding: 8px 12px;
  }

  .admin-brand strong,
  .admin-user strong {
    font-size: 17px;
  }

  .admin-nav {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .admin-nav button,
  .admin-logout {
    min-height: 54px;
  }

  .admin-main {
    padding: 18px 14px 28px;
  }

  .admin-actions,
  .admin-actions button,
  .admin-table-card button {
    width: 100%;
  }

  .admin-actions button[aria-label] {
    flex: 0 0 44px;
    width: 44px;
    min-width: 44px;
  }

  .admin-status {
    flex: 1 1 100%;
    width: 100%;
    justify-content: center;
  }

  .admin-topbar {
    border-radius: 22px;
    padding: 14px;
  }

  .admin-topbar h1 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .admin-topbar [data-admin-subtitle] {
    font-size: 13px;
  }

  .admin-card,
  .admin-table-card {
    border-radius: 20px;
    padding: 18px;
  }

  .about-product-visual {
    min-height: 390px;
  }

  .about-phone {
    width: min(220px, 70vw);
    min-height: 340px;
    padding: 22px 18px;
  }

  .about-phone b {
    font-size: 34px;
  }

  .about-card-mock {
    right: 5%;
    bottom: 7%;
    width: 164px;
    min-height: 102px;
    padding: 16px;
  }

  .about-dashboard-chip,
  .about-float-chip {
    display: none;
  }

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

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

  .news-metric-chip {
    display: none;
  }

  .news-cta-visual .cta-device {
    width: min(230px, 70vw);
    min-height: 318px;
  }

  .news-cta-visual .cta-card-mini {
    right: 0;
    width: 170px;
    min-height: 104px;
  }

  .about-story-section {
    padding: 24px;
    border-radius: 24px;
  }

  .about-cta-visual .cta-card-mini {
    right: 0;
  }

  [data-admin-page="dashboard"] .admin-table-card {
    max-height: 300px;
  }

  [data-admin-page="dashboard"] .admin-table-card .admin-table-wrap {
    max-height: 190px;
  }

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

  .wallet-balance-card {
    min-height: 0;
  }

  .wallet-balance-card::after {
    display: none;
  }

  .wallet-meta {
    grid-template-columns: 1fr;
  }

  .wallet-asset-item {
    grid-template-columns: 1fr;
  }

  .wallet-asset-item b,
  .wallet-asset-item em {
    text-align: left;
  }

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

  .transfer-compose-card,
  .transfer-limit-card,
  .transfer-review-card,
  .transfer-history-card {
    padding: 18px;
  }

  .transfer-card-head h2 {
    font-size: clamp(30px, 9vw, 36px);
  }

  .transfer-card-head {
    display: block;
  }

  .transfer-status-pill {
    width: fit-content;
    margin-top: 12px;
  }

  .transfer-compose-card .admin-form button {
    max-width: none;
    width: 100%;
  }

  .card-request-card .admin-form {
    grid-template-columns: 1fr;
  }

  .card-request-card .admin-form label:nth-child(3),
  .card-request-card .admin-form button {
    grid-column: auto;
  }

  .transfer-guide-actions button {
    flex: 1 1 150px;
  }

  .transfer-guide {
    grid-template-columns: 1fr;
  }

  .transfer-guide-icon {
    width: 34px;
    height: 34px;
  }

  .transfer-guide-actions {
    grid-column: auto;
    display: grid;
    grid-template-columns: 1fr;
  }

  .wallet-layout,
  .wallet-grid {
    gap: 12px;
    margin-bottom: 12px;
  }

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

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

  .dashboard-activity-detail {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .dashboard-activity-metrics {
    grid-template-columns: 1fr;
  }

  .wallet-actions button,
  .wallet-receive-card button,
  .wallet-empty button {
    width: 100%;
  }

  .dashboard-balance-card {
    min-height: 0;
  }

  .dashboard-balance-card .admin-card-heading h2 {
    font-size: clamp(34px, 11vw, 44px);
  }

  .portfolio-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  [data-admin-page="dashboard"] .balance-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  [data-admin-page="dashboard"] .balance-meta div {
    padding: 9px;
  }

  [data-admin-page="dashboard"] .dashboard-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  [data-admin-page="dashboard"] .dashboard-actions button {
    width: auto;
    min-height: 38px;
    padding: 0 10px;
    font-size: 12px;
  }

  [data-admin-page="dashboard"] .portfolio-list div,
  [data-admin-page="dashboard"] .dashboard-mini-list div {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }

  .empty-state {
    padding: 30px 10px;
  }

  .auth-modal {
    align-items: end;
    padding: 14px;
  }

  .auth-dialog {
    width: 100%;
    max-height: calc(100svh - 28px);
    padding: 20px;
    border-radius: 28px 28px 24px 24px;
  }

  .auth-close {
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
  }

  .auth-brandline {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin: 2px 48px 18px 0;
  }

  .auth-brandline img {
    width: 150px;
  }

  .auth-brandline span {
    min-height: 28px;
    font-size: 10px;
  }

  .auth-tabs {
    margin: 0 0 18px;
    padding: 5px;
  }

  .auth-field-table {
    border-radius: 22px;
    margin-top: 14px;
  }

  .auth-field-row {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 11px 14px;
  }

  .auth-field-row input {
    min-height: 50px;
  }

  .auth-password-shell input {
    padding-right: 56px;
  }

  .auth-form .password-toggle {
    right: 7px;
    width: 38px;
    min-height: 38px;
    height: 38px;
    border-radius: 13px;
  }

  .password-rules {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .password-rules span {
    min-height: 28px;
    padding: 6px 8px;
    font-size: 10px;
  }

  .auth-register-note {
    grid-template-columns: 1fr;
    gap: 7px;
    margin-top: 14px;
    padding: 12px 14px;
  }

  .auth-recovery-note {
    grid-template-columns: 1fr;
    gap: 7px;
    margin-top: 14px;
    padding: 12px 14px;
  }

  .auth-register-note p,
  .auth-recovery-note p {
    display: none;
  }

  .auth-login-tools {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .auth-recovery-actions {
    grid-template-columns: 1fr;
  }

  .auth-form button {
    min-height: 52px;
    margin-top: 14px;
  }

  .hero-photo {
    min-height: 100svh;
  }

  .hero-photo img {
    left: 0;
    width: 100%;
    object-position: 58% center;
  }

  .hero-content {
    bottom: 124px;
    width: calc(100% - 28px);
  }

  .hero-content h1 {
    font-size: clamp(48px, 14vw, 64px);
  }

  .access-section {
    padding-top: 22px;
  }

  .access-card h2,
  .waitlist-form h2 {
    max-width: none;
  }

  .card-visual {
    width: min(100%, 320px);
    justify-self: start;
  }

  .hero-content p {
    margin-bottom: 30px;
    font-size: 16px;
  }

  .outline-button {
    width: 100%;
    min-height: 58px;
  }

  .scroll-cue {
    width: auto;
    justify-content: center;
    font-size: 14px;
  }

  .intro-section {
    padding: 88px 0 70px;
  }

  .section-title {
    margin-bottom: 58px;
  }

  .section-title h2,
  .service-overlay h2,
.access-card h2,
.waitlist-form h2,
.account-panel h2,
.auth-form h2 {
  font-size: clamp(34px, 10.4vw, 44px);
}

.auth-form input,
.auth-form button {
  border-radius: 17px;
}

  .feature-grid p,
.access-card p,
.waitlist-form p,
.account-panel p,
.auth-form p,
.faq-item p,
.site-footer p {
  font-size: 16px;
}

  .service-photo,
  .service-overlay {
    min-height: 430px;
  }

  .service-photo {
    margin-bottom: 74px;
  }

  .access-card,
  .waitlist-form {
    border-radius: 28px;
  }

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

.auth-hero-button {
  margin: 12px 0 0;
}

.account-panel,
.wasabi-panel {
  grid-template-columns: 1fr;
}

.account-actions button,
.wasabi-panel button {
  width: 100%;
}

  .footer-main {
    gap: 36px;
    padding: 28px;
    border-radius: 30px;
  }

  .product-card,
  .news-grid a,
  .subpage-grid article {
    min-height: 0;
    border-radius: 24px;
  }

  .partners-section,
  .subpage-cta {
    border-radius: 28px;
    padding: 28px;
  }

  .subpage-hero {
    min-height: auto;
    padding: 104px 0 50px;
  }

  body.route-moa-news .subpage-hero {
    padding: 102px 0 42px;
  }

  body.route-help-center .subpage-hero {
    min-height: auto;
    padding: 102px 0 42px;
  }

  body.route-about-us .about-hero {
    min-height: auto;
    padding: 102px 0 42px;
  }

  body.route-moa-news .subpage-copy > p:not(.small-label) {
    margin-bottom: 26px;
  }

  .subpage-copy h1 {
    font-size: clamp(40px, 11.6vw, 58px);
  }

  body.route-moa-news .subpage-copy h1 {
    font-size: clamp(40px, 11vw, 56px);
  }

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

  body.route-help-center .subpage-copy h1 {
    font-size: clamp(40px, 11vw, 56px);
  }

  body.route-about-us .subpage-copy h1 {
    font-size: clamp(40px, 11vw, 56px);
  }

  .subpage-media {
    min-height: 0;
    aspect-ratio: 16 / 10;
    border-radius: 28px;
  }

  .about-product-visual {
    min-height: 420px;
    border-radius: 28px;
  }

  .about-phone {
    width: min(230px, 70vw);
    min-height: 360px;
  }

  .about-card-mock {
    width: 178px;
    min-height: 112px;
  }

  .about-dashboard-chip {
    left: 5%;
    top: 8%;
  }

  body.route-moa-news .subpage-grid article {
    min-height: 0;
  }

  body.route-about-us .about-pillars article,
  .about-trust-grid article {
    min-height: 0;
  }

  body.route-help-center .subpage-grid article {
    min-height: 0;
  }

  body.route-moa-news .subpage-cta {
    min-height: 0;
    padding: 28px;
  }

  .news-cta-visual .cta-device {
    width: min(240px, 62vw);
    min-height: 330px;
  }

  .news-metric-chip-b {
    right: 0;
  }

  .news-metric-chip-c {
    bottom: 4%;
  }

  body.route-about-us .about-cta {
    min-height: 0;
  }

  .subpage-cta-visual {
    min-height: 178px;
  }

  .cta-device {
    width: min(158px, 52vw);
    min-height: 198px;
    border-radius: 24px;
    padding: 20px 16px;
  }

  .cta-device b {
    font-size: 24px;
  }

  .cta-card-mini {
    right: 0;
    width: 132px;
    min-height: 82px;
    border-radius: 18px;
    padding: 15px;
  }

  .news-cta-visual .cta-device {
    width: min(270px, 72vw);
    min-height: 340px;
    border-radius: 32px;
  }

  .news-cta-visual .cta-card-mini {
    width: 164px;
    min-height: 96px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

/* Final guard: keep sidebar controls away from the divider in every breakpoint. */
@media (min-width: 761px) {
  .admin-shell {
    grid-template-columns: 244px minmax(0, 1fr);
  }

  .admin-sidebar {
    padding-right: 36px;
  }
}

.admin-sidebar .admin-brand,
.admin-sidebar .admin-user,
.admin-sidebar .admin-nav button,
.admin-sidebar .admin-logout {
  width: calc(100% - 8px);
  max-width: calc(100% - 8px);
  justify-self: start;
  box-sizing: border-box;
}

.admin-sidebar .admin-nav p {
  margin-right: 8px;
}

@media (max-width: 760px) {
  .admin-sidebar {
    padding: 14px 36px 14px 14px;
  }

  .admin-sidebar .admin-brand,
  .admin-sidebar .admin-user,
  .admin-sidebar .admin-nav button,
.admin-sidebar .admin-logout {
  width: calc(100% - 8px);
  max-width: calc(100% - 8px);
}

/* Final guard: keep the deposit page rails packed tightly. */
[data-admin-page="transfer"] .transfer-layout {
  align-items: start;
}

[data-admin-page="transfer"] .transfer-main-column,
[data-admin-page="transfer"] .transfer-side-column {
  display: flex;
  flex-direction: column;
  align-self: start;
  justify-content: flex-start;
  gap: 14px;
  min-width: 0;
}

[data-admin-page="transfer"] .transfer-limit-card,
[data-admin-page="transfer"] .transfer-review-card,
[data-admin-page="transfer"] .transfer-history-card {
  align-self: stretch;
  margin: 0;
}
}

/* Platform admin mode is for oversight only; customer action forms stay in the customer portal. */
[data-portal-mode="platform"] [data-admin-page="cards"] > .admin-grid,
[data-portal-mode="platform"] .wallet-actions,
[data-portal-mode="platform"] .wallet-receive-card button {
  display: none;
}

[data-portal-mode="platform"] [data-admin-page="cards"] .admin-table-card,
[data-portal-mode="platform"] [data-admin-page="wallet"] .admin-table-card {
  margin-top: 0;
}

[data-portal-mode="platform"] .admin-sidebar .admin-brand span {
  white-space: normal;
}

