:root {
  --bg: #f5f7fb;
  --bg-panel: #eef1f8;
  --surface: #ffffff;
  --indigo: #1a2040;
  --indigo-mid: #2a3260;
  --indigo-soft: #3d4678;
  --lavender: #e8ecf5;
  --lavender-mid: #d4dced;
  --text: #141828;
  --text-secondary: #4a5068;
  --muted: #6b7190;
  --line: rgba(26, 32, 64, 0.12);
  --line-strong: rgba(26, 32, 64, 0.2);
  --lime: #b8e600;
  --lime-dark: #9bc400;
  --lime-glow: rgba(184, 230, 0, 0.18);
  --turquoise: #14b8a6;
  --turquoise-soft: rgba(20, 184, 166, 0.14);
  --status-active: #14b8a6;
  --container: min(100% - 2rem, 72rem);
  --narrow: min(100% - 2rem, 42rem);
  --font: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Plus Jakarta Sans", var(--font);
  --radius: 0.375rem;
  --radius-md: 0.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 20rem;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 16ch;
  margin-bottom: 1rem;
  font-size: clamp(1.875rem, 4.5vw, 2.625rem);
}

h2 {
  margin-bottom: 0.875rem;
  font-size: clamp(1.375rem, 2.8vw, 1.75rem);
}

h3 {
  margin-bottom: 0.375rem;
  font-size: 1.0625rem;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 100;
  padding: 0.625rem 1rem;
  background: var(--indigo);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

/* Header — deep indigo, distinct from AR light header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--indigo);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: var(--container);
  margin-inline: auto;
  padding: 0.75rem 0;
}

.brand img {
  width: auto;
  height: 2.25rem;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  padding: 0.5rem 0.875rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  color: #fff;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
}

.primary-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.125rem 1.25rem;
  margin-left: auto;
}

.primary-nav a {
  padding: 0.375rem 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
}

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

.header-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.625rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.header-badge strong {
  color: var(--lime);
}

/* Hero — full navy, asymmetric fintech layout */
.hero {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: linear-gradient(165deg, var(--indigo) 0%, #151b38 55%, var(--indigo-mid) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.75rem, 3.5vw, 3rem);
  align-items: center;
  width: var(--container);
  margin-inline: auto;
}

.hero-copy {
  color: #fff;
}

.hero-copy .eyebrow {
  margin-bottom: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.hero-copy h1 {
  color: #fff;
  max-width: 14ch;
}

.hero-lead {
  max-width: 40rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.0625rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.375rem;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.btn-primary {
  background: var(--lime);
  color: var(--indigo);
  border: 1px solid var(--lime);
}

.btn-primary:hover {
  background: var(--lime-dark);
  border-color: var(--lime-dark);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.06);
}

/* Hero visual — premium fintech composition */
.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-left: 0.5rem;
}

.tx-scene {
  position: relative;
  width: 100%;
  max-width: 27.5rem;
  margin-left: auto;
  margin-right: -0.25rem;
  padding: 2rem 0.25rem 0.125rem;
}

.tx-depth {
  position: absolute;
  inset: 1.75rem 0.5rem 2.5rem 0.75rem;
  z-index: 0;
  pointer-events: none;
}

.tx-depth-sheet {
  position: absolute;
  top: 0.5rem;
  right: 0;
  width: 92%;
  height: 88%;
  background: linear-gradient(160deg, rgba(61, 70, 120, 0.35) 0%, rgba(42, 50, 96, 0.2) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.75rem;
  transform: rotate(3deg) translate(0.625rem, 0.375rem);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.18);
}

.tx-depth-card {
  position: absolute;
  bottom: 0.25rem;
  left: 0;
  width: 78%;
  height: 62%;
  background: rgba(26, 32, 64, 0.55);
  border: 1px solid rgba(20, 184, 166, 0.12);
  border-radius: 0.625rem;
  transform: rotate(-2.5deg) translate(-0.375rem, 0.5rem);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.22);
}

.tx-pay-pills {
  position: absolute;
  top: 0.25rem;
  left: 0.625rem;
  right: 0.375rem;
  z-index: 4;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.4375rem 0.625rem;
  max-width: calc(100% - 0.5rem);
}

.tx-pay-pill {
  width: fit-content;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 0.375rem 1.125rem rgba(0, 0, 0, 0.16);
}

.tx-pay-pill--primary {
  display: grid;
  gap: 0.125rem;
  padding: 0.4375rem 0.75rem;
  border-radius: 0.625rem;
}

.tx-pay-label {
  color: var(--indigo-soft);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.tx-pay-methods {
  color: var(--indigo);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.tx-pay-pill--crypto {
  padding: 0.3125rem 0.625rem;
  border-radius: 999px;
  color: var(--indigo);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0.1875rem;
}

.tx-stack {
  position: relative;
  z-index: 2;
  transform: perspective(880px) rotateY(-5deg) rotateX(2deg);
  transform-origin: center center;
}

.tx-unit {
  overflow: hidden;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(20, 184, 166, 0.38);
  border-radius: 0.75rem;
  box-shadow:
    0 1.375rem 2.75rem rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  backdrop-filter: blur(8px);
}

.tx-card-main {
  padding: 1.375rem 1.75rem 1rem;
}

.tx-card-label {
  margin-bottom: 0.375rem;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.tx-card-title {
  margin: 0 0 0.875rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.tx-card-field {
  display: grid;
  gap: 0.25rem;
  margin-bottom: 0.625rem;
}

.tx-card-field-label {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.tx-card-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4375rem;
  color: var(--lime);
  font-size: 0.875rem;
  font-weight: 600;
  text-shadow: 0 0 12px rgba(184, 230, 0, 0.15);
}

.tx-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--turquoise);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(20, 184, 166, 0.28), 0 0 8px rgba(20, 184, 166, 0.35);
}

.tx-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4375rem;
}

.tx-meta-chip {
  padding: 0.25rem 0.5625rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.tx-flow-bar {
  padding: 0.75rem 1.25rem 0.8125rem;
  background: rgba(0, 0, 0, 0.18);
  border-top: 1px solid rgba(20, 184, 166, 0.22);
}

.tx-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.25rem 0.125rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tx-flow li {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.tx-flow li.is-done {
  color: rgba(255, 255, 255, 0.68);
}

.tx-flow li.is-active {
  color: var(--lime);
  text-shadow: 0 0 10px rgba(184, 230, 0, 0.2);
}

.tx-flow li:not(:last-child)::after {
  content: "→";
  margin-left: 0.3125rem;
  color: rgba(20, 184, 166, 0.5);
  font-size: 0.6875rem;
  font-weight: 400;
}

.tx-caption {
  position: relative;
  z-index: 3;
  margin: 0.625rem 0 0;
  padding: 0 0.25rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.625rem;
  line-height: 1.45;
  text-align: center;
}

/* Commercial access — compact horizontal banner */
.access-panel {
  width: var(--container);
  margin: clamp(1.25rem, 2.5vw, 1.5rem) auto 0;
  padding: clamp(0.65rem, 1.5vw, 0.85rem) clamp(1.125rem, 2.5vw, 1.5rem);
  background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-mid) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
}

.access-panel-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.75rem;
}

.access-copy {
  flex: 1 1 18rem;
  color: #fff;
}

.access-eyebrow {
  margin-bottom: 0.375rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.access-copy h2 {
  margin-bottom: 0.375rem;
  color: #fff;
  font-size: clamp(1.0625rem, 2.2vw, 1.25rem);
  line-height: 1.2;
}

.access-copy > p:not(.access-disclosure) {
  max-width: 46ch;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.875rem;
  line-height: 1.45;
}

.access-disclosure {
  max-width: 56ch;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.6875rem;
  line-height: 1.4;
}

.access-action {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.access-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: var(--lime);
  color: var(--indigo);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.access-btn.is-inactive {
  opacity: 0.85;
  cursor: not-allowed;
}

.access-age {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* Sections */
.section {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}

.section-muted {
  background: var(--bg-panel);
  border-block: 1px solid var(--line);
}

.section-inner {
  width: var(--container);
  margin-inline: auto;
}

.section-inner.narrow {
  width: var(--narrow);
}

.section-lead {
  max-width: 58ch;
  margin-bottom: 1.75rem;
  color: var(--text-secondary);
  font-size: 1.0625rem;
}

.eyebrow {
  margin-bottom: 0.625rem;
  color: var(--muted);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* Procedure steps — 5 columns, no empty cell */
.procedure-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.procedure-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.875rem;
  padding: 1.125rem 1rem;
  background: var(--surface);
  border-right: 1px solid var(--line);
  border-bottom: 0;
}

.procedure-item:nth-child(5n) {
  border-right: 0;
}

.procedure-num {
  color: var(--indigo-soft);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.procedure-item h3 {
  margin-bottom: 0.25rem;
}

.procedure-item p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

/* Payment methods block */
.payment-block {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .payment-block {
    grid-template-columns: 1fr 1.15fr;
    align-items: start;
  }
}

.payment-label {
  margin-bottom: 0.75rem;
  color: var(--muted);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.method-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}

.method-chip {
  display: inline-block;
  padding: 0.5rem 0.875rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
}

.stat-min {
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.25rem;
  background: var(--indigo);
  color: #fff;
  border: 1px solid rgba(20, 184, 166, 0.25);
  border-radius: var(--radius-md);
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--lime);
}

.payment-crypto h3 {
  margin-bottom: 0.5rem;
  font-size: 1.0625rem;
}

.payment-crypto > p {
  max-width: 52ch;
  margin-bottom: 1rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.stable-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 0.625rem;
}

.crypto-chip {
  padding: 0.375rem 0.625rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.8125rem;
  font-weight: 700;
}

.crypto-chip.is-primary {
  background: var(--turquoise-soft);
  border-color: rgba(20, 184, 166, 0.3);
  color: var(--turquoise);
}

.network-tag {
  padding: 0.25rem 0.5rem;
  color: var(--muted);
  background: var(--bg);
  font-size: 0.6875rem;
  font-weight: 600;
  border-radius: 999px;
}

.asset-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin: 1rem 0;
}

.asset-chip {
  padding: 0.3125rem 0.5625rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.crypto-note {
  padding: 0.875rem 1rem;
  background: var(--turquoise-soft);
  border-left: 3px solid var(--turquoise);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.crypto-note p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.8125rem;
}

/* Legacy table — unused after payment facts update */
.payment-table-block {
  display: grid;
  gap: 1rem;
}

.payment-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.payment-table caption {
  padding: 0.875rem 1.125rem;
  background: var(--lavender);
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  text-align: left;
}

.payment-table tbody tr {
  border-bottom: 1px solid var(--line);
}

.payment-table tbody tr:last-child {
  border-bottom: 0;
}

.payment-table td {
  padding: 0.875rem 1.125rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.payment-table td:first-child {
  width: 40%;
  color: var(--muted);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Status board — 2x2 grid */
.status-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  max-width: 28rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.status-board-item {
  padding: 1rem 1.125rem;
  background: var(--surface);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--text-secondary);
  font-size: 0.9375rem;
  font-weight: 600;
}

.status-board-item:nth-child(2n) {
  border-right: 0;
}

.status-board-item:nth-child(n + 3) {
  border-bottom: 0;
}

.status-board-item.is-active {
  background: var(--lavender);
  color: var(--indigo);
}

/* Checklist */
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.check-list li:last-child {
  border-bottom: 0;
}

.check-list li::before {
  content: "";
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.125rem;
  background: var(--lime-glow);
  border: 1.5px solid var(--lime-dark);
  border-radius: var(--radius);
}

.check-list.numbered {
  counter-reset: checklist;
}

.check-list.numbered li::before {
  content: counter(checklist);
  counter-increment: checklist;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--indigo);
  border-color: var(--indigo);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
}

/* Deposits comparison */
.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.compare-col {
  padding: 1.25rem 1.125rem;
  background: var(--surface);
}

.compare-col + .compare-col {
  border-left: 1px solid var(--line);
}

.compare-col h3 {
  margin-bottom: 0.5rem;
  color: var(--indigo);
  font-size: 1rem;
}

.compare-col p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.compare-note {
  max-width: 58ch;
  margin-top: 1rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

/* Summary CTA */
.summary-cta {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.summary-cta .access-disclosure {
  color: var(--muted);
}

.summary-cta .btn-primary {
  width: fit-content;
  margin-top: 0.5rem;
}

.summary-cta .btn-primary.is-inactive {
  opacity: 0.85;
  cursor: not-allowed;
}

/* FAQ accordion */
.faq-section .section-inner {
  max-width: 48rem;
}

.faq-grid {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-grid details {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.faq-grid details:last-child {
  border-bottom: 0;
}

.faq-grid summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.125rem;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

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

.faq-grid summary::after {
  content: "+";
  flex-shrink: 0;
  color: var(--indigo-soft);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
}

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

.faq-grid summary:focus-visible {
  outline: 2px solid var(--status-active);
  outline-offset: -2px;
}

.faq-answer {
  padding: 0 1.125rem 1rem;
}

.faq-answer p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

/* Footer — dark indigo */
.site-footer {
  padding: clamp(2rem, 4vw, 3rem) 0;
  background: var(--indigo);
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  display: grid;
  gap: 1.5rem;
  width: var(--container);
  margin-inline: auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem 2rem;
}

.footer-age strong {
  display: inline-block;
  margin-bottom: 0.375rem;
  color: var(--lime);
  font-size: 1.125rem;
}

.footer-age p {
  margin: 0;
  max-width: 28ch;
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
}

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

.footer-note {
  margin: 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8125rem;
}

/* Responsive */
@media (max-width: 1199px) {
  .procedure-grid {
    grid-template-columns: repeat(6, 1fr);
  }

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

  .procedure-item:nth-child(1) {
    grid-column: 1 / 3;
  }

  .procedure-item:nth-child(2) {
    grid-column: 3 / 5;
  }

  .procedure-item:nth-child(3) {
    grid-column: 5 / 7;
    border-right: 0;
  }

  .procedure-item:nth-child(4) {
    grid-column: 1 / 4;
    border-bottom: 0;
  }

  .procedure-item:nth-child(5) {
    grid-column: 4 / 7;
    border-right: 0;
    border-bottom: 0;
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-visual {
    justify-content: center;
    padding-left: 0;
  }

  .tx-scene {
    max-width: 24rem;
    margin-inline: auto;
    margin-right: auto;
    padding-top: 1.75rem;
  }

  .tx-stack {
    transform: none;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .primary-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 0.75rem 1rem 1rem;
    background: var(--indigo);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-header.is-open .primary-nav {
    display: flex;
  }

  .primary-nav a {
    padding: 0.625rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .header-inner {
    position: relative;
    flex-wrap: wrap;
  }

  .header-badge {
    order: 3;
  }

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

  .procedure-item {
    grid-column: auto !important;
    border-right: 0 !important;
  }

  .procedure-item:not(:last-child) {
    border-bottom: 1px solid var(--line) !important;
  }

  .procedure-item:last-child {
    border-bottom: 0 !important;
  }

  .compare-row {
    grid-template-columns: 1fr;
  }

  .compare-col + .compare-col {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .access-panel-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .access-action {
    justify-content: flex-start;
  }

  .status-board {
    max-width: none;
  }

  .tx-scene {
    max-width: min(100%, 22rem);
    margin-inline: auto;
    padding-top: 1.25rem;
    padding-inline: 0.125rem;
  }

  .tx-pay-pills {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 0.4375rem 0.625rem;
    margin-bottom: 0.75rem;
  }

  .tx-pay-pill--crypto {
    margin-left: 0;
    margin-bottom: 0.125rem;
  }

  .tx-depth {
    inset: 1.25rem 0.25rem 2.25rem 0.25rem;
  }

  .tx-flow {
    justify-content: center;
    gap: 0.25rem 0.375rem;
  }

  .tx-flow li {
    font-size: 0.6875rem;
  }
}

@media (max-width: 390px) {
  .hero-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}

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