@font-face {
  font-family: "Sora";
  src: url("/assets/Sora-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Sora";
  src: url("/assets/Sora-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/Inter-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/Inter-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

:root {
  --bg: #0a0c12;
  --bg-deep: #01030d;
  --surface: #141824;
  --surface-high: #1c2130;
  --stroke: #262c3d;
  --primary: #7c5cff;
  --primary-bright: #9b85ff;
  --cyan: #22d3ee;
  --lime: #c8ff4d;
  --coral: #ff7a5a;
  --text: #f6f8fc;
  --text-muted: #a6aec2;
  --text-faint: #6b7386;
  --shell: 1180px;
  --radius-lg: 30px;
  --radius-md: 20px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -20%, rgba(124, 92, 255, 0.1), transparent 34%),
    var(--bg);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

button {
  font: inherit;
}

img,
svg {
  display: block;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 124px 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #090b11;
  background: var(--lime);
  border-radius: 10px;
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  width: 100%;
  padding: 18px 0;
  border-bottom: 1px solid transparent;
  transition: 220ms ease;
}

.site-header.scrolled {
  background: rgba(10, 12, 18, 0.78);
  border-color: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Sora", sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.brand img {
  border-radius: 13px;
  box-shadow: 0 10px 26px rgba(124, 92, 255, 0.28);
}

.brand em {
  color: var(--primary-bright);
  font-style: normal;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
}

.site-nav a {
  transition: color 160ms ease;
}

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

.site-nav .nav-cta {
  padding: 10px 17px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  transition: 180ms ease;
}

.hero {
  display: flex;
  align-items: center;
  min-height: 840px;
  padding-top: 150px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 80px;
}

.ambient {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(2px);
}

.ambient-one {
  top: 4%;
  right: -12%;
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.18), transparent 66%);
}

.ambient-two {
  bottom: -15%;
  left: -10%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.09), transparent 66%);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-bright);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 24px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 720px;
  margin-top: 28px;
  font-size: clamp(3.6rem, 5.6vw, 5.5rem);
  line-height: 1.02;
}

h1 strong,
h2 strong {
  color: transparent;
  background: linear-gradient(100deg, #c2b5ff 2%, #7c5cff 48%, #4ea1ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: inherit;
}

.hero-lede {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 11px 22px;
  border-radius: 16px;
  font-weight: 600;
}

.button svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.button span {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.button small {
  margin-bottom: 3px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  opacity: 0.75;
  text-transform: uppercase;
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, #8b6bff, #4e7eff);
  box-shadow: 0 18px 45px rgba(92, 75, 224, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button-primary[href]:hover,
.button-primary[href]:focus-visible {
  box-shadow: 0 22px 55px rgba(92, 75, 224, 0.42);
  transform: translateY(-2px);
}

.button-disabled {
  cursor: default;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.text-link span {
  color: var(--primary-bright);
  font-size: 18px;
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translate(3px, 2px);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  margin-top: 38px;
  color: var(--text-faint);
  font-size: 11px;
  font-weight: 500;
}

.trust-row span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-row span + span::before {
  width: 3px;
  height: 3px;
  margin-right: 9px;
  background: #394054;
  border-radius: 50%;
  content: "";
}

.status-dot {
  width: 7px;
  height: 7px;
  background: #34d399;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(52, 211, 153, 0.8);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 700px;
}

.orbit {
  position: absolute;
  top: 48%;
  left: 50%;
  border: 1px solid rgba(151, 135, 255, 0.14);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-16deg);
}

.orbit::before,
.orbit::after {
  position: absolute;
  width: 7px;
  height: 7px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 18px var(--primary);
  content: "";
}

.orbit-one {
  width: 620px;
  height: 380px;
}

.orbit-one::before {
  top: 12%;
  left: 12%;
}

.orbit-one::after {
  right: 9%;
  bottom: 14%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}

.orbit-two {
  width: 480px;
  height: 660px;
  transform: translate(-50%, -50%) rotate(20deg);
}

.orbit-two::before {
  right: 8%;
  bottom: 28%;
}

.orbit-two::after {
  top: 17%;
  left: 5%;
  background: var(--lime);
  box-shadow: 0 0 18px var(--lime);
}

.phone {
  position: relative;
  z-index: 2;
  width: 340px;
  height: 690px;
  padding: 15px 17px 18px;
  background:
    radial-gradient(circle at 60% -10%, rgba(124, 92, 255, 0.17), transparent 35%),
    #0a0d15;
  border: 7px solid #242937;
  border-radius: 48px;
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.58),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 80px rgba(124, 92, 255, 0.13);
  transform: rotate(2.2deg);
}

.phone-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 27px;
  padding: 0 7px;
  color: #e8ebf2;
  font-size: 9px;
  font-weight: 600;
}

.phone-island {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 90px;
  height: 23px;
  background: #020307;
  border: 1px solid #131620;
  border-radius: 20px;
  transform: translateX(-50%);
}

.phone-signal {
  display: flex;
  align-items: end;
  gap: 2px;
}

.phone-signal i {
  width: 2px;
  background: #e8ebf2;
}

.phone-signal i:nth-child(1) { height: 3px; }
.phone-signal i:nth-child(2) { height: 5px; }
.phone-signal i:nth-child(3) { height: 7px; }

.app-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 16px 3px 15px;
}

.app-head small,
.card-label,
.nova-top small {
  display: block;
  color: var(--text-faint);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.app-head h2 {
  margin-top: 4px;
  font-size: 16px;
  letter-spacing: -0.035em;
}

.avatar {
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  color: #ddd7ff;
  background: linear-gradient(135deg, #332a64, #292346);
  border: 1px solid rgba(155, 133, 255, 0.25);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
}

.steps-card,
.mini-card,
.nova-card {
  background: linear-gradient(145deg, rgba(28, 33, 48, 0.94), rgba(17, 21, 32, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.steps-card {
  padding: 16px;
  border-radius: 22px;
}

.steps-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.steps-top strong {
  display: block;
  margin-top: 4px;
  font-family: "Sora", sans-serif;
  font-size: 27px;
  letter-spacing: -0.04em;
}

.steps-top small {
  display: block;
  color: var(--text-faint);
  font-size: 8px;
}

.step-ring {
  position: relative;
  width: 67px;
  height: 67px;
}

.step-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.step-ring circle {
  fill: none;
  stroke: #262b38;
  stroke-width: 6;
}

.step-ring .ring-value {
  stroke: var(--lime);
  stroke-dasharray: 182;
  stroke-dashoffset: 40;
  stroke-linecap: round;
  filter: drop-shadow(0 0 5px rgba(200, 255, 77, 0.5));
}

.step-ring span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: "Sora", sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.sparkline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  height: 30px;
  margin-top: 13px;
  padding-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sparkline i {
  width: 12px;
  min-height: 4px;
  background: #303648;
  border-radius: 4px 4px 1px 1px;
}

.sparkline .active {
  background: linear-gradient(var(--lime), #4be1a0);
  box-shadow: 0 0 9px rgba(200, 255, 77, 0.24);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.mini-card {
  min-height: 123px;
  padding: 13px;
  border-radius: 18px;
}

.mini-icon {
  display: grid;
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
  place-items: center;
  background: rgba(124, 92, 255, 0.15);
  border-radius: 9px;
}

.mini-icon.cyan { background: rgba(34, 211, 238, 0.12); }
.mini-icon svg { width: 15px; height: 15px; fill: none; stroke: #ad9cff; stroke-width: 1.8; }
.mini-icon.cyan svg { stroke: var(--cyan); }
.mini-card > small { display: block; color: var(--text-faint); font-size: 7px; }
.mini-card > strong { display: block; margin: 4px 0 3px; font-family: "Sora"; font-size: 11px; }
.mini-card > span:last-child { display: block; color: var(--text-faint); font-size: 7px; }

.nova-card {
  margin-top: 10px;
  padding: 14px;
  background:
    radial-gradient(circle at 8% 0%, rgba(124, 92, 255, 0.22), transparent 35%),
    linear-gradient(145deg, rgba(26, 28, 48, 0.96), rgba(16, 20, 31, 0.96));
  border-radius: 19px;
}

.nova-top {
  display: flex;
  align-items: center;
  gap: 9px;
}

.nova-top > div:nth-child(2) {
  flex: 1;
}

.nova-top strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 10px;
}

.nova-top b {
  padding: 4px 6px;
  color: #b5a8ff;
  background: rgba(124, 92, 255, 0.13);
  border: 1px solid rgba(124, 92, 255, 0.22);
  border-radius: 7px;
  font-size: 7px;
}

.nova-orb {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  background: radial-gradient(circle at 35% 30%, #d4caff, #7c5cff 40%, #213cad 85%);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(124, 92, 255, 0.5);
}

.nova-orb span {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
}

.nova-card p {
  margin: 11px 0;
  color: #c2c8d7;
  font-size: 8px;
  line-height: 1.5;
}

.nova-action {
  display: flex;
  justify-content: space-between;
  padding-top: 9px;
  color: #9f91fa;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 7px;
  font-weight: 600;
}

.phone-nav {
  position: absolute;
  right: 17px;
  bottom: 16px;
  left: 17px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 49px;
  background: rgba(14, 17, 26, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 17px;
}

.phone-nav span {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #596174;
  font-size: 13px;
  line-height: 1;
}

.phone-nav small {
  margin-top: 5px;
  font-size: 6px;
}

.phone-nav .selected {
  color: #a899ff;
}

.float-pill {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 170px;
  padding: 12px 14px;
  background: rgba(22, 26, 38, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(15px);
}

.float-pill i {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  place-items: center;
  color: #0d1613;
  background: var(--lime);
  border-radius: 9px;
  font-style: normal;
  font-weight: 700;
}

.float-pill span {
  display: flex;
  flex-direction: column;
  color: var(--text-muted);
  font-size: 8px;
  line-height: 1.4;
}

.float-pill small {
  color: var(--text);
  font-size: 9px;
  font-weight: 600;
}

.float-pill-one {
  top: 104px;
  left: -8px;
  transform: rotate(-3deg);
}

.float-pill-two {
  right: -25px;
  bottom: 104px;
  transform: rotate(4deg);
}

.float-pill-two i {
  color: #e7e2ff;
  background: var(--primary);
}

.signal-strip {
  padding: 23px 0;
  color: #737b8e;
  background: rgba(255, 255, 255, 0.018);
  border-block: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.signal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  white-space: nowrap;
  font-family: "Sora", sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-row i {
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary);
}

.section-intro {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  column-gap: 70px;
  margin-bottom: 55px;
}

.section-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 22px;
}

.section-intro h2,
.coach-copy h2,
.privacy-copy h2,
.cta-inner h2 {
  font-size: clamp(2.5rem, 4.4vw, 4.4rem);
  line-height: 1.08;
}

.section-intro > p {
  max-width: 405px;
  margin: 0 0 5px;
  color: var(--text-muted);
}

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

.feature-card {
  position: relative;
  min-height: 560px;
  padding: 24px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.025), transparent 40%),
    rgba(20, 24, 36, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-number {
  position: absolute;
  top: 23px;
  right: 25px;
  color: #535b6c;
  font-family: "Sora";
  font-size: 11px;
}

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

.feature-card > .feature-copy {
  position: absolute;
  right: 32px;
  bottom: 32px;
  left: 32px;
}

.feature-copy h3 {
  max-width: 480px;
  margin-top: 15px;
  font-size: 25px;
  line-height: 1.24;
}

.feature-copy p {
  max-width: 510px;
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 14px;
}

.chip {
  display: inline-flex;
  padding: 6px 9px;
  color: var(--lime);
  background: rgba(200, 255, 77, 0.08);
  border: 1px solid rgba(200, 255, 77, 0.15);
  border-radius: 7px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.violet-chip { color: #aa9bff; background: rgba(124, 92, 255, 0.09); border-color: rgba(124, 92, 255, 0.17); }
.cyan-chip { color: var(--cyan); background: rgba(34, 211, 238, 0.07); border-color: rgba(34, 211, 238, 0.16); }
.coral-chip { color: #ff9a82; background: rgba(255, 122, 90, 0.07); border-color: rgba(255, 122, 90, 0.16); }

.feature-art {
  position: absolute;
}

.rings-art {
  top: 20px;
  right: 20px;
  left: 20px;
  height: 330px;
}

.activity-ring {
  position: absolute;
  top: 34px;
  left: 50%;
  display: grid;
  width: 215px;
  height: 215px;
  place-items: center;
  background:
    radial-gradient(circle, rgba(200, 255, 77, 0.04) 44%, transparent 45%),
    conic-gradient(from 220deg, var(--lime) 0 72%, #2b3140 72% 100%);
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(200, 255, 77, 0.08);
  transform: translateX(-50%);
}

.activity-ring::before {
  position: absolute;
  inset: 13px;
  background: #11151f;
  border-radius: 50%;
  content: "";
}

.activity-ring span {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Sora";
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.activity-ring small {
  color: var(--text-faint);
  font-family: "Inter";
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.activity-stat {
  position: absolute;
  display: flex;
  flex-direction: column;
  min-width: 95px;
  padding: 12px 14px;
  background: rgba(28, 33, 48, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.activity-stat b { font-family: "Sora"; font-size: 17px; }
.activity-stat small { color: var(--text-faint); font-size: 8px; }
.stat-a { top: 80px; left: 10px; transform: rotate(-3deg); }
.stat-b { right: 4px; bottom: 44px; transform: rotate(3deg); }

.calendar-art,
.recovery-art {
  position: relative;
  width: calc(100% - 70px);
  margin: 55px auto 0;
  padding: 20px;
  background: rgba(12, 15, 23, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 21px;
}

.calendar-head {
  display: flex;
  justify-content: space-between;
  font-family: "Sora";
  font-size: 11px;
}

.calendar-head small {
  color: #a698ff;
  font-family: "Inter";
  font-size: 8px;
}

.calendar-days {
  display: flex;
  justify-content: space-between;
  margin: 22px 0;
}

.calendar-days span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: var(--text-faint);
  font-size: 8px;
}

.calendar-days i {
  width: 7px;
  height: 7px;
  background: #272d3c;
  border-radius: 50%;
}

.calendar-days .on { color: var(--text); }
.calendar-days .on i { background: var(--primary); box-shadow: 0 0 10px rgba(124, 92, 255, 0.6); }
.calendar-days .warm i { background: var(--coral); box-shadow: 0 0 10px rgba(255, 122, 90, 0.55); }
.calendar-days .cyan-dot i { background: var(--cyan); box-shadow: 0 0 10px rgba(34, 211, 238, 0.55); }

.plan-line {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px;
  background: rgba(124, 92, 255, 0.08);
  border: 1px solid rgba(124, 92, 255, 0.13);
  border-radius: 12px;
}

.plan-line + .plan-line { margin-top: 8px; }
.plan-line > i { width: 3px; height: 28px; background: var(--primary); border-radius: 4px; }
.plan-line span { display: flex; flex: 1; align-items: center; justify-content: space-between; }
.plan-line b { font-size: 9px; }
.plan-line small { color: var(--text-faint); font-size: 7px; }
.plan-line.muted { background: rgba(255, 255, 255, 0.025); border-color: rgba(255, 255, 255, 0.05); }
.plan-line.muted > i { background: var(--cyan); }

.recovery-art {
  display: grid;
  grid-template-columns: 125px 1fr;
  align-items: center;
  gap: 26px;
  margin-top: 65px;
  padding: 28px 22px;
}

.recovery-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 125px;
  height: 125px;
  background:
    radial-gradient(circle at center, #111722 53%, transparent 54%),
    conic-gradient(var(--cyan) 0 84%, #272d3c 84%);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(34, 211, 238, 0.1);
}

.recovery-score span { font-family: "Sora"; font-size: 31px; font-weight: 700; }
.recovery-score small { color: var(--cyan); font-size: 7px; font-weight: 600; letter-spacing: 0.1em; }

.recovery-bars {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.recovery-bars > span {
  display: grid;
  grid-template-columns: 45px 1fr 28px;
  align-items: center;
  gap: 8px;
}

.recovery-bars small,
.recovery-bars em { color: var(--text-faint); font-size: 7px; font-style: normal; }
.recovery-bars i { height: 4px; background: #262c3a; border-radius: 4px; overflow: hidden; }
.recovery-bars b { display: block; height: 100%; background: linear-gradient(90deg, #22d3ee, #6366f1); border-radius: 4px; }

.profile-feature {
  min-height: 520px;
  grid-column: 1 / -1;
}

.profile-feature > .feature-copy {
  top: 60px;
  right: auto;
  bottom: auto;
  width: 39%;
}

.chart-art {
  position: absolute;
  top: 55px;
  right: 42px;
  bottom: 48px;
  width: 51%;
  padding: 28px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    rgba(12, 15, 23, 0.64);
  background-size: 100% 55px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
}

.chart-head {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
}

.chart-head b { color: #b3a5ff; }
.chart-art svg { width: 100%; height: 250px; overflow: visible; }
.chart-line { fill: none; stroke: #8b6bff; stroke-width: 4; stroke-linecap: round; filter: drop-shadow(0 0 6px rgba(139, 107, 255, 0.5)); }
.chart-fill { fill: url("#chartFill"); }
.chart-labels { display: flex; justify-content: space-between; color: var(--text-faint); font-size: 8px; }

.coach {
  background:
    radial-gradient(circle at 25% 45%, rgba(124, 92, 255, 0.12), transparent 26%),
    linear-gradient(180deg, transparent, rgba(17, 20, 31, 0.5), transparent);
}

.coach-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 100px;
}

.coach-orb-wrap {
  position: relative;
  display: grid;
  min-height: 540px;
  place-items: center;
}

.coach-halo {
  position: absolute;
  width: 460px;
  height: 460px;
  background:
    radial-gradient(circle, transparent 35%, rgba(124, 92, 255, 0.1) 36%, transparent 37%),
    radial-gradient(circle, rgba(124, 92, 255, 0.11), transparent 62%);
  border: 1px solid rgba(124, 92, 255, 0.09);
  border-radius: 50%;
}

.coach-halo::before,
.coach-halo::after {
  position: absolute;
  inset: 45px;
  border: 1px dashed rgba(124, 92, 255, 0.13);
  border-radius: 50%;
  content: "";
}

.coach-halo::after {
  inset: 92px;
  border-style: solid;
}

.coach-orb {
  position: relative;
  z-index: 2;
  width: 185px;
  height: 185px;
  background:
    radial-gradient(circle at 36% 25%, rgba(255, 255, 255, 0.7), transparent 4%),
    radial-gradient(circle at 34% 30%, #cabfff, #7c5cff 30%, #3e56e9 58%, #102064 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  box-shadow:
    inset -22px -25px 45px rgba(3, 8, 30, 0.5),
    inset 20px 18px 32px rgba(255, 255, 255, 0.18),
    0 0 75px rgba(124, 92, 255, 0.36),
    0 0 160px rgba(47, 80, 255, 0.2);
}

.coach-orb span,
.coach-orb i,
.coach-orb b {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}

.coach-orb span { inset: 25px; transform: rotate(25deg); }
.coach-orb i { inset: 48px 20px; transform: rotate(-35deg); }
.coach-orb b { inset: 20px 53px; transform: rotate(55deg); }

.coach-label {
  position: absolute;
  bottom: 60px;
  color: #8374dc;
  font-family: "Sora";
  font-size: 10px;
  letter-spacing: 0.45em;
}

.coach-copy h2 {
  margin-top: 25px;
}

.coach-copy > p {
  max-width: 590px;
  margin: 25px 0 0;
  color: var(--text-muted);
  font-size: 17px;
}

.coach-steps {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-top: 35px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 19px;
  overflow: hidden;
}

.coach-steps > div {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 17px 20px;
  background: #11141d;
}

.coach-steps b {
  color: #8f80ef;
  font-family: "Sora";
  font-size: 10px;
}

.coach-steps span {
  display: flex;
  flex-direction: column;
}

.coach-steps strong { font-size: 13px; }
.coach-steps small { margin-top: 2px; color: var(--text-faint); font-size: 11px; }
.coach-copy .disclaimer { font-size: 11px; color: #666e7e; }

.privacy-preview {
  padding-top: 80px;
}

.privacy-card {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 80px;
  padding: 75px;
  background:
    radial-gradient(circle at 0% 0%, rgba(34, 211, 238, 0.09), transparent 37%),
    radial-gradient(circle at 100% 100%, rgba(124, 92, 255, 0.1), transparent 38%),
    #10141e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 38px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.18);
}

.privacy-copy h2 {
  margin-top: 24px;
}

.privacy-copy p {
  max-width: 600px;
  margin: 24px 0 27px;
  color: var(--text-muted);
}

.privacy-points {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.privacy-points > div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 17px;
}

.privacy-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  color: #aa9bff;
  background: rgba(124, 92, 255, 0.1);
  border-radius: 13px;
}

.privacy-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.privacy-points > div > span:last-child {
  display: flex;
  flex-direction: column;
}

.privacy-points strong { font-size: 13px; }
.privacy-points small { margin-top: 3px; color: var(--text-faint); font-size: 10px; }

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
}

.faq-grid .section-intro {
  display: block;
  margin: 0;
}

.faq-grid .section-intro h2 {
  margin-top: 22px;
}

.faq-list details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 0;
  cursor: pointer;
  font-family: "Sora";
  font-size: 16px;
  font-weight: 600;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--primary-bright); font-family: "Inter"; font-size: 24px; font-weight: 400; transition: transform 180ms ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 680px; margin: -6px 0 24px; color: var(--text-muted); font-size: 14px; }

.final-cta {
  padding-top: 75px;
  text-align: center;
}

.cta-inner {
  position: relative;
  padding: 100px 24px;
  background:
    linear-gradient(180deg, rgba(124, 92, 255, 0.05), transparent),
    #0e111a;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 38px;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  width: 640px;
  height: 430px;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.22), transparent 68%);
  transform: translateX(-50%);
}

.cta-inner img {
  position: relative;
  margin: 0 auto 28px;
  border-radius: 27px;
  box-shadow: 0 20px 50px rgba(124, 92, 255, 0.3);
}

.cta-inner .eyebrow {
  position: relative;
  justify-content: center;
}

.cta-inner h2 {
  position: relative;
  margin-top: 23px;
}

.cta-inner p {
  position: relative;
  margin: 20px 0 28px;
  color: var(--text-muted);
}

.cta-inner .button {
  position: relative;
}

.site-footer {
  padding: 60px 0 26px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  padding-bottom: 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-main p {
  margin: 0;
  color: var(--text-faint);
  font-size: 13px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 25px;
  color: var(--text-muted);
  font-size: 13px;
}

.footer-links a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  color: #52596a;
  font-size: 11px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-delay {
  transition-delay: 120ms;
}

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

/* Privacy policy */
.legal-page {
  background:
    radial-gradient(circle at 50% -8%, rgba(124, 92, 255, 0.12), transparent 24%),
    var(--bg);
}

.compact-header {
  position: absolute;
}

.legal-hero {
  position: relative;
  padding: 185px 0 85px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.legal-hero-inner {
  max-width: 900px;
}

.legal-hero h1 {
  margin-top: 25px;
  font-size: clamp(3.6rem, 7vw, 6.6rem);
  line-height: 1;
}

.legal-hero p {
  max-width: 710px;
  margin: 25px 0 0;
  color: var(--text-muted);
  font-size: 18px;
}

.legal-meta {
  display: flex;
  gap: 22px;
  margin-top: 28px;
  color: var(--text-faint);
  font-size: 11px;
}

.legal-meta span + span::before {
  margin-right: 22px;
  color: #363c4b;
  content: "•";
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  justify-content: space-between;
  gap: 90px;
  padding-top: 80px;
  padding-bottom: 130px;
}

.legal-aside {
  position: sticky;
  top: 110px;
  align-self: start;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-aside strong {
  display: block;
  margin-bottom: 17px;
  color: var(--text);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-aside nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-aside a {
  color: var(--text-faint);
  font-size: 12px;
  transition: color 160ms ease;
}

.legal-aside a:hover,
.legal-aside a:focus-visible {
  color: var(--primary-bright);
}

.policy-callout {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 68px;
  padding: 23px;
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.12), rgba(34, 211, 238, 0.04));
  border: 1px solid rgba(124, 92, 255, 0.2);
  border-radius: 18px;
}

.policy-callout > span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  color: #b5a9ff;
  background: rgba(124, 92, 255, 0.14);
  border-radius: 13px;
}

.policy-callout svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.policy-callout p {
  margin: 0;
  color: #c2c8d6;
  font-size: 14px;
}

.legal-content > section {
  position: relative;
  padding: 0 0 66px;
}

.legal-content > section + section {
  padding-top: 66px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.section-count {
  display: block;
  margin-bottom: 14px;
  color: var(--primary-bright);
  font-family: "Sora";
  font-size: 10px;
}

.legal-content h2 {
  font-size: 31px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.legal-content h3 {
  margin-top: 32px;
  font-family: "Inter";
  font-size: 16px;
  letter-spacing: 0;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
}

.legal-content p {
  margin: 18px 0 0;
}

.legal-content ul {
  margin: 17px 0 0;
  padding-left: 20px;
}

.legal-content li + li {
  margin-top: 10px;
}

.legal-content strong {
  color: #e9ecf3;
}

.legal-content a {
  color: #a999ff;
  text-decoration: underline;
  text-decoration-color: rgba(169, 153, 255, 0.35);
  text-underline-offset: 3px;
}

.legal-content code {
  padding: 3px 6px;
  color: #c6bcff;
  background: rgba(124, 92, 255, 0.1);
  border-radius: 5px;
  font-size: 12px;
}

.legal-note {
  margin-top: 24px;
  padding: 22px;
  background: rgba(34, 211, 238, 0.04);
  border: 1px solid rgba(34, 211, 238, 0.13);
  border-radius: 16px;
}

.legal-note strong {
  color: var(--cyan);
  font-size: 12px;
}

.legal-note p {
  margin-top: 8px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
}

.contact-card img {
  border-radius: 17px;
}

.contact-card span {
  display: flex;
  flex-direction: column;
}

.contact-card a {
  margin-top: 2px;
  font-size: 13px;
}

.contact-card small {
  margin-top: 5px;
  color: var(--text-faint);
  font-size: 10px;
}

.legal-footer {
  padding-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Account deletion */
.delete-hero {
  padding-bottom: 72px;
}

.danger-eyebrow {
  color: #ff9580;
}

.delete-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 80px;
  padding-top: 80px;
  padding-bottom: 90px;
}

.delete-info h2,
.delete-form-card h2,
.deletion-details h2 {
  font-size: 31px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.delete-info > p,
.form-heading p,
.deletion-details > div:first-child p {
  margin: 17px 0 0;
  color: var(--text-muted);
  font-size: 14px;
}

.app-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.app-steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  font-size: 12px;
}

.app-steps b {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  color: #b4a7ff;
  background: rgba(124, 92, 255, 0.12);
  border-radius: 9px;
  font-family: "Sora";
  font-size: 9px;
}

.app-steps strong {
  color: var(--text);
}

.delete-info .legal-note {
  margin-top: 24px;
}

.delete-form-card {
  padding: 38px;
  background:
    radial-gradient(circle at 100% 0%, rgba(124, 92, 255, 0.09), transparent 36%),
    #10141e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

.delete-form-card form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  color: #e8ebf2;
  font-size: 12px;
  font-weight: 600;
}

.form-field label span {
  color: #ff8d78;
}

.form-field label em {
  margin-left: 6px;
  color: var(--text-faint);
  font-size: 9px;
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
}

.form-field input,
.form-field select {
  width: 100%;
  min-height: 50px;
  padding: 0 15px;
  color: var(--text);
  background: #0c0f17;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  outline: none;
  font: 400 14px "Inter", sans-serif;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field input::placeholder {
  color: #535b6d;
}

.form-field input:focus,
.form-field select:focus {
  border-color: rgba(155, 133, 255, 0.65);
  box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.1);
}

.form-field small {
  color: var(--text-faint);
  font-size: 9px;
}

.confirm-check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 11px;
  line-height: 1.55;
}

.confirm-check input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  flex: 0 0 auto;
  accent-color: var(--primary);
}

.form-error {
  margin: -7px 0 0;
  padding: 10px 12px;
  color: #ffad9c;
  background: rgba(255, 122, 90, 0.07);
  border: 1px solid rgba(255, 122, 90, 0.15);
  border-radius: 9px;
  font-size: 10px;
}

.delete-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 18px;
  color: white;
  background: linear-gradient(135deg, #855fff, #546fff);
  border: 0;
  border-radius: 13px;
  box-shadow: 0 16px 35px rgba(92, 75, 224, 0.22);
  cursor: pointer;
  font-weight: 600;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.delete-submit:hover,
.delete-submit:focus-visible {
  box-shadow: 0 20px 42px rgba(92, 75, 224, 0.34);
  transform: translateY(-1px);
}

.delete-submit span {
  font-size: 18px;
}

.form-privacy {
  margin: -5px 0 0;
  color: var(--text-faint);
  font-size: 9px;
  line-height: 1.55;
}

.form-privacy a {
  color: #a99cff;
}

.deletion-details {
  padding: 80px 0 120px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.deletion-details > div:first-child {
  max-width: 580px;
}

.deletion-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.deletion-columns article {
  padding: 28px;
  background: rgba(20, 24, 36, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
}

.detail-icon {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  color: #ff9b87;
  background: rgba(255, 122, 90, 0.08);
  border-radius: 13px;
}

.detail-icon.retain-icon {
  color: #a99cff;
  background: rgba(124, 92, 255, 0.1);
}

.detail-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.deletion-columns h3 {
  margin-top: 19px;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.deletion-columns p,
.deletion-columns li {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.7;
}

.deletion-columns p {
  margin: 12px 0 0;
}

.deletion-columns ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.deletion-columns li + li {
  margin-top: 6px;
}

@media (max-width: 1060px) {
  .hero-grid {
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 6vw, 4.2rem);
  }

  .float-pill-one { left: -35px; }
  .float-pill-two { right: -35px; }
  .privacy-card { gap: 45px; padding: 55px; }
}

@media (max-width: 880px) {
  .site-nav {
    gap: 18px;
  }

  .site-nav > a:not(.nav-cta) {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-nav:not(.legal-nav) {
    position: absolute;
    top: 76px;
    right: 24px;
    left: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: rgba(17, 20, 29, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(20px);
  }

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

  .site-nav.open > a {
    display: block;
    padding: 12px 14px;
  }

  .site-nav.open .nav-cta {
    margin-top: 7px;
    text-align: center;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

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

  .hero-grid,
  .coach-grid,
  .privacy-card,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero .eyebrow,
  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .hero-lede {
    margin-inline: auto;
  }

  .hero-visual {
    margin-top: 40px;
  }

  .section-intro {
    display: block;
  }

  .section-intro > p {
    margin-top: 22px;
  }

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

  .profile-feature {
    grid-column: auto;
    min-height: 720px;
  }

  .profile-feature > .feature-copy {
    top: auto;
    right: 32px;
    bottom: 32px;
    width: auto;
  }

  .chart-art {
    right: 35px;
    left: 35px;
    width: auto;
    height: 400px;
  }

  .coach-grid {
    gap: 25px;
  }

  .coach-orb-wrap {
    min-height: 430px;
  }

  .privacy-card {
    gap: 45px;
  }

  .faq-grid {
    gap: 45px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 25px;
    justify-items: center;
  }

  .footer-links {
    justify-content: center;
  }

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

  .legal-aside {
    display: none;
  }

  .delete-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

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

  .section {
    padding: 88px 0;
  }

  .site-header {
    padding: 13px 0;
  }

  .site-nav.legal-nav a:first-child {
    display: none;
  }

  .site-nav.legal-nav .nav-cta {
    display: block;
  }

  .hero {
    padding-top: 125px;
  }

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

  .hero-lede {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 18px;
  }

  .trust-row {
    flex-direction: column;
    align-items: center;
  }

  .trust-row span + span::before {
    display: none;
  }

  .hero-visual {
    min-height: 650px;
    margin-top: 20px;
    transform: scale(0.88);
    transform-origin: center top;
  }

  .phone {
    width: 330px;
  }

  .float-pill-one { left: -25px; }
  .float-pill-two { right: -25px; }

  .signal-row {
    justify-content: flex-start;
    width: max-content;
    animation: marquee 18s linear infinite;
  }

  .signal-row span,
  .signal-row i {
    margin-right: 18px;
  }

  .section-intro h2,
  .coach-copy h2,
  .privacy-copy h2,
  .cta-inner h2 {
    font-size: clamp(2.25rem, 11vw, 3.2rem);
  }

  .feature-card {
    min-height: 580px;
    padding: 18px;
  }

  .feature-card > .feature-copy {
    right: 24px;
    bottom: 24px;
    left: 24px;
  }

  .feature-copy h3 {
    font-size: 22px;
  }

  .calendar-art,
  .recovery-art {
    width: calc(100% - 24px);
  }

  .recovery-art {
    grid-template-columns: 95px 1fr;
    gap: 14px;
    padding: 20px 14px;
  }

  .recovery-score {
    width: 95px;
    height: 95px;
  }

  .recovery-score span {
    font-size: 24px;
  }

  .profile-feature {
    min-height: 670px;
  }

  .chart-art {
    top: 45px;
    right: 18px;
    left: 18px;
    height: 335px;
    padding: 18px;
  }

  .chart-art svg {
    height: 210px;
  }

  .coach-halo {
    width: 340px;
    height: 340px;
  }

  .coach-orb {
    width: 150px;
    height: 150px;
  }

  .coach-orb-wrap {
    min-height: 360px;
  }

  .coach-label {
    bottom: 25px;
  }

  .privacy-card {
    padding: 38px 24px;
    border-radius: 28px;
  }

  .privacy-points > div {
    align-items: flex-start;
  }

  .cta-inner {
    padding: 75px 18px;
    border-radius: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }

  .legal-hero {
    padding: 150px 0 65px;
  }

  .legal-hero h1 {
    font-size: 3.2rem;
  }

  .legal-hero p {
    font-size: 16px;
  }

  .legal-meta {
    flex-direction: column;
    gap: 4px;
  }

  .legal-meta span + span::before {
    display: none;
  }

  .legal-layout {
    padding-top: 55px;
    padding-bottom: 90px;
  }

  .policy-callout {
    flex-direction: column;
  }

  .legal-content h2 {
    font-size: 27px;
  }

  .delete-layout {
    padding-top: 55px;
    padding-bottom: 70px;
  }

  .delete-form-card {
    padding: 26px 20px;
    border-radius: 22px;
  }

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

  .deletion-details {
    padding: 65px 0 90px;
  }
}

@keyframes marquee {
  to { transform: translateX(-48%); }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
