@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;450;500;550;600;650;700&family=DM+Serif+Display:ital@0;1&display=swap");
:root {
  --paper: #f5f4ee;
  --cream: #f1efe5;
  --ink: #263e33;
  --forest: #304d3f;
  --muted: #768076;
  --line: #dcded3;
  --gold: #d9ad3d;
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  color-scheme: light;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
button,
input,
a {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
button:disabled {
  cursor: default;
  opacity: 0.45;
}
a {
  color: inherit;
  text-decoration: none;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #b78322;
  outline-offset: 5px;
}
button {
  border: 0;
}
button svg,
a svg {
  pointer-events: none;
}
button > *,
a > * {
  pointer-events: none;
}
[hidden] {
  display: none !important;
}
h1,
h2,
h3,
p {
  margin: 0;
}
button {
  background: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 20px;
  top: -80px;
  z-index: 100;
  background: var(--forest);
  color: white;
  padding: 14px 20px;
}
.skip-link:focus {
  top: 16px;
}
.site-header {
  height: 108px;
  max-width: 1600px;
  margin: auto;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 5;
}
.wordmark {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 43px;
  letter-spacing: -4px;
  display: inline-flex;
  align-items: baseline;
  line-height: 1;
}
.brand-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  margin-left: 5px;
}
.header-cta {
  font-size: 14px;
  font-weight: 550;
  display: flex;
  gap: 25px;
  align-items: center;
  border: 1px solid #bdc4b7;
  border-radius: 30px;
  padding: 13px 21px;
  transition: background 0.2s;
}
.header-cta:hover {
  background: #e8eadf;
}
.header-cta span {
  font-size: 19px;
}
.intro {
  min-height: calc(100svh - 108px);
  position: relative;
  display: grid;
  place-items: center;
  padding: 64px 24px 150px;
  overflow: hidden;
  z-index: 2;
  background: var(--paper);
  transition: opacity 280ms ease-out;
  pointer-events: none;
}
.intro:before {
  content: "";
  position: absolute;
  pointer-events: none;
  inset: 4% 7% 20%;
  background: radial-gradient(
    ellipse,
    rgba(217, 224, 191, 0.43),
    transparent 64%
  );
  animation: halo 2.8s ease-out both;
}
.intro-inner {
  position: relative;
  text-align: center;
  margin-top: -24px;
}
.intro h1 {
  font-family: var(--serif);
  font-size: clamp(55px, 6.8vw, 110px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -3.4px;
  animation: intro-title 1.8s ease-out both;
}
.primary {
  background: var(--forest);
  color: #fffef6;
  min-height: 56px;
  padding: 13px 19px 13px 28px;
  border-radius: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  font-size: 16px;
  font-weight: 500;
  transition:
    background 0.2s,
    transform 0.2s;
}
.primary:hover {
  background: #213c2e;
  transform: translateY(-2px);
}
.button-arrow {
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 22px;
}
.scroll-cue {
  pointer-events: auto;
  margin-top: 40px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  color: var(--forest);
  font-size: 13px;
  animation: button-reveal 1s 0.8s both;
}
.scroll-cue svg {
  width: 28px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.scroll-wheel {
  animation: scroll-invitation 1.8s ease-in-out infinite;
}
@keyframes scroll-invitation {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  50% {
    transform: translateY(5px);
    opacity: 1;
  }
}
.intro-foot {
  position: absolute;
  bottom: 40px;
  left: 6.4%;
  right: 6.4%;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 13px;
  color: var(--muted);
}
.intro-note {
  display: flex;
  align-items: center;
  gap: 10px;
}
.intro-note i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--forest);
}
.showcase {
  position: relative;
  z-index: 1;
}
.intro-active main {
  min-height: calc(100svh + 80px);
}
.intro-active .site-header {
  position: fixed;
  inset: 0 0 auto;
}
.intro-active .intro {
  position: fixed;
  inset: 0;
  height: 100svh;
  padding-top: 172px;
}
.intro.leaving {
  opacity: 0;
}
.showcase-grid {
  max-width: 1230px;
  min-height: 780px;
  margin: 0 auto;
  padding: 32px 50px 65px;
  display: grid;
  grid-template-columns: minmax(460px, 1.2fr) minmax(330px, 1fr);
  grid-template-rows: auto 1fr auto;
  column-gap: 80px;
  align-items: start;
}
.feature-intro {
  grid-column: 2;
  grid-row: 1;
  padding-top: 18px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #68755f;
  margin-bottom: 20px;
}
.live-dot {
  display: inline-block;
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  background: #74935c;
  border-radius: 50%;
}
.feature-intro h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 53px;
  letter-spacing: -1.4px;
  line-height: 1.06;
}
.feature-intro > p {
  font-size: 15px;
  line-height: 1.65;
  color: #738071;
  max-width: 350px;
  margin-top: 18px;
}
.feature-menu {
  grid-column: 2;
  grid-row: 2;
  margin-top: 28px;
}
.feature {
  border-top: 1px solid var(--line);
  position: relative;
}
.feature:last-child {
  border-bottom: 1px solid var(--line);
}
.feature-title {
  display: flex;
  align-items: center;
  text-align: left;
  width: 100%;
  padding: 19px 0;
  gap: 16px;
  font-size: 19px;
  letter-spacing: -0.45px;
  color: #8b9285;
  transition: color 0.2s;
}
.feature-title:hover {
  color: var(--forest);
}
.feature-title .icon {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
}
.feature-title strong {
  font-weight: 500;
  flex: 1;
}
.feature-toggle {
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  width: 20px;
  text-align: center;
}
.feature.active .feature-title {
  color: var(--ink);
}
.feature-body {
  display: grid;
  grid-template-rows: 0fr;
  transition:
    grid-template-rows 0.25s,
    opacity 0.2s;
  opacity: 0;
}
.feature.active .feature-body {
  grid-template-rows: 1fr;
  opacity: 1;
}
.feature-body-inner {
  overflow: hidden;
}
.feature-body p {
  font-size: 14px;
  line-height: 1.7;
  color: #6e7a6b;
  margin: 0 24px 20px 36px;
  max-width: 330px;
}
.feature.active:before {
  content: "";
  position: absolute;
  left: -17px;
  top: 24px;
  width: 4px;
  height: 17px;
  background: var(--forest);
  border-radius: 3px;
}
.menu-foot {
  grid-column: 2;
  grid-row: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 22px;
  font-size: 12px;
  color: #75806d;
}
.progress-dots {
  display: flex;
  gap: 5px;
}
.progress-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #cdd3c5;
}
.progress-dots span.active {
  background: var(--forest);
  width: 15px;
  border-radius: 5px;
}
.next-feature {
  margin-left: auto;
  min-height: 44px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--forest);
}
.phone-stage {
  grid-column: 1;
  grid-row: 1/4;
  position: relative;
  justify-self: end;
  align-self: center;
  margin-right: 32px;
  perspective: 1400px;
}
.phone {
  position: relative;
  width: 350px;
  height: 704px;
  border-radius: 53px;
  background: linear-gradient(
    115deg,
    #8c9388,
    #d0d2c6 14%,
    #6b7568 50%,
    #b4bbae
  );
  padding: 6px;
  box-shadow:
    0 0 0 1px #929b8d,
    2px 3px 0 2px #52614c,
    5px 9px 0 3px #d0d3c6,
    17px 28px 50px -18px #28371f55,
    0 4px 7px #48553c44;
  transform: rotateY(-5deg) rotateZ(-1deg);
  animation: phone-reveal 1.1s cubic-bezier(0.2, 0.75, 0.2, 1) both;
  transition: transform 0.4s;
}
.phone:hover,
.phone:focus-within {
  transform: rotateY(0) rotateZ(0);
}
.phone-glass {
  background: var(--cream);
  border: 2px solid #526047;
  border-radius: 47px;
  position: relative;
  height: 100%;
  overflow: hidden;
  isolation: isolate;
}
.phone-side {
  position: absolute;
  left: -4px;
  background: #78846f;
  width: 3px;
  border-radius: 3px;
  box-shadow: -1px 0 1px #606d55;
}
.side-one {
  height: 24px;
  top: 111px;
}
.side-two {
  height: 60px;
  top: 156px;
}
.phone:after {
  content: "";
  position: absolute;
  right: -5px;
  width: 3px;
  height: 76px;
  top: 177px;
  background: #8b957f;
  border-radius: 3px;
}
.status-bar {
  height: 48px;
  padding: 11px 25px 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 650;
  font-size: 12px;
  color: #26352b;
}
.camera {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 22px;
  width: 88px;
  background: #202a21;
  top: 10px;
  border-radius: 15px;
}
.camera:after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34473c;
  right: 9px;
  top: 8px;
  box-shadow: inset 0 0 1px 1px #44625b;
}
.status-icons {
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
}
.status-icons svg {
  display: block;
  flex-shrink: 0;
  width: 16px;
  height: 12px;
}
.status-icons .signal {
  width: 18px;
  height: 13px;
  fill: currentColor;
}
.battery {
  display: block;
  width: 19px;
  height: 10px;
  border: 1px solid #7f8a78;
  border-radius: 3px;
  position: relative;
}
.battery:before {
  content: "";
  position: absolute;
  background: #26352b;
  inset: 1px;
  border-radius: 1px;
}
.battery:after {
  content: "";
  position: absolute;
  width: 2px;
  height: 4px;
  right: -3px;
  top: 2px;
  background: #9ca390;
}
.phone-screen {
  height: calc(100% - 48px);
  overflow: auto;
  overscroll-behavior-y: auto;
  scrollbar-width: none;
  padding: 17px 19px 104px;
  outline: none;
}
.phone-screen::-webkit-scrollbar {
  display: none;
}
.screen-content {
  animation: screen-in 0.25s ease-out both;
}
.app-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.app-heading h3,
.screen-title {
  font: 400 35px/1.05 var(--serif);
  letter-spacing: -0.8px;
}
.app-heading-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.schedule-heading {
  gap: 6px;
}
.schedule-heading h3.long-day {
  font-size: 27px;
}
.app-heading-actions button {
  height: 36px;
  width: 30px;
  padding: 5px;
  display: grid;
  place-items: center;
}
.avatar {
  width: 31px;
  height: 31px;
  background: var(--forest);
  color:  var(--app-on-accent, var(--cream));
  display: grid;
  place-items: center;
  border-radius: 50%;
  font: 16px var(--serif);
}
.icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.greeting {
  font-size: 18px;
  font-weight: 600;
  margin-top: 11px;
  letter-spacing: -0.5px;
}
.app-subtitle {
  font-size: 12px;
  color: var(--app-muted, #7c8477);
  margin-top: 6px;
  line-height: 1.6;
}
.calendar-label {
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--app-muted, #7c8477);
}
.calendar-label .icon {
  width: 14px;
  height: 14px;
}
.date-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  margin-top: 13px;
}
.date-button {
  padding: 0;
  min-height: 68px;
  text-align: center;
  font-size: 12px;
  color: var(--app-muted, #7e8779);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.date-button strong {
  font-size: 18px;
  line-height: 38px;
  font-weight: 450;
  width: 38px;
  border-radius: 50%;
  color: var(--app-muted, #798472);
  transition:
    background 0.2s,
    color 0.2s;
}
.date-button.active strong {
  background: var(--forest);
  color:  var(--app-on-accent, var(--cream));
}
.date-button i {
  width: 3px;
  height: 3px;
  background: var(--forest);
  border-radius: 50%;
}
.date-button.empty i {
  visibility: hidden;
}
.app-filter {
  display: flex;
  gap: 19px;
  overflow: auto;
  scrollbar-width: none;
  border-top: 1px solid var(--app-line, #dedfd3);
  border-bottom: 1px solid var(--app-line, #dedfd3);
  margin: 15px 0 6px;
  white-space: nowrap;
}
.app-filter button {
  padding: 13px 0 10px;
  font-size: 12px;
  color: var(--app-muted, #8a9081);
  position: relative;
  min-height: 44px;
}
.app-filter button.active {
  color: var(--forest);
}
.app-filter button.active:after {
  position: absolute;
  content: "";
  height: 2px;
  background: var(--forest);
  bottom: 6px;
  left: 0;
  right: 0;
  border-radius: 2px;
}
.class-card {
  display: flex;
  gap: 16px;
  align-items: start;
  width: 100%;
  text-align: left;
  padding: 19px 0 15px;
  min-height: 94px;
  transition: background 0.2s;
}
.class-card:hover {
  background: var(--app-surface, #e8e9dc);
}
.class-time {
  width: 63px;
  flex-shrink: 0;
  padding-top: 3px;
  font-size: 12px;
  color: var(--app-muted, #78816f);
}
.class-info {
  padding-left: 14px;
  border-left: 3px solid var(--gold);
  flex: 1;
  min-width: 0;
}
.class-info.sage {
  border-color: var(--app-line, #89a48a);
}
.class-info.lilac {
  border-color: var(--app-line, #a2a4bc);
}
.class-name {
  display: block;
  font-size: 16px;
  font-weight: 450;
  line-height: 1.3;
  letter-spacing: -0.3px;
}
.class-teacher {
  display: block;
  font-size: 12px;
  color: var(--app-muted, #7e8576);
  margin: 7px 0;
}
.class-spots {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--app-muted, #5b7553);
  font-size: 12px;
}
.class-spots:before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--app-accent, #789364);
  border-radius: 50%;
}
.class-card > .icon {
  width: 12px;
  height: 12px;
  align-self: center;
  color: var(--app-muted, #8f9986);
}
.app-nav {
  position: absolute;
  left: 19px;
  right: 19px;
  bottom: 23px;
  height: 57px;
  background: var(--app-accent, #465c4dee);
  box-shadow: 0 8px 20px var(--app-shadow, #26381c20);
  border: 1px solid var(--app-line, #7d8b7399);
  border-radius: 34px;
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 2;
  padding: 4px 7px;
}
.app-nav button {
  height: 44px;
  width: 48px;
  color: var(--app-muted, #aab5a3);
  border-radius: 24px;
  padding: 10px 12px;
  display: grid;
  place-items: center;
  transition:
    background 0.2s,
    color 0.2s;
}
.app-nav button.active {
  color: var(--app-on-accent, #f7f7e9);
  background: var(--app-accent, #84937c55);
}
.app-nav .icon {
  width: 23px;
  height: 23px;
}
.home-indicator {
  position: absolute;
  bottom: 7px;
  width: 92px;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  border-radius: 4px;
  background: var(--app-accent, #344734);
}
.demo-caption {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  position: relative;
  margin-top: 23px;
  font-size: 12px;
  color: #7c8575;
  white-space: nowrap;
}
.caption-divider {
  height: 10px;
  width: 1px;
  background: #bdc7b3;
  margin: 0 2px;
}
.annotation {
  position: absolute;
  z-index: 3;
  left: -133px;
  top: 238px;
  width: 137px;
  pointer-events: none;
  color: #71815e;
  font-size: 13px;
  line-height: 1.5;
  transform: rotate(-7deg);
  animation: annotation-in 0.6s 0.65s both;
}
.annotation span {
  display: block;
  max-width: 108px;
}
.annotation svg {
  width: 111px;
  height: 53px;
  overflow: visible;
  margin: 7px 0 0 7px;
  fill: none;
  stroke: #84936f;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.annotation path {
  stroke-dasharray: 190;
  stroke-dashoffset: 190;
  animation: draw-arrow 0.8s 0.9s forwards;
}
.mobile-explanation {
  display: none;
}
.closing {
  max-width: 1310px;
  margin: 40px auto 0;
  padding: 72px 80px 76px;
  background: #e7ebdd;
  border: 1px solid #dbe1cf;
  border-radius: 7px;
  display: flex;
  justify-content: space-between;
  gap: 48px;
  align-items: center;
}
.closing-kicker {
  font-size: 13px;
  margin-bottom: 22px;
  color: #617158;
}
.closing h2 {
  font-family: var(--serif);
  font-size: 59px;
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -1.6px;
}
.closing-action {
  max-width: 340px;
  padding-right: 22px;
}
.closing-action > p {
  font-size: 16px;
  line-height: 1.7;
  color: #68755e;
  margin-bottom: 25px;
}
.site-footer {
  max-width: 1310px;
  margin: auto;
  padding: 42px 0;
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 12px;
  color: #74816a;
}
.site-footer .wordmark {
  font-size: 34px;
  color: var(--ink);
}
.site-footer .brand-dot {
  width: 6px;
  height: 6px;
}
.site-footer button {
  margin-left: auto;
  min-height: 44px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.noscript {
  text-align: center;
  padding: 30px;
}
dialog {
  max-width: 440px;
  width: calc(100% - 40px);
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 25px 100px #20352233;
}
dialog::backdrop {
  background: #17271e66;
  backdrop-filter: blur(5px);
}
dialog h2 {
  font: 36px/1.15 var(--serif);
  margin: 10px 0 18px;
}
dialog p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 25px;
}
.dialog-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 44px;
  height: 44px;
  font-size: 27px;
}
@keyframes intro-title {
  from {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(10px);
    text-shadow: 0 0 35px #92ab7770;
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
    text-shadow: 0 0 0 transparent;
  }
}
@keyframes halo {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes button-reveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes phone-reveal {
  from {
    opacity: 0;
    transform: translateY(55px) rotateY(-20deg) rotateZ(-6deg);
  }
  to {
    opacity: 1;
    transform: rotateY(-5deg) rotateZ(-1deg);
  }
}
@keyframes screen-in {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes annotation-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes draw-arrow {
  to {
    stroke-dashoffset: 0;
  }
}
@media (min-width: 1500px) {
  .showcase-grid {
    padding-top: 55px;
    padding-bottom: 80px;
    column-gap: 110px;
    max-width: 1310px;
  }
  .phone-stage {
    margin-right: 40px;
  }
  .phone {
    width: 368px;
    height: 738px;
  }
  .phone-screen {
    padding-left: 21px;
    padding-right: 21px;
  }
  .class-card {
    padding: 24px 0 18px;
  }
  .feature-intro {
    padding-top: 22px;
  }
  .feature-menu {
    margin-top: 36px;
  }
  .feature-title {
    padding: 22px 0;
  }
  .feature-intro h2 {
    font-size: 59px;
  }
}
@media (max-width: 1190px) {
  .showcase-grid {
    padding: 28px 45px 55px;
    column-gap: 50px;
    grid-template-columns: minmax(360px, 1.1fr) minmax(310px, 1fr);
  }
  .phone-stage {
    margin-right: 0;
  }
  .annotation {
    left: -83px;
    width: 90px;
    font-size: 12px;
    top: 249px;
  }
  .annotation span {
    max-width: 77px;
  }
  .annotation svg {
    width: 74px;
  }
  .closing,
  .site-footer {
    margin-left: 5%;
    margin-right: 5%;
  }
  .closing {
    padding: 55px;
  }
  .feature-intro h2 {
    font-size: 48px;
  }
}
@media (max-width: 950px) and (min-width: 761px) {
  .showcase-grid {
    column-gap: 38px;
    padding-left: 30px;
    padding-right: 30px;
    grid-template-columns: 350px minmax(0, 1fr);
  }
  .annotation {
    left: 15px;
    top: -22px;
    width: 310px;
    transform: none;
    text-align: center;
    font-size: 12px;
  }
  .annotation span {
    max-width: none;
  }
  .annotation svg {
    display: none;
  }
  .feature-intro h2 {
    font-size: 42px;
  }
  .feature-intro > p {
    font-size: 14px;
  }
  .feature-title {
    font-size: 18px;
  }
  .phone-stage {
    margin-top: 28px;
  }
  .eyebrow {
    font-size: 12px;
  }
  .closing h2 {
    font-size: 48px;
  }
}
@media (max-width: 760px) {
  .site-header {
    height: 86px;
    padding: 0 24px;
  }
  .wordmark {
    font-size: 37px;
  }
  .header-cta {
    padding: 10px 15px;
    gap: 16px;
    font-size: 12px;
  }
  .intro {
    min-height: calc(100svh - 86px);
    padding-bottom: 130px;
  }
  .intro-active .intro {
    padding-top: 150px;
  }
  .intro h1 {
    font-size: clamp(45px, 8.8vw, 66px);
    letter-spacing: -1.7px;
    line-height: 1.12;
  }
  .intro-inner {
    margin-top: -10px;
  }
  .scroll-cue {
    margin-top: 32px;
  }
  .intro-foot {
    justify-content: center;
    bottom: 30px;
    font-size: 12px;
    left: 20px;
    right: 20px;
  }
  .intro-note {
    display: none;
  }
  .showcase-grid {
    padding: 16px 20px 35px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto auto auto;
    gap: 0;
    min-height: 0;
  }
  .feature-intro {
    grid-column: 1;
    grid-row: 1;
    text-align: center;
    padding-top: 0;
  }
  .eyebrow {
    justify-content: center;
    font-size: 12px;
    margin-bottom: 14px;
  }
  .feature-intro h2 {
    font-size: 43px;
    letter-spacing: -1.2px;
    line-height: 1.04;
  }
  .feature-intro h2 br {
    display: none;
  }
  .feature-intro > p {
    font-size: 14px;
    max-width: 310px;
    margin: 13px auto 0;
  }
  .feature-menu {
    grid-column: 1;
    grid-row: 2;
    display: flex;
    gap: 6px;
    overflow: auto;
    scrollbar-width: none;
    margin: 25px -20px 0;
    padding: 0 16px 8px;
  }
  .feature {
    border: 0;
    flex: 0 0 auto;
  }
  .feature:last-child {
    border: 0;
  }
  .feature-title {
    padding: 11px 15px;
    border: 1px solid #d5dacb;
    border-radius: 26px;
    gap: 7px;
    font-size: 13px;
    min-height: 44px;
    white-space: nowrap;
    letter-spacing: -0.1px;
    color: #6f7e64;
  }
  .feature-title .icon {
    height: 16px;
    width: 16px;
  }
  .feature.active .feature-title {
    background: var(--forest);
    color: #f4f4e8;
    border-color: var(--forest);
  }
  .feature.active:before,
  .feature-toggle,
  .feature-body {
    display: none;
  }
  .phone-stage {
    grid-column: 1;
    grid-row: 3;
    justify-self: center;
    margin: 48px 0 0;
    align-self: start;
  }
  .phone {
    width: 340px;
    height: 690px;
    transform: none;
    animation: phone-reveal-mobile 0.7s ease-out both;
  }
  .phone:hover,
  .phone:focus-within {
    transform: none;
  }
  .annotation {
    left: 0;
    right: 0;
    top: -29px;
    width: 100%;
    transform: none;
    text-align: center;
    font-size: 12px;
  }
  .annotation span {
    max-width: none;
  }
  .annotation svg {
    display: none;
  }
  .demo-caption {
    font-size: 12px;
    margin-top: 19px;
  }
  .mobile-explanation {
    display: block;
    grid-column: 1;
    grid-row: 4;
    text-align: center;
    max-width: 380px;
    justify-self: center;
    margin-top: 27px;
  }
  .mobile-explanation h3 {
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 8px;
  }
  .mobile-explanation p {
    font-size: 14px;
    line-height: 1.65;
    color: #76816d;
  }
  .menu-foot {
    grid-column: 1;
    grid-row: 5;
    max-width: 350px;
    width: 100%;
    justify-self: center;
    padding-top: 15px;
  }
  .closing {
    margin: 20px 20px 0;
    padding: 37px 30px;
    display: block;
  }
  .closing h2 {
    font-size: 44px;
    letter-spacing: -1px;
  }
  .closing-kicker {
    font-size: 12px;
    margin-bottom: 18px;
  }
  .closing-action {
    padding: 0;
    margin-top: 30px;
  }
  .closing-action > p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .closing-action .primary {
    width: 100%;
  }
  .site-footer {
    margin: 0 24px;
    padding: 28px 0;
    gap: 18px;
    flex-wrap: wrap;
  }
  .site-footer > span {
    font-size: 12px;
  }
  .site-footer button {
    font-size: 12px;
  }
  .site-footer .wordmark {
    font-size: 30px;
  }
}
@media (max-width: 380px) {
  .phone {
    width: 310px;
    height: 662px;
  }
  .phone-screen {
    padding-left: 14px;
    padding-right: 14px;
  }
  .class-card {
    gap: 8px;
  }
  .date-button strong {
    width: 34px;
    line-height: 34px;
  }
  .class-time {
    width: 58px;
  }
  .class-name {
    font-size: 15px;
  }
  .showcase-grid {
    padding-left: 12px;
    padding-right: 12px;
  }
  .feature-menu {
    margin-left: -12px;
    margin-right: -12px;
  }
  .site-footer button {
    width: 100%;
    margin: 0;
    justify-content: flex-start;
  }
  .feature-intro h2 {
    font-size: 38px;
  }
}
@keyframes phone-reveal-mobile {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .phone {
    transform: none !important;
  }
  .annotation path {
    stroke-dashoffset: 0;
  }
}
/* App detail views share the same fixed phone frame. */
.showcase:not(.has-entered) .phone {
  animation: none;
}
@media (prefers-reduced-motion: reduce) {
  .intro {
    transform: none;
    opacity: 1;
    will-change: auto;
  }
  .showcase {
    margin-top: 0;
  }
}
.no-animation {
  animation: none;
}
.app-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--forest);
  color: var(--app-on-accent, #f9f9ee);
  border-radius: 25px;
  width: 100%;
  min-height: 44px;
  padding: 11px 15px;
  font-size: 13px;
  font-weight: 550;
  transition: background 0.2s;
}
.app-button:hover:not(:disabled) {
  background: var(--app-accent, #213e2e);
}
.app-back {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  min-height: 40px;
  margin: -8px 0 17px;
  padding: 0;
  color: var(--app-muted, #6d7d61);
}
.app-back .icon {
  width: 15px;
  height: 15px;
}
.screen-title {
  margin: 6px 0 9px;
  font-size: 32px;
}
.detail-category {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  background: var(--app-surface, #e8e0bd);
  color: var(--app-muted, #77652d);
  font-size: 12px;
  border-radius: 15px;
  padding: 6px 11px;
  margin: 3px 0 15px;
}
.detail-category.sage {
  background: var(--app-surface, #dce5d4);
  color: var(--app-muted, #567249);
}
.detail-category.lilac {
  background: var(--app-surface, #e1e0eb);
  color: var(--app-muted, #626386);
}
.detail-category .icon {
  width: 13px;
  height: 13px;
}
.detail-title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.6px;
}
.detail-copy {
  color: var(--app-muted, #78816f);
  font-size: 12px;
  line-height: 1.7;
  margin: 13px 0 18px;
}
.coach {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
}
.coach .avatar {
  width: 36px;
  height: 36px;
  background: var(--app-surface, #dde3cf);
  color: var(--forest);
  font-size: 14px;
}
.coach strong {
  font-size: 12px;
  font-weight: 500;
}
.coach small {
  display: block;
  font-size: 12px;
  color: var(--app-muted, #849078);
  margin-top: 3px;
}
.detail-summary {
  border-top: 1px solid var(--app-line, #d8ddcc);
  border-bottom: 1px solid var(--app-line, #d8ddcc);
  padding: 12px 0;
  margin: 21px 0;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  font-size: 12px;
  line-height: 1.5;
  padding: 8px 0;
}
.summary-row > span {
  color: var(--app-muted, #7c8671);
  flex-shrink: 0;
}
.summary-row strong {
  font-weight: 500;
  text-align: right;
}
.booking-status {
  display: flex;
  justify-content: center;
  gap: 7px;
  align-items: center;
  color: var(--app-muted, #688058);
  font-size: 12px;
  margin: 19px 0 13px;
}
.sample-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin: 14px -6px 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--app-muted, #808b74);
  text-align: center;
}
.sample-note .icon {
  width: 11px;
  height: 11px;
}
.empty-state {
  text-align: center;
  padding: 50px 5px;
}
.empty-state > .icon {
  height: 29px;
  width: 29px;
  color: var(--app-muted, #7e925e);
  margin-bottom: 13px;
}
.empty-state h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 23px;
  margin: 0 0 12px;
}
.empty-state p {
  color: var(--app-muted, #7c876e);
  font-size: 12px;
  line-height: 1.7;
}
.empty-state .app-button {
  margin-top: 20px;
}
.service-list {
  margin-top: 24px;
}
.service-group {
  margin-bottom: 19px;
}
.service-group h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 9px;
}
.service-card {
  width: 100%;
  padding: 17px 13px;
  border: 1px solid var(--app-line, #d5d9c9);
  border-radius: 16px;
  display: flex;
  text-align: left;
  justify-content: space-between;
  gap: 8px;
  background: var(--app-surface, #eaeade66);
  transition:
    border-color 0.2s,
    background 0.2s;
}
.service-card.selected {
  border-color: var(--app-line, #526c46);
  background: var(--app-surface, #e3e7d8);
  box-shadow: inset 0 0 0 0.5px var(--app-shadow, #526c46);
}
.service-card strong {
  display: block;
  font-size: 14px;
  font-weight: 550;
}
.service-card small {
  display: block;
  color: var(--app-muted, #7a856b);
  font-size: 12px;
  margin-top: 5px;
}
.service-card em {
  display: block;
  font-style: normal;
  font-size: 12px;
  color: var(--app-muted, #7a856b);
  margin-top: 11px;
  line-height: 1.5;
}
.selection-icon {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid var(--app-line, #cad3bc);
  border-radius: 50%;
  color: var(--app-muted, #8a9976);
  flex-shrink: 0;
}
.selection-icon .icon {
  width: 15px;
  height: 15px;
}
.selected .selection-icon {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--app-on-accent, #f3f4e8);
}
.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 15px 17px;
}
.phone-action {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 93px;
  z-index: 3;
  border: 1px solid var(--app-line, #d8dccf);
  border-radius: 23px;
  background: var(--app-surface, #eeeee3);
  box-shadow:
    0 10px 24px var(--app-shadow, #34432a21),
    0 2px 6px var(--app-shadow, #34432a0a);
  animation: action-card-in 0.22s ease-out both;
}
.phone-screen.has-action-card {
  padding-bottom: 198px;
}
@keyframes action-card-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.service-footer .app-button {
  width: auto;
  min-width: 112px;
}
.service-footer strong {
  display: block;
  font-size: 16px;
}
.service-footer small {
  display: block;
  font-size: 12px;
  color: var(--app-muted, #7a876c);
  margin-top: 4px;
}
.service-date {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px 12px;
  margin: 24px 0;
  background: var(--app-surface, #e2e7d6);
  border-radius: 12px;
}
.service-date > .icon {
  width: 22px;
  height: 22px;
}
.service-date strong {
  font-size: 12px;
  font-weight: 500;
}
.service-date small {
  display: block;
  font-size: 12px;
  margin-top: 4px;
  color: var(--app-muted, #7a876b);
}
.app-section-label {
  font-size: 12px;
  font-weight: 500;
  margin: 22px 0 13px;
}
.time-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}
.time-option {
  border: 1px solid var(--app-line, #cdd6c0);
  border-radius: 10px;
  min-height: 47px;
  font-size: 13px;
}
.time-option.selected {
  color: var(--app-on-accent, #f4f5e8);
  background: var(--forest);
  border-color: var(--forest);
}
.time-note {
  font-size: 12px;
  line-height: 1.6;
  color: var(--app-muted, #828e74);
  margin: 18px 0 25px;
}
.service-total {
  border-top: 1px solid var(--app-line, #d5ddc9);
  padding-top: 5px;
  margin-bottom: 13px;
}
.service-highlight {
  padding: 25px 20px;
  text-align: center;
  border-radius: 18px;
  background: var(--app-surface, #e4e9d7);
  margin: 24px 0;
}
.service-highlight > .icon {
  width: 35px;
  height: 35px;
  color: var(--app-muted, #859460);
}
.service-highlight h4 {
  font: 23px/1.2 var(--serif);
  margin: 12px 0 8px;
  font-weight: 400;
}
.service-highlight p {
  font-size: 12px;
  color: var(--app-muted, #7a8767);
  line-height: 1.5;
}
.success-screen {
  text-align: center;
  padding-top: 28px;
}
.success-check {
  width: 69px;
  height: 69px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--app-surface, #dce6ca);
  color: var(--forest);
  margin: 0 auto 22px;
  box-shadow: 0 0 0 9px var(--app-line, #e7ebdc);
}
.success-check .icon {
  height: 31px;
  width: 31px;
  stroke-width: 1.6;
}
.success-eyebrow {
  font-size: 12px;
  color: var(--app-muted, #899676);
  display: block;
  margin-bottom: 10px;
}
.success-screen h3 {
  font: 31px/1.1 var(--serif);
  font-weight: 400;
  letter-spacing: -0.7px;
  max-width: 240px;
  margin: auto;
}
.success-screen > p {
  font-size: 12px;
  line-height: 1.65;
  color: var(--app-muted, #7c886c);
  max-width: 243px;
  margin: 13px auto 23px;
}
.receipt {
  position: relative;
  padding: 13px 15px;
  background: var(--app-surface, #e8ebde);
  border: 1px solid var(--app-line, #d9dfcc);
  border-radius: 12px;
  margin: 24px 0;
}
.receipt .summary-row {
  font-size: 12px;
  text-align: left;
  gap: 10px;
}
.receipt .summary-row > span {
  flex-shrink: 1;
}
.receipt-end {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 12px;
  color: var(--app-muted, #779065);
  border-top: 1px dashed var(--app-line, #cbd6bd);
  margin-top: 10px;
  padding-top: 15px;
}
.receipt-end .icon {
  width: 13px;
  height: 13px;
}
.segmented {
  display: flex;
  border: 1px solid var(--app-line, #d6dbca);
  background: var(--app-surface, #e9eadf);
  border-radius: 25px;
  padding: 4px;
  margin: 23px 0;
}
.segmented button {
  width: 50%;
  min-height: 37px;
  border-radius: 22px;
  color: var(--app-muted, #889478);
  font-size: 12px;
}
.segmented button.active {
  background: var(--forest);
  color:  var(--app-on-accent, var(--cream));
}
.app-serif-label {
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.2;
  font-weight: 400;
  margin: 19px 0 13px;
}
.app-serif-label.spaced {
  margin-top: 28px;
}
.payment-card {
  aspect-ratio: 1.586;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(115deg, var(--app-accent, #46614a), var(--app-accent, #2e4a3d));
  color: var(--app-on-accent, #edf0e1);
  border: 1px solid var(--app-line, #526947);
  border-radius: 15px;
  padding: 20px 19px 17px;
  box-shadow: 0 9px 16px -13px var(--app-shadow, #263b29);
}
.payment-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.payment-card strong {
  font-style: italic;
  font-size: 15px;
  letter-spacing: 1px;
}
.card-chip {
  display: block;
  width: 26px;
  height: 20px;
  border: 1px solid var(--app-line, #92a38177);
  background: linear-gradient(90deg, var(--app-surface, #a5b79466), var(--app-accent, #7c946766));
  border-radius: 5px;
  position: relative;
}
.card-chip:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 9px;
  height: 1px;
  background: var(--app-surface, #b5c5a377);
}
.payment-card > p {
  font-size: 16px;
  letter-spacing: 2px;
  margin: 18px 0;
}
.payment-card footer {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--app-muted, #c1cdb4);
}
.payment-card footer span:last-child {
  color: var(--app-muted, #a3b694);
}
.payment-due {
  border: 1px solid var(--app-line, #d4dcc5);
  border-radius: 12px;
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
}
.payment-due > div strong {
  display: block;
  font-size: 12px;
  font-weight: 500;
}
.payment-due small {
  display: block;
  font-size: 12px;
  color: var(--app-muted, #8a957b);
  margin-top: 5px;
}
.payment-due > strong {
  font-size: 15px;
  font-weight: 600;
}
.payment-due .app-button {
  grid-column: 1/-1;
}
.history-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0 10px;
}
.history-row strong {
  font-size: 14px;
  font-weight: 550;
}
.history-row small {
  display: block;
  color: var(--app-muted, #859176);
  font-size: 12px;
  margin-top: 6px;
}
.history-row > span {
  font-size: 12px;
  color: var(--app-muted, #6b8e58);
  display: flex;
  align-items: center;
  gap: 4px;
}
.history-row .icon {
  width: 14px;
  height: 14px;
}
.activity-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 23px 0 17px;
}
.activity-stats > div {
  border: 1px solid var(--app-line, #d7dbce);
  border-radius: 13px;
  padding: 15px 6px 13px;
  text-align: center;
  background: var(--app-surface, #eaeade66);
}
.activity-stats strong {
  display: block;
  font: 37px/1.1 var(--serif);
  font-weight: 400;
}
.activity-stats span {
  display: block;
  font-size: 12px;
  line-height: 1.4;
  color: var(--app-muted, #7c8671);
  margin-top: 8px;
}
.activity-credits {
  background: var(--app-surface, #eaeade66);
  border: 1px solid var(--app-line, #d7dbce);
  border-radius: 13px;
  padding: 17px 14px;
}
.activity-credits > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.activity-credits strong {
  font-size: 14px;
  font-weight: 500;
}
.activity-credits span {
  font-size: 12px;
  font-weight: 550;
  text-align: right;
}
.activity-credits progress,
.challenge-card progress {
  display: block;
  width: 100%;
  height: 5px;
  border: 0;
  appearance: none;
  border-radius: 10px;
  overflow: hidden;
  background: var(--app-surface, #d7dbce);
  accent-color: var(--forest);
  margin: 16px 0 12px;
}
.activity-credits progress::-webkit-progress-bar,
.challenge-card progress::-webkit-progress-bar {
  background: var(--app-surface, #d7dbce);
  border-radius: 10px;
}
.activity-credits progress::-webkit-progress-value,
.challenge-card progress::-webkit-progress-value {
  background: var(--forest);
  border-radius: 10px;
}
.activity-credits progress::-moz-progress-bar,
.challenge-card progress::-moz-progress-bar {
  background: var(--forest);
  border-radius: 10px;
}
.activity-credits p,
.activity-note {
  font-size: 12px;
  line-height: 1.5;
  color: var(--app-muted, #7c8671);
}
.activity-note {
  margin-top: 20px;
  text-align: center;
}
.activity-bookings {
  display: grid;
  gap: 10px;
}
.activity-booking {
  display: block;
  width: 100%;
  text-align: left;
  padding: 17px 12px;
  border: 1px solid var(--app-line, #d7dbce);
  border-left: 3px solid #6d96df;
  border-radius: 12px;
  background: var(--app-surface, #eaeade66);
}
button.activity-booking:hover {
  background: var(--app-surface, #e2e6d7);
}
.activity-booking-heading {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}
.activity-booking-heading > strong {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 550;
}
.activity-booking-heading > span {
  font-size: 12px;
  padding: 5px 7px;
  border-radius: 14px;
  background: var(--app-surface, #dbe0d1);
}
.activity-booking small {
  display: block;
  color: var(--app-muted, #7c8671);
  font-size: 12px;
  line-height: 1.5;
  margin-top: 11px;
}
.activity-booking-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  margin-top: 12px;
}
.activity-booking-link .icon {
  width: 13px;
  height: 13px;
}
.challenge-card {
  border: 1px solid var(--app-line, #d7dbce);
  border-radius: 15px;
  background: var(--app-surface, #e7ebdc);
  padding: 24px 18px;
  margin-top: 20px;
}
.challenge-card > .icon {
  width: 32px;
  height: 32px;
  color: var(--app-muted, #6d845c);
}
.challenge-card h4 {
  font: 26px/1.15 var(--serif);
  font-weight: 400;
  margin: 17px 0 12px;
}
.challenge-card p {
  font-size: 12px;
  line-height: 1.7;
  color: var(--app-muted, #75846b);
}
.challenge-card > span {
  display: block;
  font-size: 12px;
  margin-bottom: 23px;
  color: var(--app-muted, #75846b);
}
.notification-list {
  margin-top: 22px;
}
.notification-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 20px 0;
  border-bottom: 1px solid var(--app-line, #d7dbce);
}
.notification-item > .icon {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--app-muted, #718c59);
}
.notification-item h4 {
  font-size: 15px;
  margin: 0 0 9px;
  font-weight: 550;
}
.notification-item p {
  font-size: 12px;
  line-height: 1.7;
  color: var(--app-muted, #78886b);
}
.notification-item span {
  display: block;
  font-size: 12px;
  color: var(--app-muted, #839476);
  margin-top: 10px;
}
.checkout-order {
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--app-surface, #e5e9d9);
  border: 1px solid var(--app-line, #d9dfca);
  border-radius: 13px;
  padding: 18px 14px;
  margin-top: 25px;
}
.checkout-order > span {
  width: 40px;
  height: 40px;
  background: var(--app-surface, #d2ddc0);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.checkout-order strong {
  font-size: 14px;
  font-weight: 550;
}
.checkout-order small {
  display: block;
  font-size: 12px;
  color: var(--app-muted, #808d70);
  margin-top: 4px;
}
.plans-list {
  margin-top: 20px;
}
.plan-card {
  border-top: 1px solid var(--app-line, #d1dbc2);
  padding: 18px 0;
}
.plan-card h4 {
  font-size: 16px;
  font-weight: 550;
  margin: 0 0 8px;
}
.plan-card > p {
  font-size: 12px;
  line-height: 1.6;
  color: var(--app-muted, #7c8b6b);
}
.plan-tags {
  display: flex;
  gap: 5px;
  margin-top: 14px;
}
.plan-tags span {
  font-size: 12px;
  padding: 5px 7px;
  background: var(--app-surface, #e1e6d5);
  border-radius: 5px;
  color: var(--app-muted, #728061);
}
.plan-card > div:last-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  gap: 20px;
}
.plan-card .app-button {
  width: auto;
}
.event-card {
  display: block;
  width: 100%;
  padding: 0;
  text-align: left;
  margin-top: 24px;
}
.event-poster {
  padding: 21px 19px 17px;
  border-radius: 16px;
  background: var(--app-accent, #344c36);
  color: var(--app-on-accent, #f1f0d9);
  position: relative;
  overflow: hidden;
}
.poster-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--app-muted, #c1ce9f);
}
.poster-top > .icon {
  width: 23px;
  height: 23px;
}
.poster-title {
  font: 44px/0.95 var(--serif);
  letter-spacing: -1.2px;
  margin: 24px 0 25px;
}
.poster-title em {
  font-style: italic;
  color: var(--app-muted, #c6d1a4);
}
.poster-bottom {
  border-top: 1px solid var(--app-line, #8ea57655);
  padding-top: 13px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  gap: 10px;
  color: var(--app-muted, #c6d2ab);
}
.event-card-info {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-top: 18px;
}
.event-date {
  border: 1px solid var(--app-line, #d0dac0);
  border-radius: 9px;
  padding: 7px 9px;
  text-align: center;
  min-width: 40px;
}
.event-date strong {
  font: 23px/1 var(--serif);
  display: block;
}
.event-date small {
  display: block;
  font-size: 12px;
  margin-top: 4px;
  color: var(--app-muted, #80936b);
}
.event-card-info > span:nth-child(2) {
  flex: 1;
}
.event-card-info > span:nth-child(2) strong {
  font-size: 14px;
  display: block;
  font-weight: 550;
}
.event-card-info > span:nth-child(2) small {
  font-size: 12px;
  display: block;
  margin-top: 5px;
  color: var(--app-muted, #7d8c6c);
}
.event-card-info em {
  font-style: normal;
  font-size: 12px;
  color: var(--app-muted, #718861);
  display: block;
  margin-top: 7px;
}
.event-card-info > .icon {
  width: 13px;
  height: 13px;
}
.community-note {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  text-align: left;
  border-top: 1px solid var(--app-line, #d4ddc7);
  margin-top: 26px;
  padding-top: 24px;
  color: var(--app-muted, #7b8b6a);
}
.community-note > .icon {
  width: 25px;
  height: 25px;
  color: var(--app-muted, #849c68);
}
.community-note p {
  font-size: 12px;
  line-height: 1.7;
}
.community-note strong {
  font-weight: 450;
}
.event-poster.compact {
  padding: 16px;
}
.compact .poster-title {
  font-size: 32px;
  margin: 17px 0 20px;
}
.compact .poster-title br {
  display: none;
}
.compact .poster-title br:after {
  content: " ";
}
.compact .poster-title em {
  display: block;
}
.event-title {
  font-size: 30px;
  margin-top: 23px;
}
.event-facts {
  display: grid;
  gap: 11px;
  margin: 18px 0;
}
.event-facts p {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  color: var(--app-muted, #738364);
}
.event-facts .icon {
  width: 16px;
  height: 16px;
}
.event-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 21px 0 17px;
  font-size: 12px;
}
.event-price strong {
  font-size: 17px;
}
.event-price small {
  font-size: 12px;
  color: var(--app-muted, #7d9367);
}
.ticket-options {
  display: grid;
  gap: 12px;
  margin-top: 27px;
}
.ticket-option {
  border: 1px solid var(--app-line, #d0dbc2);
  border-radius: 14px;
  padding: 19px 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  text-align: left;
}
.ticket-option.selected {
  border-color: var(--app-line, #5f7a4e);
  background: var(--app-surface, #e4ead8);
}
.ticket-option strong {
  font-size: 14px;
  display: block;
  font-weight: 500;
}
.ticket-option small {
  font-size: 12px;
  display: block;
  margin-top: 6px;
  color: var(--app-muted, #839473);
}
.ticket-option b {
  font-weight: 550;
  font-size: 13px;
  margin-left: auto;
}

.store-filters {
  margin: 12px 0 16px;
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 23px 12px;
}
.product-card {
  text-align: left;
  padding: 0;
  min-width: 0;
}
.product-image {
  width: 100%;
  aspect-ratio: 1;
  background-image: url("./assets/store-reference.jpeg");
  background-repeat: no-repeat;
  background-size: 224.7% auto;
  background-color: var(--app-surface, #f8f6ed);
  border-radius: 13px;
}
.product-image.fleece {
  background-position: 7.27% 55.13%;
}
.product-image.leggings {
  background-position: 92.73% 55.13%;
}
.product-image.bottle {
  background-position: 7.15% 100%;
  aspect-ratio: 1.9;
}
.product-card strong {
  display: block;
  font-size: 12px;
  line-height: 1.4;
  margin-top: 11px;
  font-weight: 550;
}
.product-card > span {
  display: block;
  font-size: 12px;
  margin-top: 7px;
  color: var(--app-muted, #627857);
}
.product-card del {
  color: var(--app-muted, #a2ac96);
  font-size: 12px;
  margin-right: 4px;
}
.product-detail-image {
  max-width: 210px;
  margin: 0 auto 19px;
  aspect-ratio: 1;
}
.product-detail-image.fleece,
.product-detail-image.leggings {
  background-size: 224.7% auto;
  background-position-y: 55.13%;
}
.product-detail-image.bottle {
  max-width: none;
  aspect-ratio: 1.9;
}
.product-title {
  font: 27px/1.1 var(--serif);
  letter-spacing: -0.4px;
  font-weight: 400;
}
.product-price {
  font-size: 17px;
  font-weight: 550;
  margin-top: 9px;
}
.product-price del {
  font-size: 12px;
  color: var(--app-muted, #a5ac99);
  margin-right: 7px;
  font-weight: 400;
}
.product-copy {
  font-size: 12px;
  line-height: 1.6;
  margin: 12px 0 16px;
}
.size-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--app-muted, #7b8b6c);
  margin-bottom: 9px;
}
.product-options {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 23px;
}
.sizes {
  display: flex;
  gap: 4px;
}
.sizes button {
  border: 1px solid var(--app-line, #ccd7be);
  border-radius: 6px;
  font-size: 12px;
  min-width: 33px;
  min-height: 42px;
  padding: 5px;
}
.sizes button.selected {
  background: var(--forest);
  border-color: var(--forest);
  color:  var(--app-on-accent, var(--cream));
}
.quantity {
  display: flex;
  align-items: center;
  border: 1px solid var(--app-line, #cbd7bd);
  border-radius: 6px;
  overflow: hidden;
}
.quantity button {
  font-size: 15px;
  width: 28px;
  min-height: 42px;
  padding: 0;
}
.quantity > span {
  font-size: 12px;
  min-width: 15px;
  text-align: center;
}
.cart-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 27px 0 22px;
}
.cart-item .product-image {
  width: 90px;
  flex-shrink: 0;
}
.cart-item strong {
  font-size: 14px;
  display: block;
  line-height: 1.4;
  font-weight: 500;
}
.cart-item small {
  display: block;
  color: var(--app-muted, #7d8d6d);
  font-size: 12px;
  margin-top: 7px;
}
.cart-item b {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-top: 8px;
}
.pickup-note {
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--app-surface, #e4ead8);
  border-radius: 12px;
  padding: 15px 12px;
  margin-bottom: 24px;
}
.pickup-note strong {
  font-size: 12px;
  font-weight: 500;
}
.pickup-note small {
  display: block;
  font-size: 12px;
  margin-top: 4px;
  color: var(--app-muted, #7a8b6a);
}
.compact-card {
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--app-line, #d0dbc2);
  padding: 14px 12px;
  border-radius: 12px;
  font-size: 12px;
}
.compact-card > .icon:last-child {
  margin-left: auto;
  width: 15px;
  height: 15px;
  color: var(--app-muted, #768f60);
}
.annotation-detail {
  top: 455px;
}
.demo-help {
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
  color: #718062;
  max-width: 330px;
  margin: 9px auto 0;
  min-height: 17px;
}
.contact-options {
  display: grid;
  gap: 11px;
  margin: 26px 0 0;
}
.contact-option {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 17px;
  border: 1px solid #d3dcc8;
  border-radius: 13px;
  min-height: 78px;
}
.contact-option:hover {
  background: #e8eddf;
}
.contact-option > .icon {
  width: 25px;
  height: 25px;
}
.contact-option > span {
  flex: 1;
}
.contact-option strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
}
.contact-option small {
  display: block;
  font-size: 12px;
  color: #78876a;
  margin-top: 5px;
}
.contact-option > b {
  font-size: 20px;
  font-weight: 400;
}
.contact-option.unavailable {
  opacity: 0.6;
  cursor: default;
}
.contact-dialog-note {
  font-size: 12px !important;
  margin: 21px 0 0 !important;
  color: #7c8b70 !important;
}
@media (max-width: 950px) and (min-width: 761px) {
  .annotation-detail {
    top: -22px;
  }
}
@media (max-width: 760px) {
  .annotation-detail {
    top: -29px;
  }
  .demo-help {
    font-size: 12px;
    max-width: 310px;
  }
  .phone-screen .app-back {
    min-height: 44px;
  }
  .product-options .sizes button {
    min-width: 34px;
    min-height: 44px;
  }
  .quantity button {
    min-width: 29px;
    min-height: 44px;
  }
  .app-heading-actions button {
    min-height: 44px;
    min-width: 35px;
  }
  dialog {
    padding: 35px 25px;
  }
  .phone-screen .date-button strong {
    line-height: 39px;
  }
}

.brand-controls,
.modular-note {
  position: absolute;
  left: -142px;
  width: 105px;
  z-index: 4;
  font-size: 12px;
  line-height: 1.5;
  color: #71815e;
}
.brand-controls { top: 12px; }
.brand-controls p,
.modular-note p { transform: rotate(-5deg); }
.brand-controls svg,
.modular-note svg {
  display: block;
  width: 78px;
  height: 36px;
  fill: none;
  stroke: #84936f;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.palette-picker {
  display: flex;
  flex-direction: column;
  width: 44px;
}
.palette-picker button {
  width: 44px;
  height: 44px;
  padding: 8px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.palette-picker button span {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--swatch);
  border: 3px solid var(--paper);
  box-shadow: 0 0 0 1px #c9cebf;
}
.palette-picker button[aria-pressed="true"] span {
  box-shadow: 0 0 0 2px var(--swatch);
}
.palette-picker button[aria-pressed="true"] span:after {
  content: "✓";
  color: white;
  display: block;
  text-align: center;
  font-size: 12px;
  line-height: 19px;
}
@media (min-width: 961px) and (max-width: 1190px) {
  .brand-controls, .modular-note { left: -112px; width: 82px; }
  .brand-controls svg, .modular-note svg { width: 68px; }
}
@media (max-width: 960px) {
  .brand-controls {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 0 26px;
  }
  .brand-controls svg { width: 36px; }
  .palette-picker { width: 44px; justify-content: center; }
  .modular-note {
    position: relative;
    left: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
  }
  .modular-note p { transform: none; }
  .modular-note br { display: none; }
  .modular-note svg { position: absolute; width: 40px; transform: none; pointer-events: none; overflow: visible; }
  .annotation { visibility: hidden !important; }
}
.phone[data-palette]:not([data-palette="forest"]) .app-button:hover:not(:disabled) {
  background: var(--ink);
}

.phone[data-palette] { color: var(--ink); }

/* Full palettes sampled from the supplied app screenshots. */
.phone[data-palette="slate"] {
  --cream: #f4f4f2; --forest: #394253; --ink: #15161a;
  --app-text: #15161a; --app-heading: #161a25; --app-muted: #7b7c80;
  --app-surface: #ffffff; --app-line: #dddddd; --app-on-accent: #ffffff;
  --app-nav: #ffffff; --app-nav-icon: #15161a; --app-nav-active: #ededea;
  --app-nav-selected: #15161a; --app-shadow: #00000020;
}
.phone[data-palette="purple"] {
  --cream: #131313; --forest: #621a7e; --ink: #f3f2f0;
  --app-text: #f3f2f0; --app-heading: #621a7e; --app-muted: #929091;
  --app-surface: #1c1a1b; --app-line: #343233; --app-on-accent: #fffffd;
  --app-nav: #101010; --app-nav-icon: #8c8b89; --app-nav-active: #30302e;
  --app-nav-selected: #f3f2f0; --app-shadow: #00000044;
}
.phone[data-palette="red"] {
  --cream: #ececec; --forest: #bf392d; --ink: #1c1c1c;
  --app-text: #1c1c1c; --app-heading: #bf392d; --app-muted: #757575;
  --app-surface: #fbfbfb; --app-line: #dddddd; --app-on-accent: #ffffff;
  --app-nav: #414141; --app-nav-icon: #999999; --app-nav-active: #606060;
  --app-nav-selected: #ffffff; --app-shadow: #00000020;
}
.phone[data-palette="gold"] {
  --cream: #12110f; --forest: #c9a970; --ink: #f7f3f0;
  --app-text: #f7f3f0; --app-heading: #f7f3f0; --app-muted: #908f8d;
  --app-surface: #1a1915; --app-line: #34332e; --app-on-accent: #fffefb;
  --app-nav: #0d0c0a; --app-nav-icon: #908f8d; --app-nav-active: #292826;
  --app-nav-selected: #fffefb; --app-shadow: #00000044;
}
.phone[data-palette]:not([data-palette="forest"]) .app-heading h3,
.phone[data-palette]:not([data-palette="forest"]) .screen-title {
  color: var(--app-heading);
}
.phone[data-palette]:not([data-palette="forest"]) .phone-glass {
  background: var(--cream);
  color: var(--app-text);
  border-color: var(--app-line);
}
.phone[data-palette]:not([data-palette="forest"]) .status-bar { color: var(--app-text); }
.phone[data-palette]:not([data-palette="forest"]) .battery:before,
.phone[data-palette]:not([data-palette="forest"]) .home-indicator { background: var(--app-text); }
.phone[data-palette]:not([data-palette="forest"]) .date-button strong { color: var(--app-text); }
.phone[data-palette]:not([data-palette="forest"]) .date-button.active strong { color: var(--app-on-accent); }
.phone[data-palette]:not([data-palette="forest"]) .app-nav { background: var(--app-nav); }
.phone[data-palette]:not([data-palette="forest"]) .app-nav button { color: var(--app-nav-icon); }
.phone[data-palette]:not([data-palette="forest"]) .app-nav button.active {
  background: var(--app-nav-active); color: var(--app-nav-selected);
}
.phone[data-palette]:not([data-palette="forest"]) .service-card.selected {
  border-color: var(--forest); box-shadow: inset 0 0 0 .5px var(--forest);
}
.phone[data-palette]:not([data-palette="forest"]) :is(.payment-card, .event-poster) {
  background: var(--forest); color: var(--app-on-accent); border-color: var(--forest);
}
.phone[data-palette]:not([data-palette="forest"]) :is(.payment-card, .event-poster) * {
  color: var(--app-on-accent);
}
.phone[data-palette]:not([data-palette="forest"]) .app-button:hover:not(:disabled) {
  background: var(--forest); filter: brightness(.93);
}
.phone[data-palette]:not([data-palette="forest"]) .class-spots { color: var(--app-muted); }
.phone[data-palette]:not([data-palette="forest"]) .class-spots:before { background: var(--forest); }

.phone[data-palette]:not([data-palette="forest"]) { --app-accent: var(--forest); }
.phone[data-palette]:not([data-palette="forest"]) .battery { border-color: var(--app-muted); }

@media (max-width: 760px) {
  .phone-stage {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr);
    width: min(420px, calc(100vw - 40px));
  }
  .phone-stage > .phone {
    grid-column: 2;
    zoom: var(--mobile-phone-scale, 1);
  }
  .phone-stage > .brand-controls {
    position: absolute;
    left: 0;
    top: 76px;
    width: 70px;
    margin: 0;
    display: block;
  }
  .brand-controls svg { width: 55px; }
  .brand-controls .palette-picker { margin-left: 4px; }
  .phone-stage > .modular-note,
  .phone-stage > .demo-caption,
  .phone-stage > .demo-help {
    grid-column: 1 / -1;
  }
  .phone-stage > .demo-caption { white-space: normal; flex-wrap: wrap; }
}

/* Homepage host supplies navigation and all following website sections. */
body.home-embed { margin: 0; overflow-x: clip; }
.home-embed > .site-header, .home-embed .closing, .home-embed .site-footer,
.home-embed > .skip-link { display: none; }
.home-embed .showcase { padding: 0; }
.home-embed .showcase-grid { padding-top: 24px; padding-bottom: 24px; }

.modular-mobile { display: none; }
@media (max-width: 960px) {
  .phone-stage > .modular-note {
    position: absolute;
    left: -80px;
    width: 70px;
    margin: 0;
    display: block;
    text-align: left;
    font-size: 12px;
    line-height: 1.4;
    pointer-events: none;
  }
  .modular-desktop { display: none; }
  .modular-mobile { display: inline; }
  .modular-note br { display: initial; }
  .modular-note svg {
    position: static;
    width: 68px;
    height: 28px;
    transform: none;
  }
}
@media (max-width: 760px) {
  .phone-stage > .modular-note { left: 0; }
}

@media (max-width: 960px) {
  .phone-stage > .modular-note {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  .modular-note svg { order: -1; height: 36px; flex-shrink: 0; }
  .modular-note p { margin: 0; }
}

@media (max-width: 960px) {
  .phone-stage > .demo-caption { margin-top: var(--modular-clearance, 90px); }
}

/* Keep the phone still while visitors choose a feature or use its app. */
.phone, .phone:hover, .phone:focus-within { animation: none; transform: none; transition: none; }
