:root {
  --navy: #0F172A;
  --navy-2: #0B1220;
  --navy-3: #111a2e;
  --white: #F8FAFC;
  --muted: #94A3B8;
  --muted-2: #64748B;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --crimson: #D52B1E;
  --crimson-2: #B71D12;
  --emerald: #059669;
  --emerald-2: #10B981;
  --gold: #D97706;
  --gold-2: #F59E0B;
  --panel: rgba(30, 41, 59, 0.70);
  --panel-2: rgba(30, 41, 59, 0.55);
  --radius: 16px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--navy);
  color: var(--white);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

body {
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(213, 43, 30, 0.10), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(5, 150, 105, 0.08), transparent 60%),
    radial-gradient(700px 500px at 50% 110%, rgba(217, 119, 6, 0.06), transparent 60%),
    var(--navy);
  min-height: 100vh;
  overflow-x: hidden;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 640px) {
  .container {
    padding: 0 18px;
  }
}

/* ----------- NAV ----------- */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 14px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 10px 40px -20px rgba(0, 0, 0, 0.6);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-badge {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0B1220, #1a2542);
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
}

.brand-badge svg {
  display: block;
}

.brand-name {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.brand-name span {
  color: var(--muted);
  font-weight: 500;
  display: block;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 14px;
  color: #CBD5E1;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  font-weight: 500;
  white-space: nowrap;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 3px;
  font-size: 12px;
  font-weight: 600;
}

.lang-toggle button {
  padding: 6px 10px;
  border-radius: 7px;
  color: var(--muted);
  transition: background 0.15s, color 0.15s;
}

.lang-toggle button.active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 12px;
  padding: 10px 16px;
  transition: transform 0.12s ease, box-shadow 0.18s ease, background 0.18s;
  min-height: 44px;
  line-height: 1;
  letter-spacing: -0.005em;
  text-decoration: none;
}

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

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-2);
  color: var(--white);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-primary {
  background: linear-gradient(180deg, #E23325 0%, #C1231A 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 24px -8px rgba(213, 43, 30, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  box-shadow: 0 10px 28px -6px rgba(213, 43, 30, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-lg {
  padding: 14px 20px;
  font-size: 15px;
  border-radius: 14px;
}

.icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .nav {
    grid-template-columns: auto auto;
  }
  .nav-links {
    display: none;
  }
  .brand-name span {
    display: none;
  }
}

@media (max-width: 520px) {
  .nav-actions .btn-ghost {
    display: none;
  }
}

/* ----------- HERO ----------- */
.hero {
  padding: 64px 0 40px;
  position: relative;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(5, 150, 105, 0.12);
  border: 1px solid rgba(5, 150, 105, 0.35);
  color: #6EE7B7;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  position: relative;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

h1.hero-title {
  font-size: clamp(36px, 5.6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.028em;
  font-weight: 800;
  margin: 22px 0 20px;
  max-width: 20ch;
  text-wrap: balance;
}

h1.hero-title .accent {
  background: linear-gradient(180deg, #F8FAFC 0%, #94A3B8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: #CBD5E1;
  max-width: 62ch;
  line-height: 1.6;
  text-wrap: pretty;
}

.hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.metric {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.metric::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 40%);
  pointer-events: none;
}

.metric-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.metric-value {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 8px 0 4px;
  font-feature-settings: "tnum" 1;
}

.metric-desc {
  font-size: 13px;
  color: #CBD5E1;
}

.metric.v-crimson .metric-value {
  color: #FCA5A5;
}

.metric.v-gold .metric-value {
  color: #FCD34D;
}

.metric.v-emerald .metric-value {
  color: #6EE7B7;
}

@media (max-width: 820px) {
  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ----------- SECTION HEAD ----------- */
section {
  padding: 80px 0;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--muted-2);
}

h2.section-title {
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: -0.022em;
  font-weight: 700;
  margin: 14px 0 10px;
  max-width: 22ch;
  text-wrap: balance;
  line-height: 1.08;
}

.section-sub {
  color: #CBD5E1;
  max-width: 64ch;
  font-size: 16px;
  line-height: 1.6;
}

/* ----------- CALCULATOR ----------- */
.calc {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  margin-top: 40px;
  box-shadow: 0 30px 80px -40px rgba(0, 0, 0, 0.7);
}

.calc-side {
  padding: 32px 32px;
}

.calc-left {
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.35), rgba(15, 23, 42, 0.0));
}

.calc-right {
  background: linear-gradient(160deg, rgba(5, 150, 105, 0.06), transparent 60%);
}

.calc h3 {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 20px;
}

.field {
  display: block;
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 13px;
  color: #CBD5E1;
  margin-bottom: 8px;
  font-weight: 500;
}

.select, .field select {
  width: 100%;
  appearance: none;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  color: var(--white);
  font-size: 14px;
  font-family: inherit;
  padding: 12px 40px 12px 14px;
  min-height: 44px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  transition: border-color 0.15s;
}

.select:focus, .field select:focus {
  outline: none;
  border-color: rgba(213, 43, 30, 0.6);
}

.radio-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.radio {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--line-2);
  cursor: pointer;
  font-size: 13px;
  transition: border-color 0.15s, background 0.15s;
  min-height: 44px;
  user-select: none;
}

.radio input {
  display: none;
}

.radio .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--muted);
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.15s;
}

.radio.checked {
  border-color: rgba(5, 150, 105, 0.6);
  background: rgba(5, 150, 105, 0.08);
}

.radio.checked .dot {
  border-color: var(--emerald-2);
}

.radio.checked .dot::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: var(--emerald-2);
  border-radius: 50%;
}

.verdict {
  display: flex;
  flex-direction: column;
}

.verdict-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.verdict-amount {
  font-size: clamp(44px, 6vw, 68px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 14px 0 8px;
  font-feature-settings: "tnum" 1;
  background: linear-gradient(180deg, #F8FAFC, #94A3B8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.verdict-amount .cur {
  font-size: 0.42em;
  color: #94A3B8;
  font-weight: 600;
  margin-right: 8px;
  -webkit-text-fill-color: #94A3B8;
}

.verdict-amount .per {
  font-size: 0.28em;
  color: var(--muted);
  font-weight: 500;
  -webkit-text-fill-color: #94A3B8;
}

.verdict-note {
  font-size: 13px;
  color: #94A3B8;
  margin-bottom: 22px;
  min-height: 20px;
}

.gauge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(5, 150, 105, 0.10);
  border: 1px solid rgba(5, 150, 105, 0.35);
  padding: 14px 16px;
  border-radius: 12px;
  margin-bottom: 18px;
  transition: all 0.2s ease;
}

.gauge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #34D399, #059669);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 0 24px rgba(16, 185, 129, 0.4);
}

.gauge-icon svg {
  color: #0F172A;
}

.gauge-text {
  flex: 1;
}

.gauge-title {
  font-size: 14px;
  font-weight: 600;
  color: #6EE7B7;
}

.gauge-sub {
  font-size: 12px;
  color: #94A3B8;
  margin-top: 2px;
  line-height: 1.4;
}

.legal-note {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(217, 119, 6, 0.08);
  border: 1px solid rgba(217, 119, 6, 0.28);
}

.legal-note svg {
  color: var(--gold-2);
  flex-shrink: 0;
  margin-top: 2px;
}

.legal-note p {
  margin: 0;
  font-size: 13px;
  color: #FDE68A;
  line-height: 1.55;
}

.legal-note strong {
  color: #FDE68A;
  font-weight: 600;
}

@media (max-width: 820px) {
  .calc {
    grid-template-columns: 1fr;
  }
  .calc-left {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .calc-side {
    padding: 26px 22px;
  }
}

/* ----------- SOLIDARITY ----------- */
.sol-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  margin-top: 40px;
  align-items: start;
}

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

.sol-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.split-viz {
  position: relative;
  height: 180px;
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line-2);
  margin: 8px 0 20px;
}

.split-70 {
  flex: 0 0 70%;
  background: linear-gradient(135deg, #0B1220, #1e293b);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line-2);
}

.split-30 {
  flex: 0 0 30%;
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.22), rgba(217, 119, 6, 0.08));
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.split-30::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0 8px, rgba(217, 119, 6, 0.06) 8px 9px);
  pointer-events: none;
}

.split-pct {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-feature-settings: "tnum" 1;
}

.split-70 .split-pct {
  color: #CBD5E1;
}

.split-30 .split-pct {
  color: #FCD34D;
}

.split-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.split-30 .split-label {
  color: #FCD34D;
  opacity: 0.9;
}

.split-desc {
  font-size: 12px;
  line-height: 1.45;
  color: #CBD5E1;
  position: relative;
  z-index: 1;
}

.split-30 .split-desc {
  color: #FEF3C7;
}

.ledger {
  overflow: hidden;
}

.ledger-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 6px;
}

.ledger-head h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.ledger-head .live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #6EE7B7;
  font-weight: 600;
}

.table-wrap {
  overflow-x: auto;
  margin: 0 -8px;
}

table.ledger-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 13px;
}

.ledger-table th {
  text-align: left;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  padding: 14px 8px;
  border-bottom: 1px solid var(--line);
}

.ledger-table td {
  padding: 14px 8px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

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

.ledger-table tbody tr {
  transition: background 0.15s ease;
}

.ledger-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.ledger-table .col-date {
  color: #CBD5E1;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  white-space: nowrap;
}

.ledger-table .col-amount {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  color: #FCD34D;
  text-align: right;
  white-space: nowrap;
}

.ledger-table .col-hash {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #94A3B8;
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.15s;
}

.ledger-table .col-hash:hover {
  color: #6EE7B7;
  text-decoration: underline;
}

.recipient-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  background: rgba(217, 119, 6, 0.10);
  border: 1px solid rgba(217, 119, 6, 0.28);
  color: #FCD34D;
  white-space: nowrap;
}

.recipient-tag.cba {
  background: rgba(5, 150, 105, 0.10);
  border-color: rgba(5, 150, 105, 0.28);
  color: #6EE7B7;
}

.pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-2);
  color: #CBD5E1;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  min-height: 32px;
}

.pdf-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.ledger-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 12px;
}

.ledger-root {
  font-size: 12px;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  word-break: break-all;
  cursor: pointer;
  transition: color 0.15s;
}

.ledger-root:hover {
  color: #6EE7B7;
}

.ledger-register-link {
  font-size: 13px;
  color: #FCD34D;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s;
}

.ledger-register-link:hover {
  color: #FDE68A;
  text-decoration: underline;
}

/* ----------- PRICING ----------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

.price-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 28px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.price-card:hover {
  transform: translateY(-4px);
}

.price-card.featured {
  border: 1px solid rgba(217, 119, 6, 0.55);
  background: linear-gradient(180deg, rgba(217, 119, 6, 0.10) 0%, rgba(30, 41, 59, 0.75) 40%);
  box-shadow: 0 30px 60px -30px rgba(217, 119, 6, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.price-card.featured::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.6), rgba(217, 119, 6, 0) 40%, rgba(217, 119, 6, 0.4) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
}

.price-tag-featured {
  position: absolute;
  top: -12px;
  right: 24px;
  background: linear-gradient(180deg, #F59E0B, #B45309);
  color: #1a1207;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 6px;
  text-transform: uppercase;
  box-shadow: 0 8px 20px -8px rgba(217, 119, 6, 0.6);
}

.price-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.price-amount {
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 14px 0 4px;
  line-height: 1;
  font-feature-settings: "tnum" 1;
}

.price-amount .cur {
  font-size: 0.5em;
  color: var(--muted);
  font-weight: 600;
  margin-right: 6px;
}

.price-amount .per {
  font-size: 0.3em;
  color: var(--muted);
  font-weight: 500;
  margin-left: 6px;
}

.price-tagline {
  color: #CBD5E1;
  font-size: 14px;
  margin: 0 0 24px;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.features li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: #E2E8F0;
  line-height: 1.5;
}

.check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
  background: rgba(5, 150, 105, 0.18);
  color: #6EE7B7;
}

.featured .check {
  background: rgba(217, 119, 6, 0.18);
  color: #FCD34D;
}

.zsu-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(217, 119, 6, 0.10);
  border: 1px solid rgba(217, 119, 6, 0.28);
  color: #FCD34D;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 20px;
}

.price-cta {
  width: 100%;
  justify-content: center;
}

/* ----------- FOOTER ----------- */
footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--line);
  margin-top: 40px;
  background: rgba(11, 18, 32, 0.6);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

@media (max-width: 820px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

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

.foot-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 14px;
}

.foot-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.foot-col a {
  color: #CBD5E1;
  font-size: 14px;
  transition: color 0.15s;
}

.foot-col a:hover {
  color: #fff;
}

.foot-brand p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  max-width: 38ch;
  margin: 12px 0 0;
}

.compliance-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}

.comp-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.comp-chip svg {
  color: var(--emerald-2);
}

.comp-legal {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted-2);
  line-height: 1.6;
}

/* ----------- MODALS & CRYPTOGRAPHIC INSPECTOR ----------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 18, 32, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-dialog {
  background: #0F172A;
  border: 1px solid var(--line-2);
  border-radius: 20px;
  max-width: 620px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.05);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
}

.modal-overlay.active .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.modal-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--muted);
  display: grid;
  place-items: center;
  transition: background 0.15s, color 0.15s;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.modal-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.modal-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.modal-field-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
}

.modal-field-value {
  font-size: 13px;
  color: #F8FAFC;
  background: rgba(15, 23, 42, 0.8);
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-family: 'JetBrains Mono', monospace;
  word-break: break-all;
}

.modal-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(5, 150, 105, 0.12);
  border: 1px solid rgba(5, 150, 105, 0.35);
  color: #6EE7B7;
}

.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* ----------- TOAST NOTIFICATION ----------- */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 120;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.toast {
  background: #1e293b;
  border: 1px solid var(--line-2);
  color: #F8FAFC;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
  animation: toastIn 0.25s ease forwards;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Utility */
.row-gap-lg {
  margin-bottom: 60px;
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 0;
}
