:root {
  --bg: #f3f5ff;
  --surface: #ffffff;
  --surface-muted: #eef1ff;
  --text: #171f3f;
  --muted: #505d86;
  --primary: #5b38ff;
  --primary-dark: #4325c9;
  --accent: #4050a1;
  --border: #d9def4;
  --container: 1120px;
  --radius: 14px;
  --section: 96px;
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  color: var(--text);
  background:
    radial-gradient(60rem 40rem at 0% -10%, rgba(111, 60, 255, 0.08), transparent 65%),
    radial-gradient(55rem 36rem at 100% 5%, rgba(64, 80, 161, 0.08), transparent 68%),
    var(--bg);
  line-height: 1.65;
}

h1,
h2,
h3 {
  margin: 0 0 12px;
  font-family: "Bricolage Grotesque", sans-serif;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: #121a36;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-shadow:
    0.5px 0 0 currentColor,
    -0.5px 0 0 currentColor,
    0 0.5px 0 currentColor,
    0 -0.5px 0 currentColor,
    0.5px 0.5px 0 currentColor,
    -0.5px -0.5px 0 currentColor,
    0.5px -0.5px 0 currentColor,
    -0.5px 0.5px 0 currentColor;
}

.hero-subline {
  display: block;
  margin-top: 12px;
  font-size: clamp(1.15rem, 2.2vw, 1.8rem);
  line-height: 1.2;
  color: #d7cbff;
  font-weight: 700;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.05rem, 2.1vw, 1.3rem);
  font-weight: 700;
}

p {
  margin: 0 0 14px;
  color: #4f5c85;
}

a {
  color: inherit;
}

.container {
  width: min(var(--container), 90vw);
  margin: 0 auto;
}

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

.section {
  padding: var(--section) 0;
  position: relative;
  scroll-margin-top: 96px;
}

.section + .section {
  border-top: 1px solid rgba(64, 80, 161, 0.1);
}

.section:nth-of-type(even) {
  background: linear-gradient(180deg, #f9faff 0%, #f6f8ff 100%);
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section h2 {
  max-width: 760px;
  margin-bottom: 14px;
  letter-spacing: -0.025em;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 100;
  background: #111;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.site-header.scrolled {
  background: #ffffff;
  border-bottom-color: var(--border);
  box-shadow: 0 10px 30px rgba(27, 38, 83, 0.07);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  gap: 11px;
  align-items: center;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  line-height: 1;
  color: #ffffff;
}

.brand i {
  font-size: 1.25em;
  color: #ffffff;
}

.main-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.main-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  font-size: 0.92rem;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #ffffff;
}

.site-header.scrolled .brand {
  color: #111a37;
}

.site-header.scrolled .brand i {
  color: #5b38ff;
}

.site-header.scrolled .main-nav a {
  color: #334378;
}

.site-header.scrolled .main-nav a:hover,
.site-header.scrolled .main-nav a:focus-visible {
  color: #1a2750;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 104px 0 88px;
  background:
    linear-gradient(125deg, rgba(28, 37, 81, 0.82) 0%, rgba(42, 45, 106, 0.78) 38%, rgba(74, 44, 165, 0.72) 72%, rgba(111, 60, 255, 0.72) 100%),
    url("/assets/cover.webp") center/cover no-repeat,
    linear-gradient(125deg, #1c2551 0%, #2a2d6a 38%, #4a2ca5 72%, #6f3cff 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.12), transparent 40%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 8px;
  color: rgba(236, 241, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lead {
  font-size: clamp(1rem, 2vw, 1.16rem);
  max-width: 760px;
  color: rgba(244, 247, 255, 0.92);
}

.capacity-note {
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.14);
  color: #f4f7ff;
  border-radius: 12px;
  padding: 9px 12px;
  font-size: 0.94rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, #4d35d1 0%, #6f3cff 100%);
  color: #fff;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #3f2bb5 0%, #5d2fff 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-white {
  background: #ffffff;
  color: #1a1a2e;
  padding: 18px 32px;
  font-size: 1.125rem;
}

.btn-white:hover {
  background: #f0f0f5;
}

.price-line {
  color: #eef2ff;
}

.hero h1,
.hero .price-line {
  color: #ffffff;
}

.hero-trust {
  margin-top: 42px;
}

.hero .trust-items p {
  color: #eef2ff;
}

.hero .trust-items li {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.hero .trust-items i {
  color: #c9ffdb;
}

.trust-strip {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.trust-items {
  display: grid;
  gap: 12px;
}

.trust-items p {
  margin: 0;
  color: #1f294a;
  font-weight: 600;
}

.trust-items ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-items li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fbfcff;
  color: #344067;
  font-size: 0.9rem;
}

.trust-items i {
  color: #2f9e44;
  font-size: 1rem;
}

.section-intro {
  max-width: 760px;
  margin: 0 0 28px;
  font-size: 1.05rem;
  color: #44537f;
}

.grid {
  display: grid;
  gap: 20px;
}

.three-col,
.checklist-grid,
.benefits-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: #fff;
  border: 1px solid #d7def5;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 8px 22px rgba(30, 45, 95, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(30, 45, 95, 0.09);
}

.checklist-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.checklist-item i {
  font-size: 2.75rem;
  color: var(--primary);
}

.checklist-item span {
  line-height: 1.5;
}

.step-card {
  border-top: 4px solid #cfc6ff;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #4d35d1 0%, #6f3cff 100%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 1.7rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  box-shadow: 0 10px 24px rgba(79, 58, 180, 0.32);
}

.compare-table-wrap {
  border: 1px solid #cfd7f3;
  border-radius: 18px;
  overflow-x: auto;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(40, 54, 110, 0.08);
}

.compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: separate;
  border-spacing: 0;
}

.compare-table th,
.compare-table td {
  padding: 17px 15px;
  border-bottom: 1px solid #e5e9f7;
  text-align: left;
  vertical-align: top;
}

.compare-table th {
  color: #1f294a;
  font-weight: 700;
  background: #f6f8ff;
}

.compare-table thead th:first-child {
  width: 19%;
}

.compare-table tbody tr:nth-child(even) td:not(.magic-col),
.compare-table tbody tr:nth-child(even) th {
  background: #fafbff;
}

.compare-table td {
  color: #4f5a7d;
}

.magic-col {
  background: linear-gradient(180deg, #f5f2ff 0%, #ede7ff 100%);
  border-left: 1px solid #dbd2ff;
  border-right: 1px solid #dbd2ff;
}

.compare-table tbody tr:hover td:not(.magic-col),
.compare-table tbody tr:hover th {
  background: #f3f6ff;
}

.compare-table tbody tr:hover .magic-col {
  background: linear-gradient(180deg, #efe9ff 0%, #e8e0ff 100%);
}

.compare-badge {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #5b38ff;
  color: #fff;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.list {
  margin: 0;
  padding-left: 18px;
}

.list li {
  margin-bottom: 10px;
  color: #4c587a;
}

.center,
.center-cta {
  text-align: center;
}

.icon-card {
  position: relative;
  padding-left: 54px;
}

.icon-card i {
  position: absolute;
  left: 20px;
  top: 20px;
  font-size: 1.35rem;
  color: #314575;
}

.example-card {
  padding: 14px;
}

.example-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-bottom: 12px;
  background: #eef2fb;
}

.example-card h3 {
  margin-bottom: 6px;
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(280px, 360px));
  justify-content: center;
  align-items: stretch;
  gap: 16px;
}

.price-card {
  position: relative;
  padding: 24px 20px;
  border-radius: 18px;
  border-color: #d6ddf7;
  background: linear-gradient(180deg, #ffffff 0%, #f9faff 100%);
  overflow: hidden;
}

.price-card:first-child {
  border-color: #d4dcf9;
  box-shadow: 0 10px 24px rgba(79, 58, 180, 0.08);
}

.price-card:last-child {
  background: linear-gradient(180deg, #ffffff 0%, #f7f4ff 100%);
}

.featured-price {
  border-color: #b9a9ff;
  box-shadow: 0 16px 36px rgba(91, 56, 255, 0.16);
}

.pricing-intro {
  margin-bottom: 28px;
}

.plan-tag {
  display: inline-flex;
  align-items: center;
  margin: 2px 0 14px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #5b38ff;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-card .plan {
  margin: 0 0 4px;
  color: #6775a0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.price-card h3 {
  margin: 0 0 14px;
  font-size: clamp(2.6rem, 4.8vw, 3.5rem);
  line-height: 0.95;
  color: #1a2352;
}

.price-card h3 span {
  display: block;
  margin-top: 8px;
  color: #6c789f;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.pricing .price-card .list {
  margin-top: 14px;
  padding-left: 0;
  list-style: none;
}

.pricing .price-card .list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
}

.pricing .price-card .list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4d35d1 0%, #6f3cff 100%);
}

.quote-card p:first-child {
  color: #2c375d;
  font-size: 1.02rem;
}

.quote-card::before {
  content: "“";
  display: block;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 2rem;
  line-height: 1;
  color: #7d68e8;
  margin-bottom: 6px;
}

.attribution {
  margin: 0;
  color: #5a678f;
  font-weight: 600;
  font-size: 0.93rem;
}

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

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  color: #162043;
  padding: 16px 18px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item button::after {
  content: "+";
  font-size: 1.25rem;
  line-height: 1;
  color: #55659a;
}

.faq-item button[aria-expanded="true"]::after {
  content: "-";
}

.faq-item [role="region"] {
  padding: 0 18px 16px;
}

.lead-compact {
  margin-bottom: 22px;
  color: #2a355d;
  font-size: 1.12rem;
}

.bottom-cta {
  background: linear-gradient(180deg, #f5f6ff 0%, #ecefff 100%) !important;
}

.bottom-cta .btn {
  min-width: 220px;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
  background: #fff;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 22px;
}

.footer-brand {
  margin: 0 0 8px;
  font-family: "Bricolage Grotesque", sans-serif;
  color: #121a36;
  font-weight: 800;
}

.footer-grid p {
  margin: 0 0 8px;
}

.footer-grid a {
  color: #2f4274;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

@media (min-width: 961px) {
  .hero {
    height: 100vh;
    height: 100dvh;
    min-height: 100dvh;
    max-height: 100dvh;
    padding: calc(var(--header-height) + 24px) 0 40px;
  }
}

@media (max-width: 960px) {
  :root {
    --section: 74px;
  }

  .hero {
    padding: 90px 0 72px;
    background-position: center;
  }

  .three-col,
  .checklist-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --section: 56px;
  }

  .menu-toggle {
    display: inline-flex;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-weight: 600;
    border-radius: 8px;
    padding: 8px 12px;
  }

  .site-header.scrolled .menu-toggle {
    border-color: var(--border);
    background: #ffffff;
    color: #23315b;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 4vw;
    right: 4vw;
    background: rgba(20, 27, 56, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    padding: 12px;
    flex-direction: column;
    gap: 10px;
  }

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

  .hero {
    padding: 84px 0 52px;
    background-position: center;
  }

  .hero-trust {
    margin-top: 28px;
  }

  .three-col,
  .checklist-grid,
  .benefits-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .card:hover,
  .btn:hover {
    transform: none;
  }

  .footer-grid {
    flex-direction: column;
  }
}


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