:root {
  --bg: #080c14;
  --surface: #0e1520;
  --surface-2: #141e2e;
  --fg: #e8ecf4;
  --fg-muted: #8898aa;
  --accent: #c6f135;
  --accent-dim: rgba(198, 241, 53, 0.12);
  --border: rgba(255,255,255,0.08);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  padding: 24px 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  font-size: 22px;
  color: var(--accent);
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.nav-by {
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 400;
}

/* Section base */
.section-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 48px;
}
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 64px;
}

/* Hero */
.hero {
  padding: 96px 0 80px;
}
.hero-content {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.65;
}
.hero-img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
  display: block;
}

/* What */
.what {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.what-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}
.what-icon {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 20px;
}
.what-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.what-card p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* How */
.how {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.how-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.how-step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  padding-top: 4px;
}
.step-body h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.step-body p {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 580px;
}

/* Manifesto */
.manifesto {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}
.manifesto-text:last-child { margin-bottom: 0; }

/* Outcomes */
.outcomes {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.outcomes-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.outcome {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
}
.outcome:nth-child(odd) { padding-right: 40px; }
.outcome:nth-child(even) { padding-left: 40px; border-left: 1px solid var(--border); }
.outcome-check {
  color: var(--accent);
  font-size: 18px;
  flex-shrink: 0;
}

/* Closing */
.closing {
  padding: 120px 0;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(198,241,53,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.closing-content { position: relative; }
.closing-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}
.closing-sub {
  color: var(--fg-muted);
  font-size: 18px;
}

/* Footer */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.footer-by {
  font-size: 12px;
  color: var(--fg-muted);
}
.footer-tagline {
  color: var(--fg-muted);
  font-size: 14px;
}
.footer-sub {
  font-size: 13px;
  color: var(--fg-muted);
  opacity: 0.7;
}

/* What */
.what-sub {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 640px;
  margin-bottom: 48px;
}

/* Pricing */
.pricing {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.pricing-sub {
  color: var(--fg-muted);
  font-size: 16px;
  margin-top: -48px;
  margin-bottom: 56px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured {
  border-color: var(--accent);
  background: var(--surface-2);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 99px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.pricing-header {
  margin-bottom: 24px;
}
.pricing-tier {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: block;
  margin-bottom: 8px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.pricing-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--fg-muted);
}
.pricing-tagline {
  color: var(--fg-muted);
  font-size: 13px;
  margin-top: 8px;
  line-height: 1.5;
}
.pricing-features {
  list-style: none;
  flex: 1;
  margin-bottom: 28px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--fg);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li.muted { color: var(--fg-muted); opacity: 0.5; }
.pricing-features .check { color: var(--accent); flex-shrink: 0; }
.pricing-features .cross { color: var(--fg-muted); flex-shrink: 0; }
.pricing-cta {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--border);
  color: var(--fg);
  transition: border-color 0.2s, background 0.2s;
}
.pricing-cta:hover { border-color: var(--accent); }
.pricing-cta.cta-primary {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  font-weight: 600;
}
.pricing-cta.cta-primary:hover { opacity: 0.9; }

/* Lead form */
.lead-form {
  margin-top: 48px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.lead-form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.lead-form-row input[type="email"] {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.lead-form-row input[type="email"]:focus {
  border-color: var(--accent);
}
.lead-form-row input[type="email"]::placeholder {
  color: var(--fg-muted);
}
.lead-submit {
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 10px;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 160px;
  justify-content: center;
}
.lead-submit:hover:not(:disabled) { opacity: 0.9; }
.lead-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.lead-submit-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0,0,0,0.2);
  border-top-color: var(--bg);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
.lead-submit:disabled .lead-submit-spinner { display: block; }
.lead-submit:disabled .lead-submit-text { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }
.lead-consent {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.lead-msg {
  font-size: 14px;
  margin-top: 10px;
  min-height: 20px;
}
.lead-msg--success { color: var(--accent); }
.lead-msg--error   { color: #f87171; }

/* OTO */
.pricing-oto {
  margin-top: 48px;
}
.oto-inner {
  background: var(--surface);
  border: 1px solid var(--accent);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.oto-badge {
  display: inline-block;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 99px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.oto-headline {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.oto-desc {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 24px;
}
.oto-price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 24px;
}
.oto-note {
  font-size: 16px;
  font-weight: 500;
  color: var(--fg-muted);
}

/* ── Ritual ────────────────────────────────── */
.ritual {
  border-top: 1px solid var(--border);
}

/* Hero */
.ritual-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ritual-hero-bg {
  position: absolute;
  inset: 0;
}
.ritual-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ritual-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 12, 20, 0.7) 0%,
    rgba(8, 12, 20, 0.85) 50%,
    rgba(8, 12, 20, 1) 100%
  );
}
.ritual-hero-content {
  position: relative;
  text-align: center;
  padding: 80px 48px;
  max-width: 720px;
}
.ritual-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeSlideUp 0.6s ease 0.2s forwards;
}
.ritual-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeSlideUp 0.7s ease 0.4s forwards;
}
.ritual-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--fg-muted);
  line-height: 1.6;
  opacity: 0;
  animation: fadeSlideUp 0.7s ease 0.6s forwards;
}
.ritual-sub em { font-style: normal; color: var(--fg); }
.ritual-sub strong { font-weight: 600; }

/* Intro */
.ritual-intro {
  padding: 72px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.ritual-intro-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr;
}
.ritual-intro-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.ritual-intro-desc {
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.6;
  color: var(--fg-muted);
}
.ritual-intro-desc em { font-style: normal; color: var(--fg); }

/* 3 Steps */
.ritual-steps {
  padding: 80px 0;
  background: var(--bg);
}
.ritual-steps-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.ritual-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  opacity: 0;
  animation: fadeSlideUp 0.6s ease forwards;
}
.ritual-step[data-step="1"] { animation-delay: 0.1s; }
.ritual-step[data-step="2"] { animation-delay: 0.25s; }
.ritual-step[data-step="3"] { animation-delay: 0.4s; }

.ritual-step-visual {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--surface-2);
  overflow: hidden;
}
.ritual-step-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.ritual-step:hover .ritual-step-img { transform: scale(1.04); }
.ritual-step-art {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
}
.ritual-svg-art {
  width: 100%;
  height: 100%;
}
.ritual-step-number {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ritual-step-content {
  padding: 28px;
}
.ritual-step-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: block;
  margin-bottom: 10px;
}
.ritual-step-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.2;
}
.ritual-step-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}
.ritual-step-desc em { font-style: normal; color: var(--fg); }

/* Benefits */
.ritual-benefits {
  padding: 80px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.ritual-benefits-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 48px;
}
.ritual-benefits-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
}
.ritual-benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.ritual-benefit {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  opacity: 0;
  animation: fadeSlideUp 0.6s ease forwards;
}
.ritual-benefit:nth-child(1) { animation-delay: 0.05s; }
.ritual-benefit:nth-child(2) { animation-delay: 0.15s; }
.ritual-benefit:nth-child(3) { animation-delay: 0.25s; }
.ritual-benefit:nth-child(4) { animation-delay: 0.35s; }
.ritual-benefit:nth-child(5) { animation-delay: 0.45s; }
.ritual-benefit-icon {
  font-size: 26px;
  color: var(--accent);
  margin-bottom: 16px;
}
.ritual-benefit h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  line-height: 1.3;
}
.ritual-benefit p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.ritual-benefit p em { font-style: normal; color: var(--fg); }

/* CTA */
.ritual-cta {
  padding: 96px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ritual-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(198, 241, 53, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.ritual-cta-inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 48px;
}
.ritual-cta-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 36px;
  color: var(--fg);
}
/* Lead magnet form inside ritual CTA */
.ritual-form {
  display: flex;
  gap: 8px;
  max-width: 460px;
  margin: 0 auto 12px;
}
.ritual-input {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 15px;
  color: var(--fg);
  font-family: var(--font-body);
  transition: border-color 0.2s;
}
.ritual-input::placeholder { color: var(--fg-muted); }
.ritual-input:focus { outline: none; border-color: var(--accent); }
.ritual-form-btn {
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: 10px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-display);
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.1s;
}
.ritual-form-btn:hover:not(:disabled) { opacity: 0.88; transform: translateY(-1px); }
.ritual-form-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.ritual-msg {
  font-size: 13px;
  min-height: 20px;
  font-weight: 500;
  color: var(--accent);
}
.ritual-cta-sub {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 8px;
}

/* Animations */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .ritual-benefits-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .ritual-steps-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav, .section-inner, .footer-inner, .hero-content { padding-left: 24px; padding-right: 24px; }
  .hero { padding: 60px 0 48px; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .what-grid { grid-template-columns: 1fr; }
  .how-step { grid-template-columns: 48px 1fr; gap: 20px; }
  .step-num { font-size: 32px; }
  .outcomes-list { grid-template-columns: 1fr; }
  .outcome:nth-child(even) { border-left: none; padding-left: 0; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .pricing-grid { grid-template-columns: 1fr; }
  .oto-inner { padding: 32px 24px; }
  .ritual-hero-content { padding: 60px 24px; }
  .ritual-steps-inner { padding: 0 24px; }
  .ritual-benefits-inner { padding: 0 24px; }
  .ritual-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .ritual-cta-inner { padding: 0 24px; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 32px; }
  .manifesto-text { font-size: 18px; }
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ── Policy pages ───────────────────────────────────────────────────────────── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
}
.nav-logo:hover { opacity: 0.8; }
.logo-mark { font-size: 22px; color: var(--accent); }
.logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.btn-nav {
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-nav:hover { border-color: var(--accent); color: var(--fg); }

.policy-page {
  min-height: calc(100vh - 80px);
  padding: 80px 0 100px;
}
.policy-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 48px;
}
.policy-header {
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.policy-meta {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.policy-header h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.policy-lead {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
}
.policy-section {
  margin-bottom: 48px;
}
.policy-section h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--fg);
}
.policy-section h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: 32px;
  color: var(--fg);
}
.policy-section p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}
.policy-section p:last-child { margin-bottom: 0; }
.policy-list {
  list-style: none;
  margin: 0 0 14px;
}
.policy-list li {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}
.policy-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 13px;
}
.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}
.policy-table th {
  text-align: left;
  padding: 10px 16px;
  background: var(--surface);
  color: var(--fg-muted);
  font-weight: 500;
  border: 1px solid var(--border);
  font-size: 12px;
  letter-spacing: 0.06em;
}
.policy-table td {
  padding: 10px 16px;
  border: 1px solid var(--border);
  color: var(--fg-muted);
  vertical-align: top;
}
.policy-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.earnings-notice {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 20px 24px;
  border-radius: 8px;
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Footer links in footer partial */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: center;
  margin-top: 8px;
}
.footer-links a {
  font-size: 12px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }

@media (max-width: 768px) {
  .policy-container { padding: 0 24px; }
  .policy-header { margin-bottom: 40px; padding-bottom: 32px; }
}