:root {
  color-scheme: dark;
  --bg: #030405;
  --navy: #031926;
  --deep-blue: #052f55;
  --blue: #168dff;
  --cyan: #18ead6;
  --cyan-strong: #00d2ff;
  --gold: #f4d82f;
  --ink: #f7f4ec;
  --muted: rgba(247, 244, 236, 0.68);
  --quiet: rgba(247, 244, 236, 0.48);
  --line: rgba(247, 244, 236, 0.16);
  --line-strong: rgba(247, 244, 236, 0.32);
  --font-body: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-nav: "Bahnschrift", "Segoe UI Variable Text", "Segoe UI", sans-serif;
  --max: 1370px;
  --pad: clamp(20px, 4vw, 52px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  opacity: 0.12;
  background:
    linear-gradient(90deg, rgba(24, 234, 214, 0.08), transparent 24%, transparent 76%, rgba(244, 216, 47, 0.06)),
    radial-gradient(circle at 18% 18%, rgba(22, 141, 255, 0.18), transparent 24%),
    radial-gradient(circle at 80% 10%, rgba(24, 234, 214, 0.11), transparent 22%);
}

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

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

.site-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 16%, rgba(24, 234, 214, 0.09), transparent 24%),
    radial-gradient(circle at 82% 4%, rgba(244, 216, 47, 0.07), transparent 18%),
    linear-gradient(135deg, #031521 0%, #041018 42%, #030405 100%);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
  padding: 16px var(--pad);
  border-bottom: 1px solid transparent;
  background:
    linear-gradient(180deg, rgba(3, 8, 12, 0.72), rgba(3, 8, 12, 0.18) 82%, rgba(3, 8, 12, 0));
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  backdrop-filter: blur(16px) saturate(1.15);
  transition: height 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  height: 70px;
  border-bottom-color: rgba(120, 231, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(5, 10, 15, 0.72), rgba(5, 10, 15, 0.52)),
    linear-gradient(90deg, rgba(0, 210, 255, 0.055), transparent 38%, rgba(0, 240, 134, 0.035));
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.24),
    inset 0 -1px 0 rgba(255, 255, 255, 0.035);
  -webkit-backdrop-filter: blur(24px) saturate(1.28);
  backdrop-filter: blur(24px) saturate(1.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 214px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.brand-wordmark {
  width: 168px;
  height: auto;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 46px);
  color: rgba(247, 244, 236, 0.76);
  font-family: var(--font-nav);
  font-size: 13px;
  font-stretch: semi-condensed;
  font-weight: 600;
  letter-spacing: 0.035em;
  line-height: 1;
}

.desktop-nav a {
  padding-bottom: 5px;
  border-bottom: 1px solid transparent;
}

.desktop-nav a:hover {
  color: var(--ink);
  border-color: var(--cyan);
}

.menu-button {
  display: none;
  width: 46px;
  height: 38px;
  border: 1px solid var(--line);
  background: transparent;
  padding: 9px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.mobile-nav {
  position: fixed;
  top: 70px;
  right: var(--pad);
  z-index: 19;
  display: none;
  min-width: 210px;
  border: 1px solid var(--line);
  background: rgba(3, 4, 5, 0.94);
  backdrop-filter: blur(18px);
}

.mobile-nav.is-open {
  display: grid;
}

.mobile-nav a {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font-nav);
  font-size: 13px;
  font-stretch: semi-condensed;
  font-weight: 600;
  letter-spacing: 0.035em;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(680px, 92svh, 860px);
  overflow: hidden;
  padding: 118px var(--pad) 78px;
  border-bottom: 1px solid var(--line);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  overflow: hidden;
  background:
    radial-gradient(circle at 66% 38%, rgba(24, 234, 214, 0.22), transparent 15%),
    radial-gradient(circle at 76% 18%, rgba(22, 141, 255, 0.25), transparent 20%),
    radial-gradient(circle at 18% 24%, rgba(244, 216, 47, 0.12), transparent 13%),
    linear-gradient(130deg, #031d2b 0%, #031018 44%, #030405 78%);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 8% -16% -10% 44%;
  opacity: 0.4;
  background:
    radial-gradient(ellipse at 46% 48%, transparent 0 36%, rgba(24, 234, 214, 0.15) 37% 38%, transparent 39%),
    radial-gradient(ellipse at 47% 50%, transparent 0 52%, rgba(22, 141, 255, 0.18) 53% 54%, transparent 55%),
    linear-gradient(115deg, transparent 0 48%, rgba(24, 234, 214, 0.16) 49%, transparent 50%);
  transform: rotate(-9deg);
}

.hero-media::after {
  content: "";
  position: absolute;
  right: 7%;
  top: 22%;
  width: 28vw;
  max-width: 420px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(24, 234, 214, 0.16);
  box-shadow:
    0 0 70px rgba(22, 141, 255, 0.12),
    inset 0 0 80px rgba(24, 234, 214, 0.05);
}

.light-beam {
  position: absolute;
  top: -8%;
  width: 13vw;
  height: 78%;
  opacity: 0.2;
  background: linear-gradient(180deg, rgba(24, 234, 214, 0.4), rgba(22, 141, 255, 0.12) 54%, transparent);
  filter: blur(6px);
  clip-path: polygon(42% 0, 58% 0, 100% 100%, 0 100%);
}

.beam-one {
  right: 25%;
  transform: rotate(4deg);
}

.beam-two {
  right: 9%;
  opacity: 0.13;
  transform: rotate(14deg);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 4, 5, 0.96) 0%, rgba(3, 17, 26, 0.7) 38%, rgba(3, 4, 5, 0.38) 100%),
    linear-gradient(180deg, rgba(3, 4, 5, 0.04), rgba(3, 4, 5, 0.9));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(700px, 58vw);
  padding-left: clamp(0px, 3vw, 44px);
}

.hero-brand-visual {
  position: absolute;
  right: clamp(-160px, -5vw, -34px);
  top: 54%;
  z-index: 1;
  width: min(70vw, 1040px);
  aspect-ratio: 16 / 9;
  transform: translateY(-50%);
  opacity: 0.86;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.42));
  -webkit-mask-image:
    radial-gradient(ellipse at 58% 50%, #000 0%, #000 48%, transparent 76%),
    linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 16%, #000 82%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    radial-gradient(ellipse at 58% 50%, #000 0%, #000 48%, transparent 76%),
    linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 16%, #000 82%, transparent 100%);
  mask-composite: intersect;
}

.hero-brand-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 26px;
  color: rgba(247, 244, 236, 0.84);
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.6;
  text-transform: uppercase;
}

.star-mark {
  position: relative;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
}

.star-mark::before,
.star-mark::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  background: var(--ink);
  transform: translate(-50%, -50%);
}

.star-mark::before {
  width: 100%;
  height: 2px;
}

.star-mark::after {
  width: 2px;
  height: 100%;
}

.hero h1 {
  margin: 0 0 22px;
  color: var(--ink);
  font-family: var(--font-nav);
  max-width: 720px;
  font-size: clamp(48px, 5.7vw, 82px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero-line {
  max-width: 520px;
  margin: 0 0 34px;
  color: rgba(247, 244, 236, 0.95);
  font-size: clamp(24px, 2.45vw, 38px);
  line-height: 1.18;
}

.hero-copy {
  max-width: 580px;
  margin: 0 0 42px;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: min(290px, 100%);
  min-height: 64px;
  border: 1px solid var(--line-strong);
  padding: 18px 30px;
  font-family: var(--font-nav);
  font-size: 17px;
  font-stretch: semi-condensed;
  font-weight: 700;
  letter-spacing: 0.035em;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border-color: rgba(24, 234, 214, 0.86);
  background: linear-gradient(90deg, var(--cyan), #65fff2);
  color: #021519;
  box-shadow: 0 0 34px rgba(24, 234, 214, 0.16);
}

.button-secondary {
  justify-content: center;
  background: rgba(3, 4, 5, 0.22);
  color: var(--ink);
}

.section {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 62px var(--pad);
  scroll-margin-top: 92px;
}

.section-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--font-nav);
  font-size: clamp(38px, 4.4vw, 70px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.01em;
}

.section-heading i {
  height: 1px;
  background: linear-gradient(90deg, var(--line-strong), transparent);
}

.product-grid {
  display: grid;
  gap: 32px;
}

.product-card {
  position: relative;
  display: block;
  min-height: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  isolation: isolate;
}

.product-card-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card-link:hover,
.product-card-link:focus-visible {
  transform: translateY(-3px);
}

.product-card-link:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 1;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(24, 234, 214, 0.52) 18%, rgba(244, 216, 47, 0.28) 62%, transparent);
}

.fitpulse-card {
  background:
    radial-gradient(circle at 77% 55%, rgba(24, 234, 214, 0.24), transparent 32%),
    radial-gradient(circle at 18% 8%, rgba(22, 141, 255, 0.28), transparent 26%),
    linear-gradient(135deg, rgba(5, 47, 85, 0.85), rgba(2, 20, 30, 0.95) 48%, rgba(3, 4, 5, 0.98));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28), inset 0 0 80px rgba(24, 234, 214, 0.04);
}

.fitpulse-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
  height: 44%;
  background: linear-gradient(180deg, transparent, rgba(3, 4, 5, 0.42));
}

.frontrow-card {
  background: #060606;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28), inset 0 0 80px rgba(244, 216, 47, 0.035);
}

.product-copy {
  position: relative;
  z-index: 3;
  width: min(520px, 44%);
  padding: clamp(30px, 4.1vw, 56px);
}

.frontrow-card .product-copy {
  width: min(560px, 48%);
  position: absolute;
  right: 0;
  bottom: 0;
  text-align: right;
}

.product-kicker {
  margin: 0 0 22px;
  color: var(--cyan);
  font-family: var(--font-nav);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-kicker.gold {
  color: var(--gold);
}

.fitpulse-wordmark {
  display: inline-flex;
  align-items: flex-start;
  margin: 0 0 7px;
  font-family: "Segoe UI Variable Display", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(48px, 4.35vw, 72px);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: 0;
}

.fitpulse-wordmark span:first-child {
  color: #f7fbff;
}

.fitpulse-wordmark span:last-child {
  color: var(--cyan-strong);
  text-shadow: 0 0 18px rgba(0, 210, 255, 0.28);
}

.fitpulse-submark {
  margin: 0 0 22px;
  color: var(--cyan-strong);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2.8px;
  line-height: 1;
  text-transform: uppercase;
}

.fitpulse-wordmark-lockup {
  margin: 0 0 24px;
  line-height: 1;
}

.fitpulse-wordmark-image {
  width: min(340px, 100%);
  height: auto;
  filter: drop-shadow(0 0 18px rgba(0, 210, 255, 0.22));
}

.product-tagline {
  max-width: 420px;
  margin: 0 0 26px;
  color: rgba(247, 244, 236, 0.82);
  font-size: 18px;
  line-height: 1.48;
}

.platform-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  width: min(100%, 410px);
  max-width: 100%;
  margin-top: 10px;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid rgba(24, 234, 214, 0.24);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(3, 11, 18, 0.66);
  color: rgba(246, 251, 255, 0.94);
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035), 0 12px 34px rgba(0, 0, 0, 0.22);
}

.platform-badge img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(24, 234, 214, 0.35));
}

.platform-harmonyos img {
  width: 20px;
  height: 20px;
}

.platform-android img {
  width: 19px;
  height: 19px;
}

.platform-ios img {
  width: 17px;
  height: 17px;
}

.platform-label {
  margin: 0;
  color: rgba(201, 245, 247, 0.9);
  font-family: var(--font-nav);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.platform-line.gold {
  justify-content: flex-end;
  color: #fff5a8;
}

.platform-line.gold i {
  background: var(--gold);
  box-shadow: 0 0 14px rgba(244, 216, 47, 0.46);
}

.fitpulse-visual {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.device-frame {
  position: absolute;
  overflow: hidden;
  background:
    linear-gradient(145deg, #141c23 0%, #030609 48%, #202b33 100%);
  border: 1px solid rgba(114, 255, 242, 0.22);
  box-shadow:
    0 38px 90px rgba(0, 0, 0, 0.68),
    0 0 42px rgba(0, 210, 255, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.device-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #080d12;
}

.tablet-device {
  top: 50%;
  right: clamp(34px, 6vw, 98px);
  width: min(59%, 780px);
  aspect-ratio: 16 / 10;
  padding: 11px;
  border-radius: 28px;
  transform: translateY(-50%);
}

.tablet-device img {
  border-radius: 20px;
}

.tablet-camera {
  position: absolute;
  top: 6px;
  left: 50%;
  z-index: 2;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  transform: translateX(-50%);
}

.phone-device {
  right: clamp(28px, 4.5vw, 76px);
  bottom: clamp(28px, 4.4vw, 62px);
  z-index: 4;
  width: min(16.5%, 212px);
  min-width: 142px;
  aspect-ratio: 9 / 19.4;
  padding: 8px;
  border-radius: 30px;
}

.phone-device img {
  border-radius: 23px;
}

.phone-speaker {
  position: absolute;
  top: 13px;
  left: 50%;
  z-index: 2;
  width: 34px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  transform: translateX(-50%);
}

.frontrow-media,
.frontrow-shade {
  position: absolute;
  inset: 0;
}

.frontrow-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: grayscale(0.78) contrast(1.04) brightness(0.88);
}

.frontrow-shade {
  z-index: 1;
  background:
    radial-gradient(circle at 64% 26%, rgba(244, 216, 47, 0.12), transparent 22%),
    radial-gradient(circle at 76% 78%, rgba(22, 141, 255, 0.16), transparent 24%),
    linear-gradient(90deg, rgba(3, 4, 5, 0.2) 0%, rgba(3, 4, 5, 0.36) 42%, rgba(3, 4, 5, 0.9) 100%),
    linear-gradient(180deg, rgba(3, 4, 5, 0.05), rgba(3, 4, 5, 0.54) 100%);
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 8px 0 20px;
  border-bottom: 1px solid rgba(244, 216, 47, 0.64);
  color: var(--gold);
  font-family: var(--font-nav);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.frontrow-wordmark {
  width: min(510px, 100%);
  height: auto;
  margin: 0 0 6px;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.55));
}

.platform-logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.platform-store-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 28px;
  padding: 0;
  background: transparent;
  border: 0;
  opacity: 0.82;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.45));
}

.platform-store-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.platform-store-logo[aria-label="Meta Quest"] img {
  filter: brightness(0) invert(1);
}

.steam-store-logo {
  width: 72px;
  padding: 0;
  overflow: hidden;
  background: transparent;
}

.steam-store-logo img {
  object-fit: contain;
}

.product-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: max-content;
  max-width: 100%;
  min-height: 48px;
  margin-top: 22px;
  padding: 14px 20px;
  border: 1px solid rgba(24, 234, 214, 0.72);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(3, 12, 18, 0.58);
  font-family: var(--font-nav);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 0 28px rgba(0, 210, 255, 0.12);
}

.product-link::after {
  content: "+";
  width: auto;
  height: auto;
  background: transparent;
}

.fitpulse-link {
  color: #dffeff;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(210px, 0.52fr) minmax(320px, 1.48fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
}

.studio-signal {
  min-height: 210px;
  background: none;
}

.studio-wordmark-light {
  display: grid;
  align-content: center;
  gap: 12px;
}

.studio-wordmark-light img {
  width: min(280px, 80%);
  height: auto;
  opacity: 0.82;
}

.studio-wordmark-light::before,
.studio-wordmark-light::after {
  content: "";
  width: min(180px, 62%);
  height: 1px;
  background: linear-gradient(90deg, rgba(24, 234, 214, 0.46), transparent);
}

.studio-wordmark-light::after {
  background: linear-gradient(90deg, rgba(244, 216, 47, 0.32), transparent);
}

.about-copy {
  max-width: 760px;
  color: rgba(247, 244, 236, 0.8);
  font-size: clamp(19px, 1.65vw, 24px);
  line-height: 1.48;
}

.about-copy p {
  margin: 0 0 18px;
}

.site-footer {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 54px var(--pad) 34px;
  border-top: 1px solid var(--line);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0 0 28px;
  border-bottom: 1px solid var(--line);
}

.footer-columns div {
  display: grid;
  gap: 10px;
}

.footer-columns h2 {
  margin: 0 0 6px;
  color: var(--quiet);
  font-family: var(--font-nav);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-columns a,
.footer-note {
  color: rgba(247, 244, 236, 0.78);
  font-size: 14px;
}

.footer-note {
  font-style: normal;
}

.footer-columns a:hover {
  color: var(--ink);
}

.copyright-fixed {
  margin: 24px 0 0;
  color: var(--quiet);
  font-size: 13px;
}

.fitpulse-detail-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  width: min(var(--max), 100%);
  min-height: clamp(680px, 92svh, 860px);
  margin: 0 auto;
  padding: 126px var(--pad) 72px;
  overflow: hidden;
}

.fitpulse-detail-hero::before {
  content: "";
  position: absolute;
  inset: 86px var(--pad) 0;
  z-index: 0;
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 18%, rgba(0, 210, 255, 0.22), transparent 28%),
    radial-gradient(circle at 82% 70%, rgba(24, 234, 214, 0.14), transparent 24%),
    linear-gradient(135deg, rgba(5, 47, 85, 0.55), rgba(3, 4, 5, 0.26) 58%);
}

.detail-copy,
.detail-devices {
  position: relative;
  z-index: 1;
}

.detail-wordmark {
  margin-bottom: 28px;
}

.detail-wordmark .fitpulse-wordmark-image {
  width: min(430px, 100%);
}

.detail-lede {
  max-width: 560px;
  margin: 0 0 28px;
  color: rgba(247, 244, 236, 0.82);
  font-size: clamp(20px, 1.8vw, 27px);
  line-height: 1.38;
}

.detail-devices {
  min-height: 470px;
}

.detail-tablet {
  top: 50%;
  right: 0;
  width: min(94%, 780px);
  aspect-ratio: 16 / 10;
  padding: 11px;
  border-radius: 28px;
  transform: translateY(-50%);
}

.detail-tablet img {
  border-radius: 20px;
}

.detail-phone {
  right: 2%;
  bottom: 2%;
  z-index: 4;
  width: min(24%, 196px);
  min-width: 132px;
  aspect-ratio: 9 / 19.4;
  padding: 8px;
  border-radius: 30px;
}

.detail-phone img {
  border-radius: 23px;
}

.detail-section {
  padding-top: 46px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(22px, 3vw, 44px);
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-list article {
  min-width: 0;
}

.feature-list h3 {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 22px;
  line-height: 1.15;
}

.feature-list p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.48;
}

.support-strip {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
}

.support-strip h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.12;
}

.support-links {
  display: grid;
  gap: 12px;
}

.support-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  border-bottom: 1px solid var(--line);
  color: rgba(247, 244, 236, 0.86);
  font-size: 15px;
  font-weight: 800;
}

.support-links a::after {
  content: "+";
  color: var(--cyan);
}

.fitpulse-site {
  background:
    radial-gradient(circle at 16% 8%, rgba(0, 210, 255, 0.14), transparent 24%),
    radial-gradient(circle at 86% 34%, rgba(24, 234, 214, 0.1), transparent 22%),
    linear-gradient(135deg, #04111b 0%, #03080d 48%, #030405 100%);
}

.fitpulse-product-page {
  overflow: hidden;
}

.fitpulse-product-page * {
  min-width: 0;
}

.fp-hero,
.fp-band,
.fp-feature-row,
.fp-showcase,
.fp-plus-section,
.fp-closing {
  width: min(var(--max), 100%);
  max-width: 100vw;
  margin: 0 auto;
  padding-right: var(--pad);
  padding-left: var(--pad);
  overflow: hidden;
}

.fp-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.55fr) minmax(540px, 1.45fr);
  gap: clamp(28px, 4.5vw, 72px);
  align-items: center;
  min-height: clamp(720px, 94svh, 920px);
  padding-top: 126px;
  padding-bottom: 74px;
}

.fp-hero-copy {
  position: relative;
  z-index: 2;
}

.fp-hero h1,
.fp-section-copy h2,
.fp-closing h2 {
  margin: 0;
  color: #f7fbff;
  font-family: var(--font-nav);
  font-weight: 900;
  letter-spacing: 0;
}

.fp-hero h1 {
  max-width: 560px;
  font-size: clamp(50px, 5.2vw, 86px);
  line-height: 0.95;
}

.fp-hero-copy p:not(.product-kicker),
.fp-section-copy p,
.fp-mode-grid p,
.fp-check-list,
.fp-plus-grid span,
.fp-intro span {
  color: rgba(247, 244, 236, 0.74);
  overflow-wrap: break-word;
}

.fp-hero-copy p:not(.product-kicker) {
  max-width: 540px;
  margin: 26px 0 0;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.52;
}

.fp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.fp-hero-visual,
.fp-image-card,
.fp-wide-image,
.fp-phone-feature {
  margin: 0;
}

.fp-hero-visual {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #07121a;
  box-shadow:
    0 42px 120px rgba(0, 0, 0, 0.46),
    0 0 70px rgba(0, 210, 255, 0.1);
}

.fp-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: inherit;
}

.fp-traincue-preview {
  min-height: clamp(420px, 42vw, 650px);
  display: grid;
  place-items: center;
  padding: clamp(28px, 4vw, 58px);
  background:
    radial-gradient(circle at 20% 18%, rgba(0, 210, 255, 0.26), transparent 31%),
    radial-gradient(circle at 82% 76%, rgba(31, 120, 255, 0.2), transparent 30%),
    linear-gradient(135deg, #061927 0%, #041018 50%, #020509 100%);
}

.fp-preview-shell {
  width: min(100%, 620px);
  border: 1px solid rgba(125, 230, 255, 0.22);
  border-radius: 8px;
  padding: clamp(26px, 4vw, 46px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(2, 8, 13, 0.78);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.fp-preview-topline {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fp-preview-wordmark {
  margin: 0;
  font-size: clamp(48px, 7vw, 92px);
}

.fp-preview-subtitle {
  color: rgba(231, 241, 255, 0.72);
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.fp-preview-timer {
  margin-top: clamp(44px, 6vw, 72px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fp-preview-timer span {
  color: #f7fbff;
  font-size: clamp(72px, 11vw, 142px);
  font-weight: 950;
  line-height: 0.92;
  letter-spacing: 0;
}

.fp-preview-timer small {
  color: var(--cyan-strong);
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 850;
}

.fp-preview-flow {
  margin-top: clamp(32px, 5vw, 52px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.fp-preview-flow span {
  min-height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(160, 180, 205, 0.18);
  border-radius: 8px;
  color: rgba(231, 241, 255, 0.72);
  font-size: clamp(12px, 1.15vw, 15px);
  font-weight: 800;
}

.fp-preview-flow .is-active {
  border-color: rgba(0, 210, 255, 0.5);
  color: #f7fbff;
  background: rgba(0, 210, 255, 0.1);
}

.fp-hero-visual img,
.fp-image-card img,
.fp-wide-image img,
.fp-phone-feature img {
  width: 100%;
  height: auto;
}

.fp-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-top: 18px;
  padding-bottom: 56px;
}

.fp-intro article {
  min-height: 132px;
  padding: 24px 26px;
  background:
    linear-gradient(135deg, rgba(24, 234, 214, 0.09), rgba(22, 141, 255, 0.03)),
    rgba(255, 255, 255, 0.035);
  border-top: 1px solid rgba(24, 234, 214, 0.22);
}

.fp-intro strong,
.fp-plus-grid strong {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.2;
}

.fp-intro span,
.fp-plus-grid span {
  display: block;
  font-size: 15px;
  line-height: 1.5;
}

.fp-feature-row,
.fp-plus-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding-top: 74px;
  padding-bottom: 74px;
}

.fp-feature-row-reverse {
  grid-template-columns: minmax(560px, 1.3fr) minmax(320px, 0.7fr);
}

.fp-section-copy h2,
.fp-closing h2 {
  max-width: 680px;
  font-size: clamp(36px, 4.4vw, 68px);
  line-height: 0.98;
}

.fp-section-copy p {
  max-width: 600px;
  margin: 24px 0 0;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.52;
}

.fp-centered-copy {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.fp-centered-copy p {
  margin-right: auto;
  margin-left: auto;
}

.fp-image-card,
.fp-wide-image,
.fp-phone-feature {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #07111a;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.fp-image-card::after,
.fp-wide-image::after,
.fp-phone-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: inherit;
}

.fp-showcase {
  padding-top: 78px;
  padding-bottom: 78px;
}

.fp-mode-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.fp-mode-grid article {
  padding: 28px clamp(22px, 3vw, 42px) 10px;
}

.fp-mode-grid h3 {
  margin: 0 0 10px;
  color: var(--cyan-strong);
  font-size: 25px;
  line-height: 1.15;
}

.fp-mode-grid p {
  margin: 0;
  font-size: 16px;
  line-height: 1.48;
}

.fp-check-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  font-size: 16px;
  line-height: 1.45;
}

.fp-check-list li {
  position: relative;
  padding-left: 26px;
}

.fp-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(24, 234, 214, 0.42);
}

.fp-plus-section {
  grid-template-columns: minmax(420px, 0.92fr) minmax(420px, 1.08fr);
  padding-top: 82px;
  padding-bottom: 82px;
}

.fp-plus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.fp-plus-grid article {
  min-height: 138px;
  padding: 24px;
  border: 1px solid rgba(24, 234, 214, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.fp-phone-feature {
  max-width: 740px;
  justify-self: end;
}

.fp-closing {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  padding-top: 74px;
  padding-bottom: 88px;
}

@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero-content {
    width: min(760px, 88vw);
  }

  .hero-brand-visual {
    right: -10vw;
    width: min(64vw, 540px);
    opacity: 0.48;
  }

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

  .detail-devices {
    min-height: 430px;
  }

  .product-card {
    aspect-ratio: auto;
  }

  .product-copy,
  .frontrow-card .product-copy {
    width: 100%;
    padding: 34px 28px 26px;
  }

  .fitpulse-visual {
    position: relative;
    inset: auto;
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .tablet-device {
    left: 50%;
    right: auto;
    top: 50%;
    width: 85%;
    padding: 8px;
    border-radius: 22px;
    transform: translate(-50%, -50%);
  }

  .tablet-device img {
    border-radius: 15px;
  }

  .phone-device {
    right: 9%;
    bottom: 9%;
    width: 18%;
    min-width: 102px;
    padding: 6px;
    border-radius: 22px;
  }

  .phone-device img {
    border-radius: 17px;
  }

  .phone-speaker {
    top: 10px;
    width: 26px;
    height: 3px;
  }

  .frontrow-card {
    display: grid;
  }

  .frontrow-media,
  .frontrow-shade {
    position: relative;
    inset: auto;
    grid-row: 2;
    aspect-ratio: 16 / 9;
  }

  .frontrow-shade {
    position: absolute;
    inset: auto 0 0;
    height: 46%;
    background: linear-gradient(180deg, transparent, rgba(3, 4, 5, 0.7));
  }

  .frontrow-card .product-copy {
    position: relative;
    grid-row: 1;
    right: auto;
    bottom: auto;
    text-align: left;
    background:
      radial-gradient(circle at 74% 0%, rgba(244, 216, 47, 0.1), transparent 26%),
      #050607;
  }

  .platform-line.gold {
    justify-content: flex-start;
  }

  .platform-logo-row {
    justify-content: flex-start;
  }

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

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

  .support-strip {
    grid-template-columns: 1fr;
  }

  .fp-hero,
  .fp-feature-row,
  .fp-feature-row-reverse,
  .fp-plus-section,
  .fp-closing {
    grid-template-columns: 1fr;
  }

  .fp-hero {
    min-height: 0;
    padding-top: 112px;
  }

  .fp-hero h1 {
    max-width: 760px;
  }

  .fp-hero-copy p:not(.product-kicker) {
    max-width: 720px;
  }

  .fp-band,
  .fp-mode-grid {
    grid-template-columns: 1fr;
  }

  .fp-phone-feature {
    justify-self: stretch;
    max-width: none;
  }

}

@media (max-width: 720px) {
  :root {
    --pad: 20px;
  }

  .site-header {
    height: 76px;
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand {
    min-width: 0;
    gap: 9px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .brand-wordmark {
    width: 126px;
  }

  .hero {
    min-height: 760px;
    align-items: end;
    padding: 108px var(--pad) 64px;
  }

  .hero-media::after {
    right: -22%;
    top: 18%;
    width: 78vw;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(3, 18, 28, 0.18) 0%, rgba(3, 18, 28, 0.46) 34%, rgba(3, 4, 5, 0.96) 70%, #030405 100%),
      linear-gradient(90deg, rgba(3, 4, 5, 0.9), rgba(3, 18, 28, 0.28));
  }

  .hero-content {
    width: 100%;
    max-width: calc(100vw - (var(--pad) * 2));
    padding-left: 0;
  }

  .hero-brand-visual {
    right: -45vw;
    top: 24%;
    width: 118vw;
    opacity: 0.22;
  }

  .fitpulse-detail-hero {
    min-height: 0;
    padding: 112px var(--pad) 50px;
  }

  .fitpulse-detail-hero::before {
    inset: 76px 0 0;
  }

  .detail-wordmark {
    margin-bottom: 24px;
  }

  .detail-lede {
    font-size: 18px;
  }

  .detail-devices {
    min-height: 300px;
  }

  .detail-tablet {
    width: 90%;
    padding: 6px;
    border-radius: 18px;
  }

  .detail-tablet img {
    border-radius: 12px;
  }

  .detail-phone {
    width: 24%;
    min-width: 82px;
    padding: 5px;
    border-radius: 18px;
  }

  .detail-phone img {
    border-radius: 14px;
  }

  .kicker {
    max-width: 320px;
    gap: 14px;
    margin-bottom: 20px;
    font-size: 11px;
    letter-spacing: 0.17em;
  }

  .hero h1 {
    max-width: min(100%, 340px);
    font-size: clamp(36px, 9.5vw, 44px);
    line-height: 0.98;
  }

  .hero-line {
    max-width: calc(100vw - (var(--pad) * 2));
    font-size: 23px;
    line-height: 1.26;
    overflow-wrap: break-word;
  }

  .hero-copy {
    max-width: min(100%, 330px);
    margin-bottom: 26px;
    font-size: 16px;
    overflow-wrap: break-word;
  }

  .hero-actions {
    gap: 12px;
  }

  .button {
    width: 100%;
    max-width: 100%;
    min-height: 56px;
  }

  .section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 28px;
  }

  .product-grid {
    gap: 24px;
  }

  .product-copy,
  .frontrow-card .product-copy {
    padding: 30px 22px 24px;
  }

  .fitpulse-wordmark-image {
    width: min(286px, 100%);
  }

  .detail-wordmark .fitpulse-wordmark-image {
    width: min(330px, 100%);
  }

  .product-tagline {
    max-width: min(100%, 318px);
    font-size: 16px;
    overflow-wrap: break-word;
  }

  .platform-line {
    width: min(100%, 330px);
    gap: 7px;
  }

  .platform-badge {
    min-height: 36px;
    padding: 7px 10px;
    font-size: 12px;
  }

  .platform-badge img {
    width: 16px;
    height: 16px;
  }

  .product-link {
    margin-top: 18px;
  }

  .tablet-device {
    width: 88%;
    padding: 6px;
    border-radius: 18px;
  }

  .tablet-device img {
    border-radius: 12px;
  }

  .phone-device {
    right: 7%;
    bottom: 7%;
    width: 19%;
    min-width: 82px;
    padding: 5px;
    border-radius: 18px;
  }

  .phone-device img {
    border-radius: 14px;
  }

  .frontrow-wordmark {
    width: min(300px, 100%);
  }

  .studio-signal {
    min-height: 130px;
  }

  .studio-wordmark-light {
    gap: 10px;
  }

  .studio-wordmark-light img {
    width: min(260px, 78vw);
  }

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

  .feature-list h3 {
    font-size: 21px;
  }

  .about-copy {
    max-width: min(100%, 330px);
    font-size: 16px;
    overflow-wrap: break-word;
  }

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

  .fp-hero,
  .fp-band,
  .fp-feature-row,
  .fp-showcase,
  .fp-plus-section,
  .fp-closing {
    padding-right: var(--pad);
    padding-left: var(--pad);
  }

  .fp-hero {
    gap: 26px;
    padding-top: 106px;
    padding-bottom: 46px;
  }

  .fp-hero h1,
  .fp-section-copy h2,
  .fp-closing h2 {
    max-width: calc(100vw - (var(--pad) * 2));
    font-size: clamp(32px, 8.2vw, 38px);
    line-height: 1.02;
    overflow-wrap: break-word;
  }

  .fp-hero-copy p:not(.product-kicker),
  .fp-section-copy p {
    font-size: 16px;
  }

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

  .fp-hero-visual,
  .fp-image-card,
  .fp-wide-image,
  .fp-phone-feature {
    margin-right: 0;
    margin-left: 0;
    border-radius: 8px;
  }

  .fp-band {
    padding-top: 8px;
    padding-bottom: 34px;
  }

  .fp-intro article {
    min-height: 0;
    padding: 20px;
  }

  .fp-feature-row,
  .fp-plus-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .fp-showcase {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .fp-centered-copy {
    text-align: left;
  }

  .fp-mode-grid article {
    padding: 22px 0 4px;
  }

  .fp-plus-grid {
    grid-template-columns: 1fr;
  }

  .fp-closing {
    padding-top: 50px;
    padding-bottom: 62px;
  }
}

/* TrainCue product page: native app-extension direction */
.fitpulse-site {
  background:
    radial-gradient(circle at 50% -18%, rgba(0, 210, 255, 0.1), transparent 34%),
    linear-gradient(180deg, #070b10 0%, #05090e 42%, #030405 100%);
  font-family: var(--font-body);
}

.fitpulse-site .site-header {
  background:
    linear-gradient(180deg, rgba(5, 9, 14, 0.76), rgba(5, 9, 14, 0.5)),
    linear-gradient(90deg, rgba(0, 210, 255, 0.045), transparent 38%, rgba(0, 240, 134, 0.025));
  border-bottom-color: rgba(86, 119, 145, 0.24);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.2),
    inset 0 -1px 0 rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(22px) saturate(1.24);
  backdrop-filter: blur(22px) saturate(1.24);
}

.fitpulse-site .footer-columns h2 {
  font-family: var(--font-nav);
  letter-spacing: 0.04em;
}

.fitpulse-site .button {
  width: auto;
  min-width: 178px;
  min-height: 52px;
  border-radius: 8px;
  padding: 14px 22px;
  font-family: var(--font-nav);
  font-size: 15px;
  font-stretch: semi-condensed;
  font-weight: 650;
  letter-spacing: 0.03em;
}

.fitpulse-site .button-primary {
  border-color: transparent;
  background: linear-gradient(90deg, #159dff, #0bd4ff);
  color: #ffffff;
  box-shadow: none;
}

.fitpulse-site .button-secondary {
  border-color: rgba(145, 160, 181, 0.28);
  background: #111821;
  color: #eef6ff;
}

.fitpulse-product-page {
  overflow: hidden;
  color: #f4f7fb;
}

.fitpulse-product-page [id] {
  scroll-margin-top: 96px;
}

.fitpulse-product-page * {
  min-width: 0;
}

.fp-hero,
.fp-band,
.fp-feature-row,
.fp-showcase,
.fp-plus-section,
.fp-closing {
  width: min(1240px, 100%);
  max-width: 100vw;
  margin: 0 auto;
  padding-right: var(--pad);
  padding-left: var(--pad);
  overflow: hidden;
}

.fp-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
  min-height: clamp(600px, 78svh, 760px);
  padding-top: 118px;
  padding-bottom: 30px;
}

.fp-hero-copy {
  position: relative;
  z-index: 2;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(145, 160, 181, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(21, 30, 40, 0.82), rgba(8, 13, 19, 0.92)),
    #0a0f15;
}

.fp-logo {
  width: min(300px, 82%);
  height: auto;
  margin: 0 0 26px;
  filter: drop-shadow(0 0 14px rgba(0, 210, 255, 0.18));
}

.fp-eyebrow {
  margin: 0 0 12px;
  color: #00d2ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.fp-hero h1,
.fp-section-copy h2,
.fp-closing h2 {
  margin: 0;
  color: #f8fbff;
  font-family: var(--font-nav);
  font-weight: 700;
  letter-spacing: 0;
}

.fp-hero h1 {
  max-width: 520px;
  font-size: clamp(32px, 3.1vw, 44px);
  line-height: 1.08;
}

.fp-hero-copy p:not(.fp-eyebrow),
.fp-section-copy p,
.fp-mode-grid p,
.fp-check-list,
.fp-plus-grid span,
.fp-intro span {
  color: rgba(214, 225, 238, 0.78);
  overflow-wrap: break-word;
}

.fp-hero-copy p:not(.fp-eyebrow) {
  max-width: 560px;
  margin: 20px 0 0;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.6;
}

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

.fp-hero-visual,
.fp-image-card,
.fp-wide-image,
.fp-phone-feature {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(145, 160, 181, 0.2);
  border-radius: 8px;
  background: #090f15;
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.32);
}

.fp-hero-visual {
  align-self: center;
  display: block;
}

.fp-hero-visual img,
.fp-image-card img,
.fp-wide-image img,
.fp-phone-feature img {
  width: 100%;
  height: auto;
}

.fp-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 8px;
  padding-bottom: 28px;
}

.fp-intro article,
.fp-plus-grid article {
  position: relative;
  min-height: 126px;
  padding: 22px;
  border: 1px solid rgba(145, 160, 181, 0.18);
  border-radius: 8px;
  background: #111821;
}

.fp-dot {
  display: block;
  width: 9px;
  height: 9px;
  margin-bottom: 15px;
  border-radius: 50%;
  background: #00d2ff;
  box-shadow: 0 0 18px rgba(0, 210, 255, 0.52);
}

.fp-dot-green {
  background: #00f086;
  box-shadow: 0 0 18px rgba(0, 240, 134, 0.45);
}

.fp-dot-orange {
  background: #ffae2b;
  box-shadow: 0 0 18px rgba(255, 174, 43, 0.42);
}

.fp-intro strong,
.fp-plus-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.fp-intro span,
.fp-plus-grid span {
  display: block;
  font-size: 15px;
  line-height: 1.5;
}

.fp-feature-row,
.fp-plus-section {
  display: grid;
  grid-template-columns: minmax(310px, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  padding-top: 58px;
  padding-bottom: 58px;
}

.fp-feature-row-reverse {
  grid-template-columns: minmax(560px, 1.22fr) minmax(310px, 0.78fr);
}

.fp-section-copy {
  padding: clamp(20px, 2.6vw, 30px);
  border-left: 2px solid rgba(0, 210, 255, 0.66);
  background: linear-gradient(90deg, rgba(0, 210, 255, 0.055), transparent 72%);
}

.fp-section-copy h2,
.fp-closing h2 {
  max-width: 620px;
  font-size: clamp(29px, 2.75vw, 39px);
  line-height: 1.1;
}

.fp-section-copy p {
  max-width: 580px;
  margin: 18px 0 0;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.58;
}

.fp-centered-copy {
  max-width: 740px;
  margin: 0 auto 24px;
  border-left: 0;
  text-align: center;
  background: none;
}

.fp-centered-copy p {
  margin-right: auto;
  margin-left: auto;
}

.fp-showcase {
  padding-top: 42px;
  padding-bottom: 52px;
}

.fp-wide-image {
  background:
    linear-gradient(180deg, #0d1721, #071019),
    #071019;
}

.fp-mode-mobile-list {
  display: none;
}

.fp-mode-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.fp-mode-grid article {
  padding: 20px;
  border: 1px solid rgba(145, 160, 181, 0.16);
  border-radius: 8px;
  background: #0f151d;
}

.fp-mode-grid h3 {
  margin: 0 0 8px;
  color: #00d2ff;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
}

.fp-mode-grid p {
  margin: 0;
  font-size: 15px;
  line-height: 1.48;
}

.fp-check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  font-size: 15px;
  line-height: 1.45;
}

.fp-check-list li {
  position: relative;
  padding-left: 24px;
}

.fp-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00f086;
  box-shadow: 0 0 16px rgba(0, 240, 134, 0.38);
}

.fp-plus-section {
  grid-template-columns: minmax(390px, 0.92fr) minmax(450px, 1.08fr);
}

.fp-plus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.fp-plus-grid article {
  min-height: 116px;
}

.fp-phone-feature {
  max-width: 660px;
  justify-self: end;
}

.fp-closing {
  display: grid;
  grid-template-columns: minmax(310px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  padding-top: 58px;
  padding-bottom: 76px;
}

.fitpulse-site .support-links a {
  min-height: 58px;
  padding: 0 2px;
  border-bottom-color: rgba(145, 160, 181, 0.22);
}

@media (max-width: 1050px) {
  .fp-hero,
  .fp-feature-row,
  .fp-feature-row-reverse,
  .fp-plus-section,
  .fp-closing {
    grid-template-columns: 1fr;
  }

  .fp-hero {
    min-height: 0;
  }

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

  .fp-hero-copy .fp-hero-actions {
    justify-self: start;
  }

  .fp-hero-visual {
    align-self: auto;
  }

  .fp-band,
  .fp-mode-grid {
    grid-template-columns: 1fr;
  }

  .fp-phone-feature {
    justify-self: stretch;
    max-width: none;
  }
}

@media (max-width: 720px) {
  .fitpulse-site .button {
    width: 100%;
  }

  .fp-hero,
  .fp-band,
  .fp-feature-row,
  .fp-showcase,
  .fp-plus-section,
  .fp-closing {
    padding-right: var(--pad);
    padding-left: var(--pad);
  }

  .fp-hero {
    gap: 18px;
    padding-top: 98px;
    padding-bottom: 32px;
  }

  .fp-hero-copy,
  .fp-section-copy {
    padding: 20px;
  }

  .fp-logo {
    width: min(236px, 86%);
    margin-bottom: 22px;
  }

  .fp-hero h1,
  .fp-section-copy h2,
  .fp-closing h2 {
    max-width: calc(100vw - (var(--pad) * 2));
    font-size: clamp(30px, 8vw, 36px);
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .fp-hero-copy p:not(.fp-eyebrow),
  .fp-section-copy p {
    font-size: 16px;
  }

  .fp-band {
    padding-top: 8px;
    padding-bottom: 30px;
  }

  .fp-intro article,
  .fp-plus-grid article {
    min-height: 0;
    padding: 19px;
  }

  .fp-feature-row,
  .fp-plus-section,
  .fp-showcase {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .fp-centered-copy {
    padding: 0;
    text-align: left;
  }

  .fp-plus-grid {
    grid-template-columns: 1fr;
  }

  .fp-closing {
    padding-top: 42px;
    padding-bottom: 56px;
  }
}

/* TrainCue page: merge copy and product images into shared app-like panels. */
.fp-hero,
.fp-feature-row,
.fp-showcase,
.fp-plus-section {
  position: relative;
  border: 1px solid rgba(145, 160, 181, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 72% 36%, rgba(0, 210, 255, 0.09), transparent 34%),
    linear-gradient(135deg, rgba(18, 27, 37, 0.9), rgba(7, 12, 18, 0.98) 58%);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.28);
}

.fp-hero {
  width: min(1560px, calc(100% - (var(--pad) * 2)));
  margin-top: 118px;
  padding: clamp(22px, 3.2vw, 36px);
  min-height: 0;
}

.fp-hero-copy {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
}

.fp-hero-copy h1 {
  max-width: 520px;
  font-size: clamp(18px, 1.55vw, 24px);
  font-weight: 600;
  line-height: 1.35;
  color: rgba(238, 246, 255, 0.88);
}

.fp-hero-copy .fp-hero-actions {
  justify-self: end;
  margin-top: 0;
}

.fp-hero-visual,
.fp-image-card,
.fp-wide-image,
.fp-phone-feature {
  border-color: rgba(145, 160, 181, 0.1);
  background: rgba(3, 6, 10, 0.42);
  box-shadow: none;
}

.fp-hero-visual {
  margin: -1px;
}

.fp-band {
  padding-top: 20px;
}

.fp-feature-row,
.fp-plus-section {
  width: min(1560px, calc(100% - (var(--pad) * 2)));
  margin-top: 34px;
  margin-bottom: 34px;
  padding: clamp(22px, 3vw, 34px);
}

.fp-feature-row::before,
.fp-plus-section::before,
.fp-showcase::before,
.fp-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(0, 210, 255, 0.55), rgba(0, 240, 134, 0.24), transparent);
}

.fp-section-copy {
  padding: 0;
  border-left: 0;
  background: transparent;
}

.fp-section-copy p {
  color: rgba(214, 225, 238, 0.76);
}

.fp-check-list {
  padding-top: 18px;
  border-top: 1px solid rgba(145, 160, 181, 0.16);
}

.fp-showcase {
  width: min(1560px, calc(100% - (var(--pad) * 2)));
  margin-top: 34px;
  margin-bottom: 34px;
  padding: clamp(22px, 3vw, 34px);
}

.fp-centered-copy {
  max-width: 760px;
  margin: 0 0 22px;
  text-align: left;
}

.fp-centered-copy p {
  margin-right: 0;
  margin-left: 0;
}

.fp-mode-grid {
  border-top: 1px solid rgba(145, 160, 181, 0.14);
  padding-top: 14px;
}

.fp-mode-grid article,
.fp-intro article,
.fp-plus-grid article {
  background: rgba(17, 24, 33, 0.76);
}

.fp-plus-grid article {
  border-color: rgba(145, 160, 181, 0.18);
}

@media (max-width: 1050px) {
  .fp-hero,
  .fp-feature-row,
  .fp-plus-section,
  .fp-showcase {
    width: min(1560px, calc(100% - (var(--pad) * 2)));
  }
}

@media (max-width: 720px) {
  .fp-hero,
  .fp-feature-row,
  .fp-plus-section,
  .fp-showcase {
    width: calc(100% - (var(--pad) * 2));
    padding: 18px;
  }

  .fp-hero {
    margin-top: 96px;
  }

  .fp-hero-copy {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .fp-hero-copy h1 {
    max-width: 100%;
    font-size: 17px;
  }

  .fp-hero-copy .fp-hero-actions {
    width: 100%;
  }

  .fp-hero-visual,
  .fp-image-card,
  .fp-wide-image,
  .fp-phone-feature {
    margin-top: 6px;
  }
}

/* Keep text-heavy showcase images large enough to read. */
.fp-feature-row-reverse,
.fp-plus-section {
  grid-template-columns: 1fr;
}

.fp-feature-row-reverse .fp-section-copy {
  order: -1;
  max-width: 860px;
}

.fp-feature-row-reverse .fp-image-card,
.fp-plus-section .fp-phone-feature {
  width: 100%;
  max-width: none;
  justify-self: stretch;
}

.fp-plus-section .fp-section-copy {
  max-width: 880px;
}

.fp-readable-image img {
  display: block;
}

@media (max-width: 720px) {
  .fp-wide-image {
    display: none;
  }

  .fp-mode-mobile-list {
    display: grid;
    gap: 14px;
  }

  .fp-mode-mobile-list figure {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(145, 160, 181, 0.18);
    border-radius: 8px;
    background: #090f15;
  }

  .fp-mode-mobile-list img {
    width: 100%;
    height: auto;
  }

  .fp-mode-mobile-list figcaption {
    padding: 12px 14px 14px;
    color: #00d2ff;
    font-size: 16px;
    font-weight: 700;
  }

  .fp-readable-image {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
  }

  .fp-readable-image img {
    width: auto;
    min-width: 760px;
    max-width: none;
  }
}

/* TrainCue page refinement: remove large section boxes and use a flowing product layout. */
.fp-hero,
.fp-showcase,
.fp-feature-row,
.fp-plus-section {
  width: min(1560px, 100%);
  margin-right: auto;
  margin-left: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.fp-hero::before,
.fp-showcase::before,
.fp-feature-row::before,
.fp-plus-section::before {
  display: none;
}

.fp-hero {
  margin-top: 112px;
  padding: 0 var(--pad) 54px;
}

.fp-hero-copy {
  grid-template-columns: minmax(280px, 1fr) auto;
  padding: 0 0 20px;
  border-bottom: 1px solid rgba(145, 160, 181, 0.16);
}

.fp-hero-visual,
.fp-wide-image,
.fp-image-card,
.fp-phone-feature {
  border: 0;
  background: transparent;
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.28);
}

.fp-hero-visual {
  margin: 0;
}

.fp-showcase,
.fp-feature-row,
.fp-plus-section,
.fp-closing {
  position: relative;
  padding: 76px var(--pad);
  border-top: 1px solid rgba(145, 160, 181, 0.14);
}

.fp-showcase {
  margin-top: 0;
  margin-bottom: 0;
}

.fp-feature-row,
.fp-plus-section {
  margin-top: 0;
  margin-bottom: 0;
}

.fp-centered-copy,
.fp-section-copy,
.fp-plus-section .fp-section-copy,
.fp-feature-row-reverse .fp-section-copy {
  max-width: 820px;
}

.fp-centered-copy {
  margin-bottom: 28px;
}

.fp-section-copy h2,
.fp-closing h2 {
  max-width: 760px;
}

.fp-wide-image,
.fp-feature-row-reverse .fp-image-card,
.fp-plus-section .fp-phone-feature {
  width: 100%;
}

.fp-history-showcase {
  width: min(1560px, 100%);
  margin: -34px auto 0;
  padding: 0 var(--pad) 76px;
}

.fp-history-showcase img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.28);
}

.fp-feature-row:not(.fp-feature-row-reverse) {
  grid-template-columns: minmax(320px, 0.72fr) minmax(560px, 1.28fr);
}

.fp-plus-grid article {
  background: rgba(17, 24, 33, 0.58);
}

@media (max-width: 1050px) {
  .fp-hero,
  .fp-showcase,
  .fp-feature-row,
  .fp-plus-section {
    width: min(1560px, 100%);
  }

  .fp-feature-row:not(.fp-feature-row-reverse) {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .fp-hero,
  .fp-showcase,
  .fp-feature-row,
  .fp-plus-section,
  .fp-history-showcase,
  .fp-closing {
    width: 100%;
    padding-right: var(--pad);
    padding-left: var(--pad);
  }

  .fp-hero {
    margin-top: 96px;
    padding-top: 0;
    padding-bottom: 42px;
  }

  .fp-hero-copy {
    grid-template-columns: 1fr;
    padding-bottom: 16px;
  }

  .fp-showcase,
  .fp-feature-row,
  .fp-plus-section,
  .fp-history-showcase,
  .fp-closing {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .fp-hero-visual,
  .fp-wide-image,
  .fp-image-card,
  .fp-phone-feature,
  .fp-history-showcase img {
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  }
}

.fp-history-section {
  width: min(1560px, 100%);
  margin: 0 auto;
  padding: 52px var(--pad) 76px;
  border-top: 1px solid rgba(145, 160, 181, 0.14);
}

.fp-history-copy {
  max-width: 860px;
  margin-bottom: 30px;
}

.fp-history-copy .fp-check-list {
  max-width: 760px;
}

.fp-history-showcase {
  width: 100%;
  margin: 0;
  padding: 0;
}

@media (max-width: 720px) {
  .fp-history-section {
    width: 100%;
    padding: 42px var(--pad) 48px;
  }

  .fp-history-copy {
    margin-bottom: 22px;
  }

  .fp-history-section .fp-history-showcase {
    width: 100%;
    padding: 0;
  }
}

/* Policy pages: formal content without breaking the TrainCue visual language. */
.policy-page {
  width: min(1560px, 100%);
  margin: 0 auto;
  padding: 126px var(--pad) 72px;
  overflow-x: clip;
}

.policy-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(420px, 1.1fr);
  gap: 36px;
  align-items: end;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(145, 160, 181, 0.16);
}

.policy-hero > *,
.policy-layout > *,
.policy-document,
.policy-document section > * {
  min-width: 0;
}

.policy-hero .fp-eyebrow {
  grid-column: 1 / -1;
  margin: 0 0 -22px;
}

.policy-hero h1 {
  margin: 0;
  max-width: 760px;
  color: #f7fbff;
  font-size: clamp(54px, 8vw, 112px);
  line-height: 0.92;
}

.policy-hero p {
  margin: 0;
  max-width: min(720px, 100%);
  color: rgba(220, 231, 246, 0.78);
  font-size: clamp(19px, 2vw, 30px);
  line-height: 1.45;
}

.policy-meta {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1px;
  margin: 12px 0 0;
  border-top: 1px solid rgba(145, 160, 181, 0.16);
  border-bottom: 1px solid rgba(145, 160, 181, 0.16);
}

.policy-meta div {
  padding: 18px 22px 20px;
  background: linear-gradient(180deg, rgba(17, 24, 33, 0.52), rgba(6, 10, 15, 0.08));
}

.policy-meta dt {
  margin-bottom: 8px;
  color: rgba(151, 168, 190, 0.78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.policy-meta dd {
  margin: 0;
  color: #f7fbff;
  font-size: 18px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.policy-meta a,
.policy-document a {
  color: #00d2ff;
  text-decoration: none;
}

.policy-meta a:hover,
.policy-document a:hover {
  color: #19f58b;
}

.policy-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(36px, 7vw, 108px);
  padding-top: 46px;
  min-width: 0;
}

.policy-toc {
  position: sticky;
  top: 110px;
  align-self: start;
  display: grid;
  gap: 8px;
  padding: 6px 0 6px 18px;
  border-left: 1px solid rgba(0, 210, 255, 0.32);
}

.policy-toc a {
  color: rgba(213, 224, 239, 0.66);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.policy-toc a:hover {
  color: #00d2ff;
  transform: translateX(4px);
}

.policy-document {
  max-width: 980px;
}

.policy-document section {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 0.62fr);
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(145, 160, 181, 0.14);
}

.policy-document section:first-child {
  padding-top: 0;
}

.policy-document h2 {
  margin: 0;
  color: #f7fbff;
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1.04;
}

.policy-document p,
.policy-document ul,
.policy-document .policy-link-grid {
  grid-column: 2;
}

.policy-document p {
  margin: 0;
  color: rgba(213, 224, 239, 0.76);
  font-size: 18px;
  line-height: 1.72;
}

.policy-document p + p,
.policy-document p + ul,
.policy-document ul + p {
  margin-top: 16px;
}

.policy-document ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.policy-document li {
  position: relative;
  padding: 8px 0 8px 24px;
  color: rgba(213, 224, 239, 0.78);
  font-size: 17px;
  line-height: 1.55;
}

.policy-document li::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00d2ff;
  box-shadow: 0 0 18px rgba(0, 210, 255, 0.48);
}

.policy-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.policy-link-grid a {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(145, 160, 181, 0.18);
  border-radius: 8px;
  background: rgba(17, 24, 33, 0.42);
}

.policy-link-grid strong {
  color: #00d2ff;
  font-size: 18px;
}

.policy-link-grid span {
  color: rgba(213, 224, 239, 0.72);
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .policy-hero,
  .policy-layout,
  .policy-document section {
    grid-template-columns: 1fr;
  }

  .policy-hero .fp-eyebrow,
  .policy-document p,
  .policy-document ul,
  .policy-document .policy-link-grid {
    grid-column: auto;
  }

  .policy-toc {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 0 22px;
    border-left: 0;
    border-bottom: 1px solid rgba(0, 210, 255, 0.24);
  }
}

@media (max-width: 720px) {
  .policy-page {
    width: calc(100vw - 15px);
    max-width: calc(100vw - 15px);
    padding-top: 100px;
    padding-right: 20px;
    padding-bottom: 48px;
    padding-left: 20px;
  }

  .policy-hero {
    gap: 22px;
    padding-bottom: 28px;
  }

  .policy-hero h1 {
    max-width: min(100%, 350px);
    font-size: clamp(40px, 12.8vw, 50px);
    line-height: 0.96;
    overflow-wrap: break-word;
  }

  .policy-hero p,
  .policy-document p {
    width: 100%;
    max-width: min(100%, 318px) !important;
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .policy-document li {
    max-width: min(100%, 306px);
  }

  .policy-hero,
  .policy-layout,
  .policy-document,
  .policy-document section,
  .policy-document ul {
    width: 100%;
    max-width: calc(100vw - 40px) !important;
  }

  .policy-meta dd,
  .policy-document li,
  .policy-link-grid span {
    overflow-wrap: anywhere;
  }

  .policy-meta {
    grid-template-columns: 1fr;
  }

  .policy-meta div {
    padding: 16px 0;
    background: transparent;
  }

  .policy-layout {
    gap: 28px;
    padding-top: 34px;
  }

  .policy-toc {
    grid-template-columns: 1fr;
  }

  .policy-document section {
    gap: 16px;
    padding: 32px 0;
  }

  .policy-link-grid {
    grid-template-columns: 1fr;
  }
}
