:root {
  color-scheme: light;
  --ink: #101418;
  --muted: #5d6673;
  --line: #dfe4ea;
  --paper: #f8fbff;
  --white: #ffffff;
  --night: #07080d;
  --night-2: #12192a;
  --blue: #28b9ff;
  --brand-blue: #28b9ff;
  --pink: #ff169a;
  --hot-pink: #ff169a;
  --green: #23c58d;
  --gold: #d59b2d;
  --coral: #ff6d4d;
  --shadow: 0 24px 70px rgba(16, 20, 24, 0.16);
  --max: 1180px;
  --display-font: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(40, 185, 255, 0.08), transparent 430px),
    var(--paper);
  letter-spacing: 0;
}

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

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

p {
  color: var(--muted);
  line-height: 1.7;
}

main img {
  max-width: 100%;
  height: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px;
  background: rgba(248, 251, 255, 0.84);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(248, 251, 255, 0.94);
  box-shadow: 0 14px 38px rgba(16, 20, 24, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

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

.brand-mark {
  width: 250px;
  height: 98px;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.82rem;
  font-weight: 650;
  color: #28313b;
  white-space: nowrap;
}

.site-nav a,
.nav-dropdown-trigger {
  padding: 8px 0;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.nav-dropdown[aria-current="page"] .nav-dropdown-trigger,
.nav-dropdown-trigger:hover {
  color: var(--blue);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.nav-dropdown-trigger::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 5px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 280px;
  max-height: min(72vh, 520px);
  padding: 10px;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(16, 20, 24, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 7px;
  color: #28313b;
  font-size: 0.9rem;
  line-height: 1.25;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus {
  color: var(--ink);
  background: rgba(40, 185, 255, 0.1);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

@media (min-width: 901px) {
  .nav-dropdown[data-rm-menu="exercises"] .nav-dropdown-menu,
  .nav-dropdown:has(.nav-dropdown-menu a[href$="exercises/bench-press.html"]) .nav-dropdown-menu {
    width: min(780px, calc(100vw - 48px));
    max-height: none;
    overflow: visible;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 6px;
  }

  .nav-dropdown[data-rm-menu="exercises"] .nav-dropdown-menu a,
  .nav-dropdown:has(.nav-dropdown-menu a[href$="exercises/bench-press.html"]) .nav-dropdown-menu a {
    white-space: nowrap;
  }
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 750;
  white-space: nowrap;
}

.header-cta {
  color: var(--white);
  background: linear-gradient(135deg, var(--hot-pink), var(--brand-blue));
  box-shadow: 0 12px 28px rgba(255, 22, 154, 0.2);
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--hot-pink), var(--brand-blue));
  box-shadow: 0 16px 36px rgba(255, 22, 154, 0.28);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.button.light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

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

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

.hero {
  min-height: calc(100vh - 76px);
  max-width: var(--max);
  margin: 0 auto;
  padding: 58px 24px 64px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 48px;
  align-items: center;
}

.product-hero {
  position: relative;
  isolation: isolate;
  min-height: min(820px, calc(100vh - 76px));
  padding-top: 42px;
  padding-bottom: 46px;
}

.product-hero::before {
  content: "";
  position: absolute;
  inset: 28px 24px;
  z-index: -1;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 22, 154, 0.08), transparent 34%),
    linear-gradient(90deg, rgba(40, 185, 255, 0.1), rgba(35, 197, 141, 0.08));
  opacity: 0.9;
}

.eyebrow {
  color: var(--hot-pink);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.76rem;
  margin-bottom: 14px;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: 0;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(3rem, 4vw, 3.75rem);
}

.home-page .hero h1,
.home-page .section h2,
.home-page .final-cta h2 {
  font-family: var(--display-font);
  font-weight: 700;
  line-height: 0.96;
}

.hero h1 > span:not(.rm-text-mask-word) {
  display: block;
  margin-top: 0.28em;
}

.rm-text-mask-word {
  display: inline-block;
  overflow: hidden;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
  vertical-align: top;
}

.rm-text-mask-inner {
  display: inline-block;
  will-change: transform;
}

.has-rm-hero-mask .rm-text-mask-inner {
  transform: translate3d(0, 112%, 0) rotate(1.6deg);
}

.hero-text,
.page-hero p {
  max-width: 660px;
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span {
  color: #36404b;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(40, 185, 255, 0.28);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.88rem;
}

.hero-signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 580px;
  margin-top: 24px;
}

.hero-signals div {
  padding: 14px;
  border: 1px solid rgba(16, 20, 24, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(16, 20, 24, 0.06);
}

.hero-signals strong,
.hero-signals span {
  display: block;
}

.hero-signals strong {
  font-size: 1.05rem;
  line-height: 1.1;
}

.hero-signals span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 9% -2% 3% 12%;
  background: linear-gradient(135deg, rgba(40, 185, 255, 0.28), rgba(255, 22, 154, 0.2) 52%, rgba(35, 197, 141, 0.16));
  border-radius: 32px;
  transform: rotate(-5deg);
}

.screenshot-hero::before {
  inset: 6% 3% 2% 7%;
  border-radius: 42px;
  transform: rotate(4deg);
}

.screenshot-stage {
  position: relative;
  min-height: 670px;
  display: grid;
  place-items: center;
}

.hero-app-embed {
  display: grid;
  gap: 14px;
  justify-items: center;
  min-width: 0;
}

.hero-app-embed::before {
  inset: -2% auto -2% 50%;
  width: min(430px, 100%);
  border-radius: 34px;
  transform: translateX(-48%) rotate(2deg);
}

.hero-app-static-link {
  position: relative;
  z-index: 2;
  display: block;
  width: min(390px, 100%);
  min-height: 540px;
  height: clamp(540px, 62vh, 660px);
  overflow: hidden;
  border: 1px solid rgba(40, 185, 255, 0.2);
  border-radius: 24px;
  background: #ffffff;
  box-shadow:
    0 26px 70px rgba(16, 20, 24, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.55) inset;
  transition: border-color 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.hero-app-static-link:hover {
  border-color: rgba(40, 185, 255, 0.52);
  box-shadow:
    0 30px 78px rgba(16, 20, 24, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.7) inset;
  filter: saturate(1.04);
}

.hero-app-static-link:focus-visible {
  outline: 3px solid var(--brand-blue);
  outline-offset: 5px;
}

.hero-app-static-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 76%;
}

.screenshot-brand {
  position: absolute;
  top: -82px;
  right: -168px;
  width: 520px;
  opacity: 0.12;
  pointer-events: none;
}

.phone-frame {
  position: relative;
  z-index: 2;
  width: min(390px, 78vw);
  padding: 10px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 22, 154, 0.95), rgba(40, 185, 255, 0.95));
  box-shadow:
    0 34px 90px rgba(16, 20, 24, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.app-screenshot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  background: #eefcff;
}

.callout {
  position: absolute;
  z-index: 3;
  width: 210px;
  padding: 16px;
  border: 1px solid rgba(40, 185, 255, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 18px 48px rgba(16, 20, 24, 0.12);
}

.callout strong {
  display: block;
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.callout p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.45;
}

.callout::before {
  content: "";
  position: absolute;
  width: var(--line-width, 82px);
  height: 2px;
  background: linear-gradient(90deg, var(--hot-pink), var(--brand-blue));
  transform: rotate(var(--line-angle, 0deg));
  transform-origin: left center;
}

.pin {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--hot-pink);
  box-shadow: 0 0 0 6px rgba(255, 22, 154, 0.15);
}

.callout-timer {
  top: 38px;
  right: -10px;
}

.callout-timer::before {
  left: -72px;
  top: 33px;
  --line-width: 76px;
  --line-angle: 166deg;
}

.callout-timer .pin {
  left: -73px;
  top: 26px;
}

.callout-tabs {
  top: 192px;
  left: -32px;
}

.callout-tabs::before {
  right: -84px;
  top: 32px;
  --line-width: 88px;
  --line-angle: 15deg;
}

.callout-tabs .pin {
  right: -88px;
  top: 37px;
  background: var(--brand-blue);
  box-shadow: 0 0 0 6px rgba(40, 185, 255, 0.16);
}

.callout-plates {
  left: -8px;
  bottom: 178px;
}

.callout-plates::before {
  right: -96px;
  top: 34px;
  --line-width: 100px;
  --line-angle: -12deg;
}

.callout-plates .pin {
  right: -99px;
  top: 21px;
}

.callout-complete {
  right: -24px;
  bottom: 78px;
}

.callout-complete::before {
  left: -92px;
  top: 32px;
  --line-width: 96px;
  --line-angle: 170deg;
}

.callout-complete .pin {
  left: -96px;
  top: 20px;
  background: var(--brand-blue);
  box-shadow: 0 0 0 6px rgba(40, 185, 255, 0.16);
}

.app-window {
  position: relative;
  padding: 16px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(40, 185, 255, 0.16), transparent 32%),
    linear-gradient(180deg, #12192a, #07080d);
  color: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.window-brand {
  position: absolute;
  right: -88px;
  top: -170px;
  width: 560px;
  max-width: none;
  opacity: 0.24;
  pointer-events: none;
}

.window-top {
  display: flex;
  gap: 7px;
  padding: 8px 4px 18px;
}

.window-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #394657;
}

.calculator-card {
  position: relative;
  z-index: 1;
  padding: 24px;
  border: 1px solid rgba(40, 185, 255, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
}

.calc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.calc-header p,
.mini-panels span {
  margin: 0;
  color: #aab6c4;
  font-size: 0.9rem;
}

.calc-header strong {
  display: block;
  margin-top: 4px;
  font-size: 3.3rem;
  line-height: 1;
}

.calc-header button {
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 22, 154, 0.18);
  padding: 10px 14px;
  font-weight: 800;
}

.barbell {
  display: grid;
  grid-template-columns: 22px 22px 16px 10px 1fr 10px 16px 22px 22px;
  align-items: center;
  gap: 3px;
  min-height: 120px;
  margin: 26px 0;
}

.bar {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #8f9bad, #f5f7fb, #8995a6);
}

.plate {
  border-radius: 7px;
  height: 86px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.plate-blue {
  background: linear-gradient(180deg, #66d1ff, #1099df);
}

.plate-gold {
  height: 68px;
  background: linear-gradient(180deg, #ff61c1, #c90d78);
}

.collar {
  height: 42px;
  border-radius: 3px;
  background: #d7dde7;
}

.plate-list,
.mini-panels,
.stat-grid,
.feature-grid,
.pricing-grid,
.about-layout {
  display: grid;
  gap: 16px;
}

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

.plate-list div,
.mini-panels div {
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.plate-list span,
.plate-list strong,
.mini-panels span,
.mini-panels strong {
  display: block;
}

.plate-list span {
  color: #aab6c4;
  font-size: 0.82rem;
}

.plate-list strong {
  margin-top: 5px;
  font-size: 1rem;
}

.mini-panels {
  position: relative;
  z-index: 1;
  grid-template-columns: 1fr 1fr;
  margin-top: 16px;
}

.mini-panels strong {
  margin-top: 6px;
  font-size: 1.4rem;
}

.section,
.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 86px 24px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section h2,
.final-cta h2 {
  font-size: clamp(2.2rem, 4.8vw, 4.4rem);
  line-height: 1;
  margin-bottom: 18px;
}

.intro-band,
.split-band,
.story-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.section-copy {
  max-width: 520px;
}

.product-story {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 46px;
  align-items: start;
  scroll-margin-top: 130px;
}

.story-rail {
  position: sticky;
  top: 126px;
  display: grid;
  gap: 10px;
  padding: 14px;
  border-left: 2px solid rgba(40, 185, 255, 0.3);
}

.story-rail a {
  color: #2d3540;
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.35;
  text-transform: uppercase;
}

.story-content .section-heading {
  max-width: 860px;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.story-step {
  min-height: 248px;
  padding: 22px;
  border: 1px solid rgba(16, 20, 24, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.76)),
    linear-gradient(135deg, rgba(40, 185, 255, 0.12), rgba(255, 22, 154, 0.08));
  box-shadow: 0 18px 48px rgba(16, 20, 24, 0.07);
}

.story-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 38px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--hot-pink), var(--brand-blue));
}

.story-step h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.story-step p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

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

.stat-grid div,
.feature-card,
.price-card,
.about-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
}

.feature-card,
.price-card,
.about-card,
details {
  box-shadow: 0 12px 40px rgba(40, 185, 255, 0.06);
}

.feature-card,
.price-card,
.story-step,
.proof-grid div,
.plan-comparison div,
.stat-grid div,
.workflow-list li,
.tool-card,
.workout-day,
.about-card,
.blog-post-nav a,
.related-pages a,
.exercise-guide-panel,
.tool-panel,
.tool-context,
details {
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.feature-card:hover,
.price-card:hover,
.story-step:hover,
.proof-grid div:hover,
.plan-comparison div:hover,
.stat-grid div:hover,
.tool-card:hover,
.workout-day:hover,
.about-card:hover,
.blog-post-nav a:hover,
.related-pages a:hover,
.exercise-guide-panel:hover,
.tool-panel:hover,
.tool-context:hover,
details:hover {
  border-color: rgba(40, 185, 255, 0.32);
  box-shadow: 0 20px 54px rgba(16, 20, 24, 0.11);
  transform: translateY(-3px);
}

.stat-grid strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 8px;
}

.stat-grid span {
  color: var(--muted);
}

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

.feature-card h3,
.price-card h3,
.about-card h2 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.feature-icon {
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  margin-bottom: 22px;
  background: linear-gradient(135deg, var(--brand-blue), #1477ff);
  position: relative;
}

.feature-icon::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 4px;
}

.units-icon {
  background: linear-gradient(135deg, var(--hot-pink), #a80fef);
}

.coach-icon {
  background: linear-gradient(135deg, var(--coral), var(--hot-pink));
}

.phone-icon {
  background: linear-gradient(135deg, var(--green), var(--brand-blue));
}

.center-action {
  text-align: center;
  margin-top: 28px;
}

.text-link {
  color: #087ec0;
  font-weight: 800;
}

.copy-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.workflow-band {
  align-items: start;
  scroll-margin-top: 110px;
}

.workflow-list {
  counter-reset: workflow;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-list li {
  counter-increment: workflow;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) minmax(190px, 240px);
  align-items: center;
  gap: 18px;
  min-height: 168px;
  padding: 18px;
  color: #343d48;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(40, 185, 255, 0.06);
  overflow: hidden;
}

.workflow-list li.is-current {
  border-color: rgba(255, 22, 154, 0.34);
  box-shadow:
    0 20px 58px rgba(16, 20, 24, 0.12),
    0 0 0 1px rgba(40, 185, 255, 0.12) inset;
}

.workflow-list li.is-current::before {
  box-shadow: 0 0 0 6px rgba(40, 185, 255, 0.12);
}

.workflow-list li:nth-child(even) .workflow-shot {
  transform: rotate(0.45deg);
}

.workflow-list li:nth-child(odd) .workflow-shot {
  transform: rotate(-0.35deg);
}

.workflow-list li::before {
  content: counter(workflow);
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--white);
  font-weight: 900;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--hot-pink), var(--brand-blue));
}

.workflow-list li > span {
  font-weight: 760;
  line-height: 1.45;
}

.workflow-shot {
  position: relative;
  margin: 0;
  justify-self: end;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  padding: 3px;
  background: linear-gradient(135deg, rgba(255, 22, 154, 0.9), rgba(40, 185, 255, 0.9));
  box-shadow: 0 16px 34px rgba(16, 20, 24, 0.12);
}

.workflow-shot::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.workflow-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #111317;
  border-radius: 6px;
}

.workflow-list li:nth-child(3) .workflow-shot,
.workflow-list li:nth-child(4) .workflow-shot,
.workflow-list li:nth-child(5) .workflow-shot {
  aspect-ratio: 1 / 1;
  max-width: 210px;
}

.workflow-list li:nth-child(1) .workflow-shot img {
  background: #fdeaf2;
}

.pricing-section {
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(40, 185, 255, 0.08), rgba(255, 22, 154, 0.07)),
    rgba(255, 255, 255, 0.58);
  scroll-margin-top: 130px;
}

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

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
}

.plan {
  color: var(--green);
  font-weight: 800;
  margin-bottom: 10px;
}

.price-card h3 {
  font-size: 2.1rem;
}

.price-card ul {
  margin: 16px 0 26px;
  padding-left: 20px;
  color: #343d48;
  line-height: 1.9;
}

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

.featured-price {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 22, 154, 0.2), rgba(40, 185, 255, 0.14)),
    linear-gradient(145deg, var(--night), var(--night-2));
  border-color: transparent;
}

.featured-price p,
.featured-price li {
  color: #c4cedb;
}

.proof-band {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: center;
}

.proof-grid,
.plan-comparison {
  display: grid;
  gap: 14px;
}

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

.proof-grid div,
.plan-comparison div {
  padding: 22px;
  border: 1px solid rgba(16, 20, 24, 0.08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(16, 20, 24, 0.07);
}

.proof-grid strong,
.proof-grid span,
.plan-comparison strong,
.plan-comparison span {
  display: block;
}

.proof-grid strong,
.plan-comparison strong {
  color: var(--ink);
  line-height: 1.25;
}

.proof-grid span,
.plan-comparison span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.plan-comparison {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px;
}

.faq-list {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 12px;
  padding: 0 22px;
}

summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  font-weight: 800;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin-bottom: 20px;
}

.final-cta {
  margin: 70px auto 0;
  padding: 86px 24px;
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 22, 154, 0.22), transparent 35%, rgba(40, 185, 255, 0.24)),
    var(--night);
  background-size: 180% 100%, auto;
}

.final-cta p {
  color: #c4cedb;
}

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

.legal-links {
  margin: 22px auto 0;
  max-width: 620px;
  font-size: 0.95rem;
}

.legal-links a {
  color: var(--white);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-hero {
  padding-bottom: 28px;
}

.legal-page {
  max-width: 880px;
  margin-top: 0;
  line-height: 1.75;
}

.legal-page h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.legal-page h2:first-child {
  margin-top: 0;
}

.legal-page p {
  color: #343d48;
}

.termly-policy {
  min-height: 520px;
}

.termly-policy iframe {
  width: 100%;
  border: 0;
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 44px 24px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-start;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
}

.scroll-meter {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--hot-pink), var(--brand-blue), var(--green));
  transform: scaleX(0);
  transform-origin: left center;
}

.has-rm-motion .hero-app-frame-shell,
.has-rm-motion .hero-app-static-link,
.has-rm-motion .workflow-shot,
.has-rm-motion .nav-dropdown-menu,
.has-rm-motion .nav-dropdown-menu a {
  will-change: transform;
}

@media (min-width: 901px) {
  .hero-app-static-link {
    top: clamp(-32px, -3.5vh, -24px);
  }

  .has-rm-motion .nav-dropdown-menu {
    transition: none;
    transform: translate(-50%, 0);
  }

  .has-rm-motion .nav-dropdown:hover .nav-dropdown-menu,
  .has-rm-motion .nav-dropdown:focus-within .nav-dropdown-menu,
  .has-rm-motion .nav-dropdown.is-open .nav-dropdown-menu {
    opacity: 0;
    transform: translate(-50%, 0);
  }

  .has-rm-motion .nav-dropdown.is-open .nav-dropdown-menu {
    pointer-events: auto;
  }
}

.page-hero {
  text-align: center;
  padding-top: 88px;
  padding-bottom: 50px;
}

.page-hero p {
  margin-left: auto;
  margin-right: auto;
}

.detail-stack {
  display: grid;
  gap: 18px;
}

.detail-row {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 36px;
  align-items: start;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.detail-row h2 {
  font-size: clamp(1.9rem, 3vw, 3.2rem);
}

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

.story-band {
  text-align: center;
  display: block;
  max-width: 920px;
}

.story-band p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.about-post {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
  max-width: 1040px;
}

.about-post-heading h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.05;
  margin-bottom: 16px;
}

.about-post-copy {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.about-post-copy p {
  color: #28313b;
  font-size: 1rem;
  line-height: 1.76;
}

.about-post-copy h3 {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.35;
  margin: 30px 0 8px;
}

.about-post-actions {
  margin-top: 28px;
}

.faq-page {
  padding-top: 40px;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 40px;
}

.blog-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(40, 185, 255, 0.06);
}

.blog-card h2 {
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  line-height: 1.08;
  margin-bottom: 12px;
}

.blog-date {
  color: var(--hot-pink);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-post-hero {
  padding-bottom: 64px;
}

.blog-post-hero .blog-date {
  margin-bottom: 16px;
}

.blog-post-layout {
  max-width: 860px;
  padding-top: 34px;
}

.blog-post-content {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.blog-post-content p {
  color: #28313b;
  font-size: 1rem;
  line-height: 1.76;
}

.blog-post-content p:first-child {
  font-size: 1rem;
  color: #202833;
}

.blog-post-content h2,
.blog-post-content h3 {
  color: #101418;
  line-height: 1.35;
  margin-bottom: 8px;
  font-weight: 750;
}

.blog-post-content h2 {
  margin-top: 32px;
  font-size: 1.05rem;
}

.blog-post-content h3 {
  margin-top: 24px;
  font-size: 0.98rem;
}

.blog-post-content ul,
.blog-post-content ol {
  color: #343d48;
  line-height: 1.78;
  padding-left: 22px;
  margin: 18px 0 26px;
}

.blog-post-content li {
  margin-bottom: 8px;
}

.blog-post-content a {
  color: #087ec0;
  font-weight: 800;
}

.blog-post-content blockquote {
  margin: 24px 0;
  padding: 16px 20px;
  border-left: 4px solid var(--brand-blue);
  border-radius: 0 8px 8px 0;
  background: #f2f9fd;
}

.blog-post-content blockquote p {
  margin: 0;
  color: #202833;
}

.blog-post-content sup {
  margin-left: 2px;
  font-size: 0.72em;
  line-height: 0;
}

.blog-post-content .footnotes {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.blog-post-content .footnotes h2 {
  margin-top: 0;
}

.blog-post-content .footnotes ol {
  margin: 0;
  font-size: 0.9rem;
}

.blog-post-content .footnote-backref {
  padding-inline: 3px;
  text-decoration: none;
}

.blog-post-nav {
  max-width: 860px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding-top: 0;
}

.archive-list {
  max-width: 860px;
  padding-top: 34px;
}

.archive-year {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.archive-year h2 {
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.archive-year ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.archive-year li {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid rgba(223, 228, 234, 0.72);
}

.archive-year time {
  color: var(--muted);
  font-size: 0.94rem;
}

.archive-year a {
  color: #101418;
  font-weight: 760;
}

.seo-hero {
  padding-bottom: 34px;
}

.tool-grid,
.related-grid,
.seo-content-grid,
.rm-result-grid {
  display: grid;
  gap: 18px;
}

.tool-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 38px;
  gap: 20px;
}

.tool-card,
.related-card,
.responsive-table {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(40, 185, 255, 0.06);
}

.tool-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 245px;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 253, 255, 0.94)),
    var(--white);
  border-color: rgba(16, 20, 24, 0.09);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 18px 46px rgba(16, 20, 24, 0.055);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.tool-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 12%, rgba(40, 185, 255, 0.16), transparent 34%),
    radial-gradient(circle at 12% 90%, rgba(255, 22, 154, 0.08), transparent 32%);
  opacity: 0;
  transition: opacity 0.18s ease;
  pointer-events: none;
}

.tool-card:hover,
.tool-card:focus {
  border-color: rgba(40, 185, 255, 0.32);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.94) inset,
    0 24px 64px rgba(16, 20, 24, 0.09);
  transform: translateY(-3px);
  outline: 0;
}

.tool-card:hover::before,
.tool-card:focus::before {
  opacity: 1;
}

.tool-card-kicker {
  position: relative;
  z-index: 1;
  color: #087ec0;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.25;
  margin-bottom: 14px;
}

.tool-card h2 {
  position: relative;
  z-index: 1;
  color: #0f1720;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.04;
  margin-bottom: 12px;
}

.tool-card p {
  position: relative;
  z-index: 1;
  max-width: 34ch;
  margin-bottom: 22px;
  color: #59636f;
  font-size: 0.98rem;
  line-height: 1.55;
}

.tool-card-action {
  position: relative;
  z-index: 1;
  align-self: end;
  margin-top: auto;
  color: #087ec0;
  font-weight: 850;
}

.tool-card-action::after {
  content: ">";
  display: inline-block;
  margin-left: 7px;
  transition: transform 0.18s ease;
}

.tool-card:hover .tool-card-action::after,
.tool-card:focus .tool-card-action::after {
  transform: translateX(3px);
}

.rm-free-calculator {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px 74px;
}

.rm-section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.rm-eyebrow {
  color: var(--hot-pink);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.76rem;
  margin-bottom: 14px;
}

.rm-section-heading h2 {
  font-size: clamp(2.1rem, 4.4vw, 4rem);
  line-height: 1;
  margin-bottom: 16px;
}

.rm-section-copy {
  max-width: 720px;
}

.rm-app-calculator-shell {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(40, 185, 255, 0.2);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(40, 185, 255, 0.15), rgba(255, 22, 154, 0.08) 52%, rgba(35, 197, 141, 0.13)),
    #f4f7fb;
  box-shadow:
    0 34px 90px rgba(16, 20, 24, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.72) inset;
}

.rm-app-calculator-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(16, 20, 24, 0.07);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
}

.rm-app-calculator-topbar > div,
.rm-app-calculator-topbar span,
.rm-app-calculator-topbar strong {
  display: block;
}

.rm-app-calculator-kicker {
  margin-bottom: 2px;
  color: var(--brand-blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rm-app-calculator-topbar strong {
  color: var(--ink);
  font-size: 1.15rem;
}

.rm-app-free-badge {
  flex: 0 0 auto;
  padding: 7px 11px;
  border: 1px solid rgba(35, 197, 141, 0.26);
  border-radius: 999px;
  color: #126e52;
  background: rgba(35, 197, 141, 0.1);
  font-size: 0.78rem;
  font-weight: 900;
}

.rm-app-calculator {
  padding: 28px;
}

.rm-app-lift-picker {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  max-width: 680px;
  margin: 0 auto 18px;
}

.rm-app-lift-picker label {
  cursor: pointer;
}

.rm-app-lift-picker input,
.rm-segmented input,
.rm-plate-toggle-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.rm-app-lift-picker span {
  display: grid;
  min-height: 44px;
  place-items: center;
  padding: 0 10px;
  border: 1px solid rgba(16, 20, 24, 0.09);
  border-radius: 13px;
  color: #626972;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 850;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.rm-app-lift-picker input:checked + span {
  border-color: rgba(40, 185, 255, 0.45);
  color: #075da8;
  background: linear-gradient(135deg, rgba(10, 109, 255, 0.13), rgba(40, 185, 255, 0.2));
  box-shadow: 0 10px 24px rgba(10, 109, 255, 0.12);
}

.rm-app-set-card {
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(16, 20, 24, 0.07);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 24px 70px rgba(16, 20, 24, 0.11),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.rm-app-set-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.rm-app-set-heading span,
.rm-app-set-heading strong {
  display: block;
}

.rm-app-set-label {
  margin-bottom: 3px;
  color: #7b7f86;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.rm-app-set-heading strong {
  color: var(--ink);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.1;
}

.rm-app-unit-toggle {
  flex-wrap: nowrap;
  padding: 4px;
  border-radius: 13px;
  background: #f2f4f7;
}

.rm-app-unit-toggle span {
  min-width: 58px;
  min-height: 38px;
  border: 0;
  background: transparent;
}

.rm-app-input-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(240px, 1.1fr);
  gap: 18px;
  align-items: start;
}

.rm-app-input-grid .rm-field {
  margin-bottom: 0;
}

.rm-app-weight-input {
  min-height: 62px;
  border-width: 2px;
  border-color: rgba(10, 109, 255, 0.22);
  border-radius: 16px;
  background: #ffffff;
}

.rm-app-weight-input input {
  min-height: 62px;
  color: var(--ink);
  font-size: clamp(1.7rem, 4vw, 2.35rem);
  font-weight: 900;
}

.rm-app-weight-input span {
  color: #6d747d;
  font-size: 1rem;
}

.rm-app-input-grid select {
  min-height: 62px;
  border-radius: 16px;
  background-color: #ffffff;
}

.rm-custom-bar-input {
  margin-top: 9px;
  border-radius: 12px;
}

.rm-custom-bar-input[hidden] {
  display: none;
}

.rm-app-visualizer {
  margin: 24px 0 0;
  padding: 22px;
  border: 1px solid rgba(40, 185, 255, 0.14);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 42%, rgba(40, 185, 255, 0.09), transparent 45%),
    linear-gradient(180deg, #fcfdff, #f7faff);
}

.rm-app-visualizer.is-error {
  border-color: rgba(180, 35, 24, 0.18);
  background: linear-gradient(180deg, #fffdfd, #fff8f7);
}

.rm-app-visualizer.is-warning {
  border-color: rgba(191, 126, 0, 0.2);
}

.rm-app-equipment-settings {
  margin-top: 18px;
  padding: 0 18px;
  border: 1px solid rgba(16, 20, 24, 0.08);
  border-radius: 16px;
  background: #fbfcfe;
}

.rm-app-equipment-settings summary {
  padding: 16px 0;
  color: #313944;
  font-weight: 850;
  cursor: pointer;
}

.rm-app-equipment-settings .rm-plate-field {
  padding: 0 0 18px;
  margin: 0;
}

.rm-app-equipment-settings legend {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.rm-app-calculator-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.rm-app-calculator-actions .button {
  width: 100%;
}

.rm-app-lift-picker input:focus-visible + span,
.rm-segmented input:focus-visible + span,
.rm-plate-toggle-grid input:focus-visible + span {
  outline: 3px solid rgba(10, 109, 255, 0.4);
  outline-offset: 3px;
}

.rm-field {
  display: grid;
  gap: 9px;
  margin-bottom: 18px;
}

.rm-field label,
.rm-field legend,
.rm-control-label {
  color: #28313b;
  font-weight: 800;
}

.rm-input-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
  overflow: hidden;
}

.rm-input-shell input,
.rm-field select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
  color: var(--ink);
  font: inherit;
}

.rm-input-shell input {
  border: 0;
  padding: 0 14px;
}

.rm-input-shell span {
  padding: 0 14px;
  color: var(--muted);
  font-weight: 800;
}

.rm-field select {
  padding: 0 12px;
}

.rm-segmented,
.rm-plate-toggle-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rm-segmented label,
.rm-plate-toggle-grid label {
  cursor: pointer;
}

.rm-segmented input,
.rm-plate-toggle-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.rm-segmented span,
.rm-plate-toggle-grid span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
  color: #28313b;
  font-weight: 800;
}

.rm-segmented span {
  min-width: 76px;
}

.rm-plate-toggle-grid span {
  min-width: 56px;
  padding: 0 10px;
}

.rm-segmented input:checked + span,
.rm-plate-toggle-grid input:checked + span {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(135deg, var(--hot-pink), var(--brand-blue));
}

.rm-plate-field {
  border: 0;
  padding: 0;
}

.rm-calculator-submit {
  width: 100%;
  border: 0;
}

.rm-result-message {
  min-height: 32px;
  color: #101418;
  font-weight: 850;
  text-align: center;
}

.rm-result-message.is-warning {
  color: #955f00;
}

.rm-result-message.is-error {
  color: #b42318;
}

.rm-barbell-frame {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(120px, 1.1fr) minmax(0, 1fr);
  column-gap: 4px;
  align-items: center;
  min-height: 220px;
  margin: 8px 0 14px;
  padding: 18px;
  border-radius: 8px;
  background: transparent;
  overflow: hidden;
}

.rm-bar-core {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 38px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  font-weight: 850;
  background: linear-gradient(180deg, #565656, #161616);
  border-radius: 3px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 8px 18px rgba(16, 20, 24, 0.16);
}

.rm-bar-core::before,
.rm-bar-core::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 12px;
  height: 58px;
  background: linear-gradient(180deg, #565656, #161616);
  border-radius: 4px;
  transform: translateY(-50%);
}

.rm-bar-core::before {
  left: 0;
}

.rm-bar-core::after {
  right: 0;
}

.rm-plate-stack {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
}

.rm-plate-stack-left {
  justify-content: flex-end;
}

.rm-plate-stack-right {
  justify-content: flex-start;
}

.rm-plate {
  display: inline-grid;
  place-items: center;
  width: var(--rm-plate-width, 22px);
  height: var(--rm-plate-height, 86px);
  color: #050608;
  background: #ffffff;
  border: 4px solid #2b2d30;
  border-radius: 9px;
  font-size: 0.88rem;
  font-weight: 900;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.85),
    0 8px 18px rgba(16, 20, 24, 0.08);
}

.rm-plate-small {
  font-size: 0.72rem;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  line-height: 1;
  text-align: center;
  align-content: center;
  justify-content: center;
}

.rm-result-grid {
  grid-template-columns: repeat(2, 1fr);
  margin: 0 auto 22px;
  max-width: 520px;
  text-align: center;
}

.rm-result-grid div {
  padding: 8px 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.rm-result-grid div:nth-child(3) {
  grid-column: 1 / -1;
  padding-top: 4px;
}

.rm-result-grid span,
.rm-result-grid strong {
  display: block;
}

.rm-result-grid span {
  color: #7b7f86;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rm-result-grid strong {
  margin-top: 2px;
  color: var(--ink);
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.05;
}

.rm-result-grid div:nth-child(2) strong {
  color: #277cff;
  font-size: clamp(2rem, 4.2vw, 3.1rem);
}

.rm-full-app-link {
  width: 100%;
}

/* App-parity calculator preview. Keep every selector rooted to this component: the
   marketing site also uses generic names such as .bar, .card, and .plate. */
.rm-dark-workout-shell {
  --rm-app-bg: #0f1012;
  --rm-app-card: #222324;
  --rm-app-panel: #2d2e30;
  --rm-app-field: #18191b;
  --rm-app-border: #36383b;
  --rm-app-copy: #f7f7f8;
  --rm-app-muted: #a3a3a8;
  --rm-app-blue: #58b9fa;
  max-width: 600px;
  margin: 0 auto;
  padding: 18px;
  color: var(--rm-app-copy);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 18%, rgba(40, 185, 255, 0.09), transparent 34%),
    var(--rm-app-bg);
  box-shadow: 0 38px 90px rgba(8, 10, 13, 0.28);
  font-family: var(--display-font);
}

.rm-dark-workout-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
  padding: 20px 26px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 26px;
  background: #303133;
}

.rm-dark-workout-bar > div {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 0;
}

.rm-dark-workout-bar > div > span:last-child,
.rm-dark-workout-bar strong {
  display: block;
}

.rm-dark-workout-bar small {
  display: none;
}

.rm-dark-workout-bar strong {
  overflow: hidden;
  color: var(--rm-app-copy);
  font-size: clamp(1.18rem, 2.4vw, 1.55rem);
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rm-dark-workout-mark {
  position: relative;
  flex: 0 0 auto;
  width: 25px;
  height: 31px;
  border: 3px solid var(--rm-app-blue);
  border-radius: 3px;
}

.rm-dark-workout-mark::before {
  content: "";
  position: absolute;
  top: -3px;
  right: -3px;
  width: 9px;
  height: 9px;
  border-bottom: 3px solid var(--rm-app-blue);
  border-left: 3px solid var(--rm-app-blue);
  background: #303133;
}

.rm-dark-workout-mark::after {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 6px;
  left: 4px;
  height: 2px;
  background: var(--rm-app-blue);
  box-shadow: 0 -6px 0 var(--rm-app-blue);
}

.rm-dark-live-badge {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  color: #b9b9bd;
  background: #1a1b1d;
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
}

.rm-dark-live-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2bd89d;
  box-shadow: 0 0 0 4px rgba(43, 216, 157, 0.12);
}

.rm-dark-calculator {
  position: relative;
  padding: clamp(28px, 5.5vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.035);
  border-radius: 32px;
  background: var(--rm-app-card);
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.22);
}

.rm-dark-calculator-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.rm-dark-ordinal-date {
  display: inline-flex;
  align-items: flex-start;
  min-width: 0;
  color: var(--rm-app-copy);
  font-size: clamp(4.8rem, 11vw, 7.25rem);
  font-weight: 850;
  letter-spacing: -0.075em;
  line-height: 0.82;
  font-variant-numeric: tabular-nums;
}

.rm-dark-ordinal-date sup {
  margin: 0.08em 0 0 0.08em;
  font-size: 0.31em;
  letter-spacing: -0.02em;
  line-height: 1;
}

.rm-dark-session-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.rm-dark-timer,
.rm-dark-streak,
.rm-dark-settings > summary {
  min-height: 50px;
  border-radius: 14px;
  color: #adadb1;
  background: #191a1c;
}

.rm-dark-timer {
  display: grid;
  min-width: 88px;
  place-items: center;
  padding: 7px 12px;
  border: 3px solid var(--rm-app-border);
  text-decoration: none;
}

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

.rm-dark-timer strong {
  font-size: 1.28rem;
  font-variant-numeric: tabular-nums;
}

.rm-dark-streak {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  color: #f7f7f8;
  font-size: 1.2rem;
  text-decoration: none;
}

.rm-dark-timer,
.rm-dark-streak {
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.rm-dark-timer:hover,
.rm-dark-streak:hover {
  color: var(--rm-app-blue);
  border-color: rgba(88, 185, 250, 0.58);
  background: #14191d;
  transform: translateY(-1px);
}

.rm-dark-settings {
  position: relative;
  z-index: 8;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.rm-dark-settings:hover {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.rm-dark-settings > summary {
  display: grid;
  width: 44px;
  place-items: center;
  padding: 0;
  color: #f7f7f8;
  cursor: pointer;
  list-style: none;
  background: var(--rm-app-card);
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.rm-dark-settings > summary::-webkit-details-marker {
  display: none;
}

.rm-dark-settings > summary:hover,
.rm-dark-settings[open] > summary {
  color: var(--rm-app-blue);
  background: #14191d;
}

.rm-dark-settings > summary:active {
  transform: scale(0.96);
}

.rm-dark-settings > summary svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.rm-dark-settings-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 20;
  display: grid;
  width: min(520px, calc(100vw - 76px));
  max-height: min(72vh, 660px);
  gap: 18px;
  padding: 24px;
  overflow-y: auto;
  border: 1px solid #44464b;
  border-radius: 20px;
  color: var(--rm-app-copy);
  background: #28292c;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.48);
}

.rm-dark-settings-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #414246;
}

.rm-dark-settings-heading small,
.rm-dark-settings-heading strong,
.rm-dark-settings-heading span {
  display: block;
}

.rm-dark-settings-heading small {
  margin-bottom: 3px;
  color: var(--rm-app-blue);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.rm-dark-settings-heading strong {
  font-size: 1.25rem;
}

.rm-dark-settings-heading span {
  color: var(--rm-app-muted);
  font-size: 0.75rem;
}

.rm-dark-settings-field {
  display: grid;
  gap: 9px;
  min-width: 0;
  padding: 0;
  border: 0;
}

.rm-dark-settings-field > label,
.rm-dark-settings-field legend,
.rm-dark-custom-bar label {
  color: #d0d0d3;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.rm-dark-settings-field select,
.rm-dark-custom-bar > span {
  width: 100%;
  min-height: 50px;
  border: 1px solid #4a4c51;
  border-radius: 12px;
  color: var(--rm-app-copy);
  background: #191a1c;
  font: inherit;
}

.rm-dark-settings-field select {
  padding: 0 42px 0 13px;
}

.rm-dark-custom-bar {
  display: grid;
  gap: 7px;
  margin-top: 4px;
}

.rm-dark-custom-bar[hidden] {
  display: none;
}

.rm-dark-custom-bar > span {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  overflow: hidden;
}

.rm-dark-custom-bar input {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 0;
  outline: 0;
  color: var(--rm-app-copy);
  background: transparent;
  font: inherit;
}

.rm-dark-custom-bar b {
  padding: 0 14px;
  color: var(--rm-app-muted);
}

.rm-dark-segmented,
.rm-dark-plate-toggles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rm-dark-segmented label,
.rm-dark-plate-toggles label {
  cursor: pointer;
}

.rm-dark-segmented input,
.rm-dark-plate-toggles input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.rm-dark-segmented span,
.rm-dark-plate-toggles span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border: 1px solid #4a4c51;
  border-radius: 10px;
  color: #c6c6ca;
  background: #191a1c;
  font-weight: 800;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.rm-dark-segmented input:checked + span,
.rm-dark-plate-toggles input:checked + span {
  color: #fff;
  border-color: #2baeff;
  background: linear-gradient(135deg, #1477ff, #40c7ef);
}

.rm-dark-settings-apply {
  min-height: 48px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #1477ff, #50d1ed);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.rm-dark-set-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin: 34px 0 22px;
  color: var(--rm-app-muted);
  font-size: 1.08rem;
  font-weight: 800;
}

.rm-dark-set-controls {
  display: flex;
  gap: 10px;
}

.rm-dark-set-controls a {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 3px solid var(--rm-app-border);
  border-radius: 13px;
  color: #d3d3d5;
  background: #1b1c1e;
  font-size: 1.45rem;
  font-weight: 800;
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.rm-dark-set-controls a:hover {
  color: var(--rm-app-blue);
  border-color: #4d9fd5;
}

.rm-dark-set-controls a:active {
  transform: scale(0.96);
}

.rm-dark-weight-stage {
  position: relative;
}

.rm-dark-weight-stage > label {
  display: block;
  margin-bottom: 12px;
  color: #a9a9ad;
  font-size: 0.88rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.rm-dark-plate-builder-icon {
  position: absolute;
  top: 1px;
  right: 0;
  display: flex;
  width: 34px;
  height: 24px;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border: 1px solid rgba(88, 185, 250, 0.4);
  border-radius: 9px;
  background: rgba(88, 185, 250, 0.08);
}

.rm-dark-plate-builder-icon i {
  display: block;
  width: 4px;
  height: 14px;
  border: 1px solid var(--rm-app-blue);
  border-radius: 2px;
}

.rm-dark-plate-builder-icon i:nth-child(2) {
  height: 18px;
}

.rm-dark-weight-control {
  position: relative;
  display: grid;
  min-height: 116px;
  place-items: center;
  overflow: hidden;
  border: 4px solid var(--rm-app-blue);
  border-radius: 22px;
  background: var(--rm-app-field);
  box-shadow: 0 0 0 1px rgba(40, 185, 255, 0.08) inset;
}

.rm-dark-weight-control input {
  width: 100%;
  min-width: 0;
  height: 108px;
  padding: 0 96px;
  border: 0;
  outline: 0;
  color: var(--rm-app-copy);
  background: transparent;
  font: inherit;
  font-size: clamp(2.6rem, 6.8vw, 4.4rem);
  font-weight: 850;
  text-align: center;
  -moz-appearance: textfield;
}

.rm-dark-weight-control input::-webkit-inner-spin-button,
.rm-dark-weight-control input::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.rm-dark-weight-control > span {
  position: absolute;
  right: 28px;
  color: #a8a8ac;
  font-size: 1.2rem;
  font-weight: 800;
}

.rm-dark-visualizer {
  margin-top: 22px;
}

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

.rm-dark-result-message.is-error,
.rm-dark-result-message.is-warning {
  position: static;
  width: auto;
  height: auto;
  padding: 12px 16px;
  margin: 0 0 8px;
  overflow: visible;
  clip: auto;
  white-space: normal;
  border: 1px solid #524c3e;
  border-radius: 12px;
  color: #ffd173;
  background: rgba(255, 163, 31, 0.08);
  font-size: 0.88rem;
  font-weight: 750;
  text-align: center;
}

.rm-dark-result-message.is-error {
  color: #ff9e9e;
  border-color: #5b3b3d;
  background: rgba(255, 80, 88, 0.08);
}

.rm-dark-visualizer.is-error .rm-dark-barbell-frame,
.rm-dark-visualizer.is-error .rm-dark-result-grid,
.rm-dark-visualizer.is-error .rm-dark-plate-list,
.rm-dark-visualizer.is-warning .rm-dark-barbell-frame,
.rm-dark-visualizer.is-warning .rm-dark-result-grid,
.rm-dark-visualizer.is-warning .rm-dark-plate-list {
  display: none;
}

.rm-dark-barbell-frame {
  width: 100%;
  padding: 24px 0;
  overflow: visible;
}

.rm-dark-barbell-assembly {
  display: flex;
  width: 100%;
  min-height: 100px;
  align-items: center;
  justify-content: center;
}

.rm-dark-bar-core {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 0 0 140px;
  width: 140px;
  height: 28px;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: #9a9a9a;
  background: linear-gradient(180deg, #666 0%, #444 50%, #333 100%);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.rm-dark-bar-core::before,
.rm-dark-bar-core::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 40px;
  border-radius: 2px;
  background: linear-gradient(180deg, #555 0%, #333 100%);
  transform: translateY(-50%);
}

.rm-dark-bar-core::before {
  left: -4px;
}

.rm-dark-bar-core::after {
  right: -4px;
}

.rm-dark-plate-stack {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  align-items: center;
  gap: 0;
}

.rm-dark-plate-stack-left {
  flex-direction: row-reverse;
  margin-right: 5px;
}

.rm-dark-plate-stack-right {
  flex-direction: row;
  margin-left: 5px;
}

.rm-dark-calculator .rm-plate {
  display: flex;
  box-sizing: border-box;
  flex: 0 0 var(--rm-plate-width, 18px);
  width: var(--rm-plate-width, 18px);
  min-width: 0;
  max-width: var(--rm-plate-width, 22px);
  height: var(--rm-plate-height, 85px);
  align-items: center;
  justify-content: center;
  margin: 0 1px;
  border: var(--rm-plate-border-width, 2px) solid var(--rm-plate-border-color, #111);
  border-radius: 6px;
  color: #000;
  background: #fff;
  font-family: var(--display-font);
  font-size: var(--rm-plate-font-size, 13px);
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
  writing-mode: vertical-rl;
  transition: transform 200ms ease;
}

.rm-dark-calculator .rm-plate:hover {
  transform: scale(1.05);
}

.rm-dark-calculator .rm-plate-small {
  text-orientation: mixed;
}

.rm-dark-calculator .rm-plate-num {
  text-combine-upright: all;
  -webkit-text-combine: horizontal;
}

.rm-dark-result-grid {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: clamp(34px, 8vw, 82px);
  margin: 0 auto;
  text-align: center;
}

.rm-dark-result-grid span,
.rm-dark-result-grid strong {
  display: block;
}

.rm-dark-result-grid span {
  color: #a5a5aa;
  font-size: 0.83rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rm-dark-result-grid strong {
  margin-top: 3px;
  color: #f7f7f8;
  font-size: clamp(1.45rem, 3.4vw, 2.15rem);
  line-height: 1;
}

.rm-dark-result-grid div:nth-child(2) strong {
  color: var(--rm-app-blue);
  font-size: clamp(2.1rem, 5vw, 3.35rem);
}

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

.rm-dark-track-cta {
  display: grid;
  width: min(100%, 530px);
  min-height: 72px;
  place-items: center;
  margin: 34px auto 0;
  padding: 14px 24px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(105deg, #1578ff 0%, #27b8ff 56%, #64d3e9 100%);
  box-shadow: 0 20px 42px rgba(34, 176, 255, 0.18);
  font-size: clamp(1.15rem, 2.7vw, 1.45rem);
  font-weight: 850;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.rm-dark-track-cta:hover {
  box-shadow: 0 24px 52px rgba(34, 176, 255, 0.28);
  filter: saturate(1.08);
  transform: translateY(-2px);
}

.rm-dark-feature-list {
  display: grid;
  gap: 10px;
  margin-top: 70px;
}

.rm-dark-feature-teaser {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 82px;
  padding: 16px;
  border: 1px solid #333;
  border-radius: 16px;
  color: inherit;
  background: #222;
  text-decoration: none;
  transition: border-color 200ms ease, box-shadow 250ms ease, transform 200ms ease;
}

.rm-dark-feature-teaser:hover {
  border-color: rgba(100, 181, 246, 0.25);
  box-shadow: 0 4px 20px rgba(100, 181, 246, 0.08);
  transform: translateY(-1px);
}

.rm-dark-feature-teaser:active {
  box-shadow: none;
  transform: scale(0.98);
}

.rm-dark-feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(40, 185, 255, 0.18);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(123, 223, 246, 0.42), rgba(40, 185, 255, 0.2) 54%, rgba(255, 255, 255, 0.72)),
    #eaf8ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.rm-dark-feature-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rm-dark-feature-copy {
  min-width: 0;
}

.rm-dark-feature-copy strong {
  display: block;
}

.rm-dark-feature-copy strong {
  color: #f7f7f8;
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.2;
}

.rm-dark-feature-copy p {
  margin: 2px 0 0;
  color: #9a9a9a;
  font-size: 0.75rem;
  line-height: 1.35;
}

.rm-dark-feature-arrow {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #7e8085;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.rm-dark-pro-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid #333;
  border-radius: 14px;
  background: linear-gradient(135deg, #222, #1a1a1a);
  transition: border-color 200ms ease;
}

.rm-dark-pro-card:hover {
  border-color: rgba(100, 181, 246, 0.2);
}

.rm-dark-pro-card strong,
.rm-dark-pro-card p {
  display: block;
}

.rm-dark-pro-card strong {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
}

.rm-dark-pro-card p {
  margin: 2px 0 0;
  color: #9a9a9a;
  font-size: 0.75rem;
  line-height: 1.35;
}

.rm-dark-pro-card > a {
  flex: 0 0 auto;
  padding: 8px 14px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #1477ff 0%, #28b9ff 58%, #7bdff6 100%);
  font-size: 0.75rem;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
  transition: box-shadow 150ms ease, transform 150ms ease;
}

.rm-dark-pro-card > a:hover {
  box-shadow: 0 12px 28px rgba(40, 185, 255, 0.24);
}

.rm-dark-pro-card > a:active {
  transform: scale(0.96);
}

.rm-dark-workout-shell a:focus-visible,
.rm-dark-workout-shell button:focus-visible,
.rm-dark-workout-shell summary:focus-visible,
.rm-dark-workout-shell input:focus-visible,
.rm-dark-workout-shell select:focus-visible,
.rm-dark-segmented input:focus-visible + span,
.rm-dark-plate-toggles input:focus-visible + span {
  outline: 3px solid rgba(88, 185, 250, 0.75);
  outline-offset: 3px;
}

@media (max-width: 700px) {
  .rm-dark-workout-shell {
    padding: 10px;
    border-radius: 25px;
  }

  .rm-dark-workout-bar {
    gap: 10px;
    margin-bottom: 10px;
    padding: 16px;
    border-radius: 20px;
  }

  .rm-dark-workout-bar > div {
    gap: 10px;
  }

  .rm-dark-workout-mark {
    width: 21px;
    height: 27px;
  }

  .rm-dark-workout-bar strong {
    font-size: 1.05rem;
  }

  .rm-dark-live-badge {
    max-width: 150px;
    padding: 7px 10px;
    overflow: hidden;
    font-size: 0.68rem;
    text-overflow: ellipsis;
  }

  .rm-dark-calculator {
    padding: 24px 15px 20px;
    border-radius: 22px;
  }

  .rm-dark-calculator-header {
    gap: 12px;
  }

  .rm-dark-ordinal-date {
    font-size: clamp(3.8rem, 20vw, 5.3rem);
  }

  .rm-dark-session-actions {
    gap: 6px;
  }

  .rm-dark-timer,
  .rm-dark-streak,
  .rm-dark-settings > summary {
    min-height: 42px;
    border-radius: 11px;
  }

  .rm-dark-timer {
    min-width: 62px;
    padding: 5px 7px;
    border-width: 2px;
  }

  .rm-dark-timer strong {
    font-size: 0.93rem;
  }

  .rm-dark-streak {
    gap: 4px;
    padding: 0 9px;
    font-size: 0.92rem;
  }

  .rm-dark-settings > summary {
    width: 44px;
  }

  .rm-dark-settings > summary svg {
    width: 22px;
    height: 22px;
  }

  .rm-dark-settings-panel {
    position: fixed;
    top: 106px;
    right: 16px;
    left: 16px;
    width: auto;
    max-height: calc(100vh - 122px);
    max-height: calc(100dvh - 122px);
    padding: 18px;
  }

  .rm-dark-settings-heading {
    align-items: start;
    flex-direction: column;
    gap: 6px;
  }

  .rm-dark-set-row {
    margin: 28px 0 20px;
    font-size: 0.94rem;
  }

  .rm-dark-set-controls {
    gap: 7px;
  }

  .rm-dark-set-controls a {
    width: 40px;
    height: 40px;
    border-width: 2px;
    border-radius: 11px;
    font-size: 1.2rem;
  }

  .rm-dark-weight-stage > label {
    margin-bottom: 9px;
    font-size: 0.78rem;
  }

  .rm-dark-plate-builder-icon {
    width: 30px;
    height: 22px;
  }

  .rm-dark-weight-control {
    min-height: 90px;
    border-width: 3px;
    border-radius: 17px;
  }

  .rm-dark-weight-control input {
    height: 84px;
    padding: 0 68px;
    font-size: clamp(2.2rem, 13vw, 3.2rem);
  }

  .rm-dark-weight-control > span {
    right: 18px;
    font-size: 1rem;
  }

  .rm-dark-result-grid {
    gap: 26px;
  }

  .rm-dark-result-grid span {
    font-size: 0.7rem;
  }

  .rm-dark-result-grid strong {
    font-size: 1.3rem;
  }

  .rm-dark-result-grid div:nth-child(2) strong {
    font-size: clamp(1.85rem, 9vw, 2.45rem);
  }

  .rm-dark-track-cta {
    min-height: 60px;
    margin-top: 28px;
    border-radius: 15px;
  }

  .rm-dark-feature-list {
    margin-top: 50px;
  }

  .rm-dark-feature-teaser {
    gap: 12px;
    padding: 14px;
  }

  .rm-dark-feature-copy strong {
    font-size: 0.9rem;
  }

  .rm-dark-feature-copy p {
    font-size: 0.7rem;
  }

  .rm-dark-pro-card {
    padding: 14px;
  }
}

@media (max-width: 480px) {
  .rm-dark-bar-core {
    flex-basis: 100px;
    width: 100px;
  }

  .rm-dark-calculator .rm-plate {
    flex-basis: var(--rm-plate-mobile-width, 14px);
    width: var(--rm-plate-mobile-width, 14px);
    max-width: var(--rm-plate-mobile-width, 14px);
    height: var(--rm-plate-mobile-height, 70px);
    font-size: var(--rm-plate-mobile-font-size, 11px);
  }
}

@media (max-width: 380px) {
  .rm-dark-live-badge {
    width: 38px;
    padding: 0;
    justify-content: center;
    font-size: 0;
  }

  .rm-dark-live-badge i {
    width: 8px;
    height: 8px;
  }

  .rm-dark-ordinal-date {
    font-size: 3.55rem;
  }

  .rm-dark-timer {
    min-width: 56px;
  }

  .rm-dark-streak {
    padding: 0 7px;
  }

  .rm-dark-settings > summary {
    width: 40px;
  }

  .rm-dark-weight-control input {
    padding: 0 58px;
  }

  .rm-dark-feature-teaser {
    grid-template-columns: 44px minmax(0, 1fr) 18px;
    gap: 10px;
    padding: 12px;
  }

  .rm-dark-feature-icon {
    width: 44px;
    height: 44px;
  }

  .rm-dark-feature-copy strong {
    font-size: 0.82rem;
  }

  .rm-dark-feature-copy p {
    font-size: 0.66rem;
  }

  .rm-dark-pro-card {
    grid-template-columns: 1fr;
  }

  .rm-dark-pro-card > a {
    justify-self: start;
  }
}

.seo-content-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 40px;
}

.seo-content-grid article {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.seo-content-grid h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.responsive-table {
  overflow-x: auto;
}

.responsive-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.responsive-table th,
.responsive-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.responsive-table th {
  color: #28313b;
  background: #fbfdff;
  font-size: 0.88rem;
  text-transform: uppercase;
}

.calculator-example-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.calculator-example-grid caption {
  padding: 18px;
  color: var(--ink);
  font-weight: 850;
  text-align: left;
}

.related-pages {
  padding-top: 38px;
}

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

.related-card {
  display: flex;
  min-height: 104px;
  align-items: center;
  padding: 22px;
  color: #087ec0;
  font-weight: 850;
}

.calculator-related-card {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
}

.calculator-related-card span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.5;
}

.feature-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding-top: 38px;
}

.feature-proof-grid article {
  min-height: 230px;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 253, 255, 0.94)),
    var(--white);
  border: 1px solid rgba(16, 20, 24, 0.09);
  border-radius: 8px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 18px 46px rgba(16, 20, 24, 0.055);
}

.feature-proof-grid h2 {
  color: #0f1720;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.06;
  margin-bottom: 0;
}

.persona-playbook {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 20px;
  padding-top: 38px;
  align-items: start;
}

.persona-main-copy,
.persona-facts,
.persona-workflow ol,
.persona-workflow li {
  background: var(--white);
  border: 1px solid rgba(16, 20, 24, 0.09);
  border-radius: 8px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 18px 46px rgba(16, 20, 24, 0.055);
}

.persona-main-copy,
.persona-facts {
  padding: 30px;
}

.persona-main-copy h2 {
  color: #0f1720;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.06;
  margin-bottom: 18px;
}

.persona-main-copy p:not(.eyebrow) {
  max-width: 68ch;
  color: #28313b;
  font-size: 1.05rem;
  line-height: 1.72;
}

.persona-main-copy p:last-child {
  margin-bottom: 0;
}

.persona-facts dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.persona-facts dt {
  color: #087ec0;
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.persona-facts dd {
  margin: 0;
  color: #0f1720;
  font-weight: 760;
  line-height: 1.35;
}

.persona-workflow {
  padding-top: 34px;
}

.persona-workflow ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}

.persona-workflow li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  padding: 24px 28px;
  border-radius: 0;
  border-width: 0 0 1px;
  box-shadow: none;
}

.persona-workflow li:last-child {
  border-bottom: 0;
}

.persona-workflow li > span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--hot-pink), var(--brand-blue));
  border-radius: 999px;
  font-weight: 850;
}

.persona-workflow h3 {
  color: #0f1720;
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.persona-workflow p {
  margin-bottom: 0;
  color: #28313b;
  line-height: 1.65;
}

.program-roadmap {
  padding-top: 34px;
}

.program-roadmap ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.program-roadmap li {
  min-width: 0;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(16, 20, 24, 0.09);
  border-radius: 8px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 18px 46px rgba(16, 20, 24, 0.055);
}

.program-roadmap li span {
  display: block;
  color: #087ec0;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.program-roadmap li p {
  margin-bottom: 0;
  color: #28313b;
  line-height: 1.62;
}

.program-app-builder {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 24px;
  align-items: center;
  margin-top: 34px;
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 22, 154, 0.92), rgba(40, 185, 255, 0.94)),
    var(--night);
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(16, 20, 24, 0.14);
}

.program-app-builder .eyebrow,
.program-app-builder p {
  color: rgba(255, 255, 255, 0.86);
}

.program-app-builder h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.04;
  margin-bottom: 14px;
}

.program-app-builder p:last-child {
  margin-bottom: 0;
}

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

.program-builder-list span {
  display: block;
  padding: 13px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-weight: 760;
}

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

.feature-list li {
  position: relative;
  padding-left: 24px;
  color: #28313b;
  line-height: 1.55;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--hot-pink), var(--brand-blue));
}

.tool-workspace {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
  align-items: start;
  padding-top: 38px;
}

.tool-panel,
.tool-context {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(40, 185, 255, 0.06);
  padding: 26px;
}

.tool-panel h2,
.tool-context h2 {
  font-size: clamp(1.8rem, 3.4vw, 3.1rem);
  line-height: 1;
}

.tool-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0;
}

.tool-form-grid label,
.tool-full-field {
  display: grid;
  gap: 8px;
  color: #28313b;
  font-weight: 800;
}

.tool-form-grid input,
.tool-form-grid select,
.tool-full-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
  color: var(--ink);
  font: inherit;
  padding: 0 12px;
}

.tool-full-field textarea {
  min-height: 150px;
  padding: 12px;
  resize: vertical;
}

.tool-static-copy {
  margin: 22px 0;
  color: #28313b;
}

.tool-output {
  margin-top: 20px;
  padding: 18px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(40, 185, 255, 0.08), rgba(255, 22, 154, 0.06)),
    #fbfdff;
  border: 1px solid rgba(40, 185, 255, 0.18);
  overflow-x: auto;
}

.tool-output table {
  width: 100%;
  border-collapse: collapse;
  min-width: 360px;
}

.tool-output th,
.tool-output td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.tool-output th {
  color: #28313b;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.tool-result-number {
  color: #277cff;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
}

.tool-context .button {
  margin-top: 12px;
}

.workout-overview,
.workout-guidance-grid {
  display: grid;
  gap: 18px;
}

.workout-overview {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 38px;
}

.workout-overview article,
.workout-guidance-grid article,
.workout-day {
  background: var(--white);
  border: 1px solid rgba(16, 20, 24, 0.09);
  border-radius: 8px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 18px 46px rgba(16, 20, 24, 0.055);
}

.workout-overview article,
.workout-guidance-grid article {
  padding: 28px;
}

.workout-overview h2,
.workout-guidance-grid h2 {
  font-size: clamp(1.55rem, 2.7vw, 2.45rem);
  line-height: 1.06;
}

.workout-plan {
  padding-top: 38px;
}

.workout-volume-section {
  padding-top: 34px;
}

.exercise-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 38px;
}

.exercise-summary-grid article {
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(16, 20, 24, 0.09);
  border-radius: 8px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 18px 46px rgba(16, 20, 24, 0.055);
}

.exercise-summary-grid span,
.exercise-summary-grid strong {
  display: block;
}

.exercise-summary-grid span {
  color: #087ec0;
  font-size: 0.78rem;
  font-weight: 850;
  margin-bottom: 9px;
}

.exercise-summary-grid strong {
  color: #0f1720;
  font-size: 1.06rem;
  line-height: 1.35;
}

.exercise-guide-panel {
  padding-top: 38px;
}

.exercise-guide-panel {
  max-width: var(--max);
}

.exercise-guide-panel > .exercise-guide-header,
.exercise-guide-copy,
.exercise-tracking-note {
  background: var(--white);
  border: 1px solid rgba(16, 20, 24, 0.09);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 18px 46px rgba(16, 20, 24, 0.055);
}

.exercise-guide-header {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: start;
  padding: 30px;
  border-radius: 8px 8px 0 0;
}

.exercise-guide-header h2 {
  color: #0f1720;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.06;
  margin-bottom: 0;
}

.exercise-meta-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
  margin: 0;
}

.exercise-meta-list div {
  min-width: 0;
}

.exercise-meta-list dt {
  color: #087ec0;
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.exercise-meta-list dd {
  margin: 0;
  color: #0f1720;
  font-weight: 760;
  line-height: 1.35;
}

.exercise-guide-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  padding: 30px;
  border-top: 0;
}

.exercise-technique-block,
.exercise-mistake-block {
  padding: 30px;
  background: var(--white);
  border: 1px solid rgba(16, 20, 24, 0.09);
  border-top: 0;
}

.exercise-technique-block h3,
.exercise-mistake-block h3 {
  color: #0f1720;
  font-size: 1.28rem;
  margin-bottom: 18px;
}

.exercise-cue-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
  margin: 0;
}

.exercise-cue-list div {
  min-width: 0;
}

.exercise-cue-list dt {
  color: #087ec0;
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.exercise-cue-list dd {
  margin: 0;
  color: #28313b;
  line-height: 1.58;
}

.exercise-guide-copy h3,
.exercise-tracking-note h3 {
  color: #0f1720;
  font-size: 1.28rem;
  margin-bottom: 10px;
}

.exercise-guide-copy p:last-child,
.exercise-tracking-note p:last-child {
  margin-bottom: 0;
}

.exercise-tracking-note {
  padding: 24px 30px;
  border-top: 0;
  border-radius: 0 0 8px 8px;
}

.workout-day {
  margin-bottom: 18px;
  overflow: hidden;
}

.workout-day h3 {
  margin: 0;
  padding: 20px 22px;
  color: #0f1720;
  font-size: 1.18rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 253, 255, 0.94)),
    var(--white);
  border-bottom: 1px solid var(--line);
}

.workout-day .responsive-table {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.workout-day td:first-child {
  color: #101418;
  font-weight: 850;
}

.workout-guidance-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: 38px;
}

.evidence-section {
  padding-top: 38px;
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 20px;
}

.evidence-grid article {
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(16, 20, 24, 0.09);
  border-radius: 8px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 18px 46px rgba(16, 20, 24, 0.055);
}

.evidence-grid h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.evidence-grid p {
  margin-bottom: 0;
  font-size: 0.96rem;
  line-height: 1.58;
}

.evidence-table {
  margin-bottom: 18px;
}

.evidence-note {
  max-width: 940px;
  color: #343d48;
  font-size: 0.95rem;
}

.evidence-note a {
  color: #087ec0;
  font-weight: 800;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .site-nav {
    display: grid;
    grid-column: 1 / -1;
    justify-self: stretch;
    gap: 6px;
    padding: 12px 0;
  }

  .site-header.is-open .nav-dropdown {
    display: grid;
  }

  .site-header.is-open .nav-dropdown-trigger {
    justify-self: start;
  }

  .site-header.is-open .nav-dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    max-height: none;
    padding: 6px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-header.is-open .nav-dropdown.is-open .nav-dropdown-menu,
  .site-header.is-open .nav-dropdown:focus-within .nav-dropdown-menu {
    display: grid;
  }

  .site-header.is-open .header-cta {
    display: inline-flex;
    grid-column: 1 / -1;
    justify-self: start;
  }

  .hero,
  .intro-band,
  .split-band,
  .product-story,
  .proof-band,
  .detail-row,
  .about-post {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 46px;
  }

  .story-rail {
    position: static;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
    padding: 0;
    border-left: 0;
  }

  .story-rail a {
    padding: 10px;
    border: 1px solid rgba(40, 185, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
    text-align: center;
  }

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

  .screenshot-stage {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .phone-frame {
    width: min(420px, 100%);
  }

  .callout {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .callout::before,
  .pin,
  .screenshot-brand {
    display: none;
  }

  .feature-grid,
  .stat-grid,
  .proof-grid,
  .plan-comparison,
  .blog-list,
  .about-layout,
  .tool-grid,
  .related-grid,
  .program-roadmap ol {
    grid-template-columns: repeat(2, 1fr);
  }

  .calculator-example-grid,
  .tool-workspace,
  .workout-overview,
  .seo-content-grid,
  .persona-playbook,
  .program-app-builder,
  .exercise-guide-header,
  .exercise-guide-copy,
  .exercise-cue-list {
    grid-template-columns: 1fr;
  }

  .workout-guidance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .evidence-grid,
  .exercise-summary-grid,
  .feature-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workflow-list li {
    grid-template-columns: 40px minmax(0, 1fr) minmax(180px, 220px);
  }
}

@media (max-width: 640px) {
  .hero,
  .section,
  .page-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .rm-free-calculator {
    padding: 0 12px 60px;
  }

  .rm-app-calculator-shell {
    border-radius: 24px;
  }

  .rm-app-calculator-topbar {
    padding: 16px 18px;
  }

  .rm-app-calculator {
    padding: 12px;
  }

  .rm-app-lift-picker {
    gap: 5px;
    margin-bottom: 12px;
  }

  .rm-app-lift-picker span {
    min-height: 40px;
    padding: 0 4px;
    border-radius: 10px;
    font-size: 0.78rem;
  }

  .rm-app-set-card {
    padding: 18px 12px;
    border-radius: 22px;
  }

  .rm-app-set-heading {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
  }

  .rm-app-unit-toggle span {
    min-width: 42px;
  }

  .rm-app-input-grid,
  .rm-app-calculator-actions {
    grid-template-columns: 1fr;
  }

  .rm-app-visualizer {
    padding: 14px 6px;
    border-radius: 18px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 3rem;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 10.5vw, 2.65rem);
  }

  .product-hero::before {
    inset: 18px;
  }

  .blog-post-layout {
    padding-top: 10px;
  }

  .brand-mark {
    width: 190px;
    height: 74px;
  }

  .hero {
    min-height: auto;
  }

  .hero-signals,
  .story-rail,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .hero-signals {
    max-width: none;
  }

  .workflow-list li {
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: start;
    min-height: 0;
    padding: 18px;
  }

  .workflow-shot {
    grid-column: 2;
    width: min(100%, 280px);
    justify-self: start;
    margin-top: 10px;
    transform: none !important;
  }

  .workflow-list li:nth-child(3) .workflow-shot,
  .workflow-list li:nth-child(4) .workflow-shot,
  .workflow-list li:nth-child(5) .workflow-shot {
    width: min(100%, 260px);
    max-width: none;
  }

  .hero-visual {
    min-width: 0;
  }

  .hero-app-static-link {
    min-height: 520px;
    height: min(68vh, 580px);
  }

  .app-window {
    border-radius: 20px;
    padding: 12px;
  }

  .calculator-card {
    padding: 18px;
  }

  .calc-header strong {
    font-size: 2.4rem;
  }

  .plate-list,
  .mini-panels,
  .feature-grid,
  .stat-grid,
  .proof-grid,
  .plan-comparison,
  .pricing-grid,
  .copy-columns,
  .blog-list,
  .about-layout,
  .tool-grid,
  .related-grid,
  .program-roadmap ol,
  .program-app-builder,
  .persona-playbook,
  .rm-result-grid,
  .tool-form-grid,
  .workout-guidance-grid,
  .evidence-grid,
  .exercise-summary-grid,
  .exercise-guide-header,
  .exercise-guide-copy,
  .exercise-cue-list,
  .exercise-meta-list,
  .feature-proof-grid {
    grid-template-columns: 1fr;
  }

  .rm-barbell-frame {
    grid-template-columns: minmax(0, 1fr) minmax(88px, 0.9fr) minmax(0, 1fr);
    min-height: 180px;
    padding: 12px 2px;
  }

  .rm-plate-stack {
    gap: 2px;
  }

  .rm-plate {
    max-width: 24px;
    border-width: 3px;
    font-size: 0.7rem;
  }

  .rm-result-grid div:nth-child(3) {
    grid-column: auto;
  }

  .barbell {
    grid-template-columns: 17px 17px 13px 8px 1fr 8px 13px 17px 17px;
    min-height: 96px;
  }

  .plate {
    height: 72px;
  }

  .plate-gold {
    height: 56px;
  }

  .site-footer {
    flex-direction: column;
  }

  .archive-year li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* RackMath homepage — luminous performance system */
.home-page {
  --rm-bg: #06090f;
  --rm-bg-deep: #03060a;
  --rm-surface: #0b111b;
  --rm-surface-raised: #111a27;
  --rm-surface-soft: #0d1622;
  --rm-border: rgba(255, 255, 255, 0.1);
  --rm-border-bright: rgba(92, 203, 255, 0.27);
  --rm-text: #f5f8fc;
  --rm-muted: #9aa9b9;
  --rm-cyan: #37c7ff;
  --rm-blue: #268fff;
  --rm-lime: #aafc7a;
  --rm-pink: #ff4da6;
  --rm-radius: 24px;
  color-scheme: dark;
  color: var(--rm-text);
  background:
    radial-gradient(circle at 78% 5%, rgba(28, 128, 255, 0.13), transparent 27rem),
    radial-gradient(circle at 95% 22%, rgba(90, 255, 183, 0.06), transparent 24rem),
    var(--rm-bg);
  font-family: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

.home-page * {
  scrollbar-color: rgba(55, 199, 255, 0.4) var(--rm-bg);
}

.home-page ::selection {
  color: #06101a;
  background: var(--rm-lime);
}

.home-page p {
  color: var(--rm-muted);
}

.home-page a,
.home-page button,
.home-page summary {
  -webkit-tap-highlight-color: transparent;
}

.home-page a:focus-visible,
.home-page button:focus-visible,
.home-page summary:focus-visible {
  outline: 3px solid var(--rm-lime);
  outline-offset: 4px;
}

.rm-skip-link {
  position: fixed;
  top: 14px;
  left: 16px;
  z-index: 200;
  padding: 11px 16px;
  color: #071019;
  background: var(--rm-lime);
  border-radius: 10px;
  font-size: 0.86rem;
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

.home-page .site-header {
  position: sticky;
  top: 14px;
  width: calc(100% - 32px);
  max-width: 1240px;
  min-height: 70px;
  margin: 14px auto 0;
  padding: 8px 10px 8px 18px;
  gap: 30px;
  background: rgba(7, 12, 19, 0.76);
  border: 1px solid var(--rm-border);
  border-radius: 18px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(22px) saturate(140%);
}

.home-page .site-header.is-scrolled {
  background: rgba(7, 12, 19, 0.94);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
}

.home-page .brand-mark {
  width: 164px;
  height: 52px;
  object-fit: contain;
}

.home-page .site-nav {
  gap: 27px;
  color: #c4ced9;
  font-size: 0.78rem;
  font-weight: 700;
}

.home-page .site-nav a {
  position: relative;
  padding: 11px 0;
}

.home-page .site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--rm-cyan);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.home-page .site-nav a:hover {
  color: var(--rm-text);
}

.home-page .site-nav a:hover::after,
.home-page .site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.home-page .header-cta,
.home-page .button {
  min-height: 48px;
  padding: 0 21px;
  gap: 11px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.home-page .header-cta {
  min-height: 50px;
  color: #041018;
  background: var(--rm-lime);
  box-shadow: 0 12px 30px rgba(170, 252, 122, 0.14);
}

.home-page .header-cta span,
.home-page .button span {
  font-size: 1.05rem;
  transition: transform 180ms ease;
}

.home-page .header-cta:hover,
.home-page .button:hover {
  transform: translateY(-2px);
}

.home-page .header-cta:hover {
  box-shadow: 0 14px 36px rgba(170, 252, 122, 0.22);
}

.home-page .header-cta:hover span,
.home-page .button:hover span,
.home-page .rm-inline-link:hover span,
.home-page .rm-bento-card > a:hover span,
.home-page .rm-bento-copy > a:hover span {
  transform: translateX(3px);
}

.home-page .button.primary {
  color: #041018;
  background: var(--rm-lime);
  border-color: var(--rm-lime);
  box-shadow: 0 16px 40px rgba(170, 252, 122, 0.14);
}

.home-page .button.primary:hover {
  box-shadow: 0 18px 44px rgba(170, 252, 122, 0.24);
}

.home-page .button.secondary {
  color: var(--rm-text);
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.15);
}

.home-page .button.secondary:hover {
  background: rgba(255, 255, 255, 0.085);
  border-color: rgba(255, 255, 255, 0.25);
}

.home-page .nav-toggle {
  color: var(--rm-text);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--rm-border);
}

.home-page .nav-toggle span {
  background: var(--rm-text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.home-page .site-header.is-open .nav-toggle span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.home-page .site-header.is-open .nav-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.home-page .hero {
  position: relative;
  width: min(100%, 1280px);
  min-height: min(900px, calc(100vh - 98px));
  padding: 76px 34px 80px;
  overflow: clip;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 52px;
}

.home-page .product-hero::before {
  inset: auto;
  background: none;
}

.home-page .hero-copy {
  position: relative;
  z-index: 4;
  max-width: 640px;
}

.home-page .eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 19px;
  color: var(--rm-cyan);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.rm-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rm-lime);
  box-shadow: 0 0 0 5px rgba(170, 252, 122, 0.1), 0 0 18px rgba(170, 252, 122, 0.55);
}

.home-page .hero h1,
.home-page .section h2,
.home-page .final-cta h2 {
  color: var(--rm-text);
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  letter-spacing: -0.06em;
}

.home-page .hero h1 {
  max-width: 660px;
  margin-bottom: 27px;
  font-size: clamp(4rem, 6vw, 6.2rem);
  line-height: 0.9;
}

.home-page .hero h1 > .rm-kinetic-line {
  display: block;
  min-height: 1em;
  margin-top: 0;
  font-size: 0.84em;
  line-height: 1;
  white-space: nowrap;
}

.rm-kinetic-word {
  display: inline;
}

.rm-kinetic-cursor {
  display: inline-block;
  width: 0.055em;
  height: 0.78em;
  margin-left: 0.07em;
  border-radius: 999px;
  vertical-align: -0.03em;
  background: var(--rm-lime);
  box-shadow: 0 0 16px rgba(170, 252, 122, 0.42);
  opacity: 0;
}

.home-page .hero h1.is-rm-typing .rm-kinetic-cursor {
  opacity: 1;
}

.rm-kinetic-toggle {
  display: none;
}

.has-rm-motion .home-page .rm-kinetic-toggle {
  display: inline-flex;
  min-height: 44px;
  margin-top: 5px;
  padding: 0;
  align-items: center;
  gap: 8px;
  border: 0;
  color: #728497;
  background: transparent;
  font: inherit;
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
}

.rm-kinetic-toggle-icon {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: var(--rm-lime);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.67rem;
  letter-spacing: -0.08em;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.rm-kinetic-toggle:hover {
  color: #aebdcb;
}

.rm-kinetic-toggle:hover .rm-kinetic-toggle-icon {
  border-color: rgba(170, 252, 122, 0.34);
  background: rgba(170, 252, 122, 0.08);
}

.has-rm-hero-mask .home-page .hero h1[data-rm-kinetic-heading] {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
}

.home-page .hero h1 .rm-text-mask-word {
  overflow: visible;
  padding: 0 0.08em 0.26em;
  margin: 0 -0.08em -0.26em;
}

.has-rm-hero-mask .home-page .hero h1 .rm-text-mask-inner {
  opacity: 0;
  transform: translate3d(0, 0.18em, 0);
}

.home-page .hero h1 > .rm-gradient-text {
  white-space: nowrap;
  padding-bottom: 0.26em;
  margin-bottom: -0.26em;
}

.home-page .hero h1 > .rm-gradient-text .rm-text-mask-inner {
  padding: 0 0.08em 0.26em;
  margin: 0 -0.08em -0.26em;
}

.rm-gradient-text {
  color: transparent;
  background: linear-gradient(92deg, #f5f8fc 0%, #8edfff 47%, #aafc7a 108%);
  background-clip: text;
  -webkit-background-clip: text;
}

.rm-gradient-text .rm-text-mask-inner {
  color: transparent;
  background: linear-gradient(92deg, #f5f8fc 0%, #8edfff 47%, #aafc7a 108%);
  background-clip: text;
  -webkit-background-clip: text;
}

.home-page .hero-text {
  max-width: 590px;
  margin-bottom: 0;
  color: #adbbc9;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.7;
}

.home-page .hero-actions {
  gap: 11px;
  margin-top: 31px;
}

.rm-hero-note {
  margin: 18px 0 0;
  color: #6f8194 !important;
  font-size: 0.77rem;
  font-weight: 600;
}

.rm-hero-note span {
  margin: 0 6px;
  color: #728497;
}

.rm-hero-stage {
  min-height: 690px;
  isolation: isolate;
  display: grid;
  place-items: center;
}

.home-page .rm-hero-stage::before {
  content: none;
}

.rm-ambient-orb {
  position: absolute;
  z-index: -2;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 44%, rgba(42, 145, 255, 0.42), rgba(20, 112, 231, 0.15) 32%, transparent 67%),
    radial-gradient(circle at 69% 70%, rgba(111, 255, 172, 0.18), transparent 31%);
  filter: blur(13px);
  opacity: 0.88;
}

.rm-device {
  position: relative;
  z-index: 2;
  width: 342px;
  height: 674px;
  min-height: 0;
  padding: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 43px;
  background: linear-gradient(145deg, #263343, #080b10 23%, #141b24 78%, #2b3947);
  box-shadow:
    0 55px 95px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(55, 199, 255, 0.08),
    0 0 90px rgba(34, 139, 255, 0.14);
  transform: rotate(2.2deg);
}

.rm-device-chrome {
  position: absolute;
  top: 15px;
  left: 50%;
  z-index: 3;
  width: 95px;
  height: 23px;
  border-radius: 999px;
  background: #030508;
  transform: translateX(-50%);
}

.rm-device-chrome span {
  position: absolute;
  top: 8px;
  right: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #172b42;
}

.rm-device-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 35px;
  background: #0e0e0f;
}

.rm-device-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.rm-status-card {
  position: absolute;
  z-index: 4;
  display: grid;
  padding: 17px 19px;
  color: var(--rm-text);
  background: rgba(12, 21, 33, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 17px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px) saturate(150%);
}

.rm-status-card strong,
.rm-status-card span {
  display: block;
}

.rm-status-card > strong {
  margin: 5px 0 2px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.25rem;
}

.rm-status-card > span:last-child,
.rm-status-card--progress span {
  color: #91a2b4;
  font-size: 0.71rem;
}

.rm-card-label {
  color: var(--rm-cyan) !important;
  font-size: 0.64rem !important;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.rm-status-card--target {
  top: 82px;
  left: -2px;
  width: 164px;
}

.rm-status-card--plates {
  right: -10px;
  bottom: 142px;
  width: 170px;
}

.rm-status-card--plates > strong {
  margin-top: 10px;
}

.rm-plate-tokens {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
}

.rm-plate-tokens span {
  display: grid;
  width: 38px;
  height: 48px;
  place-items: center;
  color: #08111b !important;
  border-radius: 6px;
  background: var(--rm-cyan);
  font-size: 0.73rem !important;
  font-weight: 900;
}

.rm-plate-tokens span + span {
  width: 29px;
  height: 40px;
  background: #d8f5ff;
}

.rm-status-card--progress {
  left: 16px;
  bottom: 69px;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  width: 195px;
}

.rm-status-card--progress strong,
.rm-status-card--progress span {
  display: block;
}

.rm-status-card--progress strong {
  margin-bottom: 3px;
  font-size: 0.82rem;
}

.rm-pulse-icon {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(170, 252, 122, 0.14);
}

.rm-pulse-icon::before,
.rm-pulse-icon::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.rm-pulse-icon::before {
  inset: 9px;
  background: var(--rm-lime);
}

.rm-pulse-icon::after {
  inset: 4px;
  border: 1px solid rgba(170, 252, 122, 0.25);
}

.rm-signal-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: calc(100% - 48px);
  max-width: 1212px;
  margin: 0 auto;
  border-top: 1px solid var(--rm-border);
  border-bottom: 1px solid var(--rm-border);
}

.rm-signal-strip div {
  display: flex;
  align-items: center;
  min-height: 77px;
  padding: 0 23px;
  gap: 14px;
  border-right: 1px solid var(--rm-border);
}

.rm-signal-strip div:last-child {
  border-right: 0;
}

.rm-signal-strip span {
  color: #7b8da0;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.rm-signal-strip strong {
  color: #bdc9d5;
  font-size: 0.78rem;
}

.home-page .section {
  max-width: 1240px;
  padding: 130px 28px;
}

.home-page .section h2,
.home-page .final-cta h2 {
  margin-bottom: 21px;
  font-size: clamp(3.3rem, 5vw, 5.3rem);
  line-height: 0.98;
}

.home-page .section-heading {
  max-width: none;
  margin-bottom: 47px;
}

.home-page .section-copy p:not(.eyebrow),
.rm-heading-split > p,
.rm-flow-heading > p:not(.eyebrow) {
  font-size: 1.02rem;
  line-height: 1.75;
}

.rm-dialogue-section {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 96px;
}

.rm-dialogue-section::before {
  content: "";
  position: absolute;
  top: 18%;
  right: 4%;
  z-index: -1;
  width: 530px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 133, 255, 0.18), transparent 68%);
  filter: blur(20px);
}

.rm-inline-link,
.rm-bento-card > a,
.rm-bento-copy > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--rm-cyan);
  font-size: 0.82rem;
  font-weight: 800;
}

.rm-inline-link {
  margin-top: 10px;
}

.rm-inline-link span,
.rm-bento-card > a span,
.rm-bento-copy > a span {
  display: inline-block;
  transition: transform 180ms ease;
}

.rm-calculation-dialogue {
  display: grid;
  gap: 22px;
  min-height: 510px;
  padding: 46px;
  border: 1px solid var(--rm-border);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(51, 156, 255, 0.09), transparent 31%),
    rgba(9, 16, 26, 0.72);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.29);
}

.rm-calculation-image {
  min-height: 0;
  margin: 0;
  padding: 14px;
  overflow: hidden;
}

.rm-calculation-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.rm-chat-row {
  display: grid;
  gap: 9px;
}

.rm-chat-person {
  color: #6f8194;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.rm-chat-person i {
  display: inline-grid;
  width: 17px;
  height: 17px;
  margin-right: 5px;
  place-items: center;
  color: #06111a;
  border-radius: 5px;
  background: var(--rm-cyan);
  font-style: normal;
}

.rm-chat-row--user {
  justify-items: end;
}

.rm-chat-row--user p {
  margin: 0;
  padding: 14px 18px;
  color: #e4eaf0;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 17px 17px 5px 17px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
}

.rm-answer-card {
  padding: 26px 28px;
  border: 1px solid rgba(74, 197, 255, 0.22);
  border-radius: 20px 20px 20px 5px;
  background: linear-gradient(145deg, rgba(21, 40, 60, 0.95), rgba(10, 17, 27, 0.98));
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.25);
}

.rm-answer-topline,
.rm-answer-legend {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rm-answer-topline span {
  color: #92a3b5;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.rm-answer-topline strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.65rem;
}

.rm-mini-barbell {
  display: grid;
  grid-template-columns: 9px 25px 18px 1fr 18px 25px 9px;
  align-items: center;
  max-width: 390px;
  min-height: 110px;
  margin: 16px auto;
}

.rm-mini-barbell > i {
  height: 12px;
  background: linear-gradient(180deg, #cad3dc, #526171 52%, #adb9c5);
  box-shadow: 0 0 22px rgba(55, 199, 255, 0.18);
}

.rm-collar {
  height: 47px;
  border-radius: 3px;
  background: #4c5968;
}

.rm-mini-plate {
  border: 2px solid rgba(4, 11, 17, 0.7);
  border-radius: 5px;
}

.rm-mini-plate--45 {
  height: 95px;
  background: var(--rm-cyan);
}

.rm-mini-plate--25 {
  height: 76px;
  background: #e0f6ff;
}

.rm-answer-legend {
  justify-content: flex-start;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--rm-border);
  color: #91a2b4;
  font-size: 0.71rem;
}

.rm-answer-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.rm-answer-legend i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.rm-legend-45 {
  background: var(--rm-cyan);
}

.rm-legend-25 {
  background: #e0f6ff;
}

.rm-answer-legend strong {
  margin-left: auto;
  color: var(--rm-text);
  font-size: 0.8rem;
}

.rm-heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: 70px;
}

.rm-heading-split h2 {
  max-width: 760px;
  margin-bottom: 0 !important;
}

.rm-heading-split > p {
  max-width: 370px;
  margin: 0 0 7px;
}

.rm-bento-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.rm-bento-card {
  position: relative;
  min-height: 360px;
  padding: 31px;
  overflow: hidden;
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius);
  background: var(--rm-surface);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.15);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.rm-bento-card:hover {
  border-color: rgba(55, 199, 255, 0.25);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.26);
  transform: translateY(-4px);
}

.rm-bento-card h3 {
  max-width: 430px;
  margin: 12px 0 13px;
  color: var(--rm-text);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.65rem, 2.3vw, 2.3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.rm-bento-card p {
  max-width: 390px;
  margin-bottom: 22px;
  font-size: 0.9rem;
  line-height: 1.65;
}

.rm-card-kicker {
  color: var(--rm-cyan);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rm-bento-card--workout {
  grid-column: span 7;
  min-height: 600px;
  background:
    radial-gradient(circle at 77% 50%, rgba(29, 136, 255, 0.25), transparent 34%),
    linear-gradient(150deg, #111b29, #080d15 70%);
}

.rm-bento-card--workout .rm-bento-copy {
  position: relative;
  z-index: 2;
  max-width: 54%;
}

.rm-bento-phone {
  position: absolute;
  top: 50%;
  right: 6%;
  bottom: auto;
  width: 225px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  background: #192431;
  box-shadow: 0 34px 65px rgba(0, 0, 0, 0.55);
  transform: translateY(-50%) rotate(2deg);
}

.rm-bento-phone img {
  display: block;
  width: 100%;
  border-radius: 27px;
}

.rm-bento-card--metrics {
  grid-column: span 5;
  background:
    radial-gradient(circle at 85% 12%, rgba(170, 252, 122, 0.12), transparent 35%),
    var(--rm-surface);
}

.rm-volume-screen {
  width: min(100%, 190px);
  margin: 24px auto 18px;
  padding: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 27px;
  background: #070a0e;
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.45);
}

.rm-volume-screen img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 21px;
}

.rm-bento-card--builder {
  grid-column: span 5;
  background:
    radial-gradient(circle at 10% 100%, rgba(255, 77, 166, 0.09), transparent 40%),
    var(--rm-surface);
}

.rm-import-screens {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
  gap: 12px;
  width: min(100%, 390px);
  margin: 22px auto 18px;
}

.rm-import-screen {
  margin: 0;
  padding: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 25px;
  background: #070a0e;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.rm-import-screen:first-child {
  transform: rotate(-1deg);
}

.rm-import-screen:last-child {
  transform: rotate(1deg);
}

.rm-import-screen img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 19px;
}

.rm-bento-card--program {
  grid-column: span 7;
  min-height: 600px;
  background:
    radial-gradient(circle at 72% 30%, rgba(55, 199, 255, 0.2), transparent 38%),
    linear-gradient(145deg, #111a27, #080e16 72%);
}

.rm-bento-card--program .rm-bento-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.rm-program-gallery {
  display: flex;
  gap: 13px;
  margin: 27px -7px 0;
  padding: 7px 7px 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 7px;
  scroll-snap-type: inline mandatory;
  scrollbar-color: rgba(55, 199, 255, 0.42) rgba(255, 255, 255, 0.06);
  scrollbar-width: thin;
  list-style: none;
}

.rm-program-gallery:focus-visible {
  outline: 2px solid var(--rm-cyan);
  outline-offset: 4px;
  border-radius: 16px;
}

.rm-program-gallery::-webkit-scrollbar {
  height: 7px;
}

.rm-program-gallery::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.rm-program-gallery::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(55, 199, 255, 0.42);
}

.rm-program-screen {
  flex: 0 0 156px;
  margin: 0;
  padding: 5px 5px 9px;
  scroll-snap-align: start;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 23px;
  background: #070a0e;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.38);
}

.rm-program-screen img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.rm-program-screen span {
  display: block;
  padding: 9px 5px 2px;
  color: #91a4b8;
  font-size: 0.61rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.rm-flow-section {
  max-width: none !important;
  padding-right: max(28px, calc((100vw - 1184px) / 2)) !important;
  padding-left: max(28px, calc((100vw - 1184px) / 2)) !important;
  background:
    radial-gradient(circle at 50% 30%, rgba(28, 125, 255, 0.1), transparent 37rem),
    linear-gradient(180deg, transparent, rgba(9, 16, 25, 0.75) 18%, rgba(9, 16, 25, 0.75) 82%, transparent);
}

.rm-flow-heading {
  max-width: 720px !important;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.rm-flow-heading .eyebrow {
  justify-content: center;
}

.rm-flow-heading p {
  max-width: 580px;
  margin-right: auto;
  margin-left: auto;
}

.rm-flow-stage {
  position: relative;
}

.rm-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rm-flow-grid li {
  position: relative;
  display: flex;
  min-height: 520px;
  padding: 28px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius);
  background: rgba(9, 16, 25, 0.82);
  transition: transform 220ms ease, border-color 220ms ease;
}

.rm-flow-grid li:hover {
  border-color: rgba(55, 199, 255, 0.24);
  transform: translateY(-4px);
}

.rm-flow-section.is-rm-flow-pinned .rm-flow-grid li:hover {
  transform: none;
}

.rm-flow-number {
  color: var(--rm-lime);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
}

.rm-flow-copy {
  padding: 43px 0 25px;
}

.rm-flow-copy span {
  color: var(--rm-cyan);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rm-flow-copy h3 {
  margin: 10px 0 0;
  color: var(--rm-text);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.5rem;
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.rm-flow-grid figure {
  position: relative;
  width: 72%;
  height: auto;
  margin: auto auto 0;
  padding: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: #182330;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.48);
}

.rm-flow-grid figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.rm-flow-zoom img {
  will-change: transform;
  backface-visibility: hidden;
}

@media (min-width: 961px) and (max-height: 850px) {
  .rm-flow-grid li {
    min-height: clamp(465px, calc(100vh - 112px), 650px);
    padding: 20px;
  }

  .rm-flow-copy {
    padding: 20px 0 16px;
  }

  .rm-flow-copy h3 {
    font-size: 1.25rem;
  }

  .rm-flow-grid figure {
    width: 44%;
  }
}

.rm-pricing-section {
  scroll-margin-top: 110px;
}

.home-page #product,
.home-page #how-it-works {
  scroll-margin-top: 110px;
}

.home-page .pricing-grid.rm-pricing-grid {
  max-width: 940px;
  margin: 0 auto;
  gap: 18px;
}

.home-page .price-card {
  position: relative;
  min-height: 500px;
  padding: 36px;
  color: var(--rm-text);
  border: 1px solid var(--rm-border);
  border-radius: var(--rm-radius);
  background: var(--rm-surface);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.16);
}

.home-page .price-card:hover {
  border-color: rgba(55, 199, 255, 0.25);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.rm-price-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  padding-bottom: 27px;
  border-bottom: 1px solid var(--rm-border);
}

.rm-price-heading .plan {
  grid-column: 1 / -1;
  margin-bottom: 18px;
  color: var(--rm-cyan);
  font-size: 0.69rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-page .price-card .rm-price-heading h3 {
  margin: 0;
  color: var(--rm-text);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 3.8rem;
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.rm-price-heading > span {
  padding-bottom: 4px;
  color: #77899b;
  font-size: 0.72rem;
}

.home-page .price-card > p {
  margin: 25px 0 0;
  color: #9cacbc;
  font-size: 0.89rem;
}

.home-page .price-card ul {
  display: grid;
  gap: 11px;
  margin: 26px 0 32px;
  padding: 0;
  color: #c4cfda;
  font-size: 0.83rem;
  line-height: 1.5;
  list-style: none;
}

.home-page .price-card li {
  position: relative;
  padding-left: 24px;
}

.home-page .price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--rm-lime);
  font-weight: 900;
}

.home-page .featured-price {
  background:
    radial-gradient(circle at 80% 0%, rgba(170, 252, 122, 0.14), transparent 31%),
    linear-gradient(145deg, #121e2b, #090f18 75%);
  border-color: rgba(170, 252, 122, 0.25);
}

.rm-recommended {
  position: absolute;
  top: 20px;
  right: 21px;
  padding: 7px 11px;
  color: #07111a;
  border-radius: 999px;
  background: var(--rm-lime);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.home-page .faq-preview {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  align-items: start;
  gap: 95px;
}

.rm-faq-heading {
  position: sticky;
  top: 130px;
}

.rm-faq-heading h2 {
  font-size: clamp(3rem, 4.6vw, 4.8rem) !important;
}

.home-page .faq-list {
  max-width: none;
  margin: 0;
}

.home-page details {
  margin: 0;
  padding: 0;
  border: 0;
  border-top: 1px solid var(--rm-border);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-page details:last-child {
  border-bottom: 1px solid var(--rm-border);
}

.home-page details:hover {
  border-color: rgba(255, 255, 255, 0.19);
  box-shadow: none;
  transform: none;
}

.home-page summary {
  display: flex;
  align-items: center;
  min-height: 78px;
  justify-content: space-between;
  gap: 20px;
  color: #dbe3eb;
  font-size: 0.94rem;
}

.home-page summary span {
  position: relative;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border: 1px solid var(--rm-border);
  border-radius: 50%;
}

.home-page summary span::before,
.home-page summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1px;
  background: var(--rm-cyan);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.home-page summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.home-page details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.home-page details p {
  max-width: 650px;
  margin: -4px 50px 25px 0;
  color: #92a3b5;
  font-size: 0.86rem;
  line-height: 1.75;
}

.rm-faq-link {
  grid-column: 2;
  margin-top: -64px;
  justify-self: start;
}

.home-page .final-cta {
  position: relative;
  width: calc(100% - 48px);
  max-width: 1184px;
  min-height: 550px;
  margin: 30px auto 0;
  padding: 110px 28px;
  overflow: hidden;
  border: 1px solid var(--rm-border-bright);
  border-radius: 30px;
  background:
    linear-gradient(125deg, rgba(25, 128, 255, 0.1), transparent 40%, rgba(170, 252, 122, 0.05)),
    #09121d;
}

.rm-final-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 760px;
  height: 560px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 45%, rgba(41, 148, 255, 0.34), transparent 44%),
    radial-gradient(circle at 65% 65%, rgba(170, 252, 122, 0.16), transparent 28%);
  filter: blur(25px);
  opacity: 0.7;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.home-page .final-cta > :not(.rm-final-glow) {
  position: relative;
  z-index: 1;
}

.home-page .final-cta .eyebrow {
  justify-content: center;
}

.home-page .final-cta h2 {
  font-size: clamp(4rem, 7.5vw, 7rem);
}

.home-page .final-cta > p:not(.eyebrow) {
  font-size: 1rem;
}

.home-page .final-cta .hero-actions {
  margin-top: 28px;
}

.home-page .site-footer.rm-home-footer {
  display: grid;
  grid-template-columns: minmax(300px, 1.7fr) repeat(3, minmax(110px, 0.55fr));
  max-width: 1184px;
  margin-top: 62px;
  padding: 46px 0 58px;
  gap: 45px;
  border-top: 1px solid var(--rm-border);
}

.rm-footer-brand p {
  max-width: 310px;
  margin: 16px 0 23px;
  color: #738598;
  font-size: 0.8rem;
}

.rm-footer-brand > span {
  color: #7b8da0;
  font-size: 0.68rem;
}

.rm-footer-column {
  display: grid;
  align-content: start;
  gap: 13px;
}

.rm-footer-column strong {
  margin-bottom: 6px;
  color: #d9e2ea;
  font-size: 0.72rem;
}

.rm-footer-column a {
  color: #728497;
  font-size: 0.76rem;
  transition: color 160ms ease;
}

.rm-footer-column a:hover {
  color: var(--rm-cyan);
}

.home-page .scroll-meter {
  height: 2px;
  background: linear-gradient(90deg, var(--rm-blue), var(--rm-cyan), var(--rm-lime));
}

@media (max-width: 1080px) {
  .home-page .site-nav {
    gap: 18px;
  }

  .home-page .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(450px, 1.1fr);
    gap: 25px;
  }

  .rm-status-card--target {
    left: 5px;
  }

  .rm-status-card--plates {
    right: 3px;
  }

  .rm-bento-phone {
    right: 3%;
  }
}

@media (max-width: 960px) {
  .home-page.rm-nav-open {
    overflow: hidden;
  }

  .home-page .site-header {
    top: 8px;
    grid-template-columns: 1fr auto;
    width: calc(100% - 20px);
    margin-top: 8px;
    padding: 7px 8px 7px 15px;
    border-radius: 16px;
  }

  .home-page .brand-mark {
    width: 148px;
    height: 48px;
  }

  .home-page .nav-toggle {
    display: block;
    width: 44px;
    height: 44px;
    justify-self: end;
  }

  .home-page .site-nav,
  .home-page .header-cta {
    display: none;
  }

  .home-page .site-header.is-open {
    max-height: calc(100vh - 16px);
    max-height: calc(100dvh - 16px);
    overflow-y: auto;
    background: rgba(7, 12, 19, 0.98);
  }

  .home-page .site-header.is-open .site-nav {
    display: grid;
    grid-column: 1 / -1;
    gap: 2px;
    padding: 15px 7px 6px;
    border-top: 1px solid var(--rm-border);
  }

  .home-page .site-header.is-open .site-nav a {
    min-height: 44px;
    padding: 12px 6px;
    color: #cbd5df;
  }

  .home-page .site-header.is-open .site-nav a::after {
    display: none;
  }

  .home-page .site-header.is-open .header-cta {
    display: inline-flex;
    grid-column: 1 / -1;
    width: calc(100% - 14px);
    margin: 3px 7px 7px;
  }

  .home-page .hero {
    min-height: auto;
    padding: 90px 28px 80px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .home-page .hero-copy {
    max-width: 710px;
  }

  .home-page .hero h1 {
    max-width: 720px;
  }

  .rm-hero-stage {
    width: min(100%, 650px);
    min-height: 690px;
    margin: 0 auto;
  }

  .rm-ambient-orb {
    width: 400px;
    height: 400px;
  }

  .rm-status-card--target {
    left: 6%;
  }

  .rm-status-card--plates {
    right: 5%;
  }

  .rm-status-card--progress {
    left: 8%;
  }

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

  .rm-signal-strip div:nth-child(2) {
    border-right: 0;
  }

  .rm-signal-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--rm-border);
  }

  .home-page .section {
    padding-top: 105px;
    padding-bottom: 105px;
  }

  .rm-dialogue-section,
  .home-page .faq-preview {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .rm-dialogue-section .section-copy {
    max-width: 670px;
  }

  .rm-heading-split {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .rm-heading-split > p {
    max-width: 610px;
  }

  .rm-bento-card--workout,
  .rm-bento-card--program {
    grid-column: span 12;
  }

  .rm-bento-card--metrics,
  .rm-bento-card--builder {
    grid-column: span 6;
  }

  .rm-flow-grid {
    grid-template-columns: 1fr;
  }

  .rm-flow-grid li {
    min-height: 0;
  }

  .rm-flow-grid figure {
    width: min(100%, 310px);
    height: auto;
    margin-right: auto;
    margin-left: auto;
  }

  .rm-faq-heading {
    position: static;
    margin-bottom: 0 !important;
  }

  .rm-faq-link {
    grid-column: 1;
    margin-top: -25px;
  }

  .home-page .site-footer.rm-home-footer {
    width: calc(100% - 48px);
    grid-template-columns: 1.5fr repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .home-page .hero,
  .home-page .section {
    padding-right: 19px;
    padding-left: 19px;
  }

  .home-page .hero {
    padding-top: 72px;
    padding-bottom: 66px;
  }

  .home-page .hero h1 {
    font-size: clamp(2.45rem, 12vw, 4.2rem);
    line-height: 0.92;
  }

  .home-page .hero-text {
    font-size: 1rem;
    line-height: 1.65;
  }

  .home-page .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .rm-hero-note {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .rm-hero-note span {
    margin: 0;
  }

  .rm-hero-stage {
    min-height: 560px;
    transform: scale(0.88);
    transform-origin: center top;
    margin-bottom: -68px;
  }

  .rm-device {
    width: 304px;
    height: 600px;
  }

  .rm-status-card--target {
    top: 48px;
    left: -4px;
  }

  .rm-status-card--plates {
    right: -8px;
    bottom: 117px;
  }

  .rm-status-card--progress {
    bottom: 44px;
    left: -2px;
  }

  .rm-signal-strip {
    width: calc(100% - 38px);
    grid-template-columns: 1fr;
  }

  .rm-signal-strip div {
    min-height: 62px;
    border-right: 0;
    border-bottom: 1px solid var(--rm-border);
  }

  .rm-signal-strip div:last-child {
    border-bottom: 0;
  }

  .home-page .section {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .home-page .section h2 {
    font-size: clamp(2.7rem, 13vw, 3.6rem);
    line-height: 1;
  }

  .rm-dialogue-section {
    gap: 38px;
  }

  .rm-calculation-dialogue {
    min-height: 440px;
    padding: 22px;
    border-radius: 22px;
  }

  .rm-calculation-image {
    min-height: 0;
    padding: 9px;
  }

  .rm-calculation-image img {
    border-radius: 16px;
  }

  .rm-answer-card {
    padding: 20px;
  }

  .rm-answer-legend {
    flex-wrap: wrap;
    gap: 10px;
  }

  .rm-answer-legend strong {
    width: 100%;
    margin-left: 0;
  }

  .rm-bento-grid {
    grid-template-columns: 1fr;
  }

  .rm-bento-card--workout,
  .rm-bento-card--metrics,
  .rm-bento-card--builder,
  .rm-bento-card--program {
    grid-column: auto;
  }

  .rm-bento-card {
    padding: 25px;
    border-radius: 20px;
  }

  .rm-bento-card--workout {
    min-height: 0;
  }

  .rm-bento-card--program {
    min-height: 0;
  }

  .rm-bento-card--workout .rm-bento-copy,
  .rm-bento-card--program .rm-bento-copy {
    max-width: 100%;
  }

  .rm-bento-phone {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: min(100%, 230px);
    margin: 28px auto 0;
    transform: rotate(1deg);
  }

  .rm-program-gallery {
    margin-right: -10px;
    margin-left: -10px;
  }

  .rm-program-screen {
    flex-basis: 172px;
  }

  .rm-flow-section {
    padding-right: 19px !important;
    padding-left: 19px !important;
  }

  .rm-flow-grid li {
    min-height: 0;
    padding: 24px;
    border-radius: 20px;
  }

  .rm-flow-grid figure {
    width: min(100%, 280px);
  }

  .home-page .pricing-grid.rm-pricing-grid {
    grid-template-columns: 1fr;
  }

  .home-page .price-card {
    min-height: 470px;
    padding: 28px;
    border-radius: 20px;
  }

  .home-page .price-card .rm-price-heading h3 {
    font-size: 3.3rem;
  }

  .home-page summary {
    min-height: 72px;
    font-size: 0.86rem;
  }

  .home-page .final-cta {
    width: calc(100% - 24px);
    min-height: 500px;
    padding: 88px 18px;
    border-radius: 22px;
  }

  .home-page .final-cta h2 {
    font-size: clamp(3.4rem, 17vw, 4.8rem);
  }

  .rm-final-glow {
    width: 500px;
    height: 460px;
  }

  .home-page .site-footer.rm-home-footer {
    width: calc(100% - 38px);
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }

  .rm-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 360px) {
  .rm-hero-stage {
    margin-bottom: -112px;
    transform: scale(0.8);
  }
}

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

  .home-page *,
  .home-page *::before,
  .home-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .home-page .rm-bento-card:hover,
  .home-page .rm-flow-grid li:hover,
  .home-page .button:hover,
  .home-page .header-cta:hover {
    transform: none;
  }

  .home-page .rm-flow-zoom img {
    transform: none !important;
  }

  .home-page .rm-kinetic-cursor {
    display: none;
  }

  .home-page .rm-kinetic-toggle {
    display: none !important;
  }
}

/* Shared product shell for interior pages */
body:not(.home-page) .site-header {
  top: 10px;
  width: calc(100% - 24px);
  max-width: 1280px;
  min-height: 70px;
  margin: 10px auto 0;
  padding: 8px 11px 8px 18px;
  gap: 22px;
  color: #f5f8fc;
  background: rgba(7, 12, 19, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  box-shadow: 0 18px 55px rgba(16, 20, 24, 0.16);
  backdrop-filter: blur(20px) saturate(135%);
}

body:not(.home-page) .site-header.is-scrolled {
  background: rgba(7, 12, 19, 0.98);
  box-shadow: 0 20px 58px rgba(4, 8, 13, 0.28);
}

body:not(.home-page) .site-header .brand-mark {
  width: 158px;
  height: 52px;
}

body:not(.home-page) .site-header .site-nav {
  gap: 14px;
  color: #c6d0db;
  font-size: 0.72rem;
}

body:not(.home-page) .site-header .site-nav a:hover,
body:not(.home-page) .site-header .site-nav a[aria-current="page"],
body:not(.home-page) .site-header .nav-dropdown[aria-current="page"] .nav-dropdown-trigger,
body:not(.home-page) .site-header .nav-dropdown-trigger:hover {
  color: #55d0ff;
}

body:not(.home-page) .site-header .nav-dropdown-menu {
  background: rgba(10, 17, 27, 0.985);
  border-color: rgba(255, 255, 255, 0.11);
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.4);
}

body:not(.home-page) .site-header .nav-dropdown-menu a {
  color: #bac6d2;
}

body:not(.home-page) .site-header .nav-dropdown-menu a:hover,
body:not(.home-page) .site-header .nav-dropdown-menu a:focus {
  color: #f5f8fc;
  background: rgba(55, 199, 255, 0.1);
}

body:not(.home-page) .site-header .header-cta {
  min-height: 50px;
  padding: 0 19px;
  color: #061019;
  border-radius: 13px;
  background: #aafc7a;
  box-shadow: 0 12px 28px rgba(170, 252, 122, 0.16);
}

body:not(.home-page) .site-header .nav-toggle {
  color: #f5f8fc;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

body:not(.home-page) .site-header .nav-toggle span {
  background: #f5f8fc;
}

body:not(.home-page) .site-footer {
  width: calc(100% - 32px);
  max-width: 1180px;
  margin: 70px auto 16px;
  padding: 36px;
  color: #f5f8fc;
  background: #09121d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 0 22px 60px rgba(16, 20, 24, 0.14);
}

body:not(.home-page) .site-footer .brand-mark {
  width: 158px;
  height: 52px;
}

body:not(.home-page) .site-footer p {
  max-width: 360px;
  color: #8fa0b1;
}

body:not(.home-page) .site-footer nav {
  color: #aab7c5;
}

body:not(.home-page) .site-footer nav a:hover {
  color: #55d0ff;
}

body:not(.home-page) a:focus-visible,
body:not(.home-page) button:focus-visible,
body:not(.home-page) summary:focus-visible {
  outline: 3px solid #55d0ff;
  outline-offset: 3px;
}

@media (max-width: 1120px) {
  body:not(.home-page) .site-header {
    grid-template-columns: 1fr auto;
    max-height: calc(100vh - 20px);
    max-height: calc(100dvh - 20px);
    overflow-y: auto;
  }

  body:not(.home-page) .site-header .nav-toggle {
    display: block;
    justify-self: end;
  }

  body:not(.home-page) .site-header .site-nav,
  body:not(.home-page) .site-header .header-cta {
    display: none;
  }

  body:not(.home-page) .site-header.is-open .site-nav {
    display: grid;
    grid-column: 1 / -1;
    justify-self: stretch;
    gap: 5px;
    padding: 15px 6px 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  body:not(.home-page) .site-header.is-open .nav-dropdown {
    display: grid;
  }

  body:not(.home-page) .site-header.is-open .nav-dropdown-trigger {
    min-height: 44px;
    justify-self: start;
  }

  body:not(.home-page) .site-header.is-open .nav-dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    max-height: none;
    padding: 6px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  body:not(.home-page) .site-header.is-open .nav-dropdown.is-open .nav-dropdown-menu,
  body:not(.home-page) .site-header.is-open .nav-dropdown:focus-within .nav-dropdown-menu {
    display: grid;
  }

  body:not(.home-page) .site-header.is-open .header-cta {
    display: inline-flex;
    grid-column: 1 / -1;
    width: calc(100% - 12px);
    margin: 3px 6px 7px;
  }
}

@media (max-width: 640px) {
  body:not(.home-page) .site-header {
    top: 7px;
    width: calc(100% - 16px);
    margin-top: 7px;
    padding: 7px 8px 7px 14px;
    border-radius: 16px;
  }

  body:not(.home-page) .site-header .brand-mark {
    width: 145px;
    height: 48px;
  }

  body:not(.home-page) .site-footer {
    width: calc(100% - 24px);
    padding: 27px 22px;
    border-radius: 20px;
  }
}
