:root {
  --ink: #fafafa;
  --muted: #a1a1aa;
  --line: #232734;
  --paper: #0f1117;
  --soft: #161a23;
  --deep: #0f1117;
  --blue: #3b82f6;
  --cyan: #1a9d8e;
  --coral: #ef4444;
  --amber: #f59e0b;
  --surface-elevated: #1e2330;
  --primary-light: #5bc4b5;
  --primary-dark: #147a6e;
  --radius: 8px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
summary {
  font: inherit;
}

.shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 20;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--deep);
  color: white;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(15, 17, 23, 0.9);
  border-bottom: 1px solid rgba(35, 39, 52, 0.9);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.brand img {
  width: 168px;
  height: auto;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--soft);
  border: 1px solid var(--line);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-login {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--cyan), var(--primary-dark));
  color: white;
  font-weight: 760;
  box-shadow: 0 12px 24px rgba(26, 157, 142, 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, var(--primary-light), var(--cyan));
  box-shadow: 0 16px 30px rgba(26, 157, 142, 0.3);
}

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

.button-secondary:hover {
  background: var(--surface-elevated);
  box-shadow: none;
}

.button-small {
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.9rem;
}

.hero {
  padding-top: 84px;
  background:
    radial-gradient(circle at 20% 12%, rgba(26, 157, 142, 0.2), transparent 36%),
    radial-gradient(circle at 86% 22%, rgba(91, 196, 181, 0.12), transparent 34%),
    linear-gradient(180deg, #0f1117, #11151d 62%, #0f1117),
    var(--paper);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
  align-items: center;
  gap: 54px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(26, 157, 142, 0.14);
  color: var(--primary-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 650px;
  color: #e4e4e7;
  font-size: 1.24rem;
}

.audience,
.section-heading p,
.benefit-list p,
.feature-card p,
.showcase-item p,
.trust p,
.faq p,
.final-box p,
.group-heading p,
.price-card p {
  color: var(--muted);
}

.audience {
  max-width: 610px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.microcopy {
  color: var(--muted);
  font-size: 0.94rem;
}

.product-stage {
  position: relative;
  min-height: 600px;
}

.desktop-ui {
  width: min(100%, 720px);
  min-height: 470px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.ui-topbar {
  display: flex;
  align-items: center;
  gap: 9px;
  height: 58px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  color: #3d4657;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.blue {
  background: var(--blue);
}

.green {
  background: var(--cyan);
}

.coral {
  background: var(--coral);
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 210px 1fr;
  min-height: 412px;
}

.student-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background: #f3f7fa;
  border-right: 1px solid var(--line);
}

.list-title,
.block-label,
.mini-title,
.phone-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.student {
  display: grid;
  gap: 2px;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: white;
  color: #263143;
  font-size: 0.94rem;
  font-weight: 700;
}

.student small {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
}

.student.active {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.1);
}

.workout-panel {
  padding: 22px;
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.kpi-row span {
  display: grid;
  gap: 2px;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--muted);
  font-size: 0.8rem;
}

.kpi-row strong {
  color: var(--ink);
  font-size: 1.55rem;
}

.editor-block {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.editor-block h2 {
  margin-bottom: 16px;
  font-size: 1.55rem;
}

.exercise-line,
.phone-exercise {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  padding: 0 12px;
  border-radius: var(--radius);
  background: var(--soft);
  margin-top: 8px;
}

.exercise-line b,
.phone-exercise b {
  color: var(--blue);
}

.progress-strip {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.progress-strip span {
  position: relative;
  height: 34px;
  padding: 7px 10px;
  border-radius: var(--radius);
  background: #edf2f7;
  color: #394457;
  font-size: 0.82rem;
  font-weight: 750;
  overflow: hidden;
}

.progress-strip span::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--value);
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.18), rgba(8, 182, 163, 0.26));
}

.progress-strip span {
  z-index: 1;
}

.mobile-ui {
  position: absolute;
  right: 4px;
  bottom: 0;
  width: 230px;
  min-height: 430px;
  padding: 26px 16px 18px;
  border: 10px solid #1b2230;
  border-radius: 30px;
  background: white;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.22);
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 72px;
  height: 8px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #1b2230;
}

.mobile-ui h3 {
  margin: 12px 0;
}

.phone-progress {
  height: 8px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #edf2f7;
  overflow: hidden;
}

.phone-progress span {
  display: block;
  width: 58%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.phone-exercise {
  font-size: 0.86rem;
}

.phone-exercise.done {
  background: rgba(8, 182, 163, 0.1);
}

.phone-exercise.active {
  background: rgba(37, 99, 235, 0.1);
}

.mobile-ui button {
  width: 100%;
  min-height: 44px;
  margin-top: 18px;
  border: 0;
  border-radius: var(--radius);
  background: var(--blue);
  color: white;
  font-weight: 800;
}

.dynamic-mockup {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 0;
}

.mockup-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(22, 26, 35, 0.82);
  backdrop-filter: blur(14px);
}

.mockup-tab {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 760;
}

.mockup-tab.active,
.mockup-tab:hover {
  border-color: rgba(26, 157, 142, 0.42);
  background: rgba(26, 157, 142, 0.12);
  color: var(--ink);
}

.mockup-frame {
  display: none;
  margin: 0;
  border: 1px solid rgba(91, 196, 181, 0.22);
  border-radius: 18px;
  background: var(--soft);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.mockup-frame.active {
  display: block;
  animation: fadeIn 240ms ease-out;
}

.mockup-frame img {
  width: 100%;
  aspect-ratio: 1600 / 794;
  object-fit: cover;
  object-position: top left;
  background: var(--soft);
}

.mockup-phone {
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  border: 10px solid #06070a;
  border-radius: 32px;
}

.mockup-phone img {
  aspect-ratio: 1080 / 2260;
}

.mockup-frame figcaption {
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
  background: rgba(15, 17, 23, 0.92);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.feature-grid,
.showcase-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card,
.showcase-item,
.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.feature-card {
  padding: 22px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: var(--radius);
  background: rgba(26, 157, 142, 0.14);
  color: white;
  font-weight: 850;
}

.solution,
.pricing {
  background: #11151d;
}

.split,
.trust-grid,
.faq-grid,
.pwa-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.benefit-list div {
  padding: 24px;
  border-left: 4px solid var(--cyan);
  border-radius: var(--radius);
  background: var(--soft);
}

.pwa {
  background: #0b0d12;
  color: white;
}

.pwa p {
  max-width: 640px;
  color: #c9d2df;
}

.pwa .eyebrow {
  background: rgba(244, 179, 61, 0.15);
  color: #ffd78a;
}

.pwa-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.pwa-points span {
  min-height: 90px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: #eef3f8;
  font-weight: 760;
}

.showcase-grid {
  grid-template-columns: repeat(3, 1fr);
}

.showcase-item {
  overflow: hidden;
}

.real-gallery {
  align-items: stretch;
}

.real-gallery .showcase-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top center;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.real-gallery .showcase-item.wide img {
  height: 220px;
  aspect-ratio: 1600 / 794;
}

.showcase-item h3,
.showcase-item p {
  padding: 0 22px;
}

.showcase-item p {
  padding-bottom: 22px;
}

.mini-screen {
  display: grid;
  gap: 10px;
  min-height: 210px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #f7fafc, #eef6f2);
}

.mini-screen i {
  display: block;
  border-radius: var(--radius);
  background: white;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08);
}

.metrics-screen i:nth-child(2) {
  height: 64px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.18), white);
}

.metrics-screen i:nth-child(3),
.metrics-screen i:nth-child(4) {
  height: 40px;
}

.workout-screen i {
  height: 34px;
}

.student-screen {
  background: linear-gradient(135deg, #f6f8fb, #fff3ed);
}

.student-screen i:nth-child(2) {
  height: 72px;
}

.student-screen i:nth-child(3),
.student-screen i:nth-child(4) {
  height: 42px;
}

.trust-grid {
  align-items: center;
}

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

.check-list li {
  position: relative;
  min-height: 54px;
  padding: 15px 18px 15px 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  font-weight: 720;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 19px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--cyan);
}

.pricing-group + .pricing-group {
  margin-top: 48px;
}

.group-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
}

.group-heading h3 {
  margin-bottom: 0;
  font-size: 1.55rem;
}

.group-heading p {
  margin-bottom: 0;
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 26px;
}

.price-card.highlighted {
  border-color: rgba(26, 157, 142, 0.55);
  box-shadow: 0 18px 42px rgba(26, 157, 142, 0.12);
}

.badge {
  position: absolute;
  right: 18px;
  top: 18px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(244, 179, 61, 0.16);
  color: #ffd78a;
  font-size: 0.75rem;
  font-weight: 820;
}

.plan-name {
  color: var(--primary-light);
  font-size: 1.3rem;
  font-weight: 850;
}

.price-card strong {
  font-size: 2.45rem;
  line-height: 1;
}

.price-card strong span {
  color: var(--muted);
  font-size: 1rem;
}

.price-card small {
  color: var(--muted);
}

.price-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 8px;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 22px;
  color: #d4d4d8;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--cyan);
}

.price-card .button {
  margin-top: auto;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 790;
}

details p {
  margin: 0;
  padding: 0 20px 18px;
}

.final-cta {
  padding-top: 32px;
}

.final-box {
  padding: 54px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(26, 157, 142, 0.18), rgba(91, 196, 181, 0.08)),
    var(--soft);
  text-align: center;
}

.final-box h2,
.final-box p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.final-box small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
}

.footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer img {
  width: 136px;
  padding: 8px 12px;
  border-radius: var(--radius);
  background: var(--soft);
  border: 1px solid var(--line);
}

/* Landing presentation theme: brighter page, Axon dark UI inside product renders. */
:root {
  --ink: #111827;
  --muted: #667085;
  --line: #ccd8df;
  --paper: #dce7ea;
  --soft: #eef3f5;
  --deep: #0f1117;
  --blue: #3b82f6;
  --cyan: #1a9d8e;
  --coral: #ef4444;
  --amber: #f59e0b;
  --surface-elevated: #eef3f6;
  --primary-light: #5bc4b5;
  --primary-dark: #147a6e;
  --shadow: 0 22px 70px rgba(15, 23, 42, 0.14);
}

body {
  background: var(--paper);
  color: var(--ink);
}

.site-header {
  background: rgba(15, 17, 23, 0.94);
  border-bottom-color: rgba(35, 39, 52, 0.95);
}

.site-header .nav-links {
  color: #a1a1aa;
}

.site-header .nav-links a:hover,
.site-header .nav-login {
  color: #fafafa;
}

.brand img,
.footer img {
  background: #0f1117;
  border-color: #232734;
  object-fit: contain;
}

.hero {
  background:
    radial-gradient(circle at 18% 12%, rgba(26, 157, 142, 0.16), transparent 28%),
    radial-gradient(circle at 86% 16%, rgba(91, 196, 181, 0.18), transparent 30%),
    linear-gradient(180deg, #e7f0f2 0%, #dbe6e9 60%, #d3e0e4 100%);
}

.hero-lede {
  color: #263241;
}

.solution,
.pricing,
.platform {
  background: #eef5f4;
}

.pwa {
  background:
    radial-gradient(circle at 80% 10%, rgba(26, 157, 142, 0.22), transparent 32%),
    #0f1117;
}

.feature-card,
.showcase-item,
.price-card,
.benefit-list div,
.check-list li,
details {
  background: #f8fafb;
  color: var(--ink);
}

.price-card p,
.price-card small,
.price-card strong span {
  color: #475467;
}

.price-card li {
  color: #243041;
}

.dynamic-mockup {
  min-height: 0;
}

.mockup-tabs {
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  border-color: rgba(26, 157, 142, 0.24);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.mockup-tab.active,
.mockup-tab:hover {
  color: #0f1117;
}

.app-window {
  grid-template-columns: 178px 1fr;
  min-height: 440px;
  padding: 0;
  border: 1px solid #232734;
  border-radius: 18px;
  background: #0f1117;
  color: #fafafa;
  overflow: hidden;
}

.app-window.active {
  display: grid;
}

.app-sidebar {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
  border-right: 1px solid #232734;
  background: rgba(22, 26, 35, 0.86);
}

.app-sidebar.compact {
  grid-template-rows: auto;
}

.app-logo {
  width: fit-content;
  margin-bottom: 6px;
  color: #5bc4b5;
  font-size: 1.05rem;
  font-weight: 900;
}

.side-action,
.mini-button {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(26, 157, 142, 0.28);
  border-radius: 10px;
  background: rgba(26, 157, 142, 0.16);
  color: #dcfffa;
  font-size: 0.82rem;
  font-weight: 800;
}

.student-row {
  display: grid;
  gap: 2px;
  padding: 11px;
  border: 1px solid #232734;
  border-radius: 12px;
  background: rgba(30, 35, 48, 0.72);
}

.student-row.active {
  border-color: rgba(26, 157, 142, 0.58);
  background: rgba(26, 157, 142, 0.12);
}

.student-row strong,
.app-topbar strong {
  color: #ffffff;
  font-size: 0.88rem;
}

.student-row span,
.app-topbar span,
.profile-strip span,
.metric-grid span,
.activity-list,
.workout-day span,
.table-row,
.phone-header span,
.motivation-card span,
.last-workout span,
.last-workout i,
.week-card span {
  color: #a1a1aa;
  font-size: 0.76rem;
}

.app-main {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 18px;
  background:
    radial-gradient(circle at 80% 0%, rgba(26, 157, 142, 0.12), transparent 26%),
    #0f1117;
}

.app-main.full {
  grid-column: 1 / -1;
}

.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
}

.profile-strip,
.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.profile-strip div,
.metric-grid div,
.app-card,
.workout-builder,
.table-card {
  border: 1px solid #232734;
  border-radius: 14px;
  background: #161a23;
}

.profile-strip div,
.metric-grid div {
  display: grid;
  gap: 4px;
  padding: 13px;
}

.profile-strip strong,
.metric-grid strong {
  color: #fafafa;
  font-size: 1.45rem;
  line-height: 1;
}

.app-card,
.workout-builder,
.table-card {
  padding: 16px;
}

.card-title {
  margin-bottom: 12px;
  color: #fafafa;
  font-weight: 850;
}

.activity-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.activity-list span,
.exercise-row,
.table-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #1e2330;
}

.activity-list b,
.exercise-row b,
.table-row b {
  color: #5bc4b5;
}

.tabs-line {
  display: flex;
  gap: 8px;
}

.tabs-line span {
  padding: 8px 12px;
  border: 1px solid #232734;
  border-radius: 999px;
  color: #a1a1aa;
  font-size: 0.8rem;
  font-weight: 800;
}

.tabs-line .active {
  border-color: rgba(26, 157, 142, 0.5);
  background: rgba(26, 157, 142, 0.14);
  color: #5bc4b5;
}

.workout-builder {
  display: grid;
  gap: 10px;
}

.workout-day,
.exercise-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.workout-day strong,
.exercise-row span,
.table-row span {
  color: #fafafa;
}

.workout-day div {
  display: grid;
}

.workout-day i {
  color: #5bc4b5;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
}

.academy-grid {
  grid-template-columns: repeat(4, 1fr);
}

.table-card {
  display: grid;
  gap: 8px;
}

.table-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
}

.table-row.head {
  background: transparent;
  color: #71717a;
  font-weight: 800;
}

.phone-wrap.active {
  display: flex;
  justify-content: center;
  padding: 18px;
  background: transparent;
  box-shadow: none;
  border: 0;
}

.phone-app {
  width: min(330px, 100%);
  min-height: 560px;
  padding: 18px;
  border: 10px solid #050608;
  border-radius: 34px;
  background: #0f1117;
  color: #fafafa;
  box-shadow: var(--shadow);
}

.phone-header,
.week-card div:first-child,
.student-workouts button {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.phone-header {
  margin-bottom: 16px;
}

.motivation-card,
.last-workout,
.week-card,
.student-workouts button {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid #232734;
  border-radius: 16px;
  background: #161a23;
}

.motivation-card {
  display: grid;
  gap: 4px;
  border-color: rgba(26, 157, 142, 0.55);
}

.last-workout {
  display: grid;
  gap: 5px;
  background: linear-gradient(135deg, rgba(26, 157, 142, 0.18), #161a23);
}

.last-workout strong {
  color: #ffffff;
}

.week-dots {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.week-dots b,
.week-dots i {
  height: 18px;
  border-radius: 999px;
}

.week-dots b {
  background: #1a9d8e;
}

.week-dots i {
  background: #232734;
}

.student-workouts button {
  width: 100%;
  color: #fafafa;
  font-weight: 850;
  text-align: left;
}

.student-workouts span {
  color: #5bc4b5;
  font-size: 0.78rem;
}

.mockup-gallery {
  grid-template-columns: repeat(4, 1fr);
}

.mini-render {
  display: grid;
  gap: 10px;
  min-height: 210px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background: #0f1117;
}

.mini-render span,
.mini-render strong,
.mini-render i,
.mini-render b,
.mini-render em {
  display: block;
  border-radius: 10px;
  background: #1e2330;
}

.mini-render strong,
.mini-render em {
  background: rgba(26, 157, 142, 0.42);
}

.dashboard-render {
  grid-template-columns: 0.55fr 1fr 1fr;
}

.dashboard-render span {
  grid-row: span 4;
}

.dashboard-render strong {
  grid-column: span 2;
}

.treino-render b {
  height: 28px;
}

.treino-render span {
  height: 52px;
  background: rgba(26, 157, 142, 0.26);
}

.aluno-render {
  max-width: 180px;
  margin: 0 auto;
  border-left: 10px solid #050608;
  border-right: 10px solid #050608;
  border-radius: 24px;
}

.aluno-render em {
  height: 64px;
}

.aluno-render span {
  height: 38px;
}

.academy-render {
  grid-template-columns: repeat(4, 1fr);
}

.academy-render span {
  grid-column: 1 / -1;
}

.academy-render i {
  height: 58px;
}

/* Simplified no-mockup version */
.brand img,
.footer img {
  background: transparent;
  border: 0;
  padding: 0;
}

.brand img {
  width: 158px;
}

.footer img {
  width: 128px;
}

.hero {
  background:
    radial-gradient(circle at 18% 12%, rgba(26, 157, 142, 0.1), transparent 28%),
    linear-gradient(180deg, #e7f0f2 0%, #d3e0e4 100%);
}

.hero-grid {
  display: block;
  max-width: 1020px;
  text-align: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-copy h1,
.hero-lede,
.audience {
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  justify-content: center;
}

.hero-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.hero-summary article {
  padding: 16px;
  border: 1px solid #dce7e5;
  border-radius: 12px;
  background: #f3f7f8;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  text-align: left;
}

.hero-summary span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(26, 157, 142, 0.12);
  color: #147a6e;
  font-size: 0.72rem;
  font-weight: 900;
}

.hero-summary h2 {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.2;
}

.hero-summary p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.problem,
.platform,
.trust,
.faq,
.final-cta {
  background: #dce7ea;
}

.solution,
.pricing {
  background: #d2dee2;
}

.pwa-grid {
  display: block;
  max-width: 1020px;
  text-align: center;
}

.pwa-grid > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pwa-grid h2 {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.pwa-grid p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
}

.pwa-points {
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.pwa-points span {
  min-height: 58px;
  padding: 16px 12px;
}

.footer {
  background: #0f1117;
  border-top-color: #232734;
}

.footer-inner {
  color: #a1a1aa;
}

.text-showcase {
  grid-template-columns: repeat(4, 1fr);
}

.text-showcase .showcase-item {
  padding: 24px;
}

.text-showcase .showcase-item h3,
.text-showcase .showcase-item p {
  padding: 0;
}

.text-showcase .showcase-item p {
  padding-bottom: 0;
}

@media (max-width: 980px) {
  .section {
    padding: 72px 0;
  }

  .hero-grid,
  .split,
  .trust-grid,
  .faq-grid,
  .pwa-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 36px;
  }

  .hero-summary {
    grid-template-columns: 1fr;
  }

  .pwa-points {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-stage {
    min-height: 0;
  }

  .desktop-ui {
    width: calc(100% - 70px);
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .group-heading {
    display: block;
  }

  .mockup-tabs {
    margin-left: 0;
  }

  .app-window.active {
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    display: none;
  }

  .academy-grid,
  .mockup-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 28px, 1160px);
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 76px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    padding-top: 56px;
  }

  h1 {
    font-size: clamp(2.7rem, 16vw, 4.2rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .final-actions .button {
    width: 100%;
  }

  .app-main {
    padding: 14px;
  }

  .profile-strip,
  .metric-grid,
  .academy-grid,
  .mockup-gallery {
    grid-template-columns: 1fr;
  }

  .app-window {
    min-height: 0;
  }

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

  .mockup-tabs {
    width: 100%;
  }

  .mockup-tab {
    flex: 1 1 calc(50% - 8px);
  }

  .product-stage {
    min-height: auto;
    padding-bottom: 18px;
  }

  .desktop-ui {
    width: 100%;
    min-height: auto;
  }

  .dashboard-layout {
    grid-template-columns: 1fr;
  }

  .student-list {
    display: none;
  }

  .kpi-row,
  .benefit-list,
  .feature-grid,
  .pwa-points {
    grid-template-columns: 1fr;
  }

  .workout-panel {
    padding: 16px;
  }

  .mobile-ui {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 260px);
    min-height: 400px;
    margin: 18px auto 0;
  }

  .final-box {
    padding: 34px 20px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
