:root {
  --background: #f7f7f3;
  --surface: #ffffff;
  --surface-2: #f0f1ec;
  --ink: #211a1e;
  --muted: #6d6368;
  --brand: #963756;
  --brand-dark: #76243f;
  --brand-soft: #f3e5eb;
  --lime: #ddff55;
  --blue: #dcecf7;
  --coral: #f4c6b8;
  --green: #cfe9cf;
  --violet: #ded2f0;
  --line: #dfd7db;
  --dark: #21171c;
  --shadow: 0 28px 70px rgba(51, 28, 38, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

button,
a {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  border: 0;
}

svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.9;
}

h1,
h2,
h3,
h4,
p {
  overflow-wrap: anywhere;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
  padding: 0 36px;
  border-bottom: 1px solid rgba(223, 215, 219, 0.8);
  background: rgba(247, 247, 243, 0.9);
  backdrop-filter: blur(18px);
}

.brand,
.mini-brand {
  display: inline-flex;
  align-items: center;
  color: var(--brand);
  font-weight: 900;
  letter-spacing: 0;
}

.brand {
  width: fit-content;
  gap: 6px;
  font-size: 27px;
}

.brand-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--lime);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #554a50;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a,
.text-link,
.site-footer a {
  transition: color 180ms ease;
}

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

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}

.text-link {
  font-size: 14px;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  background: var(--brand);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(150, 55, 86, 0.22);
}

.button-primary:hover {
  background: var(--brand-dark);
  box-shadow: 0 14px 30px rgba(150, 55, 86, 0.3);
}

.button-secondary {
  border-color: #cec3c8;
  background: rgba(255, 255, 255, 0.78);
}

.button-secondary:hover {
  border-color: var(--brand);
  background: #ffffff;
}

.button-large {
  min-height: 52px;
  padding: 0 21px;
  font-size: 15px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 72px - 48px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(150, 55, 86, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(150, 55, 86, 0.045) 1px, transparent 1px),
    var(--background);
  background-size: 40px 40px;
}

.hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, transparent 20%, rgba(247, 247, 243, 0.62) 100%);
  content: "";
}

.hero-orbit {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(150, 55, 86, 0.13);
  border-radius: 50%;
}

.hero-orbit-one {
  right: -240px;
  top: -220px;
  width: 760px;
  height: 760px;
  animation: slow-spin 32s linear infinite;
}

.hero-orbit-one::after,
.hero-orbit-two::after {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 7px solid var(--background);
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.hero-orbit-one::after {
  left: 54px;
  top: 112px;
}

.hero-orbit-two {
  bottom: -360px;
  left: -250px;
  width: 680px;
  height: 680px;
  animation: slow-spin 38s linear infinite reverse;
}

.hero-orbit-two::after {
  right: 70px;
  top: 92px;
  background: var(--coral);
}

.hero-inner,
.section,
.workflow-inner,
.audience-inner,
.site-footer {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(380px, 0.83fr) minmax(600px, 1.17fr);
  align-items: center;
  gap: 50px;
  min-height: calc(100vh - 120px);
  padding: 66px 0 72px;
}

.hero-inner > * {
  min-width: 0;
}

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

.eyebrow,
.kicker {
  margin: 0;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  letter-spacing: 0;
  text-transform: none;
}

.eyebrow span {
  position: relative;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: var(--brand-soft);
}

.eyebrow span::after {
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: var(--brand);
  content: "";
  animation: pulse-dot 2.4s ease infinite;
}

h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(52px, 5.8vw, 84px);
  font-weight: 850;
  line-height: 0.97;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(40px, 4.6vw, 64px);
  font-weight: 820;
  line-height: 1.02;
  letter-spacing: 0;
}

h3,
h4 {
  margin: 0;
  line-height: 1.2;
}

.hero-lede {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.hero-proof p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.5;
}

.avatar-stack {
  display: flex;
  padding-left: 9px;
}

.avatar-stack span {
  display: grid;
  width: 30px;
  height: 30px;
  margin-left: -9px;
  place-items: center;
  border: 2px solid var(--background);
  border-radius: 50%;
  background: var(--coral);
  color: #633b31;
  font-size: 9px;
  font-weight: 900;
}

.avatar-stack span:nth-child(2) { background: var(--blue); color: #27495d; }
.avatar-stack span:nth-child(3) { background: var(--violet); color: #49365e; }
.avatar-stack span:nth-child(4) { background: var(--lime); color: #3a4300; }

.hero-product {
  position: relative;
  width: calc(100% + 120px);
  perspective: 1300px;
}

.app-window {
  overflow: hidden;
  border: 1px solid #cfc4c9;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: var(--shadow);
  transform: rotateY(-4deg) rotateX(1.5deg);
  transform-origin: center;
  animation: window-float 7s ease-in-out infinite;
}

.window-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 39px;
  padding: 0 13px;
  border-bottom: 1px solid #e5dfe2;
  background: #f6f4f5;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d0c7cb;
}

.window-dots span:first-child { background: #ee9b94; }
.window-dots span:nth-child(2) { background: #efcf78; }
.window-dots span:nth-child(3) { background: #9bcca0; }

.window-address {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 190px;
  padding: 5px 15px;
  border: 1px solid #e5dfe2;
  border-radius: 5px;
  background: #ffffff;
  color: #82777d;
  font-size: 9px;
  text-align: center;
}

.window-address svg {
  width: 10px;
  height: 10px;
}

.window-actions {
  display: flex;
  justify-content: flex-end;
  color: #8f858a;
}

.app-frame {
  display: grid;
  grid-template-columns: 142px 1fr;
  min-height: 515px;
  background: #fbfbf9;
}

.app-sidebar {
  display: flex;
  flex-direction: column;
  padding: 19px 11px 12px;
  border-right: 1px solid #e7e2e4;
  background: #ffffff;
}

.mini-brand {
  gap: 3px;
  padding: 0 7px 18px;
  font-size: 16px;
}

.mini-brand span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
}

.app-sidebar nav {
  display: grid;
  gap: 3px;
}

.app-sidebar nav > p {
  margin: 15px 8px 5px;
  color: #a69ca1;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.app-sidebar nav a {
  display: grid;
  grid-template-columns: 17px 1fr auto;
  align-items: center;
  min-height: 31px;
  padding: 0 8px;
  border-radius: 5px;
  color: #71676c;
  font-size: 9px;
  font-weight: 700;
}

.app-sidebar nav a.active {
  background: var(--brand-soft);
  color: var(--brand);
}

.app-sidebar nav svg {
  width: 13px;
  height: 13px;
}

.app-sidebar nav em {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  background: #f0ecee;
  color: #786c72;
  font-size: 7px;
  font-style: normal;
}

.sidebar-user {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding: 9px 7px 2px;
  border-top: 1px solid #ece7e9;
}

.sidebar-user > span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: white;
  font-size: 8px;
  font-weight: 900;
}

.sidebar-user div {
  display: grid;
  font-size: 8px;
}

.sidebar-user small { color: #968b90; font-size: 7px; }

.app-content {
  padding: 25px 25px 20px;
}

.app-heading,
.panel-title,
.chart-head,
.client-profile,
.portal-mini-head,
.client-welcome,
.client-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-heading small,
.panel-title small,
.stat-row small,
.chart-head small,
.screen-card small {
  color: #91868b;
  font-size: 8px;
}

.app-heading h2 {
  margin-top: 3px;
  font-size: 20px;
}

.app-heading button {
  position: relative;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid #e2dcdf;
  border-radius: 6px;
  background: white;
}

.app-heading button span {
  position: absolute;
  right: 6px;
  top: 6px;
  width: 6px;
  height: 6px;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--brand);
}

.app-heading svg { width: 14px; height: 14px; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.stat-row article {
  display: grid;
  grid-template-columns: 31px 1fr;
  gap: 9px;
  min-height: 93px;
  padding: 13px;
  border: 1px solid #e5dfe2;
  border-radius: 7px;
  background: white;
}

.stat-icon {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 6px;
}

.stat-icon svg { width: 14px; height: 14px; }
.stat-icon.rose { background: var(--brand-soft); color: var(--brand); }
.stat-icon.lime { background: #efffc1; color: #596600; }
.stat-icon.blue { background: var(--blue); color: #346982; }

.stat-row article div { display: grid; }
.stat-row strong { font-size: 20px; line-height: 1.05; }
.stat-row em { grid-column: 1 / -1; color: #8a7f84; font-size: 7px; font-style: normal; }

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 10px;
  margin-top: 10px;
}

.agenda-panel,
.activity-panel {
  padding: 15px;
  border: 1px solid #e5dfe2;
  border-radius: 7px;
  background: white;
}

.panel-title h3 { margin-top: 2px; font-size: 12px; }
.panel-title button { padding: 5px 8px; border-radius: 4px; background: #f2eef0; color: var(--brand); font-size: 7px; font-weight: 800; }

.agenda-item {
  display: grid;
  grid-template-columns: 33px 3px 1fr auto;
  align-items: center;
  gap: 8px;
  min-height: 59px;
  border-bottom: 1px solid #eee9eb;
}

.agenda-item:last-child { border-bottom: 0; }
.agenda-item time { color: #6c6166; font-size: 8px; font-weight: 800; }
.agenda-item > span { width: 3px; height: 29px; border-radius: 3px; background: #d7e7ef; }
.agenda-item.current > span { background: var(--brand); }
.agenda-item div { display: grid; font-size: 8px; }
.agenda-item div small { margin-top: 3px; color: #968b90; font-size: 7px; }
.agenda-item svg { width: 12px; height: 12px; color: #9b9095; }

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #62bb74;
  box-shadow: 0 0 0 5px rgba(98, 187, 116, 0.12);
  animation: live-pulse 2s ease infinite;
}

.activity-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid #eee9eb;
}

.activity-item:last-child { border-bottom: 0; }
.person { display: grid; flex: 0 0 25px; height: 25px; place-items: center; border-radius: 50%; font-size: 7px; font-weight: 900; }
.person.coral { background: var(--coral); color: #684135; }
.person.green { background: var(--green); color: #315d3a; }
.person.violet { background: var(--violet); color: #4f3b67; }
.activity-item p { display: grid; margin: 0; color: #766b70; font-size: 7px; }
.activity-item b { color: var(--ink); font-size: 8px; }
.activity-item small { margin-top: 3px; color: #a0959a; font-size: 6.5px; }

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 210px;
  padding: 12px;
  border: 1px solid #ddd3d8;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(58, 34, 44, 0.17);
  backdrop-filter: blur(10px);
}

.floating-card > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 6px;
  background: var(--brand);
  color: white;
}

.floating-card > span svg { width: 15px; height: 15px; }
.floating-card div:not(.goal-ring) { display: grid; flex: 1; }
.floating-card small { color: #897e83; font-size: 7px; }
.floating-card b { font-size: 9px; }
.floating-card > svg { width: 13px; height: 13px; color: #8a7e84; }
.floating-session { bottom: 58px; left: -32px; animation: float-card 5s ease-in-out infinite 600ms; }
.floating-goal { right: -22px; top: 96px; min-width: 180px; animation: float-card 6s ease-in-out infinite reverse; }

.goal-ring,
.large-ring {
  position: relative;
  display: grid;
  border-radius: 50%;
  place-items: center;
  background: conic-gradient(var(--brand) 0 75%, #eee7ea 75% 100%);
}

.goal-ring {
  width: 38px;
  height: 38px;
}

.goal-ring::after,
.large-ring::after {
  position: absolute;
  border-radius: 50%;
  background: white;
  content: "";
}

.goal-ring::after { inset: 5px; }
.goal-ring span { position: relative; z-index: 1; font-size: 7px; font-weight: 900; }

.signal-strip {
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--lime);
}

.signal-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-height: 48px;
  animation: marquee 34s linear infinite;
}

.signal-track span {
  padding: 0 25px;
  color: #303600;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-track i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

.section {
  padding: 112px 0;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 52px;
}

.section-heading .kicker,
.workflow-heading .kicker,
.portal-copy .kicker,
.faq-heading .kicker,
.cta .kicker {
  margin-bottom: 16px;
}

.section-heading > p:last-child,
.workflow-heading > p:last-child,
.portal-copy > p,
.faq-heading + p {
  max-width: 660px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.tour-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 24px 70px rgba(56, 35, 44, 0.08);
}

.tour-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: #f7f6f4;
}

.tour-tabs button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 64px;
  border-right: 1px solid var(--line);
  background: transparent;
  color: #7a6f74;
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
}

.tour-tabs button:last-child { border-right: 0; }
.tour-tabs button svg { width: 16px; height: 16px; }
.tour-tabs button.active { background: white; color: var(--brand); }
.tour-tabs button em { position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: var(--brand); }
.tour-tabs button.active em { animation: tab-progress 6s linear forwards; }

.tour-stage {
  position: relative;
  min-height: 570px;
}

.tour-panel {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  align-items: center;
  gap: 55px;
  min-height: 570px;
  padding: 52px;
  background:
    linear-gradient(rgba(150, 55, 86, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(150, 55, 86, 0.03) 1px, transparent 1px),
    #fff;
  background-size: 32px 32px;
}

.tour-panel[hidden] { display: none; }
.tour-panel.active .tour-copy { animation: enter-copy 480ms ease both; }
.tour-panel.active .screen-card { animation: enter-screen 620ms cubic-bezier(.2,.8,.2,1) both; }

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

.tour-number {
  display: block;
  margin-bottom: 28px;
  color: #d7cdd1;
  font-size: 13px;
  font-weight: 900;
}

.tour-copy h3 {
  max-width: 460px;
  margin-top: 13px;
  font-size: clamp(30px, 3.2vw, 45px);
  line-height: 1.04;
}

.tour-copy > p:not(.kicker) {
  max-width: 480px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.tour-copy ul {
  display: grid;
  gap: 11px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.tour-copy li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #51474c;
  font-size: 13px;
  font-weight: 750;
}

.tour-copy li svg {
  width: 17px;
  height: 17px;
  padding: 3px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
}

.screen-card {
  overflow: hidden;
  min-height: 410px;
  border: 1px solid #d9cfd4;
  border-radius: 8px;
  background: #fbfbf9;
  box-shadow: 0 22px 55px rgba(55, 32, 42, 0.14);
}

.screen-toolbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 42px;
  padding: 0 13px;
  border-bottom: 1px solid #e6e0e3;
  background: white;
  color: #786d72;
  font-size: 10px;
}

.screen-toolbar > div { display: flex; gap: 5px; }
.screen-toolbar > div span { width: 7px; height: 7px; border-radius: 50%; background: #ddd4d8; }
.screen-toolbar > div span:first-child { background: #e9a29c; }
.screen-toolbar > div span:nth-child(2) { background: #e9cf7d; }
.screen-toolbar > div span:nth-child(3) { background: #9fcaa3; }
.screen-toolbar > svg { justify-self: end; width: 14px; height: 14px; }
.screen-toolbar button { justify-self: end; display: flex; align-items: center; gap: 6px; padding: 6px 9px; border-radius: 4px; background: var(--brand); color: white; font-size: 8px; font-weight: 800; }
.screen-toolbar button svg { width: 11px; height: 11px; }

.metric-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 25px 25px 10px;
}

.metric-cards article {
  display: grid;
  min-height: 95px;
  padding: 14px;
  border: 1px solid #e4dee1;
  border-radius: 6px;
  background: white;
}

.metric-cards strong { font-size: 25px; }
.metric-cards em { color: var(--brand); font-size: 8px; font-style: normal; font-weight: 750; }

.chart-card {
  margin: 4px 25px 25px;
  padding: 18px;
  border: 1px solid #e4dee1;
  border-radius: 6px;
  background: white;
}

.chart-head b { display: block; font-size: 11px; }
.chart-head > span { padding: 5px 8px; border-radius: 4px; background: #e6f4e6; color: #427748; font-size: 9px; font-weight: 850; }
.bar-chart { display: flex; align-items: flex-end; gap: 12px; height: 185px; padding: 30px 7px 0; border-bottom: 1px solid #ddd4d8; background: repeating-linear-gradient(to bottom, transparent 0 44px, #eee9eb 44px 45px); }
.bar-chart i { flex: 1; height: var(--h); border-radius: 4px 4px 0 0; background: var(--brand-soft); transform-origin: bottom; animation: grow-bar 1s cubic-bezier(.2,.8,.2,1) both; }
.bar-chart i:nth-child(6), .bar-chart i:nth-child(8) { background: var(--brand); }

.client-profile { padding: 24px 25px 18px; }
.profile-avatar { display: grid; width: 52px; height: 52px; margin-right: 12px; place-items: center; border-radius: 50%; background: var(--coral); color: #684135; font-size: 14px; font-weight: 900; }
.client-profile > div { flex: 1; }
.client-profile h4 { font-size: 17px; }
.client-profile p { margin: 3px 0 0; color: #897e83; font-size: 9px; }
.client-profile button { display: flex; align-items: center; gap: 6px; padding: 7px 10px; border: 1px solid #d9cfd4; border-radius: 4px; background: white; font-size: 8px; font-weight: 800; }
.client-profile button svg { width: 12px; height: 12px; }
.client-nav { display: flex; gap: 23px; padding: 0 25px; border-bottom: 1px solid #e4dee1; color: #8e8388; font-size: 9px; font-weight: 800; }
.client-nav span { padding: 10px 0; }
.client-nav span.active { border-bottom: 2px solid var(--brand); color: var(--brand); }
.client-summary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 22px 25px; }
.client-summary-grid article { min-height: 175px; padding: 17px; border: 1px solid #e4dee1; border-radius: 6px; background: white; }
.client-summary-grid b { display: block; margin-top: 17px; font-size: 14px; }
.client-summary-grid p { margin: 5px 0 0; color: #897e83; font-size: 9px; }
.thin-progress { height: 6px; margin-top: 36px; overflow: hidden; border-radius: 3px; background: #eee7ea; }
.thin-progress span { display: block; width: 68%; height: 100%; background: var(--brand); }
.team-row { display: flex; align-items: center; margin-top: 32px; }
.team-row span { display: grid; width: 27px; height: 27px; margin-right: -6px; place-items: center; border: 2px solid white; border-radius: 50%; background: var(--violet); font-size: 7px; font-weight: 900; }
.team-row span:nth-child(2) { background: var(--coral); }
.team-row em { margin-left: auto; color: var(--brand); font-size: 8px; font-style: normal; font-weight: 800; }

.week-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 7px; padding: 20px 25px 12px; }
.week-row span { display: grid; min-height: 54px; place-items: center; border: 1px solid #e4dee1; border-radius: 5px; background: white; font-size: 12px; font-weight: 850; }
.week-row small { display: block; font-size: 7px; }
.week-row span.active { border-color: var(--brand); background: var(--brand); color: white; }
.week-row span.active small { color: #f7dfe8; }
.session-list { padding: 4px 25px 20px; }
.session-list article { display: grid; grid-template-columns: 42px 3px 1fr auto; align-items: center; gap: 11px; min-height: 73px; margin-top: 8px; padding: 0 14px; border: 1px solid #e4dee1; border-radius: 6px; background: white; }
.session-list article.highlight { border-color: #cda8b6; box-shadow: 0 8px 25px rgba(150,55,86,.08); }
.session-list time { font-size: 10px; font-weight: 850; }
.session-list article > i { width: 3px; height: 33px; border-radius: 3px; background: var(--blue); }
.session-list article.highlight > i { background: var(--brand); }
.session-list article div { display: grid; font-size: 10px; }
.session-list article div small { margin-top: 3px; font-size: 8px; }
.session-list article > span { padding: 5px 7px; border-radius: 4px; background: #f0ecee; color: #796e73; font-size: 7px; font-weight: 800; }
.session-list article.highlight > span { background: var(--brand-soft); color: var(--brand); }

.goal-feature { display: grid; grid-template-columns: 135px 1fr; align-items: center; min-height: 202px; margin: 22px 25px 12px; padding: 20px; border: 1px solid #e4dee1; border-radius: 6px; background: white; }
.large-ring { width: 112px; height: 112px; }
.large-ring::after { inset: 12px; }
.large-ring > span { position: relative; z-index: 1; display: grid; text-align: center; }
.large-ring strong { font-size: 22px; }
.large-ring small { font-size: 7px; }
.goal-feature h4 { margin-top: 7px; font-size: 18px; }
.goal-feature p { margin: 7px 0 0; color: #897e83; font-size: 9px; }
.milestone-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 0 25px 22px; }
.milestone-list span { display: grid; grid-template-columns: 22px 1fr; align-items: center; min-height: 67px; padding: 9px; border: 1px solid #e4dee1; border-radius: 5px; background: white; }
.milestone-list svg { grid-row: 1 / 3; width: 16px; height: 16px; padding: 3px; border-radius: 50%; background: #e5f4e7; color: #4d8957; }
.milestone-list .current svg { background: var(--brand-soft); color: var(--brand); }
.milestone-list b { font-size: 8px; }
.milestone-list small { font-size: 6.5px; }

.workflow {
  overflow: hidden;
  padding: 108px 0;
  background: var(--dark);
  color: white;
}

.workflow-inner {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
}

.kicker-light { color: var(--lime); }
.workflow-heading { position: sticky; top: 112px; align-self: start; }
.workflow-heading h2 { max-width: 480px; }
.workflow-heading > p:last-child { color: rgba(255,255,255,.66); }
.workflow-steps { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.14); }
.workflow-steps::before { position: absolute; left: -42px; top: 0; width: 1px; height: 100%; background: rgba(255,255,255,.15); content: ""; }
.workflow-steps article { position: relative; min-height: 280px; padding: 32px; background: var(--dark); }
.workflow-steps article > span { position: absolute; right: 24px; top: 21px; color: rgba(255,255,255,.26); font-size: 11px; font-weight: 900; }
.workflow-icon { display: grid; width: 48px; height: 48px; margin-bottom: 55px; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 7px; background: rgba(255,255,255,.06); color: var(--lime); }
.workflow-icon svg { width: 21px; height: 21px; }
.workflow-steps h3 { font-size: 22px; }
.workflow-steps p { max-width: 260px; margin: 12px 0 0; color: rgba(255,255,255,.58); font-size: 14px; line-height: 1.65; }

.portal-section {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  align-items: center;
  gap: 60px;
}

.portal-points {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.portal-points > span {
  display: grid;
  grid-template-columns: 37px 1fr;
  align-items: center;
  column-gap: 11px;
}

.portal-points svg { grid-row: 1 / 3; width: 37px; height: 37px; padding: 9px; border-radius: 6px; background: var(--brand-soft); color: var(--brand); }
.portal-points b { font-size: 13px; }
.portal-points small { color: var(--muted); font-size: 12px; }
.portal-visual { position: relative; min-height: 590px; }

.portal-window {
  position: absolute;
  overflow: hidden;
  border: 1px solid #d9cfd4;
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.portal-label { display: flex; align-items: center; gap: 7px; height: 38px; padding: 0 12px; border-bottom: 1px solid #e4dee1; background: #f3f1f2; color: #72676c; font-size: 9px; font-weight: 850; text-transform: uppercase; }
.portal-label svg { width: 13px; height: 13px; }
.coach-view { left: 0; top: 70px; width: 68%; min-height: 410px; transform: rotate(-2deg); }
.client-view { right: 0; top: 140px; width: 48%; min-height: 390px; transform: rotate(2.5deg); animation: portal-float 7s ease-in-out infinite; }
.portal-mini-head { height: 52px; padding: 0 17px; border-bottom: 1px solid #ece7e9; }
.portal-mini-head .mini-brand { padding: 0; }
.portal-mini-head > span { display: grid; width: 26px; height: 26px; place-items: center; border-radius: 50%; background: var(--brand); color: white; font-size: 7px; font-weight: 900; }
.portal-body { display: grid; grid-template-columns: 46px 1fr; min-height: 320px; }
.portal-body aside { display: flex; flex-direction: column; align-items: center; gap: 24px; padding-top: 25px; border-right: 1px solid #ece7e9; }
.portal-body aside svg { width: 14px; height: 14px; color: #968b90; }
.portal-body aside svg:nth-child(2) { color: var(--brand); }
.portal-main { padding: 30px 25px; }
.portal-main > small { color: var(--brand); font-size: 7px; font-weight: 900; letter-spacing: .1em; }
.portal-main h3 { margin-top: 6px; font-size: 17px; }
.portal-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 24px; }
.portal-stats span { display: grid; padding: 13px; border: 1px solid #e7e1e4; border-radius: 5px; }
.portal-stats b { font-size: 19px; }
.portal-line { display: grid; gap: 8px; margin-top: 24px; }
.portal-line i { height: 8px; border-radius: 3px; background: #efe9ec; }
.portal-line i:nth-child(2) { width: 82%; }
.portal-line i:nth-child(3) { width: 64%; }
.client-view { padding-bottom: 18px; }
.client-view .portal-label { background: var(--brand); color: white; }
.client-welcome { justify-content: flex-start; gap: 10px; padding: 25px 20px 17px; }
.client-welcome > span { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: var(--coral); color: #674033; font-size: 11px; font-weight: 900; }
.client-welcome small { color: #978c91; font-size: 6px; font-weight: 900; letter-spacing: .1em; }
.client-welcome h3 { font-size: 17px; }
.next-step { display: flex; gap: 10px; margin: 5px 17px; padding: 15px; border: 1px solid #e3dade; border-radius: 6px; background: #faf9f7; }
.next-step > svg { flex: 0 0 28px; width: 28px; height: 28px; padding: 6px; border-radius: 6px; background: var(--brand-soft); color: var(--brand); }
.next-step div { display: grid; }
.next-step small { color: var(--brand); font-size: 6px; font-weight: 900; }
.next-step b { margin-top: 3px; font-size: 9px; }
.next-step p { margin: 3px 0 0; color: #8d8287; font-size: 7px; }
.client-progress { display: block; margin: 20px 17px 0; }
.client-progress > div { display: flex; justify-content: space-between; }
.client-progress small { font-size: 7px; }
.client-progress b { font-size: 10px; }
.client-progress > span { display: block; height: 6px; margin-top: 8px; overflow: hidden; border-radius: 3px; background: #eee7ea; }
.client-progress > span i { display: block; width: 75%; height: 100%; background: var(--brand); }

.audience-section {
  padding: 110px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.audience-grid article {
  position: relative;
  min-height: 345px;
  padding: 30px 26px;
  background: white;
  transition: background 220ms ease, transform 220ms ease;
}

.audience-grid article:hover { z-index: 2; background: #f9f7f8; transform: translateY(-6px); box-shadow: 0 18px 40px rgba(50,31,39,.1); }
.audience-grid article > span { position: absolute; right: 22px; top: 19px; color: #c9bdc2; font-size: 10px; font-weight: 900; }
.audience-grid article > svg { width: 42px; height: 42px; margin: 24px 0 52px; padding: 10px; border-radius: 6px; background: var(--brand-soft); color: var(--brand); }
.audience-grid article:nth-child(2) > svg { background: var(--blue); color: #346982; }
.audience-grid article:nth-child(3) > svg { background: var(--coral); color: #714437; }
.audience-grid article:nth-child(4) > svg { background: var(--green); color: #3f7047; }
.audience-grid h3 { font-size: 20px; }
.audience-grid p { min-height: 88px; margin: 13px 0 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.audience-grid a { display: inline-flex; align-items: center; gap: 7px; margin-top: 17px; color: var(--brand); font-size: 11px; font-weight: 850; }
.audience-grid a svg { width: 13px; height: 13px; transition: transform 180ms ease; }
.audience-grid a:hover svg { transform: translateX(3px); }

.faq {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
}

.faq-heading h2 { font-size: clamp(38px, 4vw, 56px); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 79px; cursor: pointer; font-size: 15px; font-weight: 850; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary svg { flex: 0 0 18px; transition: transform 220ms ease; }
.faq-list details[open] summary svg { transform: rotate(45deg); color: var(--brand); }
.faq-list details p { max-width: 620px; margin: -7px 0 24px; color: var(--muted); font-size: 14px; line-height: 1.7; }

.cta-wrap {
  padding: 0 20px 20px;
}

.cta {
  position: relative;
  overflow: hidden;
  padding: 100px 30px;
  background: var(--brand);
  color: white;
  text-align: center;
}

.cta::before,
.cta::after {
  position: absolute;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  content: "";
}

.cta::before { left: -220px; top: -290px; width: 660px; height: 660px; }
.cta::after { right: -180px; bottom: -350px; width: 720px; height: 720px; }
.cta-mark { position: absolute; left: 50%; top: 50%; display: flex; align-items: center; gap: 18px; color: rgba(255,255,255,.05); font-size: clamp(120px, 23vw, 360px); font-weight: 950; transform: translate(-50%, -50%); white-space: nowrap; }
.cta-mark i { width: .23em; height: .23em; border-radius: 50%; background: rgba(221,255,85,.12); }
.cta > *:not(.cta-mark) { position: relative; z-index: 2; }
.cta h2 { font-size: clamp(46px, 6vw, 78px); }
.cta > p:not(.kicker) { margin: 21px auto 0; color: rgba(255,255,255,.78); font-size: 17px; }
.cta .hero-actions { justify-content: center; }
.button-inverted { background: white; color: var(--brand); }
.button-outline-light { border-color: rgba(255,255,255,.44); color: white; }
.button-outline-light:hover { border-color: white; background: rgba(255,255,255,.08); }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 34px 0;
  color: var(--muted);
  font-size: 12px;
}

.brand-small { font-size: 22px; }
.brand-small .brand-dot { width: 10px; height: 10px; }
.site-footer p { margin: 0; }
.site-footer div { display: flex; gap: 20px; font-weight: 750; }
.site-footer small { font-size: 11px; }

.cookie-banner {
  position: fixed;
  z-index: 80;
  right: 20px;
  bottom: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  width: min(760px, calc(100% - 40px));
  padding: 18px;
  border: 1px solid #d6ccd1;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 48px rgba(51, 28, 38, 0.18);
  backdrop-filter: blur(14px);
}

.cookie-banner strong {
  display: block;
  font-size: 14px;
}

.cookie-banner p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.cookie-actions a {
  color: var(--brand);
  font-size: 12px;
  font-weight: 850;
}

.legal-main {
  border-bottom: 1px solid var(--line);
}

.legal-hero {
  padding: 82px 0 56px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(150, 55, 86, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(150, 55, 86, 0.04) 1px, transparent 1px),
    var(--background);
  background-size: 40px 40px;
}

.legal-hero-inner,
.legal-content {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
}

.legal-hero h1 {
  max-width: 760px;
  margin-top: 14px;
  font-size: clamp(44px, 6vw, 72px);
}

.legal-hero p:not(.kicker) {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.legal-meta span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid #d9cfd4;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.72);
  color: #62575d;
  font-size: 12px;
  font-weight: 800;
}

.legal-content {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 58px;
  padding: 58px 0 92px;
}

.legal-toc {
  position: sticky;
  top: 104px;
  align-self: start;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.legal-toc a {
  color: #62575d;
  font-size: 12px;
  font-weight: 800;
}

.legal-toc a:hover {
  color: var(--brand);
}

.legal-article {
  display: grid;
  gap: 34px;
}

.legal-article section {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.legal-article section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-article h2 {
  font-size: clamp(25px, 3vw, 34px);
}

.legal-article p,
.legal-article li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.legal-article p {
  margin: 12px 0 0;
}

.legal-article ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 20px;
}

.legal-callout {
  padding: 18px;
  border: 1px solid #d9cfd4;
  border-radius: 8px;
  background: white;
}

.legal-callout strong {
  color: var(--ink);
}

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

.security-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.security-grid article svg {
  width: 28px;
  height: 28px;
  margin-bottom: 18px;
  padding: 6px;
  border-radius: 6px;
  background: var(--brand-soft);
  color: var(--brand);
}

.security-grid h3 {
  font-size: 17px;
}

.security-grid p {
  margin-top: 8px;
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.8,.2,1);
}

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

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

@keyframes window-float {
  0%, 100% { transform: rotateY(-4deg) rotateX(1.5deg) translateY(0); }
  50% { transform: rotateY(-2deg) rotateX(.5deg) translateY(-8px); }
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes portal-float {
  0%, 100% { transform: rotate(2.5deg) translateY(0); }
  50% { transform: rotate(1deg) translateY(-9px); }
}

@keyframes slow-spin { to { transform: rotate(360deg); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes pulse-dot { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(.65); opacity: .55; } }
@keyframes live-pulse { 0%, 100% { box-shadow: 0 0 0 5px rgba(98,187,116,.12); } 50% { box-shadow: 0 0 0 9px rgba(98,187,116,0); } }
@keyframes tab-progress { from { width: 0; } to { width: 100%; } }
@keyframes enter-copy { from { opacity: 0; transform: translateX(-18px); } to { opacity: 1; transform: none; } }
@keyframes enter-screen { from { opacity: 0; transform: translateX(22px) scale(.98); } to { opacity: 1; transform: none; } }
@keyframes grow-bar { from { transform: scaleY(0); } to { transform: scaleY(1); } }

@media (max-width: 1180px) {
  .hero-inner { grid-template-columns: .78fr 1.22fr; gap: 24px; }
  .hero-product { width: calc(100% + 50px); }
  .app-frame { grid-template-columns: 120px 1fr; }
  .app-sidebar { padding-inline: 8px; }
  .stat-row article { padding: 10px; }
  .tour-panel { padding: 42px; gap: 38px; }
  .workflow-inner { gap: 50px; }
  .portal-section { gap: 35px; }
}

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; padding: 0 20px; }
  .main-nav { display: none; }
  .hero-inner { grid-template-columns: minmax(0, 1fr); min-height: auto; padding: 64px 0 94px; }
  .hero-copy { max-width: 760px; }
  .hero-product { width: 100%; max-width: 820px; margin: 20px auto 0; }
  .app-window { transform: none; animation-name: simple-window-float; }
  .floating-session { left: -10px; }
  .floating-goal { right: -10px; }
  .tour-panel { grid-template-columns: 1fr; min-height: 0; }
  .tour-stage { min-height: 0; }
  .tour-copy { max-width: 700px; }
  .workflow-inner { grid-template-columns: 1fr; }
  .workflow-heading { position: static; max-width: 730px; }
  .portal-section { grid-template-columns: 1fr; }
  .portal-copy { max-width: 720px; }
  .portal-visual { width: min(760px, 100%); margin: 0 auto; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .faq { grid-template-columns: 1fr; gap: 45px; }
  .site-footer { grid-template-columns: 1fr auto; }
  .site-footer p { display: none; }
  .legal-content { grid-template-columns: 1fr; gap: 32px; }
  .legal-toc { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  @keyframes simple-window-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
}

@media (max-width: 700px) {
  .site-header { min-height: 64px; }
  .brand { font-size: 23px; }
  .brand-dot { width: 11px; height: 11px; }
  .text-link { display: none; }
  .header-actions { gap: 0; }
  .header-actions .button { min-height: 38px; padding: 0 13px; }
  .hero { min-height: auto; }
  .hero-inner, .section, .workflow-inner, .audience-inner, .site-footer { width: min(100% - 28px, 1220px); }
  .hero-inner { gap: 18px; padding: 38px 0 62px; }
  h1 { font-size: clamp(44px, 13.4vw, 60px); }
  h2 { font-size: clamp(37px, 11vw, 54px); }
  .eyebrow { margin-bottom: 15px; }
  .hero-lede { margin-top: 18px; font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; margin-top: 22px; }
  .hero-actions .button { width: 100%; }
  .hero-proof { align-items: flex-start; margin-top: 22px; }
  .hero-product { width: 100%; max-width: none; min-height: 560px; margin: 4px 0 0; overflow: hidden; transform-origin: left center; }
  .hero-product .app-window { position: absolute; left: 0; top: 0; width: 165%; }
  .app-window { animation: none; }
  .floating-session { bottom: 35px; left: 3px; transform: scale(.9); transform-origin: left bottom; animation: none; }
  .floating-goal { display: none; }
  .signal-track { min-height: 44px; }
  .section { padding: 82px 0; }
  .section-heading { margin-bottom: 38px; }
  .tour-tabs { grid-template-columns: repeat(4, minmax(70px, 1fr)); overflow-x: auto; }
  .tour-tabs button { min-height: 58px; gap: 5px; font-size: 10px; }
  .tour-tabs button svg { width: 14px; height: 14px; }
  .tour-panel { gap: 34px; padding: 28px 18px 22px; }
  .tour-stage { overflow: hidden; }
  .tour-number { margin-bottom: 18px; }
  .screen-card { min-height: 0; width: 155%; transform-origin: left top; }
  .tour-panel.active .screen-card { animation-name: enter-mobile-screen; }
  .workflow { padding: 82px 0; }
  .workflow-steps { grid-template-columns: 1fr; }
  .workflow-steps article { min-height: 245px; }
  .workflow-icon { margin-bottom: 40px; }
  .portal-visual { min-height: 480px; }
  .coach-view { top: 40px; width: 82%; }
  .client-view { top: 155px; width: 58%; }
  .audience-section { padding: 82px 0; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-grid article { min-height: 300px; }
  .audience-grid p { min-height: auto; }
  .faq { gap: 30px; }
  .faq-list summary { min-height: 73px; }
  .cta-wrap { padding: 0; }
  .cta { padding: 82px 18px; }
  .site-footer { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .site-footer div { order: 2; }
  .site-footer small { order: 3; }
  .cookie-banner { right: 14px; bottom: 14px; grid-template-columns: 1fr; width: calc(100% - 28px); }
  .cookie-actions { align-items: stretch; flex-direction: column; }
  .cookie-actions .button { width: 100%; }
  .legal-hero { padding: 56px 0 42px; }
  .legal-hero-inner, .legal-content { width: min(100% - 28px, 920px); }
  .legal-content { padding: 42px 0 70px; }
  .legal-toc { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  @keyframes enter-mobile-screen { from { opacity: 0; transform: translateX(18px) scale(.98); } to { opacity: 1; transform: none; } }
}

@media (max-width: 430px) {
  .header-actions .button svg { display: none; }
  .hero-product .app-window { width: 190%; }
  .hero-proof p { font-size: 11px; }
  .tour-tabs button { flex-direction: column; }
  .screen-card { width: 185%; }
  .portal-visual { min-height: 430px; }
  .coach-view { width: 93%; transform: rotate(-1deg); }
  .client-view { top: 150px; width: 66%; }
  .cta h2 br { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
