:root {
  --ink: #162433;
  --ink-soft: #51647a;
  --paper: #f3f6f9;
  --paper-deep: #e4ebf2;
  --teal: #355978;
  --teal-deep: #1e3048;
  --teal-mid: #42739a;
  --accent: #54a3e4;
  --accent-soft: #b7daf3;
  --line: rgba(22, 36, 51, 0.12);
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(30, 48, 72, 0.14);
  --radius: 4px;
  --font-display: "Libre Baskerville", Georgia, serif;
  --font-body: "Nunito Sans", "Segoe UI", sans-serif;
  --shell: min(1120px, calc(100% - 2.5rem));
  --header-h: 4.25rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
.hero-brand,
.logo,
.footer-brand {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1,
h2,
h3 {
  margin: 0 0 0.75rem;
  color: var(--teal-deep);
}

h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.6rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--teal-deep);
  color: var(--white);
  padding: 0.65rem 1rem;
  z-index: 100;
  border-radius: var(--radius);
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(243, 246, 249, 0.86);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(243, 246, 249, 0.94);
}

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

.logo {
  font-size: 1.35rem;
  text-decoration: none;
  color: var(--teal-deep);
}

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

.site-nav a {
  text-decoration: none;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--teal);
}

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

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 2px;
  margin: 0.3rem auto;
  background: var(--teal-deep);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--teal-deep);
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(53, 89, 120, 0.55), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 75%, rgba(84, 163, 228, 0.18), transparent 50%),
    linear-gradient(160deg, #1e3048 0%, #355978 42%, #2a4563 100%);
  animation: atmosphere-shift 14s ease-in-out infinite alternate;
}

.hero-atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 85%);
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(3.5rem, 8vh, 6rem) 0;
  max-width: 46rem;
}

.hero-brand {
  margin: 0 0 0.65rem;
  font-size: clamp(2.75rem, 7vw, 4.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
}

.hero-tagline {
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--accent-soft);
  letter-spacing: 0.01em;
}

.hero-headline {
  margin: 0 0 1.1rem;
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  font-weight: 500;
  color: var(--white);
  max-width: 22ch;
}

.hero-support {
  margin: 0 0 2rem;
  font-size: 1.125rem;
  color: rgba(243, 246, 249, 0.88);
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease,
    border-color 0.2s ease;
}

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

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent-soft);
  color: var(--teal-deep);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

/* Intro */
.intro {
  padding: clamp(2.5rem, 5vw, 3.75rem) 0;
}

.intro-text {
  max-width: 42rem;
  font-size: 1.2rem;
  color: var(--ink-soft);
}

/* Products */
.products {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  background: var(--white);
  border-block: 1px solid var(--line);
}

.section-header {
  max-width: 40rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-header p {
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.product-list {
  display: grid;
  gap: 0;
}

.product {
  padding: clamp(1.75rem, 3vw, 2.35rem) 0;
  border-top: 1px solid var(--line);
}

.product:last-child {
  border-bottom: 1px solid var(--line);
}

.product p {
  color: var(--ink-soft);
  max-width: 44rem;
}

.product-lead {
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--teal) !important;
}

.product-cta {
  margin-top: 1rem;
}

.text-link {
  display: inline-flex;
  margin-top: 0.35rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1.5px solid rgba(53, 89, 120, 0.35);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--teal-deep);
  border-bottom-color: var(--teal-deep);
}

/* Value */
.value {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--paper-deep) 100%);
}

.value-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem 2.5rem;
}

.value-grid h3 {
  margin-bottom: 0.4rem;
}

.value-grid p {
  color: var(--ink-soft);
}

/* Control */
.control {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  background: var(--teal-deep);
  color: rgba(243, 246, 249, 0.9);
}

.control h2 {
  color: var(--white);
  max-width: 18ch;
}

.control-inner {
  max-width: 42rem;
}

.control p {
  font-size: 1.08rem;
}

/* Audience */
.audience {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  background: var(--white);
}

.audience-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1.5rem;
  max-width: 40rem;
}

.audience-list li {
  position: relative;
  padding-left: 1.1rem;
  font-weight: 500;
  color: var(--ink);
}

.audience-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
}

.audience-note {
  max-width: 40rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

/* Final CTA */
.final-cta {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(84, 163, 228, 0.12), transparent 55%),
    var(--paper-deep);
}

.final-cta-inner {
  max-width: 40rem;
}

.final-cta .btn-secondary {
  color: var(--teal-deep);
  border-color: rgba(53, 89, 120, 0.35);
}

.final-cta .btn-secondary:hover,
.final-cta .btn-secondary:focus-visible {
  border-color: var(--teal);
  background: rgba(53, 89, 120, 0.06);
}

.pricing-note,
.contact-note {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.pricing-note {
  margin-bottom: 1.5rem;
}

.contact-block {
  margin-top: 1.25rem;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 3rem;
  background: var(--teal-deep);
  color: rgba(243, 246, 249, 0.78);
}

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

.footer-brand {
  margin: 0;
  font-size: 1.35rem;
  color: var(--white);
}

.footer-tag {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
}

.footer-legal {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: rgba(243, 246, 249, 0.62);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-nav a {
  color: var(--accent-soft);
  text-decoration: none;
  font-weight: 500;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  text-decoration: underline;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.reveal-delay-1 {
  animation-delay: 0.12s;
}

.reveal-delay-2 {
  animation-delay: 0.24s;
}

.reveal-delay-3 {
  animation-delay: 0.36s;
}

.reveal-delay-4 {
  animation-delay: 0.48s;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes rise-in {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes atmosphere-shift {
  from {
    filter: hue-rotate(0deg) saturate(1);
  }
  to {
    filter: hue-rotate(8deg) saturate(1.08);
  }
}

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

  .reveal,
  .reveal-on-scroll,
  .hero-atmosphere {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* Product page */
.product-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--teal-deep);
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(3.5rem, 8vw, 5.5rem);
}

.product-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.product-eyebrow {
  margin: 0 0 0.75rem;
  font-weight: 600;
  color: var(--accent-soft);
  letter-spacing: 0.02em;
}

.product-headline {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  color: var(--white);
  max-width: 18ch;
}

.product-support {
  margin: 0 0 1.75rem;
  font-size: 1.1rem;
  color: rgba(243, 246, 249, 0.88);
  max-width: 38rem;
}

.product-trust {
  margin: 1.25rem 0 0;
  font-size: 0.98rem;
  color: rgba(243, 246, 249, 0.72);
}

.product-visual {
  min-width: 0;
  margin: 0;
}

.product-hero-shot {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
  background: var(--white);
}

.mock-window {
  background: rgba(243, 246, 249, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.mock-chrome {
  display: flex;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  background: rgba(30, 48, 72, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mock-chrome span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.mock-body {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  min-height: 280px;
}

.mock-body-sheet {
  grid-template-columns: 0.58fr 0.42fr;
}

.mock-sheet {
  background: rgba(243, 246, 249, 0.96);
}

.mock-table-wide {
  grid-template-columns: repeat(3, 1fr);
}

.hero-placeholder-note {
  margin: 0.75rem 0 0;
  text-align: center;
  font-size: 0.88rem;
  color: rgba(243, 246, 249, 0.65);
}

.mock-sidebar {
  padding: 1rem 0.85rem;
  background: rgba(53, 89, 120, 0.65);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.mock-side-title {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.mock-sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.mock-sidebar li {
  padding: 0.45rem 0.55rem;
  border-radius: 6px;
  font-size: 0.82rem;
  color: rgba(243, 246, 249, 0.78);
}

.mock-sidebar li.is-active {
  background: rgba(84, 163, 228, 0.22);
  color: var(--white);
  font-weight: 600;
}

.mock-doc {
  padding: 1.1rem 1rem 1.25rem;
  background: rgba(243, 246, 249, 0.96);
  color: var(--teal-deep);
}

.mock-doc-title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
}

.mock-heading {
  margin: 0.85rem 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--teal);
}

.mock-line {
  height: 0.45rem;
  width: 72%;
  margin: 0 0 0.45rem;
  border-radius: 999px;
  background: rgba(53, 89, 120, 0.14);
}

.mock-line.long {
  width: 92%;
}

.mock-line.mid {
  width: 58%;
}

.mock-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.mock-table div {
  height: 1.35rem;
  border-radius: 4px;
  background: rgba(53, 89, 120, 0.1);
  border: 1px solid rgba(53, 89, 120, 0.08);
}

.product-section {
  padding: clamp(3.25rem, 7vw, 5.25rem) 0;
}

.product-section.alt {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.shell.narrow {
  max-width: 760px;
}

.benefit-list,
.feature-blocks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

.benefit-list h3,
.feature-block h3 {
  margin-bottom: 0.4rem;
}

.benefit-list p,
.feature-block p {
  color: var(--ink-soft);
}

.feature-blocks {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem 2rem;
}

.feature-block {
  padding-top: 0.25rem;
  border-top: 1px solid var(--line);
}

.feature-block ul,
.check-list,
.control-list {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.feature-block li,
.check-list li,
.control-list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--ink-soft);
}

.feature-block li::before,
.check-list li::before,
.control-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
}

.demo-placeholder {
  margin: 0 0 1.5rem;
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(84, 163, 228, 0.12), transparent 60%),
    var(--paper-deep);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.demo-placeholder > p:first-child {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--teal-deep);
}

.demo-steps {
  margin: 0;
  max-width: 36rem;
  margin-inline: auto;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.assessment-groups {
  display: grid;
  gap: 0.5rem;
  max-width: 40rem;
}

.assessment-group {
  border-top: 1px solid var(--line);
  padding: 0.65rem 0 0.25rem;
}

.assessment-group:last-child {
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.75rem;
}

.assessment-group summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--teal-deep);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.assessment-group summary::-webkit-details-marker {
  display: none;
}

.assessment-group summary::after {
  content: "+";
  color: var(--teal-mid);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.1rem;
}

.assessment-group[open] summary::after {
  content: "–";
}

.assessment-count {
  margin-left: auto;
  margin-right: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.assessment-group ul {
  list-style: none;
  margin: 0.75rem 0 0.35rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem 1.25rem;
}

.assessment-group li {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.98rem;
}

.coming-soon {
  font-weight: 400;
  color: var(--teal-mid);
  font-size: 0.92em;
}

.assessment-note {
  margin: 1.5rem 0 0;
  max-width: 40rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.product-control .control-list {
  margin: 1.25rem 0;
}

.product-control .control-list li {
  color: rgba(243, 246, 249, 0.92);
}

.control-highlight {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 600;
  color: var(--accent-soft);
}

.district-callout {
  margin-top: 2rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--line);
}

.district-callout p {
  max-width: 40rem;
  color: var(--ink-soft);
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  border-top: 1px solid var(--line);
  padding: 0.85rem 0 0.35rem;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--teal-deep);
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--teal-mid);
  font-weight: 500;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin-top: 0.75rem;
  color: var(--ink-soft);
}

/* Success / thank-you */
.success-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--teal-deep);
  padding: clamp(3.5rem, 10vh, 6rem) 0 clamp(3rem, 8vh, 4.5rem);
}

.success-hero-content {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}

.success-hero .hero-brand {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
}

.success-hero .hero-headline {
  max-width: 18ch;
}

.success-setup .section-header {
  margin-bottom: 1.75rem;
}

.product-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.product-picker-option {
  appearance: none;
  margin: 0;
  padding: 0.7rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--teal-deep);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease,
    transform 0.2s ease;
}

.product-picker-option:hover,
.product-picker-option:focus-visible {
  border-color: var(--teal-mid);
  outline: none;
}

.product-picker-option:focus-visible {
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.product-picker-option[aria-checked="true"] {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  color: var(--white);
}

.setup-prompt {
  margin: 0 0 1.5rem;
  color: var(--ink-soft);
}

.getting-started-panel {
  margin-bottom: 2.5rem;
  padding-top: 0.25rem;
  border-top: 1px solid var(--line);
}

.getting-started-title {
  margin: 1.35rem 0 1rem;
}

.setup-steps {
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
  counter-reset: setup-step;
  display: grid;
  gap: 1.35rem;
}

.setup-steps li {
  position: relative;
  padding-left: 2.75rem;
  counter-increment: setup-step;
}

.setup-steps li::before {
  content: counter(setup-step);
  position: absolute;
  left: 0;
  top: 0.1rem;
  display: grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  background: var(--paper-deep);
  color: var(--teal-deep);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
}

.setup-steps h4 {
  margin: 0 0 0.35rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--teal-deep);
  letter-spacing: 0;
}

.setup-steps p {
  margin: 0;
  color: var(--ink-soft);
}

.setup-more {
  margin: 1.25rem 0 0;
}

.success-help {
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* Responsive */
@media (max-width: 800px) {
  :root {
    --shell: min(1120px, calc(100% - 1.75rem));
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem 1.25rem 1.25rem;
    background: rgba(243, 246, 249, 0.98);
    border-bottom: 1px solid var(--line);
  }

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

  .site-nav a {
    width: 100%;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: calc(100svh - var(--header-h));
  }

  .hero-headline {
    max-width: none;
  }

  .value-grid,
  .audience-list {
    grid-template-columns: 1fr;
  }

  .product-hero-grid,
  .feature-blocks,
  .mock-body {
    grid-template-columns: 1fr;
  }

  .assessment-group ul {
    grid-template-columns: 1fr;
  }

  .product-headline {
    max-width: none;
  }

  .success-hero .hero-headline {
    max-width: none;
  }

  .product-picker {
    flex-direction: column;
    align-items: stretch;
  }

  .product-picker-option {
    width: 100%;
    text-align: center;
  }

  .mock-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}
