:root {
  color-scheme: light;
  --blue-950: #050b4f;
  --blue-900: #07128e;
  --blue-800: #071fd9;
  --blue-600: #0f6df7;
  --cyan: #12bbff;
  --ink: #071049;
  --muted: #6f7db2;
  --line: rgba(75, 104, 190, 0.18);
  --panel: #ffffff;
  --soft: #eef5ff;
  --danger: #d92d20;
  --shadow: 0 28px 70px rgba(7, 16, 73, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(18, 187, 255, 0.22), transparent 26%),
    radial-gradient(circle at 82% 8%, rgba(45, 79, 255, 0.28), transparent 30%),
    linear-gradient(135deg, #071cff 0%, #07128e 42%, #06105f 100%);
  background-attachment: fixed;
  background-size: 180% 180%;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  animation: pageShift 18s ease-in-out infinite;
  overflow-x: hidden;
}

@keyframes pageShift {
  0% {
    background-position: 0% 45%;
  }
  50% {
    background-position: 100% 55%;
  }
  100% {
    background-position: 0% 45%;
  }
}

button,
input {
  font: inherit;
}

.page {
  min-height: 100vh;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 92px;
  padding: 18px clamp(20px, 5vw, 110px);
  background: rgba(7, 16, 88, 0.94);
  backdrop-filter: blur(18px);
  color: #fff;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 900;
  text-decoration: none;
}

.brand-logo {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: block;
  box-shadow: 0 14px 36px rgba(18, 187, 255, 0.24);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
}

.nav-links a:hover,
.lang-button:hover {
  color: #fff;
}

.lang-button {
  min-height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  font-weight: 900;
  padding: 0 14px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 92px);
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 24px;
  padding: clamp(40px, 8vw, 96px) clamp(20px, 5vw, 110px);
  background:
    radial-gradient(circle at 78% 18%, rgba(18, 187, 255, 0.22), transparent 22%),
    linear-gradient(160deg, rgba(6, 29, 235, 0.88) 0%, rgba(11, 30, 211, 0.82) 42%, rgba(9, 16, 96, 0.88) 100%);
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -8vw;
  width: 52vw;
  background:
    radial-gradient(ellipse at 32% 46%, rgba(255, 255, 255, 0.35), transparent 8%),
    radial-gradient(ellipse at 48% 28%, rgba(255, 255, 255, 0.45), transparent 7%),
    linear-gradient(130deg, transparent 24%, rgba(255, 255, 255, 0.18) 24% 28%, transparent 28%),
    linear-gradient(150deg, transparent 34%, rgba(255, 255, 255, 0.28) 34% 38%, transparent 38%);
  opacity: 0.84;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 11, 79, 0.04) 0%,
    rgba(5, 11, 79, 0.22) 42%,
    rgba(5, 11, 79, 0.62) 100%
  );
  pointer-events: none;
}

.hero-art {
  position: relative;
  min-height: 640px;
  z-index: 1;
}

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 42px solid rgba(255, 255, 255, 0.08);
}

.orbit-one {
  width: 430px;
  height: 430px;
  left: -120px;
  top: 70px;
}

.orbit-two {
  width: 260px;
  height: 260px;
  left: 132px;
  bottom: 40px;
}

.rocket-beam {
  position: absolute;
  left: 18%;
  bottom: -10px;
  width: 440px;
  height: 120px;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.2));
  clip-path: polygon(0 100%, 86% 0, 100% 0, 18% 100%);
  opacity: 0.95;
}

.token-card {
  position: absolute;
  display: grid;
  gap: 12px;
  min-width: 260px;
  border-radius: 24px;
  background: #fff;
  color: var(--ink);
  padding: 24px;
  box-shadow: var(--shadow);
}

.token-card span {
  color: #101a5f;
  font-size: 18px;
  font-weight: 900;
}

.token-card strong {
  font-size: 28px;
  line-height: 1;
}

.token-card-left {
  left: 0;
  top: 300px;
}

.token-card-right {
  right: 20px;
  top: 92px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 780px;
  justify-self: end;
  text-align: left;
}

.kicker {
  margin: 0 0 16px;
  color: #6fb7ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.06;
  letter-spacing: 0;
  color: #fff;
  text-shadow:
    0 4px 10px rgba(0, 0, 0, 0.34),
    0 18px 42px rgba(0, 0, 0, 0.28);
}

.hero-copy p:not(.kicker) {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.7;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.hero-trust {
  max-width: 620px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
}

.hero-preview-panel {
  display: grid;
  gap: 16px;
  width: min(680px, 100%);
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 24px 70px rgba(3, 7, 42, 0.22);
  backdrop-filter: blur(16px);
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.flow-steps span {
  display: grid;
  place-items: center;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.quick-fee-control {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(150px, 210px);
  gap: 12px;
  align-items: center;
}

.quick-fee-control span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
}

.quick-fee-control input {
  min-height: 52px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  padding: 0 16px;
}

#quickFeeResult {
  color: #fff;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.1;
}

.hero-preview-panel small {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 800;
  line-height: 1.5;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  padding: 0 20px;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.button.large {
  min-height: 78px;
  border-radius: 18px;
  font-size: 24px;
  padding: 0 34px;
}

.button.primary,
.nav-button {
  background: linear-gradient(135deg, var(--cyan), var(--blue-600));
  color: #fff;
}

.nav-button.connected {
  background: linear-gradient(135deg, #19c57a, #067a4a);
  box-shadow: 0 14px 30px rgba(24, 183, 106, 0.22);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.button.full {
  width: 100%;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.button:not(:disabled):active,
.chain-button:active,
.wallet-option:active,
.drop-zone:active,
.text-link:active,
.icon-close:active {
  transform: translateY(1px) scale(0.99);
}

.stats-grid,
.product-band,
.pricing-section,
.app-section,
.calculator-section,
.table-band,
.faq-section,
.contact-section,
.log-panel {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 44px 0;
}

.stats-grid div,
.product-grid article,
.pricing-panel,
.contact-panel,
.panel,
.settlement-panel,
.table-band,
.faq-grid article,
.log-panel {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.stats-grid div {
  min-height: 126px;
  padding: 26px;
}

.stats-grid strong,
.stats-grid span {
  display: block;
}

.stats-grid strong {
  font-size: clamp(28px, 3vw, 42px);
}

.stats-grid span {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 800;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 26px;
}

.section-heading h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
}

.product-band > .section-heading h2,
.app-section > .section-heading h2,
.faq-section > .section-heading h2,
.contact-section h2 {
  color: #fff;
}

.section-heading p:not(.kicker) {
  margin-top: 12px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.product-band,
.pricing-section,
.app-section,
.calculator-section,
.faq-section,
.contact-section {
  padding: 58px 0;
}

.product-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-grid article,
.faq-grid article {
  padding: 28px;
}

.product-grid span {
  color: var(--blue-600);
  font-weight: 900;
}

.product-grid h3,
.faq-grid h3 {
  margin-top: 18px;
  font-size: 24px;
}

.product-grid p,
.faq-grid p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.pricing-panel {
  overflow: hidden;
  padding: clamp(24px, 4vw, 42px);
  background:
    radial-gradient(circle at 100% 0%, rgba(18, 187, 255, 0.22), transparent 30%),
    linear-gradient(135deg, #ffffff, #edf6ff);
}

.pricing-panel .section-heading {
  max-width: 920px;
}

.pricing-panel .section-heading h2 {
  color: var(--ink);
}

#pricingHeadline {
  color: #2453de;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 900;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(260px, 0.8fr) minmax(300px, 0.9fr);
  gap: 18px;
  align-items: stretch;
}

.price-focus,
.pricing-bullets,
.pricing-table-wrap {
  border: 1px solid rgba(15, 109, 247, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  padding: 22px;
}

.price-focus strong {
  display: block;
  color: var(--blue-600);
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.95;
}

.price-focus span {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.price-focus p,
.price-focus small {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.6;
}

.price-focus small {
  color: #067a4a;
  font-weight: 900;
}

.pricing-bullets,
.trust-strip {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pricing-bullets {
  display: grid;
  gap: 12px;
}

.pricing-bullets li,
.trust-strip li {
  position: relative;
  padding-left: 26px;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.45;
}

.pricing-bullets li::before,
.trust-strip li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #18b76a;
  font-weight: 900;
}

.pricing-table {
  width: 100%;
  min-width: 0;
}

.pricing-table th,
.pricing-table td {
  padding: 14px 0;
}

.pricing-table td:last-child {
  color: var(--blue-600);
  font-family: inherit;
  font-weight: 900;
}

.app-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(300px, 1fr) minmax(300px, 1fr);
  gap: 18px;
  align-items: start;
}

.app-console {
  position: relative;
  display: grid;
  gap: 18px;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.2);
  background:
    radial-gradient(circle at 92% 0%, rgba(18, 187, 255, 0.26), transparent 28%),
    radial-gradient(circle at 0% 100%, rgba(15, 109, 247, 0.18), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(239, 247, 255, 0.94));
}

.app-console::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(115deg, transparent 0 34%, rgba(255, 255, 255, 0.55) 44%, transparent 58% 100%);
  transform: translateX(-70%);
  animation: consoleSheen 8s ease-in-out infinite;
  pointer-events: none;
}

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

@keyframes consoleSheen {
  0%,
  62% {
    transform: translateX(-75%);
  }
  100% {
    transform: translateX(75%);
  }
}

.chain-topbar {
  display: grid;
  grid-template-columns: minmax(150px, 0.5fr) minmax(420px, 1.4fr) auto;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(15, 109, 247, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(239, 247, 255, 0.88)),
    #fff;
  padding: 16px;
  box-shadow: 0 20px 40px rgba(7, 16, 73, 0.08);
}

.chain-topbar > div:first-child span,
.compact-heading span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.chain-topbar h3 {
  margin-top: 4px;
  font-size: 26px;
}

.console-guide {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.console-guide div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  border: 1px solid rgba(15, 109, 247, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  padding: 12px;
}

.console-guide span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--cyan), var(--blue-600));
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(15, 109, 247, 0.22);
}

.console-guide strong {
  color: var(--ink);
  font-size: 14px;
}

.console-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(420px, 1.4fr) minmax(210px, 0.75fr);
  gap: 16px;
  align-items: end;
  border: 1px solid rgba(15, 109, 247, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  padding: 16px;
}

.console-row.lower {
  grid-template-columns: minmax(420px, 1.15fr) minmax(320px, 0.85fr);
  align-items: stretch;
}

.token-form {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.token-form .field {
  margin-top: 0;
}

.confirm-button {
  min-width: 128px;
  min-height: 54px;
  background: linear-gradient(135deg, var(--cyan), var(--blue-600));
  color: #fff;
  box-shadow: 0 12px 28px rgba(15, 109, 247, 0.28);
}

.confirm-button:hover {
  box-shadow: 0 18px 34px rgba(15, 109, 247, 0.34);
  transform: translateY(-1px);
}

.hidden-control {
  display: none;
}

.note.compact {
  margin-top: -4px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  border: 1px solid rgba(24, 183, 106, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  padding: 14px;
}

.trust-strip li {
  color: #0a2f31;
  font-size: 13px;
}

.payment-trust {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 14px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.payment-trust li {
  color: rgba(255, 255, 255, 0.88);
}

.panel,
.settlement-panel {
  padding: 24px;
}

.panel-heading,
.table-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.panel-heading span,
.mini-grid span,
.summary-grid span,
.field,
.token-strip span,
.settlement-lines span,
.balance-list span,
.table-heading > span,
.note,
.drop-zone span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.panel-heading h3 {
  font-size: 24px;
}

.mini-grid,
.summary-grid,
.settlement-lines {
  display: grid;
  gap: 10px;
}

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

.summary-grid,
.settlement-lines {
  grid-template-columns: repeat(3, 1fr);
}

.mini-grid div,
.summary-grid div,
.settlement-lines div {
  min-height: 82px;
  border-radius: 14px;
  background: var(--soft);
  padding: 14px;
}

.mini-grid strong,
.summary-grid strong,
.settlement-lines strong {
  display: block;
  margin-top: 8px;
  font-size: 20px;
}

.field {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.field input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f9fbff;
  color: var(--ink);
  padding: 0 14px;
  outline: none;
}

.field input:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(15, 109, 247, 0.12);
}

.field.mono input {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
}

.note {
  margin-top: 12px;
}

.note.warning {
  min-height: 20px;
  color: var(--danger);
}

.chain-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 0;
}

.chain-button {
  position: relative;
  overflow: hidden;
  min-height: 72px;
  border: 1px solid rgba(15, 109, 247, 0.14);
  border-radius: 16px;
  background: linear-gradient(180deg, #fff, #f4f8ff);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  padding: 12px;
  box-shadow: 0 10px 22px rgba(7, 16, 73, 0.06);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.chain-button::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 12px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #b7c3e4;
  box-shadow: 0 0 0 5px rgba(183, 195, 228, 0.16);
}

.chain-button:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 109, 247, 0.45);
  box-shadow: 0 16px 30px rgba(15, 109, 247, 0.15);
}

.chain-button strong,
.chain-button span {
  display: block;
}

.chain-button span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.chain-button.active {
  border-color: var(--blue-600);
  background: linear-gradient(135deg, #eef8ff, #fff);
  box-shadow: 0 18px 34px rgba(15, 109, 247, 0.18);
}

.chain-button.active::after {
  background: #18b76a;
  box-shadow: 0 0 0 5px rgba(24, 183, 106, 0.14);
}

.inline-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.token-strip {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  margin: 16px 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8fbff;
  padding: 14px;
}

.icon-button {
  width: 44px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.drop-zone {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 220px;
  border: 2px dashed rgba(15, 109, 247, 0.32);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(18, 187, 255, 0.08), transparent),
    #f8fbff;
  cursor: pointer;
  text-align: center;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}

.upload-block {
  display: grid;
}

.drop-zone:hover,
.drop-zone.dragging {
  border-color: var(--blue-600);
  background: #eef7ff;
  transform: translateY(-2px);
}

.drop-zone input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
}

.upload-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--cyan), var(--blue-600));
  color: #fff !important;
  font-size: 18px !important;
}

.drop-zone strong {
  font-size: 22px;
}

.summary-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 16px;
}

.billing-note {
  align-self: end;
  border: 1px solid rgba(24, 183, 106, 0.22);
  border-radius: 14px;
  background: rgba(24, 183, 106, 0.08);
  color: #067a4a;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.5;
  padding: 14px;
}

.settlement-note {
  margin-top: 14px;
}

.quality-panel {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(130px, 0.28fr) auto;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(15, 109, 247, 0.18);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(18, 187, 255, 0.08), transparent),
    #f8fbff;
  padding: 18px;
}

.quality-panel h3 {
  margin-top: 4px;
  font-size: 24px;
}

.quality-panel p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.quality-panel > div:first-child > span,
.quality-score span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.quality-score {
  display: grid;
  gap: 4px;
  min-height: 86px;
  border-radius: 14px;
  background: #fff;
  padding: 14px;
}

.quality-score strong {
  color: var(--ink);
  font-size: 36px;
  line-height: 1;
}

.quality-panel.warning {
  border-color: rgba(217, 45, 32, 0.28);
  background:
    linear-gradient(135deg, rgba(217, 45, 32, 0.08), transparent),
    #fffafa;
}

.quality-panel.warning .quality-score strong,
.quality-panel.warning .quality-note {
  color: var(--danger);
}

.scan-button {
  min-width: 132px;
  background: #fff;
  border: 1px solid var(--line);
}

.calculator-section {
  color: #fff;
}

.settlement-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 20%, rgba(18, 187, 255, 0.24), transparent 26%),
    linear-gradient(145deg, rgba(5, 11, 79, 0.94), rgba(7, 31, 217, 0.86));
}

.settlement-panel .section-heading p:not(.kicker),
.settlement-panel .settlement-lines span,
.settlement-panel .balance-list span {
  color: rgba(255, 255, 255, 0.68);
}

.quote-card {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  padding: 28px;
}

.quote-card span,
.quote-card small {
  color: rgba(255, 255, 255, 0.68);
}

.quote-card strong {
  font-size: clamp(44px, 7vw, 82px);
  line-height: 1;
}

.settlement-lines {
  margin-top: 14px;
}

.settlement-lines div {
  background: rgba(255, 255, 255, 0.1);
}

.balance-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.balance-list .balance-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  padding: 12px 14px;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.balance-list .balance-row.verified {
  border-color: rgba(24, 183, 106, 0.48);
  background: #fff;
  box-shadow: 0 16px 34px rgba(24, 183, 106, 0.18);
}

.balance-list .balance-row.verified > span:first-child,
.balance-list .balance-row.verified strong {
  color: #067a4a;
}

.balance-value {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  text-align: right;
}

.check-mark {
  display: none;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, #19c57a, #067a4a);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 0 0 6px rgba(24, 183, 106, 0.13);
}

.balance-row.verified .check-mark {
  display: inline-grid;
}

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

.airdrop-final-button {
  width: 100%;
  min-height: 66px;
  font-size: 19px;
  letter-spacing: 0;
  box-shadow: 0 18px 38px rgba(18, 187, 255, 0.26);
}

.final-action-stack {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.final-action-stack .status-pill {
  justify-content: center;
  width: auto;
  min-height: 30px;
  justify-self: center;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  background: #fff1d6;
  color: #9b6612;
  font-size: 12px;
  font-weight: 900;
  padding: 0 12px;
}

.status-pill.ready {
  background: #dff9eb;
  color: #067a4a;
}

.status-pill.error {
  background: #ffe6e2;
  color: var(--danger);
}

.text-link {
  color: var(--blue-600);
  font-weight: 900;
  text-decoration: none;
}

.button-reset {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.table-band,
.log-panel {
  margin-top: 48px;
  overflow: hidden;
}

.table-heading {
  padding: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0;
}

.table-wrap {
  overflow: auto;
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 14px;
}

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

td:first-child {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.status-cell {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #b7c3e4;
}

.status-cell.pending .status-dot {
  background: #b7c3e4;
}

.status-cell.processing .status-dot {
  background: #f5a524;
  box-shadow: 0 0 0 5px rgba(245, 165, 36, 0.12);
}

.status-cell.success {
  color: #067a4a;
}

.status-cell.success .status-dot {
  background: #18b76a;
  box-shadow: 0 0 0 5px rgba(24, 183, 106, 0.12);
}

.status-cell.failed {
  color: var(--danger);
}

.status-cell.failed .status-dot {
  background: var(--danger);
}

.log-panel {
  margin-bottom: 56px;
}

.log-panel ol {
  display: grid;
  gap: 10px;
  max-height: 240px;
  margin: 0;
  padding: 18px 24px 24px 44px;
  overflow: auto;
}

.log-panel li {
  color: var(--muted);
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
  background:
    radial-gradient(circle at 88% 0%, rgba(18, 187, 255, 0.2), transparent 28%),
    rgba(255, 255, 255, 0.1);
  color: #fff;
}

.contact-panel > div {
  max-width: 760px;
}

.contact-panel p:not(.kicker) {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.6;
}

.contact-emails {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.contact-emails a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.contact-emails a:hover {
  text-decoration: underline;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.contact-social {
  min-width: 116px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.legal-footer {
  display: grid;
  gap: 22px;
  padding: 28px;
  margin-bottom: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.legal-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.legal-links a:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.14);
}

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

.legal-grid article {
  min-height: 160px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
}

.legal-grid h3 {
  color: #fff;
  font-size: 18px;
}

.legal-grid p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.wallet-modal[hidden] {
  display: none;
}

.wallet-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
}

.wallet-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 42, 0.66);
  backdrop-filter: blur(10px);
}

.wallet-sheet {
  position: relative;
  z-index: 1;
  width: min(880px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background:
    radial-gradient(circle at 88% 0%, rgba(18, 187, 255, 0.22), transparent 28%),
    #fff;
  box-shadow: 0 34px 90px rgba(3, 7, 42, 0.38);
  padding: 26px;
}

.wallet-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.wallet-heading h2 {
  color: var(--ink);
  font-size: 34px;
  line-height: 1.1;
}

.icon-close {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8fbff;
  color: var(--ink);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.wallet-copy,
.wallet-hint {
  color: var(--muted);
  line-height: 1.6;
}

.wallet-copy {
  margin-top: 8px;
}

.wallet-hint {
  min-height: 24px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 800;
}

.wallet-options {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.wallet-option {
  display: grid;
  gap: 10px;
  align-items: center;
  justify-items: center;
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8fbff;
  color: var(--ink);
  cursor: pointer;
  padding: 16px 10px;
  text-align: center;
}

.wallet-option:hover {
  border-color: var(--blue-600);
  background: #edf6ff;
}

.wallet-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  color: #fff;
  font-weight: 900;
  overflow: hidden;
}

.wallet-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.wallet-option strong,
.wallet-option span {
  display: block;
}

.wallet-option span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.wallet-status {
  border-radius: 999px;
  background: #dff9eb;
  color: #067a4a;
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
  justify-self: center;
}

.wallet-status.muted {
  background: #eef2ff;
  color: var(--muted);
}

.toast {
  position: fixed;
  right: clamp(16px, 3vw, 32px);
  bottom: clamp(16px, 3vw, 32px);
  z-index: 80;
  max-width: min(420px, calc(100vw - 32px));
  border: 1px solid rgba(24, 183, 106, 0.28);
  border-radius: 16px;
  background: #fff;
  color: #067a4a;
  font-weight: 900;
  padding: 16px 18px;
  box-shadow: 0 24px 70px rgba(3, 7, 42, 0.22);
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

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

@media (max-width: 1120px) {
  .nav {
    padding-inline: 24px;
  }

  .nav-links {
    gap: 10px;
    margin-left: 0;
  }

  .nav-links a {
    display: none;
  }

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

  .hero-art {
    min-height: 390px;
  }

  .hero-copy {
    justify-self: stretch;
  }

  .app-grid,
  .pricing-layout,
  .product-grid,
  .faq-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .chain-topbar,
  .console-row,
  .console-row.lower,
  .console-guide,
  .trust-strip,
  .quality-panel,
  .token-form {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-actions {
    justify-content: flex-start;
    width: 100%;
  }

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

@media (max-width: 700px) {
  .nav {
    position: static;
    min-height: 78px;
  }

  .brand {
    font-size: 22px;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .nav-button {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-block: 34px 52px;
  }

  .hero-art {
    min-height: 300px;
  }

  .token-card {
    min-width: 210px;
    padding: 18px;
  }

  .token-card-left {
    top: 158px;
  }

  .token-card-right {
    right: -8px;
    top: 20px;
  }

  .rocket-beam {
    left: 8%;
    width: 330px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-actions,
  .action-row {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .flow-steps,
  .quick-fee-control {
    grid-template-columns: 1fr;
  }

  .button,
  .button.large {
    width: 100%;
  }

  .stats-grid,
  .mini-grid,
  .wallet-options,
  .chain-rail,
  .console-guide,
  .trust-strip,
  .chain-topbar,
  .console-row,
  .console-row.lower,
  .token-form,
  .inline-fields,
  .summary-grid,
  .settlement-lines {
    grid-template-columns: 1fr;
  }
}

/* Premium Web3 SaaS refresh */
:root {
  color-scheme: dark;
  --blue-950: #03071f;
  --blue-900: #071033;
  --blue-800: #1027d6;
  --blue-600: #1f7cff;
  --cyan: #17d5ff;
  --violet: #8b5cf6;
  --ink: #f7fbff;
  --muted: #9ba9d0;
  --line: rgba(255, 255, 255, 0.1);
  --panel: rgba(255, 255, 255, 0.055);
  --soft: rgba(255, 255, 255, 0.07);
  --danger: #ff6b5f;
  --success: #31d19b;
  --radius: 8px;
  --glass-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  --glow-blue: 0 0 42px rgba(23, 213, 255, 0.22);
  --glow-violet: 0 0 52px rgba(139, 92, 246, 0.22);
  --shadow: var(--glass-shadow);
}

body {
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(ellipse at 18% 8%, rgba(31, 124, 255, 0.32), transparent 34%),
    radial-gradient(ellipse at 82% 16%, rgba(139, 92, 246, 0.26), transparent 34%),
    radial-gradient(ellipse at 60% 92%, rgba(23, 213, 255, 0.18), transparent 32%),
    linear-gradient(145deg, #03071f 0%, #071033 46%, #090b2d 100%);
  background-size:
    64px 64px,
    64px 64px,
    180% 180%,
    180% 180%,
    160% 160%,
    100% 100%;
  color: var(--ink);
  animation: pageShift 22s ease-in-out infinite;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 18%, rgba(23, 213, 255, 0.06) 31%, transparent 44% 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 3px);
  mix-blend-mode: screen;
  opacity: 0.8;
}

.nav {
  min-height: 82px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(3, 7, 31, 0.72);
  backdrop-filter: blur(22px);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.26);
}

.brand {
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: 0;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  box-shadow: 0 0 34px rgba(23, 213, 255, 0.28);
}

.nav-links a,
.lang-button {
  color: rgba(226, 235, 255, 0.7);
  font-size: 15px;
  letter-spacing: 0;
}

.nav-links a:hover,
.lang-button:hover {
  color: #fff;
  text-shadow: 0 0 22px rgba(23, 213, 255, 0.35);
}

.lang-button,
.nav-button,
.button {
  border-radius: var(--radius);
}

.nav-button,
.button.primary {
  background: linear-gradient(135deg, var(--cyan), var(--blue-600) 50%, var(--violet));
  box-shadow:
    0 12px 30px rgba(31, 124, 255, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.button.ghost {
  border: 1px solid rgba(23, 213, 255, 0.22);
  background: rgba(255, 255, 255, 0.055);
  color: #eef6ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.subtle-cta {
  min-height: 54px !important;
  padding-inline: 22px !important;
  font-size: 17px !important;
}

.button:not(:disabled):hover,
.chain-button:hover,
.wallet-option:hover,
.product-grid article:hover,
.stats-grid div:hover,
.price-focus:hover,
.pricing-bullets:hover,
.pricing-table-wrap:hover {
  transform: translateY(-3px);
  border-color: rgba(23, 213, 255, 0.36);
  box-shadow:
    var(--glass-shadow),
    var(--glow-blue);
}

.button:disabled {
  opacity: 0.42;
  filter: grayscale(0.55);
}

.hero {
  min-height: calc(100vh - 82px);
  grid-template-columns: minmax(340px, 0.88fr) minmax(460px, 1.12fr);
  gap: clamp(28px, 4vw, 70px);
  padding-block: clamp(54px, 8vw, 112px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    radial-gradient(ellipse at 16% 34%, rgba(23, 213, 255, 0.24), transparent 28%),
    radial-gradient(ellipse at 72% 18%, rgba(139, 92, 246, 0.24), transparent 30%),
    linear-gradient(145deg, rgba(3, 7, 31, 0.92), rgba(7, 16, 51, 0.82));
  background-size: 54px 54px, 54px 54px, 130% 130%, 130% 130%, 100% 100%;
}

.hero::before {
  inset: 0;
  width: auto;
  background:
    linear-gradient(112deg, transparent 0 30%, rgba(23, 213, 255, 0.12) 42%, transparent 54% 100%),
    linear-gradient(18deg, transparent 0 62%, rgba(139, 92, 246, 0.1) 72%, transparent 82% 100%);
  opacity: 1;
  animation: meshSweep 12s ease-in-out infinite alternate;
}

.hero::after {
  background: linear-gradient(90deg, rgba(3, 7, 31, 0.1), rgba(3, 7, 31, 0.55));
}

@keyframes meshSweep {
  from {
    transform: translateX(-3%);
  }
  to {
    transform: translateX(3%);
  }
}

.workflow-stack {
  min-height: 660px;
  perspective: 1200px;
}

.workflow-card {
  position: absolute;
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-areas:
    "icon label"
    "icon title"
    "icon meta";
  gap: 4px 14px;
  width: min(360px, 82vw);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
  color: #fff;
  backdrop-filter: blur(18px);
  box-shadow: var(--glass-shadow);
  animation: floatStack 7s ease-in-out infinite;
}

.workflow-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 0 28%, rgba(255, 255, 255, 0.12), transparent 58% 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.workflow-card:hover::after {
  opacity: 1;
}

.workflow-card-one {
  top: 88px;
  left: 12px;
}

.workflow-card-two {
  top: 220px;
  right: 10px;
  animation-delay: -1.6s;
}

.workflow-card-three {
  top: 356px;
  left: 56px;
  animation-delay: -3s;
}

.workflow-card-four {
  bottom: 44px;
  right: 34px;
  animation-delay: -4.8s;
}

@keyframes floatStack {
  0%,
  100% {
    transform: translateY(0) rotateX(0deg);
  }
  50% {
    transform: translateY(-12px) rotateX(2deg);
  }
}

.workflow-icon {
  grid-area: icon;
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--cyan), var(--blue-600));
  box-shadow: 0 0 28px rgba(23, 213, 255, 0.32);
}

.workflow-icon::after {
  content: "";
  position: absolute;
  right: 7px;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(49, 209, 155, 0.16);
}

.workflow-card span:not(.workflow-icon) {
  grid-area: label;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.workflow-card strong {
  grid-area: title;
  color: #fff;
  font-size: 22px;
  line-height: 1.1;
}

.workflow-card small {
  grid-area: meta;
  color: rgba(226, 235, 255, 0.64);
  font-weight: 800;
}

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

.kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(23, 213, 255, 0.16);
  border-radius: 999px;
  background: rgba(23, 213, 255, 0.08);
  color: #92e9ff;
  letter-spacing: 0.14em;
}

h1 {
  max-width: 840px;
  font-size: clamp(52px, 6.8vw, 96px);
  line-height: 0.98;
  background: linear-gradient(92deg, #fff 0%, #dff8ff 36%, #7fe7ff 62%, #b99cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.hero-copy p:not(.kicker) {
  max-width: 760px;
  color: rgba(226, 235, 255, 0.76);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.7;
  text-shadow: none;
}

.button.large {
  min-height: 62px;
  border-radius: var(--radius);
  font-size: 18px;
  padding: 0 26px;
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  padding: 10px 13px;
  border: 1px solid rgba(49, 209, 155, 0.2);
  border-radius: var(--radius);
  background: rgba(49, 209, 155, 0.08);
  color: rgba(229, 255, 246, 0.9);
}

.hero-trust::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background:
    linear-gradient(135deg, transparent 40%, #fff 40% 52%, transparent 52%),
    linear-gradient(135deg, var(--success), #099b6d);
  box-shadow: 0 0 18px rgba(49, 209, 155, 0.34);
}

.hero-preview-panel,
.stats-grid div,
.product-grid article,
.pricing-panel,
.price-focus,
.pricing-bullets,
.pricing-table-wrap,
.panel,
.settlement-panel,
.table-band,
.log-panel,
.faq-grid details,
.contact-panel,
.legal-footer,
.legal-grid article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(16px);
}

.hero-preview-panel {
  position: relative;
  overflow: hidden;
  padding: 20px;
}

.hero-preview-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent, rgba(23, 213, 255, 0.08), transparent);
  transform: translateX(-80%);
  animation: consoleSheen 9s ease-in-out infinite;
  pointer-events: none;
}

.flow-steps {
  position: relative;
  gap: 0;
}

.flow-steps::before {
  content: "";
  position: absolute;
  left: 12.5%;
  right: 12.5%;
  top: 21px;
  height: 1px;
  background: linear-gradient(90deg, rgba(23, 213, 255, 0.1), rgba(23, 213, 255, 0.5), rgba(139, 92, 246, 0.35));
}

.flow-steps span {
  position: relative;
  min-height: 54px;
  border: 0;
  background: transparent;
  color: rgba(226, 235, 255, 0.76);
  padding-top: 26px;
}

.flow-steps span::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 50%;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(23, 213, 255, 0.7);
  border-radius: 999px;
  background: #071033;
  box-shadow: 0 0 22px rgba(23, 213, 255, 0.32);
  transform: translateX(-50%);
}

.quick-fee-control input,
.field input {
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(3, 7, 31, 0.72);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.quick-fee-control input:focus,
.field input:focus {
  border-color: rgba(23, 213, 255, 0.6);
  box-shadow:
    0 0 0 4px rgba(23, 213, 255, 0.1),
    0 0 28px rgba(23, 213, 255, 0.14);
}

#quickFeeResult,
.price-focus strong,
.quote-card strong {
  color: #7fe7ff;
  text-shadow: 0 0 28px rgba(23, 213, 255, 0.28);
}

.stats-grid {
  gap: 12px;
  padding: 38px 0 26px;
}

.stats-grid div {
  min-height: 108px;
  padding: 22px;
}

.stats-grid strong {
  color: #fff;
}

.stats-grid span,
.section-heading p:not(.kicker),
.product-grid p,
.faq-grid p,
.price-focus p,
.price-focus small,
.legal-grid p,
.wallet-copy,
.wallet-hint,
.note,
.drop-zone span {
  color: var(--muted);
}

.section-heading h2,
.pricing-panel .section-heading h2,
.product-grid h3,
.faq-grid summary,
.panel-heading h3,
.table-heading h2,
.quality-panel h3,
.wallet-heading h2,
.legal-grid h3 {
  color: #fff;
}

.product-band,
.pricing-section,
.app-section,
.calculator-section,
.faq-section,
.contact-section {
  padding: 72px 0;
}

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

.product-grid article {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 24px;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.product-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 32%, rgba(23, 213, 255, 0.1), transparent 58% 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

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

.feature-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(23, 213, 255, 0.18), rgba(139, 92, 246, 0.18)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(23, 213, 255, 0.18);
}

.feature-icon::before {
  content: "";
  width: 18px;
  height: 18px;
  margin: auto;
  border: 2px solid #7fe7ff;
  border-radius: 5px;
  box-shadow: 10px 10px 0 -3px rgba(139, 92, 246, 0.9);
}

.product-grid article > span:not(.feature-icon) {
  color: #7fe7ff;
}

.pricing-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 46px);
  background:
    linear-gradient(120deg, rgba(23, 213, 255, 0.09), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
}

#pricingHeadline {
  color: #7fe7ff;
}

.pricing-layout {
  grid-template-columns: minmax(280px, 1fr) minmax(250px, 0.82fr) minmax(280px, 0.9fr);
}

.price-focus,
.pricing-bullets,
.pricing-table-wrap {
  padding: 24px;
}

.price-focus span,
.pricing-bullets li,
.trust-strip li,
.mini-grid strong,
.summary-grid strong,
.settlement-lines strong {
  color: #fff;
}

.price-focus small {
  color: var(--success);
}

.pricing-table {
  color: #fff;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-table td:last-child {
  color: #7fe7ff;
}

.app-console {
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  background-size: 44px 44px, 44px 44px, 100% 100%;
}

.chain-topbar,
.console-row,
.console-guide div,
.trust-strip,
.mini-grid div,
.summary-grid div,
.settlement-lines div,
.token-strip,
.quality-panel,
.balance-list .balance-row {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.chain-topbar {
  grid-template-columns: minmax(150px, 0.5fr) minmax(420px, 1.4fr) auto;
}

.chain-topbar h3,
.chain-button strong,
.token-strip strong,
.drop-zone strong,
.quality-score strong {
  color: #fff;
}

.chain-rail {
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(3, 7, 31, 0.42);
}

.chain-button {
  min-height: 62px;
  border-color: transparent;
  border-radius: var(--radius);
  background: transparent;
  color: #fff;
  box-shadow: none;
}

.chain-button.active {
  border-color: rgba(23, 213, 255, 0.32);
  background: linear-gradient(135deg, rgba(23, 213, 255, 0.16), rgba(139, 92, 246, 0.1));
  box-shadow: 0 12px 30px rgba(23, 213, 255, 0.14);
}

.console-guide {
  position: relative;
}

.console-guide div {
  position: relative;
}

.console-guide span {
  border-radius: var(--radius);
}

.trust-strip {
  grid-template-columns: repeat(5, 1fr);
  background: rgba(49, 209, 155, 0.075);
  border-color: rgba(49, 209, 155, 0.16);
}

.trust-strip li {
  color: rgba(229, 255, 246, 0.9);
}

.panel-heading span,
.mini-grid span,
.summary-grid span,
.field,
.token-strip span,
.settlement-lines span,
.balance-list span,
.table-heading > span,
.quality-panel > div:first-child > span,
.quality-score span {
  color: var(--muted);
}

.confirm-button,
.scan-button,
.action-row .button {
  border: 1px solid rgba(23, 213, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.confirm-button,
.scan-button,
.airdrop-final-button {
  background: linear-gradient(135deg, var(--cyan), var(--blue-600) 52%, var(--violet));
}

.drop-zone {
  min-height: 230px;
  border-color: rgba(23, 213, 255, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(23, 213, 255, 0.06), rgba(139, 92, 246, 0.03)),
    rgba(3, 7, 31, 0.35);
}

.drop-zone:hover,
.drop-zone.dragging {
  border-color: rgba(23, 213, 255, 0.7);
  background: rgba(23, 213, 255, 0.08);
}

.upload-icon {
  border-radius: var(--radius);
}

.summary-grid .metric-highlight {
  border-color: rgba(23, 213, 255, 0.22);
  background: rgba(23, 213, 255, 0.08);
}

.summary-grid .metric-highlight strong {
  color: #7fe7ff;
}

.billing-note {
  border-color: rgba(49, 209, 155, 0.22);
  border-radius: var(--radius);
  background: rgba(49, 209, 155, 0.09);
  color: rgba(229, 255, 246, 0.94);
}

.quality-panel {
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.08), transparent),
    rgba(255, 255, 255, 0.055);
}

.quality-panel p,
.quality-note {
  color: var(--muted);
}

.quality-score {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(3, 7, 31, 0.42);
}

.settlement-panel {
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(145deg, rgba(5, 11, 79, 0.76), rgba(7, 16, 51, 0.72));
  background-size: 44px 44px, 44px 44px, 100% 100%;
}

.quote-card {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.065);
}

.balance-list .balance-row.verified {
  border-color: rgba(49, 209, 155, 0.48);
  background: rgba(49, 209, 155, 0.12);
}

.balance-list .balance-row.verified > span:first-child,
.balance-list .balance-row.verified strong {
  color: #b8ffe4;
}

.check-mark {
  border-radius: var(--radius);
}

.status-pill {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(245, 165, 36, 0.12);
  color: #ffd38a;
}

.status-pill.ready {
  background: rgba(49, 209, 155, 0.14);
  color: #b8ffe4;
}

.status-pill.error {
  background: rgba(255, 107, 95, 0.14);
  color: #ffb3ab;
}

.table-band,
.log-panel {
  background: rgba(255, 255, 255, 0.055);
}

.table-heading {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

table {
  color: #fff;
}

th,
td {
  border-bottom-color: rgba(255, 255, 255, 0.075);
}

th {
  color: var(--muted);
}

.status-cell {
  min-height: 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  padding: 0 10px;
}

.log-panel {
  background: rgba(1, 4, 18, 0.72);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.log-panel li {
  color: #9eefff;
}

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

.faq-grid details {
  padding: 0;
  overflow: hidden;
}

.faq-grid summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 22px;
  font-size: 18px;
  font-weight: 900;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary::after {
  content: "+";
  float: right;
  color: #7fe7ff;
}

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

.faq-grid details p {
  padding: 0 22px 22px;
}

.contact-panel {
  background:
    linear-gradient(135deg, rgba(23, 213, 255, 0.09), rgba(139, 92, 246, 0.08)),
    rgba(255, 255, 255, 0.055);
}

.contact-emails a,
.text-link,
.legal-links a:hover {
  color: #7fe7ff;
}

.legal-footer {
  margin-inline: auto;
  width: min(1220px, calc(100% - 32px));
}

.legal-grid article {
  min-height: 0;
}

.wallet-backdrop {
  background: rgba(1, 4, 18, 0.72);
  backdrop-filter: blur(18px);
}

.wallet-sheet {
  width: min(720px, 100%);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(23, 213, 255, 0.08), rgba(139, 92, 246, 0.08)),
    rgba(7, 16, 51, 0.94);
  backdrop-filter: blur(18px);
}

.wallet-options {
  grid-template-columns: 1fr;
}

.wallet-option {
  grid-template-columns: 58px 1fr auto;
  justify-items: stretch;
  min-height: 76px;
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  text-align: left;
}

.wallet-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
}

.wallet-option span {
  color: var(--muted);
}

.wallet-status {
  align-self: center;
  background: rgba(49, 209, 155, 0.12);
  color: #b8ffe4 !important;
}

.wallet-status.muted {
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted) !important;
}

.icon-close {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.toast {
  border-radius: var(--radius);
  background: rgba(7, 16, 51, 0.94);
  color: #b8ffe4;
  backdrop-filter: blur(16px);
}

.reveal-section {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.reveal-section.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .workflow-stack {
    min-height: 460px;
  }

  .workflow-card-one,
  .workflow-card-three {
    left: 0;
  }

  .workflow-card-two,
  .workflow-card-four {
    right: 0;
  }

  .pricing-layout,
  .product-grid,
  .chain-topbar,
  .console-row,
  .console-row.lower,
  .quality-panel,
  .trust-strip,
  .action-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .nav {
    position: sticky;
    min-height: 70px;
    padding-inline: 16px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .brand {
    font-size: 20px;
  }

  .hero {
    padding-inline: 16px;
  }

  .workflow-stack {
    min-height: 520px;
  }

  .workflow-card {
    width: min(100%, 330px);
  }

  .workflow-card-one,
  .workflow-card-two,
  .workflow-card-three,
  .workflow-card-four {
    left: 0;
    right: auto;
  }

  .workflow-card-two {
    top: 142px;
  }

  .workflow-card-three {
    top: 276px;
  }

  .workflow-card-four {
    top: 410px;
    bottom: auto;
  }

  h1 {
    font-size: 42px;
  }

  .flow-steps,
  .quick-fee-control,
  .stats-grid,
  .mini-grid,
  .summary-grid,
  .settlement-lines,
  .chain-rail,
  .wallet-option {
    grid-template-columns: 1fr;
  }

  .wallet-option {
    text-align: center;
    justify-items: center;
  }
}

/* Disable the continuous light sweep only. */
.app-console::before,
.hero-preview-panel::before {
  display: none;
  animation: none;
}

/* Performance tuning: keep the dark Web3 look, remove expensive continuous paint work. */
body {
  background-attachment: scroll;
  background-size:
    64px 64px,
    64px 64px,
    100% 100%,
    100% 100%,
    100% 100%,
    100% 100%;
  animation: none;
}

body::before {
  display: none;
}

.hero::before,
.workflow-card {
  animation: none;
}

.nav,
.workflow-card,
.hero-preview-panel,
.stats-grid div,
.product-grid article,
.pricing-panel,
.price-focus,
.pricing-bullets,
.pricing-table-wrap,
.panel,
.settlement-panel,
.table-band,
.log-panel,
.faq-grid details,
.contact-panel,
.legal-footer,
.legal-grid article {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.hero-preview-panel,
.stats-grid div,
.product-grid article,
.pricing-panel,
.price-focus,
.pricing-bullets,
.pricing-table-wrap,
.panel,
.settlement-panel,
.table-band,
.log-panel,
.faq-grid details,
.contact-panel,
.legal-footer,
.legal-grid article {
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.workflow-card {
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.3);
}

.button:not(:disabled):hover,
.chain-button:hover,
.wallet-option:hover,
.product-grid article:hover,
.stats-grid div:hover,
.price-focus:hover,
.pricing-bullets:hover,
.pricing-table-wrap:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.wallet-backdrop,
.wallet-sheet,
.toast {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

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