:root {
  color-scheme: light;
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-soft: #f4f6fb;
  --text: #101828;
  --muted: #475467;
  --muted-strong: #344054;
  --line: #d9e0ec;
  --accent: #4f46e5;
  --accent-strong: #4338ca;
  --accent-soft: #eef2ff;
  --success: #0f766e;
  --danger: #b42318;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.10);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 16px;
  --container: 1120px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(135deg, rgba(79, 70, 229, 0.09), rgba(20, 184, 166, 0.06) 34%, rgba(255, 255, 255, 0) 64%),
    linear-gradient(180deg, #fbfcff 0%, #f7f9fc 42%, #ffffff 100%);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(79, 70, 229, 0.42);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--text);
  color: #fff;
  text-decoration: none;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(217, 224, 236, 0.8);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--accent), #0f766e);
  color: #fff;
  font-size: 17px;
  box-shadow: 0 10px 28px rgba(79, 70, 229, 0.25);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--accent-strong);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.hero {
  padding: 56px 0 64px;
}

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

.badge,
.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid rgba(79, 70, 229, 0.18);
  border-radius: 999px;
  background: rgba(238, 242, 255, 0.82);
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 700;
}

.tagline {
  margin: 22px 0 0;
  color: var(--muted-strong);
  font-weight: 700;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: 42px;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-subhead {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 18px;
}

.waitlist-panel {
  max-width: 720px;
  padding: 16px;
  border: 1px solid rgba(217, 224, 236, 0.92);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
}

.form-heading {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 14px;
}

.form-heading h2 {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.25;
}

.form-heading p,
.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 700;
}

.field input {
  width: 100%;
  min-height: 52px;
  border: 1px solid #cfd7e6;
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  padding: 12px 14px;
}

.field input::placeholder {
  color: #667085;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 0;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.primary-button {
  background: var(--accent-strong);
  color: #fff;
  padding: 13px 18px;
  box-shadow: 0 14px 30px rgba(67, 56, 202, 0.24);
  white-space: nowrap;
}

.primary-button:hover {
  background: #3730a3;
  transform: translateY(-1px);
}

.primary-button:disabled {
  cursor: progress;
  opacity: 0.72;
  transform: none;
}

.secondary-button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--accent-strong);
  padding: 11px 15px;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 14px 0 10px;
  color: var(--muted);
  font-size: 14px;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent-strong);
  flex: 0 0 auto;
}

.form-status {
  min-height: 22px;
  margin-top: 10px;
  color: var(--danger);
  font-size: 14px;
  font-weight: 700;
}

.success-state {
  margin-top: 10px;
  padding: 16px;
  border: 1px solid rgba(15, 118, 110, 0.22);
  border-radius: var(--radius-md);
  background: #ecfdf5;
  color: #064e3b;
}

.success-state p {
  margin-bottom: 12px;
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 740px;
  margin-top: 18px;
}

.trust-chips span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border: 1px solid rgba(217, 224, 236, 0.86);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted-strong);
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 700;
}

.report-preview {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(217, 224, 236, 0.9);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(79, 70, 229, 0.12), rgba(20, 184, 166, 0.09)),
    #fff;
  box-shadow: var(--shadow);
  padding: 20px;
}

.preview-topline,
.engine-list div,
.next-action {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.preview-topline {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(217, 224, 236, 0.9);
  color: var(--muted);
}

.preview-topline strong {
  color: var(--text);
  font-size: 20px;
}

.score-ring {
  display: grid;
  width: 176px;
  height: 176px;
  place-items: center;
  margin: 30px auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #fff 0 53%, transparent 54%),
    conic-gradient(var(--accent-strong) 0 42%, #d9e0ec 42% 100%);
}

.score-ring span {
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--accent-strong);
  font-weight: 700;
  box-shadow: inset 0 0 0 1px var(--line);
}

.engine-list {
  display: grid;
  gap: 10px;
}

.engine-list div,
.next-action {
  border: 1px solid rgba(217, 224, 236, 0.82);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.76);
  padding: 12px;
}

.engine-list span,
.next-action span {
  color: var(--muted);
  font-size: 14px;
}

.engine-list strong,
.next-action strong {
  color: var(--text);
  font-size: 14px;
  text-align: right;
}

.next-action {
  display: grid;
  margin-top: 12px;
}

.next-action strong {
  text-align: left;
}

.section {
  padding: 64px 0;
}

.section-muted {
  background: rgba(244, 246, 251, 0.72);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 28px;
}

.section-heading .eyebrow,
.price-block .eyebrow,
.final-cta .eyebrow {
  margin-bottom: 12px;
}

.section-heading h2,
.final-cta h2 {
  margin-bottom: 0;
  font-size: 30px;
  line-height: 1.16;
  letter-spacing: 0;
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.benefit-card {
  min-height: 216px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 22px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
}

.benefit-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.25;
}

.benefit-card p,
.price-block p,
.faq-list p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.steps-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 16px;
}

.steps-list span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 700;
}

.steps-list p {
  margin: 0;
  color: var(--muted-strong);
  font-weight: 700;
}

.price-wrap {
  display: grid;
  place-items: center;
}

.price-block {
  width: min(100%, 760px);
  border: 1px solid rgba(79, 70, 229, 0.18);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(79, 70, 229, 0.10), rgba(20, 184, 166, 0.08)),
    #fff;
  box-shadow: var(--shadow);
  padding: 28px;
  text-align: center;
}

.price {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 18px;
}

.price-block p {
  max-width: 560px;
  margin-inline: auto;
}

.price-block small {
  color: var(--muted-strong);
  font-weight: 700;
}

.faq-wrap {
  display: grid;
  gap: 12px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 16px 18px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 700;
}

.faq-list p {
  margin: 12px 0 0;
}

.final-cta {
  padding: 56px 0;
  background: #111827;
  color: #fff;
}

.final-inner {
  display: grid;
  gap: 20px;
  align-items: center;
}

.final-cta .eyebrow {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #c7d2fe;
}

.final-cta h2 {
  max-width: 620px;
}

.link-button {
  width: fit-content;
}

.site-footer {
  padding: 36px 0;
  background: #0b1220;
  color: #cbd5e1;
}

.footer-inner {
  display: grid;
  gap: 10px;
  font-size: 14px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: #fff;
}

@media (min-width: 720px) {
  .container {
    width: min(100% - 48px, var(--container));
  }

  h1 {
    font-size: 56px;
  }

  .field-row {
    grid-template-columns: minmax(260px, 1fr) auto;
    align-items: end;
  }

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

  .split-section {
    grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
    align-items: start;
  }

  .final-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (min-width: 980px) {
  .hero {
    padding: 76px 0 80px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
    gap: 48px;
  }
}

@media (max-width: 430px) {
  .header-cta {
    max-width: 156px;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }

  .hero {
    padding-top: 42px;
  }

  h1 {
    font-size: 36px;
  }

  .hero-subhead {
    font-size: 17px;
  }

  .waitlist-panel,
  .report-preview,
  .price-block {
    padding: 16px;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
    white-space: normal;
  }

  .engine-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .engine-list strong {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
