/* Oboka instrument-panel design — shared landing styles */

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

:root {
  --bg: #14211E;
  --surface: #1B2C28;
  --surface2: #24382F;
  --line: #33473F;
  --ink: #ECE7DA;
  --ink-dim: #9FB0AA;
  --ink-faint: #6C7E77;
  --accent: #D69A4C;
  --accent-ink: #1B2622;
  --semantic-low: #8FA98F;
  --semantic-medium: #D6A24C;
  --semantic-high: #C97B5A;
  --semantic-danger: #B5544A;
  --cat-art: #C97B9E;
  --cat-productivity: #6E93A8;
  --cat-personal: #9C8BC4;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: ui-monospace, 'SF Mono', 'JetBrains Mono', Menlo, Consolas, monospace;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .fade-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .dot {
    animation: none !important;
  }
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}

.container.narrow {
  max-width: 720px;
}

section {
  position: relative;
}

/* —— Brand mark —— */
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.wordmark-text {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
}

.mark-svg {
  flex-shrink: 0;
}

/* —— Nav —— */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(20, 33, 30, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

.nav-cta,
.cta-small {
  background: var(--accent);
  color: var(--accent-ink);
  padding: 9px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.nav-cta:hover,
.cta-small:hover {
  opacity: 0.88;
}

/* —— Buttons —— */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 15px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-dim);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

.btn-ghost:hover {
  color: var(--ink);
}

/* —— Section typography —— */
.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
}

h1 {
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
  font-weight: 700;
}

h1 em,
h2 em {
  font-style: normal;
  color: var(--accent);
}

h2 {
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.4px;
  margin-bottom: 18px;
  font-weight: 700;
}

h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-sub {
  font-size: 17px;
  color: var(--ink-dim);
  max-width: 520px;
  line-height: 1.75;
}

/* —— Hero —— */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(214, 154, 76, 0.08) 0%, transparent 68%);
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.seg-chooser {
  margin-bottom: 28px;
}

.seg-q {
  font-size: 11px;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  font-weight: 500;
  font-family: var(--font-mono);
}

.seg-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.seg-btn {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-dim);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  font-family: var(--font-body);
}

.seg-btn:hover {
  border-color: var(--accent);
  color: var(--ink);
}

.seg-btn.active {
  background: var(--surface2);
  border-color: var(--accent);
  color: var(--ink);
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  color: var(--ink-dim);
  font-weight: 500;
  letter-spacing: 0.2px;
  margin-bottom: 24px;
}

.dot {
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.hero-sub {
  font-size: 17px;
  color: var(--ink-dim);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

/* —— Phone mockup (instrument panel) —— */
.phone-mockup {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
}

.mock-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.mock-back {
  width: 30px;
  height: 30px;
  background: var(--surface2);
  border: 1px solid var(--line);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--ink-dim);
}

.mock-topbar-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.mock-pdf-icon {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 14px;
}

.mock-content {
  padding: 16px;
  background: var(--surface);
}

.mock-exp-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.25;
}

.mock-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.spec-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 5px;
}

.spec-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cat-personal);
}

.spec-tag-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.mock-day-readout {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.5px;
}

.mock-progress-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 14px;
}

.mock-progress-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.mock-progress-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.mock-progress-pct {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
}

.mock-progress-track {
  height: 4px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}

.mock-progress-fill {
  height: 100%;
  width: 57%;
  background: var(--accent);
  border-radius: 2px;
}

.mock-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.mock-section-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.mock-section-count {
  font-family: var(--font-mono);
  background: var(--bg);
  color: var(--ink-faint);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  border: 1px solid var(--line);
}

.mock-note {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px;
  margin-bottom: 6px;
}

.mock-note-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}

.mock-note-day {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
}

.mock-note-date {
  font-size: 10px;
  color: var(--ink-faint);
}

.mock-note-text {
  font-size: 12px;
  color: var(--ink-dim);
  line-height: 1.45;
}

.cap-badge {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 3px 7px;
  border-radius: 4px;
  border: 1px solid;
  text-transform: uppercase;
}

.cap-badge.low {
  color: var(--semantic-low);
  border-color: var(--semantic-low);
  background: rgba(143, 169, 143, 0.12);
}

.cap-badge.medium {
  color: var(--semantic-medium);
  border-color: var(--semantic-medium);
  background: rgba(214, 162, 76, 0.12);
}

.cap-badge.high {
  color: var(--semantic-high);
  border-color: var(--semantic-high);
  background: rgba(201, 123, 90, 0.12);
}

.mock-actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--line);
}

.mock-btn-add {
  background: var(--accent);
  color: var(--accent-ink);
  padding: 12px 6px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.mock-btn-pause,
.mock-btn-end {
  background: var(--surface);
  color: var(--ink-dim);
  padding: 12px 6px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  border-left: 1px solid var(--line);
}

/* —— Trust bar —— */
.trust-bar {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-dim);
  font-weight: 500;
}

/* —— Steps —— */
#how {
  padding: 100px 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(33.33% - 4px);
  right: calc(33.33% - 4px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), var(--line), transparent);
  pointer-events: none;
}

.step-n {
  width: 44px;
  height: 44px;
  background: var(--surface2);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--accent);
  margin-bottom: 20px;
}

.step p {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.7;
}

/* —— Who cards —— */
#who {
  padding: 100px 0;
  background: var(--surface);
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 56px;
}

.who-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s;
}

.who-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.who-icon {
  font-size: 32px;
  margin-bottom: 18px;
}

.who-card p {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.7;
}

.who-tag {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 5px;
  border: 1px solid var(--line);
  color: var(--ink-dim);
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

/* —— Why / contrast —— */
#why {
  padding: 100px 0;
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contrast-table {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.contrast-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.contrast-row:last-child {
  border-bottom: none;
}

.contrast-cell {
  padding: 14px 18px;
  font-size: 13px;
  line-height: 1.5;
}

.contrast-cell.bad {
  color: var(--ink-faint);
  background: var(--surface);
}

.contrast-cell.bad::before {
  content: '✗  ';
  color: var(--semantic-danger);
  opacity: 0.7;
}

.contrast-cell.good {
  color: var(--ink);
  background: var(--surface2);
}

.contrast-cell.good::before {
  content: '✦  ';
  color: var(--accent);
}

.contrast-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contrast-header div {
  padding: 10px 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--ink-faint);
}

.contrast-header div:last-child {
  color: var(--accent);
}

.quote-block {
  background: var(--surface2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 32px;
  margin-top: 36px;
}

.quote-block p {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 12px;
}

.quote-author {
  font-size: 12px;
  color: var(--ink-faint);
  font-weight: 500;
}

/* —— PDF section —— */
#pdf-section {
  padding: 100px 0;
  background: var(--surface);
}

.pdf-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.5;
}

.feature-list li::before {
  content: '✦';
  color: var(--accent);
  font-size: 11px;
  margin-top: 3px;
  flex-shrink: 0;
}

.pdf-preview {
  background: #FAF8F1;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  color: #1C2622;
}

.pdf-header {
  border-bottom: 2px solid var(--accent);
  padding-bottom: 14px;
  margin-bottom: 18px;
}

.pdf-brand {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 4px;
}

.pdf-title-text {
  font-size: 17px;
  font-weight: 700;
}

.pdf-meta {
  font-size: 11px;
  color: #52605A;
  margin-top: 2px;
}

.pdf-section-title {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin: 14px 0 8px;
  font-weight: 600;
}

.pdf-energy-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  border-bottom: 1px solid #D3CDB9;
  font-size: 12px;
  color: #1C2622;
}

.pdf-day {
  font-family: var(--font-mono);
  color: #8A9791;
  width: 38px;
  font-size: 11px;
}

.pdf-summary-box {
  background: #F3F0E6;
  border-radius: 8px;
  padding: 12px;
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.pdf-summary-item {
  font-size: 11px;
  color: #52605A;
}

.pdf-summary-item strong {
  display: block;
  font-size: 13px;
  color: #1C2622;
}

/* —— Pricing —— */
#pricing {
  padding: 110px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}

.pricing-card:hover {
  transform: translateY(-3px);
}

.pricing-card.featured {
  background: var(--surface2);
  border-color: var(--accent);
}

.pricing-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--accent-ink);
  padding: 4px 16px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.pricing-name {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  font-weight: 600;
}

.pricing-price {
  font-family: var(--font-mono);
  font-size: 44px;
  letter-spacing: -1px;
  margin-bottom: 4px;
  line-height: 1;
}

.pricing-price sup {
  font-size: 18px;
  vertical-align: super;
}

.pricing-period {
  font-size: 13px;
  color: var(--ink-dim);
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--ink-dim);
}

.check {
  color: var(--semantic-low);
  flex-shrink: 0;
}

.pricing-cta {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.pricing-cta.primary {
  background: var(--accent);
  color: var(--accent-ink);
}

.pricing-cta.primary:hover {
  opacity: 0.9;
}

.pricing-cta.ghost {
  border: 1px solid var(--line);
  color: var(--ink-dim);
}

.pricing-cta.ghost:hover {
  border-color: var(--accent);
  color: var(--ink);
}

.save-highlight {
  color: var(--semantic-low);
}

/* —— Coaches —— */
#coaches {
  padding: 100px 0;
  background: var(--surface);
}

.coaches-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.coaches-form-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 34px;
}

.coaches-form-card p {
  font-size: 13px;
  color: var(--ink-dim);
  margin-bottom: 24px;
  line-height: 1.6;
}

.inp {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--ink);
  font-size: 14px;
  outline: none;
  font-family: var(--font-body);
  transition: border-color 0.2s;
  appearance: none;
}

.inp:focus {
  border-color: var(--accent);
}

.inp-label {
  display: block;
  font-size: 12px;
  color: var(--ink-dim);
  margin-bottom: 6px;
  font-weight: 500;
}

.inp-group {
  margin-bottom: 14px;
}

.submit-btn {
  width: 100%;
  background: var(--accent);
  color: var(--accent-ink);
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: opacity 0.2s;
}

.submit-btn:hover {
  opacity: 0.9;
}

.form-success {
  display: none;
  margin-top: 14px;
  background: rgba(143, 169, 143, 0.12);
  border: 1px solid var(--semantic-low);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  color: var(--semantic-low);
  font-size: 13px;
}

.form-error {
  display: none;
  margin-top: 14px;
  background: rgba(181, 84, 74, 0.12);
  border: 1px solid var(--semantic-danger);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  color: var(--semantic-danger);
  font-size: 13px;
}

.coaches-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.coaches-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.5;
}

.coaches-meta-item::before {
  content: '✦';
  color: var(--accent);
  font-size: 11px;
  margin-top: 3px;
  flex-shrink: 0;
}

.response-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 18px;
  margin-top: 24px;
}

.response-badge span:first-child {
  font-size: 12px;
  color: var(--ink-dim);
}

.response-badge strong {
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--ink);
}

.disclaimer-block {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 24px;
  background: var(--surface2);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 40px;
}

.disclaimer-icon {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--semantic-medium);
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 2px;
}

.disclaimer-block p {
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.65;
  margin: 0;
}

/* —— Final CTA —— */
#cta-final {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta-final::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(214, 154, 76, 0.07) 0%, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

#cta-final .container {
  position: relative;
  z-index: 1;
}

#cta-final p {
  font-size: 16px;
  color: var(--ink-dim);
  max-width: 400px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* —— Footer —— */
footer {
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: var(--ink-dim);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 13px;
  color: var(--ink-faint);
}

/* —— Legal pages —— */
#page-legal {
  padding: 120px 0 80px;
  min-height: 50vh;
}

#page-legal h1 {
  margin-bottom: 8px;
}

.legal-lead {
  font-size: 14px;
  color: var(--ink-dim);
  margin-bottom: 40px;
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section h2 {
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.25;
  margin-bottom: 14px;
}

.legal-section h3 {
  font-size: 15px;
  margin: 18px 0 10px;
}

.legal-section p,
.legal-section li {
  font-size: 15px;
  color: var(--ink-dim);
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-section ul {
  margin: 0 0 16px 1.25em;
  padding: 0;
}

.legal-section li {
  margin-bottom: 8px;
}

.legal-section address {
  font-style: normal;
  font-size: 15px;
  color: var(--ink-dim);
  line-height: 1.75;
}

.legal-body a {
  color: var(--accent);
}

/* —— Animations —— */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* —— Responsive —— */
@media (max-width: 900px) {
  nav {
    padding: 14px 20px;
  }

  .container {
    padding: 0 20px;
  }

  .hero-inner,
  .pdf-inner,
  .why-inner,
  .coaches-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .steps,
  .who-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .steps::before {
    display: none;
  }

  .pricing-grid {
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }

  #how,
  #who,
  #why,
  #pdf-section,
  #pricing,
  #coaches,
  #cta-final {
    padding: 72px 0;
  }
}
