:root {
  --color-bg: #0b0a09;
  --color-bg-soft: #100f0d;
  --color-surface: #171512;
  --color-surface-raised: #201c18;
  --color-text: #f6f1ea;
  --color-muted: #b8aca0;
  --color-muted-strong: #d8cec3;
  --color-accent: #ff8200;
  --color-accent-strong: #f07100;
  --color-accent-soft: rgba(255, 130, 0, .14);
  --color-border: rgba(214, 174, 132, .18);
  --color-border-strong: rgba(255, 130, 0, .38);
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, .34);
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: var(--font-sans);
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 72px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  min-height: 100vh;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  line-height: 1.5;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

h1,
h2,
h3,
p,
a,
button {
  overflow-wrap: break-word;
}

.section-shell,
.site-header {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: var(--space-4);
  background: rgba(11, 10, 9, .82);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand img,
.hero-logo,
.routine-logo {
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(255, 130, 0, .16);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-5);
  color: var(--color-muted);
  font-size: 14px;
}

.main-nav a,
.site-footer a {
  text-decoration: none;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  max-width: 100%;
  line-height: 1.15;
  transition: transform .18s ease, border-color .18s ease, background-color .18s ease;
}

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

.button-primary {
  background: var(--color-accent);
  color: #160b00;
  border-color: rgba(255, 171, 73, .62);
}

.button-primary:hover {
  background: var(--color-accent-strong);
}

.button-secondary {
  background: rgba(255, 255, 255, .04);
  color: var(--color-text);
  border-color: var(--color-border);
}

.button-small {
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 9px;
  font-size: 13px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 470px);
  align-items: center;
  gap: clamp(20px, 2.8vw, 36px);
  padding: clamp(26px, 3vw, 40px) 0 clamp(14px, 1.8vw, 22px);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(52% 98% at 76% 58%, rgba(255, 130, 0, .12), transparent 62%),
    radial-gradient(44% 70% at 26% 8%, rgba(255, 130, 0, .06), transparent 62%);
}

.hero-copy {
  max-width: 560px;
  min-width: 0;
}

.hero-logo {
  display: block;
  margin-bottom: 18px;
}

.eyebrow {
  margin: 0 0 var(--space-2);
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--color-text);
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  margin-bottom: var(--space-3);
  font-size: clamp(48px, 7vw, 78px);
}

.hero-headline {
  margin: 0 0 clamp(10px, 1.2vw, 14px);
  font-size: clamp(42px, 5.2vw, 68px);
  font-weight: 900;
  line-height: .96;
}

.hero-headline span {
  display: block;
}

.hero-headline em {
  color: var(--color-accent);
  font-style: normal;
}

h2 {
  margin-bottom: var(--space-3);
  font-size: clamp(28px, 4vw, 44px);
}

h3 {
  margin-bottom: var(--space-2);
  font-size: 18px;
}

.subtitle {
  margin-bottom: var(--space-3);
  color: var(--color-muted-strong);
  font-size: clamp(22px, 3vw, 31px);
  font-weight: 800;
}

.hero-text,
.feature-grid p,
.routine-card p {
  color: var(--color-muted);
}

.hero-text {
  max-width: 520px;
  margin-bottom: clamp(12px, 1.4vw, 18px);
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.34;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 1vw, 16px);
  margin-bottom: clamp(10px, 1.1vw, 14px);
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 16px;
}

.hero-benefit-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 16px;
  background: rgba(11, 10, 9, .5);
  color: rgba(247, 241, 229, .9);
  font-size: 16px;
  font-weight: 400;
}

.hero-benefit-chip > span {
  color: var(--color-accent);
  font-size: 25px;
  line-height: 1;
}

.hero-rating-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: rgba(247, 241, 229, .72);
  font-size: 18px;
}

.hero-rating-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-rating-item > span {
  color: var(--color-accent);
  font-size: 30px;
  line-height: 1;
}

.hero-rating-item strong {
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.hero-rating-sep {
  color: rgba(247, 241, 229, .36);
}


.app-screen {
  min-height: 390px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 24px;
  background: #12100e;
}

.screen-top,
.routine-lines span {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
}

.screen-top {
  margin-bottom: var(--space-5);
  color: var(--color-muted);
  font-size: 11px;
}

.screen-top strong {
  color: var(--color-text);
}

.screen-ring {
  display: grid;
  width: 162px;
  height: 162px;
  place-items: center;
  margin: var(--space-3) auto var(--space-5);
  border: 12px solid rgba(255, 130, 0, .18);
  border-top-color: var(--color-accent);
  border-right-color: var(--color-accent);
  border-radius: 50%;
}

.screen-ring span {
  font-size: 34px;
  font-weight: 900;
}

.app-screen h2 {
  margin-bottom: var(--space-1);
  font-size: 20px;
  text-align: center;
}

.app-screen p {
  margin-bottom: var(--space-5);
  color: var(--color-muted);
  text-align: center;
}

.screen-controls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
}

.screen-controls span,
.playlist-card,
.add-row,
.routine-lines span {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, .04);
}

.screen-controls span {
  height: 38px;
}

.routine-lines {
  display: grid;
  gap: 10px;
}

.routine-lines span {
  padding: 12px;
  color: var(--color-muted);
}

.routine-lines b,
.routine-lines em {
  color: var(--color-text);
  font-style: normal;
}

.add-row,
.playlist-card {
  margin-top: var(--space-3);
  padding: 13px;
}

.add-row {
  color: var(--color-accent);
  font-weight: 800;
}

.playlist-card {
  color: var(--color-text);
  font-weight: 800;
}

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

.music-bar {
  display: flex;
  align-items: end;
  gap: 7px;
  height: 86px;
  margin-top: var(--space-5);
}

.music-bar span {
  width: 18px;
  border-radius: 99px 99px 0 0;
  background: var(--color-accent);
}

.music-bar span:nth-child(1) { height: 36px; }
.music-bar span:nth-child(2) { height: 68px; }
.music-bar span:nth-child(3) { height: 46px; }
.music-bar span:nth-child(4) { height: 78px; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(6px, .9vw, 10px);
  padding: 0;
}

.stats div {
  display: grid;
  gap: 0;
  min-width: 0;
  color: var(--color-muted);
  text-align: left;
  padding-right: clamp(10px, 1vw, 16px);
}

.stats div + div {
  border-left: 1px solid rgba(255, 255, 255, .14);
  padding-left: clamp(10px, 1vw, 16px);
}

.stats strong {
  color: var(--color-text);
  font-size: clamp(22px, 1.5vw, 28px);
  line-height: 1;
}

.stats span {
  font-size: 13px;
}

.hero-stats {
  max-width: 520px;
}

.features,
.screens-editorial-section,
.music-focus,
.reviews,
.seo-faq,
.final-cta {
  padding-block: var(--space-8);
}

.section-heading {
  max-width: 680px;
  min-width: 0;
  margin-bottom: var(--space-5);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 22px);
}

.feature-grid article,
.routine-card {
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-surface);
}

.feature-grid article {
  min-height: 0;
  padding: 0;
  border-color: transparent;
  background: transparent;
}

.screens-editorial-section {
  position: relative;
  width: 100%;
  margin-inline: 0;
  padding: 0;
  --screens-fade: 0;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 130, 0, .10), transparent 1px),
    radial-gradient(circle at 50% 8%, rgba(255, 130, 0, .10), transparent 30%),
    #050505;
  color: var(--color-text);
  overflow: hidden;
}

.screens-editorial-section::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background: rgba(5, 5, 5, calc(var(--screens-fade) * .64));
}

.screens-editorial-inner {
  width: min(1120px, calc(100% - 40px));
  min-height: clamp(840px, 118vh, 1280px);
  margin-inline: auto;
  padding: clamp(18px, 2.4vw, 34px) 0 clamp(56px, 6vw, 82px);
}

.screens-sticky-layer {
  position: sticky;
  top: clamp(64px, 8vh, 88px);
  z-index: 0;
  display: grid;
  min-height: clamp(230px, 30vh, 340px);
  align-content: start;
  border-top: 1px solid rgba(255, 130, 0, .32);
  border-bottom: 0;
  padding: clamp(18px, 2.4vw, 32px) 0 clamp(16px, 2.2vw, 30px);
  opacity: calc(1 - (var(--screens-fade) * .72));
  transform: translateY(calc(var(--screens-fade) * -16px));
  transition: opacity .18s linear, transform .18s linear;
}

.screens-eyebrow {
  position: absolute;
  top: clamp(25px, 2.95vw, 42px);
  left: 41%;
  margin: 0;
  color: rgba(247, 241, 229, .68);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(14px, 1.35vw, 20px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-transform: lowercase;
}

.screens-brand-wall {
  display: flex;
  width: 100%;
  min-width: 0;
  align-items: baseline;
  margin: clamp(18px, 1.8vw, 28px) 0 0;
  color: rgba(247, 241, 229, .86);
  font-family: "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(86px, 13vw, 186px);
  font-weight: 900;
  line-height: .9;
  letter-spacing: 0;
  white-space: nowrap;
  transform: scaleX(1);
  transform-origin: left center;
}

.screens-brand-hiit,
.screens-brand-music {
  display: inline-block;
  transition: color .9s cubic-bezier(.2, .8, .2, 1), opacity .9s cubic-bezier(.2, .8, .2, 1);
}

.screens-brand-hiit {
  color: rgba(247, 241, 229, .78);
}

.screens-brand-music {
  color: rgba(247, 241, 229, .74);
  transform: scale(.975);
  transform-origin: left baseline;
}

.screens-editorial-section.is-active .screens-brand-hiit {
  color: var(--color-accent);
}

.screens-scroll-content {
  position: relative;
  z-index: 2;
  margin-top: clamp(18px, 2vw, 30px);
}

.screens-copy-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 42px);
  margin-bottom: clamp(8px, 1.1vw, 16px);
  padding-bottom: clamp(10px, 1.4vw, 18px);
  border-bottom: 0;
}

.screens-copy-item {
  min-width: 0;
  max-width: 340px;
  transform: translateY(calc((1 - var(--screens-fade)) * 18px));
  opacity: calc(.88 + (var(--screens-fade) * .12));
  transition: opacity .18s linear, transform .18s linear;
}

.screens-copy-item h3 {
  margin: 0 0 8px;
  color: #fff4df;
  font-size: clamp(14px, .95vw, 16px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: lowercase;
}

.screens-copy-item p {
  margin: 0;
  color: rgba(247, 241, 229, .70);
  font-size: clamp(13px, .9vw, 15px);
  line-height: 1.24;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: clamp(4px, .9vw, 14px);
  transform: translateY(calc((1 - var(--screens-fade)) * 8px));
  transition: transform .18s linear;
}

.screenshot-frame {
  display: grid;
  min-width: 0;
  margin: 0;
  place-items: end center;
  opacity: calc(.76 + (var(--screens-fade) * .24));
  overflow: visible;
  transition: opacity .18s linear;
}

.screenshot-frame img {
  display: block;
  width: 100%;
  max-width: 410px;
  height: clamp(500px, 48vw, 700px);
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 28px 54px rgba(0, 0, 0, .44));
}

.feature-icon {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: var(--space-4);
  border: 1px solid var(--color-border-strong);
  border-radius: 13px;
  background: rgba(255, 130, 0, .08);
}

.feature-icon::before,
.feature-icon::after {
  position: absolute;
  content: "";
  border-color: var(--color-accent);
}

.feature-icon-timer::before {
  inset: 9px;
  border: 2px solid var(--color-accent);
  border-radius: 50%;
}

.feature-icon-timer::after {
  left: 20px;
  top: 12px;
  width: 8px;
  height: 10px;
  border-left: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
}

.feature-icon-custom::before {
  left: 10px;
  right: 10px;
  top: 12px;
  height: 4px;
  border-top: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
}

.feature-icon-custom::after {
  left: 13px;
  right: 13px;
  bottom: 12px;
  border-top: 2px solid var(--color-accent);
}

.feature-icon-music::before {
  left: 14px;
  top: 9px;
  width: 12px;
  height: 18px;
  border-left: 2px solid var(--color-accent);
  border-top: 2px solid var(--color-accent);
}

.feature-icon-music::after {
  left: 10px;
  bottom: 9px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--color-accent);
  border-radius: 50%;
}

.feature-icon-share::before {
  left: 9px;
  top: 13px;
  width: 24px;
  height: 14px;
  border-top: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  transform: skewY(-28deg);
}

.feature-icon-share::after {
  left: 8px;
  top: 8px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--color-accent);
  border-radius: 50%;
}

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

  .button {
    transition: none;
  }

  .screens-sticky-layer,
  .screens-brand-hiit,
  .screens-brand-music,
  .screens-copy-item,
  .screenshots-grid,
  .screenshot-frame {
    transition: none;
  }

  .screens-editorial-section {
    --screens-fade: .72;
  }

  .button:hover {
    transform: none;
  }
}

.reviews-header {
  margin-bottom: clamp(28px, 4vw, 44px);
}

.reviews-header p:last-child {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(247, 241, 229, .66);
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(260px, .82fr) minmax(0, 1.18fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: stretch;
  margin-bottom: clamp(18px, 2.6vw, 28px);
}

.rating-card {
  position: relative;
  min-width: 0;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(255, 130, 0, .12);
  border-radius: 16px;
  background:
    radial-gradient(circle at top right, rgba(255, 130, 0, .10), transparent 58%),
    rgba(255, 130, 0, .04);
}

.rating-main {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
}

.rating-score {
  color: #fff4df;
  font-size: clamp(52px, 7vw, 74px);
  font-weight: 900;
  line-height: 1;
}

.rating-star-icon {
  color: var(--color-accent);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
}

.rating-label {
  margin-bottom: 6px;
  color: rgba(247, 241, 229, .68);
  font-size: 14px;
}

.rating-count {
  margin-bottom: clamp(18px, 2.4vw, 28px);
  color: var(--color-accent);
  font-weight: 800;
}

.rating-bars {
  display: grid;
  gap: 10px;
  margin-bottom: clamp(18px, 2vw, 24px);
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rating-bar-label {
  min-width: 18px;
  color: rgba(247, 241, 229, .58);
  font-size: 13px;
  text-align: center;
}

.rating-bar-track {
  flex: 1;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 130, 0, .10);
}

.rating-bar-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-accent), rgba(255, 130, 0, .76));
}

.rating-footer {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0;
  color: rgba(247, 241, 229, .48);
  font-size: 12px;
}

.rating-footer-icon {
  display: inline-grid;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--color-accent);
  border-radius: 50%;
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 900;
}

.review-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 18px);
}

.review-card {
  min-width: 0;
  padding: clamp(18px, 2.2vw, 24px);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: rgba(12, 11, 10, .52);
}

.review-stars {
  display: block;
  margin-bottom: 12px;
  color: var(--color-accent);
  font-size: 15px;
  letter-spacing: 1px;
}

.review-quote {
  margin-bottom: 12px;
  color: rgba(247, 241, 229, .9);
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.45;
}

.review-source {
  margin-bottom: 0;
  color: rgba(247, 241, 229, .54);
  font-size: 13px;
}

.review-wide-card {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 30px);
  margin-bottom: clamp(24px, 3.2vw, 38px);
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(255, 130, 0, .16);
  border-radius: 16px;
  background: rgba(255, 130, 0, .055);
}

.review-wide-icon {
  display: grid;
  width: clamp(50px, 6vw, 70px);
  height: clamp(50px, 6vw, 70px);
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  color: var(--color-accent);
  font-size: clamp(26px, 4vw, 38px);
}

.review-wide-quote {
  margin-bottom: 8px;
  color: rgba(247, 241, 229, .9);
  font-size: clamp(16px, 1.2vw, 19px);
  font-weight: 700;
  line-height: 1.42;
}

.review-wide-source {
  margin-bottom: 0;
  color: rgba(247, 241, 229, .54);
  font-size: 13px;
}

.reviews-cta {
  text-align: center;
}

.reviews-cta-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border: 1px solid var(--color-accent);
  border-radius: 10px;
  color: var(--color-accent);
  font-weight: 800;
  text-decoration: none;
}

.seo-faq {
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.seo-faq-heading {
  margin-bottom: clamp(24px, 3.4vw, 38px);
}

.seo-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.seo-faq-item {
  min-width: 0;
  padding: clamp(18px, 2.2vw, 24px);
  border: 1px solid rgba(255, 130, 0, .15);
  border-radius: 12px;
  background:
    radial-gradient(circle at top right, rgba(255, 130, 0, .07), transparent 56%),
    rgba(10, 10, 9, .44);
}

.seo-faq-item h3 {
  margin: 0 0 10px;
  color: #fff4df;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.14;
}

.seo-faq-item p {
  margin: 0;
  color: rgba(247, 241, 229, .72);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.45;
}

.final-cta {
  padding-block: clamp(48px, 6vw, 72px);
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 130, 0, .08), transparent 40%),
    #070706;
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(26px, 4vw, 48px);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(255, 130, 0, .20);
  border-radius: 16px;
  background:
    radial-gradient(circle at top right, rgba(255, 130, 0, .07), transparent 62%),
    rgba(7, 7, 6, .42);
}

.cta-content h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 44px);
}

.cta-subtitle {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(247, 241, 229, .72);
}

.cta-action {
  display: grid;
  gap: 12px;
  justify-items: center;
}

.cta-note {
  margin-bottom: 0;
  color: rgba(247, 241, 229, .50);
  font-size: 13px;
}

.site-footer {
  padding-block: clamp(42px, 6vw, 64px);
  border-top: 1px solid rgba(255, 255, 255, .06);
  background: #070706;
  color: var(--color-text);
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.footer-brand h3 {
  margin-bottom: 10px;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-brand p {
  max-width: 390px;
  margin-bottom: 0;
  color: rgba(247, 241, 229, .64);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 2.4vw, 28px);
  justify-content: flex-end;
}

.footer-nav a {
  color: rgba(247, 241, 229, .74);
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  margin-top: clamp(28px, 4vw, 44px);
  padding-top: clamp(20px, 3vw, 30px);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-copyright {
  margin-bottom: 0;
  color: rgba(247, 241, 229, .46);
  font-size: 12px;
  text-align: center;
}

.routine-page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.routine-header {
  position: relative;
  flex: 0 0 auto;
}

.routine-shell {
  display: grid;
  flex: 1;
  width: min(100%, 520px);
  place-items: center;
  margin: 0 auto;
  padding: var(--space-6) 20px var(--space-8);
}

.routine-card {
  width: 100%;
  min-width: 0;
  padding: var(--space-6);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.support-page .routine-header {
  align-items: center;
}

.support-header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.support-page .routine-shell {
  width: min(100%, 920px);
  display: grid;
  gap: 14px;
  align-items: start;
}

.support-page .routine-card {
  text-align: left;
}

.support-page .routine-card h1 {
  margin-bottom: 12px;
}

.support-page .routine-card h2 {
  margin-bottom: 10px;
  font-size: clamp(24px, 3.3vw, 32px);
  line-height: 1.1;
}

.support-page .routine-card h3 {
  margin: 14px 0 8px;
  font-size: 18px;
}

.support-page .routine-logo {
  margin-bottom: 16px;
}

.support-page .routine-actions {
  margin-bottom: 12px;
}

.support-page .routine-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--color-muted);
}

.support-page .routine-card li + li {
  margin-top: 6px;
}

.routine-logo {
  margin-bottom: var(--space-5);
}

.routine-card h1 {
  margin-bottom: var(--space-3);
  font-size: clamp(30px, 8vw, 44px);
}

.routine-card p {
  margin-bottom: var(--space-5);
}

.routine-actions {
  display: grid;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.info-note {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
    gap: clamp(16px, 2.6vw, 28px);
    padding-top: clamp(24px, 3vw, 34px);
  }

  .hero-headline {
    font-size: clamp(40px, 5.1vw, 58px);
  }

  .hero-text {
    font-size: clamp(16px, 1.45vw, 19px);
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 10px;
  }

  .hero-stats div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
    padding: 10px 0 0;
  }

  .hero-stats div:nth-child(-n+2) {
    border-top: 0;
    padding-top: 0;
  }

  .phone-stage {
    min-height: auto;
  }

  .phone {
    min-height: 410px;
  }

  .app-screen {
    min-height: 352px;
  }

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

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

  .screens-brand-wall {
    font-size: clamp(92px, 16.5vw, 172px);
    transform: scaleX(1);
  }

  .screens-eyebrow {
    left: clamp(350px, 44.5vw, 365px);
  }

  .screens-sticky-layer {
    min-height: clamp(185px, 31vw, 260px);
  }

  .screenshots-grid {
    gap: clamp(6px, 1vw, 12px);
  }

  .screenshot-frame img {
    height: clamp(500px, 57vw, 680px);
  }

  .music-focus {
    grid-template-columns: minmax(0, 1fr) minmax(220px, .8fr);
  }
}

@media (max-width: 760px) {
  .section-shell,
  .site-header {
    width: min(1120px, calc(100% - 28px));
  }

  .site-header {
    min-height: 64px;
    padding-right: 88px;
  }

  .main-nav {
    display: none;
  }

  .site-header:not(.routine-header) .header-cta {
    display: inline-flex !important;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 20;
    min-height: 38px;
    padding: 8px 12px;
    border-radius: 9px;
    font-size: 12px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .22);
  }

  .button {
    min-height: 44px;
    padding-inline: 14px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: clamp(8px, 2vw, 14px);
    min-height: calc(100svh - 64px);
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    align-content: start;
  }

  .hero-copy {
    max-width: 100%;
    overflow: hidden;
  }

  .eyebrow {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  .hero-headline {
    display: block;
    margin-bottom: 14px;
    font-size: clamp(42px, 10.2vw, 56px);
    font-weight: 900;
    line-height: .94;
  }

  .hero-text {
    display: block;
    max-width: 100%;
    margin: 0 0 18px;
    color: rgba(247, 241, 229, .74);
    font-size: clamp(18px, 4.5vw, 22px);
    line-height: 1.34;
  }

  .hero-benefits {
    gap: 10px;
    margin-bottom: 16px;
  }

  .hero-benefit-chip {
    min-height: 42px;
    padding: 9px 14px;
    border-radius: 14px;
    font-size: clamp(14px, 3.9vw, 17px);
  }

  .hero-benefit-chip > span {
    font-size: clamp(18px, 5vw, 23px);
  }

  .hero-rating-line {
    gap: 8px;
    margin-bottom: 12px;
    font-size: clamp(16px, 4vw, 17px);
  }

  .hero-rating-item > span {
    font-size: clamp(20px, 5.4vw, 24px);
  }

  .hero-rating-item strong {
    font-size: clamp(40px, 9.6vw, 50px);
  }

  .button-row {
    display: none;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-top: 2px;
  }

  .hero-stats strong {
    font-size: clamp(22px, 8vw, 28px);
  }

  .hero-stats span {
    font-size: 14px;
  }

  .phone-stage {
    grid-template-columns: 1fr;
    max-width: 330px;
    margin-inline: auto;
  }

  .phone {
    min-height: 0;
    transform: none;
  }

  .phone-editor,
  .phone-list {
    display: none;
  }

  .stats {
    width: 100%;
    padding-top: 0;
  }

  .features,
  .screens-editorial-section,
  .music-focus,
  .reviews,
  .seo-faq,
  .final-cta {
    padding-block: var(--space-7);
  }

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

  .reviews-layout,
  .review-cards-grid,
  .seo-faq-grid,
  .cta-card,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .review-wide-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-action {
    justify-items: stretch;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .screenshots-grid,
  .music-focus {
    grid-template-columns: 1fr;
  }

  .screens-editorial-inner {
    width: min(1120px, calc(100% - 28px));
    min-height: auto;
    padding: 34px 0 58px;
  }

  .screens-sticky-layer {
    position: relative;
    top: auto;
    min-height: 0;
    padding: 20px 0 24px;
  }

  .screens-eyebrow {
    position: static;
    margin: 0 0 6px;
    font-size: clamp(14px, 4.8vw, 20px);
  }

  .screens-brand-wall {
    display: grid;
    font-size: clamp(70px, 24vw, 112px);
    line-height: .76;
    white-space: normal;
    margin: 0;
    transform: none;
  }

  .screens-brand-hiit,
  .screens-brand-music {
    display: block;
  }

  .screens-scroll-content {
    margin-top: 22px;
  }

  .screens-copy-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 12px;
    padding-bottom: 14px;
  }

  .screens-copy-item h3 {
    font-size: clamp(16px, 5vw, 20px);
  }

  .screens-copy-item p {
    font-size: clamp(14px, 4.2vw, 17px);
  }

  .screens-copy-item {
    max-width: 360px;
  }

  .screenshots-grid {
    gap: 14px;
  }

  .screenshot-frame {
    width: min(100%, 360px);
    margin-inline: auto;
  }

  .screenshot-frame img {
    max-width: 316px;
    height: auto;
    max-height: 590px;
  }

  .music-focus {
    padding-inline: var(--space-5);
  }

  .music-focus-media img {
    width: min(100%, 300px);
    max-height: 430px;
  }

  .feature-grid article {
    min-height: auto;
  }

  .final-cta,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .routine-shell {
    padding-top: var(--space-4);
  }

  .routine-card {
    padding: var(--space-5);
  }

  .support-header-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .brand span {
    font-size: 15px;
  }

  .routine-header .button {
    display: inline-flex;
    max-width: 126px;
    font-size: 12px;
  }

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

  .section-shell,
  .site-header {
    width: calc(100% - 24px);
    max-width: 1120px;
  }
}

/* Hero restore (without touching HIITmusic section) */
.hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 350px);
  align-items: center;
  min-height: calc(100svh - 72px);
  gap: clamp(28px, 3.4vw, 52px);
  padding: clamp(18px, 2.2vw, 30px) max(20px, calc((100vw - 1120px) / 2)) clamp(18px, 2vw, 30px);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(52% 92% at 79% 56%, rgba(255, 130, 0, .11), transparent 66%),
    radial-gradient(44% 70% at 24% 8%, rgba(255, 130, 0, .05), transparent 64%),
    #070706;
  overflow: hidden;
}

.hero-copy {
  max-width: 720px;
  padding-left: 0;
}

.hero-headline {
  margin: 0 0 clamp(14px, 1.35vw, 20px);
  font-size: clamp(42px, 4.35vw, 62px);
  line-height: 1.02;
  font-weight: 900;
}

.hero-headline span {
  display: block;
}

.hero-headline em {
  color: var(--color-accent);
  font-style: normal;
}

.hero-text {
  max-width: 580px;
  margin-bottom: clamp(20px, 1.9vw, 28px);
  color: rgba(247, 241, 229, .72);
  font-size: clamp(18px, 1.2vw, 23px);
  line-height: 1.36;
}

.button-row {
  gap: clamp(14px, 1.2vw, 20px);
}

.hero .button-secondary {
  border-color: rgba(255, 130, 0, .45);
  background: rgba(12, 11, 10, .6);
}


@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: calc(100svh - 72px);
    gap: clamp(16px, 3vw, 24px);
    padding-top: clamp(22px, 3.3vw, 30px);
  }

  .hero-copy {
    max-width: 100%;
    padding-left: 0;
  }
}

@media (max-width: 760px) {
  .hero {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    min-height: auto;
    gap: clamp(4px, 1.2vw, 8px);
    padding-top: clamp(12px, 3.4vw, 20px);
    padding-left: max(14px, env(safe-area-inset-left));
    padding-right: max(14px, env(safe-area-inset-right));
    padding-bottom: 0;
    text-align: left;
  }

  .hero-copy {
    width: 100%;
    max-width: 620px;
    margin-inline: auto;
  }

  .eyebrow {
    margin-bottom: 10px;
    color: var(--color-accent);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
  }

  .hero-headline {
    margin-bottom: 12px;
    font-size: clamp(34px, 9vw, 42px);
    line-height: .98;
    font-weight: 900;
    text-wrap: balance;
  }

  .hero-text {
    max-width: 34ch;
    margin: 0 0 14px;
    color: rgba(247, 241, 229, .70);
    font-size: clamp(15px, 4vw, 18px);
    line-height: 1.34;
  }

  .hero-benefits {
    flex-wrap: nowrap;
    gap: 5px;
    margin-bottom: 10px;
  }

  .hero-benefit-chip {
    flex: 0 1 auto;
    min-height: 36px;
    padding: 8px 7px;
    border-radius: 12px;
    border-color: rgba(247, 241, 229, .24);
    background: rgba(8, 8, 7, .46);
    color: rgba(247, 241, 229, .86);
    gap: 5px;
    font-size: clamp(11px, 3.1vw, 13px);
    line-height: 1;
    white-space: nowrap;
  }

  .hero-benefit-chip > span {
    font-size: clamp(14px, 3.7vw, 16px);
  }

  .hero-rating-line {
    flex-wrap: nowrap;
    gap: 7px;
    margin: 0 0 4px;
    color: rgba(247, 241, 229, .62);
    font-size: clamp(13px, 3.5vw, 15px);
  }

  .hero-rating-item {
    gap: 6px;
    white-space: nowrap;
  }

  .hero-rating-item > span {
    font-size: clamp(16px, 4.3vw, 19px);
    opacity: 1;
  }

  .hero-rating-item strong {
    color: #fff;
    font-size: clamp(23px, 6.1vw, 28px);
    font-weight: 900;
    line-height: .95;
  }

  .hero-rating-sep {
    color: rgba(247, 241, 229, .38);
    opacity: 1;
  }

  .button-row {
    justify-content: flex-start;
    width: 100%;
    margin-inline: 0;
  }
}

@media (max-width: 370px) {
  .hero-benefits {
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .hero-benefits::-webkit-scrollbar {
    display: none;
  }

  .hero-benefit-chip {
    flex: 0 0 auto;
  }
}
