:root {
  color-scheme: light;
  --ink: #171a3e;
  --text: #39435c;
  --muted: #6b7285;
  --line: #e7e4ef;
  --paper: #ffffff;
  --base: #fcfbff;
  --brand: #7c3aed;
  --brand-deep: #5b21b6;
  --lavender: #f1edff;
  --yellow: #ffd84d;
  --cream: #fff7dd;
  --coral: #f46f85;
  --mint: #52c99a;
  --mint-soft: #e7f8f0;
  --sky: #58b7df;
  --sky-soft: #e8f7fd;
  --shadow: 0 18px 46px rgba(41, 36, 79, 0.13);
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  padding-bottom: 78px;
  background: var(--base);
  color: var(--text);
  line-height: 1.7;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3,
p,
blockquote {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  color: var(--ink);
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 950;
  line-height: 1.08;
}

h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 950;
  line-height: 1.2;
}

h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.35;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 64px;
  border-bottom: 1px solid rgba(231, 228, 239, 0.92);
  background: #ffffff;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: min(1180px, calc(100% - 28px));
  min-height: 64px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 950;
  white-space: nowrap;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 7px 16px rgba(124, 58, 237, 0.2);
}

.edition-switch {
  display: inline-flex;
  flex-shrink: 0;
  gap: 3px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 3px;
  background: #f7f6fa;
}

.edition-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  border-radius: 5px;
  padding: 0 9px;
  color: #687084;
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.edition-switch a.is-active {
  background: white;
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(32, 28, 64, 0.08);
}

nav {
  display: none;
}

.header-cta,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  padding: 0 16px;
  background: var(--ink);
  color: white;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(23, 26, 62, 0.17);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta:hover,
.secondary-button:hover {
  background: var(--brand-deep);
  box-shadow: 0 13px 28px rgba(91, 33, 182, 0.22);
  transform: translateY(-1px);
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 72px 0;
}

.band {
  width: 100%;
}

.band-inner {
  width: min(1120px, calc(100% - 36px));
}

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

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading > p:last-child {
  max-width: 670px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 600;
}

.faq-more { margin: 26px 0 0; }

.decision-hero { padding: 68px 0 54px; background: var(--lavender); }
.decision-hero-inner { display: grid; gap: 28px; width: min(980px, calc(100% - 36px)); margin: 0 auto; }
.decision-hero h1 { max-width: 820px; }
.decision-hero p { max-width: 720px; margin: 16px 0 0; font-size: 1.08rem; }
.decision-summary { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.decision-summary li { border-left: 4px solid var(--brand); padding: 9px 14px; background: #fff; color: var(--ink); font-weight: 850; }
.decision-layout { display: grid; gap: 28px; }
.decision-nav { display: grid; gap: 8px; align-self: start; }
.decision-nav a { border: 1px solid var(--line); border-radius: 8px; padding: 10px 13px; background: #fff; color: var(--ink); font-weight: 800; }
.decision-content { display: grid; gap: 18px; }
.decision-card { scroll-margin-top: 88px; border: 1px solid var(--line); border-radius: 12px; padding: 24px; background: #fff; }
.decision-card h2 { font-size: 1.55rem; }
.decision-card h3 { margin-top: 22px; }
.decision-card p, .decision-card ul { margin-bottom: 0; }
.decision-card .answer { margin-top: 10px; color: var(--ink); font-size: 1.06rem; font-weight: 750; }
.scope-table { width: 100%; margin-top: 18px; border-collapse: collapse; }
.scope-table th, .scope-table td { border-bottom: 1px solid var(--line); padding: 12px 10px; text-align: left; vertical-align: top; }
.scope-table th { color: var(--ink); }
.decision-note { border-left: 4px solid var(--yellow); padding: 14px 16px; background: var(--cream); }
.decision-final { background: var(--ink); color: #fff; }
.decision-final h2 { color: #fff; }
.decision-final .final-inner { grid-template-columns: minmax(0, 1fr); justify-items: start; }
.decision-final .final-copy { width: min(100%, 760px); }

@media (min-width: 820px) {
  .decision-hero-inner { grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); align-items: end; }
  .decision-layout { grid-template-columns: 230px minmax(0, 1fr); }
  .decision-nav { position: sticky; top: 88px; }
}

.section-heading.centered > p:last-child {
  margin-right: auto;
  margin-left: auto;
}

.eyebrow,
.hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 14px;
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 6px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--brand-deep);
  font-size: 0.82rem;
  font-weight: 900;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 10px solid var(--yellow);
  background: var(--lavender);
}

.hero-inner {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding-top: 32px;
}

.hero-copy {
  position: relative;
  z-index: 5;
  max-width: 620px;
}

.hero-kicker {
  border-color: rgba(244, 111, 133, 0.32);
  background: #fff2f5;
  color: #a9334f;
}

.hero h1 {
  max-width: 100%;
}

.hero h1 span {
  display: block;
}

.hero h1 span + span {
  margin-top: 4px;
  color: var(--brand-deep);
}

.hero-lede {
  max-width: 37rem;
  margin: 18px 0 0;
  color: #4f5670;
  font-size: 1.08rem;
  font-weight: 650;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-top: 22px;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.store-badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  border-radius: 8px;
  transition: opacity 160ms ease, transform 160ms ease;
}

.store-badge-link:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.store-badge-link:focus-visible {
  outline: 3px solid rgba(109, 40, 217, 0.42);
  outline-offset: 4px;
}

.store-badge {
  display: block;
  width: auto;
  max-width: none;
  object-fit: contain;
}

.store-badge-apple {
  height: 44px;
}

.store-badge-google {
  height: 59px;
}

.apple-mark,
.play-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
}

.play-mark {
  font-family: Arial, sans-serif;
  font-size: 1.05rem;
}

.device-note {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
}

.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 0;
  margin: 13px 0 0;
  padding: 0;
  color: #514b6f;
  font-size: 0.78rem;
  font-weight: 850;
  list-style: none;
}

.hero-assurance li + li::before {
  margin: 0 8px;
  color: var(--coral);
  content: "•";
}

.hero-art {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 270px;
  margin-top: 20px;
  pointer-events: none;
}

.hero-shot {
  position: absolute;
  border: 3px solid white;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-shot-main {
  top: 0;
  left: 50%;
  z-index: 2;
  width: 200px;
  transform: translateX(-50%);
}

.hero-shot-listening,
.hero-shot-writing,
.hero-note,
.hero-qr {
  display: none;
}

.proof-strip {
  border-bottom: 1px solid var(--line);
  background: white;
}

.release-note {
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.release-note-inner {
  display: grid;
  gap: 14px;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 22px 0;
}

.release-note-heading {
  display: grid;
  gap: 8px;
}

.release-note-badge {
  align-self: start;
  border: 1px solid rgba(124, 58, 237, 0.24);
  border-radius: 6px;
  padding: 5px 9px;
  background: white;
  color: var(--brand-deep);
  font-size: 0.78rem;
  font-weight: 950;
  white-space: nowrap;
}

.release-note h2 {
  font-size: 1.28rem;
}

.release-note p {
  max-width: 760px;
  margin: 4px 0 0;
  color: #625b4e;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.6;
}

.platform-release-card {
  display: grid;
  gap: 8px;
  border: 1px solid #e4d9b6;
  border-radius: 10px;
  padding: 17px;
  background: rgba(255, 255, 255, 0.78);
}

.platform-release-card > div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  align-items: baseline;
}

.platform-release-card strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 950;
}

.platform-release-card span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.platform-release-card p {
  margin: 0;
}

.platform-release-card a {
  width: fit-content;
  color: var(--brand-deep);
  font-size: 0.82rem;
  font-weight: 950;
}

.android-release-card {
  border-color: #cbe7dc;
  background: rgba(243, 253, 248, 0.9);
}

.social-proof {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: #211d45;
  color: white;
}

.social-proof-inner {
  display: grid;
  gap: 18px;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 24px 0;
}

.rating-summary {
  display: grid;
  gap: 3px;
  align-content: center;
}

.rating-stars {
  color: var(--yellow);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
}

.rating-summary strong {
  font-size: 1.08rem;
  font-weight: 950;
}

.rating-summary a,
.social-proof figcaption {
  color: #bbb5d8;
  font-size: 0.74rem;
  font-weight: 700;
}

.rating-summary a:hover {
  color: white;
}

.social-proof figure {
  margin: 0;
  border-left: 2px solid rgba(255, 229, 131, 0.75);
  padding-left: 16px;
}

.social-proof blockquote {
  margin: 0 0 5px;
  color: #f7f5ff;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.6;
}

.proof-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 19px 0;
}

.proof-inner > div {
  min-width: 0;
  padding: 10px 12px;
}

.proof-inner > div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.proof-inner strong,
.proof-inner span {
  display: block;
}

.proof-inner strong {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 950;
}

.proof-inner span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.45;
}

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

.outcome-grid article {
  border: 1px solid var(--line);
  border-top: 4px solid var(--brand);
  border-radius: 8px;
  padding: 24px;
  background: white;
  box-shadow: 0 12px 32px rgba(41, 36, 79, 0.07);
}

.outcome-grid article:nth-child(2) {
  border-top-color: var(--coral);
}

.outcome-grid article:nth-child(3) {
  border-top-color: var(--mint);
}

.outcome-number {
  display: block;
  margin-bottom: 20px;
  color: var(--brand);
  font-size: 0.88rem;
  font-weight: 950;
}

.outcome-grid article:nth-child(2) .outcome-number {
  color: #b83450;
}

.outcome-grid article:nth-child(3) .outcome-number {
  color: #167554;
}

.outcome-grid p,
.evidence-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 600;
}

.learning-guide-bridge {
  display: grid;
  gap: 20px;
  align-items: center;
  margin-top: 22px;
  border: 1px solid #cfe7f1;
  border-radius: 10px;
  padding: 24px;
  background: var(--sky-soft);
}

.learning-guide-bridge span,
.learning-guide-bridge strong {
  display: block;
}

.learning-guide-bridge span {
  margin-bottom: 5px;
  color: #0c719a;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.learning-guide-bridge strong {
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 950;
  line-height: 1.45;
}

.learning-guide-bridge p {
  margin: 6px 0 0;
  color: #536274;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.7;
}

.learning-guide-bridge .secondary-button {
  width: fit-content;
  background: #136a8f;
}

.learning-band {
  background: var(--cream);
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-steps li {
  min-width: 0;
  border-left: 4px solid var(--yellow);
  padding: 6px 8px 8px 14px;
}

.flow-steps li:nth-child(2) {
  border-left-color: var(--mint);
}

.flow-steps li:nth-child(3) {
  border-left-color: var(--sky);
}

.flow-steps li:nth-child(4) {
  border-left-color: var(--coral);
}

.flow-steps span,
.flow-steps strong,
.flow-steps small {
  display: block;
}

.flow-steps span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
}

.flow-steps strong {
  margin-top: 1px;
  color: var(--ink);
  font-size: 1.32rem;
  font-weight: 950;
}

.flow-steps small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.5;
}

.flow-gallery {
  display: grid;
  grid-auto-columns: minmax(250px, 82%);
  grid-auto-flow: column;
  gap: 14px;
  margin-top: 34px;
  padding: 4px 2px 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
}

.flow-gallery figure {
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 8px;
  overflow: hidden;
  background: white;
  box-shadow: 0 16px 36px rgba(85, 62, 37, 0.1);
  scroll-snap-align: start;
}

.flow-gallery figure img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top;
}

.flow-gallery figcaption {
  display: block;
  min-height: 98px;
  padding: 16px;
}

.flow-gallery figcaption strong,
.flow-gallery figcaption span {
  display: block;
}

.flow-gallery figcaption strong {
  color: var(--ink);
  font-size: 1.06rem;
  font-weight: 950;
}

.flow-gallery figcaption span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
}

.evidence-grid {
  display: grid;
  grid-auto-columns: minmax(250px, 82%);
  grid-auto-flow: column;
  gap: 14px;
  padding: 4px 2px 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
}

.evidence-grid article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: white;
  box-shadow: 0 14px 34px rgba(41, 36, 79, 0.08);
  scroll-snap-align: start;
}

.evidence-grid article img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  object-position: top;
}

.evidence-grid article img.learning-card-shot {
  padding: 10px;
  object-fit: contain;
  object-position: center;
  background: #ece9ff;
}

.evidence-grid article > div {
  min-height: 186px;
  padding: 19px;
}

.evidence-grid article > div > span {
  display: block;
  margin-bottom: 7px;
  color: var(--brand-deep);
  font-size: 0.8rem;
  font-weight: 950;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.capability-list li {
  min-width: 0;
  border-top: 3px solid var(--brand);
  border-radius: 4px;
  padding: 14px 12px;
  background: #f7f5ff;
}

.capability-list li:nth-child(2),
.capability-list li:nth-child(6) {
  border-top-color: var(--coral);
  background: #fff2f5;
}

.capability-list li:nth-child(3),
.capability-list li:nth-child(5) {
  border-top-color: var(--sky);
  background: var(--sky-soft);
}

.capability-list li:nth-child(4) {
  border-top-color: var(--mint);
  background: var(--mint-soft);
}

.capability-list strong,
.capability-list span {
  display: block;
}

.capability-list strong {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 950;
}

.capability-list span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 650;
  line-height: 1.5;
}

.plan-band {
  background: var(--mint-soft);
}

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

.plan-card {
  border: 1px solid rgba(22, 117, 84, 0.18);
  border-radius: 8px;
  padding: 24px;
  background: white;
  box-shadow: 0 14px 34px rgba(24, 91, 68, 0.08);
}

.plan-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 16px;
  border-radius: 6px;
  padding: 4px 10px;
  background: var(--mint-soft);
  color: #126548;
  font-size: 0.82rem;
  font-weight: 950;
}

.plan-card h3 {
  font-size: 1.45rem;
}

.plan-card ul,
.institution-action ul {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.plan-card li,
.institution-action li {
  position: relative;
  padding-left: 25px;
  color: #4f586d;
  font-size: 0.94rem;
  font-weight: 650;
}

.plan-card li::before,
.institution-action li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #16855e;
  font-weight: 950;
  content: "✓";
}

.plan-card.premium {
  border-color: #2f2b59;
  background: #25214b;
  box-shadow: 0 20px 44px rgba(37, 33, 75, 0.2);
}

.plan-card.premium .plan-label {
  background: var(--yellow);
  color: #4c3c00;
}

.plan-card.premium h3,
.plan-card.premium li {
  color: white;
}

.plan-card.premium li::before {
  color: var(--yellow);
}

.plan-store-buttons {
  margin-top: 24px;
}

.trust-band {
  background: #211d42;
  color: white;
}

.trust-inner {
  display: grid;
  gap: 32px;
}

.trust-band .eyebrow {
  border-color: rgba(255, 216, 77, 0.46);
  background: rgba(255, 216, 77, 0.14);
  color: #ffe583;
}

.trust-copy h2 {
  color: white;
}

.trust-copy > p:last-child {
  max-width: 620px;
  margin: 16px 0 0;
  color: #d0cce2;
  font-size: 1.02rem;
  font-weight: 600;
}

.trust-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
}

.trust-list li {
  position: relative;
  min-height: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding: 13px 8px 13px 30px;
  color: #f5f3ff;
  font-size: 0.92rem;
  font-weight: 750;
}

.trust-list li::before {
  position: absolute;
  left: 4px;
  color: var(--yellow);
  font-weight: 950;
  content: "✓";
}

.founder-note {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 28px;
}

.founder-note img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
}

.founder-note span {
  display: block;
  margin-bottom: 6px;
  color: #ffe583;
  font-size: 0.78rem;
  font-weight: 950;
}

.founder-note blockquote {
  max-width: 800px;
  margin: 0;
  color: white;
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.75;
}

.institution-band {
  background: var(--sky-soft);
}

.institution-inner {
  display: grid;
  gap: 28px;
}

.institution-inner h2 {
  max-width: 620px;
}

.institution-inner > div:first-child > p:last-child {
  max-width: 650px;
  margin: 14px 0 0;
  color: #546377;
  font-size: 1rem;
  font-weight: 600;
}

.institution-page-link {
  width: fit-content;
  background: #136a8f;
}

.institution-action ul {
  margin-top: 0;
}

.institution-action li::before {
  color: #11769f;
}

.institution-action .secondary-button {
  margin-top: 20px;
  background: #136a8f;
}

.institution-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
}

.institution-buttons .text-link {
  margin-top: 20px;
  color: #075f84;
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: white;
  box-shadow: 0 8px 24px rgba(41, 36, 79, 0.05);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 62px;
  padding: 16px 18px;
  cursor: pointer;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  flex: 0 0 auto;
  color: var(--brand);
  font-size: 1.35rem;
  font-weight: 700;
  content: "+";
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 16px 18px 20px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.final-band {
  border-top: 10px solid var(--yellow);
  background: var(--brand-deep);
}

.final-inner {
  display: grid;
  gap: 22px;
  justify-items: start;
}

.final-icon {
  width: 82px;
  height: 82px;
  border: 4px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  box-shadow: 0 16px 34px rgba(27, 12, 62, 0.28);
}

.final-band .eyebrow {
  border-color: rgba(255, 216, 77, 0.54);
  background: var(--yellow);
  color: #4b3a00;
}

.final-copy h2 {
  max-width: 650px;
  color: white;
}

.final-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 14px 0 22px;
  color: #e1dcf3;
  font-size: 1rem;
  font-weight: 600;
}

.final-qr {
  display: none;
}

.site-footer {
  display: grid;
  gap: 20px;
  padding: 32px 18px 38px;
  background: #17142e;
  color: #b8b4cb;
  font-size: 0.86rem;
  font-weight: 650;
}

.site-footer > div:first-child strong,
.site-footer > div:first-child span {
  display: block;
}

.site-footer > div:first-child strong {
  color: white;
  font-size: 1rem;
  font-weight: 950;
}

.site-footer > div:first-child span {
  margin-top: 3px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.footer-links a:hover {
  color: white;
}

.analytics-note {
  color: #777288;
  font-size: 0.7rem;
  font-weight: 600;
}

.mobile-download-bar {
  position: fixed;
  z-index: 40;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 70px;
  border-top: 1px solid var(--line);
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
  background: #ffffff;
  box-shadow: 0 -12px 30px rgba(23, 26, 62, 0.12);
}

.mobile-download-bar img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.mobile-download-bar strong,
.mobile-download-bar span {
  display: block;
}

.mobile-download-bar strong {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 950;
}

.mobile-download-bar span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.mobile-download-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 42px;
  border-radius: 8px;
  background: var(--brand);
  color: white;
  font-size: 0.86rem;
  font-weight: 950;
}

.mobile-store-links {
  display: flex;
  gap: 6px;
}

.mobile-store-links a:last-child {
  background: #167554;
  font-size: 0.76rem;
}

/* School edition */

.school-page {
  --school: #0f766e;
  --school-deep: #114b5a;
  --school-ink: #123744;
  --school-soft: #e8f7f3;
  --school-blue: #dff2f7;
  background: #fbfdfd;
}

.school-page .brand img {
  box-shadow: 0 7px 16px rgba(15, 118, 110, 0.22);
}

.school-page .edition-switch a.is-active {
  color: var(--school-deep);
}

.school-header-cta,
.school-page .school-contact-panel .secondary-button {
  background: var(--school-deep);
}

.school-header-cta:hover,
.school-page .school-contact-panel .secondary-button:hover {
  background: var(--school);
}

.school-hero {
  overflow: hidden;
  border-bottom: 1px solid #cce9e2;
  background: var(--school-soft);
}

.school-hero-inner {
  display: grid;
  gap: 20px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 42px 0 0;
}

.school-hero-copy {
  position: relative;
  z-index: 3;
}

.school-kicker,
.school-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 14px;
  border: 1px solid rgba(15, 118, 110, 0.22);
  border-radius: 6px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--school);
  font-size: 0.8rem;
  font-weight: 950;
}

.school-hero h1 {
  max-width: 9em;
  color: var(--school-ink);
}

.school-hero-lede {
  max-width: 660px;
  margin: 18px 0 0;
  color: #45606a;
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.75;
}

.school-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
  margin-top: 24px;
}

.school-store-button {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  border-radius: 8px;
  padding: 10px 18px;
  background: var(--school-deep);
  color: white;
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.2;
  box-shadow: 0 14px 28px rgba(17, 75, 90, 0.2);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.school-store-button:hover {
  background: var(--school);
  box-shadow: 0 16px 32px rgba(15, 118, 110, 0.24);
  transform: translateY(-1px);
}

.school-store-button small {
  display: block;
  margin-bottom: 3px;
  color: #bfe7df;
  font-size: 0.7rem;
  font-weight: 750;
}

.school-store-button .apple-mark {
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.9rem;
  line-height: 1;
}

.school-store-button.compact {
  min-height: 48px;
  padding: 0 18px;
  font-size: 0.9rem;
}

.school-contact-link {
  color: var(--school-deep);
  font-size: 0.92rem;
  font-weight: 950;
  text-decoration: underline;
  text-decoration-color: rgba(15, 118, 110, 0.36);
  text-underline-offset: 5px;
}

.school-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 18px;
  margin: 16px 0 0;
  padding: 0;
  color: #516a72;
  font-size: 0.76rem;
  font-weight: 800;
  list-style: none;
}

.school-assurance li::before {
  margin-right: 6px;
  color: var(--school);
  content: "✓";
}

.school-hero-art {
  position: relative;
  height: 270px;
}

.school-hero-shot {
  position: absolute;
  border: 5px solid white;
  border-radius: 10px;
  object-fit: cover;
  object-position: top;
  box-shadow: 0 22px 54px rgba(17, 75, 90, 0.2);
}

.school-hero-shot-main {
  top: 6px;
  left: 2%;
  width: 210px;
}

.school-hero-shot-secondary {
  right: 0;
  bottom: -54px;
  width: 150px;
}

.school-hero-note {
  position: absolute;
  z-index: 4;
  display: none;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--school-ink);
  box-shadow: 0 12px 28px rgba(17, 75, 90, 0.14);
}

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

.school-hero-note strong {
  font-size: 0.84rem;
  font-weight: 950;
}

.school-hero-note span {
  margin-top: 2px;
  color: #61757b;
  font-size: 0.68rem;
  font-weight: 750;
}

.school-proof {
  background: var(--school-deep);
  color: white;
}

.school-proof-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 18px 0;
}

.school-proof-inner > div {
  min-width: 0;
  padding: 12px 10px;
}

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

.school-proof-inner strong {
  color: #fff1a8;
  font-size: 1.08rem;
  font-weight: 950;
}

.school-proof-inner span {
  margin-top: 2px;
  color: #d5e8e9;
  font-size: 0.74rem;
  font-weight: 700;
}

.school-positioning {
  display: grid;
  gap: 32px;
}

.school-positioning-copy > p:last-child,
.school-plan-copy > p:not(.school-eyebrow),
.school-security-layout > div:first-child > p:last-child {
  max-width: 680px;
  margin: 16px 0 0;
  color: #5c6b70;
  font-size: 1rem;
  font-weight: 600;
}

.school-use-cases {
  display: grid;
  gap: 10px;
  margin: 0;
}

.school-use-cases > div {
  border-left: 4px solid var(--school);
  border-radius: 0 7px 7px 0;
  padding: 16px 18px;
  background: white;
  box-shadow: 0 8px 24px rgba(17, 75, 90, 0.06);
}

.school-use-cases dt {
  color: var(--school-ink);
  font-weight: 950;
}

.school-use-cases dd {
  margin: 4px 0 0;
  color: #66757b;
  font-size: 0.88rem;
  font-weight: 600;
}

.school-feature-band {
  background: var(--school-blue);
}

.school-feature-grid {
  display: grid;
  grid-auto-columns: minmax(255px, 82%);
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 2px 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.school-feature-grid figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid #cce4e8;
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 32px rgba(17, 75, 90, 0.08);
  scroll-snap-align: start;
}

.school-feature-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
}

.school-feature-grid figcaption {
  display: grid;
  gap: 5px;
  padding: 18px;
}

.school-feature-grid figcaption strong {
  color: var(--school-ink);
  font-size: 1.04rem;
  font-weight: 950;
}

.school-feature-grid figcaption span {
  color: #627177;
  font-size: 0.86rem;
  font-weight: 600;
}

.school-plan-band {
  background: #f1edff;
}

.school-plan-layout {
  display: grid;
  gap: 28px;
}

.school-plan-copy .school-price-note {
  color: #737184;
  font-size: 0.78rem;
}

.school-plan-card {
  border: 1px solid #d8d0f2;
  border-radius: 8px;
  padding: 24px;
  background: white;
  box-shadow: 0 18px 42px rgba(67, 49, 116, 0.1);
}

.school-plan-price {
  display: grid;
  gap: 2px;
  margin-bottom: 20px;
}

.school-plan-price span {
  color: var(--school);
  font-size: 0.8rem;
  font-weight: 950;
}

.school-plan-price strong {
  color: var(--school-ink);
  font-size: 2.2rem;
  font-weight: 950;
  line-height: 1.2;
}

.school-plan-price small {
  color: #727084;
  font-weight: 700;
}

.school-plan-card ul,
.school-security-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.school-plan-card li {
  position: relative;
  padding-left: 24px;
  color: #4f5d65;
  font-size: 0.92rem;
  font-weight: 650;
}

.school-plan-card li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--school);
  font-weight: 950;
  content: "✓";
}

.school-plan-card .school-store-button {
  width: 100%;
  margin-top: 24px;
}

.school-security-band {
  background: var(--school-soft);
}

.school-security-layout {
  display: grid;
  gap: 30px;
}

.school-security-list li {
  border-bottom: 1px solid #c9e2dc;
  padding: 0 0 16px;
}

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

.school-security-list strong {
  color: var(--school-ink);
  font-weight: 950;
}

.school-security-list span {
  margin-top: 3px;
  color: #617177;
  font-size: 0.86rem;
  font-weight: 600;
}

.school-steps {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.school-steps li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 2px 12px;
  align-items: center;
  border: 1px solid #dfe8e8;
  border-radius: 8px;
  padding: 14px;
  background: white;
}

.school-steps li > span {
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--school);
  color: white;
  font-weight: 950;
}

.school-steps strong {
  color: var(--school-ink);
  font-weight: 950;
}

.school-steps small {
  color: #68767b;
  font-size: 0.78rem;
  font-weight: 600;
}

.school-contact-panel {
  display: grid;
  gap: 20px;
  align-items: center;
  margin-top: 28px;
  border: 1px solid #d7d0f0;
  border-radius: 8px;
  padding: 22px;
  background: #f5f2ff;
}

.school-contact-panel strong {
  color: var(--school-ink);
  font-size: 1.05rem;
  font-weight: 950;
}

.school-contact-panel p {
  margin: 5px 0 0;
  color: #646579;
  font-size: 0.88rem;
  font-weight: 600;
}

.school-contact-panel .secondary-button {
  width: fit-content;
}

.school-faq-band {
  border-top: 1px solid #e5e8ea;
  background: white;
}

.school-faq-list summary::after {
  color: var(--school);
}

.school-final-band {
  background: var(--school-deep);
  color: white;
}

.school-final-inner {
  display: grid;
  gap: 22px;
  align-items: center;
}

.school-final-inner > img {
  width: 84px;
  height: 84px;
  border-radius: 20px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
}

.school-final-inner h2 {
  color: white;
}

.school-final-inner p:not(.school-eyebrow) {
  max-width: 650px;
  margin: 12px 0 0;
  color: #d2e6e6;
  font-weight: 600;
}

.school-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
}

.school-final-actions > a:last-child {
  color: #fff1a8;
  font-size: 0.88rem;
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.school-footer {
  background: #0b303a;
}

.school-mobile-bar a {
  background: var(--school);
}

@media (max-width: 719px) and (max-height: 660px) {
  .hero-inner {
    padding-top: 20px;
  }

  .hero-kicker {
    margin-bottom: 8px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-lede {
    margin-top: 10px;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 12px;
  }

  .hero-assurance {
    margin-top: 8px;
    font-size: 0.72rem;
  }

  .hero-art {
    height: 210px;
    margin-top: 14px;
  }

  .hero-shot-main {
    width: 170px;
  }
}

@media (min-width: 720px) {
  body {
    padding-bottom: 0;
  }

  h1 {
    font-size: 3.65rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .section {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .header-inner,
  .site-header {
    min-height: 68px;
  }

  .brand {
    font-size: 1.08rem;
  }

  .hero,
  .hero-inner {
    min-height: 720px;
  }

  .hero-inner {
    padding-top: 82px;
  }

  .hero-copy {
    max-width: 53%;
  }

  .hero h1 {
    max-width: 8.5em;
  }

  .hero-lede {
    font-size: 1.12rem;
  }

  .device-note {
    display: block;
  }

  .social-proof-inner {
    grid-template-columns: 0.72fr 1fr 0.8fr;
    gap: 32px;
    padding: 30px 0;
  }

  .release-note-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 24px 0;
  }

  .release-note-heading {
    grid-column: 1 / -1;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
  }

  .learning-guide-bridge {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 36px;
    margin-top: 28px;
    padding: 28px 32px;
  }

  .hero-art {
    position: absolute;
    top: 0;
    right: -10px;
    bottom: auto;
    left: auto;
    width: 47%;
    height: 620px;
    margin-top: 0;
  }

  .hero-shot-main {
    top: 56px;
    left: 52%;
    width: 272px;
  }

  .hero-note {
    position: absolute;
    z-index: 4;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.84);
    border-radius: 8px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink);
    box-shadow: 0 13px 30px rgba(41, 36, 79, 0.13);
  }

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

  .hero-note strong {
    font-size: 0.88rem;
    font-weight: 950;
  }

  .hero-note span {
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 700;
  }

  .note-start {
    top: 72px;
    left: 0;
  }

  .note-school {
    top: 156px;
    right: 0;
  }

  .hero-qr {
    position: absolute;
    right: 6px;
    bottom: 24px;
    z-index: 4;
    display: grid;
    justify-items: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.84);
    border-radius: 8px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 850;
    box-shadow: 0 14px 30px rgba(41, 36, 79, 0.14);
  }

  .hero-qr img {
    width: 82px;
    height: 82px;
  }

  .proof-inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 23px 0;
  }

  .proof-inner > div {
    padding: 8px 20px;
  }

  .proof-inner > div:not(:last-child) {
    border-right: 1px solid var(--line);
  }

  .proof-inner strong {
    font-size: 1rem;
  }

  .proof-inner span {
    font-size: 0.8rem;
  }

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

  .outcome-grid article {
    padding: 28px;
  }

  .flow-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }

  .flow-steps li {
    padding-left: 18px;
  }

  .flow-steps strong {
    font-size: 1.5rem;
  }

  .flow-steps small {
    font-size: 0.84rem;
  }

  .flow-gallery,
  .evidence-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-columns: unset;
    grid-auto-flow: row;
    gap: 20px;
    overflow: visible;
  }

  .flow-gallery {
    width: min(900px, 100%);
    margin-right: auto;
    margin-left: auto;
  }

  .flow-gallery figure img {
    height: 520px;
  }

  .evidence-grid article img {
    height: 500px;
  }

  .capability-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 34px;
  }

  .capability-list li {
    padding: 17px 15px;
  }

  .capability-list strong {
    font-size: 0.98rem;
  }

  .capability-list span {
    font-size: 0.82rem;
  }

  .plan-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 20px;
  }

  .plan-card {
    padding: 32px;
  }

  .trust-inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 54px;
  }

  .founder-note {
    grid-column: 1 / -1;
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .founder-note img {
    width: 72px;
    height: 72px;
    border-radius: 18px;
  }

  .founder-note blockquote {
    font-size: 1.14rem;
  }

  .institution-inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 70px;
    align-items: center;
  }

  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 12px;
  }

  .final-inner {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 34px;
    align-items: center;
  }

  .final-icon {
    width: 104px;
    height: 104px;
    border-radius: 24px;
  }

  .final-qr {
    display: grid;
    justify-items: center;
    gap: 7px;
    border-radius: 8px;
    padding: 12px;
    background: white;
    color: var(--ink);
    font-size: 0.76rem;
    font-weight: 900;
  }

  .final-qr img {
    width: 136px;
    height: 136px;
  }

  .site-footer {
    grid-template-columns: minmax(220px, 1fr) auto;
    align-items: center;
    padding-right: max(28px, calc((100% - 1120px) / 2));
    padding-left: max(28px, calc((100% - 1120px) / 2));
  }

  .footer-links {
    justify-content: flex-end;
  }

  .mobile-download-bar {
    display: none;
  }
}

@media (min-width: 960px) {
  h1 {
    font-size: 4rem;
  }

  nav {
    display: flex;
    align-items: center;
    gap: 26px;
    color: #555d72;
    font-size: 0.9rem;
    font-weight: 850;
  }

  nav a:hover {
    color: var(--brand-deep);
  }

  .hero-copy {
    max-width: 58%;
  }

  .hero,
  .hero-inner {
    min-height: 660px;
  }

  .hero-art {
    width: 44%;
  }

  .hero-shot-main {
    left: 50%;
    width: 292px;
  }

  .note-start {
    left: 4px;
  }

  .capability-list {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .hero-shot-listening,
  .hero-shot-writing {
    display: block;
    z-index: 1;
    width: 190px;
    opacity: 0.82;
  }

  .hero-shot-listening {
    top: 205px;
    left: -24px;
  }

  .hero-shot-writing {
    top: 220px;
    right: -40px;
  }
}

@media (max-width: 370px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.78rem;
  }

  .hero-art {
    height: 240px;
    margin-top: 16px;
  }

  .hero-shot-main {
    width: 180px;
  }

  .brand span {
    display: none;
  }

  .edition-switch a {
    padding: 0 7px;
    font-size: 0.7rem;
  }

  .header-cta {
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .store-badges {
    gap: 8px;
  }

  .store-badge-apple {
    height: 40px;
  }

  .store-badge-google {
    height: 54px;
  }

  .mobile-download-bar {
    grid-template-columns: 36px minmax(0, 1fr) auto;
    gap: 7px;
    padding-right: 8px;
    padding-left: 8px;
  }

  .mobile-download-bar > div:nth-child(2) span {
    display: none;
  }

  .proof-inner > div {
    padding-right: 8px;
    padding-left: 8px;
  }

  .capability-list {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 371px) and (max-width: 520px) {
  .header-cta-prefix {
    display: none;
  }
}

@media (min-width: 720px) {
  .school-hero-inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 32px;
    min-height: 620px;
    padding-top: 76px;
  }

  .school-hero-copy {
    padding-top: 26px;
  }

  .school-hero h1 {
    font-size: 3.45rem;
  }

  .school-hero-lede {
    font-size: 1.12rem;
  }

  .school-hero-art {
    height: 620px;
  }

  .school-hero-shot-main {
    top: 26px;
    left: 0;
    width: min(390px, 78%);
  }

  .school-hero-shot-secondary {
    right: -4%;
    bottom: 34px;
    width: min(260px, 52%);
  }

  .school-hero-note {
    display: block;
  }

  .note-class {
    top: 62px;
    right: 0;
  }

  .note-teacher {
    right: 26%;
    bottom: 66px;
  }

  .school-proof-inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 22px 0;
  }

  .school-proof-inner > div {
    padding: 8px 24px;
  }

  .school-proof-inner > div:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.18);
  }

  .school-proof-inner strong {
    font-size: 1.25rem;
  }

  .school-positioning {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 72px;
    align-items: start;
  }

  .school-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-columns: unset;
    grid-auto-flow: row;
    gap: 20px;
    overflow: visible;
  }

  .school-feature-grid figcaption {
    padding: 22px;
  }

  .school-plan-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
    gap: 64px;
    align-items: center;
  }

  .school-plan-card {
    padding: 34px;
  }

  .school-plan-price strong {
    font-size: 2.8rem;
  }

  .school-security-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 70px;
    align-items: start;
  }

  .school-steps {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
  }

  .school-steps li {
    display: flex;
    min-height: 184px;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
  }

  .school-steps li > span {
    flex: 0 0 36px;
    margin-bottom: 10px;
  }

  .school-steps small {
    margin-top: 5px;
  }

  .school-contact-panel {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 36px;
    padding: 26px 30px;
  }

  .school-final-inner {
    grid-template-columns: 84px minmax(0, 1fr) auto;
    gap: 30px;
  }

  .school-final-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (min-width: 960px) {
  .school-hero h1 {
    font-size: 3.9rem;
  }

  .school-hero-inner {
    gap: 54px;
  }

  .school-hero-shot-main {
    width: min(430px, 80%);
  }

  .school-hero-shot-secondary {
    width: min(280px, 52%);
  }
}

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

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