:root {
  --navy: #000d4a;
  --navy-2: #07175c;
  --blue: #0047f9;
  --blue-dark: #0038c8;
  --red: #c10806;
  --ice: #eaf3ff;
  --ice-blue: #8dbdfd;
  --white: #ffffff;
  --ink: #07112e;
  --muted: #59637d;
  --line: #d8e2f1;
  --shadow: 0 24px 70px rgba(0, 13, 74, 0.12);
  --radius: 8px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

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

.container {
  width: min(calc(100% - 3rem), var(--container));
  margin-inline: auto;
}

.utility-bar {
  position: relative;
  z-index: 50;
  color: #d8e5ff;
  background: var(--navy);
  font-size: 0.78rem;
  letter-spacing: 0.045em;
}

.utility-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.utility-right {
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(0, 13, 74, 0.1);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 12px 35px rgba(0, 13, 74, 0.09);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: max-content;
  text-decoration: none;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  color: var(--navy);
  line-height: 1;
}

.brand-copy strong {
  font-size: 0.96rem;
  font-weight: 950;
  letter-spacing: 0.07em;
}

.brand-copy small {
  margin-top: 0.28rem;
  color: var(--blue);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.65rem;
}

.primary-nav > a,
.nav-group > summary {
  color: var(--navy);
  font-size: 0.87rem;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.primary-nav > a:not(.button):hover,
.nav-group > summary:hover {
  color: var(--blue);
}

.nav-group {
  position: relative;
}

.nav-group > summary {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  list-style: none;
}

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

.nav-group > summary::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.18s ease;
}

.nav-group[open] > summary::after {
  transform: rotate(225deg) translate(-2px, -1px);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 1.2rem);
  left: 50%;
  width: 350px;
  padding: 0.6rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1.35rem;
  height: 1.35rem;
}

.nav-dropdown-small {
  width: 240px;
}

.nav-dropdown a {
  display: grid;
  grid-template-columns: 2.1rem 1fr;
  align-items: center;
  padding: 0.75rem 0.8rem;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
}

.nav-dropdown a:hover {
  color: var(--blue);
  background: var(--ice);
}

.nav-dropdown a span {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem;
  color: var(--navy);
  background: none;
  border: 0;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.menu-bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-bars i {
  display: block;
  width: 23px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] .menu-bars i:first-child {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-bars i:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-bars i:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.25rem;
  border: 2px solid transparent;
  border-radius: 3px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-header {
  min-height: 44px;
  padding-inline: 1rem;
  color: var(--white) !important;
  background: var(--blue);
}

.button-header:hover,
.button-primary:hover {
  background: var(--blue-dark);
}

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(0, 71, 249, 0.2);
}

.button-outline {
  color: var(--navy);
  background: transparent;
  border-color: var(--navy);
}

.button-outline:hover {
  color: var(--white);
  background: var(--navy);
}

.button-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
}

.button-outline-light:hover {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.button-light {
  color: var(--navy);
  background: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: none;
}

.text-link span {
  color: var(--red);
  font-size: 1.2rem;
  transition: transform 0.18s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.text-link-light {
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 5.5rem 0 4.5rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(141, 189, 253, 0.28), transparent 24rem),
    linear-gradient(125deg, #ffffff 0%, #f7fbff 58%, #eaf3ff 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -10rem;
  bottom: -16rem;
  width: 44rem;
  height: 44rem;
  border: 1px solid rgba(0, 71, 249, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 6rem rgba(0, 71, 249, 0.035), 0 0 0 12rem rgba(0, 71, 249, 0.025);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(0, 13, 74, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 13, 74, 0.16) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, black, transparent 66%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.eyebrow,
.section-index,
.support-label,
.evaluation-label,
.parent-card-label,
.featured-flag {
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.4rem;
}

.eyebrow span {
  width: 36px;
  height: 3px;
  background: var(--red);
}

.hero h1 {
  margin: 0;
  color: var(--navy);
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: clamp(3rem, 5.8vw, 5.6rem);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 0.94;
  text-transform: uppercase;
}

.hero h1 > span {
  display: block;
}

.hero h1 .accent-line {
  position: relative;
  display: inline-block;
  margin-top: 0.22em;
  color: var(--blue);
}

.hero h1 .accent-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.16em;
  width: 42%;
  height: 6px;
  background: var(--red);
  transform: skewX(-28deg);
}

.hero-lead {
  max-width: 660px;
  margin: 2.2rem 0 1.8rem;
  color: #37415d;
  font-size: clamp(1.04rem, 1.5vw, 1.22rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.35rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 600px;
  margin: 3rem 0 0;
  border-top: 1px solid var(--line);
}

.hero-stats div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 1rem 0 0;
}

.hero-stats div + div {
  padding-left: 1rem;
  border-left: 1px solid var(--line);
}

.hero-stats dt {
  color: var(--blue);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.hero-stats dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 750;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 595px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  color: var(--white);
  background:
    linear-gradient(150deg, rgba(0, 71, 249, 0.88), rgba(0, 13, 74, 0.98) 64%),
    var(--navy);
  box-shadow: var(--shadow);
  isolation: isolate;
  overflow: hidden;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.hero-visual::before {
  width: 460px;
  height: 460px;
  top: -55px;
  left: calc(50% - 230px);
}

.hero-visual::after {
  width: 170px;
  height: 340px;
  top: 5px;
  left: calc(50% - 85px);
}

.visual-corner {
  position: absolute;
  width: 72px;
  height: 72px;
  border-color: rgba(255, 255, 255, 0.65);
}

.visual-corner-one {
  left: 1.4rem;
  top: 1.4rem;
  border-left: 2px solid;
  border-top: 2px solid;
}

.visual-corner-two {
  right: 1.4rem;
  bottom: 1.4rem;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

.crest-stage {
  position: relative;
  width: min(100%, 440px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-self: center;
}

.crest-halo {
  position: absolute;
  inset: 7%;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(0, 13, 74, 0.3), 0 0 0 12px rgba(255, 255, 255, 0.08);
}

.crest-stage img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  mix-blend-mode: normal;
}

.hero-visual-note {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  margin-top: 0.5rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.note-index {
  padding-top: 0.25rem;
  color: var(--ice-blue);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.hero-visual-note p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
}

.discipline-strip {
  color: var(--white);
  background: var(--blue);
}

.discipline-list {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  overflow: hidden;
  white-space: nowrap;
}

.discipline-list span {
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.discipline-list i {
  flex: 0 0 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ice-blue);
}

.section {
  padding: clamp(5.5rem, 8vw, 8rem) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
  gap: clamp(2rem, 8vw, 7rem);
  align-items: end;
  margin-bottom: 3.5rem;
}

.section-heading h2,
.about-copy h2,
.parents-heading h2,
.consultation-copy h2 {
  max-width: 780px;
  margin: 0.7rem 0 0;
  color: var(--navy);
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 4.6rem);
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-transform: uppercase;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.system-section {
  position: relative;
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
}

.system-section::before {
  content: "AGS";
  position: absolute;
  right: -1rem;
  top: 3rem;
  color: rgba(255, 255, 255, 0.035);
  font-family: Impact, sans-serif;
  font-size: clamp(12rem, 24vw, 28rem);
  line-height: 1;
}

.system-section .container {
  position: relative;
}

.section-heading-light h2,
.section-heading-light > p {
  color: var(--white);
}

.section-heading-light .section-index,
.section-index-light {
  color: var(--ice-blue);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.process-card {
  min-height: 190px;
  padding: 1.6rem;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 0.2s ease;
}

.process-card:hover {
  background: rgba(255, 255, 255, 0.055);
}

.process-card > span {
  color: var(--ice-blue);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.process-card h3 {
  margin: 1.7rem 0 0.35rem;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.process-card p {
  margin: 0;
  color: #c3cbe0;
  font-size: 0.91rem;
}

.process-card-accent {
  background: var(--blue);
}

.process-card-accent > span,
.process-card-accent p {
  color: var(--white);
}

.system-principle {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  margin-top: 3.5rem;
  padding: 2.2rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.principle-number {
  color: var(--red);
  font-family: Impact, sans-serif;
  font-size: 4rem;
  line-height: 1;
}

.system-principle h3 {
  margin: 0 0 0.3rem;
  font-size: 1.35rem;
}

.system-principle p {
  max-width: 700px;
  margin: 0;
  color: #c3cbe0;
  font-size: 0.94rem;
}

.position-section {
  background: var(--white);
}

.position-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 1.5rem;
}

.position-card {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  overflow: hidden;
}

.position-card-goalie {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 71, 249, 0.9), rgba(0, 13, 74, 0.98) 72%),
    var(--navy);
}

.position-card-goalie::after {
  content: "G";
  position: absolute;
  right: -1.5rem;
  bottom: -5.5rem;
  color: rgba(255, 255, 255, 0.06);
  font-family: Impact, sans-serif;
  font-size: 26rem;
  line-height: 1;
}

.position-card-player {
  background: var(--ice);
  border: 1px solid #d2e4ff;
}

.card-topline {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.position-card-goalie .card-topline {
  border-color: rgba(255, 255, 255, 0.28);
}

.position-content {
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.position-kicker {
  margin: 0 0 0.65rem;
  color: var(--ice-blue);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.position-card-player .position-kicker {
  color: var(--blue);
}

.position-content h3 {
  max-width: 560px;
  margin: 0 0 1rem;
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-transform: uppercase;
}

.position-content > p:not(.position-kicker) {
  max-width: 650px;
  margin: 0 0 1.5rem;
}

.position-card-goalie .position-content > p {
  color: #d9e3f8;
}

.tag-list,
.check-list,
.metric-list,
.parent-list,
.pricing-grid ul,
.consultation-includes ul {
  list-style: none;
  padding: 0;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.8rem;
}

.tag-list li {
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
  font-weight: 750;
}

.check-list {
  display: grid;
  gap: 0.6rem;
  margin: 1.5rem 0 2rem;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  color: #34405c;
  font-size: 0.9rem;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 8px;
  height: 8px;
  background: var(--red);
  transform: rotate(45deg);
}

.support-section {
  background:
    linear-gradient(rgba(0, 13, 74, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 13, 74, 0.028) 1px, transparent 1px),
    #f9fbff;
  background-size: 64px 64px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.support-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 15px 50px rgba(0, 13, 74, 0.07);
}

.support-card:nth-child(2) {
  transform: translateY(1.5rem);
}

.support-icon {
  position: relative;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 3.5rem;
  color: var(--white);
  background: var(--blue);
}

.play-mark {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--white);
}

.support-icon-strength span,
.support-icon-strength i {
  position: absolute;
  display: block;
  background: var(--white);
}

.support-icon-strength span {
  width: 34px;
  height: 4px;
}

.support-icon-strength i {
  width: 6px;
  height: 28px;
  box-shadow: 22px 0 0 var(--white);
  transform: translateX(-11px);
}

.support-icon-habits span {
  width: 22px;
  height: 30px;
  border: 3px solid var(--white);
  border-radius: 50% 50% 52% 48% / 62% 62% 38% 38%;
  transform: rotate(45deg);
}

.support-icon-habits i {
  position: absolute;
  width: 3px;
  height: 22px;
  background: var(--white);
  transform: rotate(45deg);
}

.support-card h3 {
  margin: 0.85rem 0 1rem;
  color: var(--navy);
  font-size: 1.65rem;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

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

.mini-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.mini-process span {
  position: relative;
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
}

.mini-process span::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  margin: 0 auto 0.5rem;
  border-radius: 50%;
  background: var(--blue);
}

.mini-process span + span::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 50%;
  width: 100%;
  height: 1px;
  background: var(--line);
  z-index: -1;
}

.metric-list {
  display: grid;
  gap: 0.8rem;
  margin: auto 0 0;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.metric-list li {
  color: var(--muted);
  font-size: 0.78rem;
}

.metric-list span {
  display: inline-block;
  width: 74px;
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.support-card .support-note {
  margin-top: auto;
  padding: 1.3rem;
  color: var(--navy);
  background: var(--ice);
  border-left: 4px solid var(--red);
  font-weight: 850;
}

.independence-band {
  color: var(--white);
  background: var(--blue);
}

.independence-layout {
  min-height: 350px;
  display: grid;
  grid-template-columns: auto 1.3fr 0.7fr;
  align-items: center;
  gap: 2.5rem;
}

.quote-mark {
  align-self: start;
  padding-top: 2rem;
  color: rgba(255, 255, 255, 0.34);
  font-family: Georgia, serif;
  font-size: 9rem;
  line-height: 1;
}

.independence-layout blockquote {
  margin: 0;
}

.independence-layout blockquote p {
  margin: 0;
  font-size: clamp(1.75rem, 3.5vw, 3.3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.independence-layout blockquote footer {
  margin-top: 1.4rem;
  color: #dbe7ff;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.independence-note {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem 0 1.5rem 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.34);
}

.independence-note strong {
  font-size: 1rem;
}

.independence-note span {
  color: #dbe7ff;
  font-size: 0.8rem;
}

.memberships-section {
  background: var(--white);
}

.evaluation-row {
  display: grid;
  grid-template-columns: 1fr auto auto 1fr auto;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 3rem;
  padding: 1.6rem;
  background: var(--ice);
  border-left: 5px solid var(--blue);
}

.evaluation-row h3 {
  margin: 0.25rem 0;
  color: var(--navy);
  font-size: 1.05rem;
}

.evaluation-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.evaluation-row > strong {
  color: var(--navy);
  font-size: 1.5rem;
}

.evaluation-arrow {
  color: var(--blue);
  font-size: 2rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 1.25rem;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 50px rgba(0, 13, 74, 0.07);
}

.price-card-featured {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-0.75rem);
}

.featured-flag {
  position: absolute;
  left: -1px;
  right: -1px;
  top: -32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--red);
  font-size: 0.65rem;
}

.price-card-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.11em;
}

.price-card-featured .price-card-head {
  color: var(--ice-blue);
}

.price-card-head small {
  color: var(--muted);
  font-size: 0.57rem;
  letter-spacing: 0.08em;
}

.price-card-featured .price-card-head small {
  color: #b4bfd9;
}

.price {
  margin: 2rem 0 0.7rem;
  color: var(--navy);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 3.6rem;
  letter-spacing: -0.035em;
  line-height: 1;
}

.price-card-featured .price {
  color: var(--white);
}

.price sup {
  margin-right: 0.1rem;
  font-family: inherit;
  font-size: 1.25rem;
  vertical-align: top;
}

.price small {
  color: var(--muted);
  font-family: Inter, sans-serif;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0;
}

.price-card-featured .price small {
  color: #b4bfd9;
}

.price-card > p {
  min-height: 58px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.price-card-featured > p {
  color: #c6cee0;
}

.price-card ul {
  display: grid;
  gap: 0.72rem;
  margin: 1.8rem 0 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.price-card-featured ul {
  border-color: rgba(255, 255, 255, 0.2);
}

.price-card li {
  position: relative;
  padding-left: 1.4rem;
  color: #36415d;
  font-size: 0.82rem;
}

.price-card-featured li {
  color: #e0e5ef;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.price-card-featured li::before {
  background: var(--ice-blue);
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.pricing-note {
  max-width: 980px;
  margin: 2.2rem auto 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.about-section {
  position: relative;
  background: var(--ice);
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  left: -250px;
  top: -250px;
  width: 500px;
  height: 500px;
  border: 85px solid rgba(0, 71, 249, 0.06);
  border-radius: 50%;
}

.about-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.about-copy .large-copy {
  margin: 2rem 0 1.2rem;
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 700;
}

.about-copy > p:not(.large-copy) {
  color: var(--muted);
}

.about-copy .text-link {
  margin-top: 1rem;
}

.values-stack {
  display: grid;
  gap: 1px;
  background: #c9dcfa;
  border: 1px solid #c9dcfa;
  box-shadow: var(--shadow);
}

.values-stack article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1.25rem;
  padding: 1.7rem;
  background: var(--white);
}

.values-stack article:nth-child(2) {
  color: var(--white);
  background: var(--blue);
}

.values-stack article > span {
  color: var(--red);
  font-family: Impact, sans-serif;
  font-size: 1.6rem;
}

.values-stack article:nth-child(2) > span {
  color: var(--white);
}

.values-stack h3 {
  margin: 0 0 0.35rem;
  color: var(--navy);
  font-size: 1.1rem;
}

.values-stack article:nth-child(2) h3 {
  color: var(--white);
}

.values-stack p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.values-stack article:nth-child(2) p {
  color: #dce8ff;
}

.parents-section {
  background: var(--white);
}

.parents-layout {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 2rem clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.parents-heading {
  position: sticky;
  top: 130px;
}

.parents-heading > p {
  color: var(--muted);
  font-size: 1.04rem;
}

.parent-card {
  padding: 2.25rem;
  background: #f8faff;
  border: 1px solid var(--line);
}

.parent-list {
  display: grid;
  margin: 1.2rem 0 0;
}

.parent-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  color: #34405c;
  font-weight: 700;
}

.parent-list li:last-child {
  border-bottom: 0;
}

.parent-list span {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.parent-promise {
  grid-column: 2;
  padding: 2.25rem;
  color: var(--white);
  background: var(--navy);
  border-top: 5px solid var(--red);
}

.parent-promise > span {
  color: var(--ice-blue);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.parent-promise p {
  margin: 1rem 0 0.7rem;
  color: #c8d0e2;
}

.parent-promise strong {
  font-size: 1.08rem;
}

.path-section {
  background: #f7faff;
  border-top: 1px solid var(--line);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0;
  padding: 1px;
  list-style: none;
  background: var(--line);
}

.journey-grid li {
  min-height: 210px;
  padding: 1.7rem;
  background: var(--white);
}

.journey-grid li:nth-child(6) {
  color: var(--white);
  background: var(--blue);
}

.journey-grid li > span {
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.journey-grid li:nth-child(6) > span {
  color: var(--white);
}

.journey-grid h3 {
  margin: 2rem 0 0.45rem;
  color: var(--navy);
  font-size: 1.15rem;
}

.journey-grid li:nth-child(6) h3 {
  color: var(--white);
}

.journey-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.journey-grid li:nth-child(6) p {
  color: #dbe6ff;
}

.consultation-section {
  position: relative;
  padding: clamp(5.5rem, 8vw, 8rem) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 0 100%, rgba(0, 71, 249, 0.55), transparent 38rem),
    var(--navy);
  overflow: hidden;
}

.consultation-section::after {
  content: "";
  position: absolute;
  right: -200px;
  top: -200px;
  width: 500px;
  height: 500px;
  border: 80px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
}

.consultation-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.consultation-copy h2 {
  color: var(--white);
}

.consultation-copy > p {
  color: #c8d0e2;
}

.consultation-includes {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 4px solid var(--ice-blue);
}

.consultation-includes h3 {
  margin: 0 0 1rem;
  font-size: 1rem;
}

.consultation-includes ul {
  display: grid;
  gap: 0.75rem;
  margin: 0;
}

.consultation-includes li {
  position: relative;
  padding-left: 1.3rem;
  color: #dce3ef;
  font-size: 0.87rem;
}

.consultation-includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.54rem;
  width: 7px;
  height: 7px;
  background: var(--ice-blue);
  transform: rotate(45deg);
}

.form-safety {
  margin-top: 1.4rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
}

.form-card {
  padding: clamp(1.5rem, 4vw, 2.7rem);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.form-card-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid var(--line);
}

.form-card-head span:first-child {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.form-card-head h3 {
  margin: 0.35rem 0 0;
  color: var(--navy);
  font-size: 1.45rem;
  line-height: 1.2;
}

.preview-badge {
  flex: 0 0 auto;
  padding: 0.35rem 0.55rem;
  color: var(--navy);
  background: var(--ice);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.preview-note {
  margin: 1rem 0 1.4rem;
  color: var(--muted);
  font-size: 0.78rem;
}

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

.form-card label {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 850;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 0.85rem;
  color: var(--ink);
  background: #fbfdff;
  border: 1px solid #cbd7e8;
  border-radius: 2px;
  font-size: 0.92rem;
}

.form-card textarea {
  resize: vertical;
}

.conditional-fields,
.support-options {
  min-width: 0;
  margin: 1.25rem 0;
  padding: 1.2rem;
  border: 1px solid var(--line);
}

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

.conditional-fields > legend,
.support-options > legend {
  padding: 0 0.5rem;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.support-options {
  margin-bottom: 1rem;
  padding-bottom: 0.3rem;
}

.option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1rem;
}

.option-label {
  grid-template-columns: auto 1fr !important;
  align-items: start;
  color: var(--muted) !important;
  font-size: 0.75rem !important;
  font-weight: 650 !important;
}

.option-label input {
  width: 18px;
  min-height: 18px;
  margin-top: 0.1rem;
  accent-color: var(--blue);
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  border-color: var(--blue);
  outline: 2px solid rgba(0, 71, 249, 0.14);
}

.consent-label {
  grid-template-columns: auto 1fr !important;
  align-items: start;
  color: var(--muted) !important;
  font-size: 0.75rem !important;
  font-weight: 550 !important;
}

.consent-label input {
  width: 18px;
  min-height: 18px;
  margin-top: 0.15rem;
  accent-color: var(--blue);
}

.button-submit {
  width: 100%;
}

.form-error {
  margin: 0.8rem 0 0;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 750;
}

.form-success {
  padding: 3rem 1rem;
  text-align: center;
}

.success-mark {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 0 auto 1.2rem;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-size: 1.7rem;
  font-weight: 900;
}

.form-success h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.5rem;
}

.form-success p {
  max-width: 480px;
  margin: 0.8rem auto 1.2rem;
  color: var(--muted);
}

.text-button {
  display: inline-block;
  padding: 0;
  color: var(--blue);
  background: none;
  border: 0;
  border-bottom: 1px solid currentColor;
  font-weight: 850;
  cursor: pointer;
}

.success-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.site-footer {
  color: #d2d9e9;
  background: #000833;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 0.8fr 1.25fr;
  gap: 3rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.footer-brand {
  display: flex;
  align-items: start;
  gap: 1rem;
}

.footer-brand img {
  width: 86px;
  height: 86px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.footer-brand strong {
  color: var(--white);
  font-size: 0.9rem;
  line-height: 1.3;
  letter-spacing: 0.06em;
}

.footer-brand p,
.footer-column p {
  color: #929fbe;
  font-size: 0.75rem;
  line-height: 1.6;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-column > span {
  margin-bottom: 0.35rem;
  color: var(--ice-blue);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.footer-column a {
  color: #d2d9e9;
  font-size: 0.78rem;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #808dab;
  font-size: 0.68rem;
}

.mobile-cta {
  display: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .primary-nav {
    gap: 1rem;
  }

  .brand-copy {
    display: none;
  }

  .discipline-list {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .discipline-list::-webkit-scrollbar {
    display: none;
  }

  .support-card {
    padding: 1.6rem;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 920px) {
  html {
    scroll-padding-top: 82px;
  }

  .utility-bar {
    display: none;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .brand-copy {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: fixed;
    inset: 72px 0 auto;
    max-height: calc(100vh - 72px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.5rem 2rem;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 24px 60px rgba(0, 13, 74, 0.16);
    overflow-y: auto;
  }

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

  .primary-nav > a:not(.button),
  .nav-group > summary {
    padding: 0.95rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .nav-group > summary {
    justify-content: space-between;
  }

  .nav-dropdown,
  .nav-dropdown-small {
    position: static;
    width: auto;
    padding: 0.4rem 0 0.7rem;
    border: 0;
    box-shadow: none;
    transform: none;
  }

  .nav-dropdown a {
    padding-left: 0.4rem;
  }

  .button-header {
    margin-top: 1rem;
  }

  .hero {
    min-height: auto;
    padding: 4.5rem 0;
  }

  .hero-layout,
  .section-heading,
  .about-layout,
  .consultation-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 560px;
  }

  .section-heading {
    gap: 1.5rem;
  }

  .section-heading > p {
    max-width: 720px;
  }

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

  .position-card {
    min-height: 500px;
  }

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

  .support-card:nth-child(2) {
    transform: none;
  }

  .support-card:last-child {
    grid-column: 1 / -1;
    min-height: 420px;
  }

  .independence-layout {
    grid-template-columns: auto 1fr;
    padding: 3rem 0;
  }

  .independence-note {
    grid-column: 2;
  }

  .evaluation-row {
    grid-template-columns: 1fr auto;
  }

  .evaluation-arrow {
    grid-column: 1 / -1;
    justify-self: center;
    transform: rotate(90deg);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .price-card-featured {
    transform: none;
  }

  .price-card > p {
    min-height: 0;
  }

  .parents-layout {
    grid-template-columns: 1fr;
  }

  .parents-heading {
    position: static;
  }

  .parent-promise {
    grid-column: 1;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 650px) {
  .container {
    width: min(calc(100% - 2rem), var(--container));
  }

  body {
    padding-bottom: 58px;
  }

  .brand-copy strong {
    font-size: 0.79rem;
  }

  .brand-copy small {
    font-size: 0.56rem;
  }

  .menu-label {
    display: none;
  }

  .hero {
    padding: 3.5rem 0;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats div,
  .hero-stats div + div {
    padding: 0.9rem 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-visual {
    min-height: 450px;
    padding: 1.6rem;
  }

  .hero-visual-note {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 5rem 0;
  }

  .section-heading h2,
  .about-copy h2,
  .parents-heading h2,
  .consultation-copy h2 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

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

  .process-card {
    min-height: 150px;
  }

  .process-card h3 {
    margin-top: 1rem;
  }

  .system-principle {
    grid-template-columns: 1fr;
  }

  .principle-number {
    font-size: 3rem;
  }

  .position-card {
    min-height: 560px;
    padding: 1.4rem;
  }

  .position-content h3 {
    font-size: 2.5rem;
  }

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

  .support-card,
  .support-card:last-child {
    grid-column: auto;
    min-height: 480px;
  }

  .independence-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .quote-mark {
    display: none;
  }

  .independence-note {
    grid-column: 1;
    padding: 1.2rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.34);
    border-left: 0;
  }

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

  .evaluation-row > strong {
    justify-self: start;
  }

  .evaluation-arrow {
    grid-column: 1;
  }

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

  .journey-grid li {
    min-height: 175px;
  }

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

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

  .form-card-head {
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
  }

  .mobile-cta {
    position: fixed;
    z-index: 60;
    left: 0;
    right: 0;
    bottom: 0;
    height: 58px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--red);
    border-top: 2px solid var(--white);
    font-size: 0.8rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
