:root {
  --bg-body: #050816;
  --bg-alt: #0b1020;
  --bg-card: #10182b;
  --accent: #3b82f6;
  --accent-soft: rgba(59, 130, 246, 0.12);
  --accent-strong: #1d4ed8;
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --border-subtle: rgba(148, 163, 184, 0.3);
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.65);
  --radius-lg: 18px;
  --radius-pill: 999px;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: radial-gradient(circle at top, #111827 0, #020617 50%, #020617 100%);
  color: var(--text-main);
}

/* Layout helpers */

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: radial-gradient(circle at top left, #111827 0, #020617 52%);
}

.section-intro {
  max-width: 680px;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: var(--text-muted);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.92),
    rgba(15, 23, 42, 0.7),
    transparent
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 11px;
  background: conic-gradient(
    from 220deg,
    #3b82f6,
    #22c55e,
    #a855f7,
    #3b82f6
  );
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #0b1120;
  font-size: 0.95rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.9rem;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.4rem 0.6rem;
  border-radius: 999px;
  transition:
    color 0.15s ease,
    background 0.15s ease;
}

.nav a:hover {
  color: var(--text-main);
  background: rgba(148, 163, 184, 0.16);
}

.nav-cta {
  background: var(--accent);
  color: white;
  padding-inline: 1rem;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.55);
}

.nav-cta:hover {
  background: var(--accent-strong);
}

/* Hero */

.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  }
}

.hero-copy h1 {
  font-size: clamp(2.1rem, 4vw, 2.8rem);
  line-height: 1.1;
  margin-bottom: 1.1rem;
}

.hero-copy p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 36rem;
}

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

.hero-note {
  font-size: 0.87rem;
  color: var(--text-muted);
}

/* Hero right card */

.hero-panel {
  display: flex;
  justify-content: center;
}

.hero-card {
  width: 100%;
  max-width: 380px;
  background: radial-gradient(circle at top left, #1f2937 0, #020617 70%);
  border-radius: 26px;
  padding: 1.6rem 1.6rem 1.4rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.hero-card h2 {
  font-size: 1.15rem;
  margin-top: 0;
}

.checklist {
  list-style: none;
  padding-left: 0;
  margin: 0.9rem 0;
}

.checklist li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #e5e7eb;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.8rem;
  transform: translateY(2px);
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
}

.hero-card-foot {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    transform 0.08s ease,
    box-shadow 0.15s ease;
}

.btn.primary {
  background: var(--accent);
  color: #f9fafb;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.55);
}

.btn.primary:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
}

.btn.ghost {
  background: rgba(15, 23, 42, 0.5);
  border-color: rgba(148, 163, 184, 0.5);
  color: var(--text-main);
}

.btn.ghost:hover {
  background: rgba(15, 23, 42, 0.85);
}

/* Generic text */

h2 {
  font-size: 1.7rem;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

p {
  line-height: 1.55;
}

/* Two-column layout */

.two-column {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .two-column {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  }
}

/* Cards & panels */

.highlight-panel {
  background: linear-gradient(135deg, #111827 0, #020617 60%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.45);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.bullet-list {
  margin: 0.6rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
}

.bullet-list li + li {
  margin-top: 0.3rem;
}

/* Card grids */

.card-grid {
  display: grid;
  gap: 1.7rem;
  margin-top: 2rem;
}

.card-grid.three-up {
  margin-top: 2.2rem;
}

@media (min-width: 750px) {
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .card-grid.three-up {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 749px) {
  .card-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.card {
  background: rgba(15, 23, 42, 0.9);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.3rem 1.3rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-soft);
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Steps */

.steps-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 750px) {
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1rem;
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(59, 130, 246, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: #bfdbfe;
  flex-shrink: 0;
}

.step p {
  margin: 0.25rem 0 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.small {
  font-size: 0.85rem;
}

/* Callout */

.callout {
  margin-top: 2.6rem;
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(148, 163, 184, 0.7);
  background: radial-gradient(circle at top left, #111827 0, #020617 60%);
}

.callout p {
  color: #d1d5db;
}

/* Pill groups */

.pill-grid {
  display: grid;
  gap: 1.8rem;
  margin-top: 2rem;
}

@media (min-width: 850px) {
  .pill-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.pill-group {
  background: rgba(15, 23, 42, 0.95);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.3rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
}

.pill-group h3 {
  margin-bottom: 0.4rem;
}

.pill-group ul {
  list-style: none;
  padding-left: 0;
  margin: 0.4rem 0 0;
}

.pill-group li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.pill-group li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #60a5fa;
}

/* FAQs */

.faq-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.8rem;
}

@media (min-width: 850px) {
  .faq-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.faq-item {
  background: rgba(15, 23, 42, 0.95);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.45);
  padding: 1.1rem 1.15rem;
}

.faq-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  padding: 2.5rem 0 2.5rem;
  background: #020617;
}

.footer-inner {
  display: grid;
  gap: 1.8rem;
}

@media (min-width: 800px) {
  .footer-inner {
    grid-template-columns: minmax(0, 2.3fr) minmax(0, 1.2fr);
    align-items: center;
  }
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.footer-meta {
  text-align: left;
  font-size: 0.87rem;
  color: var(--text-muted);
}

.footer-brand {
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.footer-small {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: #6b7280;
}

/* Responsive tweaks */

@media (max-width: 720px) {
  .nav {
    display: none;
  }

  .hero {
    padding-top: 3.5rem;
  }
}
