:root {
  --navy: #12122e;
  --blue: #386bf6;
  --violet: #674ff7;
  --bg: #f4f6fa;
  --surface: #ffffff;
  --text: #12122e;
  --muted: #475569;
  --line: #e2e8f0;
  --safe: #16a34a;
  --shadow: 0 18px 50px rgba(18, 18, 46, 0.12);
  --radius: 18px;
  --max: 1120px;
  --font: "Manrope", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(56, 107, 246, 0.16), transparent 60%),
    radial-gradient(900px 420px at 100% 0%, rgba(103, 79, 247, 0.12), transparent 55%),
    var(--bg);
  line-height: 1.6;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92em;
  background: #eef2ff;
  color: var(--navy);
  padding: 0.15em 0.4em;
  border-radius: 6px;
}

.container {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

.narrow {
  width: min(820px, calc(100% - 2.5rem));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(244, 246, 250, 0.85);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background:
    linear-gradient(145deg, var(--blue), var(--violet));
  box-shadow: 0 8px 20px rgba(56, 107, 246, 0.35);
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 9px 8px 8px;
  border: 2px solid #fff;
  border-top: 0;
  border-radius: 0 0 999px 999px;
  opacity: 0.95;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}

.nav a[aria-current="page"],
.nav a:hover {
  color: var(--navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.85rem 1.25rem;
  font-weight: 700;
  border: 1px solid transparent;
  text-decoration: none !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.55rem 0.95rem;
  background: var(--navy);
  color: #fff !important;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), #2f58d8);
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(56, 107, 246, 0.28);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line);
  color: var(--navy) !important;
}

.hero {
  position: relative;
  padding: 4.5rem 0 3.5rem;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: auto auto -20% 40%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 107, 246, 0.22), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero h1,
.legal-page h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-lead,
.lead {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.75rem;
}

.meta-line {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.phone-card {
  background: linear-gradient(180deg, #1a1a3d, var(--navy));
  color: #fff;
  border-radius: 28px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
  min-height: 320px;
}

.phone-top {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--safe);
  box-shadow: 0 0 0 6px rgba(22, 163, 74, 0.18);
}

.metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.metric-row .label {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  margin-bottom: 0.2rem;
}

.bars {
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
  height: 84px;
  margin-bottom: 1.4rem;
}

.bars span {
  flex: 1;
  border-radius: 10px 10px 4px 4px;
  background: linear-gradient(180deg, #8eb0ff, var(--blue));
}

.bars span:nth-child(1) { height: 35%; opacity: 0.55; }
.bars span:nth-child(2) { height: 58%; opacity: 0.7; }
.bars span:nth-child(3) { height: 78%; opacity: 0.85; }
.bars span:nth-child(4) { height: 100%; }

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  font-size: 0.82rem;
}

.section {
  padding: 3.5rem 0;
}

.section-alt {
  padding-bottom: 4.5rem;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 1.8rem;
}

.section-head h2,
.split h2,
.legal-section h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
}

.section-head p,
.split p {
  margin: 0;
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.feature-card,
.support-card,
.contact-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 10px 30px rgba(18, 18, 46, 0.04);
}

.feature-card h3,
.support-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.feature-card p,
.support-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: stretch;
}

.text-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 700;
}

.support-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
  background:
    linear-gradient(160deg, rgba(56, 107, 246, 0.08), transparent 55%),
    var(--surface);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  padding: 2rem 0 2.4rem;
}

.footer-inner {
  display: grid;
  gap: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: var(--muted);
  font-weight: 600;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--navy);
}

.copyright {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-page {
  padding: 3rem 0 4rem;
}

.legal-meta {
  color: var(--muted);
  margin: 0.85rem 0 0;
}

.legal-section {
  margin-top: 2rem;
  padding-top: 0.25rem;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
}

.legal-section ul {
  padding-left: 1.2rem;
}

.legal-section li + li {
  margin-top: 0.45rem;
}

.contact-box p {
  margin: 0.35rem 0;
  color: var(--text);
}

@media (max-width: 960px) {
  .hero-grid,
  .feature-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }

  .nav a:not(.btn) {
    display: none;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 64px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
