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

:root {
  --bg: #081120;
  --bg-soft: #0e172a;
  --surface: #ffffff;
  --surface-alt: #f8fafc;
  --surface-soft: #eef4ff;
  --text: #0f172a;
  --text-light: #475569;
  --text-inverse: #e2e8f0;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --border: rgba(15, 23, 42, 0.08);
  --shadow: 0 20px 50px rgba(2, 6, 23, 0.12);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.18), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 55%, #f8fafc 100%);
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--surface);
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  z-index: 1000;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(226, 232, 240, 0.55), rgba(255,255,255,0.75));
}

.section-soft {
  background: linear-gradient(180deg, rgba(219, 234, 254, 0.55), rgba(255,255,255,0.85));
}

.eyebrow {
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

h1, h2, h3 {
  margin: 0 0 1rem;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.3rem, 4vw, 4.5rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0;
  color: var(--text-light);
}

.lead {
  font-size: 1.1rem;
  max-width: 62ch;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(248, 250, 252, 0.75);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1rem;
}

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

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: white;
  background: linear-gradient(135deg, var(--primary), #0f172a);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.25);
}

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

.brand-text strong {
  font-size: 1rem;
}

.brand-text small {
  color: var(--text-light);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  color: #1e293b;
  font-weight: 500;
}

.nav-cta {
  padding: 0.8rem 1.05rem;
  border-radius: 999px;
  color: white !important;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.4rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: #0f172a;
  border-radius: 999px;
}

.hero {
  padding-top: 6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy,
.hero-visual,
.feature-card,
.step-card,
.contact-form,
.benefit-item,
.status-card,
.cta-band-wrap {
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-copy {
  background: rgba(255,255,255,0.72);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 3rem);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.point-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
}

.point-card strong {
  display: block;
  margin-bottom: 0.4rem;
}

.point-card span {
  color: var(--text-light);
  font-size: 0.94rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.28);
}

.btn-secondary {
  color: var(--text);
  background: white;
  border-color: rgba(148, 163, 184, 0.35);
}

.btn-block {
  width: 100%;
}

.trust-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  color: var(--text-light);
  font-weight: 500;
}

.trust-list li::before {
  content: "•";
  color: var(--primary);
  margin-right: 0.45rem;
}

.hero-visual {
  background: linear-gradient(160deg, #dbeafe, #eff6ff 45%, #ffffff 100%);
  border-radius: var(--radius);
  padding: 1.5rem;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.visual-shell {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
}

.status-card {
  position: absolute;
  background: rgba(255,255,255,0.94);
  border-radius: 22px;
  padding: 1.25rem;
}

.status-main {
  inset: 2rem 2rem auto auto;
  width: min(100%, 380px);
}

.status-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.15);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.metric-row small,
.status-card small {
  display: block;
  color: var(--text-light);
  margin-bottom: 0.35rem;
}

.metric-row strong,
.status-card strong {
  font-size: 1.35rem;
}

.bars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 0.6rem;
  margin-top: 1.35rem;
  min-height: 120px;
}

.bars span {
  display: block;
  background: linear-gradient(180deg, #60a5fa, #2563eb);
  border-radius: 999px 999px 12px 12px;
}

.bars span:nth-child(1) { height: 42%; }
.bars span:nth-child(2) { height: 75%; }
.bars span:nth-child(3) { height: 60%; }
.bars span:nth-child(4) { height: 88%; }

.status-side {
  left: 1rem;
  top: 6rem;
  width: 210px;
}

.status-side strong {
  display: block;
  font-size: 1rem;
  margin-top: 0.45rem;
}

.status-bottom {
  left: 3.5rem;
  bottom: 1.5rem;
  width: min(100%, 320px);
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.5rem;
}

.card-grid {
  display: grid;
  gap: 1.25rem;
}

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

.feature-card,
.step-card,
.benefit-item,
.contact-form {
  background: rgba(255,255,255,0.86);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.section-copy {
  max-width: 60ch;
}

.benefit-list {
  display: grid;
  gap: 1rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.step-number {
  display: inline-flex;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  color: var(--primary-dark);
  font-weight: 800;
  margin-bottom: 1rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-top: 0.85rem;
}

.cta-band {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.cta-band-wrap {
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  color: var(--text-inverse);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
}

.cta-band-wrap h2,
.cta-band-wrap p {
  color: var(--text-inverse);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-copy {
  padding-top: 0.5rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 0.45rem;
}

label {
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: white;
  color: var(--text);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(37, 99, 235, 0.85);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #dc2626;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.error-message {
  min-height: 1rem;
  color: #b91c1c;
  font-size: 0.88rem;
}

.form-status {
  min-height: 1.2rem;
  font-weight: 600;
}

.site-footer {
  padding: 1.5rem 0 2rem;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--text-light);
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .hero-grid,
  .split-layout,
  .contact-grid,
  .three-up,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 440px;
  }

  .visual-shell {
    min-height: 400px;
  }

  .status-main {
    inset: 1rem 1rem auto 1rem;
    width: auto;
  }

  .status-side {
    left: 1rem;
    top: auto;
    bottom: 6.8rem;
  }

  .status-bottom {
    left: 1rem;
    right: 1rem;
    width: auto;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255,255,255,0.96);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .cta-band-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .hero-copy,
  .feature-card,
  .step-card,
  .contact-form,
  .benefit-item,
  .hero-visual,
  .cta-band-wrap {
    padding: 1.15rem;
  }

  .brand-text small {
    display: none;
  }

  h1 {
    max-width: 100%;
  }

  .status-side {
    width: calc(100% - 2rem);
    bottom: 7.5rem;
  }
}
