:root {
  --ink: #070604;
  --muted: #a8a4b3;
  --surface: #ffffff;
  --soft: #090b12;
  --soft-2: #10131f;
  --lime: #e0bd4f;
  --green: #61e7b7;
  --teal: #f4d982;
  --line: rgba(255, 255, 255, 0.1);
  --shadow: 0 28px 86px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: #020201;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 14% 12%, rgba(224, 189, 79, 0.16), transparent 28%),
    radial-gradient(circle at 86% 8%, rgba(224, 189, 79, 0.12), transparent 24%),
    linear-gradient(180deg, #05060a 0%, #090b12 44%, #020201 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img,
svg,
video,
canvas {
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(4, 5, 9, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.trust-row,
.hero-actions,
.panel-head,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #ffffff;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  box-shadow: inset 0 0 0 2px rgba(7, 17, 12, 0.12);
}

.brand-mark.image-mark {
  overflow: hidden;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-logo,
.auth-logo {
  display: block;
  width: min(216px, 58vw);
  aspect-ratio: 1;
  margin-bottom: 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(224, 189, 79, 0.26));
  box-shadow: none;
}

.auth-logo {
  width: min(178px, 48vw);
}

.nav-links {
  gap: 24px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a[aria-current="page"] {
  color: #ffffff;
}

.nav-cta,
.button,
.ghost-button {
  border: 0;
  cursor: pointer;
  font-weight: 900;
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff0a6, #e0bd4f 58%, #9b6a18);
  color: #070604;
  box-shadow: 0 12px 30px rgba(224, 189, 79, 0.2);
}

.home-main {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 8%, rgba(224, 189, 79, 0.18), transparent 24%),
    radial-gradient(circle at 82% 28%, rgba(20, 110, 66, 0.18), transparent 28%),
    radial-gradient(circle at 32% 72%, rgba(224, 189, 79, 0.08), transparent 30%),
    linear-gradient(180deg, #050604 0%, #07120d 46%, #020201 100%);
}

.home-main::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(224, 189, 79, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224, 189, 79, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18));
}

.home-main > * {
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.76fr);
  min-height: calc(100vh - 75px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(56px, 7vw, 104px) clamp(18px, 6vw, 92px) 70px;
  color: white;
  background: transparent;
  overflow: hidden;
}

.hero-slogan {
  position: absolute;
  top: 0;
  left: min(42vw, 740px);
  z-index: 2;
  width: min(54vw, 820px);
  margin: 0;
  color: #ffffff;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.58);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), transparent 82%);
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--lime);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(52px, 8vw, 112px);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(100deg, #fff6c9, #e0bd4f 48%, #62d89f);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin: 0 0 24px;
  padding: 0 16px;
  border: 1px solid rgba(224, 189, 79, 0.34);
  border-radius: 999px;
  color: #f4d982;
  background: rgba(89, 64, 16, 0.32);
  box-shadow: inset 0 0 20px rgba(224, 189, 79, 0.08);
  font-size: 13px;
  font-weight: 900;
}

.hero-text {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
}

.button.primary {
  background: linear-gradient(135deg, #fff0a6, #e0bd4f 58%, #a46f18);
  color: #0b0a05;
  box-shadow: 0 16px 42px rgba(224, 189, 79, 0.28);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.07);
  color: white;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.button.full {
  width: 100%;
}

.trust-row {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span {
  padding: 9px 13px;
  border: 1px solid rgba(97, 231, 183, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.hero-market-panel {
  width: min(100%, 520px);
  justify-self: end;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(7, 8, 13, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 28px 90px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(22px);
}

.hero-market-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.hero-market-head h2 {
  margin: 0 0 6px;
  font-size: 22px;
}

.hero-market-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 700;
}

.hero-market-head > span {
  padding: 8px 13px;
  border-radius: 999px;
  color: #61e7b7;
  background: rgba(97, 231, 183, 0.13);
  font-size: 12px;
  font-weight: 900;
}

.hero-market-list {
  display: grid;
  gap: 16px;
}

.hero-market-list article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  grid-template-areas:
    "icon name price"
    "icon name change";
  align-items: center;
  column-gap: 14px;
  min-height: 62px;
}

.hero-market-list i {
  grid-area: icon;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: #090b12;
  background: linear-gradient(135deg, #f1d46d, #61e7b7);
  font-style: normal;
  font-weight: 900;
}

.hero-market-list span {
  grid-area: name;
  min-width: 0;
}

.hero-market-list strong,
.hero-market-list small {
  display: block;
}

.hero-market-list strong {
  font-size: 15px;
}

.hero-market-list small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.52);
  font-weight: 700;
}

.hero-market-list b {
  grid-area: price;
  font-size: 15px;
  font-weight: 900;
  text-align: right;
}

.hero-market-list em {
  grid-area: change;
  margin-top: 4px;
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
  text-align: right;
}

.hero-market-list em.up {
  color: #61e7b7;
}

.hero-market-list em.down {
  color: #ff7f8f;
}

.hero-market-link {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  padding: 16px 18px;
  border-radius: 16px;
  color: #f4d982;
  background: rgba(224, 189, 79, 0.12);
  font-weight: 900;
}

.card-benefits {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
  padding: clamp(54px, 7vw, 96px) clamp(18px, 6vw, 92px);
  background: rgba(2, 2, 1, 0.24);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.card-benefits-copy h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(36px, 6vw, 82px);
  line-height: 0.94;
}

.card-benefits-copy > p {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.5;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.benefit-grid article {
  min-height: 168px;
  padding: 20px;
  border: 1px solid rgba(224, 189, 79, 0.15);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
}

.benefit-grid span {
  color: #61e7b7;
  font-weight: 900;
}

.benefit-grid strong {
  display: block;
  margin: 16px 0 8px;
  font-size: 18px;
  line-height: 1.1;
}

.benefit-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.45;
}

.card-benefits-visual {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(224, 189, 79, 0.2);
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(224, 189, 79, 0.1), rgba(4, 28, 18, 0.76)),
    #050604;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.35);
}

.card-benefits-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(224, 189, 79, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224, 189, 79, 0.08) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.42;
}

.card-benefits-visual img {
  position: relative;
  z-index: 1;
  width: min(92%, 520px);
  border-radius: 24px;
  object-fit: contain;
  filter: drop-shadow(0 28px 46px rgba(0, 0, 0, 0.38));
}

.card-benefits-visual span {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 22px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #080704;
  background: #e0bd4f;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.phone-stage {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
}

.phone {
  width: min(320px, 78vw);
  height: 610px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 42px;
  background: linear-gradient(180deg, #0b0804, #171008);
  box-shadow: var(--shadow);
  transform: rotate(4deg);
}

.phone-top {
  width: 84px;
  height: 22px;
  margin: 0 auto 10px;
  border-radius: 0 0 18px 18px;
  background: #050907;
}

.phone-screen {
  height: calc(100% - 32px);
  padding: 20px;
  border-radius: 30px;
  background: linear-gradient(180deg, #ffeda7, #fff7dc 36%, #ffffff);
  color: var(--ink);
}

.app-head {
  display: flex;
  justify-content: space-between;
  font-weight: 900;
}

.app-head span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.app-head-logo {
  width: 58px;
  height: 58px;
  padding: 3px;
  border-radius: 9px;
  background: #030201;
  object-fit: contain;
}

.app-head strong {
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 12px;
}

.asset-main {
  margin-top: 62px;
}

.asset-main span,
.orbital-card span,
.quote-box span,
.panel-head span,
.metric span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.asset-main strong {
  display: block;
  margin-top: 8px;
  font-size: 38px;
  line-height: 1;
}

.mini-chart {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  height: 118px;
  gap: 9px;
  margin: 34px 0;
}

.mini-chart span {
  border-radius: 999px 999px 6px 6px;
  background: var(--ink);
}

.mini-chart span:nth-child(1) { height: 42%; }
.mini-chart span:nth-child(2) { height: 70%; }
.mini-chart span:nth-child(3) { height: 56%; }
.mini-chart span:nth-child(4) { height: 86%; }
.mini-chart span:nth-child(5) { height: 64%; }

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

.asset-list div,
.quote-box,
.orders-row,
.asset-row {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
}

.asset-list div {
  display: flex;
  justify-content: space-between;
  padding: 14px;
  border-radius: 18px;
}

.orbital-card {
  position: absolute;
  width: 170px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.orbital-card strong {
  display: block;
  margin: 8px 0 4px;
  font-size: 24px;
}

.orbital-card small {
  color: var(--muted);
  font-weight: 700;
}

.balance-card {
  top: 60px;
  left: 0;
}

.order-card {
  right: 4px;
  bottom: 86px;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(224, 189, 79, 0.08);
  border-bottom: 1px solid var(--line);
}

.feature-strip article {
  min-height: 250px;
  padding: clamp(26px, 4vw, 48px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(6, 12, 9, 0.72);
}

.feature-strip span {
  color: var(--green);
  font-weight: 900;
}

.feature-strip h2 {
  max-width: 330px;
  margin: 22px 0 14px;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
}

.feature-strip p,
.fine-print,
.timeline p,
.orders-empty {
  color: var(--muted);
  line-height: 1.5;
}

.market-strip {
  padding: clamp(26px, 4vw, 46px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 8% 0%, rgba(97, 231, 183, 0.12), transparent 30%),
    #060810;
  border-bottom: 1px solid var(--line);
}

.price-ticker {
  min-height: 58px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #020201;
  border-top: 1px solid rgba(224, 189, 79, 0.18);
  border-bottom: 1px solid rgba(224, 189, 79, 0.18);
}

.price-ticker-track {
  display: flex;
  align-items: center;
  min-width: max-content;
  animation: tickerSlide 44s linear infinite;
}

.price-ticker-track > span:not(.price-ticker-item) {
  padding: 0 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.price-ticker-item {
  min-width: 170px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 16px 22px;
  border-right: 1px solid rgba(224, 189, 79, 0.16);
  white-space: nowrap;
}

.price-ticker-item strong {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.price-ticker-item b {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.price-ticker-item em {
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
}

.price-ticker-item em.up {
  color: #75d99d;
}

.price-ticker-item em.down {
  color: #ff8a8a;
}

@keyframes tickerSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.333%);
  }
}

.market-strip-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.market-strip-head span {
  color: var(--gold);
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.market-card {
  min-height: 126px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.market-card span,
.market-card small,
.market-card em {
  display: block;
}

.market-card span {
  color: var(--green);
  font-weight: 900;
}

.market-card strong {
  display: block;
  margin: 12px 0 6px;
  font-size: clamp(18px, 2vw, 24px);
}

.market-card small {
  color: var(--muted);
}

.market-card em {
  margin-top: 10px;
  font-style: normal;
  font-weight: 900;
}

.market-card em.up {
  color: #75d99d;
}

.market-card em.down {
  color: #ff8a8a;
}

.workspace,
.dashboard,
.admin {
  padding: clamp(48px, 7vw, 92px) clamp(18px, 5vw, 72px);
}

.content-band {
  padding: clamp(48px, 7vw, 92px) clamp(18px, 5vw, 72px);
  background: rgba(2, 2, 1, 0.18);
  border-top: 1px solid rgba(224, 189, 79, 0.08);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.95;
}

.purchase-grid,
.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 18px;
}

.tool-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(58, 38, 4, 0.08);
}

.buy-panel,
.bank-panel,
.wallet-panel,
.activity-panel,
.orders-panel {
  padding: clamp(20px, 3vw, 30px);
}

.buy-panel {
  display: grid;
  gap: 18px;
}

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

input {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fbfcf7;
  outline: none;
}

input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(12, 163, 109, 0.12);
}

.method-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.method-option {
  position: relative;
  display: block;
}

.method-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.method-option span {
  display: grid;
  min-height: 52px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fbfcf7;
}

.method-option input:checked + span {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.quote-box {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 8px;
}

.quote-box div,
.panel-head,
.asset-row,
.orders-row,
.metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.quote-box strong {
  font-size: 20px;
}

.bank-panel h2,
.bank-panel h3 {
  margin: 0 0 22px;
  font-size: 32px;
  line-height: 1;
}

dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

dl div {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

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

dd {
  margin: 6px 0 0;
  font-size: 18px;
  font-weight: 900;
  word-break: break-word;
}

.fine-print {
  margin: 24px 0 0;
  font-size: 13px;
}

.panel-head {
  margin-bottom: 18px;
}

.panel-head strong {
  font-size: clamp(32px, 4vw, 54px);
}

.panel-head.compact {
  align-items: flex-start;
}

.ghost-button {
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--soft);
}

.asset-table,
.timeline,
.orders-table {
  display: grid;
  gap: 10px;
}

.asset-row,
.orders-row {
  min-height: 74px;
  padding: 14px;
  border-radius: 8px;
}

.asset-token {
  display: flex;
  align-items: center;
  gap: 12px;
}

.coin {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  font-weight: 900;
}

.asset-token strong,
.order-main strong {
  display: block;
}

.asset-token span,
.order-main span,
.order-meta {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.asset-value {
  text-align: right;
}

.asset-value strong {
  display: block;
}

.timeline-item {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.timeline-item strong {
  display: block;
  margin-bottom: 5px;
}

.admin {
  background: var(--ink);
  color: white;
}

.admin .section-heading .eyebrow {
  color: var(--lime);
}

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

.metric {
  min-height: 116px;
  padding: 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
}

.metric span {
  color: rgba(255, 255, 255, 0.62);
}

.metric strong {
  font-size: clamp(24px, 3vw, 38px);
}

.admin .tool-panel {
  color: var(--ink);
}

.orders-row {
  align-items: flex-start;
}

.status-select {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 10px;
  background: white;
  font-weight: 800;
}

.site-footer {
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: #020201;
  border-top: 1px solid var(--line);
}

.site-footer > div {
  display: grid;
  gap: 6px;
}

.site-footer strong {
  color: #ffffff;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  padding: 10px 13px;
  border: 1px solid rgba(224, 189, 79, 0.18);
  border-radius: 999px;
  color: #f4d982;
  background: rgba(224, 189, 79, 0.07);
  font-size: 13px;
  font-weight: 800;
}

.footer-links a:hover {
  border-color: rgba(224, 189, 79, 0.42);
  background: rgba(224, 189, 79, 0.13);
}

.legal-page {
  min-height: 100vh;
  color: #ffffff;
  background:
    radial-gradient(circle at 16% 8%, rgba(224, 189, 79, 0.18), transparent 24%),
    radial-gradient(circle at 82% 28%, rgba(20, 110, 66, 0.16), transparent 28%),
    linear-gradient(180deg, #050604 0%, #07120d 46%, #020201 100%);
}

.legal-main {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(42px, 7vw, 84px) 0;
}

.legal-card {
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(224, 189, 79, 0.18);
  border-radius: 28px;
  background: rgba(8, 12, 9, 0.82);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.legal-card h1 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 0.98;
}

.legal-card pre {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.65;
  white-space: pre-wrap;
}

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

.route-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.route-card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(224, 189, 79, 0.065), rgba(255, 255, 255, 0.026)),
    rgba(8, 15, 11, 0.82);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.16);
}

.route-card span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.route-card strong {
  display: block;
  margin: 18px 0 10px;
  font-size: 24px;
  line-height: 1;
}

.route-card p,
.auth-copy p,
.form-note {
  color: var(--muted);
  line-height: 1.5;
}

.auth-page {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 75px);
  padding: clamp(42px, 7vw, 92px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 86% 16%, rgba(212, 175, 55, 0.2), transparent 30%),
    linear-gradient(110deg, #f8f9ef 0%, #f5f7ed 55%, #fff5dc 100%);
}

.auth-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.9;
  letter-spacing: 0;
}

.auth-copy p {
  max-width: 560px;
  font-size: 18px;
}

.auth-card {
  width: min(100%, 420px);
  justify-self: center;
  padding: 24px;
  border-color: rgba(7, 17, 12, 0.14);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 80px rgba(7, 17, 12, 0.12);
}

.tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.tab {
  min-height: 48px;
  border: 1px solid rgba(7, 17, 12, 0.14);
  border-radius: 999px;
  background: #fffefa;
  color: #59625c;
  cursor: pointer;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.tab.active {
  border-color: #06100b;
  background: #06100b;
  color: white;
  box-shadow: 0 8px 22px rgba(7, 17, 12, 0.16), inset 0 -1px 0 rgba(212, 175, 55, 0.5);
}

.stack-form {
  display: grid;
  gap: 16px;
}

.auth-card label {
  color: #59625c;
}

.auth-card input {
  border-color: rgba(7, 17, 12, 0.16);
  background: #fffef8;
  color: #07110c;
  font-weight: 800;
}

.auth-card input:focus {
  border-color: #d4af37;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.18);
}

.auth-card .button.primary {
  min-height: 52px;
  background: linear-gradient(135deg, #fff0a8 0%, #d4af37 45%, #9f6a16 100%);
  color: #120d03;
  box-shadow: 0 14px 26px rgba(159, 106, 22, 0.22);
}

.auth-card .button.primary:hover {
  filter: brightness(1.03);
}

.form-note {
  min-height: 22px;
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.app-shell {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  min-height: calc(100vh - 75px);
}

.sidebar {
  position: sticky;
  top: 75px;
  align-self: start;
  display: grid;
  gap: 8px;
  min-height: calc(100vh - 75px);
  padding: 28px 18px;
  border-right: 1px solid var(--line);
  background: #f1f7ef;
}

.sidebar strong {
  margin: 0 0 12px;
  font-size: 18px;
}

.sidebar a {
  padding: 13px 14px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 900;
}

.sidebar a.active,
.sidebar a:hover {
  background: white;
  color: var(--ink);
}

.sidebar.dark {
  border-right-color: rgba(255, 255, 255, 0.12);
  background: #07110c;
  color: white;
}

.sidebar.dark a {
  color: rgba(255, 255, 255, 0.68);
}

.sidebar.dark a.active,
.sidebar.dark a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.app-content {
  padding: clamp(28px, 5vw, 56px);
}

.compact-heading {
  margin-bottom: 22px;
}

.compact-heading h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.95;
}

.admin-shell {
  background: var(--ink);
}

.admin-shell .app-content,
.admin-shell .compact-heading h1 {
  color: white;
}

.admin-shell .tool-panel {
  color: var(--ink);
}

.admin-shell .eyebrow {
  color: var(--lime);
}

.admin-shell .metric {
  color: white;
}

.order-main {
  display: grid;
  gap: 4px;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero,
  .card-benefits,
  .purchase-grid,
  .dashboard-grid,
  .auth-page,
  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: auto;
  }

  .phone-stage {
    min-height: 520px;
  }

  .feature-strip,
  .benefit-grid,
  .admin-grid,
  .market-grid,
  .route-grid,
  .route-grid.three {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  body {
    background: #020201;
  }

  .site-header {
    width: 100%;
    gap: 12px;
    padding: 10px 12px;
  }

  .brand {
    gap: 6px;
    font-size: 10px;
  }

  .brand-mark {
    width: 22px;
    height: 22px;
  }

  .brand span:last-child {
    max-width: 76px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-cta {
    min-height: 30px;
    padding: 0 12px;
    font-size: 11px;
  }

  .home-main,
  .home-main > *,
  .site-header,
  .hero,
  .card-benefits,
  .feature-strip,
  .content-band,
  .site-footer,
  .hero-copy,
  .card-benefits-copy,
  .hero-market-panel,
  .card-benefits-visual {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-copy,
  .card-benefits-copy,
  .hero-market-panel,
  .card-benefits-visual {
    max-width: min(100%, 290px);
  }

  .hero {
    width: 100vw;
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: 28px 16px 34px;
    overflow: hidden;
  }

  .hero-logo {
    width: 250px;
    margin-bottom: 200px;
  }

  .hero-slogan {
    position: static;
    width: 100%;
    max-width: 290px;
    margin: 0 0 16px;
    font-size: 25px;
    line-height: 1.04;
    white-space: normal;
    text-shadow: none;
  }

  .hero-badge {
    min-height: 30px;
    margin-bottom: 14px;
    padding: 0 12px;
    font-size: 11px;
  }

  .hero h1 {
    max-width: 290px;
    font-size: 30px;
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .hero-text {
    max-width: 290px;
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.45;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 46px;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .trust-row span {
    width: 100%;
    font-size: 12px;
  }

  .hero-market-panel {
    justify-self: stretch;
    padding: 16px;
    border-radius: 20px;
  }

  .hero-market-head {
    margin-bottom: 14px;
  }

  .hero-market-head h2 {
    font-size: 19px;
  }

  .hero-market-list {
    gap: 10px;
  }

  .hero-market-list article {
    grid-template-columns: 36px minmax(0, 1fr);
    grid-template-areas:
      "icon name"
      "icon price"
      "icon change";
    min-height: 50px;
    column-gap: 10px;
  }

  .hero-market-list i {
    width: 36px;
    height: 36px;
  }

  .hero-market-list strong,
  .hero-market-list b {
    font-size: 13px;
  }

  .hero-market-list b,
  .hero-market-list em {
    text-align: left;
  }

  .hero-market-list small,
  .hero-market-list em {
    font-size: 11px;
  }

  .hero-market-link {
    margin-top: 14px;
    padding: 13px;
  }

  .card-benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 34px 16px;
  }

  .card-benefits-copy h2,
  .section-heading h2 {
    max-width: min(100%, 290px);
    font-size: 28px;
    line-height: 1.04;
    overflow-wrap: anywhere;
  }

  .card-benefits-copy > p {
    max-width: min(100%, 290px);
    margin-top: 14px;
    font-size: 14px;
  }

  .benefit-grid article {
    min-height: auto;
    padding: 16px;
  }

  .card-benefits-visual {
    min-height: 260px;
    border-radius: 22px;
  }

  .card-benefits-visual img {
    width: 100%;
    max-width: 360px;
    border-radius: 16px;
  }

  .card-benefits-visual span {
    top: 14px;
    right: 14px;
    font-size: 10px;
  }

  .feature-strip article,
  .content-band {
    padding: 30px 16px;
  }

  .feature-strip article {
    min-height: auto;
  }

  .feature-strip h2 {
    margin-top: 14px;
    font-size: 26px;
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  .route-card strong {
    overflow-wrap: anywhere;
  }

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

  .route-card {
    min-height: auto;
    padding: 18px;
  }

  .phone {
    width: min(296px, 92vw);
    height: 560px;
    transform: none;
  }

  .orbital-card {
    position: static;
    width: 100%;
    max-width: 300px;
  }

  .phone-stage {
    gap: 14px;
  }

  .feature-strip,
  .benefit-grid,
  .admin-grid,
  .market-grid,
  .route-grid,
  .route-grid.three,
  .method-group {
    grid-template-columns: 1fr;
  }

  .orders-row,
  .asset-row,
  .metric,
  .market-strip-head,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .asset-value {
    text-align: left;
  }
}
