:root {
  --color-red: #ff1f1f;
  --color-red-dark: #b90000;
  --color-red-deep: #7b0000;
  --color-black: #050505;
  --color-charcoal: #111114;
  --color-ink: #161616;
  --color-muted: #62626b;
  --color-soft: #f5f5f7;
  --color-white: #ffffff;
  --color-border: rgba(17, 17, 20, 0.1);
  --shadow-card: 0 24px 70px rgba(0, 0, 0, 0.11);
  --shadow-red: 0 22px 50px rgba(255, 31, 31, 0.24);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-ink);
  background: var(--color-white);
  text-rendering: optimizeLegibility;
}

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

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

p {
  margin: 0;
  font-size: 18px;
  line-height: 1.68;
  color: var(--color-muted);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  background: var(--color-white);
  color: var(--color-black);
  padding: 10px 14px;
  border-radius: 12px;
  z-index: 1000;
}

.skip-link:focus {
  top: 16px;
}

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

.narrow {
  max-width: 820px;
}

.center {
  text-align: center;
}

.section {
  padding: 104px 0;
  position: relative;
}

.section-dark {
  background: var(--color-black);
  color: var(--color-white);
}

.section-soft {
  background: var(--color-soft);
}

.section-red {
  background:
    radial-gradient(circle at top right, #ff000040, transparent 32%),
    linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 52%, var(--color-red-deep) 100%);
  color: var(--color-white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: #000000;
  border-bottom: 1px solid rgba(50, 50, 50, 0.903);
}

.header-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--color-white);
  font-size: 14px;
  background: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
  box-shadow: var(--shadow-red);
}

.brand-text {
  color: var(--color-white);
  font-size: 20px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  font-weight: 800;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  font-weight: 900;
  line-height: 1;
  border-radius: 999px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.button-primary {
  background: #c7de91;
  color: var(--color-black);
  box-shadow: 0 22px 50px rgba(199, 222, 145, 0.35);
}

.button-primary:hover {
  background: #b6cf7f;
}

.button-secondary {
  background: rgba(255, 255, 255, .1);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, .18);
}

.button-light {
  background: var(--color-white);
  color: var(--color-red-dark);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .18);
}

.button-small {
  padding: 13px 18px;
  font-size: 14px;
}

.button-large {
  padding: 19px 28px;
  font-size: 17px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  display: grid;
  align-items: center;
  padding: 130px 0 96px;
  background-color: var(--color-black);
}

.hero-bg {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background:
    linear-gradient(135deg, rgba(5, 5, 5, .8), rgba(10, 10, 12, .9)),
    url('../img/background.jpg') center/cover no-repeat;
  pointer-events: none;
  animation: heroBgMove 25s ease-in-out infinite alternate;
  z-index: 0;
}

.hero-texture {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.06;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}

@keyframes heroBgMove {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.05) translate(-2%, -1%); }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
  color: var(--color-red);
}

.eyebrow.light {
  color: rgba(255, 255, 255, .82);
}

.hero h1,
h2 {
  margin: 0;
  letter-spacing: -0.07em;
  line-height: .93;
}

.hero h1 {
  max-width: 820px;
  margin-inline: auto;
  font-size: clamp(54px, 7.4vw, 100px);
}

h2 {
  font-size: clamp(40px, 5.2vw, 72px);
}

h3 {
  margin: 0;
  font-size: 25px;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.hero-lede {
  margin-top: 26px;
  max-width: 630px;
  margin-inline: auto;
  font-size: 21px;
  color: rgba(255, 255, 255, .74);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
  justify-content: center;
}

.trust-line {
  margin-top: 20px;
  max-width: 600px;
  margin-inline: auto;
  font-size: 15px;
  color: rgba(255, 255, 255, .58);
}

.hero-card {
  position: relative;
  padding: 20px;
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .06));
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .45);
}

.hero-media {
  min-height: 430px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 35% 32%, rgba(255, 255, 255, .2), transparent 23%),
    radial-gradient(circle at 64% 36%, rgba(255, 255, 255, .14), transparent 24%),
    linear-gradient(135deg, #27272d, #080809 58%, #210000);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: auto -20% -36% -20%;
  height: 60%;
  background: linear-gradient(135deg, rgba(255, 31, 31, .9), rgba(123, 0, 0, .82));
  transform: rotate(-5deg);
}

.teacher-orb {
  position: absolute;
  bottom: 88px;
  width: 170px;
  height: 220px;
  display: grid;
  place-items: center;
  border-radius: 80px 80px 28px 28px;
  background: linear-gradient(180deg, #f7f7f8, #d8d8dd);
  color: var(--color-black);
  font-weight: 900;
  font-size: 30px;
  letter-spacing: -0.07em;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
}

.teacher-orb-left {
  left: 15%;
  transform: rotate(-3deg);
}

.teacher-orb-right {
  right: 15%;
  transform: rotate(3deg);
}

.play-badge {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  color: var(--color-white);
  background: var(--color-red);
  border-radius: 50%;
  box-shadow: var(--shadow-red);
}

.play-badge svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.hero-stats div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .1);
}

.hero-stats strong {
  display: block;
  font-size: 25px;
  letter-spacing: -.05em;
}

.hero-stats span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: rgba(255, 255, 255, .64);
  font-weight: 800;
}

@keyframes float {
  0% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

@keyframes floatReverse {
  0% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(-40px, 30px) scale(1.1);
  }
  66% {
    transform: translate(20px, -20px) scale(0.9);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

.hero-glow {
  position: absolute;
  pointer-events: none;
  filter: blur(50px);
  opacity: .5;
  z-index: 1;
}

.hero-glow-one {
  width: 600px;
  height: 600px;
  background: rgba(255, 31, 31, .3);
  border-radius: 50%;
  right: -100px;
  top: -50px;
  animation: float 18s ease-in-out infinite;
}

.hero-glow-two {
  width: 500px;
  height: 500px;
  background: rgba(255, 31, 31, .15);
  border-radius: 50%;
  left: -150px;
  bottom: -50px;
  animation: floatReverse 22s ease-in-out infinite;
}

.hero-glow-three {
  width: 800px;
  height: 800px;
  background: rgba(255, 31, 31, .08);
  border-radius: 50%;
  left: 20%;
  top: 10%;
  animation: float 26s ease-in-out infinite reverse;
}

.section-lede {
  margin-top: 22px;
  font-size: 20px;
}

.light-muted {
  color: rgba(255, 255, 255, .68);
}

.card-grid {
  display: grid;
  gap: 22px;
  margin-top: 48px;
}

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

.card,
.phase-card,
.fit-card,
.teacher-card,
.ba-column,
details {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.card {
  padding: 32px;
}

.card h3 {
  margin-top: 18px;
}

.card p {
  margin-top: 14px;
}

.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 31, 31, .1);
  color: var(--color-red);
  font-weight: 900;
  font-size: 20px;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.align-center {
  align-items: center;
}

.solution-band p {
  color: rgba(255, 255, 255, .82);
  margin-bottom: 24px;
}

.phase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 54px;
}

.phase-card {
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.phase-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -40px;
  top: -40px;
  border-radius: 50%;
  background: rgba(255, 31, 31, .08);
}

.phase-number {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 900;
  color: var(--color-red);
  letter-spacing: .14em;
}

.phase-card p {
  margin-top: 14px;
}

.phase-card ul {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.phase-card li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--color-ink);
  font-weight: 700;
}

.phase-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-red);
}

.teachers-section {
  overflow: hidden;
}

.teacher-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 54px;
}

.teacher-card {
  overflow: hidden;
  background: #111114;
  border-color: rgba(255, 255, 255, .1);
  box-shadow: 0 26px 80px rgba(0, 0, 0, .38);
}

.teacher-photo {
  height: 380px;
  display: grid;
  place-items: center;
  font-size: 58px;
  font-weight: 900;
  letter-spacing: -0.08em;
  color: var(--color-white);
}

.dee-photo {
  background: radial-gradient(circle at center, rgba(255, 255, 255, .16), transparent 32%), linear-gradient(135deg, #29292f, #111114);
}

.nick-photo {
  background: radial-gradient(circle at center, rgba(255, 31, 31, .22), transparent 34%), linear-gradient(135deg, #111114, #2b0000);
}

.teacher-content {
  padding: 32px;
}

.teacher-content h3 {
  color: var(--color-white);
}

.teacher-content p {
  margin-top: 14px;
  color: rgba(255, 255, 255, .68);
}

.teacher-content strong {
  display: block;
  margin-top: 20px;
  color: var(--color-white);
  line-height: 1.5;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.fit-card {
  padding: 36px;
}

.fit-card h3 {
  margin-bottom: 24px;
}

.fit-card ul {
  display: grid;
  gap: 16px;
}

.fit-card li {
  position: relative;
  padding-left: 34px;
  font-weight: 800;
  line-height: 1.45;
  color: var(--color-ink);
}

.fit-card li::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--color-white);
  font-size: 13px;
}

.fit-card.good li::before {
  content: "✓";
  background: #16a34a;
}

.fit-card.bad li::before {
  content: "×";
  background: var(--color-red);
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.ba-column {
  padding: 30px;
  box-shadow: none;
}

.ba-column h3 {
  margin-bottom: 20px;
}

.ba-column li {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-muted);
  font-weight: 700;
}

.ba-column li:last-child {
  border-bottom: 0;
}

.after {
  border-color: rgba(22, 163, 74, .24);
  background: #f3fff6;
}

.before {
  background: #fff7f7;
  border-color: rgba(255, 31, 31, .18);
}

.cta-section {
  padding: 84px 0;
}

.cta-box {
  text-align: center;
  max-width: 880px;
}

.cta-box h2 {
  color: var(--color-white);
}

.cta-box p {
  max-width: 680px;
  margin: 22px auto 28px;
  color: rgba(255, 255, 255, .84);
  font-size: 21px;
}

.microcopy {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, .72);
  font-weight: 700;
  font-size: 14px;
}

.faq-list {
  max-width: 900px;
  margin-top: 46px;
  display: grid;
  gap: 14px;
}

details {
  padding: 0;
  overflow: hidden;
  box-shadow: none;
}

summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  font-size: 18px;
  font-weight: 900;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

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

summary::after {
  content: "+";
  color: var(--color-red);
  font-size: 24px;
  line-height: 1;
}

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

details p {
  padding: 0 28px 26px;
  font-size: 17px;
}

details a {
  color: var(--color-red);
  font-weight: 900;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  color: rgba(255, 255, 255, .58);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

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

.delay-1 {
  transition-delay: .1s;
}

.delay-2 {
  transition-delay: .2s;
}

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

  .hero-grid,
  .split-grid,
  .teacher-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 116px;
  }

  .card-grid.three,
  .phase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-card {
    max-width: 640px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 76px 0;
  }

  .header-inner {
    height: 70px;
  }

  .brand-text {
    font-size: 18px;
  }

  .header-buttons {
    display: none;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 68px);
  }

  h2 {
    font-size: clamp(36px, 11vw, 52px);
  }

  p,
  .section-lede {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button-large {
    width: 100%;
  }

  .card-grid.three,
  .phase-grid,
  .before-after,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 340px;
  }

  .teacher-orb {
    width: 128px;
    height: 180px;
    font-size: 24px;
    bottom: 70px;
  }

  .teacher-orb-left {
    left: 10%;
  }

  .teacher-orb-right {
    right: 10%;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Update: focused hero without right-side overview card */
.hero-grid {
  grid-template-columns: minmax(0, 960px);
  justify-content: start;
}

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

.hero h1 {
  max-width: 900px;
}

.hero-lede {
  max-width: 720px;
}

/* Pricing */
.pricing-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 16%, rgba(255, 31, 31, .22), transparent 30%),
    linear-gradient(135deg, #050505 0%, #111114 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 58px;
}

.pricing-card {
  padding: 38px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .06));
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .45);
}

.pricing-label {
  display: inline-flex;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 31, 31, .16);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.price-row {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  margin: 26px 0 18px;
}

.price {
  color: #fff;
  font-size: clamp(62px, 7vw, 94px);
  line-height: .85;
  letter-spacing: -.08em;
  font-weight: 900;
}

.price-term {
  color: rgba(255, 255, 255, .62);
  font-weight: 900;
  padding-bottom: 10px;
}

.pricing-card p {
  color: rgba(255, 255, 255, .74);
}

.pricing-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 28px;
}

.pricing-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, .9);
  font-weight: 800;
  line-height: 1.45;
}

.pricing-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-red);
  font-weight: 900;
}

.pricing-note {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
}

/* Footer links */
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  font-weight: 800;
}

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

/* Legal pages */
.legal-hero {
  padding: 140px 0 70px;
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(48px, 7vw, 92px);
  letter-spacing: -.07em;
  line-height: .92;
}

.legal-hero p {
  margin-top: 20px;
  max-width: 760px;
  color: rgba(255, 255, 255, .68);
}

.legal-content {
  padding: 80px 0;
}

.legal-wrap {
  max-width: 920px;
}

.legal-card {
  padding: 42px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.legal-card h2 {
  margin-top: 42px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  letter-spacing: -.05em;
}

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

.legal-card p,
.legal-card li {
  color: #4b4b55;
  font-size: 17px;
  line-height: 1.72;
}

.legal-card p {
  margin-top: 14px;
}

.legal-card ul {
  list-style: disc;
  padding-left: 24px;
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.legal-card a {
  color: var(--color-red);
  font-weight: 900;
}

.legal-meta {
  display: inline-flex;
  margin-top: 22px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 31, 31, .12);
  color: var(--color-red);
  font-weight: 900;
}

@media (max-width: 980px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {

  .legal-card,
  .pricing-card {
    padding: 28px;
  }

  .price-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-term {
    padding-bottom: 0;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}