:root {
  --ink: #111111;
  --muted: #646464;
  --line: #dfdcd6;
  --soft: #f0ede7;
  --soft-2: #faf8f4;
  --cyan: #08c9e9;
  --cyan-dark: #111111;
  --navy: #0c151a;
  --panel: #131d23;
  --panel-2: #0e171c;
  --white: #ffffff;
  --green: #34c98b;
  --amber: #ffbd4a;
  --red: #ff6f6f;
  --radius: 24px;
  --shadow: 0 28px 80px rgba(20, 45, 55, 0.12);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  color: var(--ink);
  background: #fbfaf7;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

main {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

@supports (overflow-x: clip) {
  html,
  body,
  main {
    overflow-x: clip;
  }
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

img {
  display: block;
  max-width: 100%;
}

::selection {
  color: var(--ink);
  background: rgba(8, 201, 233, 0.32);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  min-height: 76px;
  padding: 0 clamp(24px, 5vw, 76px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas: "brand nav actions";
  align-items: center;
  gap: 28px;
  background: #fff;
  border-bottom: 1px solid rgba(223, 220, 214, 0.85);
}

.app-logo {
  color: var(--cyan-dark);
  font-family: "Arial Narrow", "Roboto Condensed", ui-monospace, monospace;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.brand {
  grid-area: brand;
  width: 190px;
  justify-self: start;
  line-height: 0;
}

.brand img { width: 100%; height: auto; }

.site-nav {
  grid-area: nav;
  display: flex;
  align-items: center;
  gap: 34px;
  color: #42515a;
  font-size: 14px;
  font-weight: 650;
}

.site-nav a,
.text-link,
.site-footer a {
  transition: color 160ms ease;
}

.site-nav a:hover,
.text-link:hover,
.site-footer a:hover { color: var(--cyan-dark); }

.header-actions {
  grid-area: actions;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.menu-button {
  grid-area: menu;
  display: none;
  min-width: 44px;
  min-height: 44px;
  padding: 0 12px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}

.menu-button-icon {
  width: 18px;
  display: grid;
  gap: 4px;
}

.menu-button-icon i {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-button[aria-expanded="true"] .menu-button-icon i:first-child { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded="true"] .menu-button-icon i:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] .menu-button-icon i:last-child { transform: translateY(-6px) rotate(-45deg); }

.login-icon { display: none; }
.nav-demo-link { display: none; }

.button {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #072129;
  background: var(--cyan);
  border: 1px solid var(--cyan);
  border-radius: 12px;
  font-weight: 850;
  box-shadow: 0 12px 28px rgba(8, 201, 233, 0.21);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #28d5ef;
  box-shadow: 0 16px 32px rgba(8, 201, 233, 0.28);
}

.button:focus-visible,
.inline-cta:focus-visible,
.site-nav a:focus-visible,
.text-link:focus-visible,
.menu-button:focus-visible,
.mobile-trial:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(8, 201, 233, 0.42);
  outline-offset: 3px;
}

.button-small {
  min-height: 42px;
  padding: 0 17px;
  border-radius: 9px;
  font-size: 13px;
}

.button-secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
  box-shadow: none;
}

.button-secondary:hover {
  background: var(--soft-2);
  box-shadow: 0 12px 24px rgba(13, 23, 29, 0.07);
}

.button-light {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.section-shell {
  width: min(1180px, calc(100% - 48px));
  max-width: 100%;
  min-width: 0;
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: auto;
  padding-top: 36px;
  padding-bottom: 52px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(560px, 1.12fr);
  align-items: start;
  gap: 58px;
}

.hero-glow {
  position: absolute;
  z-index: -1;
  top: 60px;
  right: -180px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 201, 233, 0.16), rgba(8, 201, 233, 0) 67%);
  pointer-events: none;
}

.eyebrow,
.feature-number {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow i {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(8, 201, 233, 0.11);
}

.hero h1,
.section-heading h2,
.feature-copy h2,
.final-cta h2 {
  margin: 22px 0 22px;
  font-size: clamp(48px, 5.3vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.052em;
}

.hero h1 em,
.section-heading h2 em,
.final-cta h2 em {
  color: var(--cyan-dark);
  font-style: normal;
}

.hero-lead {
  max-width: 630px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.68;
}

.button-row {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.proof-list {
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  list-style: none;
}

.proof-list li::before {
  content: "✓";
  margin-right: 7px;
  color: var(--cyan-dark);
  font-weight: 950;
}

.hero-product,
.product-panel {
  position: relative;
  color: #e9f1f4;
  background: var(--navy);
  border: 1px solid #27353d;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.hero-product {
  width: 670px;
  max-width: 100%;
  margin: 0;
  transform: perspective(1300px) rotateY(-2deg) rotateX(1deg);
  transform-origin: center left;
}

.real-app-shot {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
  border: 1px solid #2b3a42;
  border-radius: 20px;
  box-shadow: 0 28px 70px rgba(10, 29, 37, 0.18);
}

.real-image-frame {
  overflow: hidden;
  background: #070d11;
}

.real-image-frame img {
  width: 100%;
  height: auto;
}

.real-app-shot figcaption {
  padding: 13px 17px;
  color: #8fa0a8;
  background: #111b21;
  border-top: 1px solid #293840;
  font-size: 9px;
  line-height: 1.45;
}

.real-app-shot figcaption span {
  margin-right: 8px;
  color: var(--cyan);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-shot .real-image-frame {
  max-height: 540px;
}

.hero-shot .real-image-frame img {
  object-fit: cover;
  object-position: top;
}

.feature-shot {
  align-self: center;
}

.report-shot .real-image-frame,
.expiry-shot .real-image-frame,
.testing-shot .real-image-frame,
.live-group-shot .real-image-frame {
  max-height: 650px;
}

.report-shot img,
.expiry-shot img,
.testing-shot img,
.live-group-shot img {
  object-fit: cover;
  object-position: top;
}

.real-shot-needed {
  min-height: 430px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: var(--soft-2);
  border: 1px dashed #9bcbd4;
  border-radius: 22px;
}

.real-shot-needed span {
  color: var(--cyan-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.real-shot-needed strong {
  max-width: 430px;
  margin-top: 15px;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.real-shot-needed p {
  max-width: 470px;
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.browser-bar {
  min-height: 52px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #91a0a8;
  border-bottom: 1px solid #28363e;
  font-size: 11px;
  font-weight: 750;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots i {
  width: 8px;
  height: 8px;
  background: #41525b;
  border-radius: 50%;
}

.browser-title { justify-self: center; }

.live-chip {
  justify-self: end;
  padding: 5px 8px;
  color: var(--green);
  background: rgba(52, 201, 139, 0.09);
  border: 1px solid rgba(52, 201, 139, 0.28);
  border-radius: 999px;
}

.app-frame {
  min-height: 430px;
  display: grid;
  grid-template-columns: 145px 1fr;
}

.app-sidebar {
  padding: 24px 13px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: #7f9099;
  background: #111b21;
  border-right: 1px solid #2a3941;
}

.app-logo {
  margin: 0 10px 22px;
  color: var(--cyan);
  font-size: 17px;
}

.app-nav {
  padding: 10px 11px;
  display: flex;
  gap: 9px;
  align-items: center;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 700;
}

.app-nav.active {
  color: #dce7eb;
  background: #202d34;
}

.app-nav i {
  width: 14px;
  color: var(--cyan);
  font-style: normal;
  text-align: center;
}

.dashboard-canvas {
  padding: 25px 25px 22px;
  background: #0d151a;
}

.dashboard-heading,
.card-title,
.panel-top,
.session-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-heading div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.dashboard-heading small,
.panel-top small {
  color: #7f9099;
  font-size: 8px;
  letter-spacing: 0.12em;
}

.dashboard-heading strong { font-size: 19px; }
.dashboard-heading > span { color: #7f9099; font-size: 9px; }

.dashboard-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 10px;
}

.stat-card {
  min-height: 112px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  background: #131f25;
  border: 1px solid #283840;
  border-radius: 11px;
}

.stat-card > span {
  color: #8b9ba3;
  font-size: 9px;
  font-weight: 700;
}

.stat-card strong {
  margin-top: 11px;
  font-size: 26px;
}

.stat-card small {
  margin-top: auto;
  color: #819099;
  font-size: 8px;
}

.stat-primary {
  background: linear-gradient(140deg, rgba(8, 201, 233, 0.14), #132127 70%);
  border-color: rgba(8, 201, 233, 0.38);
}

.mini-progress {
  height: 4px;
  margin-top: 10px;
  background: #2b3b43;
  border-radius: 999px;
  overflow: hidden;
}

.mini-progress i {
  display: block;
  width: 92%;
  height: 100%;
  background: var(--cyan);
  border-radius: inherit;
}

.attention-card {
  margin-top: 12px;
  padding: 16px;
  background: #111a20;
  border: 1px solid #283840;
  border-radius: 11px;
}

.card-title {
  margin-bottom: 9px;
  font-size: 10px;
}

.card-title span { color: var(--cyan); }

.attention-row {
  min-height: 39px;
  display: grid;
  grid-template-columns: auto 95px 1fr auto;
  align-items: center;
  gap: 8px;
  color: #7e8d95;
  border-top: 1px solid #202e35;
  font-size: 8px;
}

.attention-row b { color: #dfe8eb; font-size: 9px; }
.attention-row button,
.coach-list button {
  color: var(--cyan);
  background: transparent;
  border: 1px solid #30434c;
  border-radius: 6px;
  font-size: 8px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.dot.red { background: var(--red); }
.dot.amber { background: var(--amber); }
.dot.cyan { background: var(--cyan); }

.mock-note {
  position: absolute;
  right: 14px;
  bottom: -24px;
  color: #7e8d95;
  font-size: 9px;
  letter-spacing: 0.02em;
}

.audience-section {
  padding: 112px 0 0;
}

.audience-intro {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.audience-intro h2 {
  margin: 20px 0;
  font-size: clamp(38px, 4.4vw, 62px);
}

.audience-intro p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 58px;
}

.audience-grid article {
  position: relative;
  min-height: 220px;
  padding: 28px 24px;
  overflow: hidden;
  background: var(--soft-2);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.audience-grid article > span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #07313b;
  background: rgba(8, 201, 233, 0.15);
  border-radius: 9px;
  font-size: 10px;
  font-weight: 900;
}

.audience-grid h3 {
  margin: 36px 0 10px;
  font-size: 19px;
}

.audience-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.practitioner-proof {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 26px;
  margin-top: 14px;
  padding: 30px 34px;
  color: #eaf5f7;
  background: #0c1a20;
  border: 1px solid #20343c;
  border-radius: 18px;
}

.practitioner-proof-mark {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  color: var(--cyan);
  border: 1px solid #245465;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.practitioner-proof strong {
  display: block;
  margin-bottom: 7px;
  font-size: clamp(21px, 2.2vw, 30px);
}

.practitioner-proof p {
  margin: 0;
  color: #aebdc3;
  font-size: 15px;
  line-height: 1.6;
}

.origin-section {
  margin-top: 112px;
  padding: 112px 0;
  color: var(--white);
  background: #0c1a20;
}

.origin-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
}

.origin-name {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d9e0e2;
  border-radius: 22px;
}

.origin-name::before {
  content: none;
}

.origin-name img,
.origin-name small,
.origin-name p { position: relative; }

.origin-name img { width: min(78%, 330px); height: auto; }

.origin-name small {
  margin-top: 28px;
  color: #647780;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.origin-name p {
  margin: 8px 0 0;
  color: #243840;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.045em;
}

.origin-copy .eyebrow { color: var(--cyan); }

.origin-copy h2 {
  margin: 22px 0 26px;
  color: var(--white);
  font-size: clamp(38px, 4vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.048em;
}

.origin-copy h2 em {
  color: var(--cyan);
  font-style: normal;
}

.origin-copy > p {
  margin: 0 0 18px;
  color: #aebdc3;
  font-size: 16px;
  line-height: 1.72;
}

.origin-copy > strong {
  display: block;
  margin-top: 30px;
  padding: 4px 0 4px 20px;
  color: #eaf5f7;
  border-left: 3px solid var(--cyan);
  font-size: 16px;
  line-height: 1.55;
}

.workflow {
  padding-top: 126px;
  padding-bottom: 128px;
}

.section-heading {
  max-width: 790px;
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin: 20px 0;
  font-size: clamp(38px, 4.4vw, 62px);
}

.section-heading p {
  max-width: 660px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.workflow-steps {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}

.workflow-steps > b {
  color: #b8c9ce;
  font-size: 22px;
}

.workflow-steps article {
  position: relative;
  min-height: 192px;
  padding: 24px;
  background: var(--soft-2);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.workflow-steps article > span {
  position: absolute;
  top: 18px;
  right: 18px;
  color: #a6b5bb;
  font-size: 11px;
  font-weight: 900;
}

.workflow-steps article > i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #07313b;
  background: rgba(8, 201, 233, 0.15);
  border-radius: 13px;
  font-style: normal;
  font-size: 20px;
}

.workflow-steps h3 {
  margin: 25px 0 8px;
  font-size: 18px;
}

.workflow-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.feature {
  padding: 130px 0;
}

.feature:nth-of-type(even) { background: var(--soft-2); }

.feature-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(560px, 1.15fr);
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
}

.feature-reverse {
  grid-template-columns: minmax(560px, 1.15fr) minmax(360px, 0.85fr);
}

.feature-live .section-shell {
  width: min(1380px, calc(100% - 48px));
}

.feature-live .feature-grid {
  grid-template-columns: minmax(340px, 0.72fr) minmax(660px, 1.28fr);
  gap: clamp(48px, 5vw, 84px);
}

.feature-live .feature-copy {
  max-width: 520px;
}

.live-group-shot,
.live-group-shot .real-image-frame {
  width: 100%;
  max-height: none;
}

.feature-copy h2 {
  margin: 17px 0 20px;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.02;
}

.feature-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.check-list {
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 17px;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: start;
  color: #52636c;
  font-size: 14px;
  line-height: 1.55;
}

.check-list i {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: #076678;
  background: rgba(8, 201, 233, 0.13);
  border-radius: 50%;
  font-style: normal;
  font-size: 12px;
  font-weight: 950;
}

.check-list strong { color: var(--ink); }

.inline-cta {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--cyan-dark);
  font-size: 14px;
  font-weight: 900;
  border-bottom: 1px solid rgba(2, 157, 187, 0.35);
}

.inline-cta span { transition: transform 160ms ease; }
.inline-cta:hover span { transform: translate(3px, -3px); }

.feature-programming {
  color: var(--white);
  background: var(--navy) !important;
  overflow: hidden;
}

.feature-programming .feature-number { color: var(--white); }
.feature-programming .feature-copy > p,
.feature-programming .check-list li { color: #93a5ad; }
.feature-programming .check-list strong { color: #f2f7f9; }
.feature-programming .feature-copy h2 { max-width: 530px; }
.feature-programming .check-list i { color: var(--cyan); background: rgba(8, 201, 233, 0.12); }
.feature-programming .inline-cta { color: var(--cyan); }

.programme-workflow {
  position: relative;
  min-width: 0;
  padding: 18px;
  background: #101a20;
  border: 1px solid #2d3d45;
  border-radius: 20px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.programme-workflow::before {
  content: "";
  position: absolute;
  inset: -18% -15%;
  background: radial-gradient(circle, rgba(8, 201, 233, 0.17), rgba(8, 201, 233, 0) 67%);
  border-radius: 50%;
  pointer-events: none;
}

.reporting-workflow {
  width: 100%;
  align-self: center;
}

.reporting-workflow .workflow-screen {
  display: none;
}

.reporting-workflow .workflow-screen.is-active {
  display: block;
}

.reporting-workflow .screen-frame img {
  width: 100%;
  height: auto;
}

.carousel-toolbar {
  position: relative;
  z-index: 3;
  min-height: 46px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.carousel-toolbar .real-product-tag {
  position: static;
}

.carousel-controls {
  display: flex;
  align-items: center;
  gap: 9px;
}

.carousel-controls button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #eaf2f5;
  background: #17252c;
  border: 1px solid #3a4c55;
  border-radius: 10px;
  cursor: pointer;
  font-size: 18px;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.carousel-controls button:hover {
  color: #082128;
  background: var(--cyan);
  border-color: var(--cyan);
  transform: translateY(-1px);
}

.carousel-controls button:focus-visible,
.carousel-dots button:focus-visible {
  outline: 3px solid rgba(8, 201, 233, 0.38);
  outline-offset: 2px;
}

.carousel-controls span {
  min-width: 39px;
  color: #91a2aa;
  font-size: 10px;
  font-weight: 900;
  text-align: center;
}

.programme-slides {
  position: relative;
  z-index: 2;
  display: grid;
  min-width: 0;
  overflow: hidden;
}

.workflow-screen {
  grid-area: 1 / 1;
  width: 100%;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(22px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.workflow-screen.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.workflow-screen figcaption {
  margin: 0 0 11px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.workflow-screen figcaption > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #05252d;
  background: var(--cyan);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 950;
}

.workflow-screen figcaption > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.workflow-screen figcaption strong {
  color: #eaf2f5;
  font-size: 12px;
}

.workflow-screen figcaption small {
  color: #80929b;
  font-size: 8px;
}

.screen-frame {
  overflow: hidden;
  background: #060c10;
  border: 1px solid #35464e;
  border-radius: 15px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.42);
}

.screen-frame img {
  width: 100%;
  height: auto;
}

.real-product-tag {
  z-index: 4;
  padding: 8px 11px;
  color: var(--cyan);
  background: #122129;
  border: 1px solid rgba(8, 201, 233, 0.34);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.carousel-dots {
  position: relative;
  z-index: 3;
  margin-top: 17px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  background: #52646d;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: width 160ms ease, background 160ms ease;
}

.carousel-dots button.is-active {
  width: 25px;
  background: var(--cyan);
}

.repeat-proof {
  margin-top: 95px;
  padding-top: 82px;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(480px, 1.28fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
  border-top: 1px solid #27363e;
}

.repeat-copy h3 {
  margin: 14px 0 16px;
  color: #f1f6f8;
  font-size: clamp(31px, 3.4vw, 47px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.repeat-copy p {
  margin: 0;
  color: #8fa1aa;
  font-size: 15px;
  line-height: 1.68;
}

.repeat-phones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 22px;
}

.repeat-phones figure {
  margin: 0;
  overflow: hidden;
  background: #03080b;
  border: 5px solid #25343c;
  border-radius: 28px;
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.38);
}

.repeat-phones img {
  width: 100%;
  height: auto;
}

.product-panel {
  min-width: 0;
  padding: 24px;
  border-radius: 22px;
  box-shadow: 0 28px 70px rgba(10, 29, 37, 0.18);
}

.panel-top {
  min-height: 42px;
  padding-bottom: 16px;
  border-bottom: 1px solid #2a3941;
}

.panel-top .app-logo {
  margin: 0;
  font-size: 18px;
}

.panel-top b {
  padding: 7px 10px;
  color: var(--cyan);
  background: rgba(8, 201, 233, 0.09);
  border: 1px solid rgba(8, 201, 233, 0.25);
  border-radius: 7px;
  font-size: 9px;
}

.report-head {
  padding: 20px 0 14px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: 14px;
}

.report-head > div,
.testing-profile > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.report-head small,
.testing-profile small,
.coach-list small {
  color: #6f818a;
  font-size: 8px;
  letter-spacing: 0.1em;
}

.report-head strong,
.testing-profile strong { font-size: 12px; }

.ai-label {
  padding: 7px 9px;
  color: var(--cyan);
  background: rgba(8, 201, 233, 0.08);
  border-radius: 7px;
  font-size: 8px;
  font-weight: 800;
}

.chart-card {
  padding: 18px;
  background: var(--panel-2);
  border: 1px solid #283840;
  border-radius: 13px;
}

.chart-meta {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.chart-meta > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.chart-meta span { color: #8fa0a8; font-size: 9px; }
.chart-meta strong { font-size: 20px; }
.positive { color: var(--green); font-size: 12px; }

.chart {
  position: relative;
  height: 188px;
  margin-top: 12px;
  overflow: hidden;
}

.gridline {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: #233139;
}

.line-one { top: 24%; }
.line-two { top: 52%; }
.line-three { top: 80%; }

.trend-line {
  position: absolute;
  inset: 5px 0 28px;
}

.segment {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--w);
  height: 5px;
  display: block;
  background: var(--cyan);
  border-radius: 999px;
  transform: rotate(var(--r));
  transform-origin: left center;
  box-shadow: 0 0 12px rgba(8, 201, 233, 0.2);
}

.s1 { --x: 2%; --y: 78%; --w: 15%; --r: -9deg; }
.s2 { --x: 16%; --y: 64%; --w: 16%; --r: 5deg; }
.s3 { --x: 31%; --y: 69%; --w: 17%; --r: -24deg; }
.s4 { --x: 46%; --y: 43%; --w: 15%; --r: 6deg; }
.s5 { --x: 60%; --y: 48%; --w: 16%; --r: -25deg; }
.s6 { --x: 74%; --y: 24%; --w: 14%; --r: -4deg; }
.s7 { --x: 87%; --y: 20%; --w: 13%; --r: -22deg; }

.chart-point {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--cyan);
  border: 3px solid #0e171c;
  border-radius: 50%;
}

.p1 { left: 1%; top: 76%; }
.p2 { left: 46%; top: 40%; }
.p3 { left: 74%; top: 21%; }
.p4 { right: 0; top: 3%; }

.chart-labels {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  color: #64767f;
  font-size: 8px;
}

.ai-summary {
  margin-top: 12px;
  padding: 14px;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  background: #13252c;
  border-left: 3px solid var(--cyan);
  border-radius: 9px;
}

.ai-summary > i {
  color: var(--cyan);
  font-style: normal;
}

.ai-summary strong { font-size: 10px; }

.ai-summary p {
  margin: 5px 0 0;
  color: #8fa0a8;
  font-size: 8px;
  line-height: 1.5;
}

.mid-cta {
  padding: 54px 0;
  color: var(--white);
  background: var(--cyan-dark);
}

.mid-cta .section-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.mid-cta span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mid-cta h2 {
  max-width: 710px;
  margin: 8px 0 0;
  font-size: clamp(25px, 3.2vw, 42px);
  line-height: 1.08;
}

.testing-profile {
  padding: 19px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  border-bottom: 1px solid #2a3941;
}

.rating-key {
  padding: 14px 0;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #7d8e97;
  font-size: 8px;
}

.rating-key > span {
  margin-right: auto;
  color: var(--cyan);
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rating {
  width: fit-content;
  padding: 5px 7px;
  color: white;
  border-radius: 5px;
  font-size: 7px;
  text-transform: uppercase;
}

.rating.excellent { background: #23a565; }
.rating.good { background: #58bd80; }
.rating.average { background: #f49a19; }
.rating.work { background: #e84444; }

.test-table {
  border: 1px solid #2a3941;
  border-radius: 10px;
  overflow: hidden;
}

.test-row {
  min-height: 43px;
  padding: 0 11px;
  display: grid;
  grid-template-columns: 1.5fr 0.55fr 0.7fr;
  align-items: center;
  gap: 10px;
  color: #aab7bd;
  border-top: 1px solid #27363d;
  font-size: 9px;
}

.test-row:first-child { border-top: 0; }
.test-row strong { color: #e6eef1; }

.table-head {
  min-height: 34px;
  color: #71838c;
  background: #0b1317;
  font-size: 7px;
  font-weight: 850;
  text-transform: uppercase;
}

.ai-strip {
  margin-top: 12px;
  padding: 10px 12px;
  color: var(--cyan);
  background: rgba(8, 201, 233, 0.08);
  border-radius: 8px;
  font-size: 8px;
}

.coach-list {
  padding-top: 16px;
  display: grid;
  gap: 9px;
}

.coach-list article {
  min-height: 78px;
  padding: 12px;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 12px;
  background: var(--panel-2);
  border: 1px solid #293940;
  border-radius: 10px;
}

.status {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 900;
}

.status.red { color: var(--red); background: rgba(255, 111, 111, 0.1); }
.status.amber { color: var(--amber); background: rgba(255, 189, 74, 0.1); }
.status.cyan { color: var(--cyan); background: rgba(8, 201, 233, 0.1); }
.status.green { color: var(--green); background: rgba(52, 201, 139, 0.1); }

.coach-list article > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.coach-list strong { font-size: 11px; }
.coach-list p { margin: 0; color: #788992; font-size: 8px; }
.coach-list button { padding: 7px 9px; }

.athlete-tabs {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 22px;
  color: #71838b;
  border-bottom: 1px solid #2a3941;
  font-size: 9px;
  font-weight: 800;
}

.athlete-tabs .active {
  padding-bottom: 9px;
  color: #f2f6f7;
  border-bottom: 2px solid var(--cyan);
}

.athlete-tabs button {
  margin-left: auto;
  padding: 6px 9px;
  color: var(--cyan);
  background: rgba(8, 201, 233, 0.08);
  border: 1px solid rgba(8, 201, 233, 0.26);
  border-radius: 6px;
  font-size: 8px;
}

.session-head {
  padding: 14px 0 10px;
}

.session-head > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.session-head strong { font-size: 17px; }
.session-head small { color: #80919a; font-size: 8px; }

.session-head button {
  padding: 8px 11px;
  color: #05222a;
  background: var(--cyan);
  border: 0;
  border-radius: 7px;
  font-size: 8px;
  font-weight: 900;
}

.exercise-list {
  display: grid;
  gap: 8px;
}

.exercise-list article {
  min-height: 60px;
  padding: 11px;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 10px;
  background: var(--panel-2);
  border-radius: 9px;
}

.exercise-list article > span {
  color: var(--cyan);
  font-size: 9px;
  font-weight: 900;
}

.exercise-list article > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.exercise-list strong { font-size: 10px; }
.exercise-list small { color: #7f9098; font-size: 7px; }

.set-dots {
  display: flex;
  align-items: center;
  gap: 5px;
}

.set-dots i {
  width: 12px;
  height: 12px;
  border: 1px solid #3b4c54;
  border-radius: 50%;
}

.set-dots b {
  margin-left: 4px;
  color: #7f9098;
  font-size: 7px;
}

.suite {
  padding-top: 130px;
  padding-bottom: 130px;
}

.suite-grid {
  margin-top: 62px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.suite-grid article {
  min-height: 245px;
  padding: 30px;
  background: var(--soft-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.suite-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(8, 201, 233, 0.45);
  box-shadow: 0 20px 45px rgba(16, 43, 52, 0.08);
}

.suite-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #05798e;
  background: rgba(8, 201, 233, 0.13);
  border-radius: 12px;
  font-style: normal;
  font-size: 17px;
  font-weight: 900;
}

.suite-grid h3 {
  margin: 25px 0 10px;
  font-size: 18px;
}

.suite-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.suite-cta {
  margin: 38px auto 0;
  display: flex;
  width: fit-content;
}

.pricing-section {
  padding: 120px 0;
  color: #edf7f8;
  background: #0c1a20;
}

.pricing-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: clamp(52px, 8vw, 110px);
}

.pricing-copy .eyebrow { color: var(--cyan); }

.pricing-copy h2 {
  margin: 22px 0 24px;
  max-width: 800px;
  color: #fff;
  font-size: clamp(42px, 5.1vw, 68px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.pricing-copy h2 em { color: var(--cyan); }

.pricing-copy > p {
  max-width: 700px;
  margin: 0;
  color: #aebdc3;
  font-size: 17px;
  line-height: 1.72;
}

.pricing-copy .button-row { margin-top: 32px; }

.pricing-copy .button-secondary {
  color: #eff8fa;
  background: transparent;
  border-color: #36505a;
}

.pricing-copy .button-secondary:hover { background: #13272f; }

.pricing-card {
  position: relative;
  padding: clamp(30px, 4vw, 46px);
  overflow: hidden;
  background: #12252d;
  border: 1px solid #34505b;
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.pricing-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -75px;
  top: -85px;
  background: rgba(8, 201, 233, 0.13);
  border-radius: 50%;
}

.pricing-status {
  position: relative;
  padding: 7px 10px;
  display: inline-flex;
  color: var(--cyan);
  background: rgba(8, 201, 233, 0.1);
  border: 1px solid rgba(8, 201, 233, 0.3);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-name {
  margin: 28px 0 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.pricing-value { display: grid; gap: 8px; padding-bottom: 28px; border-bottom: 1px solid #304751; }
.pricing-value strong { color: #fff; font-size: clamp(34px, 4vw, 48px); letter-spacing: -0.04em; }
.pricing-value span { color: #94a8af; font-size: 12px; }

.pricing-card ul {
  margin: 28px 0 30px;
  padding: 0;
  display: grid;
  gap: 15px;
  list-style: none;
  color: #dce9ec;
  font-size: 14px;
}

.pricing-card li { display: flex; align-items: center; gap: 11px; }
.pricing-card li i { color: var(--cyan); font-style: normal; font-weight: 900; }
.pricing-card .inline-cta { color: var(--cyan); }

.demo-section {
  padding: 112px 0;
  background: var(--soft-2);
  border-top: 1px solid var(--line);
}

.demo-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr);
  align-items: center;
  gap: clamp(56px, 8vw, 110px);
}

.demo-copy h2 {
  margin: 18px 0 20px;
  color: var(--ink);
  font-size: clamp(42px, 5.2vw, 70px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.demo-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.demo-copy .check-list { margin-top: 30px; }

.demo-form {
  padding: clamp(24px, 4vw, 42px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(20, 38, 47, 0.1);
}

.demo-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.demo-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
}

.demo-form label > small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
}

.demo-form input,
.demo-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: #fbfaf7;
  border: 1px solid #d9ddd9;
  border-radius: 10px;
  outline: 0;
  font: inherit;
  font-weight: 550;
}

.demo-form textarea {
  min-height: 126px;
  margin-bottom: 20px;
  resize: vertical;
  line-height: 1.55;
}

.demo-form input:focus,
.demo-form textarea:focus {
  background: #fff;
  border-color: var(--cyan-dark);
  box-shadow: 0 0 0 3px rgba(8, 201, 233, 0.14);
}

.demo-form > label:not(.honeypot) { margin-top: 20px; }
.demo-form .button { width: 100%; justify-content: center; }

.demo-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.demo-form-message {
  min-height: 20px;
  margin: 14px 0 0;
  color: var(--cyan-dark);
  font-size: 13px;
  font-weight: 750;
  text-align: center;
}

.final-cta {
  position: relative;
  padding: 130px 24px 120px;
  overflow: hidden;
  color: var(--white);
  background: var(--cyan-dark);
  text-align: center;
}

.eyebrow-dark { color: rgba(255, 255, 255, 0.8); }
.eyebrow-dark i { background: var(--white); box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.12); }

.final-cta h2 {
  position: relative;
  margin: 24px auto 20px;
  max-width: 1000px;
  font-size: clamp(42px, 5.6vw, 76px);
}

.final-cta h2 em { color: var(--white); }

.final-cta > p {
  position: relative;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
}

.trial-form {
  position: relative;
  width: min(760px, 100%);
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 9px;
  padding: 8px;
  background: rgba(5, 66, 78, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
}

.trial-fields {
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px 9px;
}

.trial-email { grid-column: 1 / -1; }

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.trial-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.trial-form input {
  min-width: 0;
  height: 54px;
  padding: 0 16px;
  color: var(--white);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  outline: 0;
}

.trial-form input:focus { background: rgba(255, 255, 255, 0.07); }

.trial-form input::placeholder { color: rgba(255, 255, 255, 0.62); }

.form-message {
  min-height: 20px;
  margin-top: 14px !important;
  color: white !important;
  font-size: 12px !important;
  font-weight: 800;
}

.proof-dark {
  position: relative;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
}

.proof-dark li::before { color: var(--white); }

.cta-orb {
  position: absolute;
  width: 450px;
  height: 450px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.orb-left { left: -220px; top: -110px; }
.orb-right { right: -200px; bottom: -220px; box-shadow: 0 0 0 65px rgba(255, 255, 255, 0.04); }

.site-footer {
  min-height: 190px;
  padding: 38px clamp(24px, 5vw, 76px);
  display: grid;
  grid-template-columns: minmax(240px, 1.25fr) auto minmax(240px, 1fr);
  align-items: center;
  gap: 36px;
  color: #686868;
  background: #f7f5f0;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.site-footer .brand {
  grid-area: auto;
  width: 154px;
}

.footer-brand-block { display: grid; gap: 8px; }
.footer-brand-block p,
.footer-brand-block small { margin: 0; }
.footer-brand-block small { color: #858585; }

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.footer-links a,
.site-footer address a {
  color: var(--ink);
  font-weight: 800;
}

.site-footer address {
  justify-self: end;
  display: grid;
  gap: 6px;
  text-align: right;
  font-style: normal;
}

.site-footer address span { color: #858585; }

.legal-header {
  min-height: 76px;
  padding: 0 clamp(24px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.legal-header .brand { width: 190px; }
.legal-header > a:last-child { color: var(--ink); font-size: 14px; font-weight: 800; }

.legal-main {
  width: min(100% - 40px, 860px);
  margin: 0 auto;
  padding: 88px 0 110px;
}

.legal-main h1 {
  margin: 16px 0 18px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.legal-intro {
  max-width: 760px;
  margin: 0 0 46px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.legal-notice {
  margin-bottom: 48px;
  padding: 20px 22px;
  color: #16414b;
  background: #e7f8fb;
  border-left: 4px solid var(--cyan);
  border-radius: 0 12px 12px 0;
  line-height: 1.6;
}

.legal-section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.legal-section h2 { margin: 0 0 12px; font-size: 25px; }
.legal-section p,
.legal-section li { color: #4f6068; line-height: 1.7; }
.legal-section ul { padding-left: 20px; }
.legal-section a { color: #007f98; font-weight: 800; }
.legal-updated { color: #7b8589; font-size: 12px; }

.mobile-trial { display: none; }

.message-widget {
  position: fixed;
  z-index: 110;
  right: 22px;
  bottom: 22px;
}

.message-launcher {
  min-height: 52px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #062027;
  background: var(--cyan);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(5, 43, 52, 0.25);
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.message-launcher-icon {
  position: relative;
  width: 21px;
  height: 17px;
  display: block;
  border: 2px solid currentColor;
  border-radius: 6px;
}

.message-launcher-icon::after {
  content: "";
  position: absolute;
  left: 3px;
  bottom: -5px;
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: skewY(-38deg);
}

.message-panel {
  position: absolute;
  right: 0;
  bottom: 66px;
  width: min(380px, calc(100vw - 32px));
  padding: 22px;
  color: #eaf5f7;
  background: #0c1a20;
  border: 1px solid #29404a;
  border-radius: 18px;
  box-shadow: 0 24px 65px rgba(1, 18, 24, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.98);
  transform-origin: bottom right;
  transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
}

.message-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.message-panel-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.message-panel-head > div { display: grid; gap: 4px; }
.message-panel-head strong { font-size: 20px; }
.message-panel-head span { color: var(--cyan); font-size: 12px; font-weight: 800; }
.message-panel > p { margin: 16px 0 18px; color: #aebdc3; font-size: 13px; line-height: 1.55; }

.message-close {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #dce8eb;
  background: transparent;
  border: 1px solid #334b55;
  border-radius: 9px;
  font-size: 22px;
  cursor: pointer;
}

.message-form { display: grid; gap: 13px; }
.message-form label { display: grid; gap: 6px; color: #c8d5d9; font-size: 11px; font-weight: 800; }
.message-form input,
.message-form textarea {
  width: 100%;
  padding: 11px 12px;
  color: #eef7f8;
  background: #111f25;
  border: 1px solid #324751;
  border-radius: 9px;
  font: inherit;
  font-size: 14px;
  resize: vertical;
}
.message-form input:focus,
.message-form textarea:focus { border-color: var(--cyan); outline: 2px solid rgba(8, 201, 233, 0.2); }
.message-form .button { width: 100%; min-height: 46px; }
.message-form-status { min-height: 18px; margin: 0; color: #dce8eb; font-size: 12px; line-height: 1.45; }
.message-form[aria-busy="true"] { opacity: 0.78; }
.message-form button:disabled { cursor: wait; }

@media (max-width: 1280px) {
  .site-header {
    grid-template-columns: minmax(150px, 1fr) auto auto;
    grid-template-areas: "brand actions menu";
    gap: 14px;
  }

  .menu-button { display: inline-flex; }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: clamp(24px, 5vw, 76px);
    width: min(310px, calc(100vw - 32px));
    padding: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(8, 31, 39, 0.16);
  }

  .site-nav.is-open { display: flex; }

  .site-nav a {
    padding: 12px 14px;
    border-radius: 9px;
  }

  .site-nav a:hover { background: #f2f7f7; }
  .nav-demo-link { display: block; }
  .header-actions .demo-link { display: none; }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 40px;
  }

  .hero-copy {
    max-width: 760px;
    text-align: center;
    margin-inline: auto;
  }

  .hero-lead { margin-inline: auto; }
  .button-row, .proof-list { justify-content: center; }
  .hero-product { width: min(760px, 100%); margin-inline: auto; transform: none; }

  .feature-grid,
  .feature-reverse {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .feature-live .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-reverse .product-panel,
  .feature-reverse .feature-shot { order: 2; }
  .feature-reverse .feature-copy { order: 1; }

  .feature-copy {
    max-width: 720px;
  }

  .programme-workflow {
    width: min(760px, 100%);
    margin-inline: auto;
  }

  .repeat-proof {
    grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  }

  .demo-shell {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .pricing-shell {
    grid-template-columns: 1fr;
    max-width: 820px;
  }
}

@media (max-width: 820px) {
  .section-shell { width: min(100% - 34px, 680px); }
  .feature-live .section-shell { width: min(100% - 34px, 680px); }

  .site-header {
    min-height: 68px;
    padding-inline: 18px;
  }

  .brand { width: 158px; }
  .site-nav { right: 18px; }
  .sign-in-link {
    min-width: 42px;
    min-height: 42px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 10px;
  }
  .sign-in-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
  .login-icon {
    position: relative;
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    color: var(--ink);
    border: 1.5px solid currentColor;
    border-radius: 50%;
  }
  .login-icon::before,
  .login-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    background: currentColor;
    transform: translateX(-50%);
  }
  .login-icon::before {
    top: 5px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
  }
  .login-icon::after {
    bottom: 4px;
    width: 12px;
    height: 7px;
    border-radius: 7px 7px 3px 3px;
  }
  .menu-button-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }

  .hero {
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 58px;
  }

  .hero h1 {
    font-size: clamp(46px, 12vw, 67px);
  }

  .hero-lead { font-size: 16px; }

  .hero-product { overflow: hidden; }
  .app-frame { grid-template-columns: 1fr; }
  .app-sidebar { display: none; }
  .dashboard-canvas { padding: 20px 16px; }
  .dashboard-grid { grid-template-columns: 1fr 1fr; }
  .stat-card:last-child { display: none; }

  .audience-section { padding-top: 90px; }
  .audience-grid { grid-template-columns: 1fr 1fr; }

  .origin-section { margin-top: 90px; padding: 90px 0; }
  .origin-shell { grid-template-columns: 1fr; }
  .origin-name { width: min(100%, 560px); min-height: 330px; margin-inline: auto; }

  .workflow {
    padding-top: 90px;
    padding-bottom: 92px;
  }

  .workflow-steps {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .workflow-steps > b { display: none; }
  .workflow-steps article { min-height: 175px; }

  .feature { padding: 94px 0; }
  .feature-copy h2 { font-size: clamp(36px, 9vw, 52px); }

  .repeat-proof {
    margin-top: 75px;
    padding-top: 68px;
    grid-template-columns: 1fr;
  }

  .repeat-copy { max-width: 600px; }
  .repeat-phones { width: min(580px, 100%); margin-inline: auto; }

  .mid-cta .section-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .suite {
    padding-top: 94px;
    padding-bottom: 95px;
  }

  .suite-grid { grid-template-columns: 1fr 1fr; }

  .pricing-section { padding: 88px 0; }

  .site-footer {
    min-height: 0;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-brand-block { justify-items: center; }
  .site-footer address { justify-self: center; text-align: center; }

  .demo-section { padding: 88px 0; }
}

@media (max-width: 560px) {
  html { scroll-padding-top: 75px; }

  .site-header {
    grid-template-columns: minmax(130px, 1fr) auto auto;
    grid-template-areas: "brand actions menu";
    gap: 8px;
  }

  .header-actions .button { display: none; }

  .site-footer {
    padding: 42px 22px 110px;
    gap: 28px;
  }

  .footer-links { flex-wrap: wrap; gap: 14px 24px; }
  .legal-header { min-height: 68px; padding-inline: 18px; }
  .legal-header .brand { width: 158px; }
  .legal-main { width: min(100% - 34px, 860px); padding: 62px 0 88px; }
  .legal-intro { font-size: 16px; }

  .hero {
    padding-top: 26px;
    padding-bottom: 48px;
  }

  .eyebrow,
  .feature-number { font-size: 10px; }

  .hero h1 {
    margin-top: 18px;
    font-size: 47px;
  }

  .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button { width: 100%; }
  .proof-list { gap: 10px 14px; font-size: 10px; }

  .browser-bar { grid-template-columns: auto 1fr auto; }
  .browser-title { justify-self: start; margin-left: 14px; }
  .dashboard-heading strong { font-size: 16px; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .stat-card:not(:first-child) { display: none; }
  .attention-row { grid-template-columns: auto 1fr auto; }
  .attention-row > span { display: none; }

  .audience-section { padding-top: 74px; }
  .audience-intro h2 { font-size: 38px; }
  .audience-intro p { font-size: 15px; }
  .audience-grid { grid-template-columns: 1fr; margin-top: 38px; }
  .audience-grid article { min-height: 0; padding: 24px 22px; }
  .audience-grid h3 { margin-top: 26px; }
  .practitioner-proof {
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: start;
    gap: 14px;
    padding: 26px 22px;
  }
  .practitioner-proof-mark {
    width: 48px;
    height: 48px;
    margin-top: 1px;
    font-size: 9px;
  }
  .practitioner-proof strong {
    margin-top: 1px;
    font-size: 20px;
    line-height: 1.2;
  }

  .origin-section { margin-top: 74px; padding: 74px 0; }
  .origin-name { min-height: 280px; }
  .origin-name img { width: min(76%, 300px); }
  .origin-copy h2 { font-size: 42px; }

  .section-heading h2 { font-size: 38px; }

  .workflow-steps { grid-template-columns: 1fr; }
  .workflow-steps article { min-height: 150px; }

  .feature { padding: 76px 0; }
  .feature-grid { gap: 54px; }
  .feature-copy h2 { font-size: 38px; }

  .programme-workflow {
    padding: 12px;
  }

  .workflow-screen { width: 100%; }

  .workflow-screen figcaption { margin-left: 4px; }
  .workflow-screen figcaption small { display: none; }
  .screen-frame { border-radius: 10px; }
  .carousel-toolbar { margin-bottom: 10px; }
  .carousel-controls button { width: 35px; height: 35px; }
  .carousel-toolbar .real-product-tag { font-size: 8px; }

  .repeat-proof { margin-top: 58px; padding-top: 56px; }
  .repeat-copy h3 { font-size: 34px; }

  .repeat-phones {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 8px;
    overflow: hidden;
    padding: 0;
  }

  .repeat-phones figure {
    width: 100%;
    min-width: 0;
  }

  .real-product-tag { right: 0; top: 4px; }

  .product-panel { padding: 15px; }
  .real-shot-needed { min-height: 310px; padding: 30px; }

  .report-head {
    grid-template-columns: 1fr 1fr;
  }

  .ai-label { display: none; }
  .chart { height: 152px; }
  .testing-profile div:nth-child(2) { display: none; }
  .testing-profile { grid-template-columns: 1fr 1fr; }
  .rating-key .rating:nth-of-type(n+3) { display: none; }

  .test-row {
    grid-template-columns: 1.3fr 0.5fr 0.7fr;
    font-size: 7px;
  }

  .coach-list article { grid-template-columns: 35px 1fr; }
  .coach-list button { display: none; }

  .athlete-tabs { gap: 15px; }
  .athlete-tabs button { display: none; }
  .session-head button { display: none; }
  .exercise-list article { grid-template-columns: 24px 1fr; }
  .set-dots { display: none; }

  .suite-grid { grid-template-columns: 1fr; }
  .suite-grid article { min-height: 0; }

  .pricing-section { padding: 72px 0; }
  .pricing-copy h2 { font-size: 41px; }
  .pricing-copy .button-row { align-items: stretch; }
  .pricing-copy .button { width: 100%; }
  .pricing-card { padding: 26px 22px; }

  .demo-section { padding: 72px 0; }
  .demo-field-grid { grid-template-columns: 1fr; }
  .demo-form { padding: 24px 18px; }

  .final-cta {
    padding: 92px 18px 105px;
  }

  .final-cta h2 { font-size: 43px; }
  .trial-form { grid-template-columns: 1fr; }
  .trial-fields { grid-template-columns: 1fr; }
  .trial-email { grid-column: auto; }
  .trial-form .button { width: 100%; }

  .mobile-trial {
    position: fixed;
    z-index: 95;
    right: auto;
    bottom: max(14px, env(safe-area-inset-bottom));
    left: 50%;
    width: min(300px, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
    min-height: 51px;
    padding-inline: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #062027;
    background: var(--cyan);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    box-shadow: 0 16px 38px rgba(5, 43, 52, 0.28);
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
    transform: translateX(-50%);
  }

  .message-widget {
    right: 16px;
    bottom: max(78px, calc(env(safe-area-inset-bottom) + 72px));
  }

  .message-launcher {
    width: 48px;
    min-height: 48px;
    padding: 0;
    justify-content: center;
  }

  .message-launcher > span:last-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .message-panel {
    right: 0;
    bottom: 60px;
    width: min(360px, calc(100vw - 32px));
    max-height: min(640px, calc(100vh - 165px));
    overflow-y: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
