:root {
  --ink: #163139;
  --muted: #5d7477;
  --line: #d9e9e7;
  --paper: #ffffff;
  --white: #ffffff;
  --teal: #147c7c;
  --teal-dark: #0d5f63;
  --mint: #dff3ee;
  --blue: #2f6fa3;
  --sky: #e8f4fb;
  --gold: #f3bf4f;
  --coral: #ee7b62;
  --shadow: 0 22px 55px rgba(20, 64, 72, 0.13);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: clip;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(250px, 360px) 1fr auto;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  min-height: 104px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 233, 231, 0.85);
  backdrop-filter: blur(18px);
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.logo-link img {
  width: min(330px, 58vw);
  height: auto;
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(20, 64, 72, 0.08);
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-menu-toggle span + span {
  margin-top: 5px;
}

.site-header.nav-open .mobile-menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .mobile-menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.nav-link,
.dropdown-toggle {
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.nav-link:hover,
.dropdown.open .dropdown-toggle {
  background: var(--mint);
}

.dropdown {
  position: relative;
}

.dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  display: none;
  min-width: 250px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.dropdown.open .dropdown-menu,
.dropdown:hover .dropdown-menu {
  display: grid;
  gap: 4px;
}

.dropdown-menu a {
  padding: 12px 14px;
  border-radius: 6px;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: var(--sky);
  color: var(--blue);
}

.header-actions,
.hero-actions,
.cta-actions,
.onboarding-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-button {
  flex-direction: column;
  gap: 2px;
  min-height: 54px;
  padding: 8px 18px;
  line-height: 1.05;
  text-align: center;
}

.header-button small {
  display: block;
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1;
  opacity: 0.74;
}

.button:hover,
.provider-button:hover,
.role-option:hover,
.school-results button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 12px 25px rgba(20, 124, 124, 0.22);
}

.button-primary:hover {
  background: var(--teal-dark);
}

.button-soft {
  color: var(--teal-dark);
  background: var(--mint);
}

.button-ghost {
  color: var(--ink);
  background: transparent;
}

.button-outline {
  color: var(--teal-dark);
  background: var(--white);
  border-color: var(--line);
}

.button-large {
  min-height: 50px;
  padding-inline: 24px;
}

.pricing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  padding-block: clamp(58px, 8vw, 110px) 28px;
}

.pricing-hero h1 {
  max-width: 980px;
}

.pricing-recommendation,
.pricing-card,
.site-pricing-table,
.pricing-trust article,
.quote-form,
.pricing-faq article {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(20, 64, 72, 0.08);
}

.pricing-recommendation {
  padding: 28px;
  border-radius: 24px;
  background: var(--mint);
}

.pricing-recommendation strong,
.pricing-trust strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  width: min(1320px, calc(100% - 36px));
  max-width: none;
  padding-top: 30px;
  margin-bottom: clamp(56px, 7vw, 96px);
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 26px;
}

.featured-pricing-card {
  border-color: rgba(20, 124, 124, 0.36);
  box-shadow: 0 24px 60px rgba(20, 124, 124, 0.16);
}

.pricing-badge,
.plan-label {
  width: fit-content;
  color: var(--teal-dark);
  background: var(--mint);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.pricing-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 6px 10px;
}

.plan-label {
  padding: 7px 10px;
}

.pricing-card h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  line-height: 1.05;
}

.price {
  color: var(--ink);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.price span {
  margin-left: 6px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
}

.pricing-copy {
  margin: 0;
}

.pricing-feature-list {
  display: grid;
  gap: 10px;
  margin: 0 0 8px;
  padding: 0;
  list-style: none;
}

.pricing-feature-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-weight: 650;
}

.pricing-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.72);
}

.pricing-card .button {
  margin-top: auto;
}

.pricing-table-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  padding-block: clamp(28px, 5vw, 64px) clamp(64px, 8vw, 104px);
}

.site-pricing-table {
  display: grid;
  border-radius: 24px;
  overflow: hidden;
}

.site-pricing-table div {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.site-pricing-table div:first-child {
  color: var(--white);
  background: var(--teal-dark);
  font-weight: 900;
}

.site-pricing-table span {
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.site-pricing-table div:not(:first-child) span:not(:last-child) {
  border-right: 1px solid var(--line);
}

.site-pricing-table div:last-child span {
  border-bottom: 0;
}

.pricing-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: clamp(64px, 8vw, 110px);
}

.pricing-trust article,
.pricing-faq article {
  padding: 26px;
  border-radius: 22px;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
  padding-block: clamp(24px, 5vw, 64px) clamp(64px, 8vw, 104px);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(22px, 4vw, 36px);
  border-radius: 26px;
}

.quote-form label,
.quote-checks {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 850;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.quote-form textarea {
  min-height: 118px;
  resize: vertical;
}

.quote-wide,
.quote-checks,
.quote-form .button,
.quote-form .form-message {
  grid-column: 1 / -1;
}

.quote-checks {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
}

.quote-checks legend {
  padding-inline: 8px;
  font-weight: 900;
}

.quote-checks label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 750;
}

.quote-checks input {
  width: 18px;
  min-height: 18px;
}

.pricing-faq {
  display: grid;
  grid-template-columns: minmax(240px, 0.5fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  padding-top: clamp(24px, 5vw, 58px);
}

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

.pricing-faq h3 {
  margin-top: 0;
}

.demo-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding-block: clamp(58px, 8vw, 112px) 34px;
}

.demo-hero h1 {
  max-width: 960px;
}

.demo-founder-note,
.demo-side-card,
.demo-paths article,
.demo-form,
.thank-you-card {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(20, 64, 72, 0.08);
}

.demo-founder-note {
  display: grid;
  gap: 5px;
  max-width: 720px;
  margin-top: 28px;
  padding: 22px;
  border-radius: 20px;
  background: var(--mint);
}

.demo-founder-note span,
.demo-side-card li {
  color: var(--muted);
  font-weight: 650;
}

.demo-side-card {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 26px;
}

.demo-side-card span,
.demo-paths span {
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.demo-side-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.demo-paths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 22px;
  padding-bottom: clamp(54px, 7vw, 94px);
}

.demo-paths article {
  display: grid;
  gap: 12px;
  padding: 28px;
  border-radius: 24px;
}

.demo-paths .button {
  align-self: end;
  justify-self: start;
  margin-top: 8px;
}

.demo-paths h2,
.demo-paths p {
  margin: 0;
}

.demo-form-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
  padding-block: clamp(24px, 5vw, 64px) clamp(70px, 8vw, 118px);
}

.demo-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(22px, 4vw, 36px);
  border-radius: 26px;
}

.demo-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 850;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.demo-form textarea {
  min-height: 130px;
  resize: vertical;
}

.demo-wide,
.demo-form .button {
  grid-column: 1 / -1;
}

.thank-you-page {
  display: grid;
  justify-items: start;
  gap: 22px;
  min-height: 58vh;
  padding-block: clamp(72px, 10vw, 140px);
}

.thank-you-page h1 {
  max-width: 860px;
  margin: 0;
}

.thank-you-card {
  max-width: 720px;
  padding: 26px;
  border-radius: 24px;
  background: var(--mint);
}

.thank-you-card p {
  margin-bottom: 0;
}

.faq-hero {
  display: grid;
  justify-items: start;
  gap: 18px;
  padding-block: clamp(64px, 9vw, 128px) 46px;
}

.faq-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.04;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  padding-block: 24px clamp(60px, 8vw, 104px);
}

.support-side-panel,
.faq-list-panel details,
.support-cta-band {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(20, 64, 72, 0.08);
}

.support-side-panel {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: 24px;
}

.support-side-panel span {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.support-side-panel h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.support-side-panel p {
  margin: 0;
  color: var(--muted);
}

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

.faq-list-panel details {
  border-radius: 18px;
  overflow: hidden;
}

.faq-list-panel summary {
  padding: 22px 24px;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 900;
  cursor: pointer;
}

.faq-list-panel p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  font-size: 1.02rem;
}

.support-cta-band {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  margin-bottom: clamp(64px, 8vw, 110px);
  padding: clamp(26px, 4vw, 42px);
  border-radius: 28px;
}

.support-cta-band h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.06;
}

.section-band,
.content-section,
.testimonial-band,
.cta-band {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.hero,
.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
  padding: clamp(42px, 6.5vw, 76px) 0;
}

.hero h1,
.product-hero h1,
.simple-page h1,
.onboarding-slide h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(2.35rem, 4vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.product-hero h1 {
  font-size: clamp(2.25rem, 5vw, 4.25rem);
}

.hero h1 span {
  display: block;
}

.lead {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.cta-note {
  max-width: 620px;
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 750;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.hero-product-paths,
.support-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

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

.hero-product-paths a,
.support-choice-grid a {
  display: grid;
  gap: 4px;
  padding: 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(20, 64, 72, 0.07);
  text-decoration: none;
}

.hero-product-paths span,
.support-choice-grid span {
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-product-paths strong,
.support-choice-grid strong {
  font-size: 1.02rem;
  line-height: 1.15;
}

.hero-product-paths small,
.support-choice-grid small {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-media {
  position: relative;
  align-self: start;
  padding-top: clamp(54px, 7vw, 84px);
}

.hero-media img,
.rounded-photo,
.image-flow > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media img {
  object-position: center 58%;
}

.hero-note {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(300px, calc(100% - 44px));
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: 0 16px 30px rgba(22, 49, 57, 0.13);
}

.hero-note strong,
.hero-note span {
  display: block;
}

.hero-note span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.93rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
  padding: 46px 0 44px;
}

.split-section h2,
.section-heading h2,
.flow-copy h2,
.cta-band h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.split-section p {
  margin-top: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.card-grid {
  display: grid;
  gap: 18px;
  padding: 8px 0 54px;
}

.product-choice-section {
  padding-block: 50px 72px;
}

.product-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
}

.product-choice-card {
  display: grid;
  justify-items: center;
  gap: 16px;
  min-height: 360px;
  padding: clamp(26px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 20px 48px rgba(20, 64, 72, 0.1);
  text-align: center;
}

.product-choice-card h3 {
  margin: 0;
  font-size: clamp(2rem, 2.75vw, 2.7rem);
  line-height: 1.04;
}

.product-logo-frame {
  display: grid;
  align-items: center;
  justify-items: center;
  width: min(100%, 560px);
  height: 128px;
}

.product-logo-mark,
.product-hero-logo {
  display: block;
  width: min(100%, 420px);
  height: auto;
  object-fit: contain;
}

.product-logo-mark {
  max-width: 460px;
  max-height: 102px;
  object-position: center;
}

.product-logo-frame .lesson-logo-mark,
.product-logo-frame .evaluation-logo-mark {
  width: min(100%, 420px);
}

.product-hero-logo {
  width: min(100%, 520px);
  max-height: 128px;
  margin: 12px 0 20px;
  object-position: left center;
}

.pricing-card .product-logo-mark {
  max-width: 320px;
  max-height: 74px;
}

.pricing-card .product-logo-frame {
  height: 88px;
}

.demo-paths .product-logo-mark {
  max-width: 310px;
  max-height: 68px;
}

.demo-paths .product-logo-frame {
  height: 82px;
}

.lesson-logo-mark {
  object-fit: contain;
}

.evaluation-logo-mark {
  object-fit: contain;
}

.product-choice-card p {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.product-choice-card .button {
  align-self: end;
  justify-self: center;
}

.school-quote-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding: clamp(22px, 3vw, 30px);
  color: var(--ink);
  background: linear-gradient(135deg, var(--white), #f7fcfb);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(20, 64, 72, 0.08);
}

.school-quote-callout div {
  display: grid;
  gap: 4px;
}

.school-quote-callout span {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.school-quote-callout strong {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.1;
}

.school-quote-callout p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.product-audience {
  width: fit-content;
  padding: 8px 12px;
  color: var(--teal-dark);
  background: var(--mint);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.leader-product-card {
  border-color: rgba(47, 111, 163, 0.28);
}

.leader-product-card .product-audience {
  color: #244f75;
  background: var(--sky);
}

.standout-section {
  padding-block: clamp(48px, 7vw, 82px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.standout-section .section-heading {
  max-width: 920px;
}

.standout-section .section-heading p:not(.eyebrow) {
  max-width: 820px;
  color: var(--muted);
  font-size: 1.08rem;
}

.standout-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.standout-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 260px;
  padding: clamp(24px, 3vw, 32px);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(20, 64, 72, 0.08);
}

.standout-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: var(--teal);
}

.standout-card.teacher-accent::before {
  background: var(--teal);
}

.standout-card.admin-accent::before {
  background: var(--blue);
}

.standout-card.review-accent::before {
  background: var(--gold);
}

.standout-number {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--teal-dark);
  background: var(--mint);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
}

.admin-accent .standout-number {
  color: #244f75;
  background: var(--sky);
}

.review-accent .standout-number {
  color: #614311;
  background: #fff1ce;
}

.standout-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.08;
}

.standout-card p {
  margin: 0;
  color: var(--muted);
}

.founder-proof-band {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: clamp(24px, 5vw, 66px);
  align-items: center;
  padding-block: clamp(46px, 7vw, 82px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.founder-proof-copy {
  display: grid;
  gap: 16px;
}

.founder-proof-copy h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.founder-proof-copy p:not(.eyebrow) {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.founder-proof-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.founder-proof-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.founder-proof-stats article,
.founder-credential-grid article {
  min-width: 0;
  padding: clamp(20px, 3vw, 28px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(20, 64, 72, 0.08);
}

.founder-proof-stats strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.6rem, 2.35vw, 2.3rem);
  line-height: 1.04;
  overflow-wrap: normal;
}

.founder-proof-stats span {
  display: block;
  margin-top: 8px;
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1.45;
  text-transform: uppercase;
}

.founder-proof-note {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr) auto;
  gap: clamp(18px, 4vw, 36px);
  align-items: center;
  padding-block: clamp(34px, 5vw, 54px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.founder-proof-note h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.founder-proof-note p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.trust-band {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
  padding-block: clamp(56px, 8vw, 104px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-band > div:first-child p {
  color: var(--muted);
}

.trust-content {
  display: grid;
  gap: 18px;
}

.privacy-stamp-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 24px;
  background: linear-gradient(135deg, #ffffff, #f3fbfa);
  border: 1px solid rgba(20, 124, 124, 0.28);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(20, 64, 72, 0.08);
}

.privacy-stamp {
  display: grid;
  place-items: center;
  width: 132px;
  aspect-ratio: 1;
  color: var(--teal-dark);
  background:
    radial-gradient(circle at center, #ffffff 0 52%, transparent 53%),
    repeating-conic-gradient(from 0deg, rgba(20, 124, 124, 0.18) 0deg 8deg, rgba(20, 124, 124, 0.04) 8deg 16deg);
  border: 3px solid var(--teal-dark);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px #e7f6f2, 0 14px 28px rgba(20, 64, 72, 0.11);
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-4deg);
}

.privacy-stamp span {
  display: block;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.privacy-stamp strong {
  display: block;
  max-width: 96px;
  font-size: 1.05rem;
  line-height: 0.98;
  letter-spacing: 0.02em;
}

.privacy-stamp-card p {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 760;
  line-height: 1.45;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.trust-grid article,
.product-trust-strip article {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(20, 64, 72, 0.06);
}

.trust-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  color: var(--teal-dark);
  background: var(--mint);
  border-radius: 999px;
  font-weight: 900;
}

.trust-grid h3,
.product-trust-strip strong {
  margin: 0 0 8px;
}

.trust-grid p,
.product-trust-strip p {
  margin: 0;
  color: var(--muted);
}

.trust-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  grid-column: 1 / -1;
}

.trust-links a {
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: none;
}

.text-link {
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.product-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 54px;
}

.product-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-block: 10px 34px;
}

.product-proof-row article {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(20, 64, 72, 0.07);
}

.admin-proof-row article {
  border-color: rgba(47, 111, 163, 0.24);
}

.product-proof-row strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.12rem;
  line-height: 1.16;
}

.product-proof-row p {
  margin: 0;
  color: var(--muted);
}

.before-after-section {
  padding-block: clamp(44px, 6vw, 76px);
  border-top: 1px solid var(--line);
}

.before-after-section .section-heading {
  max-width: 980px;
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.comparison-card {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 3.4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(20, 64, 72, 0.08);
}

.comparison-card.is-before {
  background: linear-gradient(135deg, #ffffff, #fbfbf8);
}

.comparison-card.is-after {
  background: linear-gradient(135deg, #ffffff, #f3fbfa);
  border-color: rgba(20, 124, 124, 0.28);
}

.admin-before-after .comparison-card.is-after {
  background: linear-gradient(135deg, #ffffff, #f3f9fe);
  border-color: rgba(47, 111, 163, 0.28);
}

.comparison-card span {
  justify-self: start;
  padding: 9px 14px;
  color: var(--teal-dark);
  background: var(--mint);
  border: 1px solid var(--line);
  border-radius: 8px 8px 8px 0;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-card.is-before span {
  color: #664313;
  background: #fff1ce;
}

.admin-before-after .comparison-card.is-after span {
  color: #244f75;
  background: var(--sky);
}

.comparison-card h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  line-height: 1.08;
}

.comparison-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.comparison-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--teal);
  border-radius: 999px;
  transform: translateY(-50%);
}

.comparison-card.is-before li::before {
  background: var(--gold);
}

.admin-before-after .comparison-card.is-after li::before {
  background: var(--blue);
}

.demo-trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-block: 4px 44px;
}

.demo-trust-row span {
  padding: 10px 14px;
  color: var(--teal-dark);
  background: var(--mint);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.not-found-page {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  min-height: 620px;
  padding-block: clamp(52px, 8vw, 96px);
}

.not-found-copy {
  display: grid;
  gap: 20px;
}

.not-found-copy h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.not-found-copy .lead {
  max-width: 760px;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.not-found-routes {
  display: grid;
  gap: 14px;
}

.not-found-routes a {
  display: grid;
  gap: 8px;
  padding: clamp(20px, 3vw, 26px);
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(20, 64, 72, 0.08);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.not-found-routes a:hover {
  border-color: rgba(20, 124, 124, 0.34);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.not-found-routes span {
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.not-found-routes strong {
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1.08;
}

.not-found-routes p {
  margin: 0;
  color: var(--muted);
}

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

.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.audience-grid article,
.testimonial-grid blockquote,
.route-card {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(20, 64, 72, 0.07);
}

.feature-card h3,
.audience-grid h3,
.step h3 {
  margin: 0 0 8px;
  font-size: 1.22rem;
}

.feature-card p,
.audience-grid p {
  margin: 0 0 18px;
  color: var(--muted);
}

.feature-card a {
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: none;
}

.blog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  padding: clamp(52px, 7vw, 86px) 0 48px;
}

.blog-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.45rem, 5.6vw, 5rem);
  line-height: 1.02;
}

.blog-editorial-card {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 36px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 22px 48px rgba(20, 64, 72, 0.1);
}

.blog-editorial-card h2,
.blog-editorial-card p {
  margin: 0;
}

.blog-editorial-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.blog-editorial-card p {
  color: var(--muted);
}

.blog-status {
  justify-self: start;
  padding: 10px 14px;
  color: var(--teal-dark);
  background: var(--mint);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.blog-process-grid article {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 260px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(20, 64, 72, 0.07);
}

.blog-process-grid h3,
.blog-process-grid p {
  margin: 0;
}

.blog-process-grid h3 {
  font-size: 1.28rem;
  line-height: 1.12;
}

.blog-process-grid p {
  color: var(--muted);
}

.blog-topics-section {
  padding-block: 52px 24px;
}

.conversion-walkthrough,
.use-case-section,
.buyer-objection-section {
  padding-block: clamp(42px, 6vw, 72px);
}

.conversion-walkthrough {
  border-top: 1px solid var(--line);
}

.walkthrough-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.five-step-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.walkthrough-grid article,
.use-case-grid article,
.objection-grid details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(20, 64, 72, 0.07);
}

.walkthrough-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 250px;
  padding: 22px;
}

.walkthrough-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--teal);
  border-radius: 999px;
  font-weight: 900;
}

.admin-walkthrough .walkthrough-grid span {
  background: var(--blue);
}

.walkthrough-grid h3,
.use-case-grid h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.16;
}

.walkthrough-grid p,
.use-case-grid p,
.objection-grid p {
  margin: 0;
  color: var(--muted);
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.use-case-grid article {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.buyer-objection-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.buyer-objection-section h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3.4vw, 3.25rem);
  line-height: 1.06;
}

.objection-grid {
  display: grid;
  gap: 14px;
}

.objection-grid details {
  padding: 20px 22px;
}

.objection-grid summary {
  color: var(--ink);
  font-size: 1.06rem;
  font-weight: 900;
  cursor: pointer;
}

.objection-grid p {
  padding-top: 12px;
}

.single-cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  margin-bottom: 72px;
  padding: clamp(28px, 4vw, 42px);
  background: linear-gradient(135deg, #fffaf0, var(--mint));
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 20px 48px rgba(20, 64, 72, 0.08);
}

.single-cta-band h2,
.single-cta-band p {
  margin: 0;
}

.single-cta-band p:not(.eyebrow) {
  color: var(--muted);
}

.app-flow-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.workflow-label {
  align-self: flex-start;
  min-height: 28px;
  margin-top: -2px;
  padding: 4px 12px;
  color: var(--teal-dark);
  background: var(--mint);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.app-flow-card p {
  flex: 1;
}

.app-shot {
  overflow: hidden;
  min-height: 172px;
  background: #f4fbfa;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.75);
}

.screenshot-shot {
  min-height: 190px;
  background: #efe6d3;
}

.screenshot-shot img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: top left;
}

.presentation-screenshot img {
  background: #153d37;
  object-fit: contain;
  object-position: center;
}

.shot-bar {
  display: flex;
  gap: 6px;
  padding: 10px;
  background: var(--sky);
  border-bottom: 1px solid var(--line);
}

.shot-bar span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--coral);
}

.shot-bar span:nth-child(2) {
  background: var(--gold);
}

.shot-bar span:nth-child(3) {
  background: var(--teal);
}

.shot-shell {
  display: grid;
  grid-template-columns: 36px 1fr;
  min-height: 132px;
}

.shot-side {
  background: var(--teal-dark);
}

.shot-main,
.lesson-form-shot,
.builder-shot-layout,
.presentation-shot {
  padding: 14px;
}

.shot-title,
.form-line,
.form-text,
.shot-list span,
.builder-panel span,
.builder-canvas div,
.presentation-shot span {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.shot-title {
  width: 74%;
  height: 18px;
  margin-bottom: 12px;
}

.shot-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.shot-stat-row span {
  height: 42px;
  background: var(--mint);
  border-radius: 6px;
}

.shot-list {
  display: grid;
  gap: 7px;
}

.shot-list span {
  height: 14px;
}

.lesson-form-shot {
  display: grid;
  gap: 10px;
}

.form-line {
  height: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.form-grid span {
  height: 34px;
  background: var(--mint);
  border-radius: 6px;
}

.form-text {
  height: 46px;
}

.form-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.form-tags span {
  padding: 4px 7px;
  color: var(--teal-dark);
  background: var(--mint);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
}

.builder-shot-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 10px;
  min-height: 132px;
}

.builder-panel {
  display: grid;
  gap: 8px;
}

.builder-panel span {
  height: 30px;
  background: var(--mint);
}

.builder-canvas {
  display: grid;
  gap: 8px;
}

.builder-canvas div {
  height: 26px;
}

.builder-canvas div:nth-child(2) {
  height: 48px;
  background: var(--sky);
}

.presentation-shot {
  display: grid;
  gap: 10px;
}

.slide-preview {
  min-height: 94px;
  padding: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--blue));
  border-radius: 8px;
}

.slide-preview strong {
  display: block;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.slide-preview span {
  height: 9px;
  margin-bottom: 7px;
  background: rgba(255, 255, 255, 0.78);
  border: 0;
}

.slide-controls {
  display: flex;
  gap: 7px;
  justify-content: center;
}

.slide-controls span {
  width: 28px;
  height: 8px;
  background: var(--mint);
}

.icon-pill,
.status-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 32px;
  margin-bottom: 18px;
  padding: 5px 11px;
  color: var(--teal-dark);
  background: var(--mint);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.image-flow {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  padding: 56px 0 58px;
}

.image-flow.reverse {
  direction: rtl;
}

.image-flow.reverse > * {
  direction: ltr;
}

.flow-copy {
  display: grid;
  gap: 20px;
}

.flow-copy p {
  color: var(--muted);
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.step span,
.workflow-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
  font-weight: 900;
}

.step p {
  margin: 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.audience-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  z-index: 1;
}

.audience-photo {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.audience-card-body {
  padding: 22px 24px 26px;
}

.role-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 14px;
  padding: 0 13px;
  color: var(--teal-dark);
  background: var(--mint);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-band {
  padding: 72px 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-grid blockquote {
  margin: 0;
}

.testimonial-grid p {
  margin: 0 0 18px;
  font-size: 1.08rem;
}

.testimonial-grid cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.security-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.security-list p {
  margin: 0;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(210px, 0.55fr) auto;
  gap: clamp(20px, 4vw, 42px);
  align-items: center;
  margin-block: 58px 76px;
  padding: clamp(28px, 5vw, 50px);
  color: var(--ink);
  background: linear-gradient(135deg, var(--mint), var(--sky));
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cta-band p {
  max-width: 680px;
  color: var(--muted);
}

.cta-visual {
  overflow: hidden;
  border: 1px solid rgba(217, 233, 231, 0.9);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(20, 64, 72, 0.12);
}

.cta-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: left top;
}

.final-cta {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
  gap: clamp(26px, 5vw, 58px);
  align-items: stretch;
  padding: clamp(30px, 5vw, 54px);
  background: linear-gradient(135deg, #f4fbfa, #eef8fb);
  border-radius: 24px;
  box-shadow: 0 22px 55px rgba(20, 64, 72, 0.08);
}

.final-cta-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}

.final-cta h2 {
  max-width: 760px;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
}

.final-cta-copy > p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.final-product-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.final-product-links article {
  display: grid;
  gap: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.final-product-links span {
  color: var(--teal-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.final-product-links strong {
  font-size: 1.16rem;
  line-height: 1.15;
}

.final-product-links p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.final-cta-panel {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(24px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(20, 64, 72, 0.1);
}

.final-cta-panel h3,
.final-cta-panel p {
  margin: 0;
}

.final-cta-panel h3 {
  font-size: clamp(1.4rem, 2.3vw, 2rem);
}

.final-cta-panel p {
  color: var(--muted);
}

.final-cta-panel .cta-actions {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 10px;
}

.final-cta-panel .button {
  width: 100%;
  white-space: normal;
}

.site-footer {
  display: grid;
  gap: 20px;
  justify-items: center;
  padding: 46px 18px;
  text-align: center;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 230px;
}

.site-footer p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.site-footer a {
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: none;
}

.product-preview {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-screenshot-panel,
.dashboard-zoom-card {
  overflow: hidden;
  background: #efe6d3;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-screenshot-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top left;
}

.dashboard-hero {
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
}

.founder-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  padding: clamp(52px, 7vw, 90px) 0 52px;
}

.founder-copy {
  display: grid;
  gap: 22px;
}

.founder-copy h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.5rem, 5.4vw, 5.1rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.founder-card {
  padding: clamp(24px, 4vw, 34px);
  background: linear-gradient(180deg, #f8fcfb, #edf8f6);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.founder-photo,
.founder-photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.founder-photo {
  object-fit: cover;
  object-position: center 8%;
  filter: brightness(1.08) contrast(0.98) saturate(1.04);
  box-shadow: 0 14px 30px rgba(20, 64, 72, 0.11);
}

.founder-photo-placeholder {
  display: grid;
  place-items: center;
  color: var(--teal-dark);
  background:
    radial-gradient(circle at 24% 20%, rgba(243, 191, 79, 0.22), transparent 28%),
    radial-gradient(circle at 78% 28%, rgba(47, 111, 163, 0.14), transparent 30%),
    linear-gradient(135deg, var(--mint), var(--sky));
}

.founder-photo-placeholder span {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  color: var(--white);
  background: var(--teal);
  border-radius: 999px;
  font-size: 2.1rem;
  font-weight: 900;
  box-shadow: 0 18px 35px rgba(20, 124, 124, 0.22);
}

.founder-card h2 {
  margin: 0 0 8px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.05;
}

.founder-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.founder-story {
  align-items: start;
}

.story-copy {
  display: grid;
  gap: 16px;
}

.story-copy p {
  margin: 0;
}

.experience-section {
  padding: 38px 0 56px;
}

.founder-credential-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding-block: 22px 54px;
}

.founder-credential-grid article {
  display: grid;
  gap: 10px;
}

.founder-credential-grid span {
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-credential-grid strong {
  color: var(--ink);
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: 1.08;
}

.founder-credential-grid p {
  margin: 0;
  color: var(--muted);
}

.experience-section .section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.experience-grid article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(20, 64, 72, 0.07);
}

.experience-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 14px;
  padding: 0 12px;
  color: var(--teal-dark);
  background: var(--mint);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
}

.experience-grid h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  line-height: 1.2;
}

.experience-grid p {
  margin: 0;
  color: var(--muted);
}

.name-story {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  margin-block: 20px 54px;
  padding: clamp(26px, 5vw, 46px);
  background: #f8fcfb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.name-story h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.name-story p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

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

.compact-section {
  padding-bottom: 28px;
}

.dashboard-feature {
  min-height: 245px;
}

.dashboard-detail-flow {
  align-items: start;
}

.dashboard-zoom-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 33% 38%;
}

.dashboard-callouts {
  display: grid;
  gap: 12px;
}

.dashboard-callouts p {
  margin: 0;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.detail-tour {
  align-items: center;
}

.detail-screenshot-card {
  overflow: hidden;
  background: #efe6d3;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.detail-screenshot-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top left;
}

.detail-photo-card {
  background: #f8f3e8;
}

.detail-photo-card img {
  object-position: center;
}

.detail-ai-card {
  background: #f8fbf8;
}

.detail-ai-card img {
  object-fit: contain;
  object-position: center;
}

.teacher-presentation-card {
  background: #f8fbf8;
}

.teacher-presentation-card img {
  object-fit: contain;
  object-position: center;
}

.presentation-panel,
.presentation-detail-card {
  background: #153d37;
}

.presentation-panel img,
.presentation-detail-card img {
  object-fit: contain;
  object-position: center;
  padding: 0;
}

.presentation-detail-card img {
  aspect-ratio: 16 / 10;
}

.dashboard-video-section {
  display: grid;
  grid-template-columns: minmax(420px, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  padding: 58px 0;
}

.dashboard-demo {
  overflow: hidden;
  background: #f8f5ed;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.demo-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.demo-topbar span {
  width: 11px;
  height: 11px;
  background: var(--coral);
  border-radius: 999px;
}

.demo-topbar span:nth-child(2) {
  background: var(--gold);
}

.demo-topbar span:nth-child(3) {
  background: var(--teal);
}

.demo-topbar strong {
  margin-left: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-stage {
  position: relative;
  min-height: 420px;
}

.demo-scene {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  animation: dashboardDemo 36s infinite;
}

.demo-scene:nth-child(2) {
  animation-delay: 4s;
}

.demo-scene:nth-child(3) {
  animation-delay: 8s;
}

.demo-scene:nth-child(4) {
  animation-delay: 12s;
}

.demo-scene:nth-child(5) {
  animation-delay: 16s;
}

.demo-scene:nth-child(6) {
  animation-delay: 20s;
}

.demo-scene:nth-child(7) {
  animation-delay: 24s;
}

.demo-scene:nth-child(8) {
  animation-delay: 28s;
}

.demo-scene:nth-child(9) {
  animation-delay: 32s;
}

.demo-scene img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transform: none;
  animation: none;
}

.demo-scene:nth-child(1) img {
  object-position: 38% 58%;
}

.demo-scene:nth-child(3) img {
  object-position: 43% 5%;
}

.demo-scene:nth-child(5) img {
  object-position: 39% 5%;
}

.demo-scene:nth-child(7) img {
  object-position: 37% 5%;
}

.demo-scene:nth-child(8) img {
  object-position: 56% 42%;
}

.demo-scene:nth-child(9) img {
  object-position: 92% 42%;
}

.demo-hotspot {
  position: absolute;
  border: 3px solid var(--gold);
  border-radius: 8px;
  background: rgba(243, 191, 79, 0.08);
  box-shadow: 0 0 0 999px rgba(15, 51, 47, 0.12), 0 0 0 7px rgba(243, 191, 79, 0.22);
}

.cell-zoom .demo-hotspot {
  left: 25.5%;
  top: 54%;
  width: 15%;
  height: 8.5%;
}

.absence-zoom .demo-hotspot {
  left: 55.2%;
  top: 3.3%;
  width: 12%;
  height: 4.6%;
}

.library-zoom .demo-hotspot {
  left: 45.8%;
  top: 3.3%;
  width: 9.8%;
  height: 4.6%;
}

.materials-button-highlight .demo-hotspot {
  left: 35.2%;
  top: 3.3%;
  width: 10.4%;
  height: 4.6%;
}

.pacing-zoom .demo-hotspot {
  left: 82.5%;
  top: 42%;
  width: 15%;
  height: 19%;
}

.demo-page {
  display: grid;
  gap: 12px;
  min-height: 420px;
  padding: 28px;
  background: linear-gradient(180deg, #fffaf1, #f7f0df);
}

.demo-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #dcccae;
}

.demo-page-header span {
  color: #7f3d1e;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-page-header strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.daily-lesson,
.library-card,
.sub-folder-card {
  display: grid;
  gap: 4px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #dcccae;
  border-radius: 8px;
}

.daily-lesson {
  grid-template-columns: 56px 1fr;
  align-items: center;
}

.daily-lesson > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #7f3d1e;
  background: #ffd18a;
  border-radius: 999px;
  font-weight: 900;
}

.daily-lesson.selected {
  background: #e1f5eb;
  border-color: #7ccaa2;
}

.daily-lesson strong,
.library-card strong,
.sub-folder-card strong {
  color: var(--ink);
}

.daily-lesson p,
.library-card span,
.sub-folder-card p {
  margin: 0;
  color: var(--muted);
}

.absence-page,
.library-page {
  background: #f5eddf;
}

.form-preview-line {
  height: 42px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #dcccae;
  border-radius: 8px;
}

.form-preview-line.short {
  width: 68%;
}

.demo-submit {
  align-self: end;
  justify-self: start;
  padding: 12px 18px;
  color: var(--white);
  background: #7f3d1e;
  border-radius: 999px;
  font-weight: 900;
}

.library-page {
  grid-template-columns: 1fr 1fr;
  align-content: start;
}

.library-page .demo-page-header {
  grid-column: 1 / -1;
}

.library-card span {
  display: block;
}

.demo-scene figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.96);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(20, 64, 72, 0.12);
}

.demo-scene figcaption strong,
.demo-scene figcaption span {
  display: block;
}

.demo-scene figcaption strong {
  margin-bottom: 4px;
  font-size: 1.08rem;
}

.demo-scene figcaption span {
  color: var(--muted);
}

.demo-progress {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 6px;
  padding: 12px 16px 16px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.demo-progress span {
  height: 7px;
  overflow: hidden;
  background: var(--mint);
  border-radius: 999px;
}

.demo-progress span::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--teal);
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left;
  animation: demoProgress 36s infinite;
}

.demo-progress span:nth-child(2)::before {
  animation-delay: 4s;
}

.demo-progress span:nth-child(3)::before {
  animation-delay: 8s;
}

.demo-progress span:nth-child(4)::before {
  animation-delay: 12s;
}

.demo-progress span:nth-child(5)::before {
  animation-delay: 16s;
}

.demo-progress span:nth-child(6)::before {
  animation-delay: 20s;
}

.demo-progress span:nth-child(7)::before {
  animation-delay: 24s;
}

.demo-progress span:nth-child(8)::before {
  animation-delay: 28s;
}

.demo-progress span:nth-child(9)::before {
  animation-delay: 32s;
}

@keyframes dashboardDemo {
  0%, 9.5% {
    opacity: 1;
  }

  12%, 100% {
    opacity: 0;
  }
}

@keyframes demoProgress {
  0% {
    transform: scaleX(0);
  }

  9.5% {
    transform: scaleX(1);
  }

  12%, 100% {
    transform: scaleX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .demo-scene,
  .demo-scene img,
  .demo-progress span::before {
    animation: none;
  }

  .demo-scene:first-child {
    opacity: 1;
  }
}

.preview-topbar {
  display: flex;
  gap: 8px;
  padding: 16px;
  background: var(--sky);
  border-bottom: 1px solid var(--line);
}

.preview-topbar span {
  width: 12px;
  height: 12px;
  background: var(--coral);
  border-radius: 999px;
}

.preview-topbar span:nth-child(2) {
  background: var(--gold);
}

.preview-topbar span:nth-child(3) {
  background: var(--teal);
}

.preview-body {
  display: grid;
  grid-template-columns: 160px 1fr;
  min-height: 380px;
}

.preview-sidebar {
  padding: 22px;
  background: #f0f8f6;
  border-right: 1px solid var(--line);
}

.preview-sidebar strong {
  display: block;
  margin-bottom: 20px;
}

.preview-sidebar p {
  margin: 12px 0;
  color: var(--muted);
  font-weight: 800;
}

.preview-main {
  padding: 28px;
}

.preview-main h3 {
  margin: 4px 0 22px;
  font-size: 1.6rem;
}

.mock-field,
.mock-columns div {
  height: 46px;
  margin-bottom: 14px;
  background: var(--sky);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.mock-field.wide {
  height: 86px;
}

.mock-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.dashboard-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  min-height: 380px;
  padding: 24px;
}

.admin-proof-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 8px 0 18px;
  padding-top: 16px;
  max-width: 650px;
}

.admin-proof-points span {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 46px;
  padding: 13px 10px 11px;
  color: var(--teal-dark);
  background: var(--mint);
  border: 1px solid var(--line);
  border-bottom-width: 3px;
  border-radius: 14px 14px 10px 10px;
  box-shadow: 0 10px 22px rgba(20, 64, 72, 0.08);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.admin-proof-points span::before {
  content: "";
  position: absolute;
  top: -13px;
  left: 16px;
  width: min(62px, calc(100% - 32px));
  height: 13px;
  background: inherit;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.admin-proof-points span:nth-child(even) {
  background: var(--sky);
}

.feature-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  color: var(--teal-dark);
  background: var(--mint);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.evaluation-workflow-preview {
  overflow: hidden;
}

.evaluation-preview-body {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 26px);
  background: linear-gradient(135deg, #f7fcfb, #eef8fb);
}

.evaluation-preview-body article,
.evaluation-flow-arrow {
  border: 1px solid var(--line);
  border-radius: 14px;
}

.evaluation-input-card,
.evaluation-output-card,
.pd-recommendation-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: var(--white);
  box-shadow: 0 12px 26px rgba(20, 64, 72, 0.08);
}

.evaluation-input-card span,
.evaluation-output-card span,
.pd-recommendation-card span {
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.evaluation-input-card p,
.evaluation-output-card h3,
.pd-recommendation-card p {
  margin: 0;
}

.evaluation-input-card p {
  color: var(--muted);
  font-size: 0.98rem;
}

.evaluation-flow-arrow {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: -2px auto;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
}

.evaluation-output-card {
  border-color: rgba(47, 111, 163, 0.28);
}

.evaluation-output-card ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 750;
}

.pd-recommendation-card {
  background: #fffaf0;
  border-color: rgba(243, 191, 79, 0.55);
}

.pd-recommendation-card strong {
  font-size: 1.18rem;
  line-height: 1.15;
}

.evaluation-value-section {
  padding-bottom: 22px;
}

.evaluation-benefit-grid {
  padding-top: 0;
}

.evaluation-benefit-grid .feature-card {
  display: grid;
  gap: 12px;
}

.evaluation-benefit-grid .feature-card h3 {
  font-size: 1.35rem;
  line-height: 1.16;
}

.evaluation-workflow-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding-block: 48px 64px;
}

.evaluation-workflow-section > div:first-child {
  display: grid;
  gap: 14px;
}

.evaluation-workflow-section > div:first-child p:last-child {
  margin: 0;
  color: var(--muted);
}

.evaluation-timeline {
  display: grid;
  gap: 14px;
}

.evaluation-timeline article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px 16px;
  align-items: start;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(20, 64, 72, 0.06);
}

.evaluation-timeline span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
  font-weight: 900;
}

.evaluation-timeline h3 {
  margin: 0;
  font-size: 1.18rem;
}

.evaluation-timeline p {
  grid-column: 2;
  margin: -6px 0 0;
  color: var(--muted);
}

.admin-buyer-section {
  padding-block: 36px 70px;
}

.admin-outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.admin-outcome-grid article {
  display: grid;
  gap: 10px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(20, 64, 72, 0.07);
}

.admin-outcome-grid strong {
  font-size: 1.12rem;
  line-height: 1.16;
}

.admin-outcome-grid p {
  margin: 0;
  color: var(--muted);
}

.evaluation-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  margin-bottom: 72px;
  padding: clamp(28px, 4vw, 40px);
  background: linear-gradient(135deg, var(--mint), var(--sky));
  border: 1px solid var(--line);
  border-radius: 24px;
}

.evaluation-cta h2,
.evaluation-cta p {
  margin: 0;
}

.evaluation-cta p:not(.eyebrow) {
  color: var(--muted);
}

.metric-card,
.chart-card {
  padding: 20px;
  background: #f0f8f6;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.metric-card strong,
.metric-card span {
  display: block;
}

.metric-card strong {
  font-size: 2rem;
  line-height: 1;
}

.metric-card span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.chart-card {
  grid-column: 1 / -1;
  display: flex;
  align-items: end;
  gap: 16px;
}

.chart-card span {
  flex: 1;
  min-height: 70px;
  background: var(--teal);
  border-radius: 8px 8px 0 0;
}

.chart-card span:nth-child(2) {
  min-height: 115px;
  background: var(--blue);
}

.chart-card span:nth-child(3) {
  min-height: 150px;
  background: var(--gold);
}

.chart-card span:nth-child(4) {
  min-height: 95px;
  background: var(--coral);
}

.workflow-list {
  display: grid;
  gap: 14px;
}

.workflow-list div {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.workflow-list p {
  margin: 0;
}

.simple-page {
  min-height: calc(100vh - 260px);
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 80px 0;
}

.legal-page {
  width: min(940px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(44px, 7vw, 78px) 0;
}

.legal-hero {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  line-height: 1;
}

.legal-hero p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 800;
}

.legal-content {
  display: grid;
  gap: 16px;
  padding-top: 34px;
}

.legal-content h2 {
  margin: 22px 0 0;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  line-height: 1.15;
}

.legal-content p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-content a {
  color: var(--teal-dark);
  font-weight: 900;
}

.auth-page,
.onboarding-page {
  min-height: calc(100vh - 84px);
  display: grid;
  place-items: center;
  padding: 34px 18px 70px;
}

.auth-panel,
.onboarding-shell {
  width: min(980px, calc(100vw - 36px));
  max-width: 980px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.auth-panel {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-width: 0;
  overflow: hidden;
}

.auth-copy {
  min-width: 0;
  padding: clamp(28px, 5vw, 54px);
  background: linear-gradient(145deg, var(--mint), var(--sky));
}

.auth-copy h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
}

.auth-copy p:last-child {
  color: var(--muted);
}

.auth-card {
  display: grid;
  gap: 18px;
  align-content: center;
  min-width: 0;
  padding: clamp(26px, 5vw, 46px);
}

.notice-box {
  padding: 14px 16px;
  color: var(--teal-dark);
  background: var(--mint);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.check-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  min-width: 0;
  color: var(--muted);
}

.check-row span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.check-row input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.check-row a {
  color: var(--teal-dark);
  font-weight: 800;
}

.auth-options {
  display: grid;
  gap: 10px;
}

.provider-button {
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.email-form {
  display: grid;
  gap: 8px;
}

.email-form label,
.school-search label {
  font-weight: 900;
}

.email-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

input[type="email"],
input[type="search"] {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
}

.form-message {
  min-height: 26px;
  margin: 0;
  color: var(--coral);
  font-weight: 800;
}

.form-message.success {
  color: var(--teal-dark);
}

.auth-switch-link {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.auth-switch-link a {
  color: var(--teal-dark);
  font-weight: 900;
}

.onboarding-shell {
  max-width: 1160px;
  padding: clamp(26px, 5vw, 48px);
}

.onboarding-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: start;
}

.onboarding-main {
  min-width: 0;
}

.progress-dots {
  display: flex;
  gap: 8px;
  margin-bottom: 26px;
}

.progress-dots span {
  width: 36px;
  height: 8px;
  background: var(--line);
  border-radius: 999px;
}

.progress-dots span.active {
  background: var(--teal);
}

.onboarding-slide {
  display: none;
}

.onboarding-slide.active {
  display: block;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.role-option,
.school-results button {
  display: grid;
  gap: 6px;
  min-height: 120px;
  padding: 20px;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  cursor: pointer;
}

.role-option.selected,
.school-results button.selected {
  border-color: var(--teal);
  background: var(--mint);
  box-shadow: 0 0 0 3px rgba(20, 124, 124, 0.12);
}

.role-badge {
  justify-self: start;
  padding: 5px 11px;
  color: var(--teal-dark);
  background: var(--mint);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.role-option strong {
  font-size: 1.06rem;
}

.role-option span:not(.role-badge) {
  color: var(--muted);
}

.role-option em {
  margin-top: 8px;
  color: var(--teal-dark);
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 900;
}

.school-search {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.school-results {
  display: grid;
  gap: 10px;
}

.school-results button {
  min-height: 56px;
  font-weight: 900;
}

.route-card {
  margin-top: 24px;
}

.route-card h2 {
  margin: 4px 0 8px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.route-card p {
  color: var(--muted);
}

.route-checklist {
  display: grid;
  gap: 8px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.route-checklist li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-weight: 800;
}

.route-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 14px;
  height: 14px;
  background: var(--teal);
  border-radius: 999px;
  box-shadow: inset 0 0 0 4px var(--mint);
}

.onboarding-actions {
  justify-content: space-between;
  margin-top: 34px;
}

.onboarding-route-preview {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 32px);
  background: linear-gradient(180deg, #f8fcfb, #eef8f6);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.onboarding-route-preview h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
  line-height: 1.1;
}

.onboarding-route-preview > p:not(.eyebrow) {
  margin: 0 0 4px;
  color: var(--muted);
}

.path-preview-card {
  display: none;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(20, 64, 72, 0.08);
}

.path-preview-card.active {
  display: block;
}

.path-preview-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
  border-bottom: 1px solid var(--line);
}

.path-preview-card > div:not(.mini-observation-preview) {
  padding: 18px;
}

.path-preview-card h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.path-preview-card p {
  margin: 0;
  color: var(--muted);
}

.mini-observation-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 18px;
  background: var(--sky);
  border-bottom: 1px solid var(--line);
}

.mini-observation-preview div {
  min-height: 105px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.mini-observation-preview strong,
.mini-observation-preview span {
  display: block;
}

.mini-observation-preview strong {
  color: var(--teal-dark);
  font-size: 2rem;
  line-height: 1;
}

.mini-observation-preview span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 900;
}

.quiz-page {
  align-content: start;
  padding-top: clamp(36px, 8vw, 82px);
}

.quiz-shell {
  width: min(780px, calc(100% - 36px));
  margin: 0 auto;
}

.quiz-progress {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quiz-progress-track {
  height: 10px;
  overflow: hidden;
  background: #dcefeb;
  border-radius: 999px;
}

.quiz-progress-track span {
  display: block;
  width: 10%;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--coral));
  border-radius: inherit;
  transition: width 220ms ease;
}

.quiz-card {
  padding: clamp(24px, 5vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(20, 64, 72, 0.12);
}

.quiz-slide {
  display: none;
  text-align: center;
}

.quiz-slide.active {
  display: grid;
  justify-items: center;
  animation: quizCardIn 220ms ease both;
}

.quiz-slide h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.04;
}

.quiz-slide .lead {
  max-width: 610px;
  margin: 18px auto 0;
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.quiz-illustration {
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  margin-bottom: 22px;
  color: var(--teal-dark);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.quiz-illustration svg {
  width: 82px;
  height: 82px;
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.color-mint {
  background: #dff3ee;
}

.color-sky {
  background: #e8f4fb;
}

.color-gold {
  background: #fff0c7;
}

.color-coral {
  background: #ffe4dc;
}

.quiz-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(620px, 100%);
  margin-top: 28px;
}

.quiz-option {
  min-height: 74px;
  padding: 16px 18px;
  color: var(--ink);
  background: #fbfefd;
  border: 1px solid var(--line);
  border-radius: 14px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, border 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.quiz-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(20, 64, 72, 0.08);
}

.quiz-option.selected {
  background: var(--mint);
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(20, 124, 124, 0.12);
}

.quiz-input-label {
  width: min(520px, 100%);
  margin-top: 28px;
  color: var(--ink);
  font-weight: 900;
  text-align: left;
}

.quiz-input {
  width: min(520px, 100%);
  min-height: 58px;
  margin-top: 8px;
  padding: 12px 16px;
  color: var(--ink);
  background: #fbfefd;
  border: 1px solid var(--line);
  border-radius: 14px;
  font: inherit;
  font-size: 1.05rem;
}

.quiz-select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--teal-dark) 50%),
    linear-gradient(135deg, var(--teal-dark) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 15px) 50%;
  background-size: 8px 8px, 8px 8px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.quiz-input:focus {
  outline: 3px solid rgba(20, 124, 124, 0.16);
  border-color: var(--teal);
}

.location-detail-fields {
  display: grid;
  width: min(520px, 100%);
  margin-top: 18px;
  padding: 16px;
  background: #f4fbfa;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.location-detail-fields[hidden] {
  display: none;
}

.location-note {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.94rem;
  text-align: left;
}

.location-field-grid {
  display: grid;
  gap: 8px;
}

.location-field-grid .quiz-input-label {
  width: 100%;
  margin-top: 4px;
}

.location-field-grid .quiz-input {
  width: 100%;
}

.school-lookup {
  display: grid;
  gap: 10px;
  width: min(520px, 100%);
  margin-top: 12px;
}

.school-lookup[hidden] {
  display: none;
}

.school-lookup p,
.school-suggestion {
  width: 100%;
  padding: 14px 16px;
  background: #fbfefd;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-align: left;
}

.school-lookup p {
  margin: 0;
  color: var(--muted);
}

.school-suggestion {
  color: var(--muted);
  font: inherit;
  cursor: pointer;
  transition: transform 160ms ease, border 160ms ease, box-shadow 160ms ease;
}

.school-suggestion:hover {
  transform: translateY(-1px);
  border-color: var(--teal);
  box-shadow: 0 10px 22px rgba(20, 64, 72, 0.08);
}

.school-suggestion strong,
.school-suggestion span {
  display: block;
}

.school-suggestion strong {
  color: var(--ink);
}

.school-suggestion span {
  margin-top: 3px;
  font-size: 0.9rem;
}

.quiz-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(620px, 100%);
  margin: 26px 0;
}

.quiz-summary span {
  display: grid;
  gap: 4px;
  padding: 14px;
  color: var(--muted);
  background: #fbfefd;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-align: left;
}

.quiz-summary strong {
  color: var(--teal-dark);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quiz-info-list {
  display: grid;
  gap: 12px;
  width: min(560px, 100%);
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.quiz-info-list li {
  display: grid;
  gap: 5px;
  padding: 18px;
  color: var(--muted);
  background: #fbfefd;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-align: left;
}

.quiz-info-list strong {
  color: var(--ink);
}

.primary-grade-field {
  width: min(420px, 100%);
  margin-top: 24px;
  text-align: left;
}

.payment-method-note {
  display: grid;
  gap: 6px;
  width: min(560px, 100%);
  margin-top: 24px;
  padding: 18px;
  color: var(--muted);
  background: #f4fbfa;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-align: left;
}

.payment-method-note strong {
  color: var(--ink);
}

.schedule-doc-list {
  margin-top: 8px;
}

.schedule-doc-card {
  display: grid;
  gap: 5px;
  padding: 18px;
  color: var(--muted);
  background: #fbfefd;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-align: left;
}

.schedule-doc-card strong {
  color: var(--ink);
}

.quiz-schedule-builder {
  display: grid;
  gap: 10px;
  width: min(620px, 100%);
  margin-top: 28px;
}

.quiz-schedule-head,
.quiz-schedule-row {
  display: grid;
  grid-template-columns: minmax(130px, 0.48fr) minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.quiz-schedule-head {
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

.quiz-schedule-row span {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  background: #fbfefd;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
  text-align: left;
}

.quiz-schedule-row span:first-child {
  color: var(--ink);
  font-weight: 900;
}

.roster-upload-preview {
  display: grid;
  gap: 8px;
  width: min(560px, 100%);
  margin-top: 28px;
  padding: 22px;
  color: var(--muted);
  background: #f4fbfa;
  border: 2px dashed var(--line);
  border-radius: 18px;
  text-align: left;
}

.roster-upload-preview strong {
  color: var(--teal-dark);
  font-size: 1.1rem;
}

.quiz-actions {
  margin-top: 28px;
}

.teacher-setup-page {
  padding: clamp(34px, 6vw, 72px) 0 84px;
}

.teacher-setup-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(24px, 4vw, 46px);
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  align-items: start;
}

.setup-side-panel {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(20, 64, 72, 0.08);
}

.setup-side-panel h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.setup-side-panel p {
  margin: 0;
  color: var(--muted);
}

.setup-preview-card {
  display: grid;
  gap: 8px;
  margin-top: 8px;
  padding: 18px;
  background: var(--mint);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.setup-preview-card span {
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.setup-main-panel {
  min-width: 0;
}

.teacher-setup-card {
  padding: clamp(24px, 5vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(20, 64, 72, 0.12);
}

.setup-step {
  display: none;
  text-align: center;
}

.setup-step.active {
  display: grid;
  justify-items: center;
  animation: quizCardIn 220ms ease both;
}

.setup-step h2 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.setup-step .lead {
  margin: 18px auto 0;
}

.upload-dropzone {
  display: grid;
  place-items: center;
  gap: 8px;
  width: min(560px, 100%);
  margin-top: 28px;
  padding: 26px;
  color: var(--muted);
  background: #fbfefd;
  border: 2px dashed var(--line);
  border-radius: 18px;
  cursor: pointer;
}

.upload-dropzone:hover {
  border-color: var(--teal);
  background: #f4fbfa;
}

.upload-dropzone input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

.upload-dropzone strong {
  color: var(--teal-dark);
  font-size: 1.2rem;
}

.schedule-builder {
  display: grid;
  gap: 12px;
  width: min(680px, 100%);
  margin-top: 26px;
}

.schedule-row {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(86px, 0.34fr) minmax(86px, 0.34fr);
  gap: 10px;
  align-items: center;
}

.schedule-row label {
  position: relative;
  display: block;
}

.schedule-row label span {
  position: absolute;
  top: 50%;
  left: 12px;
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: var(--white);
  background: var(--teal);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  transform: translateY(-50%);
}

.schedule-row input,
.roster-row input {
  width: 100%;
  min-height: 54px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fbfefd;
  border: 1px solid var(--line);
  border-radius: 14px;
  font: inherit;
}

.schedule-row label input {
  padding-left: 48px;
}

.schedule-row input:focus,
.roster-row input:focus {
  outline: 3px solid rgba(20, 124, 124, 0.16);
  border-color: var(--teal);
}

.roster-builder {
  display: grid;
  gap: 10px;
  width: min(680px, 100%);
  margin-top: 26px;
}

.roster-row {
  display: grid;
  grid-template-columns: minmax(160px, 0.55fr) minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 12px;
  background: #fbfefd;
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: left;
}

.roster-head {
  color: var(--teal-dark);
  background: var(--mint);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.roster-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.roster-tags span {
  min-height: 30px;
  padding: 5px 10px;
  color: var(--teal-dark);
  background: var(--mint);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.roster-template-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(720px, 100%);
  margin-top: 26px;
}

.roster-template-card {
  display: grid;
  gap: 9px;
  min-height: 170px;
  padding: 22px;
  color: var(--muted);
  background: #fbfefd;
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: left;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.roster-template-card:hover {
  border-color: rgba(20, 124, 124, 0.32);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.roster-template-card strong {
  color: var(--teal-dark);
  font-size: 1.1rem;
}

.roster-upload-instructions {
  display: grid;
  gap: 6px;
  width: min(720px, 100%);
  margin-top: 14px;
  padding: 18px;
  color: var(--muted);
  background: #f4fbfa;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-align: left;
}

.roster-upload-instructions strong {
  color: var(--ink);
}

.setup-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(680px, 100%);
  margin: 26px 0;
}

.setup-summary span {
  display: grid;
  gap: 4px;
  padding: 16px;
  color: var(--muted);
  background: #fbfefd;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-align: left;
}

.setup-summary strong {
  color: var(--teal-dark);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

:is(
  .product-audience,
  .pricing-badge,
  .plan-label,
  .hero-product-paths span,
  .support-choice-grid span,
  .demo-trust-row span,
  .workflow-label,
  .form-tags span,
  .icon-pill,
  .status-tag,
  .role-kicker,
  .feature-kicker,
  .role-badge,
  .roster-tags span
) {
  --folder-bg: var(--mint);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 0;
  min-height: 40px;
  padding: 12px 16px 10px;
  color: var(--teal-dark);
  background: var(--folder-bg);
  border: 1px solid var(--line);
  border-bottom-width: 3px;
  border-radius: 14px 14px 10px 10px;
  box-shadow: 0 10px 22px rgba(20, 64, 72, 0.08);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  overflow: visible;
}

:is(
  .product-audience,
  .pricing-badge,
  .plan-label,
  .hero-product-paths span,
  .support-choice-grid span,
  .demo-trust-row span,
  .workflow-label,
  .form-tags span,
  .icon-pill,
  .status-tag,
  .role-kicker,
  .feature-kicker,
  .role-badge,
  .roster-tags span
)::before {
  content: "";
  position: absolute;
  top: -11px;
  left: 14px;
  width: min(64px, calc(100% - 28px));
  height: 11px;
  background: inherit;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.leader-product-card .product-audience,
.hero-product-paths a:nth-child(2) span {
  --folder-bg: var(--sky);
}

.demo-trust-row,
.form-tags,
.roster-tags {
  padding-top: 12px;
}

.workflow-label,
.role-kicker {
  margin-top: 6px;
}

.pricing-badge {
  padding: 12px 16px 10px;
}

:is(
  .teacher-product-card .product-audience,
  .hero-product-paths a:first-child span,
  .demo-paths article:first-child > span,
  .support-choice-grid a:first-child span,
  .not-found-routes a:first-child span,
  .pricing-grid .pricing-card:first-child .plan-label
) {
  --pencil-bg: #f5cf62;
  --pencil-border: #d2a43c;
  --pencil-ink: #4f3a10;
  min-height: 34px;
  margin-right: 18px;
  padding: 8px 24px 8px 18px;
  color: var(--pencil-ink);
  background: linear-gradient(90deg, #fff0a8 0%, var(--pencil-bg) 48%, #efbd4c 100%);
  border-color: var(--pencil-border);
  border-bottom-width: 1px;
  border-radius: 9px 3px 3px 9px;
  box-shadow: 0 10px 22px rgba(181, 128, 24, 0.14);
}

:is(
  .teacher-product-card .product-audience,
  .hero-product-paths a:first-child span,
  .demo-paths article:first-child > span,
  .support-choice-grid a:first-child span,
  .not-found-routes a:first-child span,
  .pricing-grid .pricing-card:first-child .plan-label
)::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -18px;
  left: auto;
  width: 0;
  height: 0;
  background: transparent;
  border: 17px solid transparent;
  border-left-color: #c79650;
  border-right: 0;
  border-radius: 0;
  transform: translateY(-50%);
}

:is(
  .teacher-product-card .product-audience,
  .hero-product-paths a:first-child span,
  .demo-paths article:first-child > span,
  .support-choice-grid a:first-child span,
  .not-found-routes a:first-child span,
  .pricing-grid .pricing-card:first-child .plan-label
)::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 9px;
  background: #f0a29a;
  border-right: 2px solid rgba(79, 58, 16, 0.16);
  border-radius: 8px 0 0 8px;
}

@keyframes quizCardIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.99);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1030px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
  }

  .header-actions {
    justify-content: center;
  }

  .hero,
  .product-hero,
  .founder-hero,
  .founder-proof-band,
  .founder-proof-note,
  .image-flow,
  .dashboard-video-section,
  .split-section,
  .onboarding-layout,
  .name-story,
  .founder-cta,
  .auth-panel,
  .teacher-setup-shell,
  .pricing-hero,
  .pricing-table-section,
  .quote-section,
  .pricing-faq,
  .trust-band,
  .faq-layout,
  .support-cta-band,
  .demo-hero,
  .demo-form-section,
  .not-found-page,
  .blog-hero,
  .privacy-stamp-card,
  .evaluation-workflow-section,
  .evaluation-cta,
  .buyer-objection-section,
  .single-cta-band {
    grid-template-columns: 1fr;
  }

  .setup-side-panel {
    position: static;
  }

  .support-side-panel {
    position: static;
  }

  .three-up,
  .four-up,
  .testimonial-grid,
  .experience-grid,
  .pricing-grid,
  .pricing-trust,
  .demo-paths,
  .product-trust-strip,
  .trust-grid,
  .hero-product-paths,
  .support-choice-grid,
  .product-choice-grid,
  .product-proof-row,
  .standout-grid,
  .before-after-grid,
  .walkthrough-grid,
  .use-case-grid,
  .blog-process-grid,
  .founder-credential-grid,
  .admin-outcome-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .cta-band,
  .final-cta {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .final-product-links {
    grid-template-columns: 1fr;
  }

  .school-quote-callout {
    align-items: flex-start;
    flex-direction: column;
  }

  .founder-proof-note .button {
    justify-self: start;
  }
}

@media (max-width: 1220px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    width: min(760px, calc(100% - 36px));
  }

  .pricing-card {
    min-height: auto;
  }
}

@media (max-width: 700px) {
  .main-nav {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    width: 100%;
    justify-content: center;
    justify-items: center;
    column-gap: 8px;
    row-gap: 2px;
  }

  .dropdown {
    justify-self: center;
  }

  .nav-link,
  .dropdown-toggle {
    padding: 6px 5px;
    font-size: 0.78rem;
  }

  .onboarding-page {
    display: block;
    min-height: auto;
    padding: 34px 18px 70px;
  }

  .onboarding-shell {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    margin: 0 auto;
    overflow: hidden;
  }

  .onboarding-layout,
  .onboarding-main,
  .onboarding-route-preview,
  .role-option {
    min-width: 0;
    width: 100%;
  }

  .quiz-shell {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    min-width: 0;
  }

  .auth-panel {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
  }

  .auth-copy .eyebrow {
    font-size: 0.7rem;
    overflow-wrap: anywhere;
  }

  .auth-copy p:last-child,
  .check-row {
    font-size: 0.92rem;
  }

  .quiz-card {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 14px;
  }

  .teacher-setup-page {
    padding: 34px 0 70px;
  }

  .teacher-setup-shell {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
  }

  .teacher-setup-card,
  .setup-side-panel {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 14px;
  }

  .quiz-slide h1 {
    width: min(100%, 290px);
    max-width: 290px;
    font-size: clamp(1.85rem, 8vw, 2.15rem);
    overflow-wrap: anywhere;
  }

  .quiz-slide .lead {
    width: min(100%, 290px);
    max-width: 290px;
    overflow-wrap: anywhere;
  }

  .setup-step h2,
  .setup-step .lead,
  .setup-side-panel h1,
  .setup-side-panel p {
    width: min(100%, 290px);
    max-width: 290px;
    overflow-wrap: anywhere;
  }

  .quiz-options,
  .quiz-summary,
  .setup-summary {
    grid-template-columns: 1fr;
  }

  .quiz-options {
    width: min(100%, 300px);
  }

  .setup-options,
  .upload-dropzone,
  .schedule-builder,
  .roster-builder,
  .roster-template-grid,
  .roster-upload-instructions {
    width: min(100%, 300px);
  }

  .roster-template-grid {
    grid-template-columns: 1fr;
  }

  .schedule-row,
  .roster-row {
    grid-template-columns: 1fr;
  }

  .roster-head {
    display: none;
  }

  .section-band,
  .content-section,
  .testimonial-band,
  .cta-band {
    width: min(330px, calc(100% - 48px));
    margin-left: 24px;
    margin-right: auto;
  }

  .site-header {
    position: sticky;
    top: 0;
    grid-template-columns: minmax(0, 1fr) auto;
    justify-items: stretch;
    align-items: center;
    gap: 10px;
    min-height: 72px;
    padding: 10px 16px;
  }

  .logo-link {
    justify-self: start;
  }

  .logo-link img {
    width: min(230px, 62vw);
  }

  .mobile-menu-toggle {
    display: inline-grid;
    justify-self: end;
  }

  .main-nav,
  .header-actions {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
  }

  .site-header.nav-open .main-nav {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 6px;
    padding-top: 10px;
    border-top: 1px solid var(--line);
  }

  .site-header.nav-open .header-actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-self: stretch;
    width: 100%;
    max-width: none;
    margin: 0;
    padding-top: 8px;
    gap: 8px;
  }

  .nav-link,
  .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 46px;
    padding: 11px 14px;
    border-radius: 12px;
    font-size: 0.95rem;
    text-align: left;
  }

  .dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    width: 100%;
    margin-top: 6px;
    padding: 8px;
    border-radius: 12px;
    box-shadow: none;
    transform: none;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown.open .dropdown-menu {
    display: grid;
  }

  .header-actions .button {
    min-width: 0;
    min-height: 48px;
    padding-inline: 12px;
    font-size: 0.92rem;
  }

  .header-button small {
    font-size: 0.68rem;
  }

  .header-actions .button-ghost {
    grid-column: auto;
  }

  .hero,
  .product-hero,
  .founder-hero {
    padding-top: 36px;
  }

  .hero-copy,
  .flow-copy,
  .section-heading {
    min-width: 0;
  }

  .hero h1,
  .product-hero h1,
  .blog-hero h1,
  .simple-page h1,
  .onboarding-slide h1 {
    font-size: clamp(1.8rem, 7.6vw, 2.2rem);
  }

  .hero h1 span {
    display: block;
  }

  .hero-note {
    position: static;
    width: auto;
    margin-top: 14px;
  }

  .dashboard-video-section {
    padding: 44px 0;
  }

  .demo-stage {
    min-height: 330px;
  }

  .demo-scene img {
    height: 330px;
  }

  .demo-scene figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px;
  }

  .three-up,
  .four-up,
  .testimonial-grid,
  .audience-grid,
  .experience-grid,
  .founder-credential-grid,
  .pricing-grid,
  .pricing-trust,
  .demo-paths,
  .product-choice-grid,
  .product-trust-strip,
  .trust-grid,
  .founder-proof-stats,
  .hero-product-paths,
  .support-choice-grid,
  .role-grid,
  .product-proof-row,
  .standout-grid,
  .before-after-grid,
  .walkthrough-grid,
  .blog-process-grid,
  .privacy-stamp-card,
  .use-case-grid,
  .mini-observation-preview,
  .dashboard-preview,
  .admin-outcome-grid {
    grid-template-columns: 1fr;
  }

  .walkthrough-grid article {
    min-height: auto;
  }

  .pricing-hero,
  .pricing-table-section,
  .quote-section,
  .pricing-faq {
    grid-template-columns: 1fr;
  }

  .demo-hero,
  .demo-form-section,
  .demo-form,
  .faq-layout,
  .support-cta-band,
  .hero-product-paths,
  .support-choice-grid,
  .not-found-page,
  .evaluation-workflow-section,
  .evaluation-cta,
  .buyer-objection-section,
  .single-cta-band,
  .final-cta,
  .final-product-links {
    grid-template-columns: 1fr;
  }

  .evaluation-timeline article {
    grid-template-columns: 1fr;
  }

  .founder-proof-band,
  .founder-proof-note {
    grid-template-columns: 1fr;
  }

  .admin-proof-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .evaluation-timeline p {
    grid-column: auto;
    margin-top: 0;
  }

  .pricing-badge {
    position: static;
  }

  .site-pricing-table {
    font-size: 0.86rem;
  }

  .site-pricing-table div {
    grid-template-columns: 1fr;
  }

  .site-pricing-table div:first-child {
    display: none;
  }

  .site-pricing-table span {
    padding: 12px 14px;
  }

  .site-pricing-table div:not(:first-child) {
    border-bottom: 1px solid var(--line);
  }

  .site-pricing-table div:last-child {
    border-bottom: 0;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .preview-body {
    grid-template-columns: 1fr;
  }

  .preview-sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .mock-columns,
  .email-row {
    grid-template-columns: 1fr;
  }

  .button,
  .provider-button {
    width: 100%;
  }

  .dropdown-menu {
    left: 0;
    transform: none;
  }
}
