:root {
  --ink: #0d1b23;
  --muted: #4a4a4a;
  --paper: #f9f9f9;
  --panel: #ffffff;
  --wash: #f0f7f4;
  --line: #e0e5e5;
  --teal: #2d8659;
  --teal-dark: #1f6b45;
  --gold: #c9972b;
  --gold-soft: #f6ead1;
  --coral: #c65f47;
  --mint: #ddf4eb;
  --charcoal: #0d2a1c;
  --danger: #b3332f;
  --success: #17815d;
  --shadow: 0 18px 55px rgba(23, 33, 29, 0.11);
  --radius: 8px;
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  letter-spacing: 0;
}

body.is-dashboard {
  background: #f4f7f5;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
  transform: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(220, 229, 224, 0.88);
  background: rgba(251, 252, 251, 0.94);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 36px));
  min-height: 76px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 800;
  color: var(--ink);
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, var(--teal), var(--charcoal));
  color: #fff;
  font-size: 18px;
  line-height: 1;
  box-shadow: 0 8px 22px rgba(8, 122, 112, 0.22);
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-name {
  font-size: 17px;
  line-height: 1.1;
}

.brand-tag {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-link,
.mobile-link {
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #38443f;
  padding: 10px 12px;
  font-weight: 700;
}

.nav-link:hover,
.mobile-link:hover,
.nav-link.active,
.mobile-link.active {
  background: var(--wash);
  color: var(--teal-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  content: "";
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before {
  position: absolute;
  top: -6px;
}

.menu-toggle span::after {
  position: absolute;
  top: 6px;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--panel);
  padding: 12px 18px 18px;
}

.mobile-menu.open {
  display: grid;
  gap: 8px;
}

.section {
  padding: 86px 0;
}

.section.tight {
  padding: 56px 0;
}

.container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
}

.hero {
  position: relative;
  min-height: calc(100svh - 118px);
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.82) 0%, rgba(23, 33, 29, 0.58) 39%, rgba(23, 33, 29, 0.13) 73%),
    url("assets/averon-hero.png") center / cover no-repeat;
}

.hero::after {
  position: absolute;
  inset: auto 0 0 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(251, 252, 251, 0), var(--paper));
  content: "";
  z-index: -1;
}

.hero-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 64px 0 92px;
}

.hero-content {
  width: min(680px, 100%);
  color: #fff;
}

.hero .eyebrow {
  color: #f3d794;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: 76px;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero p {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.7;
}

.hero-actions,
.split-actions,
.form-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-actions {
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 11px 17px;
  font-weight: 800;
  line-height: 1.1;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 14px 30px rgba(8, 122, 112, 0.22);
}

.btn-primary:hover {
  background: var(--teal-dark);
}

.btn-gold {
  background: var(--gold);
  color: #20170a;
  box-shadow: 0 14px 30px rgba(201, 151, 43, 0.24);
}

.btn-light {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn-secondary {
  border-color: var(--line);
  background: var(--panel);
  color: var(--ink);
}

.btn-ghost {
  border-color: transparent;
  background: transparent;
  color: var(--teal-dark);
}

.btn-danger {
  background: var(--danger);
  color: #fff;
}

.btn-small {
  min-height: 34px;
  padding: 8px 11px;
  font-size: 13px;
}

.crypto-submit-btn {
  width: 178px;
  max-width: 100%;
  justify-self: start;
}

.icon {
  display: inline-grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.image-icon,
.rail-icon-img {
  display: block;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 8px;
  object-fit: cover;
}

.image-icon-small {
  width: 30px;
  height: 30px;
}

.rail-icon-img {
  width: 24px;
  height: 24px;
  padding: 2px;
  background: rgba(255, 255, 255, 0.12);
}

.btn-secondary .icon,
.btn-ghost .icon,
.nav-link .icon {
  background: var(--wash);
  color: var(--teal-dark);
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(640px, 100%);
  margin-top: 36px;
}

.glass-stat {
  min-height: 86px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  padding: 16px;
  color: #fff;
  backdrop-filter: blur(16px);
}

.glass-stat strong {
  display: block;
  margin-bottom: 5px;
  font-size: 24px;
  line-height: 1;
}

.glass-stat span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 32px;
}

.section-head h2,
.split-copy h2,
.auth-copy h1,
.panel-title h2,
.dash-title h1,
.modal h2 {
  margin: 0;
  color: var(--ink);
  font-size: 48px;
  line-height: 1.04;
  letter-spacing: 0;
}

.section-head p,
.split-copy p,
.page-hero p,
.auth-copy p,
.auth-card p,
.panel-title p,
.dash-title p,
.muted {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.feature-card,
.service-card,
.metric-card,
.dash-panel,
.account-card,
.auth-card,
.notice-card,
.timeline-card,
.table-wrap,
.mini-card,
.support-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 8px 30px rgba(23, 33, 29, 0.05);
}

.feature-card,
.service-card {
  min-height: 210px;
  padding: 24px;
}

.feature-card h3,
.service-card h3,
.mini-card h3,
.support-card h3,
.timeline-card h3,
.account-card h3,
.notice-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
  letter-spacing: 0;
}

.feature-card p,
.service-card p,
.mini-card p,
.support-card p,
.timeline-card p,
.account-card p,
.notice-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.card-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 8px;
  background: var(--mint);
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 900;
}

.service-logo {
  display: inline-grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  margin-bottom: 8px;
  border-radius: 8px;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.service-logo-small {
  width: 28px;
  height: 28px;
  margin: 0;
  font-size: 8px;
}

.logo-wire {
  background: linear-gradient(135deg, #0a7c72, #c9972b);
}

.logo-bank {
  background: #1f5f8f;
}

.logo-zelle {
  background: #6d1ed4;
  font-size: 9px;
  text-transform: none;
}

.logo-btc {
  background: #f7931a;
}

.logo-eth {
  background: #627eea;
}

.logo-usdt {
  background: #26a17b;
  font-size: 8px;
}

.logo-sol {
  background: linear-gradient(135deg, #181b2a 5%, #14f195 50%, #9945ff 100%);
}

.logo-deduct {
  background: #9f2f22;
  font-size: 16px;
}

.logo-generic {
  background: var(--teal-dark);
}

.service-card:nth-child(2n) .card-icon,
.feature-card:nth-child(2n) .card-icon {
  background: var(--gold-soft);
  color: #6f4b00;
}

.service-card:nth-child(3n) .card-icon,
.feature-card:nth-child(3n) .card-icon {
  background: #f7ddd5;
  color: #8a3523;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
  gap: 46px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(280px, 1fr) minmax(0, 0.85fr);
}

.split-copy {
  display: grid;
  gap: 18px;
}

.image-panel {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: grid;
  width: min(360px, calc(100% - 40px));
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(23, 33, 29, 0.82);
  padding: 18px;
  color: #fff;
  backdrop-filter: blur(18px);
}

.image-overlay strong {
  font-size: 28px;
}

.image-overlay span {
  color: rgba(255, 255, 255, 0.78);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 6px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #33413b;
  font-weight: 700;
}

.check-list li::before {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  background: var(--mint);
  color: var(--teal-dark);
  content: "OK";
  font-size: 9px;
  font-weight: 900;
}

.stats-band {
  background: var(--charcoal);
  color: #fff;
}

.stats-band .section-head h2,
.stats-band .section-head p {
  color: #fff;
}

.stats-band .section-head p {
  color: rgba(255, 255, 255, 0.7);
}

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

.stat-tile {
  min-height: 130px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 22px;
}

.stat-tile strong {
  display: block;
  color: #fff;
  font-size: 35px;
  line-height: 1;
}

.stat-tile span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.cta-band {
  background: var(--wash);
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: clamp(22px, 5vw, 46px);
  box-shadow: var(--shadow);
}

.cta-box h2 {
  margin: 0 0 10px;
  font-size: 42px;
  line-height: 1.05;
}

.cta-box p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 72px;
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.86), rgba(23, 33, 29, 0.47)),
    url("assets/averon-hero.png") center / cover no-repeat;
  color: #fff;
}

.page-hero h1,
.page-hero p {
  color: #fff;
}

.page-hero p {
  max-width: 650px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

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

.timeline-card {
  padding: 24px;
}

.timeline-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--teal-dark);
  font-size: 26px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: 22px;
}

.contact-stack {
  display: grid;
  gap: 14px;
}

.contact-stack .notice-card {
  padding: 24px;
}

.auth-shell {
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  background: var(--paper);
}

.auth-visual {
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(28px, 6vw, 78px);
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.84), rgba(23, 33, 29, 0.3)),
    url("assets/averon-hero.png") center / cover no-repeat;
  color: #fff;
}

.auth-visual .brand {
  position: absolute;
  top: 30px;
  left: clamp(24px, 5vw, 60px);
  color: #fff;
}

.auth-visual .brand-tag {
  color: rgba(255, 255, 255, 0.68);
}

.auth-copy {
  display: grid;
  max-width: 620px;
  gap: 20px;
}

.auth-copy h1,
.auth-copy p {
  color: #fff;
}

.auth-copy p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.auth-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.auth-points span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
}

.auth-area {
  display: grid;
  align-items: center;
  padding: 34px;
}

.auth-card {
  width: 100%;
  padding: clamp(24px, 5vw, 38px);
}

.auth-card h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.1;
}

.auth-card > p {
  margin-top: 10px;
}

.auth-form {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field span,
.checkbox-row,
.radio-row {
  color: #34413b;
  font-size: 13px;
  font-weight: 800;
}

.field small,
.auth-switch {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 11px 13px;
  outline: 0;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(8, 122, 112, 0.11);
}

.checkbox-row,
.radio-row {
  display: flex;
  align-items: center;
  gap: 9px;
}

.checkbox-row input,
.radio-row input {
  width: 17px;
  height: 17px;
  accent-color: var(--teal);
}

.auth-bottom {
  display: grid;
  gap: 12px;
  margin-top: 20px;
  text-align: center;
}

.divider {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.divider::before,
.divider::after {
  flex: 1;
  height: 1px;
  background: var(--line);
  content: "";
}

.auth-footnote {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.dashboard-shell {
  display: grid;
  min-height: 100svh;
  grid-template-columns: 280px minmax(0, 1fr);
}

.rail {
  position: sticky;
  top: 0;
  height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 22px;
  overflow-y: auto;
  background: var(--charcoal);
  color: #fff;
  padding: 22px;
}

.rail .brand {
  color: #fff;
}

.rail .brand-tag {
  color: rgba(255, 255, 255, 0.62);
}

.rail-nav {
  display: grid;
  align-content: start;
  gap: 7px;
}

.rail-link {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.76);
  padding: 11px 12px;
  font-weight: 800;
  text-align: left;
}

.rail-link:hover,
.rail-link.active {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.rail-link .icon {
  background: rgba(255, 255, 255, 0.1);
}

.rail-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  padding: 16px;
}

.rail-card strong {
  display: block;
  margin-bottom: 6px;
}

.rail-card span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.5;
}

.dash-main {
  min-width: 0;
  padding: 24px;
}

.dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.dash-title h1 {
  font-size: 40px;
}

.dash-tools {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.dash-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.bank-overview-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr);
  gap: 18px;
  margin-bottom: 18px;
}

.primary-account-panel,
.account-service-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(23, 33, 29, 0.06);
  padding: 20px;
}

.primary-account-panel {
  border-top: 4px solid var(--teal);
}

.account-service-panel {
  border-top: 4px solid var(--gold);
}

.bank-balance-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.bank-balance-row span,
.account-fact span,
.bank-status-row span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.bank-balance-row strong {
  display: block;
  margin: 8px 0 6px;
  color: var(--ink);
  font-size: 38px;
  line-height: 1;
}

.bank-balance-row small,
.bank-status-row small {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.45;
}

.account-fact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.account-fact {
  min-width: 0;
  border-right: 1px solid var(--line);
  background: var(--paper);
  padding: 12px;
}

.account-fact:last-child {
  border-right: 0;
}

.account-fact strong {
  display: block;
  margin-top: 5px;
  color: #26342f;
  font-size: 14px;
  overflow-wrap: anywhere;
}

.bank-status-row {
  display: grid;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding: 13px 0;
}

.bank-status-row:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.bank-status-row strong {
  display: block;
  margin-top: 4px;
  color: #26342f;
  font-size: 18px;
}

.bank-action-bar {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.bank-action {
  display: grid;
  min-height: 116px;
  align-content: center;
  justify-items: start;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #26342f;
  padding: 14px;
  text-align: left;
  box-shadow: 0 10px 28px rgba(23, 33, 29, 0.05);
}

.bank-action:hover,
.bank-action:focus {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.bank-action span {
  font-weight: 900;
}

.bank-action small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.metric-card {
  min-height: 128px;
  padding: 18px;
}

.metric-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.metric-card strong {
  display: block;
  margin-top: 12px;
  font-size: 31px;
  line-height: 1;
}

.metric-card small {
  display: block;
  margin-top: 12px;
  color: var(--success);
  font-weight: 800;
}

.dashboard-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
}

.dashboard-content.single {
  grid-template-columns: minmax(0, 1fr);
}

.panel-stack {
  display: grid;
  align-content: start;
  gap: 18px;
}

.dash-panel {
  min-width: 0;
  padding: 18px;
}

.panel-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.panel-title h2 {
  font-size: 22px;
}

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

.quick-action {
  display: grid;
  min-height: 94px;
  place-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: #26342f;
  padding: 12px;
  font-weight: 800;
  text-align: center;
}

.quick-action .service-logo,
.quick-action .card-icon,
.quick-action .image-icon,
.bank-action .image-icon {
  margin-bottom: 0;
}

.quick-action:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

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

.account-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
}

.account-card strong {
  display: block;
  font-size: 20px;
}

.account-card small {
  color: var(--muted);
  font-weight: 800;
}

.account-identifiers {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 9px;
}

.account-identifiers span {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #26342f;
  padding: 6px 8px;
  font-size: 12px;
  font-weight: 900;
}

.table-wrap {
  overflow: auto;
}

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

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 13px 14px;
  text-align: left;
  vertical-align: middle;
}

th {
  color: #43504a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

td {
  color: #26342f;
  font-size: 14px;
}

tr:last-child td {
  border-bottom: 0;
}

.transaction-row {
  cursor: pointer;
}

.transaction-row:hover td,
.transaction-row:focus td {
  background: #edf7f3;
}

.transaction-row:focus {
  outline: 2px solid var(--teal);
  outline-offset: -2px;
}

.receipt-link {
  min-height: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--teal-dark);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
}

.receipt-link:hover,
.receipt-link:focus {
  border-color: var(--teal);
  background: var(--wash);
}

.receipt-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  overflow: auto;
  background: rgba(13, 27, 35, 0.55);
  padding: 24px;
}

.receipt-card {
  width: min(780px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(13, 27, 35, 0.28);
  color: var(--ink);
  padding: 26px;
}

.receipt-head,
.receipt-brand,
.receipt-actions,
.kyc-status-strip {
  display: flex;
  align-items: center;
}

.receipt-head {
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.receipt-brand {
  gap: 12px;
}

.receipt-brand h2 {
  margin: 0;
  font-size: 24px;
}

.receipt-brand p,
.receipt-summary small,
.receipt-footer p {
  color: var(--muted);
}

.receipt-brand p {
  margin: 4px 0 0;
  font-weight: 800;
}

.receipt-summary {
  margin: 22px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--wash);
  padding: 18px;
}

.receipt-summary span,
.kyc-status-strip span,
.detail-line span,
.receipt-line span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.receipt-summary strong {
  display: block;
  margin: 6px 0;
  color: var(--teal-dark);
  font-size: 36px;
  line-height: 1.05;
}

.receipt-grid,
.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.receipt-line,
.detail-line {
  min-width: 0;
  border-bottom: 1px solid var(--line);
  padding: 12px;
}

.receipt-line:nth-child(odd),
.detail-line:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.receipt-line strong,
.detail-line strong {
  display: block;
  margin-top: 5px;
  color: #26342f;
  font-size: 14px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.receipt-footer {
  margin-top: 18px;
}

.receipt-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 16px;
}

.bank-receipt {
  width: min(8.1in, 100%);
  padding: 30px;
}

.receipt-letterhead {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 3px solid var(--teal-dark);
  padding-bottom: 18px;
}

.receipt-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
}

.receipt-logo {
  width: 52px;
  height: 52px;
  border-radius: 8px;
}

.receipt-lockup h2 {
  margin: 0;
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
}

.receipt-lockup p {
  margin: 6px 0 0;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.receipt-bank-meta {
  display: grid;
  justify-items: end;
  gap: 4px;
  max-width: 300px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  text-align: right;
}

.receipt-bank-meta strong {
  color: var(--ink);
  font-size: 13px;
  text-transform: uppercase;
}

.receipt-document-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.receipt-document-title span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.receipt-document-title h1 {
  margin: 6px 0;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.05;
}

.receipt-document-title p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.receipt-amount-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1fr);
  gap: 16px;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  background: #fbfcfb;
  padding: 18px;
}

.receipt-amount-panel span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.receipt-amount-panel strong {
  display: block;
  margin-top: 7px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.receipt-amount-panel > div:first-child strong {
  color: var(--teal-dark);
  font-size: 38px;
}

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

.receipt-section {
  margin-top: 14px;
  break-inside: avoid;
  page-break-inside: avoid;
}

.receipt-section h3 {
  margin: 0 0 9px;
  color: var(--ink);
  font-size: 15px;
  text-transform: uppercase;
}

.receipt-disclaimer {
  font-size: 12px;
}

.status {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.status-success {
  background: #dff3e9;
  color: #0d6245;
}

.status-pending {
  background: var(--gold-soft);
  color: #705000;
}

.status-review {
  background: #f7ddd5;
  color: #84321f;
}

.status-info {
  background: #ddeeea;
  color: #0d655d;
}

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

.mini-card,
.support-card,
.notice-card {
  padding: 16px;
}

.balance-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #0a7c72, #26332e 68%, #c9972b);
  color: #fff;
  padding: 22px;
  box-shadow: var(--shadow);
}

.balance-card span,
.balance-card small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.balance-card strong {
  display: block;
  margin: 18px 0;
  font-size: 42px;
  line-height: 1;
}

.card-chip {
  width: 44px;
  height: 32px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)),
    var(--gold);
}

.form-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.65fr);
  gap: 18px;
}

.dormant-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  background: rgba(13, 27, 35, 0.58);
  padding: 22px;
}

.dormant-modal {
  display: grid;
  justify-items: center;
  gap: 16px;
  width: min(440px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(13, 27, 35, 0.3);
  padding: 26px;
  text-align: center;
}

.dormant-modal-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 8px;
  background: #fff4f0;
}

.dormant-modal h2 {
  margin: 6px 0 8px;
  color: var(--ink);
  font-size: 26px;
}

.dormant-modal p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.dormant-modal-actions {
  display: flex;
  width: 100%;
  gap: 10px;
  justify-content: center;
}

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

.mode-tabs {
  display: inline-grid;
  grid-auto-flow: column;
  gap: 8px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f5f8f6;
  padding: 6px;
}

.mode-tabs button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #43504a;
  padding: 8px 13px;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.mode-tabs button.active {
  background: var(--paper);
  color: var(--teal-dark);
  box-shadow: 0 10px 24px rgba(10, 124, 114, 0.1);
}

.radio-row {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 11px 12px;
}

.holding-list {
  display: grid;
  gap: 0;
  margin-top: 14px;
  border-top: 1px solid var(--line);
}

.holding-card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.holding-card > div {
  min-width: 0;
  flex: 1;
}

.holding-card h3 {
  margin: 0;
  font-size: 14px;
}

.holding-card p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.holding-card strong {
  color: var(--teal-dark);
  font-size: 13px;
  text-align: right;
  white-space: nowrap;
}

.notice-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.asset-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 6px 8px 6px 6px;
  color: #26342f;
  font-size: 12px;
  font-weight: 900;
}

.crypto-market-board {
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 12px;
}

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

.crypto-price-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
  padding: 10px;
}

.crypto-price-head {
  display: flex;
  align-items: center;
}

.crypto-price-head {
  gap: 8px;
}

.crypto-price-head > div {
  min-width: 0;
  flex: 1;
}

.crypto-price-head strong {
  display: block;
  color: #26342f;
  font-size: 13px;
}

.crypto-price-head span:not(.market-change) {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.market-change {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  border-radius: 999px;
  padding: 4px 7px;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.market-up {
  background: #dff3e9;
  color: #0d6245;
}

.market-down {
  background: #f7ddd5;
  color: #84321f;
}

.crypto-price-value {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.05;
}

.crypto-price-head .service-logo {
  margin-bottom: 0;
}

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

.admin-table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.table-subtext {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.selected-row td {
  background: var(--wash);
}

.file-field input[type="file"] {
  min-height: 47px;
  padding: 10px;
}

.kyc-status-strip {
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 14px;
}

.kyc-status-strip > div {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.kyc-status-strip strong {
  color: #26342f;
  font-size: 14px;
}

.kyc-admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 18px;
  align-items: start;
}

.kyc-list,
.kyc-detail-panel {
  min-width: 0;
}

.kyc-upload-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.kyc-upload-preview {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.kyc-upload-preview img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #e7eeeb;
}

.kyc-upload-preview figcaption {
  display: grid;
  gap: 4px;
  padding: 10px;
}

.kyc-upload-preview figcaption strong {
  color: #26342f;
  font-size: 13px;
}

.kyc-upload-preview figcaption span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.kyc-detail-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 16px;
}

.panel-title.compact {
  align-items: center;
  margin-bottom: 14px;
}

.panel-title.compact h3 {
  margin: 0;
  font-size: 20px;
}

.panel-title.compact p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.activity-list,
.alert-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.activity-item,
.alert-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 12px;
}

.activity-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
  background: var(--mint);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
}

.activity-item strong,
.alert-item strong {
  display: block;
  margin-bottom: 3px;
}

.activity-item span,
.alert-item span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  display: none;
  max-width: min(390px, calc(100% - 36px));
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: var(--charcoal);
  color: #fff;
  padding: 14px 16px;
  box-shadow: var(--shadow);
}

.toast.show {
  display: block;
}

.site-footer {
  background: #1f2925;
  color: #fff;
  padding: 54px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) repeat(3, minmax(140px, 0.5fr));
  gap: 28px;
}

.site-footer .brand {
  color: #fff;
}

.footer-copy {
  max-width: 430px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.footer-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer h3 {
  margin: 0 0 14px;
  font-size: 15px;
}

.site-footer a,
.site-footer li,
.footer-bottom {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  padding-top: 22px;
}

.empty-state {
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 22px;
  color: var(--muted);
  text-align: center;
}

.hide {
  display: none !important;
}

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

  .menu-toggle {
    display: inline-flex;
  }

  .section-head,
  .split,
  .split.reverse,
  .contact-grid,
  .form-panel,
  .kyc-admin-layout,
  .bank-overview-layout,
  .dashboard-content {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .stat-grid,
  .timeline,
  .support-grid,
  .crypto-price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-shell {
    grid-template-columns: 1fr;
  }

  .receipt-card {
    align-self: start;
  }

  .dormant-modal-actions {
    flex-direction: column;
  }

  .rail {
    position: relative;
    height: auto;
    grid-template-rows: auto auto auto;
  }

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

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

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

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

  .auth-shell {
    grid-template-columns: 1fr;
  }

  .auth-visual {
    min-height: 480px;
  }
}

@media (max-width: 760px) {
  .nav,
  .container,
  .hero-inner {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 62px 0;
  }

  .hero {
    min-height: 78svh;
    background-position: 62% center;
  }

  .hero-inner {
    padding: 50px 0 64px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 52px;
  }

  .section-head h2,
  .split-copy h2,
  .auth-copy h1,
  .panel-title h2,
  .modal h2 {
    font-size: 36px;
  }

  .cta-box h2 {
    font-size: 34px;
  }

  .dash-title h1 {
    font-size: 32px;
  }

  .metric-card strong {
    font-size: 28px;
  }

  .balance-card strong {
    font-size: 36px;
  }

  .hero-badges,
  .feature-grid,
  .stat-grid,
  .timeline,
  .support-grid,
  .crypto-price-grid,
  .quick-grid,
  .mini-grid,
  .form-grid,
  .radio-grid,
  .rail-nav,
  .dash-grid,
  .bank-action-bar,
  .bank-balance-row,
  .account-fact-grid,
  .receipt-section-grid,
  .receipt-amount-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .mode-tabs {
    width: 100%;
    grid-auto-flow: row;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-box,
  .dash-topbar,
  .account-card,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .cta-box,
  .dash-topbar {
    display: grid;
  }

  .dash-tools,
  .hero-actions,
  .split-actions,
  .form-actions,
  .inline-actions {
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .crypto-submit-btn {
    width: 100%;
    justify-self: stretch;
  }

  .auth-area {
    padding: 18px;
  }

  .auth-visual {
    min-height: 430px;
  }

  .auth-points {
    grid-template-columns: 1fr;
  }

  .dash-main {
    padding: 16px;
  }

  .panel-title {
    display: grid;
  }

  .image-panel,
  .image-panel img {
    min-height: 380px;
  }

  .activity-item,
  .alert-item {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .receipt-grid,
  .detail-grid,
  .kyc-upload-grid {
    grid-template-columns: 1fr;
  }

  .receipt-line:nth-child(odd),
  .detail-line:nth-child(odd) {
    border-right: 0;
  }

  .receipt-head,
  .receipt-letterhead,
  .receipt-document-title,
  .kyc-status-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .receipt-bank-meta {
    justify-items: start;
    text-align: left;
  }

  .activity-item > .status,
  .alert-item > .status {
    grid-column: 1 / -1;
    width: fit-content;
  }
}

@media (max-width: 430px) {
  .brand-tag {
    display: none;
  }

  .hero p,
  .page-hero p,
  .auth-copy p {
    font-size: 16px;
  }

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

  .section-head h2,
  .split-copy h2,
  .auth-copy h1,
  .modal h2 {
    font-size: 32px;
  }

  .glass-stat,
  .stat-tile,
  .feature-card,
  .service-card,
  .dash-panel,
  .auth-card {
    padding: 16px;
  }
}

@page {
  size: Letter;
  margin: 0.45in;
}

@media print {
  body * {
    visibility: hidden;
  }

  .receipt-overlay,
  .receipt-overlay * {
    visibility: visible;
  }

  .receipt-overlay {
    position: absolute;
    inset: 0;
    display: block;
    overflow: visible;
    background: #fff;
    padding: 0;
  }

  .receipt-card {
    width: auto;
    border: 0;
    box-shadow: none;
    padding: 0;
  }

  .bank-receipt {
    font-size: 11px;
  }

  .receipt-letterhead {
    padding-bottom: 12px;
  }

  .receipt-logo {
    width: 42px;
    height: 42px;
  }

  .receipt-lockup h2 {
    font-size: 22px;
  }

  .receipt-document-title {
    padding: 12px 0;
  }

  .receipt-document-title h1 {
    font-size: 24px;
  }

  .receipt-amount-panel {
    margin: 12px 0;
    padding: 12px;
  }

  .receipt-amount-panel > div:first-child strong {
    font-size: 30px;
  }

  .receipt-line {
    padding: 8px;
  }

  .receipt-section {
    margin-top: 10px;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .receipt-footer {
    margin-top: 12px;
  }

  .receipt-actions {
    display: none;
  }
}
