@font-face {
  font-family: Sora;
  src: url("assets/fonts/sora.woff2") format("woff2");
  font-weight: 400 800;
  font-display: swap;
}
:root {
  --paper: #f8f5eb;
  --header-gradient: linear-gradient(110deg, #dce8ff 0%, #d5eee8 58%, #e3efb9 100%);
  --blue: #0634a8;
  --ink: #101743;
  --lime: #a4ef35;
  --muted: #555975;
  --line: #c7c9cc;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Sora, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font: inherit;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 6px;
}
.wrap {
  width: min(1200px, calc(100% - 96px));
  margin-inline: auto;
}
.skip {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 100;
  background: white;
  padding: 14px;
}
.skip:focus {
  top: 12px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--header-gradient);
  border-bottom: 1px solid transparent;
  transition:
    border-color 340ms,
    background-color 340ms,
    padding 340ms;
}
.header-inner {
  height: 106px;
  display: flex;
  align-items: center;
  gap: 36px;
  border: 1px solid transparent;
  transition:
    height 340ms cubic-bezier(0.22, 1, 0.36, 1),
    width 420ms cubic-bezier(0.22, 1, 0.36, 1),
    padding 340ms,
    border-radius 340ms,
    background-color 340ms,
    box-shadow 340ms;
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -1px;
}
.brand img {
  width: 57px;
  height: 57px;
  object-fit: contain;
  transition:
    width 340ms,
    height 340ms;
}
.header-inner nav {
  margin-left: auto;
  display: flex;
  gap: 30px;
  font-size: 13px;
  white-space: nowrap;
  flex-shrink: 0;
}
.header-inner [hidden] {
  display: none;
}
.header-inner .brand,
.header-download {
  flex-shrink: 0;
}
.header-download { margin-left: auto; }
.header-inner nav:not([hidden]) + .header-download { margin-left: 0; }
.header-inner nav a:hover,
.site-footer a:hover {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 5px;
}
.header-download {
  overflow: visible;
}
.header-download .store-badge {
  width: 146px;
}
.header-is-compact .header-inner {
  height: 74px;
  width: min(1000px, calc(100% - 48px));
  padding-inline: 18px;
  border-color: #ddded4;
  border-radius: 18px;
  background: var(--header-gradient);
  box-shadow: 0 14px 34px #1017431a;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.header-is-compact .brand img {
  width: 43px;
  height: 43px;
}
.header-is-compact .site-header {
  padding-block: 8px;
  border-color: transparent;
  background: transparent;
}
.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 35px;
  align-items: center;
  padding-block: 46px 76px;
  min-height: 770px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -3.5px;
  color: var(--blue);
}
h1 {
  font-size: clamp(60px, 6.1vw, 88px);
  line-height: 0.99;
  margin-bottom: 28px;
  white-space: nowrap;
}
.intro {
  text-wrap: balance;
  font-size: 20px;
  line-height: 1.6;
  max-width: 535px;
  margin-bottom: 32px;
}
.download-row {
  display: flex;
  gap: 24px;
  align-items: center;
}
.download-row > span {
  font-size: 11px;
  color: var(--muted);
}
.store-badge {
  display: inline-flex;
  width: 178px;
  border-radius: 8px;
  flex-shrink: 0;
  transition:
    transform 160ms ease,
    filter 160ms ease;
}
.store-badge img {
  width: 100%;
  height: auto;
}
.store-badge:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}


.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
  padding-right: 30px;
}
.phone {
  width: 305px;
  padding: 8px;
  background: #101113;
  border: 2px solid #67686d;
  border-radius: 44px;
  box-shadow:
    0 0 0 2px #22252b,
    10px 25px 28px #181c3b22;
  overflow: hidden;
}
.phone-status {
  height: 32px;
  background: #211a30;
  color: white;
  font-size: 10px;
  display: flex;
  justify-content: space-between;
  padding: 5px 17px;
  align-items: center;
  border-radius: 30px 30px 0 0;
  position: relative;
}
.island {
  width: 83px;
  height: 23px;
  background: #050509;
  border-radius: 20px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.screen {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 33px 33px;
  background: #1b1328;
}
.screen > img {
  width: 100%;
  height: auto;
}
.screen-brand {
  position: absolute;
  top: 2.1%;
  left: 4%;
  padding: 6px 4px;
  background: #231c31;
  color: white;
  font-size: 13px;
  width: 60%;
}
.side-note {
  position: absolute;
  right: -5px;
  bottom: 80px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 2;
}
.side-note:before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  background: var(--lime);
  margin-bottom: 15px;
}

.features {
  background: var(--blue);
  color: var(--paper);
  padding: 60px 0 64px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-grid article + article {
  border-left: 1px solid #7190d7;
  padding-left: 32px;
}
.number {
  color: var(--lime);
  font-size: 13px;
  letter-spacing: 2px;
}
.features h2 {
  color: var(--paper);
  font-size: 43px;
  letter-spacing: -1.8px;
  line-height: 1.05;
  margin: 15px 0 20px;
}
.features article > p {
  font-size: 13px;
  line-height: 1.8;
  min-height: 92px;
  max-width: 305px;
}
.feature-image,
.decision-preview,
.feedback-preview {
  height: 272px;
  border-radius: 8px;
  overflow: hidden;
  background: #1b122b;
}
.court-crop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 9%;
  clip-path: inset(0);
}
.court-crop {
  position: relative;
}
.court-crop img {
  position: absolute;
  width: 100%;
  height: auto;
  top: -20%;
}
.decision-preview {
  padding: 22px 18px;
  color: #f7f3ff;
}
.decision-preview .mini-label {
  font-size: 8px;
  letter-spacing: 1.7px;
  color: #b5a4d1;
  margin-bottom: 12px;
}
.decision-preview h3,
.feedback-preview h3 {
  font-size: 15px;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}
.decision-preview > p:not(.mini-label) {
  font-size: 10px;
  line-height: 1.6;
  color: #bdb2ca;
}
.decision-preview > div {
  border: 1px solid #51435d;
  border-radius: 5px;
  padding: 9px;
  margin: 7px 0;
  font-size: 9px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.decision-preview b {
  font-size: 9px;
  background: #584437;
  padding: 4px 6px;
  border-radius: 3px;
}
.decision-preview .correct {
  border-color: #a4ef3580;
  background: #a4ef3515;
}
.correct span {
  margin-left: auto;
  color: var(--lime);
}
.decision-preview small {
  font-size: 8px;
  color: #a599b0;
}
.feedback-preview {
  padding: 25px 22px;
}
.feedback-symbol {
  font-size: 36px;
  color: var(--lime);
  display: block;
  margin-bottom: 12px;
}
.feedback-preview p {
  font-size: 11px;
  line-height: 1.8;
  color: #cdc2dc;
}
.feedback-line {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px dashed var(--lime);
  padding-bottom: 10px;
  font-size: 8px;
  color: var(--lime);
}
.feedback-preview small {
  display: block;
  font-size: 8px;
  color: #bbb0cb;
  margin-top: 16px;
}
.shotbook {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 75px;
  padding-block: 110px;
}
.shotbook h2,
.section-heading h2,
.final-cta h2 {
  font-size: 64px;
  line-height: 1.03;
  margin-bottom: 25px;
}
.shotbook-copy > p {
  font-size: 14px;
  line-height: 1.9;
  max-width: 365px;
}

.journal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  transform: rotate(-3deg);
  filter: drop-shadow(0 20px 17px #29232125);
}
.journal-page {
  min-height: 355px;
  background: linear-gradient(90deg, #f3efe0, #fffcf3 90%, #dbd7cd);
  padding: 29px 25px;
  position: relative;
}
.journal-page + .journal-page {
  background: linear-gradient(90deg, #ddd9cd, #fffdf4 9%, #f1eddf);
}
.book-label {
  display: block;
  font-size: 7px;
  letter-spacing: 1.6px;
  color: #686b7a;
}
.journal h3 {
  font-family: Georgia, serif;
  font-size: 35px;
  font-weight: 400;
  margin: 15px 0 8px;
}
.journal p {
  font-size: 10px;
  line-height: 1.6;
}
.journal-page > img {
  height: 130px;
  width: 100%;
  object-fit: contain;
  image-rendering: pixelated;
  margin: 15px 0;
}
.lob-illustration {
  position: relative;
  height: 150px;
  width: 100%;
  max-width: 220px;
  margin: 15px 0;
}
.lob-player {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 115px;
  height: 115px;
  background: url("assets/shotbook-court.png") 0% 33.333333% / 400% 400% no-repeat;
  image-rendering: pixelated;
}
.lob-illustration svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.book-court {
  height: 160px;
  overflow: hidden;
  position: relative;
  margin-bottom: 24px;
  border: 1px solid #c9c4b9;
}
.book-court img {
  width: 100%;
  position: absolute;
  top: -18%;
}
.journal ul {
  padding: 0;
  list-style: none;
  font-size: 9px;
  line-height: 2.5;
}
.journal li:before {
  content: "■";
  color: #85c722;
  margin-right: 9px;
}
.page-number {
  font-size: 6px;
  letter-spacing: 1.6px;
  color: #777b89;
  position: absolute;
  bottom: 20px;
  right: 22px;
}
.testimonials {
  background: var(--blue);
  color: #fff;
  padding: 80px 0;
}
.testimonials h2 {
  color: #fff;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 38px;
}
.section-heading h2 {
  font-size: 54px;
  margin: 0;
}


.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 30px;
}
.review {
  container-type: inline-size;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 0;
  background: #243a54;
  padding: 30px 25px;
  border: 1px solid #ffffff30;
  border-radius: 8px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  column-gap: 10px;
  align-items: center;
}
.review::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -100%;
  pointer-events: none;
  background: linear-gradient(90deg, #245b61 20%, #243a54 50%, #29253f 80%);
  animation: review-gradient-orbit 8s linear infinite;
}
.review:nth-child(2)::before {
  animation-delay: -2.67s;
}
.review:nth-child(3)::before {
  animation-delay: -5.33s;
}
@keyframes review-gradient-orbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.stars {
  letter-spacing: 4px;
  color: #ffd166;
  font-size: 18px;
}
.review blockquote {
  grid-column: 1 / -1;
  grid-row: 2;
  font-family: Georgia, serif;
  font-size: 20px;
  line-height: 1.55;
  margin: 20px 0 0;
  flex: 1;
}
.review figcaption {
  align-self: center;
  margin: 0;
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  display: flex;
  gap: 8px;
  align-items: center;
}
.review figcaption img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 50%;
}
.review-avatar {
  position: relative;
  flex: 0 0 36px;
}
.review figcaption .review-flag {
  position: absolute;
  top: -4px;
  right: -4px;
  margin: 0;
  font-size: 12px;
  line-height: 1;
}
.review figcaption strong {
  display: block;
  font-size: 10px;
}
.review figcaption span {
  display: block;
  font-size: 9px;
  color: #d8e2ef;
  margin-top: 5px;
}
.final-cta {
  position: relative;
  overflow: hidden;
  margin-block: 72px 24px;
  padding: clamp(36px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.42fr);
  align-items: center;
  gap: 36px;
  border: 1px solid #d5e3dd;
  border-radius: 28px;
  background:
    radial-gradient(ellipse at 8% 0%, #ffffffb3, transparent 65%),
    radial-gradient(ellipse at 100% 100%, #d8efa9b3, transparent 65%),
    linear-gradient(125deg, #dceaff, #d3eee6 60%, #ebf1cf);
}
.final-cta h2 {
  max-width: 15ch;
  font-size: clamp(46px, 5.2vw, 72px);
  line-height: 1.05;
  letter-spacing: -2.5px;
  text-wrap: balance;
}
.final-cta p {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 28px;
}
.download-qr {
  width: 100%;
  max-width: 246px;
  padding: 14px 14px 20px;
  justify-self: center;
  text-align: center;
  background: #fff;
  border: 1px solid #0634a81a;
  border-radius: 18px;
  box-shadow: 0 12px 30px #0634a80d;
}
.download-qr img {
  width: 100%;
  height: auto;
}
.download-qr strong {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: var(--blue);
}
.download-qr span {
  display: block;
  margin-top: 7px;
  font-size: 10px;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .final-cta {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 24px;
  }
  .download-qr {
    display: none;
  }
  .final-cta h2 {
    max-width: 19ch;
    margin-inline: auto;
  }
}
.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  padding-block: 16px 25px;
  gap: 28px;
  font-size: 11px;
}
.footer-brand strong {
  display: block;
  font-size: 20px;
  letter-spacing: -0.6px;
}
.footer-brand span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
}
.site-footer nav {
  display: flex;
  gap: 22px;
  align-items: center;
}

.site-footer a {
  padding-block: 10px;
}
@media (min-width: 1500px) {
  .hero {
    min-height: 830px;
  }
  .phone {
    width: 330px;
  }
}
@media (max-width: 1050px) {
  .wrap {
    width: calc(100% - 56px);
  }
  .hero {
    gap: 15px;
    min-height: 700px;
  }
  h1 {
    font-size: 64px;
  }
  .intro {
    font-size: 17px;
  }
  .phone {
    width: 265px;
  }
  .side-note {
    display: none;
  }
  .hero-art {
    padding: 0;
  }

  .feature-grid {
    gap: 20px;
  }
  .feature-grid article + article {
    padding-left: 20px;
  }
  .features h2 {
    font-size: 36px;
  }
  .shotbook {
    gap: 35px;
  }
  .journal-page {
    padding: 24px 18px;
  }
  .site-footer nav {
    gap: 15px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 115px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .header-inner {
    height: 88px;
    gap: 14px;
    flex-wrap: nowrap;
    align-content: center;
    position: relative;
  }
  .brand {
    font-size: 20px;
  }
  .brand img {
    width: 43px;
    height: 43px;
  }
  .header-inner nav {
    gap: 20px;
    font-size: 11px;
    margin-left: auto;
  }
  .header-download {
    position: static;
  }
  .header-show-downloads .header-inner {
    height: 88px;
  }
  .header-is-compact .header-inner {
    height: 76px;
  }
  .header-show-downloads.header-is-compact .header-inner {
    height: 76px;
  }
  .header-show-downloads .header-inner nav {
    position: static;
  }
  .header-download .store-badge {
    width: 127px;
  }
  .hero {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 44px;
    padding-block: 40px 65px;
    min-height: 0;
  }
  .hero-copy {
    max-width: 540px;
  }

  h1 {
    font-size: clamp(48px, 9.8vw, 70px);
    letter-spacing: -2.5px;
  }
  .intro {
    font-size: 16px;
    max-width: 470px;
  }
  .download-row {
    gap: 17px;
  }
  .download-row > span {
    font-size: 9px;
  }
  .store-badge {
    width: 162px;
  }

  .hero-art {
    padding: 0;
  }
  .phone {
    width: 265px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .feature-grid article + article {
    border-left: 0;
    border-top: 1px solid #7190d7;
    padding-left: 0;
    padding-top: 36px;
  }
  .features {
    padding-block: 42px;
  }
  .features h2 {
    font-size: 43px;
  }
  .features h2 br {
    display: none;
  }
  .features article > p {
    min-height: 0;
    max-width: none;
    margin-bottom: 22px;
  }
  .feature-image,
  .decision-preview,
  .feedback-preview {
    height: 290px;
    max-width: 450px;
  }
  .court-crop img {
    top: -24%;
  }
  .decision-preview {
    padding: 25px;
  }
  .decision-preview > div {
    font-size: 11px;
    padding: 10px;
  }
  .feedback-preview {
    padding: 28px;
  }
  .feedback-preview p {
    font-size: 13px;
  }
  .shotbook {
    grid-template-columns: 1fr;
    padding-block: 65px;
    gap: 38px;
  }
  .shotbook h2,
  .section-heading h2 {
    font-size: 52px;
  }
  .journal {
    max-width: 540px;
    transform: rotate(-2deg);
  }
  .journal-page {
    min-height: 315px;
    padding: 22px 15px;
  }
  .journal h3 {
    font-size: 30px;
  }
  .journal ul {
    font-size: 8px;
  }
  .book-label {
    font-size: 6px;
  }
  .book-court {
    height: 125px;
  }
  .section-heading {
    display: block;
  }

  .testimonials {
    padding-block: 55px;
  }
  .review-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .review {
    padding: 26px;
  }
  .review blockquote {
    font-size: 21px;
  }
  .final-cta {
    margin-block: 40px 16px;
    padding: 36px 24px;
    border-radius: 22px;
  }
  .final-cta h2 {
    font-size: clamp(40px, 7vw, 53px);
    letter-spacing: -2px;
  }
  .site-footer {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .site-footer nav {
    flex-wrap: wrap;
    gap: 5px 23px;
    font-size: 10px;
  }

}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 42px;
  }
  .brand {
    font-size: 17px;
    gap: 4px;
  }
  .brand img {
    width: 35px;
    height: 35px;
  }
  .header-inner nav {
    gap: 12px;
    font-size: 10px;
  }
  .header-inner {
    gap: 8px;
  }
  .header-show-downloads .brand span {
    max-width: 90px;
    font-size: 15px;
  }
  .header-download .store-badge {
    width: 118px;
  }

}

@media (max-width: 760px) {
  .header-is-compact .header-inner {
    width: calc(100% - 24px);
    padding-inline: 12px;
  }
  .header-is-compact .header-download {
    right: 12px;
  }
  .header-show-downloads.header-is-compact .header-inner nav {
    left: 12px;
  }
}

/* Native iPhone 17 Pro captures. Clip the status area containing the staging ribbon,
   keeping the source images intact and all app content below the status area visible. */
.phone-status,
.screen {
  background: #142126;
}
.screen > img {
  margin-top: -17.5%;
}
.court-crop {
  height: auto;
  aspect-ratio: 1;
}
.court-crop img {
  width: 135%;
  max-width: none;
  height: auto;
  left: -17.5%;
  top: -58%;
}
.book-court {
  height: auto;
  aspect-ratio: 1;
}
.book-court img {
  width: 114%;
  max-width: none;
  left: -7%;
  top: -69%;
}

/* Compact social proof fills the hero copy column beneath the download badge. */
.review.hero-review {
  width: 100%;
  margin-top: 28px;
  padding: 22px 24px;
  color: #fff;
}
.hero-review blockquote {
  margin: 12px 0 18px;
  font-size: 18px;
  line-height: 1.5;
}
.hero-review .stars {
  font-size: 15px;
}

#hero-title {
  font-style: italic;
  font-weight: 700;
  white-space: normal;
}

#hero-title > span {
  display: block;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .hero-copy {
    width: 100%;
    max-width: none;
    text-align: center;
  }

  #hero-title {
    font-size: clamp(28px, 5.7vw, 43px);
    margin-bottom: 0.5em;
    letter-spacing: -1px;
    line-height: 1.15;
    text-wrap: balance;
  }

  #hero-title > span {
    display: inline-block;
  }

  .intro,
  .shotbook-copy > p,
  .feature-image,
  .decision-preview,
  .feedback-preview,
  .journal {
    margin-inline: auto;
  }

  .download-row,
  .site-footer nav {
    justify-content: center;
  }

  .feature-grid article > .number,
  .feature-grid article > h2,
  .feature-grid article > p,
  .shotbook-copy,
  .section-heading,
  .final-cta,
  .site-footer {
    text-align: center;
  }

  .feature-grid article > .number {
    display: block;
  }

  .hero-review {
    text-align: left;
  }
}

.review .stars {
  display: flex;
  align-items: center;
  align-self: center;
  min-height: 36px;
  line-height: 1;
  grid-column: 1;
  grid-row: 1;
  white-space: nowrap;
  font-size: clamp(18px, 5cqw, 24px);
  letter-spacing: 1px;
}
.review-identity {
  min-width: 0;
  font-size: 11px;
}
.review .review-identity strong,
.review .review-identity span {
  display: inline;
  font-size: inherit;
  margin: 0;
}
.hero-review blockquote {
  margin-bottom: 0;
}

.lesson-tour {
  padding-block: 72px;
}
.lesson-tour > .wrap > h2 {
  color: white;
  font-size: clamp(38px, 4.5vw, 62px);
  margin-bottom: 44px;
  text-align: center;
}
.lesson-tour-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(35px, 7vw, 100px);
  align-items: end;
  max-width: 1040px;
  margin-inline: auto;
}
.lesson-overview {
  padding: 8px;
  position: relative;
  border: 2px solid #67686d;
  border-radius: 44px;
  background: #101113;
  box-shadow: 0 0 0 2px #22252b, 0 25px 55px #00144a55;
  max-width: 330px;
  width: 100%;
  justify-self: center;
}
.lesson-capture {
  overflow: hidden;
  border-radius: 0 0 33px 33px;
}
.lesson-capture img {
  width: 100%;
  height: auto;
  margin-top: -17.5%;
}
.lesson-steps {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}
.lesson-step {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: #d5e1ff;
  background: transparent;
  cursor: pointer;
  text-align: left;
}
.lesson-step > span:last-child {
  font-family: Georgia, serif;
  font-size: clamp(23px, 2.7vw, 34px);
  letter-spacing: -1px;
}
.lesson-step .number {
  margin: 0;
  font-size: 12px;
}
.lesson-step[aria-selected="true"] {
  background: #ffffff12;
  border-color: #b2ef6e;
  color: white;
}
.lesson-step:hover {
  background: #ffffff12;
}
.lesson-step:focus-visible {
  outline: 2px solid white;
  outline-offset: 3px;
}
#lesson-focus-copy {
  line-height: 1.7;
  font-size: 15px;
  height: 52px;
  margin: 0 0 12px;
  color: white;
}
.lesson-zoom {
  height: clamp(440px, 42vw, 520px);
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid #ffffff40;
  background: #142126;
  box-shadow: 0 18px 30px #00144a30;
}
.lesson-court-detail {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px;
  gap: 16px;
}
.lesson-detail-card {
  height: 100%;
  padding: clamp(22px, 3vw, 36px);
  color: #f3f8fa;
}
.lesson-detail-card[hidden], .lesson-court-detail[hidden] { display: none; }
.detail-eyebrow { color: #b4ed28; font-size: 11px; letter-spacing: 2px; }
.lesson-detail-card h3 { font-size: clamp(22px, 2.5vw, 30px); line-height: 1.2; margin: 16px 0; }
.lesson-detail-card p { color: #bacbd2; font-size: 15px; line-height: 1.6; margin: 0 0 20px; }
.lesson-answer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.lesson-answer-list li { display: flex; align-items: center; gap: 12px; padding: 12px; border: 1px solid #60747c;
  border-radius: 9px; font-size: 14px; }
.lesson-answer-list span { border: 1px solid #60747c; border-radius: 5px; padding: 4px 7px; }
.pair-recovery-diagram { display: block; width: 100%; max-height: 180px; margin-top: 22px; }
.pair-labels { display: flex; justify-content: space-around; color: #b4ed28; font-size: 10px; }
@media (max-width: 760px) {
  .lesson-tour-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .lesson-overview {
    max-width: 280px;
  }
  .lesson-details {
    width: 100%;
    max-width: 520px;
    margin-inline: auto;
  }
  #lesson-focus-copy {
    text-align: center;
  }
}
.review .avatar-photo {
  display: block;
  position: relative;
  width: 36px;
  height: 36px;
  margin: 0;
  overflow: hidden;
  border-radius: 50%;
}
.review .avatar-photo img {
  position: absolute;
  max-width: none;
  height: auto;
  border-radius: 0;
}
.review .avatar-maksym img {
  width: 332.3%;
  left: -142.3%;
  top: -32.7%;
}
.review .avatar-bowe img {
  width: 292.6%;
  left: -101.4%;
  top: -40%;
}
.review .avatar-catalina img {
  width: 336.8%;
  left: -184.2%;
  top: -255.3%;
}
.review .avatar-lucie img {
  width: 640%;
  left: -426%;
  top: -370%;
}

.review figcaption .review-identity .review-flag {
  position: static;
  display: inline;
  font-size: 1.15em;
  line-height: inherit;
  vertical-align: baseline;
}

.padel-burst-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .padel-burst-canvas { display: none; }
}

.review figcaption { min-width: 0; }
.review .review-identity .review-subtitle {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  line-height: 1.4;
}

.lesson-detail-card[data-detail="choices"] h3 {
  text-align: center;
  margin: 0 0 24px;
}

.lesson-capture { position: relative; container-type: inline-size; }
.lesson-court-image { display: block; width: 100%; flex: 1; min-height: 0; }
.lesson-court-description {
  flex: none;
  color: #f3f8fa;
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.lesson-overview .phone-status { height: 36px; background: #142126; }
.lesson-overview::before, .lesson-overview::after {
  content: "";
  position: absolute;
  width: 3px;
  background: #67686d;
  border-radius: 2px;
}
.lesson-overview::before { left: -5px; top: 105px; height: 54px; }
.lesson-overview::after { right: -5px; top: 142px; height: 70px; }
.lesson-capture::after {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 35%;
  width: 30%;
  height: 4px;
  border-radius: 4px;
  background: #f3f8fa;
  pointer-events: none;
}

/* Full-width header surface before it condenses on scroll. */
body:not(.header-is-compact) .header-inner {
  width: 100%;
  padding-inline: max(48px, calc((100% - 1200px) / 2));
}
@media (max-width: 1100px) {
  body:not(.header-is-compact) .header-inner { padding-inline: 28px; }
}
@media (max-width: 760px) {
  body:not(.header-is-compact) .header-inner { padding-inline: 20px; }
}

.lesson-court-motion { position: relative; width: 100%; flex: 1; min-height: 0; }
.lesson-court-motion video { width: 100%; height: 100%; object-fit: contain; display: block; }
.lesson-motion-toggle {
  position: absolute; right: 4px; bottom: 4px; padding: 6px 10px;
  border: 1px solid #ffffff60; border-radius: 8px; background: #142126e6;
  color: white; font-size: 11px; cursor: pointer;
}

@media (max-width: 760px) {
  .site-footer { row-gap: 22px; }
}

#top .intro { margin-bottom: 28px; }
.hero-title-art {
  position: relative; width: fit-content; max-width: 100%;
  padding-block: 20px; margin-bottom: 24px;
}
.hero-title-art #hero-title { margin: 0; }
.hero-emoji {
  position: absolute; font-family: system-ui, sans-serif; font-size: 28px;
  line-height: 1; pointer-events: none; --tilt: -8deg;
  animation: hero-emoji-float 4s ease-in-out infinite;
}
.hero-emoji-brain { top: -10px; left: 10px; }
.hero-emoji-books { top: -10px; right: 10px; --tilt: 8deg; animation-delay: -1.3s; }
.hero-emoji-ball { bottom: -8px; left: 18%; font-size: 23px; animation-delay: -2.6s; }
.hero-emoji-target { bottom: -8px; right: 18%; font-size: 23px; --tilt: 8deg; animation-delay: -3.9s; }
@keyframes hero-emoji-float {
  0%, 100% { transform: translateY(0) rotate(var(--tilt)); }
  50% { transform: translateY(-3px) rotate(calc(var(--tilt) + 2deg)); }
}
@media (max-width: 760px) {
  .hero-title-art { margin-inline: auto; margin-bottom: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-emoji { animation: none; transform: rotate(var(--tilt)); }
}

.lesson-detail-card:not([hidden]) {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.header-inner nav { font-size: 15px; font-weight: 500; }
.header-inner nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

/* Standalone support and legal pages share the landing page brand. */
.legal-body { min-height: 100vh; display: flex; flex-direction: column; }
.legal-body .site-header { flex-shrink: 0; }
.legal-body .header-download { margin-left: auto; }
.legal-page { width: min(760px, calc(100% - 40px)); margin: 48px auto 64px; flex: 1; }
.legal-page h1 { font-size: clamp(38px, 7vw, 60px); margin: 20px 0 16px; }
.legal-page h2 { font-family: Sora, sans-serif; font-size: 22px; letter-spacing: -.5px; margin: 36px 0 12px; }
.legal-page p, .legal-page li { font-size: 15px; line-height: 1.85; }
.legal-page a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; overflow-wrap: anywhere; }
.legal-page .updated { color: var(--muted); font-size: 13px; }
.contact-panel {
  display: grid;
  gap: 8px;
  background: var(--header-gradient);
  border-radius: 20px;
  padding: 24px;
  margin: 24px 0;
}
.contact-panel > p { margin: 0; }
.legal-body .site-footer { width: 100%; }
.legal-body .site-footer a[aria-current="page"] { text-decoration: underline; text-underline-offset: 4px; }
@media (max-width: 450px) {
  .legal-body .brand { gap: 6px; }
  .legal-body .brand span { font-size: 17px; }
  .legal-body .brand img { width: 38px; height: 38px; }
  .legal-body .header-download .store-badge { width: 112px; }
  .legal-page { margin-top: 28px; }
}

.phone-status, .lesson-overview .phone-status {
  height: 38px; padding: 0 14px; border-radius: 34px 34px 0 0;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif; font-size: 11px; font-weight: 600;
}
.phone-status > span:first-child { width: 40px; text-align: center; }
.phone-status .island { top: 5px; width: 30%; max-width: 90px; height: 24px; }
.status-icons { display: flex; align-items: center; gap: 3px; }
.status-icons svg { display: block; height: 9px; width: auto; }
.status-icons .status-battery { height: 10px; }

.site-footer .footer-home { display: inline-block; padding: 0; }
