@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Sora:wght@300;400;600;700;800&display=swap');

/* ─── Design Tokens ─────────────────────────────── */
:root {
  --bg:        #060d17;
  --bg-2:      #0a1420;
  --surface:   rgba(14, 22, 38, 0.80);
  --surface-2: rgba(20, 30, 50, 0.60);
  --line:      rgba(212, 166, 61, 0.12);
  --line-bright: rgba(212, 166, 61, 0.28);
  --text:      #eef2fb;
  --muted:     #8b9ab8;
  --muted-2:   #c4cfe5;
  --gold:      #d4a63d;
  --gold-light: #f3d88b;
  --gold-dim:  rgba(212, 166, 61, 0.15);
  --green:     #34d399;
  --green-dim: rgba(52, 211, 153, 0.12);
  --red:       #f87171;
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.40);
  --shadow-lg: 0 24px 72px rgba(0, 0, 0, 0.55);
  --shadow-gold: 0 8px 32px rgba(212, 166, 61, 0.20);
  --font-body: 'Inter', system-ui, sans-serif;
  --font-display: 'Sora', 'Inter', sans-serif;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

/* ─── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ─── Ambient Background ─────────────────────────── */
.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}
.bg-orb-1 {
  width: 700px; height: 700px;
  top: -200px; left: -180px;
  background: radial-gradient(circle, rgba(212, 166, 61, 0.14) 0%, transparent 70%);
  animation: orb-drift 18s ease-in-out infinite alternate;
}
.bg-orb-2 {
  width: 600px; height: 600px;
  top: 20%; right: -200px;
  background: radial-gradient(circle, rgba(30, 80, 160, 0.18) 0%, transparent 70%);
  animation: orb-drift 22s ease-in-out infinite alternate-reverse;
}
.bg-orb-3 {
  width: 500px; height: 500px;
  bottom: 10%; left: 30%;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.08) 0%, transparent 70%);
  animation: orb-drift 26s ease-in-out infinite alternate;
}
@keyframes orb-drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 30px) scale(1.08); }
}

/* ─── Layout ─────────────────────────────────────── */
.site-shell { position: relative; z-index: 1; }
.container {
  width: min(1200px, calc(100vw - 48px));
  margin: 0 auto;
}

/* ─── Top Bar ─────────────────────────────────────── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  background: rgba(6, 13, 23, 0.82);
  border-bottom: 1px solid var(--line);
  transition: background 300ms var(--ease);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.88rem;
  color: var(--text);
}
.brand-mark {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold), var(--gold-light));
  box-shadow: 0 0 0 6px rgba(212, 166, 61, 0.12), var(--shadow-gold);
}
.brand-mark::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: rgba(6, 13, 23, 0.6);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  padding: 7px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 180ms, background 180ms;
}
.nav-links a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}

/* ─── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(145deg, var(--gold), var(--gold-light));
  color: #0a0f1a;
  padding: 12px 24px;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: linear-gradient(145deg, #e8b84a, #f8e49e);
  box-shadow: 0 12px 40px rgba(212, 166, 61, 0.35);
}

.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  padding: 12px 22px;
  border: 1px solid rgba(255,255,255,0.10);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(212, 166, 61, 0.30);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.84rem;
}

/* ─── Hero ─────────────────────────────────────────── */
.hero {
  padding: 100px 0 80px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212, 166, 61, 0.08);
  border: 1px solid rgba(212, 166, 61, 0.20);
  border-radius: 999px;
  padding: 6px 14px 6px 10px;
  margin-bottom: 28px;
}
.hero-eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,166,61,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(212,166,61,0); }
}
.hero-eyebrow span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.hero-copy { }
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 22px;
}
.hero-h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold), var(--gold-light) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-lead {
  font-size: 1.12rem;
  line-height: 1.70;
  color: var(--muted-2);
  max-width: 520px;
  margin-bottom: 16px;
}
.hero-sub-lead {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 36px;
  font-style: italic;
  border-left: 2px solid rgba(212, 166, 61, 0.30);
  padding-left: 14px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.8rem;
  color: var(--muted-2);
}
.trust-chip-icon {
  font-size: 0.75rem;
  color: var(--gold);
}

/* ─── Dashboard Mock ─────────────────────────────── */
.hero-dash {
  position: relative;
}
.dash-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(212,166,61,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.dash-frame {
  background: linear-gradient(175deg, rgba(14,22,38,0.95) 0%, rgba(8,14,26,0.98) 100%);
  border: 1px solid var(--line-bright);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dash-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}
.dash-status-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(52, 211, 153, 0.10);
  border: 1px solid rgba(52, 211, 153, 0.20);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
}
.dash-status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-green 2s ease-in-out infinite;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52,211,153,0.4); }
  50% { box-shadow: 0 0 0 5px rgba(52,211,153,0); }
}

.dash-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.dash-metric {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: border-color 250ms;
}
.dash-metric:hover { border-color: var(--line-bright); }
.dash-metric-label {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.dash-metric-value {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.dash-metric-sub {
  font-size: 0.72rem;
  color: var(--green);
  margin-top: 4px;
  font-weight: 600;
}
.dash-metric-sub.warn { color: #f59e0b; }
.dash-metric-sub.ok { color: var(--green); }

.dash-agents-title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.dash-agents {
  display: grid;
  gap: 8px;
}
.dash-agent-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  transition: background 200ms;
}
.dash-agent-row:hover { background: rgba(255,255,255,0.04); }
.dash-agent-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dash-agent-icon {
  width: 30px; height: 30px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}
.agent-icon-security { background: rgba(248,113,113,0.12); }
.agent-icon-qa       { background: rgba(212,166,61,0.12); }
.agent-icon-access   { background: rgba(96,165,250,0.12); }
.agent-icon-govern   { background: rgba(167,139,250,0.12); }
.agent-icon-report   { background: rgba(56,189,248,0.12); }

.dash-agent-name {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text);
}
.dash-agent-task {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 1px;
}
.dash-agent-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
}
.badge-active {
  background: rgba(52,211,153,0.12);
  color: var(--green);
  border: 1px solid rgba(52,211,153,0.20);
}
.badge-scanning {
  background: rgba(212,166,61,0.10);
  color: var(--gold-light);
  border: 1px solid rgba(212,166,61,0.18);
}
.badge-done {
  background: rgba(56,189,248,0.10);
  color: #7dd3fc;
  border: 1px solid rgba(56,189,248,0.18);
}

/* ─── Section Shell ──────────────────────────────── */
.section {
  padding: 96px 0;
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.kicker::before, .kicker::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}
.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 18px;
}
.section-lead {
  font-size: 1.05rem;
  line-height: 1.68;
  color: var(--muted-2);
}

/* ─── Divider ────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* ─── Stats Bar ──────────────────────────────────── */
.stats-bar {
  padding: 48px 0;
  background: linear-gradient(90deg, rgba(14,22,38,0) 0%, rgba(14,22,38,0.6) 30%, rgba(14,22,38,0.6) 70%, rgba(14,22,38,0) 100%);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stat-item {
  text-align: center;
  padding: 24px;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; height: 60%;
  width: 1px;
  background: var(--line);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-number span { color: var(--gold); }
.stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.4;
}

/* ─── Feature Cards ──────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feat-card {
  background: linear-gradient(160deg, rgba(14,22,38,0.90) 0%, rgba(8,14,26,0.95) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color 300ms var(--ease), transform 300ms var(--ease), box-shadow 300ms var(--ease);
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,166,61,0.3), transparent);
  opacity: 0;
  transition: opacity 300ms;
}
.feat-card:hover {
  border-color: var(--line-bright);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(212,166,61,0.06);
}
.feat-card:hover::before { opacity: 1; }

.feat-icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  position: relative;
}
.feat-icon-wrap::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.08);
}
.icon-bg-gold    { background: rgba(212,166,61,0.12); }
.icon-bg-red     { background: rgba(248,113,113,0.10); }
.icon-bg-blue    { background: rgba(96,165,250,0.10); }
.icon-bg-purple  { background: rgba(167,139,250,0.10); }
.icon-bg-green   { background: rgba(52,211,153,0.10); }
.icon-bg-teal    { background: rgba(20,184,166,0.10); }

.feat-h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.feat-p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted);
}
.feat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
}
.feat-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
}

/* ─── How It Works ───────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 8px);
  right: calc(16.66% + 8px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-bright), transparent);
}
.step-card {
  text-align: center;
  padding: 40px 28px 32px;
  background: linear-gradient(160deg, rgba(14,22,38,0.85) 0%, rgba(8,14,26,0.90) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  transition: border-color 300ms var(--ease), transform 300ms var(--ease);
}
.step-card:hover {
  border-color: var(--line-bright);
  transform: translateY(-4px);
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold), var(--gold-light));
  color: #0a0f1a;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-gold);
}
.step-h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.step-p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--muted);
}

/* ─── Pricing ────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: linear-gradient(160deg, rgba(14,22,38,0.90) 0%, rgba(8,14,26,0.95) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: border-color 300ms var(--ease), transform 300ms var(--ease);
  position: relative;
}
.pricing-card:hover {
  border-color: rgba(212,166,61,0.22);
  transform: translateY(-3px);
}
.pricing-card-featured {
  border-color: var(--line-bright);
  background: linear-gradient(160deg, rgba(21,30,48,0.98) 0%, rgba(12,18,30,0.98) 100%);
  box-shadow: var(--shadow-md), 0 0 60px rgba(212,166,61,0.06);
  transform: translateY(-8px);
}
.pricing-card-featured:hover { transform: translateY(-12px); }

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0a0f1a;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-tier {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.pricing-tagline {
  font-size: 0.83rem;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.5;
}
.pricing-cta { width: 100%; }

.pricing-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 24px 0;
}
.pricing-features {
  display: grid;
  gap: 11px;
}
.pricing-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--muted-2);
  line-height: 1.45;
}
.pricing-feat-check {
  color: var(--gold);
  font-size: 0.8rem;
  margin-top: 1px;
  flex-shrink: 0;
}

.pricing-note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}
.pricing-note a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── CTA Panels ─────────────────────────────────── */
.cta-section {
  padding: 80px 0;
}
.cta-band {
  background: linear-gradient(135deg, rgba(14,22,38,0.95) 0%, rgba(10,16,30,0.98) 100%);
  border: 1px solid var(--line-bright);
  border-radius: var(--radius-xl);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -1px; left: 20%; right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-band-glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(ellipse at 50% -20%, rgba(212,166,61,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
}
.cta-band p {
  font-size: 1.05rem;
  color: var(--muted-2);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.65;
  position: relative;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
}

/* ─── Trust / Privacy Section ───────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.trust-card {
  background: linear-gradient(160deg, rgba(14,22,38,0.90) 0%, rgba(8,14,26,0.95) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: border-color 300ms var(--ease), transform 300ms var(--ease);
}
.trust-card:hover {
  border-color: var(--line-bright);
  transform: translateY(-4px);
}
.trust-card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
  filter: grayscale(0.2);
}
.trust-card-h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.trust-card-p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--muted);
}
.trust-quote {
  background: linear-gradient(135deg, rgba(212,166,61,0.06) 0%, rgba(212,166,61,0.02) 100%);
  border: 1px solid rgba(212,166,61,0.18);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 36px 40px;
  max-width: 780px;
  margin: 0 auto;
}
.trust-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 14px;
}
.trust-quote footer {
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
}

/* ─── Login CTA ──────────────────────────────────── */
.login-band {
  background: rgba(10,16,28,0.70);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.login-band-copy {}
.login-band-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.login-band-h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.login-band-p {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.6;
}
.login-band-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ─── Footer ─────────────────────────────────────── */
.footer {
  padding: 48px 0 40px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--text);
}
.footer-brand-mark {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold), var(--gold-light));
}
.footer-meta {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
  text-align: right;
}
.footer-meta a {
  color: var(--muted-2);
  transition: color 150ms;
}
.footer-meta a:hover { color: var(--gold-light); }

/* ─── Reveal Animations ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-h1 { font-size: clamp(2.2rem, 7vw, 3.5rem); }
  .hero-lead { max-width: 100%; }
  .hero-sub-lead { max-width: 100%; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(3)::before { display: none; }
}

@media (max-width: 768px) {
  .container { width: calc(100vw - 32px); }
  .hero { padding: 64px 0 48px; }
  .section { padding: 64px 0; }
  .nav-links { display: none; }
  .topbar-inner { height: 62px; }
  .features-grid,
  .trust-grid,
  .steps-grid,
  .pricing-grid { grid-template-columns: 1fr; }
  .trust-quote { padding: 28px 24px; }
  .steps-grid::before { display: none; }
  .pricing-card-featured { transform: none; }
  .pricing-card-featured:hover { transform: translateY(-3px); }
  .cta-band { padding: 40px 28px; }
  .login-band { padding: 28px 24px; }
  .login-band-actions { width: 100%; }
  .login-band-actions .btn { flex: 1; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; }
  .dash-metrics { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 2.1rem; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .dash-metrics { grid-template-columns: 1fr 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}
