@font-face {
  font-family: Inter;
  src: url("/assets/fonts/Inter.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
}
:root {
  color-scheme: light;
  --page: #edf1f6;
  --ink: #182638;
  --muted: #5d6b7e;
  --surface: #fff;
  --line: #d4dce8;
  --blue: #245eaa;
  --accent: #325d94;
  --app: #f8f9fc;
  --panel: #fff;
  --tint: #e9eff8;
  --app-ink: #202b3c;
  --app-muted: #677184;
  --app-line: #dce1eb;
  --button: #284d8b;
  --on-button: #fff;
}
:root[data-theme="dark"] {
  color-scheme: dark;
  --page: #111c2b;
  --ink: #f0f3f8;
  --muted: #a7b5c9;
  --surface: #1b2a3e;
  --line: #34465e;
  --blue: #a2c4f6;
  --app: #192537;
  --panel: #223148;
  --tint: #293c58;
  --app-ink: #f1f3f8;
  --app-muted: #b2bed0;
  --app-line: #3b4b65;
  --button: #aac8f7;
  --on-button: #152237;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background:
    radial-gradient(ellipse at 95% 15%, #5e89bd20, transparent 55%), var(--page);
  color: var(--ink);
  font:
    15px/1.55 Inter,
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
button,
input,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button:disabled {
  cursor: default;
  opacity: 0.5;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}
button,
input,
textarea {
  color: inherit;
}
svg {
  display: block;
}
.skip-link {
  position: fixed;
  left: 15px;
  top: -80px;
  background: var(--surface);
  padding: 12px;
  z-index: 99;
}
.skip-link:focus {
  top: 8px;
}
.page-header {
  height: 76px;
  padding: 0 max(28px, calc((100vw - 1280px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  gap: 24px;
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 23px;
  letter-spacing: -1px;
  font-weight: 720;
}
.wordmark svg {
  width: 32px;
  height: 32px;
}
.wordmark-light {
  font-weight: 420;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}
.header-back {
  font-size: 13px;
}
.demo-layout {
  max-width: 1240px;
  margin: auto;
  padding: 64px 40px 76px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.demo-story {
  padding-top: 38px;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 1.8px;
  font-weight: 650;
  color: var(--blue);
}
.demo-story h1 {
  font-size: clamp(40px, 4.5vw, 66px);
  line-height: 1.07;
  letter-spacing: -3px;
  margin: 22px 0;
}
.demo-intro {
  font-size: 17px;
  color: var(--muted);
  max-width: 440px;
  line-height: 1.75;
}
.scenario-caption {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 27px 0;
}
.scenario-caption img {
  width: 66px;
  height: 82px;
  object-fit: cover;
  border-radius: 14px;
  object-position: 50% 25%;
}
.scenario-caption small {
  display: block;
  font-size: 9px;
  letter-spacing: 1.4px;
  color: var(--muted);
  margin-bottom: 5px;
}
.scenario-caption strong {
  font-size: 14px;
}
.scenario-caption p {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--muted);
}
.workflow-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.workflow-heading h2 {
  font-size: 15px;
  margin: 0;
}
.reset-button {
  background: none;
  border: 0;
  color: var(--muted);
  font-size: 12px;
  padding: 10px;
}
.demo-steps {
  list-style: none;
  padding: 0;
  margin: 16px 0 22px;
}
.demo-steps li {
  display: flex;
  gap: 13px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  padding: 8px 0;
}
.demo-steps li > span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 10px;
}
.demo-steps p {
  margin: 0;
}
.demo-steps .current {
  color: var(--ink);
  font-weight: 600;
}
.demo-steps .current > span,
.demo-steps .complete > span {
  background: var(--blue);
  color: var(--page);
  border-color: transparent;
}
.demo-steps .ui-icon {
  width: 15px;
  height: 15px;
}
.related-businesses {
  border-left: 2px solid var(--line);
  padding-left: 16px;
  font-size: 12px;
  color: var(--muted);
  margin-top: 26px;
}
.related-businesses strong {
  display: block;
  color: var(--ink);
  margin-bottom: 5px;
}
.demo-disclaimer {
  font-size: 11px;
  line-height: 1.7;
  color: var(--muted);
  margin: 20px 0;
}
.stage {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
}
.role-switch {
  display: flex;
  background: var(--surface);
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 30px;
  max-width: 100%;
  box-shadow: 0 8px 22px #152b4510;
}
.role-switch button {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 10px 21px;
  border-radius: 25px;
  font-size: 12px;
  white-space: nowrap;
}
.role-switch [aria-pressed="true"] {
  background: var(--ink);
  color: var(--page);
}
.device-caption {
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}
.phone-shell {
  width: 390px;
  height: 780px;
  max-width: 100%;
  flex: none;
  border: 8px solid #303744;
  border-radius: 53px;
  background: var(--app);
  color: var(--app-ink);
  box-shadow:
    0 24px 50px #0a17262b,
    inset 0 0 0 1px #ffffff17;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.device-status {
  height: 53px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  font-size: 10px;
  font-weight: 650;
  position: relative;
}
.device-island {
  position: absolute;
  width: 109px;
  height: 29px;
  background: #12151b;
  left: 50%;
  top: 9px;
  transform: translateX(-50%);
  border-radius: 18px;
}
.device-status .signal {
  font-size: 9px;
  letter-spacing: 1px;
}
.app-context {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 22px 10px;
  flex: none;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--app-line);
  color: var(--app-muted);
}
.app-context b {
  font-weight: 500;
  opacity: 0.75;
}
.app-content {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--app-line) transparent;
  padding: 23px 22px 30px;
  scroll-behavior: smooth;
}
.app-content h2 {
  font-size: 29px;
  line-height: 1.12;
  letter-spacing: -1.2px;
  margin: 8px 0 18px;
}
.app-content h2:focus {
  outline: none;
}
.app-content h3 {
  font-size: 17px;
  line-height: 1.35;
  letter-spacing: -0.4px;
  margin: 10px 0;
}
.app-content p {
  margin: 8px 0 15px;
}
.app-kicker {
  font-size: 9px !important;
  letter-spacing: 1.4px;
  font-weight: 650;
  color: var(--app-muted);
}
.app-lead {
  font-size: 13px;
  line-height: 1.7;
  color: var(--app-muted);
}
.app-content .quiet {
  font-size: 10px;
  line-height: 1.65;
  color: var(--app-muted);
  margin: 14px 0;
}
.ui-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex: none;
}
.app-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 14px 17px;
  min-height: 47px;
  border: 0;
  background: var(--button);
  color: var(--on-button);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  text-align: left;
  margin: 17px 0 0;
}
.inline-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: 0;
  border-top: 1px solid var(--app-line);
  color: var(--app-ink);
  font-size: 12px;
  font-weight: 650;
  padding: 13px 0 0;
  margin-top: 16px;
}
.handoff {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 1px dashed var(--app-line);
  background: none;
  color: var(--app-muted);
  font-size: 11px;
  text-align: left;
  border-radius: 10px;
  padding: 12px;
  margin-top: 17px;
}
.handoff .ui-icon {
  width: 16px;
  height: 16px;
}
.app-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 15px;
  margin: 16px 0;
}
.app-notice {
  border-left: 3px solid var(--button);
  background: var(--tint);
  padding: 13px 15px;
  border-radius: 0 10px 10px 0;
  margin: 18px 0;
}
.app-notice strong {
  display: block;
  font-size: 12px;
}
.app-notice p {
  font-size: 11px;
  margin: 5px 0 0;
  color: var(--app-muted);
}
.app-empty {
  border: 1px dashed var(--app-line);
  border-radius: 15px;
  padding: 25px 20px;
  margin: 20px 0;
}
.app-empty > .ui-icon {
  color: var(--app-muted);
  margin-bottom: 12px;
}
.app-empty p {
  font-size: 12px;
  color: var(--app-muted);
}
.app-nav {
  display: flex;
  justify-content: space-around;
  gap: 3px;
  flex: none;
  border-top: 1px solid var(--app-line);
  background: var(--app);
  padding: 11px 8px 8px;
  min-height: 66px;
}
.app-nav button {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  background: transparent;
  color: var(--app-muted);
  font-size: 9px;
  line-height: 1.2;
  border-radius: 8px;
  min-height: 43px;
  padding: 0 3px;
}
.app-nav [aria-current] {
  color: var(--app-ink);
  background: var(--tint);
  font-weight: 650;
}
.app-nav > span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  padding: 0 15px;
  color: var(--app-muted);
}
.app-nav > span + button {
  flex: none;
  padding: 0 15px;
}
.home-indicator {
  width: 112px;
  height: 4px;
  border-radius: 4px;
  background: var(--app-ink);
  opacity: 0.75;
  flex: none;
  margin: 5px auto 10px;
}
.app-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  margin: 19px 0;
}
.app-field input,
.app-field textarea {
  width: 100%;
  padding: 12px;
  min-height: 45px;
  border: 1px solid var(--app-line);
  border-radius: 10px;
  background: var(--panel);
  font-size: 12px;
  font-weight: 400;
  resize: vertical;
  max-height: 180px;
}
.time-options {
  border: 0;
  padding: 0;
  margin: 24px 0;
}
.time-options legend {
  font-size: 12px;
  font-weight: 650;
  margin-bottom: 10px;
}
.time-options label {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 12px;
  border: 1px solid var(--app-line);
  border-radius: 10px;
  background: var(--panel);
  font-size: 11px;
  margin-bottom: 8px;
  cursor: pointer;
  min-height: 46px;
}
.time-options input {
  accent-color: var(--button);
}
.time-options .ui-icon {
  display: none;
  width: 15px;
  height: 15px;
  margin-left: auto;
}
.time-options label:has(:checked) {
  border-color: var(--button);
  background: var(--tint);
}
.time-options label:has(:checked) .ui-icon {
  display: block;
}
.check-field {
  display: flex;
  gap: 9px;
  align-items: start;
  font-size: 12px;
  margin: 18px 0;
}
.check-field input {
  accent-color: var(--button);
  width: 17px;
  height: 17px;
  flex: none;
}
.status {
  display: inline-flex;
  font-size: 9px;
  letter-spacing: 0.5px;
  line-height: 1.4;
  background: var(--tint);
  padding: 5px 9px;
  border-radius: 20px;
  color: var(--app-ink);
}
.initial-avatar {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  flex: none;
  border-radius: 50%;
  background: var(--tint);
  color: var(--app-ink);
  font-size: 12px;
  font-weight: 600;
}
.workspace-heading {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 25px;
}
.workspace-heading .app-kicker {
  margin-top: 0;
}
.workspace-heading h2 {
  font-size: 23px;
}
.team-view .app-content {
  background: var(--panel);
}
.paper-panel,
.warm-panel,
.client-record,
.learner-record {
  background: var(--panel);
  border: 1px solid var(--app-line);
  padding: 18px;
  border-radius: 14px;
  margin: 17px 0;
}
.paper-panel p,
.warm-panel p,
.client-record p,
.learner-record p {
  font-size: 12px;
  color: var(--app-muted);
}
.client-record blockquote {
  font-size: 13px;
  font-style: italic;
  padding: 10px 0 0;
  margin: 0;
  color: var(--app-ink);
}
.workspace-list {
  list-style: none;
  padding: 0;
  font-size: 12px;
}
.workspace-list li {
  display: flex;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--app-line);
}
.app-message {
  padding: 12px 20px;
  background: #fae5dd;
  color: #842e17;
  font-size: 11px;
  flex: none;
  max-height: 80px;
  overflow: auto;
}
.app-message[hidden] {
  display: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.demo-footer {
  max-width: 1160px;
  margin: auto;
  padding: 35px 40px 65px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
}
.demo-footer h2 {
  font-size: 23px;
  letter-spacing: -0.8px;
  margin: 0 0 5px;
}
.demo-footer p {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}
.contact-demo {
  display: flex;
  gap: 20px;
  align-items: center;
  color: var(--blue);
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
}
.more-demos {
  max-width: 1160px;
  margin: 0 auto 60px;
  padding: 0 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.more-demos a {
  border: 1px solid var(--line);
  border-radius: 25px;
  font-size: 12px;
  padding: 9px 14px;
  color: var(--muted);
}
.more-demos a[aria-current] {
  background: var(--ink);
  color: var(--page);
  border-color: transparent;
}
.mobile-start-link {
  display: none;
}
.app-content progress {
  width: 100%;
  height: 5px;
  accent-color: var(--button);
  border: 0;
  border-radius: 5px;
  overflow: hidden;
}
.app-content progress::-webkit-progress-bar {
  background: var(--app-line);
}
.app-content progress::-webkit-progress-value {
  background: var(--button);
}
/* Advisory: editorial typography and a working document, rather than a dashboard. */
.demo-professional {
  --app: #f6f4ef;
  --panel: #fffefa;
  --tint: #e8e9f0;
  --app-ink: #28283d;
  --app-muted: #70707d;
  --app-line: #dddddf;
  --button: #44476a;
}
.advisory-masthead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  letter-spacing: 2px;
  line-height: 1.5;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--app-line);
  margin-bottom: 23px;
}
.advisory-masthead b {
  font-size: 15px;
  letter-spacing: 3px;
  font-weight: 550;
}
.serif-title {
  font-family: Georgia, serif;
  font-weight: 400;
  letter-spacing: -1px !important;
}
.demo-professional .serif-title {
  font-size: 34px;
  line-height: 1.12;
}
.consultation-hero {
  border-radius: 3px;
}
.advisor-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  margin-top: -7px;
  margin-bottom: 24px;
}
.advisor-caption small {
  font-size: 9px;
  color: var(--app-muted);
}
.editorial-footer {
  display: flex;
  gap: 15px;
  margin-top: 24px;
  border-top: 1px solid var(--app-line);
  padding-top: 18px;
  color: var(--app-muted);
  font-size: 11px;
}
.editorial-footer > span {
  font-family: Georgia, serif;
  font-size: 28px;
}
.editorial-footer p {
  margin: 0;
}
.document-heading {
  border-bottom: 1px solid var(--app-line);
  padding-bottom: 15px;
}
.document-heading p {
  font-size: 11px;
  color: var(--app-muted);
}
.plan-summary {
  padding: 22px 0;
}
.plan-summary > span {
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--app-muted);
}
.plan-summary p {
  font-family: Georgia, serif;
  font-size: 20px;
  line-height: 1.45;
}
.plan-progress {
  font-size: 10px;
  color: var(--app-muted);
  display: grid;
  gap: 10px;
  margin: 10px 0 20px;
}
.plan-task {
  display: flex;
  gap: 11px;
  align-items: start;
  text-align: left;
  width: 100%;
  padding: 18px 0;
  border: 0;
  border-top: 1px solid var(--app-line);
  background: transparent;
}
.task-check {
  width: 20px;
  height: 20px;
  flex: none;
  border: 1px solid var(--app-line);
  border-radius: 5px;
  display: grid;
  place-items: center;
}
.task-check .ui-icon {
  width: 15px;
  height: 15px;
}
.plan-task strong {
  font-size: 12px;
  display: block;
}
.plan-task small {
  display: block;
  font-size: 11px;
  line-height: 1.65;
  color: var(--app-muted);
  margin-top: 5px;
}
.plan-task.done strong {
  text-decoration: line-through;
}
.plan-task.done .task-check {
  background: var(--button);
  color: var(--on-button);
}
/* Companion: a pet identity, warm rounded surfaces and a photo-led progress feed. */
.demo-care {
  --app: #faf5ec;
  --panel: #fffdf9;
  --tint: #f4e7cf;
  --app-ink: #3c3028;
  --app-muted: #817368;
  --app-line: #e6ddcf;
  --button: #8c592e;
}
.pet-greeting {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  margin-bottom: 20px;
  color: var(--app-muted);
}
.dog-spotlight {
  position: relative;
  text-align: center;
  border-radius: 26px;
  background:
    radial-gradient(ellipse at top, #f2d9a3, transparent 85%), var(--tint);
  padding: 22px 12px 16px;
}
.dog-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
  border: 3px solid var(--panel);
}
.dog-avatar.hero-avatar {
  width: 146px;
  height: 146px;
  border: 5px solid var(--panel);
  box-shadow: 0 6px 20px #74492320;
}
.dog-name p {
  font-size: 8px;
  letter-spacing: 1.8px;
  margin: 12px 0 4px;
  color: var(--app-muted);
}
.dog-name h2 {
  font-size: 32px;
  margin: 0;
}
.dog-name h2 > span {
  display: block;
  font-size: 10px;
  font-weight: 450;
  letter-spacing: 0;
  margin-top: 6px;
  color: var(--app-muted);
}
.avatar-edit {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: var(--panel);
  border: 0;
  border-radius: 50%;
}
.avatar-edit .ui-icon {
  width: 16px;
  height: 16px;
}
.pet-stats {
  display: flex;
  text-align: center;
  justify-content: space-around;
  margin: 22px 0;
}
.pet-stats strong {
  display: block;
  font-size: 21px;
}
.pet-stats span {
  font-size: 8px;
  color: var(--app-muted);
}
.warm-panel {
  background: var(--tint);
  border: 0;
  border-radius: 20px;
}
.pet-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 11px;
  color: var(--app-muted);
  margin: 23px 0;
}
.pet-note p {
  margin: 0;
}
.pet-alert {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 10px;
  width: 100%;
  padding: 15px;
  background: var(--tint);
  border: 0;
  border-radius: 16px;
  margin: 20px 0;
}
.pet-alert strong {
  display: block;
  font-size: 12px;
}
.pet-alert small {
  font-size: 10px;
  display: block;
  line-height: 1.6;
  margin-top: 3px;
}
.pet-profile {
  text-align: center;
}
.dog-avatar.large {
  width: 115px;
  height: 115px;
}
.pet-profile h2 {
  margin-bottom: 4px;
}
.pet-profile > p:last-child {
  font-size: 11px;
  color: var(--app-muted);
}
.session-dog,
.trainer-dog-record {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 20px 0;
}
.session-dog strong {
  display: block;
  font-size: 15px;
}
.session-dog small {
  font-size: 9px;
  color: var(--app-muted);
}
.lesson-tag {
  font-size: 9px;
  letter-spacing: 1px;
}
.feed-heading {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}
.feed-heading h2 {
  font-size: 25px;
}
.training-post {
  border: 1px solid var(--app-line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--panel);
  margin: 15px 0;
}
.post-author {
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 13px;
}
.post-author strong {
  font-size: 10px;
  display: block;
}
.post-author small {
  font-size: 9px;
  color: var(--app-muted);
}
.new-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--button);
  margin-left: auto;
}
.training-post > .app-photo {
  border-radius: 0;
  margin: 0;
}
.post-body {
  padding: 18px;
}
.post-body > p {
  font-size: 12px;
}
.milestone {
  display: flex;
  gap: 7px;
  align-items: center;
  color: var(--button);
  font-size: 9px;
  letter-spacing: 0.7px;
}
.practice-tip {
  border-top: 1px solid var(--app-line);
  padding-top: 14px;
  margin-top: 18px;
}
.practice-tip strong {
  font-size: 11px;
}
.practice-tip p {
  font-size: 11px;
  color: var(--app-muted);
}
.trainer-dog-record p {
  font-size: 10px;
  margin: 3px 0;
}
/* Membership: a graphic club pass, bold numerals and an operational class roster. */
.demo-fitness {
  --app: #f3f4f5;
  --panel: #fff;
  --tint: #e4e9ef;
  --app-ink: #171e28;
  --app-muted: #68717d;
  --app-line: #d7dce4;
  --button: #1e4f87;
}
.club-wordmark {
  display: flex;
  align-items: baseline;
  gap: 5px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: -0.5px;
  border-bottom: 2px solid var(--app-ink);
  padding-bottom: 14px;
  margin-bottom: 22px;
}
.club-wordmark > span {
  font-size: 9px;
  letter-spacing: 2px;
  font-weight: 450;
}
.pass-greeting p {
  font-size: 9px;
  letter-spacing: 2px;
  margin-bottom: 3px;
  color: var(--app-muted);
}
.pass-greeting h2 {
  font-size: 43px;
  margin-top: 0;
}
.membership-pass {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #182f50;
  color: #f6f7fb;
  border-radius: 20px;
  padding: 23px;
  box-shadow: 0 13px 25px #21385820;
}
.membership-pass:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 230px;
  height: 230px;
  border: 45px solid #4278b85c;
  border-radius: 50%;
  right: -125px;
  top: -20px;
  transform: rotate(-30deg);
}
.pass-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 1.5px;
}
.pass-type {
  display: inline-block;
  margin-top: 24px;
  font-size: 8px;
  letter-spacing: 2px;
  color: #bacfe8;
}
.membership-pass > strong {
  display: block;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -1px;
  margin: 12px 0 22px;
}
.demo-barcode {
  display: flex;
  gap: 3px;
  height: 35px;
  align-items: stretch;
  padding: 4px;
  background: #f5f6f9;
  width: max-content;
  max-width: 100%;
}
.demo-barcode i {
  background: #172b45;
  display: block;
}
.pass-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 7px;
  letter-spacing: 0.8px;
  margin-top: 12px;
}
.app-content .pass-disclaimer {
  font-size: 9px;
  color: var(--app-muted);
  text-align: center;
  margin: 12px 0 23px;
}
.club-invite h3 {
  font-size: 19px;
}
.club-invite p {
  font-size: 12px;
  color: var(--app-muted);
}
.class-cover {
  border-radius: 8px;
}
.class-title h3 {
  font-size: 24px;
  margin-bottom: 4px;
}
.class-title p {
  font-size: 11px;
  color: var(--app-muted);
}
.text-button {
  border: 0;
  background: none;
  width: 100%;
  padding: 17px 5px;
  color: var(--app-muted);
  font-size: 11px;
  text-decoration: underline;
}
.activity-number {
  display: flex;
  gap: 15px;
  align-items: center;
  margin: 24px 0;
}
.activity-number strong {
  font-size: 92px;
  line-height: 1;
  letter-spacing: -6px;
}
.activity-number span {
  max-width: 100px;
  font-size: 12px;
  color: var(--app-muted);
}
.week-dots {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  margin: 25px 0 32px;
}
.week-dots span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--app-line);
  font-size: 10px;
}
.week-dots .filled {
  background: var(--button);
  color: var(--on-button);
}
.visit-history {
  list-style: none;
  padding: 0;
}
.visit-history li {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 17px 0;
  border-bottom: 1px solid var(--app-line);
}
.visit-history strong {
  font-size: 12px;
  display: block;
}
.visit-history small {
  font-size: 10px;
  display: block;
  color: var(--app-muted);
  margin-top: 3px;
}
.activity-icon {
  background: var(--tint);
  border-radius: 10px;
  padding: 9px;
}
.visit-history .status {
  margin-left: auto;
  font-size: 7px;
}
.desk-metrics {
  display: flex;
  gap: 32px;
  margin: 22px 0;
  padding: 20px;
  border-radius: 14px;
  background: var(--tint);
}
.desk-metrics strong {
  font-size: 33px;
  display: block;
  line-height: 1.2;
}
.desk-metrics small {
  font-size: 10px;
  color: var(--app-muted);
}
.roster-title {
  border-bottom: 1px solid var(--app-line);
  padding-bottom: 12px;
}
.roster-title span {
  font-size: 10px;
  color: var(--app-muted);
}
.member-roster {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 22px 0;
  flex-wrap: wrap;
}
.member-roster h3 {
  font-size: 14px;
  margin: 0;
}
.member-roster p {
  font-size: 10px;
  margin: 3px 0;
}
.member-roster small {
  font-size: 9px;
}
.member-roster > .status {
  margin-left: auto;
}
/* Learning: studio journal, course sequence and personal project feedback. */
.demo-learning {
  --app: #f8f1e7;
  --panel: #fffbf5;
  --tint: #efdfcc;
  --app-ink: #4a3329;
  --app-muted: #8a7060;
  --app-line: #e5d7c5;
  --button: #86583f;
}
.studio-wordmark {
  font-family: Georgia, serif;
  font-size: 29px;
  letter-spacing: -1px;
  line-height: 1;
  position: relative;
  margin-bottom: 23px;
}
.studio-wordmark > span {
  display: block;
  font:
    9px Inter,
    sans-serif;
  letter-spacing: 4px;
  margin-top: 5px;
}
.studio-wordmark > i {
  position: absolute;
  right: 0;
  bottom: 4px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
}
.course-cover {
  position: relative;
  height: 225px;
  overflow: hidden;
  border-radius: 80px 80px 8px 8px;
}
.course-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 12%;
}
.course-cover-tag {
  position: absolute;
  bottom: 10px;
  left: 12px;
  border-radius: 5px;
  background: #fffbf4ed;
  color: #483527;
  padding: 6px 9px;
  font-size: 8px;
  letter-spacing: 1px;
}
.course-intro {
  padding-top: 13px;
}
.course-intro .serif-title {
  font-size: 38px;
  margin: 8px 0;
}
.course-intro > p:last-child {
  font-size: 13px;
  line-height: 1.7;
  color: var(--app-muted);
}
.course-facts {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  border-top: 1px solid var(--app-line);
  border-bottom: 1px solid var(--app-line);
  padding: 12px 0;
}
.course-progress {
  font-size: 10px;
  color: var(--app-muted);
  display: grid;
  gap: 9px;
  margin: 23px 0;
}
.curriculum {
  margin: 20px 0;
}
.lesson {
  display: flex;
  gap: 11px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--app-line);
}
.lesson > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: none;
  background: var(--tint);
  border-radius: 50%;
  font-size: 11px;
}
.lesson strong {
  font-size: 12px;
  display: block;
}
.lesson small {
  font-size: 9px;
  color: var(--app-muted);
  display: block;
  margin-top: 3px;
}
.lesson > small {
  margin-left: auto;
  font-size: 8px;
}
.lesson.complete > span {
  background: var(--button);
  color: var(--on-button);
}
.lesson .ui-icon {
  width: 16px;
  height: 16px;
}
.studio-note {
  padding: 17px;
  background: var(--tint);
  border-radius: 5px;
  margin: 20px 0;
}
.studio-note p {
  font-size: 11px;
}
.prep-toggle {
  display: flex;
  gap: 8px;
  align-items: center;
  background: none;
  border: 0;
  font-size: 10px;
  text-align: left;
  padding: 10px 0;
}
.prep-toggle[aria-pressed="true"] .task-check {
  background: var(--button);
  color: var(--on-button);
}
.project-figure {
  margin: 0 0 25px;
}
.project-figure .app-photo {
  border-radius: 50px 5px 5px 5px;
}
.project-figure figcaption {
  font-size: 8px;
  letter-spacing: 1.3px;
  color: var(--app-muted);
}
.feedback-letter {
  padding: 19px;
  background: var(--panel);
  border: 1px solid var(--app-line);
  border-radius: 3px;
  box-shadow: 3px 4px 0 var(--tint);
}
.feedback-author {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 11px;
}
.feedback-author small {
  font-size: 9px;
  color: var(--app-muted);
}
.feedback-letter > p {
  font-family: Georgia, serif;
  font-size: 17px;
  line-height: 1.65;
  margin: 20px 0;
}
.handwritten {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: var(--app-muted);
}
.next-lesson {
  border-top: 1px solid var(--app-line);
  margin-top: 25px;
  padding-top: 19px;
}
.next-lesson > span {
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--app-muted);
}
.next-lesson p {
  font-size: 11px;
  color: var(--app-muted);
}
.learner-record small {
  font-size: 10px;
  color: var(--app-muted);
}
/* Each app retains its identity in the site's dark appearance. */
[data-theme="dark"] .demo-professional {
  --app: #22232f;
  --panel: #2a2c3b;
  --tint: #35374c;
  --app-ink: #eeedf5;
  --app-muted: #b6b5c8;
  --app-line: #414356;
  --button: #c0bee2;
  --on-button: #28273a;
}
[data-theme="dark"] .demo-care {
  --app: #29251f;
  --panel: #343027;
  --tint: #453b2d;
  --app-ink: #f5e8d7;
  --app-muted: #c0ad95;
  --app-line: #514636;
  --button: #eac58f;
  --on-button: #302418;
}
[data-theme="dark"] .demo-care .dog-spotlight {
  background:
    radial-gradient(ellipse at top, #76542b60, transparent 85%), var(--tint);
}
[data-theme="dark"] .demo-fitness {
  --app: #131e2d;
  --panel: #1a2a3e;
  --tint: #253a53;
  --app-ink: #f0f4fc;
  --app-muted: #a6bad3;
  --app-line: #364c66;
  --button: #a3c9ff;
  --on-button: #14283f;
}
[data-theme="dark"] .demo-learning {
  --app: #2b2420;
  --panel: #342c27;
  --tint: #48382c;
  --app-ink: #f3e9d9;
  --app-muted: #c4ae98;
  --app-line: #544639;
  --button: #e3bb98;
  --on-button: #342216;
}
@media (max-width: 1000px) {
  .demo-layout {
    gap: 35px;
    padding: 45px 28px;
  }
  .demo-story h1 {
    font-size: 43px;
    letter-spacing: -2px;
  }
  .demo-intro {
    font-size: 15px;
  }
  .phone-shell {
    width: 365px;
    height: 750px;
  }
  .app-content {
    padding-inline: 20px;
  }
  .page-header {
    padding-inline: 26px;
  }
}
@media (max-width: 800px) {
  .demo-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    padding: 35px 24px 45px;
  }
  .demo-story {
    width: 100%;
    max-width: 600px;
    padding: 0;
  }
  .demo-story h1 {
    max-width: 550px;
    font-size: 45px;
    margin: 15px 0;
  }
  .demo-intro {
    max-width: 560px;
  }
  .scenario-caption {
    margin: 21px 0;
  }
  .workflow-heading {
    padding-top: 16px;
  }
  .demo-steps {
    display: flex;
    gap: 12px;
    margin-bottom: 13px;
  }
  .demo-steps li {
    flex: 1;
    align-items: start;
    gap: 9px;
    font-size: 10px;
  }
  .demo-steps li > span {
    width: 24px;
    height: 24px;
  }
  .related-businesses {
    margin: 17px 0;
  }
  .stage {
    width: 100%;
  }
  .phone-shell {
    width: 390px;
    height: 780px;
  }
  .demo-footer {
    padding: 28px 24px 35px;
  }
  .more-demos {
    padding: 0 24px;
    margin-bottom: 40px;
  }
  .mobile-start-link {
    display: inline-block;
    color: var(--blue);
    font-size: 13px;
    margin: 4px 0 13px;
  }
  .header-back {
    font-size: 11px;
  }
  .header-actions {
    gap: 12px;
  }
  .page-header {
    height: 70px;
    padding: 0 22px;
  }
  .wordmark {
    font-size: 21px;
  }
}
@media (max-width: 450px) {
  .demo-layout {
    padding-inline: 20px;
  }
  .phone-shell {
    width: 100%;
    max-width: 370px;
    height: 740px;
    border-width: 6px;
    border-radius: 44px;
  }
  .device-status {
    height: 49px;
  }
  .device-island {
    width: 102px;
    height: 27px;
  }
  .app-content {
    padding: 20px 18px 25px;
  }
  .app-content h2 {
    font-size: 27px;
  }
  .app-context {
    padding-inline: 18px;
  }
  .role-switch button {
    padding: 10px 18px;
  }
  .demo-story h1 {
    font-size: 39px;
  }
  .demo-steps {
    display: block;
  }
  .demo-steps li {
    font-size: 12px;
    padding: 6px 0;
    align-items: center;
  }
  .demo-disclaimer {
    font-size: 10px;
  }
  .demo-footer {
    display: block;
  }
  .contact-demo {
    margin-top: 18px;
  }
  .demo-footer h2 {
    font-size: 21px;
  }
  .wordmark {
    font-size: 20px;
    gap: 7px;
  }
  .wordmark svg {
    width: 27px;
    height: 27px;
  }
  .header-back {
    font-size: 10px;
  }
  .header-actions {
    gap: 8px;
  }
  .page-header {
    padding: 0 18px;
    gap: 12px;
  }
  .membership-pass {
    padding: 19px;
  }
  .membership-pass > strong {
    font-size: 27px;
  }
  .pet-stats span {
    font-size: 8px;
  }
  .dog-avatar.hero-avatar {
    width: 132px;
    height: 132px;
  }
}
@media (max-width: 360px) {
  .header-back {
    max-width: 70px;
    line-height: 1.4;
  }
  .page-header {
    padding: 0 14px;
    gap: 6px;
  }
  .wordmark {
    font-size: 18px;
  }
  .wordmark svg {
    width: 24px;
  }
  .phone-shell {
    height: 700px;
    border-radius: 38px;
  }
  .app-content {
    padding-inline: 14px;
  }
  .app-nav button {
    font-size: 8px;
  }
  .course-facts {
    font-size: 7px;
  }
  .app-content h2 {
    font-size: 25px;
  }
  .membership-pass > strong {
    font-size: 24px;
  }
  .membership-pass {
    padding: 16px;
  }
  .pass-bottom {
    font-size: 6px;
  }
  .demo-barcode {
    gap: 2px;
  }
  .studio-wordmark > i {
    font-size: 11px;
  }
  .demo-story h1 {
    font-size: 35px;
  }
  .app-context {
    font-size: 8px;
  }
  .app-nav > span {
    font-size: 8px;
    padding: 0 6px;
  }
  .app-nav > span + button {
    padding: 0 6px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html,
  .app-content {
    scroll-behavior: auto;
  }
}
