@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg: #07070c;
  --surface: #0e0e16;
  --surface-2: #13131e;
  --border: #1a1a28;
  --border-2: #242436;
  --text: #eeeef5;
  --text-dim: #8080a0;
  --text-faint: #505068;
  --accent: #7c5cfc;
  --accent-glow: rgba(124, 92, 252, .4);
  --money: #34d399;
  --money-glow: rgba(52, 211, 153, .35);
  --display: 'Space Grotesk', sans-serif;
  --body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1180px;
  --narrow-width: 780px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  line-height: 1.6;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 8% 0%, rgba(124, 92, 252, .13), transparent 32rem),
    radial-gradient(circle at 95% 42%, rgba(52, 211, 153, .06), transparent 28rem);
  content: '';
  pointer-events: none;
}

body.nav-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

::selection {
  background: var(--accent);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

h1,
h2,
h3,
h4,
p,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--text);
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.85rem, 6.4vw, 6.4rem);
}

h2 {
  font-size: clamp(2.2rem, 4.4vw, 4.3rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

p {
  color: var(--text-dim);
}

.container {
  width: min(var(--max-width), calc(100% - 3rem));
  margin-inline: auto;
}

.narrow {
  width: min(var(--narrow-width), calc(100% - 3rem));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(5.5rem, 11vw, 9.5rem);
}

.section + .section {
  border-top: 1px solid var(--border);
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  padding: .7rem 1rem;
  transform: translateY(-180%);
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent-glow);
  transition: width .1s linear;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(26, 26, 40, .8);
  background: rgba(7, 7, 12, .78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header-inner {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--text);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-decoration: none;
}

.brand-mark {
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent-glow);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.site-nav a,
.footer-nav a {
  color: var(--text-dim);
  font-size: .9rem;
  text-decoration: none;
  transition: color .2s ease;
}

.site-nav a:hover,
.footer-nav a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.top-apps {
  display: flex;
  align-items: center;
  gap: .45rem;
}

.top-app {
  display: inline-flex;
  width: 2.45rem;
  height: 2.45rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-2);
  border-radius: 50%;
  background: rgba(14, 14, 22, .78);
  color: var(--text-dim);
  text-decoration: none;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.top-app svg {
  width: 1.05rem;
  height: 1.05rem;
}

.top-app:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: var(--surface-2);
  color: var(--text);
  box-shadow: 0 .5rem 1.4rem rgba(124, 92, 252, .22);
}

.top-app:last-child:hover {
  border-color: var(--money);
  box-shadow: 0 .5rem 1.4rem rgba(52, 211, 153, .2);
}

.menu-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  padding: 0;
  border: 1px solid var(--border-2);
  border-radius: .7rem;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 1.1rem;
  height: 1px;
  margin: auto;
  background: currentColor;
  transition: transform .2s ease;
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  position: absolute;
  content: '';
}

.menu-toggle span::before {
  transform: translateY(-5px);
}

.menu-toggle span::after {
  transform: translateY(5px);
}

.site-header.is-open .menu-toggle span {
  background: transparent;
}

.site-header.is-open .menu-toggle span::before {
  transform: rotate(45deg);
}

.site-header.is-open .menu-toggle span::after {
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .75rem 1.15rem;
  border: 1px solid transparent;
  border-radius: .75rem;
  background: var(--accent);
  color: #fff;
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 .8rem 2rem rgba(124, 92, 252, .25);
}

.button-small {
  min-height: 2.5rem;
  padding: .55rem .9rem;
  font-size: .82rem;
}

.button-secondary {
  border-color: var(--border-2);
  background: var(--surface);
  color: var(--text);
}

.button-secondary:hover {
  border-color: var(--accent);
  background: rgba(124, 92, 252, .08);
  box-shadow: none;
}

.button-text {
  padding-inline: 0;
  border: 0;
  background: transparent;
  color: var(--text-dim);
}

.button-text:hover {
  color: var(--text);
  box-shadow: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1.25rem;
  color: var(--text-faint);
  font-family: var(--display);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.6rem;
  height: 1px;
  background: var(--accent);
  content: '';
}

.hero {
  display: grid;
  min-height: min(49rem, calc(100vh - 4.5rem));
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, .95fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  padding-block: clamp(5rem, 11vw, 9.5rem);
}

.hero h1 {
  max-width: 10ch;
  margin-bottom: 1.7rem;
}

.hero h1 strong {
  color: var(--accent);
  font-weight: 600;
}

.hero-summary {
  max-width: 39rem;
  margin-bottom: 2rem;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1rem;
}

.hero-note {
  color: var(--text-faint);
  font-size: .8rem;
}

.hero-demo {
  position: relative;
}

.demo-window {
  overflow: hidden;
  border: 1px solid var(--border-2);
  border-radius: 1.25rem;
  background: var(--surface);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, .35), 0 0 5rem rgba(124, 92, 252, .12);
}

.demo-bar {
  display: flex;
  height: 2.8rem;
  align-items: center;
  gap: .45rem;
  padding-inline: 1rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}

.demo-dot {
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: var(--border-2);
}

.demo-url {
  margin-left: .45rem;
  color: var(--text-faint);
  font-size: .7rem;
  letter-spacing: .04em;
}

.demo-screen {
  position: relative;
  min-height: 28rem;
  background: var(--surface-2);
}

.demo-screen::after {
  position: absolute;
  right: 1.3rem;
  bottom: 1.2rem;
  left: 1.3rem;
  height: 4.5rem;
  border: 1px solid rgba(124, 92, 252, .28);
  border-radius: .9rem;
  background: linear-gradient(135deg, rgba(124, 92, 252, .2), rgba(14, 14, 22, .5));
  content: '';
  pointer-events: none;
}

.demo-screen video {
  width: 100%;
  height: 28rem;
  object-fit: cover;
  background: var(--surface-2);
}

.demo-caption {
  position: absolute;
  right: 2rem;
  bottom: 2.35rem;
  left: 2rem;
  z-index: 1;
  color: var(--text);
  font-family: var(--display);
  font-size: .95rem;
  font-weight: 600;
}

.demo-badge {
  position: absolute;
  right: -1.4rem;
  bottom: -1.6rem;
  z-index: 2;
  max-width: 11rem;
  padding: 1rem;
  border: 1px solid rgba(52, 211, 153, .3);
  border-radius: .9rem;
  background: rgba(14, 14, 22, .94);
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, .3);
  color: var(--text-dim);
  font-size: .78rem;
}

.demo-badge strong {
  display: block;
  margin-bottom: .25rem;
  color: var(--money);
  font-family: var(--display);
  font-size: 1.3rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-block: 1px solid var(--border);
  background: var(--border);
}

.trust-strip > div {
  padding: 1.4rem 1.5rem;
  background: var(--bg);
}

.trust-strip strong {
  display: block;
  margin-bottom: .3rem;
  color: var(--text);
  font-family: var(--display);
  font-size: 1rem;
}

.trust-strip span {
  color: var(--text-dim);
  font-size: .86rem;
}

.section-heading {
  max-width: 46rem;
  margin-bottom: 3.5rem;
}

.section-heading h2 {
  margin-bottom: 1.1rem;
}

.section-heading p {
  max-width: 40rem;
  font-size: 1.08rem;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading.center p {
  margin-inline: auto;
}

.section-link {
  margin: 1.5rem 0 0;
}

.definition-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(17rem, .65fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}

.definition-copy {
  max-width: 48rem;
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.7vw, 2.4rem);
  letter-spacing: -.025em;
  line-height: 1.22;
}

.definition-copy em {
  color: var(--accent);
  font-style: normal;
}

.fact-list {
  display: grid;
  gap: .9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fact-list li {
  padding: 1rem 1.05rem;
  border: 1px solid var(--border);
  border-radius: .8rem;
  background: var(--surface);
  color: var(--text-dim);
  font-size: .9rem;
}

.fact-list strong {
  display: block;
  margin-bottom: .22rem;
  color: var(--text);
  font-family: var(--display);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.step-card {
  min-height: 15rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--surface);
  transition: border-color .2s ease, transform .2s ease;
}

.step-card:hover,
.feature-card:hover,
.coach-card:hover,
.method-card:hover,
.post-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-2);
}

.step-number {
  display: block;
  margin-bottom: 3.5rem;
  color: var(--accent);
  font-family: var(--display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.step-card h3 {
  margin-bottom: .65rem;
  font-size: 1.25rem;
}

.step-card p {
  margin-bottom: 0;
  font-size: .9rem;
}

.goal-row {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 2rem;
}

.goal-chip,
.tag {
  display: inline-flex;
  align-items: center;
  padding: .52rem .75rem;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text-dim);
  font-size: .8rem;
}

.comparison-shell {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--surface);
}

.comparison-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.comparison-table th {
  color: var(--text-faint);
  font-family: var(--display);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  width: 25%;
}

.comparison-table td {
  color: var(--text-dim);
  font-size: .9rem;
}

.comparison-table td:first-child {
  color: var(--text);
  font-family: var(--display);
  font-weight: 600;
}

.comparison-table .highlight {
  background: rgba(124, 92, 252, .06);
  color: var(--text);
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.feature-card {
  position: relative;
  min-height: 15rem;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--surface);
  transition: border-color .2s ease, transform .2s ease;
}

.feature-card::after {
  position: absolute;
  right: -4rem;
  bottom: -5rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: var(--accent-glow);
  content: '';
  filter: blur(45px);
  opacity: .18;
  pointer-events: none;
}

.feature-index {
  display: block;
  margin-bottom: 2.5rem;
  color: var(--accent);
  font-family: var(--display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.feature-card h3 {
  max-width: 18rem;
  margin-bottom: .7rem;
}

.feature-card p {
  max-width: 32rem;
  margin-bottom: 0;
}

.coach-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .8rem;
}

.coach-card {
  min-height: 20rem;
  padding: 1.2rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--surface);
  transition: border-color .2s ease, transform .2s ease;
}

.coach-card:nth-child(2),
.coach-card:nth-child(4) {
  margin-top: 1.5rem;
}

.coach-index {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5rem;
  color: var(--text-faint);
  font-family: var(--display);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.coach-index::after {
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
  content: '';
}

.coach-card:nth-child(2) .coach-index::after,
.coach-card:nth-child(4) .coach-index::after {
  background: var(--money);
  box-shadow: 0 0 12px var(--money-glow);
}

.coach-card h3 {
  margin-bottom: .45rem;
  font-size: 1.35rem;
}

.coach-role {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--accent);
  font-family: var(--display);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.coach-card p {
  margin-bottom: 0;
  font-size: .86rem;
}

.method-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(2rem, 8vw, 8rem);
  align-items: start;
}

.method-intro h2 {
  margin-bottom: 1.2rem;
}

.method-intro p {
  max-width: 24rem;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.method-card {
  padding: 1.4rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--surface);
  transition: border-color .2s ease, transform .2s ease;
}

.method-card strong {
  display: block;
  margin-bottom: .45rem;
  color: var(--text);
  font-family: var(--display);
}

.method-card p {
  margin-bottom: 0;
  font-size: .87rem;
}

.boundary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.boundary > div {
  padding: 1.2rem;
  border: 1px solid var(--border);
  border-radius: .9rem;
  background: rgba(14, 14, 22, .65);
}

.boundary strong {
  display: block;
  margin-bottom: .35rem;
  color: var(--text);
  font-family: var(--display);
}

.boundary p {
  margin-bottom: 0;
  font-size: .86rem;
}

.pricing-grid {
  display: grid;
  max-width: 58rem;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-inline: auto;
}

.price-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--border);
  border-radius: 1.15rem;
  background: var(--surface);
}

.price-card.featured {
  border-color: rgba(124, 92, 252, .55);
  background: linear-gradient(155deg, rgba(124, 92, 252, .13), var(--surface) 50%);
  box-shadow: 0 1.5rem 4rem rgba(124, 92, 252, .1);
}

.price-label {
  margin-bottom: 2.5rem;
  color: var(--text-faint);
  font-family: var(--display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.price-card h3 {
  margin-bottom: .5rem;
}

.price-amount {
  margin-bottom: 1.5rem;
  color: var(--text);
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -.06em;
}

.price-amount small {
  color: var(--text-dim);
  font-family: var(--body);
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: 0;
}

.price-card ul {
  display: grid;
  gap: .7rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--text-dim);
  font-size: .9rem;
}

.price-card li::before {
  position: absolute;
  top: .55rem;
  left: 0;
  width: .38rem;
  height: .38rem;
  border-radius: 50%;
  background: var(--accent);
  content: '';
}

.price-card .button {
  width: 100%;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0;
  color: var(--text);
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  flex: 0 0 auto;
  color: var(--accent);
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform .2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-width: 44rem;
  padding: 0 2rem 1.35rem 0;
  color: var(--text-dim);
  font-size: .95rem;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--border);
  border-radius: 1.15rem;
  background: var(--surface);
}

.newsletter h2 {
  margin-bottom: .5rem;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.newsletter p {
  margin-bottom: 0;
}

.email-form {
  display: flex;
  min-width: min(100%, 22rem);
  gap: .45rem;
  padding: .3rem;
  border: 1px solid var(--border-2);
  border-radius: .8rem;
  background: var(--bg);
}

.email-form input {
  width: 100%;
  min-width: 0;
  padding: .65rem .7rem;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: .88rem;
}

.email-form input::placeholder {
  color: var(--text-faint);
}

.email-form button {
  flex: 0 0 auto;
  padding: .65rem .9rem;
  border: 0;
  border-radius: .55rem;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  font-size: .82rem;
  font-weight: 700;
}

.email-form button:disabled {
  cursor: wait;
  opacity: .65;
}

.form-message {
  display: none;
  margin: .55rem 0 0;
  color: var(--text-dim);
  font-size: .78rem;
}

.form-message.is-visible {
  display: block;
}

.form-message.is-success {
  color: var(--money);
}

.site-footer {
  padding-block: 4rem 2rem;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
}

.footer-column h2,
.footer-column h3 {
  margin-bottom: .8rem;
  font-size: 1rem;
  letter-spacing: -.01em;
}

.footer-column p {
  max-width: 20rem;
  margin-bottom: 0;
  font-size: .86rem;
}

.footer-nav {
  display: grid;
  gap: .55rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
  color: var(--text-faint);
  font-size: .78rem;
}

.footer-bottom a {
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--text);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.sticky-cta {
  display: none;
}

/* Shared inner pages */
.page-main {
  min-height: 70vh;
}

.page-hero {
  padding-block: clamp(5rem, 10vw, 8rem) 4rem;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  max-width: 12ch;
  margin-bottom: 1.3rem;
  font-size: clamp(3rem, 7vw, 6.5rem);
}

.page-hero h1 strong {
  color: var(--accent);
  font-weight: 600;
}

.page-lead {
  max-width: 43rem;
  margin-bottom: 0;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1rem;
  margin-top: 1.3rem;
  color: var(--text-faint);
  font-size: .8rem;
}

.content-section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.prose {
  max-width: 48rem;
}

.prose h2 {
  margin: 3.5rem 0 1rem;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.prose h3 {
  margin: 2.1rem 0 .7rem;
  font-size: 1.35rem;
}

.prose h2:first-child,
.prose h3:first-child {
  margin-top: 0;
}

.prose p,
.prose li {
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.8;
}

.prose a {
  color: var(--text);
  text-decoration-color: var(--accent);
  text-underline-offset: .18em;
}

.prose ul,
.prose ol {
  display: grid;
  gap: .55rem;
  padding-left: 1.25rem;
}

.prose blockquote {
  margin: 2rem 0;
  padding: 1.2rem 1.35rem;
  border-left: 2px solid var(--accent);
  background: var(--surface);
  color: var(--text);
  font-family: var(--display);
  font-size: 1.25rem;
}

.callout {
  margin: 2rem 0;
  padding: 1.35rem;
  border: 1px solid rgba(124, 92, 252, .35);
  border-radius: .9rem;
  background: rgba(124, 92, 252, .08);
}

.callout strong {
  display: block;
  margin-bottom: .45rem;
  color: var(--text);
  font-family: var(--display);
}

.callout p {
  margin-bottom: 0;
}

.content-with-sidebar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 16rem;
  gap: clamp(2rem, 8vw, 7rem);
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 6rem;
}

.sidebar-card {
  padding: 1.1rem;
  border: 1px solid var(--border);
  border-radius: .9rem;
  background: var(--surface);
}

.sidebar-card h2 {
  margin-bottom: .8rem;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.sidebar-card a {
  display: block;
  padding: .35rem 0;
  color: var(--text-dim);
  font-size: .82rem;
  text-decoration: none;
}

.sidebar-card a:hover {
  color: var(--text);
}

.post-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.post-card {
  display: flex;
  min-height: 19rem;
  flex-direction: column;
  padding: 1.4rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--surface);
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease;
}

.post-card .tag {
  align-self: flex-start;
  margin-bottom: 2.2rem;
  color: var(--accent);
  font-size: .7rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.post-card h2 {
  margin-bottom: .65rem;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.post-card p {
  margin-bottom: 1.4rem;
  font-size: .9rem;
}

.post-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  color: var(--text-faint);
  font-size: .75rem;
}

.post-card-meta span:last-child {
  color: var(--accent);
}

.article-header {
  max-width: 55rem;
}

.article-header h1 {
  max-width: 15ch;
  margin-bottom: 1.4rem;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
}

.article-header .page-lead {
  max-width: 43rem;
}

.article-facts {
  margin: 2rem 0 2.5rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(52, 211, 153, .32);
  border-radius: 1rem;
  background: rgba(52, 211, 153, .06);
}

.article-facts h2 {
  margin-bottom: .7rem;
  color: var(--money);
  font-size: 1rem;
  letter-spacing: .02em;
}

.article-facts ul {
  display: grid;
  gap: .55rem;
  margin: 0;
  padding-left: 1.1rem;
}

.article-facts li {
  color: var(--text-dim);
  font-size: .92rem;
}

.article-source {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
  color: var(--text-faint);
  font-size: .78rem;
}

.article-source a {
  color: var(--text-dim);
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.press-card,
.press-empty,
.press-kit {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--surface);
}

.press-empty {
  grid-column: 1 / -1;
  padding-block: 3rem;
  text-align: center;
}

.press-empty h2 {
  margin-bottom: .7rem;
  font-size: 2rem;
}

.press-empty p {
  max-width: 35rem;
  margin: 0 auto 1.3rem;
}

.press-card .tag {
  margin-bottom: 2rem;
}

.press-card h2 {
  margin-bottom: .6rem;
  font-size: 1.3rem;
}

.press-card p {
  margin-bottom: 1.2rem;
  font-size: .88rem;
}

.press-card a {
  color: var(--accent);
  font-size: .85rem;
  text-decoration: none;
}

.press-kit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1rem;
  background: linear-gradient(135deg, rgba(124, 92, 252, .1), var(--surface) 55%);
}

.press-kit h2 {
  margin-bottom: .75rem;
  font-size: 1.65rem;
}

.press-kit p {
  margin-bottom: 0;
  font-size: .9rem;
}

.resource-list {
  display: grid;
  gap: .7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.resource-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .8rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-dim);
  font-size: .86rem;
  text-decoration: none;
}

.resource-list a:hover {
  color: var(--text);
}

.resource-list a::after {
  color: var(--accent);
  content: '↗';
}

.about-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.about-stat {
  padding: 1.3rem;
  border: 1px solid var(--border);
  border-radius: .9rem;
  background: var(--surface);
}

.about-stat strong {
  display: block;
  margin-bottom: .35rem;
  color: var(--accent);
  font-family: var(--display);
  font-size: 1.3rem;
}

.about-stat span {
  color: var(--text-dim);
  font-size: .82rem;
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .hero h1 {
    max-width: 13ch;
  }

  .hero-demo {
    width: min(100%, 38rem);
    margin-inline: auto;
  }

  .step-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .coach-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .coach-card:nth-child(4) {
    margin-top: 0;
  }

  .coach-card:nth-child(5) {
    grid-column: 2;
  }

  .method-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .method-intro p {
    max-width: 38rem;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
  }

  .footer-grid .footer-column:last-child {
    grid-column: 1 / -1;
  }

  .press-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .container,
  .narrow {
    width: min(100% - 2rem, var(--max-width));
  }

  .section {
    padding-block: 4.5rem;
  }

  .site-header-inner {
    min-height: 4rem;
  }

  .site-nav {
    position: absolute;
    top: 4rem;
    right: 1rem;
    left: 1rem;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: .5rem;
    border: 1px solid var(--border-2);
    border-radius: .9rem;
    background: rgba(14, 14, 22, .98);
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, .35);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: .8rem;
    border-radius: .5rem;
  }

  .site-nav a:hover {
    background: var(--surface-2);
  }

  .nav-actions .button {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .trust-strip,
  .definition-layout,
  .feature-grid,
  .pricing-grid,
  .newsletter,
  .boundary,
  .press-kit {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    gap: 0;
  }

  .trust-strip > div {
    border-bottom: 1px solid var(--border);
  }

  .trust-strip > div:last-child {
    border-bottom: 0;
  }

  .definition-copy {
    font-size: 1.65rem;
  }

  .step-grid,
  .method-grid,
  .post-card-grid,
  .press-grid,
  .about-stat-grid {
    grid-template-columns: 1fr;
  }

  .coach-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .coach-card:nth-child(2) {
    margin-top: 1rem;
  }

  .coach-card:nth-child(5) {
    grid-column: auto;
    margin-top: 0;
  }

  .step-card {
    min-height: auto;
  }

  .step-number,
  .feature-index {
    margin-bottom: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid .footer-column:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .email-form {
    width: 100%;
    min-width: 0;
  }

  .demo-badge {
    right: .8rem;
    bottom: -1.3rem;
  }

  .content-with-sidebar {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    order: -1;
  }

  .sidebar-card {
    display: none;
  }

  .sticky-cta {
    position: fixed;
    right: .8rem;
    bottom: .8rem;
    left: .8rem;
    z-index: 45;
    display: block;
    padding: .85rem 1rem;
    border-radius: .8rem;
    background: var(--accent);
    box-shadow: 0 .8rem 2rem rgba(124, 92, 252, .35);
    color: #fff;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
  }

  body.has-sticky-cta {
    padding-bottom: 4.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(1.2rem);
  transition: opacity .7s ease, transform .7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
