:root {
  --atl-ink: #07345a;
  --atl-ink-deep: #032747;
  --atl-blue: #00559f;
  --atl-sky: #0094d9;
  --atl-sky-light: #dff5ff;
  --atl-ice: #f4fbfe;
  --atl-white: #fff;
  --atl-coral: #ff5d78;
  --atl-lime: #d9ff72;
  --atl-line: rgba(3, 75, 126, .16);
  --atl-shadow: 0 24px 70px rgba(0, 72, 120, .14);
  --atl-radius: 36px;
  --atl-shell: min(1280px, calc(100vw - 64px));
}

* {
  box-sizing: border-box;
}

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

body.atl-page {
  margin: 0;
  min-width: 320px;
  color: var(--atl-ink-deep);
  background: var(--atl-ice);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

.atl-page :focus-visible {
  outline: 3px solid var(--atl-coral);
  outline-offset: 4px;
}

.atl-shell {
  width: var(--atl-shell);
  margin-inline: auto;
}

.atl-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 3px;
  pointer-events: none;
}

.atl-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--atl-sky), var(--atl-coral));
  transform: scaleX(0);
  transform-origin: left;
}

.atl-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 34px;
  align-items: center;
  min-height: 76px;
  padding: 12px max(28px, calc((100vw - 1340px) / 2));
  border-bottom: 1px solid rgba(0, 85, 159, .1);
  /* Keep the portal route legible above every unique hero treatment. */
  background: rgba(244, 251, 254, .98);
  box-shadow: 0 1px 0 rgba(0, 85, 159, .08), 0 8px 24px rgba(3, 39, 71, .05);
  backdrop-filter: blur(18px);
}

/* The concept layer assigns every body child the same stack level; keep this
   page's portal controls above its independently styled hero. */
html[data-concept-v2] body.atl-page > .atl-topbar {
  position: sticky !important;
  z-index: 100 !important;
  background: rgba(3, 20, 31, .96) !important;
}

.atl-portal,
.atl-footer-brand {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: var(--atl-ink-deep);
  font-weight: 800;
  letter-spacing: -.055em;
  text-decoration: none;
}

.atl-portal {
  font-size: 20px;
}

.atl-portal svg path {
  fill: none;
  stroke: var(--atl-ink-deep);
  stroke-width: 2.4;
  stroke-linecap: round;
}

.atl-portal svg circle {
  fill: var(--atl-sky);
}

.atl-nav {
  display: flex;
  gap: 28px;
  justify-content: center;
}

.atl-nav a {
  color: rgba(3, 39, 71, .7);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease;
}

.atl-nav a:hover {
  color: var(--atl-sky);
}

.atl-top-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.atl-top-phone {
  display: grid;
  color: var(--atl-ink-deep);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.atl-top-phone span {
  color: rgba(3, 39, 71, .5);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.atl-top-catalog {
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--atl-ink-deep);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}

.atl-top-catalog:hover {
  background: var(--atl-sky);
  transform: translateY(-2px);
}

.atl-hero {
  position: relative;
  overflow: hidden;
  padding: 68px 0 0;
  background:
    radial-gradient(circle at 8% 4%, rgba(0, 148, 217, .13), transparent 25%),
    radial-gradient(circle at 88% 20%, rgba(255, 93, 120, .09), transparent 26%),
    linear-gradient(180deg, #f8fdff 0%, #e9f8fe 100%);
}

.atl-orbit {
  position: absolute;
  border: 1px solid rgba(0, 148, 217, .18);
  border-radius: 50%;
  pointer-events: none;
}

.atl-orbit--one {
  width: 560px;
  height: 560px;
  top: -280px;
  left: -250px;
}

.atl-orbit--two {
  width: 720px;
  height: 720px;
  right: -440px;
  bottom: -410px;
}

.atl-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
  gap: 72px;
  align-items: center;
}

.atl-breadcrumbs {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 30px;
  color: rgba(3, 39, 71, .5);
  font-size: 12px;
  font-weight: 700;
}

.atl-breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.atl-breadcrumbs a:hover {
  color: var(--atl-sky);
}

.atl-logo {
  width: clamp(220px, 24vw, 340px);
  height: auto;
  margin-bottom: 28px;
}

.atl-eyebrow,
.atl-kicker {
  margin: 0 0 16px;
  color: var(--atl-sky);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.atl-eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
}

.atl-eyebrow span {
  width: 30px;
  height: 2px;
  background: var(--atl-coral);
}

.atl-hero h1,
.atl-section h2,
.atl-contact h2 {
  margin: 0;
  font-size: clamp(44px, 5.4vw, 82px);
  font-weight: 800;
  letter-spacing: -.065em;
  line-height: .99;
}

.atl-hero h1 em,
.atl-section h2 em {
  display: inline-block;
  color: var(--atl-blue);
  font-family: "Prata", Georgia, serif;
  font-size: .78em;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -.045em;
}

.atl-lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(3, 39, 71, .78);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.65;
}

.atl-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.atl-button {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: inherit;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, color .22s ease, background .22s ease;
}

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

.atl-button--primary {
  color: #fff;
  background: var(--atl-sky);
  box-shadow: 0 14px 30px rgba(0, 148, 217, .28);
}

.atl-button--primary:hover {
  background: var(--atl-blue);
}

.atl-button--light {
  border-color: rgba(0, 85, 159, .14);
  background: rgba(255, 255, 255, .72);
}

.atl-button--light:hover {
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 72, 120, .1);
}

.atl-button--white {
  color: var(--atl-ink-deep);
  background: #fff;
}

.atl-button--outline-white {
  border-color: rgba(255, 255, 255, .48);
  color: #fff;
}

.atl-button--outline-white:hover {
  color: var(--atl-ink-deep);
  background: #fff;
}

.atl-verified {
  display: flex;
  gap: 9px;
  align-items: center;
  margin: 22px 0 0;
  color: rgba(3, 39, 71, .5);
  font-size: 12px;
}

.atl-verified span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--atl-sky);
  font-size: 11px;
}

.atl-hero-visual {
  position: relative;
  padding: 0 34px 44px 0;
}

.atl-hero-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 50% 50% 42px 42px;
  box-shadow: var(--atl-shadow);
  aspect-ratio: 1 / 1.05;
}

.atl-hero-photo::after {
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(transparent, rgba(0, 36, 68, .56));
  content: "";
}

.atl-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.atl-hero-photo figcaption {
  position: absolute;
  right: 24px;
  bottom: 20px;
  left: 24px;
  z-index: 2;
  color: rgba(255, 255, 255, .9);
  font-size: 11px;
  text-align: right;
}

.atl-float {
  position: absolute;
  z-index: 3;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 15px 20px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 22px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 50px rgba(0, 58, 102, .16);
  backdrop-filter: blur(12px);
}

.atl-float strong {
  color: var(--atl-blue);
  font-size: 36px;
  letter-spacing: -.07em;
  line-height: 1;
}

.atl-float span {
  color: rgba(3, 39, 71, .7);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.atl-float--clubs {
  top: 14%;
  left: -38px;
}

.atl-float--lesson {
  right: 0;
  bottom: 6%;
}

.atl-route {
  position: absolute;
  right: -12px;
  top: 5px;
  width: 150px;
  overflow: visible;
}

.atl-route path {
  fill: none;
  stroke: var(--atl-coral);
  stroke-dasharray: 5 8;
  stroke-linecap: round;
  stroke-width: 3;
}

.atl-hero-facts {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 54px;
  border-radius: 30px 30px 0 0;
  background: #fff;
  box-shadow: 0 -10px 45px rgba(0, 85, 159, .06);
}

.atl-hero-facts article {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 18px;
  align-items: center;
  padding: 26px 34px;
}

.atl-hero-facts article + article {
  border-left: 1px solid var(--atl-line);
}

.atl-hero-facts article > span {
  grid-row: 1 / 3;
  color: rgba(0, 148, 217, .32);
  font-family: "Prata", Georgia, serif;
  font-size: 14px;
}

.atl-hero-facts strong {
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: -.04em;
  line-height: 1.1;
}

.atl-hero-facts p {
  margin: 2px 0 0;
  color: rgba(3, 39, 71, .56);
  font-size: 13px;
}

.atl-section {
  padding: 120px 0;
}

.atl-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 54px;
}

.atl-section-head h2 {
  font-size: clamp(40px, 5vw, 70px);
}

.atl-section-head > p {
  margin: 0 0 5px;
  color: rgba(3, 39, 71, .64);
  font-size: 17px;
  line-height: 1.7;
}

.atl-programs {
  background: #fff;
}

.atl-program-grid {
  display: grid;
  grid-template-columns: .8fr 1.4fr .8fr;
  gap: 18px;
  align-items: stretch;
}

.atl-program {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  padding: 30px;
  border-radius: var(--atl-radius);
}

.atl-program--early {
  background: var(--atl-lime);
}

.atl-program--personal {
  color: #fff;
  background: var(--atl-ink-deep);
}

.atl-program--personal::after {
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  border: 44px solid rgba(0, 148, 217, .35);
  border-radius: 50%;
  content: "";
}

.atl-program-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 72px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  opacity: .65;
}

.atl-program-age {
  margin: 0 0 9px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.atl-program h3 {
  margin: 0;
  font-size: clamp(27px, 2.4vw, 38px);
  letter-spacing: -.05em;
  line-height: 1.08;
}

.atl-program > p:not(.atl-program-age),
.atl-program-body > p:not(.atl-program-age) {
  position: relative;
  z-index: 2;
  margin: 22px 0 0;
  font-size: 15px;
  line-height: 1.7;
  opacity: .78;
}

.atl-program a {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 3;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: inherit;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.atl-program a span {
  transition: transform .2s ease;
}

.atl-program a:hover span {
  transform: translate(3px, -3px);
}

.atl-program--school {
  display: grid;
  grid-template-rows: 46% 54%;
  padding: 0;
  color: #fff;
  background: var(--atl-blue);
}

.atl-program--school figure {
  overflow: hidden;
  margin: 0;
}

.atl-program--school img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.atl-program-body {
  position: relative;
  padding: 25px 30px 76px;
}

.atl-program-body .atl-program-number {
  position: absolute;
  right: 28px;
  top: 26px;
  margin: 0;
}

.atl-program-body .atl-program-age,
.atl-program-body h3,
.atl-program-body p {
  max-width: calc(100% - 52px);
}

.atl-choice {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 60px;
  margin-top: 20px;
  padding: 50px;
  border-radius: var(--atl-radius);
  background: var(--atl-ice);
}

.atl-choice h3 {
  margin: 0;
  font-size: clamp(30px, 3vw, 46px);
  letter-spacing: -.05em;
  line-height: 1.07;
}

.atl-choice ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.atl-choice li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--atl-line);
}

.atl-choice li:first-child {
  border-top: 0;
  padding-top: 0;
}

.atl-choice li > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--atl-sky);
  font-size: 12px;
  font-weight: 800;
}

.atl-choice p {
  margin: 0;
  color: rgba(3, 39, 71, .65);
}

.atl-choice strong {
  display: block;
  margin-bottom: 3px;
  color: var(--atl-ink-deep);
}

.atl-pools {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(0, 148, 217, .45), transparent 30%),
    var(--atl-ink-deep);
}

.atl-pools::before {
  position: absolute;
  inset: auto -8% -250px;
  height: 370px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 50% 50% 0 0;
  content: "";
}

.atl-pools-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .74fr 1.26fr;
  gap: 64px;
  align-items: center;
}

.atl-kicker--light {
  color: #8ddcff;
}

.atl-pools-copy h2 {
  font-size: clamp(42px, 5vw, 72px);
}

.atl-pools-copy h2 em {
  color: #8ddcff;
}

.atl-pools-copy > p:not(.atl-kicker) {
  margin: 28px 0 32px;
  color: rgba(255, 255, 255, .7);
  font-size: 16px;
  line-height: 1.75;
}

.atl-pool-stage {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--atl-radius);
  background: rgba(255, 255, 255, .07);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .24);
}

.atl-pool-photo {
  overflow: hidden;
  margin: 0;
  aspect-ratio: 2.5 / 1;
  background: #0b5185;
}

.atl-pool-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .22s ease, transform .45s ease;
}

.atl-pool-photo img.is-changing {
  opacity: .25;
  transform: scale(1.025);
}

.atl-pool-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.atl-pool-tabs button {
  display: grid;
  gap: 5px;
  min-height: 168px;
  padding: 22px;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .65);
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}

.atl-pool-tabs button:first-child {
  border-left: 0;
}

.atl-pool-tabs button:hover,
.atl-pool-tabs button.is-active {
  color: #fff;
  background: rgba(0, 148, 217, .24);
}

.atl-pool-tabs span {
  color: #73d4ff;
  font-size: 11px;
  font-weight: 800;
}

.atl-pool-tabs strong {
  align-self: end;
  font-size: 17px;
}

.atl-pool-tabs small {
  font-size: 11px;
  line-height: 1.5;
  opacity: .74;
}

.atl-branches {
  background: #edf9fd;
}

.atl-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -20px 0 34px;
}

.atl-filters button {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 12px 18px;
  border: 1px solid var(--atl-line);
  border-radius: 999px;
  color: var(--atl-ink-deep);
  background: rgba(255, 255, 255, .7);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

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

.atl-filters button.is-active {
  border-color: var(--atl-blue);
  color: #fff;
  background: var(--atl-blue);
}

.atl-filters button span {
  display: grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 148, 217, .12);
  font-size: 10px;
}

.atl-filters button.is-active span {
  background: rgba(255, 255, 255, .2);
}

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

.atl-branch {
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 72, 120, .08);
  transition: transform .28s ease, opacity .24s ease, box-shadow .28s ease;
}

.atl-branch:hover {
  box-shadow: 0 24px 58px rgba(0, 72, 120, .15);
  transform: translateY(-7px);
}

.atl-branch.is-hidden {
  display: none;
}

.atl-branch figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 1.42 / 1;
}

.atl-branch figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(3, 39, 71, .66));
  content: "";
}

.atl-branch figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2, .8, .2, 1);
}

.atl-branch:hover figure img {
  transform: scale(1.045);
}

.atl-branch figure span {
  position: absolute;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 38, 70, .4);
  backdrop-filter: blur(8px);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.atl-branch-body {
  display: flex;
  min-height: 272px;
  flex-direction: column;
  padding: 25px 26px 27px;
}

.atl-branch-metro {
  margin: 0 0 7px;
  color: var(--atl-sky);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.atl-branch h3 {
  margin: 0;
  font-size: 25px;
  letter-spacing: -.045em;
  line-height: 1.13;
}

.atl-branch address {
  margin: 11px 0 0;
  color: rgba(3, 39, 71, .62);
  font-size: 14px;
  font-style: normal;
}

.atl-branch-body > p:not(.atl-branch-metro) {
  margin: 14px 0 0;
  color: rgba(3, 39, 71, .62);
  font-size: 13px;
}

.atl-branch-body > a {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: auto;
  padding-top: 22px;
  color: var(--atl-blue);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.atl-branch-body > a span {
  transition: transform .2s ease;
}

.atl-branch-body > a:hover span {
  transform: translate(3px, -3px);
}

.atl-branch--featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.18fr .82fr;
}

.atl-branch--featured figure {
  height: 100%;
  aspect-ratio: auto;
}

.atl-branch--featured .atl-branch-body {
  min-height: 100%;
  padding: 34px;
}

.atl-branch--featured h3 {
  font-size: 34px;
}

.atl-before {
  background: #fff;
}

.atl-before-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 80px;
  align-items: start;
}

.atl-before h2 {
  font-size: clamp(42px, 5vw, 70px);
}

.atl-before-lead {
  max-width: 520px;
  margin: 28px 0 0;
  color: rgba(3, 39, 71, .62);
  font-size: 17px;
  line-height: 1.75;
}

.atl-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.atl-checklist article {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--atl-line);
  border-radius: 28px;
  background: var(--atl-ice);
}

.atl-checklist article > span {
  display: block;
  margin-bottom: 54px;
  color: var(--atl-sky);
  font-family: "Prata", Georgia, serif;
  font-size: 13px;
}

.atl-checklist h3 {
  margin: 0;
  font-size: 19px;
  letter-spacing: -.025em;
  line-height: 1.25;
}

.atl-checklist p {
  margin: 10px 0 0;
  color: rgba(3, 39, 71, .62);
  font-size: 13px;
}

.atl-faq {
  background: linear-gradient(180deg, var(--atl-ice), #fff);
}

.atl-faq-layout {
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(520px, 1.22fr);
  gap: 76px;
  align-items: start;
}

.atl-faq-heading {
  position: sticky;
  top: 116px;
}

.atl-faq-heading h2 {
  font-size: clamp(40px, 4.7vw, 68px);
}

.atl-faq-heading > p:last-child {
  max-width: 540px;
  margin: 25px 0 0;
  color: rgba(3, 39, 71, .62);
  line-height: 1.75;
}

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

.atl-faq-list details {
  border: 1px solid var(--atl-line);
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(0, 72, 120, .07);
}

.atl-faq-list summary {
  position: relative;
  padding: 24px 64px 24px 26px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

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

.atl-faq-list summary::after {
  position: absolute;
  right: 24px;
  top: 20px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--atl-blue);
  background: var(--atl-sky-light);
  content: "+";
  font-size: 21px;
  transition: transform .2s ease;
}

.atl-faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.atl-faq-list details > p {
  margin: 0;
  padding: 0 26px 25px;
  color: rgba(3, 39, 71, .68);
}

.atl-faq-list details > p a {
  color: var(--atl-blue);
  font-weight: 700;
}

.atl-related {
  display: grid;
  grid-template-columns: minmax(210px, .38fr) 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 54px;
  padding: 30px;
  border-radius: 30px;
  color: #fff;
  background: var(--atl-ink-deep);
}

.atl-related > p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.atl-related > p strong {
  color: #fff;
}

.atl-related > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.atl-related a {
  display: grid;
  gap: 4px;
  min-height: 88px;
  padding: 17px 19px;
  border-radius: 18px;
  color: var(--atl-ink-deep);
  background: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
}

.atl-related a span {
  color: var(--atl-sky);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.atl-contact {
  padding-top: 0;
  background: #fff;
}

.atl-contact-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 70px;
  align-items: end;
  padding: clamp(42px, 6vw, 78px);
  border-radius: 46px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 10%, rgba(0, 148, 217, .72), transparent 38%),
    var(--atl-blue);
}

.atl-contact-card::before,
.atl-contact-card::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  content: "";
}

.atl-contact-card::before {
  width: 390px;
  height: 390px;
  right: -190px;
  top: -210px;
}

.atl-contact-card::after {
  width: 180px;
  height: 180px;
  right: 10%;
  bottom: -120px;
}

.atl-contact-card > * {
  position: relative;
  z-index: 2;
}

.atl-contact h2 {
  max-width: 720px;
  font-size: clamp(38px, 5vw, 66px);
}

.atl-contact-card > div:first-child > p:not(.atl-kicker) {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .72);
}

.atl-contact-actions {
  display: grid;
  gap: 10px;
  min-width: 330px;
}

.atl-contact-phone {
  display: grid;
  padding: 18px 23px;
  border-radius: 24px;
  color: var(--atl-ink-deep);
  background: var(--atl-lime);
  text-decoration: none;
  transition: transform .2s ease;
}

.atl-contact-phone:hover {
  transform: translateY(-3px);
}

.atl-contact-phone span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.atl-contact-phone strong {
  font-size: 21px;
  letter-spacing: -.03em;
}

.atl-sources {
  padding: 30px 0 42px;
  background: #fff;
}

.atl-sources-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 44px;
  padding-top: 26px;
  border-top: 1px solid var(--atl-line);
  color: rgba(3, 39, 71, .56);
  font-size: 11px;
}

.atl-sources p {
  max-width: 780px;
  margin: 0;
}

.atl-sources div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.atl-sources a {
  color: var(--atl-blue);
  font-weight: 800;
  text-decoration: none;
}

.atl-footer {
  padding: 62px 0 28px;
  color: #fff;
  background: var(--atl-ink-deep);
}

.atl-footer a {
  color: inherit;
}

.atl-footer-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 50px;
  align-items: start;
}

.atl-footer-brand {
  color: #fff;
  font-size: 25px;
}

.atl-footer-brand span {
  color: #72d4ff;
  font-size: 36px;
  line-height: .7;
}

.atl-footer-main > p {
  max-width: 360px;
  margin: 3px 0 0;
  color: rgba(255, 255, 255, .55);
  font-size: 13px;
}

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

.atl-footer nav a,
.atl-footer-bottom a {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.atl-footer nav a:hover,
.atl-footer-bottom a:hover {
  color: #fff;
}

.atl-footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 46px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .42);
  font-size: 11px;
}

.atl-mobile-cta {
  display: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .72s ease, transform .72s cubic-bezier(.2, .8, .2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  :root {
    --atl-shell: min(100% - 40px, 1080px);
  }

  .atl-nav {
    display: none;
  }

  .atl-topbar {
    grid-template-columns: 1fr auto;
  }

  .atl-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(400px, .9fr);
    gap: 40px;
  }

  .atl-program-grid {
    grid-template-columns: 1fr 1fr;
  }

  .atl-program--school {
    grid-column: span 2;
    grid-template-columns: 1.05fr .95fr;
    grid-template-rows: auto;
  }

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

  .atl-pools-copy {
    max-width: 720px;
  }

  .atl-branch-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .atl-contact-card {
    grid-template-columns: 1fr;
  }

  .atl-contact-actions {
    grid-template-columns: repeat(3, 1fr);
    min-width: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --atl-shell: calc(100% - 28px);
    --atl-radius: 26px;
  }

  html {
    scroll-padding-top: 70px;
  }

  body.atl-page {
    padding-bottom: 72px;
  }

  .atl-topbar {
    min-height: 64px;
    padding: 9px 14px;
  }

  .atl-top-phone {
    display: none;
  }

  .atl-top-catalog {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 14px;
    font-size: 12px;
  }

  .atl-top-catalog span {
    display: none;
  }

  .atl-portal {
    font-size: 18px;
  }

  .atl-hero {
    padding-top: 32px;
  }

  .atl-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .atl-breadcrumbs {
    margin-bottom: 22px;
  }

  .atl-logo {
    width: 230px;
    margin-bottom: 24px;
  }

  .atl-hero h1 {
    font-size: clamp(39px, 12vw, 58px);
  }

  .atl-hero h1 em {
    margin-top: 6px;
    font-size: .72em;
    line-height: 1.1;
  }

  .atl-lead {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.62;
  }

  .atl-actions {
    display: grid;
  }

  .atl-button {
    width: 100%;
  }

  .atl-verified {
    align-items: flex-start;
  }

  .atl-verified span {
    flex: 0 0 auto;
  }

  .atl-hero-visual {
    padding: 0 8px 30px;
  }

  .atl-hero-photo {
    border-radius: 46% 46% 24px 24px;
    aspect-ratio: .92 / 1;
  }

  .atl-hero-photo img {
    object-position: 57% center;
  }

  .atl-hero-photo figcaption {
    right: 14px;
    bottom: 12px;
    left: 14px;
    font-size: 9px;
  }

  .atl-float {
    padding: 11px 14px;
    border-radius: 17px;
  }

  .atl-float strong {
    font-size: 28px;
  }

  .atl-float span {
    font-size: 9px;
  }

  .atl-float--clubs {
    top: 11%;
    left: -4px;
  }

  .atl-float--lesson {
    right: -4px;
    bottom: 3%;
  }

  .atl-route {
    display: none;
  }

  .atl-hero-facts {
    grid-template-columns: 1fr;
    margin-top: 20px;
    border-radius: 24px 24px 0 0;
  }

  .atl-hero-facts article {
    padding: 18px 22px;
  }

  .atl-hero-facts article + article {
    border-top: 1px solid var(--atl-line);
    border-left: 0;
  }

  .atl-section {
    padding: 78px 0;
  }

  .atl-section-head {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 34px;
  }

  .atl-section-head h2,
  .atl-before h2,
  .atl-pools-copy h2 {
    font-size: clamp(37px, 11vw, 54px);
  }

  .atl-section-head > p {
    font-size: 15px;
  }

  .atl-program-grid {
    grid-template-columns: 1fr;
  }

  .atl-program,
  .atl-program--school {
    grid-column: auto;
    min-height: 430px;
  }

  .atl-program--school {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 210px auto;
  }

  .atl-program--school .atl-program-body {
    min-height: 360px;
  }

  .atl-program-body .atl-program-age,
  .atl-program-body h3,
  .atl-program-body p {
    max-width: calc(100% - 40px);
  }

  .atl-choice {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 30px 24px;
  }

  .atl-pool-photo {
    aspect-ratio: 1.55 / 1;
  }

  .atl-pool-tabs {
    grid-template-columns: 1fr;
  }

  .atl-pool-tabs button {
    min-height: 118px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    border-left: 0;
  }

  .atl-filters {
    flex-wrap: nowrap;
    margin: -8px -14px 28px;
    padding: 0 14px 4px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .atl-filters::-webkit-scrollbar {
    display: none;
  }

  .atl-filters button {
    flex: 0 0 auto;
  }

  .atl-branch-grid {
    grid-template-columns: 1fr;
  }

  .atl-branch--featured {
    grid-column: auto;
    display: block;
  }

  .atl-branch--featured figure {
    height: auto;
    aspect-ratio: 1.42 / 1;
  }

  .atl-branch--featured .atl-branch-body {
    min-height: 300px;
    padding: 25px 26px 27px;
  }

  .atl-branch--featured h3 {
    font-size: 28px;
  }

  .atl-before-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .atl-checklist {
    grid-template-columns: 1fr;
  }

  .atl-checklist article {
    min-height: 190px;
  }

  .atl-checklist article > span {
    margin-bottom: 38px;
  }

  .atl-contact-card {
    width: var(--atl-shell);
    gap: 38px;
    padding: 38px 24px;
    border-radius: 30px;
  }

  .atl-contact h2 {
    font-size: clamp(37px, 10vw, 51px);
  }

  .atl-contact-actions {
    grid-template-columns: 1fr;
  }

  .atl-sources-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .atl-sources div {
    justify-content: flex-start;
  }

  .atl-footer {
    padding-top: 46px;
  }

  .atl-footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .atl-footer nav {
    justify-content: flex-start;
  }

  .atl-footer-bottom {
    gap: 16px;
    align-items: flex-start;
  }

  .atl-mobile-cta {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 60;
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, .75);
    border-radius: 22px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 16px 50px rgba(0, 42, 77, .22);
    backdrop-filter: blur(16px);
  }

  .atl-mobile-cta a {
    display: grid;
    min-height: 48px;
    place-items: center;
    border-radius: 16px;
    color: #fff;
    background: var(--atl-blue);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
  }

  .atl-mobile-cta a:last-child {
    color: var(--atl-ink-deep);
    background: var(--atl-lime);
  }
}

@media (max-width: 760px) and (max-height: 560px) {
  .atl-mobile-cta {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .atl-faq-layout,
  .atl-related {
    grid-template-columns: 1fr;
  }

  .atl-faq-heading {
    position: static;
  }
}

@media (max-width: 560px) {
  .atl-related {
    padding: 22px;
  }

  .atl-related > div {
    grid-template-columns: 1fr;
  }

  .atl-faq-list summary {
    padding: 21px 58px 21px 21px;
    font-size: 15px;
  }

  .atl-faq-list summary::after {
    right: 18px;
  }

  .atl-faq-list details > p {
    padding: 0 21px 22px;
    font-size: 14px;
  }
}
