/* BlockAML — brand palette from avatar / reports */
:root {
  --navy: #081331;
  --navy-deep: #031036;
  --blue: #0037AF;
  --blue-light: #5C79FD;
  --blue-dark: #1E3A8A;
  --bg: #060d18;
  --bg-card: rgba(12, 22, 45, 0.85);
  --border: rgba(92, 121, 253, 0.18);
  --text: #e8eef8;
  --text-muted: #94a3b8;
  --radius: 14px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --font: "Inter", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--blue-light); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: min(1120px, 92vw); margin: 0 auto; }

.announcement-bar {
  background: linear-gradient(90deg, var(--blue-dark), var(--blue));
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(6, 13, 24, 0.88);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.85rem 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
}
.logo-text { font-size: 1.15rem; font-weight: 600; letter-spacing: -0.02em; }
.brand-block { color: #fff; }
.brand-aml { color: var(--blue-light); }
.nav { display: flex; gap: 1.5rem; margin-left: auto; }
.nav a { color: var(--text-muted); font-size: 0.92rem; font-weight: 500; text-decoration: none; }
.nav a:hover { color: #fff; }
.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: #fff;
  font-size: 1.2rem;
  padding: 0.35rem 0.6rem;
  border-radius: 8px;
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.25rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 55, 175, 0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-lg { padding: 0.85rem 1.6rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* Hero */
.hero {
  position: relative;
  padding: 4rem 0 5rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(0, 55, 175, 0.35), transparent),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(92, 121, 253, 0.12), transparent),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--bg) 100%);
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--blue-light);
  margin: 0 0 0.75rem;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}
.gradient-text {
  background: linear-gradient(90deg, #fff, var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-lead { color: var(--text-muted); font-size: 1.1rem; max-width: 32rem; margin-bottom: 1.75rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.hero-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong { font-size: 1.35rem; color: #fff; }
.hero-stats span { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }

.hero-card .demo-report {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
.demo-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
  font-size: 0.9rem;
}
.badge {
  margin-left: auto;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.badge-unknown { background: rgba(148, 163, 184, 0.15); color: #94a3b8; }
.badge-low { background: rgba(34, 197, 94, 0.15); color: #4ade80; }

/* AML Report */
.report-section { padding-top: 1rem; }
.report-layout { max-width: 820px; }
.report-address-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin: 1rem 0 0.5rem;
}
.report-chain-icon { border-radius: 50%; flex-shrink: 0; }
.report-address {
  font-size: 0.82rem;
  word-break: break-all;
  max-width: min(100%, 520px);
  padding: 0.35rem 0.6rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
}
.btn-sm { padding: 0.35rem 0.75rem; font-size: 0.82rem; }
.report-score-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.75rem;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, rgba(0, 55, 175, 0.22), rgba(8, 19, 49, 0.9));
  border-color: rgba(92, 121, 253, 0.35);
}
.report-score-ring {
  --score-color: #22c55e;
  --score-deg: 0deg;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: conic-gradient(
    var(--score-color) 0deg,
    var(--score-color) var(--score-deg),
    rgba(255, 255, 255, 0.08) var(--score-deg)
  );
  border: 4px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 40px rgba(92, 121, 253, 0.12);
}
.report-score-ring-inner {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--navy-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.report-score-num { font-size: 2rem; font-weight: 700; color: #fff; }
.report-score-of { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.15rem; }
.report-score-meta { flex: 1; min-width: 200px; }
.report-band-badge { font-size: 0.9rem; padding: 0.4rem 0.85rem; }
.report-primary-reason { margin: 0.85rem 0 0; font-size: 0.95rem; line-height: 1.5; }
.report-primary-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.report-assessment { margin: 0.75rem 0 0; color: var(--text-muted); font-size: 0.92rem; line-height: 1.55; }
.report-provider-summary { margin: 0.65rem 0 0; font-size: 0.85rem; line-height: 1.5; }
.report-block { margin-bottom: 1.75rem; }
.report-block-title {
  font-size: 1.05rem;
  margin: 0 0 1rem;
  font-weight: 600;
  color: #fff;
}
.report-context-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
}
.report-context-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.report-context-ok { border-color: rgba(34, 197, 94, 0.25); }
.report-context-warn { border-color: rgba(251, 191, 36, 0.35); background: rgba(251, 191, 36, 0.06); }
.report-context-bad { border-color: rgba(239, 68, 68, 0.35); background: rgba(239, 68, 68, 0.08); }
.report-context-icon { font-size: 1.25rem; line-height: 1; }
.report-context-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}
.report-context-value { font-size: 0.92rem; font-weight: 600; color: #fff; line-height: 1.35; }
.report-exposure-list { display: flex; flex-direction: column; gap: 0.85rem; }
.report-exposure-item {
  padding: 1rem 1.1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.report-exposure-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.report-exposure-cat { font-weight: 600; font-size: 0.92rem; }
.report-exposure-pct { font-weight: 700; color: var(--blue-light); font-size: 0.95rem; }
.report-exposure-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 0.45rem;
}
.report-exposure-bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  border-radius: 99px;
}
.report-exposure-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.report-exposure-impact { color: var(--blue-light); }
.report-empty { text-align: center; padding: 2rem 1.5rem; }
.report-empty p { margin: 0 0 0.5rem; }
.report-flags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.report-flag-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border-radius: 99px;
  border: 1px solid var(--border);
  background: rgba(0, 55, 175, 0.15);
  font-size: 0.82rem;
  cursor: default;
}
.report-flows { display: flex; flex-direction: column; gap: 0.5rem; }
.report-flow-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  font-size: 0.9rem;
}
.report-flow-dir { font-size: 1.1rem; color: var(--blue-light); width: 1.25rem; text-align: center; }
.report-flow-entity { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; }
.report-flow-amount { font-weight: 600; color: #fff; }
.report-table td { vertical-align: top; }
.report-footnote { margin-top: 0.75rem; }
.report-actions { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.report-disclaimer { margin-top: 1.5rem; text-align: center; }
.report-mismatch { margin-bottom: 1rem; }

.badge-open { background: rgba(251, 191, 36, 0.15); color: #fbbf24; }
.badge-in_progress { background: rgba(96, 165, 250, 0.15); color: #60a5fa; }
.badge-closed { background: rgba(148, 163, 184, 0.15); color: #94a3b8; }
.badge-high { background: rgba(234, 88, 12, 0.15); color: #fb923c; }
.badge-medium { background: rgba(251, 191, 36, 0.15); color: #fbbf24; }
.badge-critical { background: rgba(239, 68, 68, 0.15); color: #f87171; }

/* Cabinet */
.page-hero-compact { padding: 2.5rem 0 1rem; }
.section-tight { padding: 2rem 0 3rem; }
.cabinet-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  align-items: start;
}
.cabinet-main-narrow { max-width: 640px; }
.cabinet-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem;
}
.cabinet-nav a {
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}
.cabinet-nav a:hover, .cabinet-nav a.active {
  background: rgba(0, 55, 175, 0.25);
  color: #fff;
}
.cabinet-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
}
.cabinet-card h2 { margin: 0 0 0.75rem; font-size: 1.1rem; }
.cabinet-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1rem 0; }

/* Credits grid */
.credits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.credits-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(0, 55, 175, 0.1);
  transition: border-color 0.2s, background 0.2s;
}
.credits-card:hover { border-color: rgba(92, 121, 253, 0.35); }
.credits-card-icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(92, 121, 253, 0.15);
  font-size: 1.1rem;
}
.credits-card-body { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.credits-card-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.credits-card-value {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.credits-card-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.35;
}
.credits-state-empty .credits-card-value { color: var(--text-muted); }
.credits-state-empty .credits-card-icon { opacity: 0.55; }
.credits-card-highlight {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  padding: 1.15rem 1.25rem;
  background: linear-gradient(135deg, rgba(0, 55, 175, 0.45), rgba(92, 121, 253, 0.18));
  border-color: rgba(92, 121, 253, 0.45);
}
.credits-card-highlight .credits-card-icon {
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.35rem;
  background: rgba(92, 121, 253, 0.28);
}
.credits-card-highlight .credits-card-value { font-size: 2rem; }
.credits-card-highlight .credits-card-body { flex-direction: row; align-items: baseline; gap: 0.75rem; flex-wrap: wrap; }
.credits-card-highlight .credits-card-label { font-size: 0.95rem; text-transform: none; letter-spacing: 0; color: var(--text); }

/* Icon picker (assets / chains) */
.icon-picker { position: relative; margin: 0.75rem 0 1rem; }
.icon-picker-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
.icon-picker-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(6, 13, 24, 0.85);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.icon-picker-toggle:hover,
.icon-picker.is-open .icon-picker-toggle {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(92, 121, 253, 0.12);
}
.icon-picker-icon { flex-shrink: 0; border-radius: 50%; }
.icon-picker-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}
.icon-picker-text strong {
  font-weight: 600;
  color: #fff;
  font-size: 0.95rem;
}
.icon-picker-text small {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.icon-picker-chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.2s;
}
.icon-picker.is-open .icon-picker-chevron { transform: rotate(180deg); }
.icon-picker-menu {
  position: absolute;
  z-index: 50;
  left: 0;
  right: 0;
  top: calc(100% + 0.35rem);
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  border-radius: 12px;
  border: 1px solid rgba(92, 121, 253, 0.35);
  background: linear-gradient(180deg, #0c1830 0%, #081331 100%);
  box-shadow: var(--shadow);
  max-height: 240px;
  overflow-y: auto;
}
.icon-picker-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.7rem;
  border-radius: 9px;
  cursor: pointer;
  transition: background 0.15s;
}
.icon-picker-option:hover,
.icon-picker-option.is-selected {
  background: rgba(92, 121, 253, 0.2);
}
.icon-picker-option.is-selected {
  outline: 1px solid rgba(92, 121, 253, 0.45);
}

.cabinet-login { max-width: 420px; margin: 0 auto; text-align: center; }
.cabinet-login-card { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.promo-form { max-width: 420px; }
.inline-field { display: flex; gap: 0.5rem; }
.inline-field input { flex: 1; }
.deposit-form-card { display: flex; flex-direction: column; }
.pay-address {
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem;
  margin: 1rem 0;
  word-break: break-all;
}
.pay-address code { font-size: 0.85rem; }
.divider { border: none; border-top: 1px solid var(--border); margin: 1rem 0; }
.result-score { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.75rem; }
.score-big { font-size: 3rem; font-weight: 700; }
.pending-list { margin: 0; padding-left: 1.2rem; color: var(--text-muted); font-size: 0.9rem; }

@media (max-width: 768px) {
  .cabinet-layout { grid-template-columns: 1fr; }
  .cabinet-nav { flex-direction: row; flex-wrap: wrap; }
  .credits-grid { grid-template-columns: 1fr; }
}

.demo-score { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.score-ring {
  --score-deg: 43deg;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: conic-gradient(
    from -90deg,
    #22c55e 0deg,
    #22c55e var(--score-deg),
    rgba(255, 255, 255, 0.08) var(--score-deg),
    rgba(255, 255, 255, 0.08) 360deg
  );
}
.score-ring-inner {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  font-weight: 700;
  background: #0a1628;
  border: 2px solid rgba(34, 197, 94, 0.28);
}
.demo-label { margin: 0; font-weight: 600; }
.demo-sub { margin: 0.2rem 0 0; font-size: 0.82rem; color: var(--text-muted); }
.demo-bars { display: flex; flex-direction: column; gap: 0.55rem; }
.bar-row {
  display: grid;
  grid-template-columns: 5rem 1fr 2.5rem;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.bar { height: 6px; background: rgba(255,255,255,0.06); border-radius: 99px; overflow: hidden; }
.bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--blue), var(--blue-light)); border-radius: 99px; }
.demo-note { margin: 1rem 0 0; font-size: 0.72rem; color: var(--text-muted); }

/* Sections */
.section { padding: 4.5rem 0; }
.section-alt { background: rgba(8, 19, 49, 0.45); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section-head h2 { font-size: 2rem; margin: 0 0 0.75rem; letter-spacing: -0.02em; }
.section-lead {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
  text-wrap: balance;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(92, 121, 253, 0.4); }
.feature-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.feature-card h3 { margin: 0 0 0.5rem; font-size: 1.05rem; }
.feature-card p { margin: 0; color: var(--text-muted); font-size: 0.92rem; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.step-num {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background: var(--blue);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.step h3 { margin: 0 0 0.5rem; }
.step p { margin: 0; color: var(--text-muted); font-size: 0.9rem; }
.cta-inline { text-align: center; }
.cta-inline-spaced { margin-top: 2.75rem; }
#pricing-preview .pricing-grid-compact { margin-bottom: 0; }

.chain-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; }
.chain-pill {
  padding: 0.45rem 1rem;
  border-radius: 99px;
  border: 1px solid var(--border);
  background: rgba(0, 55, 175, 0.15);
  font-size: 0.85rem;
  font-weight: 500;
}

/* Pricing */
.page-hero { padding: 3.5rem 0 2rem; text-align: center; }
.page-hero h1 { font-size: 2.25rem; margin: 0 0 0.75rem; }
.pricing-section-title { font-size: 1.25rem; margin-bottom: 1.25rem; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.pricing-grid-compact .price-card { padding: 1.25rem; }
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.price-card-featured { border-color: rgba(92, 121, 253, 0.45); box-shadow: 0 0 0 1px rgba(92, 121, 253, 0.15); }
.price-card h3 { margin: 0 0 0.5rem; }
.price-amount { font-size: 2.25rem; font-weight: 700; margin: 0 0 0.15rem; line-height: 1.1; }
.price-amount span { font-size: 0.95rem; font-weight: 500; color: var(--text-muted); }
.price-checks {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
}
.price-per { color: var(--blue-light); font-size: 0.9rem; margin: 0 0 1rem; }
.price-desc { color: var(--text-muted); font-size: 0.9rem; }
.price-features { list-style: none; padding: 0; margin: 0 0 1.25rem; }
.price-features li { padding: 0.35rem 0; font-size: 0.9rem; color: var(--text-muted); }
.price-features li::before { content: "✓ "; color: var(--blue-light); }
.mt-xl { margin-top: 3rem; }
.muted { color: var(--text-muted); }
.small { font-size: 0.82rem; }
.info-box {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(0, 55, 175, 0.12);
}

/* FAQ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.65rem;
  background: var(--bg-card);
  padding: 0 1rem;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 1rem 0;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  overflow-wrap: break-word;
}
.faq-more { text-align: center; margin-top: 1.5rem; color: var(--text-muted); }

/* CTA */
.cta-section { padding: 4rem 0 5rem; }
.cta-box {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(135deg, rgba(0, 55, 175, 0.35), rgba(8, 19, 49, 0.9));
  border: 1px solid var(--border);
}
.cta-box h2 { margin: 0 0 0.5rem; }
.cta-box p { color: var(--text-muted); margin: 0 0 1.5rem; }

/* Support */
.support-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  align-items: start;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1rem;
}
.contact-card h3 { margin: 0 0 0.5rem; font-size: 1rem; }
.link-list { list-style: none; padding: 0; margin: 0 0 0.75rem; font-size: 0.85rem; color: var(--text-muted); }
.link-list li { padding: 0.2rem 0; }

.form label { display: block; margin-bottom: 1rem; }
.form label span { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 0.35rem; color: var(--text-muted); }
.form input, .form select, .form textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(6, 13, 24, 0.8);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(92, 121, 253, 0.15);
}
.support-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.support-form-wrap h2 { margin-top: 0; }

.alert { padding: 0.85rem 1rem; border-radius: 10px; margin-bottom: 1rem; }
.alert-success { background: rgba(34, 197, 94, 0.12); border: 1px solid rgba(34, 197, 94, 0.3); color: #86efac; }
.alert-error { background: rgba(239, 68, 68, 0.12); border: 1px solid rgba(239, 68, 68, 0.3); color: #fca5a5; }

/* Legal */
.legal { max-width: 720px; text-align: left; }
.legal-body h2 { font-size: 1.1rem; margin: 1.75rem 0 0.5rem; }
.legal-body p, .legal-body ul { color: var(--text-muted); font-size: 0.95rem; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-tagline { color: var(--text-muted); font-size: 0.88rem; line-height: 1.5; }
.site-footer h4 { margin: 0 0 0.75rem; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.4rem; }
.site-footer a { color: var(--text-muted); font-size: 0.9rem; }
.footer-bottom { padding-top: 1.5rem; border-top: 1px solid var(--border); font-size: 0.8rem; color: var(--text-muted); }

/* Admin */
.admin-body { background: #0a0f1a; min-height: 100vh; }
.admin-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.85rem 1.5rem;
  background: rgba(8, 19, 49, 0.95);
  border-bottom: 1px solid var(--border);
}
.admin-nav a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; font-weight: 500; }
.admin-nav a.active, .admin-nav a:hover { color: #fff; }
.admin-nav-brand { margin-right: 0.5rem; }
.admin-nav-logout { margin-left: auto; }
.admin-main { padding: 1.75rem 1.5rem; max-width: 1100px; margin: 0 auto; }
.admin-main h1 { margin: 0 0 1.25rem; font-size: 1.5rem; }
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.admin-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.admin-stat-wide { grid-column: span 2; }
.stat-label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.stat-value { font-size: 1.5rem; font-weight: 700; }
.admin-section h2 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.admin-table th, .admin-table td { padding: 0.65rem 0.85rem; text-align: left; border-bottom: 1px solid var(--border); }
.admin-table th { background: rgba(0, 55, 175, 0.15); color: var(--text-muted); font-weight: 600; font-size: 0.78rem; text-transform: uppercase; }
.admin-table code { font-size: 0.8rem; }
.admin-toolbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.filter-tabs { display: flex; gap: 0.5rem; }
.filter-tabs a {
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
}
.filter-tabs a.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.ticket-meta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1rem; font-size: 0.9rem; }
.ticket-message {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  white-space: pre-wrap;
  margin-bottom: 1.5rem;
}
.admin-form { max-width: 480px; }
.admin-login-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.admin-login-card {
  width: min(400px, 100%);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}
.admin-login-card h1 { font-size: 1.25rem; margin: 0.75rem 0 1.25rem; }
.admin-main-wide { max-width: 900px; }
.admin-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
}
.admin-form-card h2 { margin: 0 0 1rem; font-size: 1.05rem; }
.admin-two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  align-items: start;
}
.admin-credits-list {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.88rem;
}
.admin-actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.admin-action-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.15rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, background 0.2s;
}
.admin-action-card:hover {
  border-color: rgba(92, 121, 253, 0.45);
  background: rgba(0, 55, 175, 0.12);
  text-decoration: none;
}
.admin-action-icon { font-size: 1.5rem; }
.admin-quick-links { margin-top: 1.5rem; }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { order: -1; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .support-layout { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--navy); padding: 1rem; border-bottom: 1px solid var(--border); }
  .nav.open { display: flex; }
  .nav-toggle { display: block; }
  .header-inner { position: relative; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; }
}
