:root {
  --bg: #0b1120;
  --bg-soft: #0f172a;
  --panel: #10192d;
  --panel-2: #0b1220;
  --text: #e5e7eb;
  --muted: #94a3b8;
  --accent: #22c55e;
  --accent-2: #60a5fa;
  --ring: #1e293b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.hero {
  position: relative;
  padding: 96px 0 72px;
  background:
    radial-gradient(circle at top left, rgba(96, 165, 250, 0.18), transparent 45%),
    radial-gradient(circle at 20% 20%, rgba(34, 197, 94, 0.16), transparent 40%),
    linear-gradient(180deg, #0b1120 0%, #0b1220 100%);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 40px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.25), rgba(96, 165, 250, 0));
  filter: blur(2px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: center;
}

.brand-row {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(30, 41, 59, 0.7);
}

.brand-logo {
  width: 72px;
  height: 72px;
}

.brand-tag {
  font-size: 16px;
  color: var(--muted);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.hero-copy h1 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(2.2rem, 2.7vw + 1.6rem, 3.6rem);
  line-height: 1.1;
  margin: 24px 0 16px;
}

.subhead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 26px 0 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #0b1120;
  box-shadow: 0 12px 24px rgba(34, 197, 94, 0.2);
}

.btn.ghost {
  background: rgba(15, 23, 42, 0.6);
  border-color: rgba(30, 41, 59, 0.9);
  color: var(--text);
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(96, 165, 250, 0.6);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.note {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  color: #cbd5f5;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(96, 165, 250, 0.35);
}

.hero-panel {
  background: linear-gradient(180deg, rgba(11, 18, 32, 0.98), rgba(12, 18, 30, 0.9));
  border: 1px solid rgba(30, 41, 59, 0.8);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.hero-panel-inner h3 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  margin: 8px 0 16px;
  font-size: 1.4rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  color: var(--accent-2);
}

.feature-list {
  padding-left: 18px;
  color: var(--muted);
}

.section {
  padding: 72px 0;
}

.section h2 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(1.6rem, 1.2vw + 1.4rem, 2.2rem);
  margin: 0 0 12px;
}

.section p {
  max-width: 680px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head p {
  color: var(--muted);
  margin: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.9), rgba(11, 18, 32, 0.98));
  border: 1px solid rgba(30, 41, 59, 0.7);
  border-radius: 18px;
  padding: 24px;
  display: grid;
  gap: 16px;
  min-height: 260px;
  animation: rise 0.8s ease both;
}

.card:nth-child(2) {
  animation-delay: 0.08s;
}

.card h3 {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.3rem;
}

.card-sub {
  color: var(--muted);
  margin: 0;
}

.card ul {
  padding-left: 18px;
  margin: 0;
  color: var(--muted);
}

.credibility {
  background: var(--bg-soft);
  border-top: 1px solid rgba(30, 41, 59, 0.6);
  border-bottom: 1px solid rgba(30, 41, 59, 0.6);
}

.cred-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  gap: 32px;
  align-items: center;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}

.fact {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(30, 41, 59, 0.7);
  background: rgba(11, 18, 32, 0.7);
}

.fact span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 6px;
}

.fact strong {
  font-size: 1.05rem;
}

.muted {
  color: var(--muted);
}

.site-footer {
  padding: 36px 0 42px;
  background: #070d1a;
  border-top: 1px solid rgba(30, 41, 59, 0.6);
}

.footer-meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-stack {
  display: grid;
  gap: 14px;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: var(--muted);
  justify-content: center;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-sep {
  color: #334155;
}

.policy-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.policy-main {
  flex: 1;
  padding: 72px 0 80px;
}

.policy-card {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(30, 41, 59, 0.7);
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.policy-card h1 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  margin-top: 0;
}

.policy-card h2 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  margin-top: 28px;
  margin-bottom: 8px;
}

.policy-card p,
.policy-card li {
  color: var(--muted);
}

.policy-card ul {
  padding-left: 20px;
}

.hero-copy,
.hero-panel {
  animation: rise 0.7s ease both;
}

.hero-panel {
  animation-delay: 0.08s;
}

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

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

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

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