@font-face {
  font-family: "Baloo 2 Brand";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("fonts/Baloo2-ExtraBold.ttf") format("truetype");
}

@font-face {
  font-family: "Material Community Icons";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("fonts/MaterialCommunityIcons.ttf") format("truetype");
}

:root {
  --ink: #17184f;
  --muted: #626887;
  --blue: #2f80ed;
  --blue-dark: #1765c7;
  --blue-pale: #eaf4ff;
  --green: #2f8a45;
  --green-pale: #e7f7eb;
  --yellow: #ffc928;
  --yellow-pale: #fff8dc;
  --red: #e94242;
  --purple-pale: #f4edff;
  --surface: #ffffff;
  --page: #f8f9ff;
  --line: #dfe3f1;
  --shadow: 0 24px 60px rgba(23, 24, 79, 0.12);
  --radius: 24px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: "Trebuchet MS", "Avenir Next", Avenir, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--blue-dark);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--ink);
}

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

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(223, 227, 241, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.nav-wrap,
.container {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 3px;
  min-height: 64px;
  overflow: hidden;
  padding: 2px 15px 2px 6px;
  border-radius: 17px;
  background:
    radial-gradient(ellipse at 18% 34%, rgba(255, 255, 255, 0.34) 0 9px, transparent 10px),
    radial-gradient(ellipse at 28% 43%, rgba(255, 255, 255, 0.28) 0 14px, transparent 15px),
    radial-gradient(ellipse at 81% 62%, rgba(255, 255, 255, 0.25) 0 12px, transparent 13px),
    #79caf3;
  color: #fff7de;
  font-family: "Baloo 2 Brand", "Trebuchet MS", system-ui, sans-serif;
  font-size: 1.32rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.brand:hover {
  color: #fff7de;
}

.brand img {
  position: relative;
  z-index: 1;
  width: 66px;
  height: 58px;
  object-fit: contain;
}

.brand-name {
  position: relative;
  z-index: 1;
  display: block;
  white-space: nowrap;
  text-shadow: 0 1px 1px rgba(17, 54, 112, 0.5);
}

.brand-highlight {
  color: #ffd24a;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.desktop-nav > a:not(.button) {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
}

.desktop-nav > a[aria-current="page"],
.desktop-nav > a:not(.button):hover {
  color: var(--blue-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 6px;
}

.mobile-nav {
  display: none;
  margin-left: auto;
}

.mobile-nav summary {
  display: grid;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
  place-items: center;
  list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav summary::before {
  content: "☰";
  font-size: 1.35rem;
  line-height: 1;
}

.mobile-nav[open] summary::before {
  content: "×";
}

.mobile-nav-panel {
  position: absolute;
  top: 68px;
  right: 20px;
  width: min(320px, calc(100vw - 40px));
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.mobile-nav-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.mobile-nav-panel .button {
  margin-top: 8px;
  text-align: center;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: 2px solid transparent;
  border-radius: 14px;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 9px 22px rgba(47, 128, 237, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  background: var(--blue-dark);
  color: #fff;
  box-shadow: 0 12px 28px rgba(47, 128, 237, 0.3);
  transform: translateY(-1px);
}

.button-secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}

.button-secondary:hover {
  border-color: var(--blue);
  background: var(--blue-pale);
  color: var(--blue-dark);
  box-shadow: none;
}

.button-light {
  background: #fff;
  color: var(--blue-dark);
}

.button-light:hover {
  background: var(--yellow-pale);
  color: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 74px;
  background:
    radial-gradient(circle at 8% 15%, rgba(255, 201, 40, 0.25), transparent 24rem),
    radial-gradient(circle at 92% 20%, rgba(47, 138, 69, 0.18), transparent 23rem),
    linear-gradient(155deg, #fff 22%, #edf6ff 100%);
}

.hero::after {
  position: absolute;
  right: -40px;
  bottom: -70px;
  width: 250px;
  height: 250px;
  border: 44px solid rgba(47, 128, 237, 0.08);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  align-items: start;
  gap: 56px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--ink);
  line-height: 1.13;
  text-wrap: balance;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 5vw, 4.7rem);
  letter-spacing: -0.052em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.hero-copy > p:not(.eyebrow),
.page-intro > p:not(.eyebrow),
.section-heading > p {
  color: var(--muted);
  font-size: 1.15rem;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 0 0 28px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.centered-actions {
  justify-content: center;
  margin-top: 28px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  list-style: none;
}

.trust-list li::before {
  margin-right: 7px;
  color: var(--green);
  content: "✓";
}

.hero-art {
  position: relative;
}

.hero-carousel {
  width: 100%;
}

.hero-carousel-slide {
  margin: 0;
}

.tab-list.hero-carousel-device-tabs {
  margin: 0 auto 10px;
}

.hero-carousel-viewport {
  width: 100%;
  aspect-ratio: 1.25;
}

.hero-carousel[data-carousel-device-current="mobile"] .hero-carousel-viewport {
  min-height: 510px;
}

.hero-carousel-image-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
}

.hero-carousel-image-button[hidden] {
  display: none;
}

.hero-carousel-image-button .app-window,
.hero-carousel-image-button .device-frame {
  display: block;
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.hero-carousel-image-button:hover .app-window,
.hero-carousel-image-button:hover .device-frame,
.hero-carousel-image-button:focus-visible .app-window,
.hero-carousel-image-button:focus-visible .device-frame {
  box-shadow: 0 26px 66px rgba(23, 24, 79, 0.2);
  transform: translateY(-2px);
}

.hero-carousel-image-button:focus-visible,
.hero-carousel-device-tabs button:focus-visible {
  outline: 3px solid rgba(47, 128, 237, 0.4);
  outline-offset: 4px;
}

.device-frame-mobile.hero-carousel-mobile-frame {
  width: auto;
  max-width: 225px;
  max-height: 480px;
  margin: 0 auto;
}

.hero-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-carousel-arrow,
.hero-carousel-dots button {
  border: 0;
  cursor: pointer;
}

.hero-carousel-arrow {
  width: 38px;
  height: 38px;
  display: grid;
  padding: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--blue-dark);
  box-shadow: 0 4px 14px rgba(23, 24, 79, 0.12);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
  place-items: center;
}

.hero-carousel-arrow span {
  display: block;
  line-height: 1;
  transform: translateY(-1px);
}

.hero-carousel-arrow:hover,
.hero-carousel-arrow:focus-visible {
  background: var(--blue-pale);
}

.hero-carousel-dots {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  background: #b7c9df;
}

.hero-carousel-dots button[aria-current="true"] {
  width: 24px;
  border-radius: 9px;
  background: var(--blue);
  box-shadow: 0 0 0 3px rgba(47, 128, 237, 0.16);
}

.hero-carousel-dots button:focus-visible,
.hero-carousel-arrow:focus-visible {
  outline: 3px solid rgba(47, 128, 237, 0.35);
  outline-offset: 3px;
}

.image-lightbox {
  width: min(94vw, 1320px);
  max-width: none;
  max-height: 94vh;
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: transparent;
  overflow: visible;
}

.image-lightbox::backdrop {
  background: rgba(15, 17, 45, 0.82);
  backdrop-filter: blur(5px);
}

.image-lightbox-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 94vh;
  padding: 14px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.image-lightbox img {
  display: block;
  max-width: 100%;
  max-height: calc(94vh - 74px);
  border-radius: 12px;
  object-fit: contain;
}

.image-lightbox p {
  margin: 9px 36px 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
  text-align: center;
}

.image-lightbox-close {
  position: absolute;
  z-index: 1;
  top: -14px;
  right: -14px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font-size: 1.65rem;
  line-height: 1;
}

.image-lightbox-close:hover,
.image-lightbox-close:focus-visible {
  background: var(--blue-dark);
}

.image-lightbox-nav {
  position: absolute;
  z-index: 1;
  top: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: rgba(23, 24, 79, 0.88);
  color: #fff;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  place-items: center;
  transform: translateY(-50%);
}

.image-lightbox-nav span {
  display: block;
  line-height: 1;
  transform: translateY(-1px);
}

.image-lightbox-prev {
  left: 24px;
}

.image-lightbox-next {
  right: 24px;
}

.image-lightbox-nav:hover,
.image-lightbox-nav:focus-visible {
  background: var(--blue-dark);
  outline: 3px solid rgba(255, 255, 255, 0.55);
  outline-offset: 3px;
}

.app-window {
  overflow: hidden;
  border: 1px solid #d9deeb;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.app-window-bar {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.app-window-bar i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f16a68;
}

.app-window-bar i:nth-child(2) {
  background: var(--yellow);
}

.app-window-bar i:nth-child(3) {
  background: #55bd6b;
}

.app-window > img,
.device-frame > img {
  max-width: 100%;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

.section {
  padding: 88px 0;
}

.section-white {
  background: #fff;
}

.section-blue {
  background: var(--blue-pale);
}

.section-yellow {
  background: var(--yellow-pale);
}

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

.section-heading > p {
  margin: 0;
}

.home-assessment-types {
  padding-block: 76px;
}

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

.assessment-type-card {
  padding: 26px;
  border: 1px solid rgba(23, 24, 79, 0.09);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(23, 24, 79, 0.06);
}

.assessment-type-literacy {
  background: #f6f0ff;
}

.assessment-type-math {
  background: #fff;
}

.assessment-type-concepts {
  background: #fff5df;
}

.assessment-type-count {
  margin: 0 0 8px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.assessment-type-card h3 {
  margin-bottom: 14px;
}

.assessment-type-card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-weight: 800;
  list-style: none;
}

.assessment-type-card li::before {
  margin-right: 8px;
  color: var(--green);
  content: "✓";
}

.custom-assessment-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 24px 26px;
  border: 1px solid rgba(47, 128, 237, 0.2);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(23, 24, 79, 0.06);
}

.custom-assessment-callout h3 {
  margin-bottom: 6px;
}

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

.custom-assessment-callout .button {
  flex: 0 0 auto;
}

.subscription-flexibility {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(47, 128, 237, 0.2);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
}

.subscription-flexibility > div {
  max-width: 850px;
}

.subscription-flexibility h2,
.subscription-flexibility h3 {
  margin-bottom: 10px;
}

.subscription-flexibility p:last-child {
  margin: 0;
  color: var(--muted);
}

.subscription-flexibility .button {
  flex: 0 0 auto;
}

.subscription-flexibility-compact {
  margin-top: 24px;
  padding: 26px 30px;
  box-shadow: 0 10px 30px rgba(23, 24, 79, 0.06);
}

.feature-grid,
.audience-grid,
.steps-grid,
.seo-link-grid,
.platform-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
}

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

.feature-card,
.audience-card,
.step-card,
.quote-card,
.content-card,
.platform-card,
.pricing-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(23, 24, 79, 0.06);
}

.feature-card,
.audience-card,
.step-card {
  padding: 26px;
}

.feature-card p,
.audience-card p,
.step-card p,
.content-card p {
  margin: 0;
  color: var(--muted);
}

.feature-icon,
.step-number {
  width: 46px;
  height: 46px;
  display: grid;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--blue-pale);
  color: var(--blue-dark);
  font-size: 1.3rem;
  font-weight: 900;
  place-items: center;
}

.feature-card:nth-child(3n + 2) .feature-icon {
  background: var(--green-pale);
  color: var(--green);
}

.feature-card:nth-child(3n + 3) .feature-icon {
  background: var(--yellow-pale);
  color: #9a6a00;
}

.feature-card {
  display: flow-root;
}

.feature-card .feature-icon {
  float: left;
  margin: 1px 14px 7px 0;
}

.feature-card h3 {
  margin-top: 2px;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 64px;
}

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

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

.check-list li {
  position: relative;
  padding-left: 32px;
  font-weight: 800;
}

.check-list li::before {
  position: absolute;
  top: 0.08em;
  left: 0;
  width: 23px;
  height: 23px;
  display: grid;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green);
  content: "✓";
  font-size: 0.8rem;
  place-items: center;
}

.brand-illustration {
  position: relative;
  min-height: 440px;
  display: grid;
  overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(circle at center, #fff 0 18%, transparent 56%),
    linear-gradient(145deg, var(--purple-pale), var(--blue-pale));
  place-items: center;
}

.brand-illustration img {
  width: min(76%, 440px);
  filter: drop-shadow(0 22px 24px rgba(23, 24, 79, 0.16));
}

.device-showcase {
  width: 100%;
  min-width: 0;
  max-width: 1080px;
  margin: 0 auto;
}

.tab-list {
  width: fit-content;
  display: flex;
  gap: 6px;
  margin: 0 auto 18px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.tab-button {
  min-height: 42px;
  padding: 8px 18px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
}

.tab-button[aria-selected="true"] {
  background: var(--blue);
  color: #fff;
}

.tab-panel[hidden] {
  display: none;
}

[role="tabpanel"] {
  min-width: 0;
}

.device-frame {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #f5f6fb;
  box-shadow: var(--shadow);
}

.device-frame-mobile {
  width: 100%;
  max-width: 320px;
  max-height: 720px;
  margin-inline: auto;
  border: 10px solid var(--ink);
  border-radius: 34px;
}

.screenshot-lightbox-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
}

.screenshot-lightbox-trigger-mobile {
  width: min(100%, 320px);
  margin-inline: auto;
}

.screenshot-lightbox-trigger .device-frame,
.screenshot-lightbox-trigger .app-window {
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.screenshot-lightbox-trigger:hover .device-frame,
.screenshot-lightbox-trigger:hover .app-window,
.screenshot-lightbox-trigger:focus-visible .device-frame,
.screenshot-lightbox-trigger:focus-visible .app-window {
  box-shadow: 0 26px 66px rgba(23, 24, 79, 0.2);
  transform: translateY(-2px);
}

.screenshot-lightbox-trigger:focus-visible {
  outline: 3px solid rgba(47, 128, 237, 0.4);
  outline-offset: 4px;
}

.showcase-caption {
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.audience-grid {
  grid-template-columns: repeat(4, 1fr);
}

.audience-card {
  position: relative;
  overflow: hidden;
}

.audience-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  background: var(--blue);
  content: "";
}

.audience-card:nth-child(2)::before {
  background: var(--red);
}

.audience-card:nth-child(3)::before {
  background: var(--yellow);
}

.audience-card:nth-child(4)::before {
  background: var(--green);
}

.audience-card a {
  display: inline-block;
  margin-top: 15px;
  font-weight: 900;
}

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

.standard-template-table-wrap {
  margin-top: 24px;
  overflow-x: auto;
  border: 1px solid #cfe3fb;
  border-radius: 18px;
  background: #fff;
  text-align: left;
}

.standard-template-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  color: var(--ink);
}

.standard-template-table th,
.standard-template-table td {
  padding: 14px 18px;
  border-bottom: 1px solid #dfeaf7;
  vertical-align: middle;
}

.standard-template-table thead th {
  background: var(--blue-pale);
  color: var(--blue-dark);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.standard-template-table tbody tr:last-child td {
  border-bottom: 0;
}

.standard-template-table td:first-child {
  width: 42%;
}

.standard-template-table td:last-child {
  color: var(--muted);
}

.standard-template-table td strong {
  font-weight: 800;
}

.template-group th {
  padding: 10px 18px;
  border-bottom-color: rgba(23, 24, 79, 0.08);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.template-group-literacy th {
  background: #f1e8ff;
}

.template-group-math th {
  background: #e2f3ff;
}

.template-group-concepts th {
  background: #fff0d6;
}

.template-table-icon {
  display: inline-grid;
  width: 32px;
  height: 32px;
  margin-right: 10px;
  border-radius: 10px;
  background: var(--blue-pale);
  color: var(--blue-dark);
  place-items: center;
  vertical-align: middle;
}

.template-table-icon::before {
  font-family: "Material Community Icons";
  font-size: 1.15rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}

.template-icon-alphabetical-variant::before { content: "\f100d"; }
.template-icon-format-letter-case-upper::before { content: "\f0b36"; }
.template-icon-format-letter-case-lower::before { content: "\f0b35"; }
.template-icon-bookshelf::before { content: "\f125f"; }
.template-icon-counter::before { content: "\f0199"; }
.template-icon-numeric::before { content: "\f03a0"; }
.template-icon-palette-outline::before { content: "\f0e0c"; }
.template-icon-shape-outline::before { content: "\f0832"; }

.template-catalog-panel {
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(47, 128, 237, 0.2);
  border-radius: 32px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 201, 40, 0.2), transparent 18rem),
    #fff;
  box-shadow: var(--shadow);
}

.template-catalog-panel .section-heading {
  margin-bottom: 32px;
}

.platform-grid {
  grid-template-columns: repeat(4, 1fr);
}

.platform-card {
  padding: 28px;
  text-align: center;
}

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

.platform-symbol {
  width: 64px;
  height: 64px;
  display: grid;
  margin: 0 auto 18px;
  border-radius: 20px;
  background: var(--blue-pale);
  color: var(--blue-dark);
  font-size: 1.55rem;
  font-weight: 900;
  place-items: center;
}

.platform-card:nth-child(2) .platform-symbol {
  background: var(--purple-pale);
  color: #7043b5;
}

.platform-card:nth-child(3) .platform-symbol {
  background: var(--green-pale);
  color: var(--green);
}

.platform-card:nth-child(4) .platform-symbol {
  background: var(--yellow-pale);
  color: #8b6500;
}

.pricing-grid {
  max-width: 860px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  padding: 34px;
}

.pricing-card-featured {
  border: 3px solid var(--blue);
  box-shadow: 0 20px 50px rgba(47, 128, 237, 0.18);
}

.pricing-tag {
  position: absolute;
  top: 0;
  right: 28px;
  padding: 7px 13px;
  border-radius: 0 0 10px 10px;
  background: var(--blue);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin: 18px 0 6px;
}

.price strong {
  color: var(--ink);
  font-size: clamp(2.7rem, 6vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.price span,
.pricing-note {
  color: var(--muted);
}

.pricing-card .check-list {
  margin-bottom: 28px;
}

.pricing-card .button {
  width: 100%;
}

.faq-jump-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 0 38px;
}

.faq-jump-links a {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
}

.faq-section + .faq-section {
  margin-top: 58px;
}

.faq-section > h2 {
  max-width: 860px;
  margin-inline: auto;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}

.step-number {
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
}

.page-hero {
  padding: 74px 0 64px;
  background:
    radial-gradient(circle at 82% 35%, rgba(255, 201, 40, 0.2), transparent 18rem),
    linear-gradient(140deg, #fff, var(--blue-pale));
}

.page-intro {
  max-width: 880px;
}

.page-intro h1 {
  font-size: clamp(2.5rem, 5vw, 4.3rem);
}

.page-intro > p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 28px;
}

.content-card {
  padding: 34px;
}

.content-card + .content-card {
  margin-top: 18px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.mini-list {
  margin: 16px 0 0;
  padding-left: 22px;
  color: var(--muted);
}

.mini-list li + li {
  margin-top: 7px;
}

.decorative-art {
  position: relative;
  min-height: 300px;
  display: grid;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--yellow-pale), var(--green-pale));
  place-items: center;
}

.decorative-art img {
  width: min(80%, 330px);
  filter: drop-shadow(0 18px 28px rgba(23, 24, 79, 0.18));
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.faq-list details:first-child {
  border-top: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 20px 44px 20px 0;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 17px;
  right: 4px;
  color: var(--blue-dark);
  content: "+";
  font-size: 1.5rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: -4px 0 20px;
  color: var(--muted);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 56px;
  border-radius: 32px;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 22px 50px rgba(47, 128, 237, 0.25);
}

.cta-band h2,
.cta-band p {
  position: relative;
  z-index: 1;
  color: #fff;
}

.cta-band h2 {
  max-width: 700px;
  margin-bottom: 12px;
}

.cta-band p {
  max-width: 680px;
  margin: 0 0 26px;
  opacity: 0.9;
}

.cta-band .cta-actions {
  position: relative;
  z-index: 1;
}

.cta-band::after {
  position: absolute;
  right: -10px;
  bottom: -100px;
  width: 320px;
  height: 320px;
  border: 52px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.seo-link-grid {
  grid-template-columns: repeat(4, 1fr);
}

.seo-link-grid a {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.seo-link-grid a:hover {
  border-color: var(--blue);
  color: var(--blue-dark);
}

.site-footer {
  padding: 54px 0 26px;
  background: #10113e;
  color: rgba(255, 255, 255, 0.75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.7fr);
  gap: 42px;
}

.footer-brand {
  color: #fff7de;
}

.footer-brand img {
  width: 72px;
  height: 62px;
}

.footer-copy {
  max-width: 370px;
  margin: 18px 0 0;
}

.footer-heading {
  margin: 0 0 12px;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.84rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 20px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-legal a:hover {
  color: #fff;
}

.legal-content {
  max-width: 860px;
}

.legal-content h2 {
  margin-top: 42px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.contact-panel {
  margin-top: 34px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--blue-pale);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: start;
  gap: 32px;
}

.contact-form-card,
.contact-details-card {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(23, 24, 79, 0.07);
}

.contact-details-card {
  background: var(--blue-pale);
}

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

.contact-details-card a {
  overflow-wrap: anywhere;
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field label {
  color: var(--ink);
  font-weight: 900;
}

.form-optional {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid #bcc4da;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.form-field input {
  min-height: 50px;
  padding: 9px 13px;
}

.form-field textarea {
  min-height: 190px;
  padding: 12px 13px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(47, 128, 237, 0.18);
  outline-offset: 1px;
}

.contact-form .button {
  width: fit-content;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.form-status {
  min-height: 1.65em;
  margin: 0;
  font-weight: 800;
}

.form-status-success {
  color: var(--green);
}

.form-status-error {
  color: #b42318;
}

.recaptcha-notice {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

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

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .hero-grid,
  .split,
  .content-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 54px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-art {
    max-width: 760px;
  }

  .feature-grid,
  .audience-grid,
  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.3fr repeat(2, 0.7fr);
  }

  .footer-grid > div:last-child {
    grid-column: 2;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .nav-wrap,
  .container {
    width: min(calc(100% - 28px), var(--content));
  }

  .nav-wrap {
    min-height: 68px;
    gap: 12px;
  }

  .brand img {
    width: 56px;
    height: 50px;
  }

  .brand {
    min-height: 56px;
    padding-right: 10px;
    font-size: 0.98rem;
  }

  .brand-name {
    max-width: 155px;
  }

  .hero,
  .page-hero {
    padding: 54px 0;
  }

  .hero-grid {
    display: block;
  }

  .hero-art {
    margin-top: 62px;
  }

  .hero-carousel-slide .app-window {
    max-width: 360px;
    margin: 0 auto;
  }

  .section {
    padding: 64px 0;
  }

  .feature-grid,
  .audience-grid,
  .steps-grid,
  .assessment-type-grid,
  .seo-link-grid,
  .platform-grid,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .custom-assessment-callout {
    align-items: flex-start;
    flex-direction: column;
  }

  .subscription-flexibility {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .brand-illustration {
    min-height: 320px;
  }

  .content-card,
  .feature-card,
  .audience-card,
  .step-card {
    padding: 22px;
  }

  .cta-band {
    padding: 34px 24px;
  }

  .hero-actions .button,
  .cta-actions .button,
  .contact-form .button {
    width: 100%;
  }

  .tab-list {
    width: 100%;
  }

  .tab-button {
    flex: 1;
    padding-inline: 8px;
  }

  .footer-bottom {
    display: block;
  }

  .footer-legal {
    justify-content: flex-start;
    margin-top: 8px;
  }
}

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

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