:root {
  --bg: #f6f1ff;
  --bg-deep: #efe5ff;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --text: #111111;
  --muted: #5b5870;
  --line: rgba(123, 44, 191, 0.12);
  --berry: #7b2cbf;
  --plum: #6a0dad;
  --terracotta: #9d4edd;
  --gold: #caa8ff;
  --shadow: 0 28px 70px rgba(90, 0, 157, 0.14);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(157, 78, 221, 0.2), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(123, 44, 191, 0.18), transparent 24%),
    linear-gradient(180deg, #fbf9ff 0%, var(--bg) 46%, #ede3ff 100%);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.page-shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding-bottom: 48px;
}

.legal-shell {
  max-width: 980px;
}

.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #7b2cbf, #6a0dad 48%, #9d4edd);
  transition:
    opacity 500ms ease,
    visibility 500ms ease;
}

.loading-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-screen__glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  filter: blur(30px);
  animation: pulse-glow 1.7s ease-in-out infinite;
}

.loading-screen__content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 12px;
}

.loading-mark {
  display: grid;
  place-items: center;
  width: 188px;
  height: 188px;
}

.loading-mark img {
  width: 154px;
  height: 154px;
  object-fit: contain;
  animation: pulse-mark 1.6s ease-in-out infinite;
}

.loading-brand,
.loading-copy {
  margin: 0;
  color: #ffffff;
}

.loading-brand {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.loading-copy {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 20px 0 18px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(123, 44, 191, 0.1);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(90, 0, 157, 0.08);
}

.brandmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brandmark__logo,
.footer-brand__logo,
.cta-panel__logo {
  object-fit: contain;
}

.brandmark__logo {
  width: 42px;
  height: 42px;
}

.brandmark__lockup {
  display: grid;
  gap: 2px;
}

.brandmark__text,
.brand-footer {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.brandmark__tag {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}

.site-nav,
.header-actions,
.hero-actions,
.footer-links,
.signal-grid {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.site-nav a,
.footer-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}

.mobile-nav {
  display: none;
}

.mobile-nav__toggle {
  list-style: none;
  cursor: pointer;
  font-weight: 800;
  color: var(--text);
}

.mobile-nav__toggle::-webkit-details-marker {
  display: none;
}

.mobile-nav__panel {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.mobile-nav__panel a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}

.site-nav a[aria-current="page"],
.footer-links a[aria-current="page"] {
  color: var(--berry);
}

.site-nav a:hover,
.footer-links a:hover,
.privacy-item a:hover {
  color: var(--berry);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

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

.button--solid {
  color: #ffffff;
  background: linear-gradient(135deg, var(--berry), var(--terracotta));
  box-shadow: 0 16px 34px rgba(123, 44, 191, 0.26);
}

.button--ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(123, 44, 191, 0.16);
}

.button--large {
  min-height: 56px;
  padding: 0 24px;
}

.section {
  margin: 30px 0;
}

.legal-page {
  padding-top: 12px;
}

.legal-hero,
.legal-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.legal-hero {
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(244, 235, 255, 0.92)),
    var(--surface-strong);
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.legal-subtitle,
.legal-updated,
.legal-card p {
  color: var(--muted);
}

.legal-subtitle {
  max-width: 44rem;
  margin: 18px 0 0;
  font-size: 1.04rem;
  line-height: 1.7;
}

.legal-updated {
  margin: 18px 0 0;
  font-size: 0.92rem;
  font-weight: 700;
}

.legal-grid {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.legal-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
}

.legal-card h2 {
  margin: 0 0 14px;
  font-size: 1.32rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.legal-card p {
  margin: 0 0 12px;
  line-height: 1.72;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card a {
  color: var(--berry);
  font-weight: 700;
}

.legal-header,
.legal-footer {
  margin-top: 20px;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
  min-height: auto;
  padding: 34px 0 10px;
}

.hero-copy,
.privacy-panel,
.cta-panel,
.stats-band,
.step-card,
.feature-card,
.glass-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  display: grid;
  gap: 20px;
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(245, 239, 255, 0.92)),
    var(--surface-strong);
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto -10% -18% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157, 78, 221, 0.18), transparent 70%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--berry);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hero h1,
.section-heading h2,
.cta-panel h2 {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  max-width: 9ch;
}

.hero h1 span {
  display: block;
  color: var(--berry);
}

.hero-copy__lede,
.cta-panel p,
.feature-card p,
.step-card p,
.privacy-item p,
.stat-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
}

.hero-copy__lede {
  max-width: 37rem;
  margin: 0;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(123, 44, 191, 0.08);
  color: var(--plum);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
}

.hero-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-proof {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(123, 44, 191, 0.12);
  background: rgba(255, 255, 255, 0.7);
}

.hero-proof p {
  margin: 0;
  color: var(--berry);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-proof span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.hero-stage {
  position: relative;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 0;
}

.hero-stage__halo {
  position: absolute;
  inset: 20% 12% auto;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157, 78, 221, 0.26), transparent 68%);
  filter: blur(18px);
}

.hero-stage__logo-wrap {
  display: grid;
  place-items: center;
  margin-bottom: -10px;
}

.hero-stage__logo {
  width: 184px;
  height: 184px;
  object-fit: contain;
  filter: drop-shadow(0 20px 34px rgba(106, 13, 173, 0.18));
  animation: pulse-mark 2.4s ease-in-out infinite;
}

.hero-video-card {
  padding: 18px;
}

.hero-stage__glance {
  display: grid;
  gap: 14px;
}

.hero-glance-card {
  padding: 18px 20px;
}

.glass-card {
  position: relative;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(20px);
}

.glass-card h2 {
  margin: 8px 0 10px;
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 800;
  line-height: 1.05;
}

.card-label,
.stat-kicker,
.step-index,
.feature-title,
.privacy-item h3 {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.card-label {
  margin: 0;
  color: var(--berry);
}

.card-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.rhythm-card {
  margin-left: 42px;
}

.signal-card {
  margin-right: 50px;
}

.rhythm-meter {
  width: 100%;
  height: 14px;
  margin: 18px 0 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(95, 49, 90, 0.12);
}

.rhythm-meter__fill {
  display: block;
  width: 82%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--terracotta), var(--berry));
}

.rhythm-stat {
  margin: 0 0 12px;
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.35;
}

.hero-glance-card .rhythm-stat {
  margin: 6px 0 0;
  font-size: 1rem;
  line-height: 1.5;
}

.signal-grid span {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(123, 44, 191, 0.08);
  color: var(--plum);
  font-weight: 700;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.72);
}

.stats-band article {
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(123, 44, 191, 0.1);
}

.section--split,
.privacy-grid,
.feature-grid,
.steps,
.week-grid {
  display: grid;
  gap: 18px;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.section-intro {
  max-width: 46rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.section-heading h2,
.cta-panel h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
}

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

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

.step-card,
.feature-card,
.week-card,
.privacy-item {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
}

.week-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.week-day {
  margin: 0;
  color: var(--berry);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.week-card h3 {
  margin: 10px 0 8px;
  font-size: 1.18rem;
}

.week-card p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.step-index {
  color: var(--terracotta);
  font-size: 0.95rem;
}

.step-card h3,
.privacy-item h3,
.feature-title {
  margin: 10px 0;
  font-size: 1.25rem;
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 12px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(123, 44, 191, 0.14), rgba(255, 255, 255, 0.94));
  color: var(--berry);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-icon svg * {
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-icon--wide {
  width: 58px;
  height: 58px;
}

.feature-icon--inverse {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

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

.feature-grid--overview .feature-card {
  grid-column: span 4;
}

.feature-card {
  grid-column: span 4;
}

.feature-card--wide {
  grid-column: span 8;
}

.feature-card--accent {
  grid-column: span 8;
  background: linear-gradient(145deg, rgba(123, 44, 191, 0.95), rgba(106, 13, 173, 0.92));
  color: #ffffff;
}

.feature-card--accent p {
  color: rgba(255, 255, 255, 0.84);
}

.privacy-panel,
.cta-panel {
  padding: 28px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(241, 233, 255, 0.88)),
    var(--surface-strong);
}

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

.video-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 24px;
  align-items: start;
}

.video-copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

.story-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.story-pill-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(123, 44, 191, 0.12);
  color: var(--plum);
  font-size: 0.92rem;
  font-weight: 700;
}

.video-benefits {
  display: grid;
  gap: 14px;
}

.video-benefit {
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(123, 44, 191, 0.12);
  background: rgba(255, 255, 255, 0.74);
}

.video-benefit__label,
.video-stage__shots p {
  margin: 0;
  color: var(--berry);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.video-benefit__text,
.video-stage__shots span {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.video-stage {
  position: relative;
  padding: 18px;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(241, 229, 255, 0.84));
  border: 1px solid rgba(123, 44, 191, 0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.video-stage__glow {
  position: absolute;
  inset: 24px 16% auto;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 44, 191, 0.22), transparent 68%);
  filter: blur(18px);
}

.video-stage__card {
  position: relative;
  display: grid;
  gap: 18px;
}

.video-stage__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.video-stage__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(123, 44, 191, 0.1);
  color: var(--plum);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.video-stage__screen {
  position: relative;
  min-height: 540px;
  padding: 0;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.22), transparent 26%),
    linear-gradient(180deg, rgba(69, 22, 110, 0.78), rgba(25, 11, 41, 0.94)),
    linear-gradient(145deg, #7b2cbf, #6a0dad);
}

.video-stage__screen::before,
.video-stage__screen::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.video-stage__screen::before {
  width: 180px;
  height: 180px;
  right: -40px;
  top: 90px;
}

.video-stage__screen::after {
  width: 140px;
  height: 140px;
  left: -26px;
  bottom: 140px;
}

.video-stage__overlay {
  position: relative;
  z-index: 1;
  max-width: 22rem;
}

.walkthrough-video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: contain;
  background: #1d0f30;
}

.video-stage__details {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 14px;
  align-items: start;
}

.video-stage__eyebrow {
  margin: 0 0 10px;
  color: var(--berry);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.video-stage__summary {
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(123, 44, 191, 0.12);
}

.video-stage__summary h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.video-stage__caption {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.video-stage__shots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-self: stretch;
}

.video-stage__shots article {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(123, 44, 191, 0.12);
}

.pricing-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.pricing-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(123, 44, 191, 0.08);
  color: var(--plum);
  border: 1px solid rgba(123, 44, 191, 0.12);
  font-size: 0.94rem;
  font-weight: 700;
}

.pricing-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.pricing-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(123, 44, 191, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  text-align: center;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

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

.pricing-tab.is-active {
  background: linear-gradient(135deg, var(--berry), var(--terracotta));
  color: #ffffff;
  border-color: rgba(123, 44, 191, 0.32);
  box-shadow: 0 16px 34px rgba(123, 44, 191, 0.22);
}

.pricing-tab:focus-visible {
  outline: 2px solid rgba(123, 44, 191, 0.48);
  outline-offset: 3px;
}

.pricing-tab__icon {
  display: none;
}

.pricing-tab__copy {
  display: grid;
  gap: 0;
}

.pricing-tab__copy strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.pricing-tab__copy span {
  display: none;
}

.pricing-panels {
  position: relative;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(123, 44, 191, 0.5);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.pricing-card__pulse {
  position: absolute;
  width: 180px;
  height: 180px;
  right: -56px;
  top: -64px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 44, 191, 0.14), transparent 70%);
}

.pricing-card[hidden] {
  display: none;
}

.pricing-card--trial,
.pricing-card--pro {
  background: #fbf7ff;
}

.pricing-card--pro {
  border-color: rgba(123, 44, 191, 0.34);
  box-shadow: 0 24px 56px rgba(106, 13, 173, 0.16);
  background: linear-gradient(180deg, rgba(251, 247, 255, 0.98), rgba(244, 235, 255, 0.96));
}

.pricing-card--pro .pricing-label,
.pricing-card--trial .pricing-label {
  color: var(--berry);
}

.pricing-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.pricing-label {
  margin: 0;
  color: var(--berry);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.pricing-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(123, 44, 191, 0.12);
  color: var(--plum);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-chip--soft {
  background: rgba(91, 88, 112, 0.08);
  color: var(--muted);
}

.pricing-chip--pro {
  background: rgba(123, 44, 191, 0.18);
  color: var(--plum);
}

.pricing-card h3 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.pricing-price {
  margin: 10px 0 0;
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--plum);
  letter-spacing: -0.03em;
}

.pricing-price span {
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0;
}

.pricing-highlight {
  margin: 12px 0 16px;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--muted);
}

.pricing-features {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-features li {
  position: relative;
  padding-left: 20px;
  color: var(--text);
  line-height: 1.5;
}

.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--berry);
}

.pricing-note {
  margin: auto 0 0;
  padding-top: 18px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
  border-top: 1px solid rgba(123, 44, 191, 0.1);
}

.cta-section {
  padding-top: 10px;
}

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

.cta-panel__logo {
  width: 74px;
  height: 74px;
  margin-bottom: 8px;
}

.cta-panel p {
  max-width: 42rem;
  margin: 14px auto 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding: 18px 4px 0;
  color: var(--muted);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand__logo {
  width: 42px;
  height: 42px;
}

.footer-copy {
  margin: 6px 0 0;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger {
  opacity: 0;
  transform: translateY(20px);
}

.reveal.is-visible .stagger {
  animation: rise 600ms ease forwards;
}

.reveal.is-visible .stagger:nth-child(2) {
  animation-delay: 90ms;
}

.reveal.is-visible .stagger:nth-child(3) {
  animation-delay: 180ms;
}

.reveal.is-visible .stagger:nth-child(4) {
  animation-delay: 270ms;
}

.reveal.is-visible .stagger:nth-child(5) {
  animation-delay: 360ms;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-mark {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    transform: scale(0.94);
    opacity: 0.55;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.88;
  }
}

@media (max-width: 1080px) {
  .hero,
  .steps,
  .privacy-grid,
  .video-layout {
    grid-template-columns: 1fr;
  }

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

  .feature-grid--overview .feature-card,
  .feature-card,
  .feature-card--wide,
  .feature-card--accent {
    grid-column: span 12;
  }

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

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

@media (max-width: 840px) {
  .page-shell {
    width: min(calc(100% - 22px), var(--max));
  }

  .site-header {
    position: static;
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }

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

@media (max-width: 640px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .hero {
    min-height: auto;
    padding-top: 14px;
  }

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

  .site-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
    grid-column: 1 / -1;
    padding-top: 2px;
  }

  .mobile-nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(123, 44, 191, 0.14);
    box-shadow: 0 10px 24px rgba(90, 0, 157, 0.08);
  }

  .mobile-nav__panel {
    padding: 12px 4px 0;
  }

  .hero-copy,
  .legal-hero,
  .legal-card,
  .privacy-panel,
  .cta-panel,
  .glass-card,
  .step-card,
  .feature-card,
  .week-card,
  .privacy-item,
  .stats-band,
  .video-stage,
  .video-benefit,
  .pricing-tab,
  .pricing-card {
    padding: 20px;
    border-radius: 22px;
  }

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

  .section-heading h2,
  .legal-hero h1,
  .cta-panel h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .header-contact {
    display: none;
  }

  .header-actions {
    width: auto;
  }

  .hero-actions {
    width: 100%;
  }

  .header-actions .button {
    width: auto;
  }

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

  .loading-mark {
    width: 150px;
    height: 150px;
  }

  .loading-mark img {
    width: 124px;
    height: 124px;
  }

  .video-stage__screen {
    min-height: 440px;
    border-radius: 24px;
  }

  .video-stage__details {
    grid-template-columns: 1fr;
  }

  .video-stage__shots {
    grid-template-columns: 1fr;
  }

  .walkthrough-video {
    min-height: 440px;
  }
}
