/* ============================================================
   SPELLZONE — 2026 REDESIGN
   Palette: Dark Cyan · Light Green · Soft Blush · Vibrant Coral
            · Vivid Tangerine · Black on white.
   No gradients. Solid blocks only.
   ============================================================ */

:root {
  /* Palette */
  --cyan:         #009999;
  --cyan-dark:    #007878;
  --cyan-50:      #E5F4F4;
  --mint:         #9EE493;
  --mint-dark:    #75C86A;
  --mint-50:      #EEFBEC;
  --blush:        #F7F1E9;
  --blush-50:     #FBF7F1;
  --butter:       #FCF4B3;
  --butter-50:    #FEFAE0;
  --coral:        #F05D5E;
  --coral-dark:   #D24849;

  /* Neutrals */
  --ink:          #000000;
  --ink-2:        #1F1F1F;
  --muted:        #5C5C5C;
  --hair:         #E4E4E4;
  --paper:        #FFFFFF;

  /* Type */
  --font-serif:   "Fraunces", ui-serif, Georgia, "Times New Roman", serif;
  --font-sans:    "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --maxw:         1200px;
  --radius:       18px;
  --radius-sm:    10px;
  --radius-lg:    24px;

  --ease:         cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  font-size: 17px;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.015em;
  font-variation-settings: "SOFT" 50;
}
p { margin: 0; }

/* ============================================================
   EYEBROW + HEADINGS
   ============================================================ */
.eyebrow {
  display: inline-block;
  color: var(--ink);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow--center { display: block; text-align: center; }

.h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  line-height: 1.1;
  max-width: 24ch;
}
.h2--center { text-align: center; margin-left: auto; margin-right: auto; }

.section-head__eyebrow,
.section-head__title,
.section-head__lede { /* legacy — kept as-is for any leftover usage */ }
.section-head--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.97rem;
  font-family: var(--font-sans);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s var(--ease), color 0.15s var(--ease),
              border-color 0.15s var(--ease), transform 0.15s var(--ease),
              box-shadow 0.15s var(--ease);
  white-space: nowrap;
}
.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 0 var(--cyan-dark);
}
.btn--lg { padding: 15px 26px; font-size: 1.02rem; }

.btn--primary {
  background: var(--cyan);
  color: var(--paper);
  border-color: var(--cyan);
}
.btn--primary:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 4px 4px 0 0 var(--ink);
}

.btn--mint {
  background: var(--mint);
  color: var(--ink);
  border-color: var(--mint);
}
.btn--mint:hover { background: var(--mint-dark); border-color: var(--mint-dark); }

.btn--white {
  background: var(--paper);
  color: var(--cyan-dark);
  border-color: var(--paper);
}
.btn--white:hover { background: var(--paper); color: var(--cyan-dark); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--ghost.btn--lg {
  background: var(--blush);
  border-color: transparent;
}
.btn--ghost.btn--lg:hover {
  background: var(--blush);
  color: var(--ink);
  box-shadow: 4px 4px 0 0 var(--ink);
}

.btn--outline {
  background: transparent;
  color: var(--paper);
  border-color: var(--paper);
}
.btn--outline:hover { background: var(--paper); color: var(--cyan-dark); }

.link {
  font-weight: 500;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s var(--ease);
}
.link:hover { color: var(--cyan); }

.link--arrow {
  color: var(--ink);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.link--arrow:hover { color: var(--ink); }

.link--underline {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
}
.link--underline:hover { color: var(--cyan); }

.link--mint { color: var(--ink); }
.link--mint:hover { color: var(--cyan); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease);
}
.nav.is-scrolled {
  border-color: var(--hair);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 26px 24px;
}
.nav__logo img { height: 44px; width: auto; }
.nav__links {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-self: center;
}
.nav__links > a {
  color: var(--ink-2);
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}
.nav__links > a:hover { color: var(--cyan); background: var(--cyan-50); }

.nav__cta {
  display: flex;
  gap: 25px;
  align-items: center;
  font-size: 0.95rem;
}
.nav__burger {
  display: none;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--paper);
  padding: 70px 24px 90px;
  border-bottom: 1px solid var(--hair);
}
.hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: stretch;
}
.hero__eyebrow {
  color: var(--ink);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero__title {
  font-size: clamp(2.3rem, 4.8vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 500;
  max-width: 16ch;
}
.hero__lede {
  margin-top: 22px;
  max-width: 52ch;
  color: var(--ink-2);
  font-size: 1.1rem;
  line-height: 1.6;
}
.hero__ctas {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__micro {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}
.hero__micro li {
  position: relative;
  padding-left: 18px;
}
.hero__micro li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px; height: 2px;
  background: var(--cyan);
}

/* Hero visual */
.hero__visual {
  position: relative;
  height: 100%;
}
.hero__videoWrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cyan);
  aspect-ratio: auto;
  height: 100%;
  border: 1px solid var(--hair);
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__badge {
  position: absolute;
  left: -12px;
  bottom: -32px;
  width: 220px;
  aspect-ratio: 1 / 1;
  background: var(--blush);
  color: var(--ink);
  padding: 22px 22px 38px;
  border-radius: 14px;
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 0 var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
.hero__badgeText {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.hero__badgeText strong { font-weight: 600; }
.hero__badgeTag {
  position: absolute;
  left: 18px;
  bottom: 14px;
  background: var(--cyan);
  color: var(--paper);
  padding: 3px 12px;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust {
  padding: 50px 24px;
  background: var(--paper);
  border-bottom: 1px solid var(--hair);
}
.trust__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  text-align: center;
}
.trust__label {
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 28px;
}
.trust__logos {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 28px;
}
.trust__logos img {
  width: 100%;
  max-height: 50px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.65);
  transition: filter 0.3s var(--ease);
}
.trust__logos:hover img { filter: grayscale(0%) opacity(1); }
.trust__certs {
  font-size: 0.9rem;
  color: var(--ink-2);
  line-height: 1.6;
}
.trust__badge {
  display: inline-block;
  background: var(--cyan);
  color: var(--paper);
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.78rem;
  margin-right: 6px;
}

/* ============================================================
   TESTIMONIAL ROTATOR
   ============================================================ */
.rotator {
  background: var(--cyan);
  color: var(--paper);
  padding: 56px 24px;
}
.rotator__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.rotator__track {
  position: relative;
  height: 160px;
}
.rotator__card {
  margin: 0;
  opacity: 0;
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}
.rotator__card.is-active { opacity: 1; pointer-events: auto; }
.rotator__card blockquote {
  margin: 0 auto;
  font-family: var(--font-serif);
  font-size: 2rem;
  line-height: 1.35;
  color: var(--paper);
  font-weight: 400;
  max-width: 34ch;
  letter-spacing: -0.01em;
}
.rotator__card figcaption {
  margin-top: 18px;
  color: var(--paper);
  font-size: 0.9rem;
  font-weight: 500;
}
.rotator__dots { display: none; }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 110px 24px;
  background: var(--paper);
}
.about__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 70px;
  align-items: stretch;
}
.about__photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  box-shadow: 10px 10px 0 0 var(--mint);
}
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about__copy .h2 { margin-bottom: 26px; }
.about__copy p {
  color: var(--ink-2);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 52ch;
}
.about__ticks {
  list-style: none;
  padding: 0;
  margin: 24px 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}
.about__ticks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--ink);
  font-size: 0.98rem;
}
.about__ticks li::before {
  content: "";
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  background: var(--mint-dark);
  border-radius: 50%;
}

/* ============================================================
   HOW (3 PARTS)
   ============================================================ */
.how {
  padding: 110px 24px;
  background: var(--blush-50);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.how__inner { max-width: var(--maxw); margin: 0 auto; }
.how__grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 0 var(--ink);
}
.card--mint  { background: var(--mint); }
.card--blush { background: var(--butter); }
.card--cyan  { background: var(--cyan); color: var(--paper); }
.card--cyan h3 { color: var(--paper); }
.card--cyan .card__list li { color: var(--paper); }
.card--cyan .card__list li::before { background: var(--paper); }
.card--cyan .card__link { color: var(--paper); border-top-color: rgba(255,255,255,0.3); }
.card--cyan .card__icon {
  background: var(--paper);
  color: var(--cyan-dark);
  border-color: var(--paper);
}

.card__icon {
  width: 48px;
  height: 48px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
}
.card__icon svg { width: 24px; height: 24px; }
.card__title {
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card__list li {
  position: relative;
  padding-left: 20px;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.5;
}
.card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  background: var(--ink);
  border-radius: 50%;
}
.card__link {
  margin-top: auto;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.93rem;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.12);
}

/* ============================================================
   DYSLEXIA
   ============================================================ */
.dyslexia {
  padding: 110px 24px;
  background: var(--butter);
}
.dyslexia__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
}
.dyslexia__copy p {
  color: var(--ink-2);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 18px;
  max-width: 52ch;
}
.dyslexia__photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: -10px 10px 0 0 var(--coral);
}
.dyslexia__photo img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   IMPACT STATS
   ============================================================ */
.impact {
  padding: 110px 24px;
  background: var(--mint-50);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.impact__inner { max-width: var(--maxw); margin: 0 auto; }
.impact__grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.impact__stat {
  background: var(--mint);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.impact__stat:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 0 var(--ink);
}
.impact__n {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 1;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.impact__n span {
  font-size: 0.5em;
  color: var(--ink);
  margin-left: 4px;
  font-weight: 500;
}
.impact__stat p {
  font-size: 1.02rem;
  color: var(--ink-2);
  line-height: 1.5;
  margin-bottom: 16px;
}
.impact__stat cite {
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.88rem;
}

/* ============================================================
   AUDIENCES
   ============================================================ */
.audiences {
  padding: 110px 24px;
  background: var(--paper);
}
.audiences__inner { max-width: var(--maxw); margin: 0 auto; }
.audiences__grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.audTile {
  background: rgba(0, 0, 0, 0.063);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}
.audTile:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 0 var(--ink);
}
.audTile:nth-child(1):hover { background: var(--blush); }
.audTile:nth-child(2):hover { background: var(--mint); }
.audTile:nth-child(3):hover { background: var(--cyan-50); }
.audTile:nth-child(4):hover { background: var(--butter); }
.audTile h3 {
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.audTile p {
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.55;
  flex-grow: 1;
  margin-bottom: 14px;
}
.audTile__link {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.9rem;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.15);
}

/* ============================================================
   BLOG
   ============================================================ */
.blog {
  padding: 110px 24px;
  background: var(--blush);
}
.blog__inner { max-width: var(--maxw); margin: 0 auto; }
.blog__head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 44px;
}
.blog__head .h2 { max-width: 28ch; }
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.blogCard {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  min-height: 220px;
}
.blogCard:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 0 var(--ink);
}
.blogCard__tag {
  display: inline-block;
  background: var(--mint);
  color: var(--ink);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  align-self: flex-start;
}
.blogCard h3 {
  font-size: 1.2rem;
  line-height: 1.25;
  font-weight: 500;
  flex-grow: 1;
}
.blogCard time {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 500;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta {
  background: var(--cyan);
  padding: 100px 24px;
  color: var(--paper);
  text-align: center;
}
.cta__inner { max-width: 720px; margin: 0 auto; }
.cta__title {
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 4.6vw, 3.4rem);
  line-height: 1.08;
  font-weight: 500;
  color: var(--paper);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.cta__lede {
  color: var(--mint);
  font-size: 1.12rem;
  font-weight: 500;
}
.cta__buttons {
  margin-top: 34px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta__audiences {
  margin-top: 30px;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: var(--mint);
}
.cta__audiences a {
  color: var(--paper);
  font-weight: 600;
  border-bottom: 2px solid var(--mint);
  padding-bottom: 2px;
}
.cta__audiences a:hover { border-bottom-color: var(--tangerine); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--blush);
  color: var(--ink-2);
  padding: 70px 24px 30px;
  border-top: 1px solid var(--hair);
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 70px;
}
.footer__logo {
  height: 44px;
  width: auto;
  margin-bottom: 24px;
}
.footer__brand p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.6;
  max-width: 42ch;
  margin-bottom: 14px;
}
.footer__reviews {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 500;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.footer__cols h4 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  margin-bottom: 16px;
  font-weight: 700;
}
.footer__cols a {
  display: block;
  padding: 5px 0;
  color: var(--ink-2);
  font-size: 0.92rem;
  transition: color 0.15s var(--ease);
}
.footer__cols a:hover { color: var(--cyan); }

.footer__legal {
  max-width: var(--maxw);
  margin: 40px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ============================================================
   UTILITIES
   ============================================================ */
.red-bottom   { border-bottom: 2px solid var(--coral); }
.green-bottom { border-bottom: 2px solid var(--mint); }
.white        { color: var(--paper); }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hero__inner,
  .about__inner,
  .dyslexia__inner,
  .footer__inner { grid-template-columns: 1fr; gap: 50px; }

  .hero__visual { max-width: 640px; margin: 0 auto; width: 100%; }
  .how__grid,
  .impact__grid,
  .blog__grid { grid-template-columns: 1fr 1fr; }
  .audiences__grid { grid-template-columns: 1fr 1fr; }
  .trust__logos { grid-template-columns: repeat(4, 1fr); }
  .blog__head { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav__links, .nav__cta > .link { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__inner { padding: 14px 18px; }

  .hero { padding: 50px 18px 70px; }
  .about, .how, .dyslexia, .impact, .audiences, .blog, .cta { padding: 72px 18px; }
  .rotator { padding: 60px 18px; }
  .trust { padding: 40px 18px; }

  .hero__title { font-size: clamp(2rem, 8vw, 2.6rem); }

  .how__grid,
  .impact__grid,
  .blog__grid,
  .audiences__grid { grid-template-columns: 1fr; }
  .trust__logos { grid-template-columns: 1fr 1fr; gap: 20px; }
  .about__ticks { grid-template-columns: 1fr; }

  .hero__badge { position: static; margin-top: 18px; max-width: none; }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__video { display: none; }
}
