@font-face {
  font-family: Sora;
  src: url("assets/fonts/sora.woff2") format("woff2");
  font-weight: 400 800;
  font-display: swap;
}
:root {
  --paper: #f8f5eb;
  --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: rgba(248, 245, 235, 0.97);
  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-inner nav[hidden] + .header-download {
  margin-left: auto;
}
.header-inner nav a:hover,
.site-footer a:hover {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 5px;
}
.header-download {
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    max-width 520ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 500ms;
}
.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: rgba(248, 245, 235, 0.94);
  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;
}
.header-show-downloads .header-download {
  max-width: 160px;
  opacity: 1;
  pointer-events: auto;
  overflow: visible;
}
.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 {
  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(3, 1fr);
  gap: 30px;
}
.review {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 0;
  background: #243a54;
  padding: 30px 25px;
  border: 1px solid #ffffff30;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}
.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 {
  font-family: Georgia, serif;
  font-size: 20px;
  line-height: 1.55;
  margin: 20px 0 28px;
  flex: 1;
}
.review figcaption {
  display: flex;
  gap: 12px;
  align-items: center;
}
.review figcaption img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
}
.review-avatar {
  position: relative;
  flex: 0 0 48px;
}
.review figcaption .review-flag {
  position: absolute;
  top: -6px;
  right: -6px;
  margin: 0;
  font-size: 20px;
  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;
  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;
  border-top: 1px solid #aab0b7;
  padding-block: 35px 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: 9px;
}
.site-footer nav {
  display: flex;
  gap: 22px;
  align-items: center;
}

.site-footer a {
  padding-block: 10px;
}
dialog {
  border: 1px solid var(--line);
  padding: 45px;
  max-width: 480px;
  width: calc(100% - 36px);
  background: var(--paper);
  color: var(--ink);
}
dialog::backdrop {
  background: #10174388;
}
dialog h2 {
  font-size: 38px;
  letter-spacing: -1px;
}
dialog > p:last-child {
  font-size: 14px;
  line-height: 1.8;
}
dialog button {
  position: absolute;
  right: 12px;
  top: 8px;
  font-size: 28px;
  border: 0;
  background: none;
  cursor: pointer;
}
@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;
    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;
  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;
  }
}
