@charset "UTF-8";
@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("barlow-condensed-black.ttf") format("truetype");
}
:root {
  --ink: #080e15;
  --panel: #131e2a;
  --blue: #63c5ff;
  --white: #ffffff;
  --muted: #bdc8d5;
  --line: #334353;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
button {
  font: inherit;
  cursor: pointer;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(1280px, calc(100% - 96px));
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  z-index: 10;
  background: var(--blue);
  color: var(--ink);
  padding: 16px;
}
.skip-link:focus {
  top: 10px;
}
.site-header {
  height: 105px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  gap: 30px;
}
.brand {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -1px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.site-header nav {
  display: flex;
  gap: 34px;
  font-size: 14px;
  font-weight: 700;
}
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  padding: 17px 23px;
  font-size: 14px;
  font-weight: 800;
  border-radius: 3px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  transform: translateY(-2px);
  text-decoration: none;
}
.button-blue {
  background: var(--blue);
  color: var(--ink);
}
.button-blue:hover {
  background: #98d9ff;
}
.button-dark {
  background: var(--ink);
  color: var(--white);
}
.button span {
  font-size: 20px;
  line-height: 1;
}
.eyebrow {
  font-size: 14px;
  letter-spacing: 1.8px;
  font-weight: 700;
  margin: 0;
  line-height: 1.6;
}
.status-dot {
  width: 7px;
  height: 7px;
  display: inline-block;
  background: var(--blue);
  border-radius: 50%;
  margin-right: 9px;
}
.hero {
  padding: 42px 0 52px;
}
.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-edition {
  font-size: 14px;
  letter-spacing: 1.5px;
  color: var(--muted);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  align-items: end;
  gap: 55px;
  margin-top: 30px;
}
h1 {
  font-family: "Barlow Condensed", Impact, "Arial Narrow", Arial, sans-serif;
  font-size: clamp(62px, 7.6vw, 109px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -2px;
  margin: 0;
}
h1 > span {
  color: var(--blue);
}
.hero-copy {
  padding-bottom: 4px;
}
.hero-copy > p {
  font-size: clamp(22px, 2.1vw, 29px);
  font-weight: 700;
  line-height: 1.27;
  letter-spacing: -0.6px;
  margin: 0 0 20px;
}
.hero-copy > span {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  display: block;
  margin-bottom: 24px;
}
.hero-copy .button {
  max-width: 270px;
}
.text-link {
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 25px;
}
.hero-copy .text-link {
  display: flex;
  margin-top: 20px;
}
.demo-section {
  padding-bottom: 66px;
}
.demo-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 17px;
  gap: 15px;
}
.demo-heading h2 {
  font-size: 14px;
  letter-spacing: 1.3px;
  margin: 0;
  line-height: 1.5;
}
.demo-heading > span {
  font-size: 14px;
  letter-spacing: 1.2px;
  color: var(--blue);
  white-space: nowrap;
}
.demo-index {
  color: var(--muted);
  margin-left: 20px;
}
.screen-shell {
  border: 7px solid #324a60;
  border-radius: 12px;
  overflow: hidden;
  background: #080e15;
  box-shadow: 0 30px 75px #0007;
}
.screen-top {
  height: 54px;
  padding: 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid #334353;
}
.screen-top strong {
  font-size: 14px;
  letter-spacing: 2px;
}
.screen-top strong span {
  color: var(--blue);
  margin: 0 6px;
}
.screen-date {
  font-size: 14px;
  letter-spacing: 2px;
  color: #bdc8d5;
}
.screen-clock {
  font-size: 18px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.slides {
  aspect-ratio: 2.55/1;
  position: relative;
}
.demo-slide {
  width: 100%;
  height: 100%;
  animation: screen-enter 0.4s ease-out;
}
.classes-slide {
  display: grid;
  grid-template-columns: 1.22fr 1fr;
}
.screen-photo {
  position: relative;
  overflow: hidden;
}
.screen-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.screen-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0009, transparent 85%);
}
.photo-copy {
  position: absolute;
  inset: auto 25px 35px;
  z-index: 1;
}
.screen-eyebrow {
  font-size: 14px;
  letter-spacing: 1.7px;
  font-weight: 700;
  color: var(--blue);
}
.photo-copy h3 {
  font-family: "Barlow Condensed", Impact, "Arial Narrow", Arial, sans-serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -1px;
  margin: 17px 0;
}
.photo-copy p {
  font-size: 14px;
  margin: 0;
  color: #ffffff;
}
.schedule {
  padding: 27px 30px 10px;
  background: var(--blue);
  color: var(--ink);
  display: flex;
  flex-direction: column;
}
.schedule-heading {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  padding-bottom: 17px;
}
.schedule-heading > span:last-child {
  font-size: 14px;
}
.class-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid #369ad5;
  flex: 1;
}
.class-row .menu-price {
  font-size: 24px;
  letter-spacing: -1px;
  font-weight: 800;
}
.class-row strong {
  font-size: 14px;
  display: block;
  letter-spacing: -0.2px;
}
.class-row div > span {
  font-size: 14px;
  margin-top: 7px;
  display: block;
}
.class-arrow {
  font-size: 23px;
  margin-left: auto;
}
.schedule-footer {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  margin: 10px 0;
}
.screen-ticker {
  background: #10283c;
  color: var(--blue);
  padding: 14px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
}
.screen-ticker p {
  margin: 0;
  font-size: 14px;
}
.screen-ticker > span:first-child {
  font-size: 14px;
}
.screen-ticker > span:last-child {
  font-size: 17px;
}
.pt-slide {
  position: relative;
  overflow: hidden;
}
.pt-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
}
.pt-copy {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 30px 40px;
  background: linear-gradient(90deg, #080e15, transparent 85%);
}
.pt-copy h3,
.community-copy h3 {
  font-family: "Barlow Condensed", Impact, "Arial Narrow", Arial, sans-serif;
  font-size: clamp(32px, 4.3vw, 62px);
  line-height: 1;
  letter-spacing: -1px;
  margin: 17px 0;
}
.pt-copy em,
.community-copy em {
  font-style: normal;
  color: var(--blue);
}
.pt-copy > p,
.community-copy > p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 20px;
}
.screen-cta {
  display: inline-flex;
  gap: 20px;
  background: var(--blue);
  color: var(--ink);
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.7px;
}
.pt-stamp {
  position: absolute;
  right: 30px;
  bottom: 25px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
  border: 1px solid #ffffff;
  padding: 17px;
  border-radius: 50%;
  transform: rotate(10deg);
  color: var(--blue);
}
.community-slide {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  background: #102338;
}
.community-copy {
  padding: 34px 35px;
}
.community-copy .screen-eyebrow {
  font-size: 14px;
}
.milestone {
  position: relative;
  overflow: hidden;
  background: var(--blue);
  color: var(--ink);
  margin: 23px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.milestone > span:not(.milestone-star) {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  z-index: 1;
}
.milestone strong {
  font-family: "Barlow Condensed", Impact, "Arial Narrow", Arial, sans-serif;
  font-size: clamp(85px, 11vw, 158px);
  line-height: 1;
  margin: 5px 0;
  letter-spacing: -4px;
  z-index: 1;
}
.milestone p {
  font-size: 17px;
  font-weight: 800;
  z-index: 1;
  margin: 15px 0 0;
}
.milestone-star {
  position: absolute;
  right: -26px;
  bottom: -76px;
  font-size: 215px;
  color: #3babee;
  line-height: 1;
}
.demo-controls {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding-top: 22px;
}
.slide-buttons {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.slide-buttons button,
.pause-button {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  padding: 13px 15px;
  font-size: 14px;
  min-height: 44px;
  border-radius: 3px;
}
.slide-buttons button > span {
  margin-left: 10px;
}
.slide-buttons button[aria-pressed="true"] {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--ink);
}
.slide-buttons button:hover,
.pause-button:hover {
  border-color: var(--blue);
}
.pause-button {
  color: var(--white);
  min-width: 85px;
  white-space: nowrap;
}
.demo-caption {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}
.demo-caption p {
  margin: 0;
}
.demo-caption > span {
  font-size: 14px;
  letter-spacing: 1px;
}
.benefits-section {
  background: #f5f8fc;
  color: var(--ink);
  padding: 80px 0;
}
.section-heading .eyebrow {
  color: #34566d;
}
h2 {
  font-family: "Barlow Condensed", Impact, "Arial Narrow", Arial, sans-serif;
  letter-spacing: -1px;
  font-size: clamp(32px, 4vw, 55px);
  line-height: 1.03;
  margin: 20px 0 0;
}
.section-heading h2 > span {
  color: #0064a5;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 44px;
}
.benefit-grid article {
  border-top: 1px solid #b0c1d0;
  padding-top: 23px;
  display: flex;
  flex-direction: column;
}
.benefit-number {
  font-size: 14px;
  letter-spacing: 1.3px;
  font-weight: 700;
  color: #34566d;
}
.benefit-grid h3 {
  font-size: 26px;
  line-height: 1.14;
  letter-spacing: -1px;
  margin: 25px 0 16px;
}
.benefit-grid p {
  font-size: 14px;
  line-height: 1.8;
  color: #405366;
  margin: 0 0 26px;
}
.benefit-grid a {
  font-size: 14px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  margin-top: auto;
}
.benefit-grid a > span {
  font-size: 21px;
}
.benefits-section a:focus-visible,
.cta-section a:focus-visible {
  outline-color: #0064a5;
}
.simple-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}
.simple-section h2 > span {
  color: var(--blue);
}
.simple-section > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}
.simple-section p:not(.eyebrow) {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}
.questions-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding: 70px 0;
}
.questions-section h2 {
  font-size: 35px;
}
.questions details {
  border-bottom: 1px solid var(--line);
}
.questions details:first-child {
  border-top: 1px solid var(--line);
}
summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  font-size: 14px;
  font-weight: 600;
}
summary::-webkit-details-marker {
  display: none;
}
summary span {
  font-size: 22px;
  font-weight: 400;
}
details[open] summary span {
  transform: rotate(45deg);
}
details p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 22px 22px 0;
}
details a {
  text-decoration: underline;
}
.cta-section {
  background: var(--blue);
  color: var(--ink);
  padding: 60px 0;
}
.cta-section .wrap {
  position: relative;
}
.cta-section h2 {
  font-size: clamp(60px, 8.7vw, 125px);
  line-height: 0.95;
  letter-spacing: -3px;
  margin-top: 25px;
}
.cta-section > div > div {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-top: 32px;
}
.site-footer {
  padding: 36px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.site-footer .brand {
  display: block;
  font-size: 23px;
}
.site-footer nav {
  display: flex;
  gap: 25px;
  font-size: 14px;
}
.site-footer > p {
  font-size: 14px;
  color: var(--muted);
}
@keyframes screen-enter {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}
@media (min-width: 1550px) {
  .hero-grid {
    grid-template-columns: 1.7fr 1fr;
  }
  .hero-copy {
    padding-left: 25px;
  }
}
@media (max-width: 1050px) {
  .wrap {
    width: calc(100% - 56px);
  }
  .hero-grid {
    gap: 30px;
    grid-template-columns: 1.5fr 1fr;
  }
  .hero-copy > p {
    font-size: 24px;
  }
  .hero-copy > span {
    font-size: 14px;
  }
  h1 {
    font-size: 8vw;
  }
  .slides {
    aspect-ratio: 2.3/1;
  }
  .schedule {
    padding: 20px 20px 10px;
  }
  .class-row {
    gap: 12px;
    padding: 17px 0;
  }
  .class-row .menu-price {
    font-size: 21px;
  }
  .class-row strong {
    font-size: 14px;
  }
  .class-row div > span {
    font-size: 14px;
  }
  .photo-copy {
    inset: auto 22px 30px;
  }
  .pt-copy {
    padding: 25px;
  }
  .pt-copy h3,
  .community-copy h3 {
    font-size: 4.7vw;
  }
  .community-copy {
    padding: 26px;
  }
  .milestone {
    margin: 18px;
    padding: 15px;
  }
  .screen-cta {
    font-size: 14px;
    padding: 10px;
  }
  .benefit-grid {
    gap: 26px;
  }
  .questions-section {
    gap: 40px;
  }
  .slide-buttons button {
    padding: 12px 10px;
  }
  .slide-buttons button > span {
    margin-left: 6px;
  }
}
@media (max-width: 760px) {
  .wrap {
    width: calc(100% - 36px);
  }
  .site-header {
    height: auto;
    min-height: 90px;
    padding: 20px 0;
    gap: 18px;
    flex-wrap: wrap;
  }
  .brand {
    font-size: 21px;
  }
  .site-header nav {
    order: 3;
    width: 100%;
    gap: 25px;
    font-size: 14px;
  }
  .header-cta {
    min-height: 43px;
    padding: 12px 15px;
    gap: 15px;
    font-size: 14px;
  }
  .hero {
    padding: 28px 0 35px;
  }
  .hero-edition {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    margin-top: 25px;
    gap: 25px;
  }
  h1 {
    font-size: clamp(54px, 12vw, 90px);
    letter-spacing: -1.5px;
  }
  .hero-copy > p {
    font-size: 23px;
  }
  .hero-copy > span {
    font-size: 14px;
  }
  .hero-copy .button {
    max-width: none;
  }
  .hero-copy .text-link {
    display: inline-flex;
    margin: 18px 0 0 18px;
  }
  .hero .eyebrow {
    font-size: 14px;
  }
  .demo-heading {
    align-items: flex-start;
  }
  .demo-heading h2 {
    font-size: 14px;
    letter-spacing: 0.7px;
    max-width: 240px;
  }
  .demo-heading > span {
    font-size: 14px;
  }
  .demo-index {
    display: none;
  }
  .screen-shell {
    border-width: 4px;
    border-radius: 8px;
  }
  .screen-top {
    height: 43px;
    padding: 0 16px;
  }
  .screen-top strong {
    font-size: 14px;
  }
  .screen-date {
    font-size: 14px;
    letter-spacing: 1px;
  }
  .screen-clock {
    font-size: 14px;
  }
  .slides {
    aspect-ratio: auto;
    height: 600px;
  }
  .classes-slide {
    grid-template-columns: 1fr;
    grid-template-rows: 300px 300px;
  }
  .screen-photo img {
    object-position: center 40%;
  }
  .photo-copy {
    inset: auto 25px 25px;
  }
  .photo-copy h3 {
    font-size: 46px;
  }
  .schedule {
    padding: 18px 24px;
  }
  .schedule-heading {
    font-size: 14px;
    padding-bottom: 12px;
  }
  .class-row {
    padding: 15px 0;
    gap: 20px;
  }
  .class-row .menu-price {
    font-size: 25px;
  }
  .class-row strong {
    font-size: 14px;
  }
  .class-row div > span {
    font-size: 14px;
  }
  .schedule-footer {
    margin: 10px 0 0;
    font-size: 14px;
  }
  .screen-ticker {
    padding: 14px 16px;
    gap: 10px;
  }
  .screen-ticker > span:first-child {
    display: none;
  }
  .screen-ticker p {
    font-size: 14px;
    letter-spacing: 1px;
  }
  .pt-photo {
    object-position: 64% center;
  }
  .pt-copy {
    padding: 35px 25px;
    background:
      linear-gradient(90deg, #080e15bb, transparent),
      linear-gradient(0deg, #080e15b3, transparent 55%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .pt-copy h3 {
    font-size: 62px;
    margin-top: auto;
  }
  .pt-copy p {
    font-size: 14px;
  }
  .screen-cta {
    font-size: 14px;
    padding: 13px;
  }
  .pt-stamp {
    top: 30px;
    bottom: auto;
    right: 20px;
    font-size: 14px;
    padding: 15px;
  }
  .community-slide {
    grid-template-columns: 1fr;
    grid-template-rows: 280px 320px;
  }
  .community-copy {
    padding: 25px;
  }
  .community-copy h3 {
    font-size: 42px;
    margin: 16px 0;
  }
  .community-copy > p {
    font-size: 14px;
    margin-bottom: 18px;
  }
  .community-copy .screen-eyebrow {
    font-size: 14px;
  }
  .milestone {
    margin: 0 20px 20px;
    padding: 20px;
  }
  .milestone strong {
    font-size: 140px;
  }
  .milestone p {
    font-size: 19px;
  }
  .milestone > span:not(.milestone-star) {
    font-size: 14px;
  }
  .demo-controls {
    align-items: stretch;
    gap: 10px;
  }
  .slide-buttons {
    display: grid;
    grid-template-columns: 1fr;
    flex: 1;
    gap: 6px;
  }
  .slide-buttons button {
    text-align: left;
    font-size: 14px;
  }
  .pause-button {
    align-self: flex-start;
    min-width: 75px;
  }
  .demo-caption > span {
    display: none;
  }
  .demo-caption {
    font-size: 14px;
  }
  .demo-section {
    padding-bottom: 45px;
  }
  .benefits-section {
    padding: 50px 0;
  }
  h2 {
    font-size: 39px;
  }
  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
  }
  .benefit-grid h3 {
    font-size: 29px;
  }
  .benefit-grid p {
    font-size: 14px;
    max-width: 490px;
  }
  .benefit-grid a {
    font-size: 14px;
  }
  .simple-section {
    padding: 50px 0;
  }
  .simple-section > div {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .simple-section h2 {
    font-size: clamp(29px, 6vw, 44px);
  }
  .questions-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 50px 0;
  }
  .questions-section h2 {
    font-size: 32px;
  }
  .cta-section {
    padding: 45px 0;
  }
  .cta-section h2 {
    font-size: clamp(49px, 11vw, 82px);
    letter-spacing: -1.5px;
  }
  .cta-section > div > div {
    gap: 25px;
    flex-wrap: wrap;
  }
  .site-footer {
    flex-wrap: wrap;
    padding: 30px 0;
    gap: 24px;
  }
  .site-footer > p {
    width: 100%;
    margin: 0;
  }
}
@media (max-width: 380px) {
  .wrap {
    width: calc(100% - 28px);
  }
  h1 {
    font-size: 12vw;
  }
  .hero-copy .text-link {
    margin-left: 0;
    display: flex;
  }
  .screen-date {
    display: none;
  }
  .screen-top {
    padding-inline: 13px;
  }
  .class-row {
    gap: 14px;
  }
  .class-row strong {
    font-size: 14px;
  }
  .class-row div > span {
    font-size: 14px;
  }
  .class-arrow {
    font-size: 18px;
  }
  .schedule {
    padding-inline: 18px;
  }
  .pt-copy h3 {
    font-size: 52px;
  }
  .screen-cta {
    font-size: 14px;
  }
  .community-copy h3 {
    font-size: 37px;
  }
  .community-copy {
    padding: 24px 18px;
  }
  .demo-heading h2 {
    max-width: 190px;
  }
  .questions-section h2 {
    font-size: 29px;
  }
  .cta-section .eyebrow {
    font-size: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}

/* Official branding and readable type across every screen size. */
.brand img {
  display: block;
  width: 286px;
  max-width: 100%;
  height: auto;
}
.site-header {
  min-height: 120px;
  height: auto;
  padding-block: 18px;
}
.site-header nav,
.button,
.text-link,
.benefit-grid a,
.site-footer nav {
  font-size: 17px;
}
.hero-copy > span,
.benefit-grid p,
.simple-section p:not(.eyebrow),
details p {
  font-size: 18px;
  line-height: 1.7;
}
summary {
  font-size: 18px;
  line-height: 1.5;
}
.eyebrow,
.demo-heading h2,
.demo-heading > span,
.hero-edition,
.benefit-number,
.demo-caption,
.demo-caption > span {
  font-size: 14px;
  line-height: 1.6;
}
.benefit-grid h3 {
  font-size: 32px;
}
.screen-top {
  height: 68px;
}
.screen-top strong {
  font-size: 22px;
}
.screen-clock {
  font-size: 24px;
}
.slides {
  aspect-ratio: auto;
  height: 490px;
}
.schedule-heading {
  font-size: 18px;
}
.class-row .menu-price {
  font-size: 32px;
}
.class-row strong {
  font-size: 20px;
}
.class-row div > span {
  font-size: 16px;
  line-height: 1.5;
}
.photo-copy p,
.pt-copy > p,
.community-copy > p {
  font-size: 18px;
  line-height: 1.6;
}
.screen-eyebrow,
.community-copy .screen-eyebrow,
.screen-cta {
  font-size: 14px;
  line-height: 1.5;
}
.screen-cta {
  max-width: 100%;
}
.pt-copy,
.community-copy {
  padding-top: 38px;
}
.pt-copy h3 {
  font-size: 70px;
}
.community-copy h3 {
  font-size: 64px;
}
.pt-stamp {
  display: none;
}
.photo-copy h3 {
  font-size: 64px;
}
.screen-photo img,
.pt-photo {
  filter: grayscale(1);
}
.screen-ticker {
  line-height: 1.5;
}
.slide-buttons button,
.pause-button {
  font-size: 16px;
  padding: 15px 17px;
}
.demo-controls {
  align-items: flex-start;
}
.milestone p {
  font-size: 24px;
}
.site-footer .brand {
  max-width: 286px;
}
@media (max-width: 1050px) {
  .site-header {
    flex-wrap: wrap;
  }
  .site-header nav {
    gap: 24px;
  }
  .hero-grid {
    grid-template-columns: 1.4fr 1fr;
  }
  .hero-edition {
    display: none;
  }
  .classes-slide {
    grid-template-columns: 1fr 1.1fr;
  }
  .class-row {
    gap: 14px;
  }
  .class-row strong {
    font-size: 17px;
  }
  .class-row .menu-price {
    font-size: 27px;
  }
  .class-arrow {
    display: none;
  }
  .photo-copy h3 {
    font-size: 52px;
  }
  .community-copy h3 {
    font-size: 54px;
  }
  .slide-buttons {
    flex: 1;
  }
  .demo-heading {
    align-items: flex-start;
  }
  .screen-date {
    display: none;
  }
}
@media (max-width: 760px) {
  .brand img {
    width: 230px;
  }
  .site-header .brand {
    width: 100%;
  }
  .site-header nav {
    order: initial;
    width: auto;
    flex: 1;
    flex-wrap: wrap;
    gap: 16px;
  }
  .site-header nav,
  .header-cta {
    font-size: 16px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy .text-link {
    margin-left: 0;
    display: flex;
  }
  .hero-copy > span {
    font-size: 18px;
  }
  .hero .eyebrow,
  .demo-heading h2,
  .demo-heading > span,
  .demo-caption {
    font-size: 14px;
  }
  .demo-heading {
    flex-direction: column;
    gap: 12px;
  }
  .demo-heading h2 {
    max-width: none;
  }
  .slides {
    height: 860px;
  }
  .classes-slide {
    grid-template-columns: 1fr;
    grid-template-rows: 350px 510px;
  }
  .class-row strong {
    font-size: 18px;
  }
  .class-row .menu-price {
    font-size: 28px;
  }
  .class-row div > span {
    font-size: 16px;
  }
  .schedule-heading {
    font-size: 18px;
  }
  .screen-top strong {
    font-size: 18px;
  }
  .screen-top {
    height: 60px;
  }
  .screen-ticker p {
    font-size: 14px;
  }
  .screen-ticker {
    letter-spacing: 0.5px;
  }
  .pt-copy h3 {
    font-size: 70px;
  }
  .pt-copy {
    padding: 28px 24px;
  }
  .community-slide {
    grid-template-rows: 440px 420px;
  }
  .community-copy {
    padding: 30px 24px;
  }
  .community-copy h3 {
    font-size: 52px;
  }
  .community-copy .screen-eyebrow {
    font-size: 14px;
  }
  .screen-cta {
    font-size: 14px;
  }
  .milestone > span:not(.milestone-star) {
    font-size: 14px;
  }
  .slide-buttons button {
    font-size: 16px;
    padding-inline: 12px;
  }
  .slide-buttons button > span {
    margin-left: 6px;
  }
  .pause-button {
    font-size: 16px;
    min-width: 78px;
    padding-inline: 10px;
  }
  .slide-buttons button {
    display: flex;
    line-height: 1.5;
  }
  .benefit-grid p,
  details p {
    font-size: 18px;
  }
  .benefit-grid a {
    font-size: 17px;
  }
  .cta-section .eyebrow {
    font-size: 14px;
  }
}
.demo-heading h2 {
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0.8px;
}
.hero-copy .button {
  max-width: none;
  width: fit-content;
}
/* Standalone cafe website pages. */
.cafe-site-header {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.cafe-site-header .cafe-site-nav {
  order: 3;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  flex: auto;
  gap: 20px 30px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.cafe-site-nav a[aria-current="page"] {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 7px;
}
.more-nav {
  position: relative;
}
.more-nav summary {
  padding: 0;
  font-size: 17px;
}
.more-nav > div {
  position: absolute;
  right: 0;
  top: 35px;
  width: 240px;
  padding: 20px;
  display: grid;
  gap: 18px;
  background: #152537;
  border: 1px solid var(--line);
  z-index: 20;
  box-shadow: 0 15px 35px #0006;
}
.cafe-site-footer {
  align-items: flex-start;
  flex-wrap: wrap;
  padding-top: 45px;
}
.cafe-site-footer nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 30px;
  flex-basis: 60%;
  font-size: 16px;
}
.cafe-site-footer > p {
  width: 100%;
}
.inner-hero {
  padding-block: 40px 55px;
}
.back-link {
  display: inline-block;
  margin-bottom: 35px;
  font-size: 16px;
  color: var(--muted);
}
.inner-hero h1 {
  font-size: clamp(48px, 6.5vw, 94px);
  line-height: 1;
  margin-top: 20px;
  overflow-wrap: anywhere;
}
.inner-lead {
  max-width: 850px;
  font-size: 22px;
  line-height: 1.6;
  color: var(--muted);
  margin-block: 25px;
}
.inner-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.inner-content {
  padding-bottom: 65px;
}
.inner-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
}
.inner-card {
  padding: 30px;
  background: #142234;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.inner-card h2 {
  font:
    700 28px/1.25 Arial,
    Helvetica,
    sans-serif;
  letter-spacing: -0.5px;
  margin: 0 0 18px;
}
.inner-card p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
}
.page-note {
  border-left: 3px solid var(--blue);
  padding: 20px 24px;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 35px;
  background: #132235;
}
.related-section {
  padding-bottom: 65px;
}
.related-section > div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
}
.related-section a {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 22px;
  font-size: 18px;
  border: 1px solid var(--line);
  flex: 1;
}
.related-section a:hover {
  border-color: var(--blue);
}
.pricing-section {
  padding-bottom: 30px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.price-card {
  padding: 30px;
  background: #132235;
  border: 1px solid #36536d;
  border-radius: 6px;
}
.price-card h2 {
  font:
    700 24px/1.25 Arial,
    Helvetica,
    sans-serif;
  margin: 0;
  letter-spacing: 0;
}
.price {
  font-size: 58px;
  font-weight: 800;
  color: var(--blue);
  margin: 28px 0 15px;
  line-height: 1.1;
}
.price span {
  display: block;
  font-size: 18px;
  color: var(--white);
  margin-top: 10px;
  font-weight: 400;
}
.annual-price {
  font-size: 19px;
  margin: 0 0 25px;
}
.price-card .button {
  width: 100%;
  padding-inline: 18px;
}
.equipment-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
  margin-bottom: 40px;
}
.equipment-panel img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  border-radius: 6px;
}
.equipment-panel p:not(.eyebrow) {
  font-size: 22px;
  line-height: 1.7;
}
.faq-page {
  padding-bottom: 65px;
}
.faq-page summary {
  font-size: 21px;
  padding: 25px 0;
}
.faq-page details p {
  font-size: 18px;
  max-width: 900px;
}
.legal-content .inner-card-grid {
  grid-template-columns: 1fr;
  max-width: 950px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 65px;
  padding-bottom: 70px;
}
.contact-layout aside p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}
.contact-layout h2 {
  margin: 0 0 22px;
}
.contact-email {
  font-size: 22px;
  color: var(--blue);
  overflow-wrap: anywhere;
}
.cafe-contact-form {
  display: grid;
  gap: 23px;
}
.cafe-contact-form label {
  display: grid;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
}
.cafe-contact-form label > span {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
}
.cafe-contact-form input,
.cafe-contact-form textarea {
  width: 100%;
  border: 1px solid #54708a;
  border-radius: 4px;
  background: #152537;
  color: white;
  padding: 15px;
  font:
    18px/1.5 Arial,
    Helvetica,
    sans-serif;
}
.cafe-contact-form input:focus-visible,
.cafe-contact-form textarea:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}
.cafe-contact-form textarea {
  resize: vertical;
  min-height: 160px;
}
.cafe-contact-form p {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  color: var(--muted);
}
.cafe-contact-form p a {
  text-decoration: underline;
}
.cafe-contact-form button {
  border: 0;
  justify-self: start;
}
.form-notice {
  padding: 24px;
  border: 1px solid var(--blue);
  background: #19374b;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
}
.form-notice ul {
  margin-bottom: 0;
  padding-left: 20px;
}
.form-error {
  border-color: #ffc2bd;
}
.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
@media (max-width: 1050px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cafe-site-header .cafe-site-nav {
    gap: 20px;
  }
  .contact-layout {
    gap: 35px;
  }
}
@media (max-width: 760px) {
  .cafe-site-header .brand {
    width: auto;
    max-width: 100%;
  }
  .cafe-site-header .cafe-site-nav {
    gap: 18px 23px;
  }
  .cafe-site-nav a,
  .more-nav summary {
    font-size: 16px;
  }
  .more-nav > div {
    left: 0;
    right: auto;
    width: 210px;
  }
  .cafe-site-footer nav {
    flex-basis: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .inner-hero {
    padding-block: 30px 40px;
  }
  .inner-hero h1 {
    font-size: clamp(42px, 9vw, 68px);
  }
  .inner-lead {
    font-size: 20px;
  }
  .inner-card-grid,
  .pricing-grid,
  .equipment-panel,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .inner-card,
  .price-card {
    padding: 25px;
  }
  .inner-card h2 {
    font-size: 25px;
  }
  .page-note {
    padding: 18px;
  }
  .related-section > div {
    flex-direction: column;
  }
  .equipment-panel {
    gap: 25px;
  }
  .faq-page summary {
    font-size: 18px;
  }
  .contact-layout {
    gap: 40px;
  }
  .cafe-site-footer .brand {
    max-width: 100%;
  }
}
