:root {
  --bg: #0A0A0F;
  --surface: #12121C;
  --surface-2: #1A1A28;
  --fg: #F0F0F0;
  --fg-muted: #9B9BB0;
  --accent: #9B5DE5;
  --accent-dim: rgba(155, 93, 229, 0.15);
  --accent-2: #FF6B35;
  --accent-glow: rgba(155, 93, 229, 0.4);
  --accent-2-glow: rgba(255, 107, 53, 0.4);
  --neon-purple: #9B5DE5;
  --neon-orange: #FF6B35;
  --neon-cyan: #00D4FF;
  --border: rgba(155, 93, 229, 0.12);
  --border-bright: rgba(155, 93, 229, 0.3);
  --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: 20px 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
}
.nav-logo:hover { opacity: 0.85; }
.logo-mark {
  font-size: 24px;
  color: var(--neon-orange);
  text-shadow: 0 0 10px var(--accent-2-glow);
}
.logo-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-by {
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 400;
  margin-left: 8px;
}
.nav {
  border-bottom: 1px solid var(--border-bright);
}

/* Hero banner */
.hero-banner {
  width: 100%;
  background: #080c14;
}
.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center top;
}

/* 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(--neon-orange);
  margin-bottom: 16px;
  text-shadow: 0 0 8px var(--accent-2-glow);
}
.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-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(--neon-orange);
  margin-bottom: 20px;
  text-shadow: 0 0 8px var(--accent-2-glow);
}
.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-bright);
  border-radius: 16px;
  padding: 40px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.what-card:hover {
  border-color: var(--neon-purple);
  box-shadow: 0 0 20px var(--accent-glow), inset 0 0 20px rgba(155, 93, 229, 0.05);
}
.what-icon {
  font-size: 28px;
  color: var(--neon-orange);
  margin-bottom: 20px;
  text-shadow: 0 0 12px var(--accent-2-glow);
}
.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(--neon-purple);
  opacity: 0.6;
  line-height: 1;
  padding-top: 4px;
  text-shadow: 0 0 20px var(--accent-glow);
}
.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-bright);
  border-bottom: 1px solid var(--border-bright);
  position: relative;
}
.manifesto::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(155, 93, 229, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.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(--neon-orange);
  font-size: 18px;
  flex-shrink: 0;
  text-shadow: 0 0 6px var(--accent-2-glow);
}

/* 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(155, 93, 229, 0.08) 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(--neon-orange);
  margin-bottom: 20px;
  text-shadow: 0 0 8px var(--accent-2-glow);
}
.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-bright);
}
.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-bright);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.pricing-card:hover {
  border-color: var(--neon-purple);
  box-shadow: 0 0 24px var(--accent-glow);
  transform: translateY(-4px);
}
.pricing-card.featured {
  border-color: var(--neon-orange);
  background: var(--surface-2);
  box-shadow: 0 0 30px var(--accent-2-glow), 0 0 60px rgba(255, 107, 53, 0.1);
}
.pricing-card.featured:hover {
  box-shadow: 0 0 40px var(--accent-2-glow), 0 0 80px rgba(255, 107, 53, 0.15);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--neon-orange), #ff9a56);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 99px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  box-shadow: 0 0 12px var(--accent-2-glow);
}
.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(--neon-orange);
  display: block;
  margin-bottom: 8px;
  text-shadow: 0 0 4px var(--accent-2-glow);
}
.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(--neon-orange); flex-shrink: 0; text-shadow: 0 0 4px var(--accent-2-glow); }
.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-bright);
  color: var(--fg);
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.pricing-cta:hover {
  border-color: var(--neon-purple);
  box-shadow: 0 0 12px var(--accent-glow);
}
.pricing-cta.cta-primary {
  background: linear-gradient(135deg, var(--neon-purple), #7B3FD0);
  color: #fff;
  border-color: var(--neon-purple);
  font-weight: 600;
  box-shadow: 0 0 16px var(--accent-glow);
}
.pricing-cta.cta-primary:hover {
  box-shadow: 0 0 24px var(--accent-glow), 0 0 48px rgba(155, 93, 229, 0.2);
}

/* 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(--neon-purple);
  box-shadow: 0 0 8px var(--accent-glow);
}
.lead-form-row input[type="email"]::placeholder {
  color: var(--fg-muted);
}
.lead-submit {
  background: linear-gradient(135deg, var(--neon-purple), #7B3FD0);
  color: #fff;
  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: box-shadow 0.3s, transform 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 160px;
  justify-content: center;
  box-shadow: 0 0 16px var(--accent-glow);
}
.lead-submit:hover:not(:disabled) {
  box-shadow: 0 0 24px var(--accent-glow), 0 0 48px rgba(155, 93, 229, 0.2);
  transform: translateY(-1px);
}
.lead-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.lead-submit-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  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(--neon-purple); text-shadow: 0 0 6px var(--accent-glow); }
.lead-msg--error   { color: #f87171; }

/* OTO */
.pricing-oto {
  margin-top: 48px;
}
.oto-inner {
  background: var(--surface);
  border: 1px solid var(--neon-orange);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: 0 0 30px var(--accent-2-glow), inset 0 0 30px rgba(255, 107, 53, 0.03);
}
.oto-badge {
  display: inline-block;
  background: rgba(255, 107, 53, 0.15);
  color: var(--neon-orange);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 99px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 0 8px var(--accent-2-glow);
}
.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(--neon-orange);
  margin-bottom: 24px;
  text-shadow: 0 0 16px var(--accent-2-glow);
}
.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(10, 10, 15, 0.7) 0%,
    rgba(10, 10, 15, 0.85) 50%,
    rgba(10, 10, 15, 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(--neon-orange);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeSlideUp 0.6s ease 0.2s forwards;
  text-shadow: 0 0 8px var(--accent-2-glow);
}
.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(--neon-orange);
  margin-bottom: 16px;
  text-shadow: 0 0 6px var(--accent-2-glow);
}
.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-bright);
  border-radius: 20px;
  overflow: hidden;
  opacity: 0;
  animation: fadeSlideUp 0.6s ease forwards;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.ritual-step:hover {
  border-color: var(--neon-purple);
  box-shadow: 0 0 20px var(--accent-glow);
}
.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: linear-gradient(135deg, var(--neon-purple), var(--neon-orange));
  color: #fff;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px var(--accent-glow);
}
.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(--neon-orange);
  margin-bottom: 40px;
  text-shadow: 0 0 6px var(--accent-2-glow);
}
.ritual-benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.ritual-benefit {
  background: var(--bg);
  border: 1px solid var(--border-bright);
  border-radius: 16px;
  padding: 28px 24px;
  opacity: 0;
  animation: fadeSlideUp 0.6s ease forwards;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.ritual-benefit:hover {
  border-color: var(--neon-purple);
  box-shadow: 0 0 16px var(--accent-glow);
}
.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(--neon-orange);
  margin-bottom: 16px;
  text-shadow: 0 0 10px var(--accent-2-glow);
}
.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(155, 93, 229, 0.06) 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(--neon-purple); box-shadow: 0 0 8px var(--accent-glow); }
.ritual-form-btn {
  background: linear-gradient(135deg, var(--neon-purple), #7B3FD0);
  color: #fff;
  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: box-shadow 0.3s, transform 0.2s;
  box-shadow: 0 0 16px var(--accent-glow);
}
.ritual-form-btn:hover:not(:disabled) { box-shadow: 0 0 24px var(--accent-glow), 0 0 48px rgba(155, 93, 229, 0.2); 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(--neon-purple);
  text-shadow: 0 0 6px var(--accent-glow);
}
.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(--neon-orange); text-shadow: 0 0 8px var(--accent-2-glow); }
.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(--neon-purple); color: var(--fg); box-shadow: 0 0 8px var(--accent-glow); }

.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(--neon-orange);
  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(--neon-purple);
  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(--neon-orange); text-shadow: 0 0 4px var(--accent-2-glow); }

/* ── D.D.os BRAND — Landing Page Refresh ─────────────────────────────────── */

/* DD section tag — replaces section-label */
.dd-section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neon-orange);
  margin-bottom: 16px;
  text-shadow: 0 0 10px var(--accent-2-glow);
}

/* ═══════════════════════════════════════════════════
   LANDING PAGE REBUILD — Section 1: Nav + Hero
   ═══════════════════════════════════════════════════ */

/* ── DD Landing Nav ── */
.dd-nav {
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 0;
  border-bottom: 1px solid var(--border-bright);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Logo block */
.dd-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  flex-shrink: 0;
}
.dd-nav-infinity {
  font-size: 28px;
  color: var(--neon-purple);
  text-shadow: 0 0 20px var(--accent-glow);
  line-height: 1;
}
.dd-nav-sep {
  width: 1px;
  height: 32px;
  background: var(--border-bright);
  flex-shrink: 0;
}
.dd-nav-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dd-nav-subtitle {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-muted);
  opacity: 0.7;
  line-height: 1.3;
  max-width: 160px;
  margin-left: 12px;
}

/* Center nav links */
.dd-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  margin-right: 24px;
}
.dd-nav-link {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.dd-nav-link:hover {
  color: var(--fg);
  background: rgba(155, 93, 229, 0.12);
}

/* Right side */
.dd-nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.dd-user-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  border: 1px solid var(--border-bright);
  border-radius: 99px;
  background: rgba(155, 93, 229, 0.08);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 0 12px rgba(155, 93, 229, 0.1);
}
.dd-badge-name {
  color: var(--fg);
}
.dd-badge-sep {
  color: var(--fg-muted);
  opacity: 0.5;
}
.dd-badge-tier {
  color: var(--neon-orange);
  text-shadow: 0 0 8px var(--accent-2-glow);
}

/* Hamburger */
.dd-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.dd-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg-muted);
  border-radius: 2px;
  transition: background 0.2s;
}
.dd-hamburger:hover span { background: var(--fg); }

/* ── DD Landing Hero ── */
.dd-landing-hero {
  position: relative;
  width: 100%;
  background: #080c18;
  overflow: hidden;
  padding: 80px 0 64px;
}

/* Ambient glows */
.dd-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.dd-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.dd-hero-glow--purple {
  width: 600px;
  height: 600px;
  top: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(155, 93, 229, 0.25) 0%, transparent 70%);
  animation: glowPulse 6s ease-in-out infinite;
}
.dd-hero-glow--orange {
  width: 400px;
  height: 400px;
  bottom: 0;
  right: 20%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
  animation: glowPulse 8s ease-in-out infinite 2s;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

/* Inner grid */
.dd-hero-inner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0 48px;
  align-items: center;
}

/* Left: headline block */
.dd-hero-left {
  grid-column: 1;
  grid-row: 1;
}
.dd-hero-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon-orange);
  text-shadow: 0 0 12px var(--accent-2-glow);
  margin-bottom: 20px;
}
.dd-hero-headline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
}
.dd-hero-line {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--fg);
}
.dd-hero-line--accent {
  background: linear-gradient(135deg, #ff6b35 0%, #ff9a56 40%, #ff6b35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5));
}
.dd-hero-lede {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 36px;
}
.dd-hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
}
.dd-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #ff6b35, #e85a28);
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 10px;
  letter-spacing: 0.02em;
  box-shadow: 0 0 24px rgba(255, 107, 53, 0.4), 0 4px 12px rgba(255, 107, 53, 0.3);
  transition: box-shadow 0.3s, transform 0.2s;
}
.dd-cta-primary:hover {
  box-shadow: 0 0 40px rgba(255, 107, 53, 0.6), 0 6px 20px rgba(255, 107, 53, 0.4);
  transform: translateY(-2px);
}
.dd-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 1px solid var(--border-bright);
  color: var(--fg-muted);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  letter-spacing: 0.02em;
  transition: border-color 0.3s, color 0.3s, box-shadow 0.3s;
}
.dd-cta-secondary:hover {
  border-color: var(--neon-purple);
  color: var(--fg);
  box-shadow: 0 0 16px var(--accent-glow);
}

/* Center-right: D.D. mascot */
.dd-hero-mascot-wrap {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dd-mascot-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(155, 93, 229, 0.35) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: glowPulse 5s ease-in-out infinite;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.dd-hero-mascot {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  object-position: center top;
  display: block;
  box-shadow: 0 0 60px rgba(155, 93, 229, 0.3), 0 20px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(155, 93, 229, 0.3);
}

/* Right: Quick Actions Panel */
.dd-quick-actions {
  grid-column: 2;
  grid-row: 1;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  background: rgba(18, 18, 28, 0.9);
  border: 1px solid var(--border-bright);
  border-radius: 16px;
  padding: 0;
  backdrop-filter: blur(16px);
  box-shadow: 0 0 30px rgba(155, 93, 229, 0.15), 0 8px 32px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}
.dd-qa-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: rgba(155, 93, 229, 0.08);
}
.dd-qa-title {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neon-purple);
  text-shadow: 0 0 8px var(--accent-glow);
}
.dd-qa-list {
  list-style: none;
  padding: 8px 0;
}
.dd-qa-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.dd-qa-item:hover {
  background: rgba(155, 93, 229, 0.08);
  color: var(--fg);
}
.dd-qa-icon {
  font-size: 16px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}
.dd-qa-add {
  display: block;
  width: 100%;
  padding: 12px 20px;
  background: none;
  border: none;
  border-top: 1px solid var(--border);
  color: var(--neon-purple);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s, color 0.2s;
}
.dd-qa-add:hover {
  background: rgba(155, 93, 229, 0.1);
  color: var(--fg);
}

/* ── DD Status Preview Cards ── */
.dd-status-preview {
  width: 100%;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.dd-status-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.dd-status-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border-bright);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.dd-status-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-purple), var(--neon-orange));
  opacity: 0.5;
}
.dd-status-card:hover {
  border-color: var(--neon-purple);
  box-shadow: 0 0 20px rgba(155, 93, 229, 0.15);
}
.dd-status-icon {
  font-size: 28px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px var(--accent-glow));
}
.dd-status-info {
  flex: 1;
}
.dd-status-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 4px;
}
.dd-status-tagline {
  font-size: 13px;
  color: var(--fg-muted);
}
.dd-status-badge {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 99px;
  flex-shrink: 0;
}
.dd-status-badge--green {
  background: rgba(0, 200, 100, 0.12);
  color: #00c864;
  border: 1px solid rgba(0, 200, 100, 0.3);
  text-shadow: 0 0 8px rgba(0, 200, 100, 0.4);
}
.dd-status-count {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--neon-purple);
  text-shadow: 0 0 8px var(--accent-glow);
  flex-shrink: 0;
}

/* ── DD What ── */
.dd-what {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}
.dd-what-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-bright);
  margin-bottom: 64px;
  box-shadow: 0 0 40px rgba(155, 93, 229, 0.15);
}
.dd-what-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}
.dd-what-visual-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 24px;
  background: linear-gradient(to top, rgba(10, 10, 15, 0.9), transparent);
}
.dd-what-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neon-purple);
  background: rgba(155, 93, 229, 0.15);
  border: 1px solid var(--neon-purple);
  padding: 4px 12px;
  border-radius: 4px;
  box-shadow: 0 0 8px var(--accent-glow);
}
.dd-what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dd-what-card {
  background: var(--surface);
  border: 1px solid var(--border-bright);
  border-radius: 12px;
  padding: 32px 28px;
  transition: border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.dd-what-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-purple), var(--neon-orange));
  opacity: 0;
  transition: opacity 0.3s;
}
.dd-what-card:hover::before { opacity: 1; }
.dd-what-card:hover {
  border-color: var(--neon-purple);
  box-shadow: 0 0 20px var(--accent-glow);
}
.dd-what-icon {
  font-size: 28px;
  color: var(--neon-orange);
  margin-bottom: 20px;
  text-shadow: 0 0 12px var(--accent-2-glow);
}
.dd-what-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.dd-what-card p {
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.65;
}

/* ── DD How ── */
.dd-how {
  padding: 96px 0;
  border-top: 1px solid var(--border);
  position: relative;
}
.dd-how::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(155, 93, 229, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.dd-how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.dd-how-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 48px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  position: relative;
}
.dd-how-step:last-child { border-bottom: none; }
.dd-step-marker {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--neon-purple);
  opacity: 0.3;
  line-height: 1;
  padding-top: 4px;
  text-shadow: 0 0 24px var(--accent-glow);
}
.dd-step-body h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.dd-step-body p {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 560px;
}
.dd-step-glow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 80px;
  border-radius: 2px;
  opacity: 0.3;
}
.dd-step-glow--purple {
  background: var(--neon-purple);
  box-shadow: 0 0 16px var(--accent-glow);
}
.dd-step-glow--orange {
  background: var(--neon-orange);
  box-shadow: 0 0 16px var(--accent-2-glow);
}

/* ── DD Manifesto ── */
.dd-manifesto {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border-bright);
  border-bottom: 1px solid var(--border-bright);
  position: relative;
  overflow: hidden;
}
.dd-manifesto::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--neon-purple), var(--neon-orange));
  box-shadow: 0 0 20px var(--accent-glow);
}
.dd-manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 48px;
}
.dd-manifesto-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon-orange);
  margin-bottom: 20px;
  text-shadow: 0 0 8px var(--accent-2-glow);
}
.dd-manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 56px;
  font-style: normal;
  border: none;
  padding: 0;
}
.dd-manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: var(--fg-muted);
  margin-bottom: 24px;
}
.dd-manifesto-text:last-child { margin-bottom: 0; }

/* ── DD Outcomes ── */
.dd-outcomes {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}
.dd-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}
.dd-outcome {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  font-size: 16px;
  color: var(--fg);
  border-bottom: 1px solid var(--border);
}
.dd-outcome:nth-child(odd) { padding-right: 48px; }
.dd-outcome:nth-child(even) {
  padding-left: 48px;
  border-left: 1px solid var(--border);
}
.dd-outcome-icon {
  color: var(--neon-purple);
  font-size: 18px;
  flex-shrink: 0;
  text-shadow: 0 0 8px var(--accent-glow);
}

/* ── DD Pricing ── */
.dd-pricing {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}
.dd-pricing-sub {
  color: var(--fg-muted);
  font-size: 16px;
  margin-top: -48px;
  margin-bottom: 56px;
}
.dd-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}
.dd-pricing-card {
  background: var(--surface);
  border: 1px solid var(--border-bright);
  border-radius: 12px;
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.dd-pricing-card:hover {
  border-color: var(--neon-purple);
  box-shadow: 0 0 20px var(--accent-glow);
  transform: translateY(-4px);
}
.dd-pricing-card.dd-featured {
  border-color: var(--neon-purple);
  box-shadow: 0 0 30px var(--accent-glow);
  background: var(--surface-2);
}
.dd-pricing-card.dd-featured:hover {
  box-shadow: 0 0 40px var(--accent-glow);
}
.dd-pricing-card.dd-founder {
  border-color: var(--neon-orange);
  box-shadow: 0 0 24px var(--accent-2-glow);
}
.dd-pricing-card.dd-founder:hover {
  box-shadow: 0 0 40px var(--accent-2-glow);
}
.dd-pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--neon-purple), #7B3FD0);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 99px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  box-shadow: 0 0 12px var(--accent-glow);
}
.dd-pricing-header { margin-bottom: 24px; }
.dd-tier-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neon-purple);
  display: block;
  margin-bottom: 8px;
  text-shadow: 0 0 6px var(--accent-glow);
}
.dd-pricing-card.dd-founder .dd-tier-name {
  color: var(--neon-orange);
  text-shadow: 0 0 6px var(--accent-2-glow);
}
.dd-pricing-price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.dd-pricing-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--fg-muted);
}
.dd-pricing-tagline {
  color: var(--fg-muted);
  font-size: 13px;
  margin-top: 8px;
  line-height: 1.5;
}
.dd-pricing-features {
  list-style: none;
  flex: 1;
  margin-bottom: 24px;
}
.dd-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);
}
.dd-pricing-features li:last-child { border-bottom: none; }
.dd-pricing-features li.dd-locked { color: var(--fg-muted); opacity: 0.45; }
.dd-check {
  color: var(--neon-purple);
  flex-shrink: 0;
  font-size: 14px;
  text-shadow: 0 0 4px var(--accent-glow);
}
.dd-cross {
  color: var(--fg-muted);
  flex-shrink: 0;
  font-size: 14px;
}
.dd-pricing-cta {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--border-bright);
  color: var(--fg);
  transition: all 0.3s;
  letter-spacing: 0.02em;
}
.dd-pricing-cta:hover {
  border-color: var(--neon-purple);
  color: var(--neon-purple);
  box-shadow: 0 0 12px var(--accent-glow);
}
.dd-pricing-cta.dd-cta-primary {
  background: linear-gradient(135deg, var(--neon-purple), #7B3FD0);
  color: #fff;
  border-color: var(--neon-purple);
  box-shadow: 0 0 16px var(--accent-glow);
}
.dd-pricing-cta.dd-cta-primary:hover {
  box-shadow: 0 0 28px var(--accent-glow);
}
.dd-pricing-cta.dd-cta-founder {
  background: linear-gradient(135deg, var(--neon-orange), #cc5228);
  color: #fff;
  border-color: var(--neon-orange);
  box-shadow: 0 0 16px var(--accent-2-glow);
}
.dd-pricing-cta.dd-cta-founder:hover {
  box-shadow: 0 0 28px var(--accent-2-glow);
}

/* ── DD Closing ── */
.dd-closing {
  padding: 120px 0;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.dd-closing::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(155, 93, 229, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.dd-closing-content {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 48px;
}
.dd-closing-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.dd-closing-accent {
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dd-closing-sub {
  color: var(--fg-muted);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* ── DD Footer ── */
.dd-footer {
  padding: 48px 0;
  border-top: 1px solid var(--border-bright);
  background: var(--surface);
}
.dd-footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.dd-footer-brand {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 4px;
}
.dd-footer-mark {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--neon-purple);
  text-shadow: 0 0 12px var(--accent-glow);
}
.dd-footer-slash {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--neon-orange);
  text-shadow: 0 0 8px var(--accent-2-glow);
}
.dd-footer-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dd-footer-tagline {
  color: var(--fg-muted);
  font-size: 14px;
}
.dd-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: center;
  margin-top: 4px;
}
.dd-footer-links a {
  font-size: 12px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.dd-footer-links a:hover { color: var(--neon-orange); }

/* ═══════════════════════════════════════════════════
   LANDING PAGE REBUILD — Section 2:
   Engine Overview + Mail OS Command Center
   ═══════════════════════════════════════════════════ */

/* ── D.D. Engine Overview (horizontal strip) ── */
.dd-engine-overview {
  width: 100%;
  background: #080c18;
  border-top: 1px solid var(--border-bright);
  border-bottom: 1px solid var(--border-bright);
  padding: 40px 0;
}
.dd-engine-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}
.dd-engine-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon-purple);
  text-shadow: 0 0 12px var(--accent-glow);
  margin-bottom: 28px;
  text-align: center;
}
.dd-engine-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.dd-engine-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.25s;
  cursor: default;
}
.dd-engine-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  opacity: 0;
  transition: opacity 0.3s;
}
.dd-engine-card:hover {
  border-color: var(--border-bright);
  box-shadow: 0 0 20px rgba(155, 93, 229, 0.12);
  transform: translateY(-3px);
}
.dd-engine-card:hover::before { opacity: 1; }

.dd-engine-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.dd-engine-icon-wrap::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  opacity: 0.4;
}
.dd-engine-icon-wrap--purple {
  background: rgba(155, 93, 229, 0.12);
  box-shadow: 0 0 16px rgba(155, 93, 229, 0.25), inset 0 0 8px rgba(155, 93, 229, 0.1);
}
.dd-engine-icon-wrap--purple::after {
  background: radial-gradient(circle, rgba(155, 93, 229, 0.3) 0%, transparent 70%);
  filter: blur(4px);
}
.dd-engine-icon-wrap--orange {
  background: rgba(255, 107, 53, 0.12);
  box-shadow: 0 0 16px rgba(255, 107, 53, 0.25), inset 0 0 8px rgba(255, 107, 53, 0.1);
}
.dd-engine-icon-wrap--orange::after {
  background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, transparent 70%);
  filter: blur(4px);
}
.dd-engine-icon {
  width: 26px;
  height: 26px;
}
.dd-engine-card:nth-child(1) .dd-engine-icon-wrap--purple::before,
.dd-engine-card:nth-child(3) .dd-engine-icon-wrap--purple::before,
.dd-engine-card:nth-child(5) .dd-engine-icon-wrap--purple::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(155, 93, 229, 0.6), rgba(255, 107, 53, 0.6), rgba(155, 93, 229, 0.6));
  z-index: -1;
  opacity: 0.3;
}
.dd-engine-icon { color: var(--fg); }
.dd-engine-card:nth-child(1) .dd-engine-icon,
.dd-engine-card:nth-child(3) .dd-engine-icon,
.dd-engine-card:nth-child(5) .dd-engine-icon { color: #b87eee; }
.dd-engine-card:nth-child(2) .dd-engine-icon,
.dd-engine-card:nth-child(4) .dd-engine-icon,
.dd-engine-card:nth-child(6) .dd-engine-icon { color: #ff8c5a; }
.dd-engine-name {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg);
  text-align: center;
}
.dd-engine-sub {
  font-size: 11px;
  color: var(--fg-muted);
  text-align: center;
  line-height: 1.4;
}

/* ── Mail OS Command Center ── */
.dd-mail-command {
  width: 100%;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}
.dd-mail-command-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}
.dd-mail-command-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.dd-mail-command-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.dd-mail-command-link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--neon-orange);
  text-decoration: none;
  text-shadow: 0 0 8px var(--accent-2-glow);
  transition: color 0.2s, text-shadow 0.2s;
}
.dd-mail-command-link:hover {
  color: #ff9a56;
  text-shadow: 0 0 16px var(--accent-2-glow);
}
.dd-mail-command-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1.2fr;
  gap: 24px;
  align-items: start;
}
.dd-mail-col {
  background: var(--surface);
  border: 1px solid var(--border-bright);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.dd-mail-col:hover {
  border-color: var(--neon-purple);
  box-shadow: 0 0 20px rgba(155, 93, 229, 0.1);
}
.dd-mail-col-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neon-orange);
  text-shadow: 0 0 8px var(--accent-2-glow);
  margin-bottom: 20px;
}
.dd-mail-col-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.dd-mail-col-link {
  font-size: 12px;
  color: var(--neon-purple);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.dd-mail-col-link:hover { color: #b87eee; }

/* Health ring */
.dd-health-score {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
}
.dd-health-ring {
  width: 120px;
  height: 120px;
}
.dd-health-score-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.dd-health-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: #00c864;
  text-shadow: 0 0 20px rgba(0, 200, 100, 0.5);
  line-height: 1;
}
.dd-health-excellent {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #00c864;
  text-shadow: 0 0 8px rgba(0, 200, 100, 0.4);
}

/* Checklist */
.dd-health-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.dd-health-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--fg-muted);
}
.dd-health-item--pass .dd-check-icon {
  color: #00c864;
  font-size: 12px;
  text-shadow: 0 0 6px rgba(0, 200, 100, 0.5);
}
.dd-health-pct {
  margin-left: auto;
  font-weight: 600;
  color: #00c864;
  font-family: var(--font-display);
}

.dd-health-cta {
  display: block;
  text-align: center;
  padding: 11px 20px;
  border: 1px solid var(--neon-orange);
  border-radius: 8px;
  color: var(--neon-orange);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.2s, box-shadow 0.2s;
  margin-top: auto;
}
.dd-health-cta:hover {
  background: rgba(255, 107, 53, 0.08);
  box-shadow: 0 0 16px rgba(255, 107, 53, 0.2);
}

/* Campaign list */
.dd-campaign-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.dd-campaign-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.dd-campaign-row:last-child { border-bottom: none; }
.dd-campaign-row:hover { background: rgba(155, 93, 229, 0.04); border-radius: 8px; padding-left: 8px; padding-right: 8px; }
.dd-campaign-info { flex: 1; }
.dd-campaign-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}
.dd-campaign-sent {
  font-size: 11px;
  color: var(--fg-muted);
}
.dd-campaign-stats {
  display: flex;
  gap: 20px;
  align-items: center;
}
.dd-campaign-rate {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.dd-campaign-value {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--neon-purple);
  text-shadow: 0 0 8px var(--accent-glow);
}
.dd-campaign-rate-label {
  font-size: 10px;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

/* Affiliate matrix */
.dd-affiliate-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.dd-aff-stat {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
}
.dd-aff-value {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--neon-orange);
  text-shadow: 0 0 12px var(--accent-2-glow);
  margin-bottom: 4px;
}
.dd-aff-label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.dd-network-diagram {
  width: 100%;
  margin-bottom: 20px;
}
.dd-network-diagram svg {
  width: 100%;
  height: auto;
}
.dd-affiliate-earnings {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dd-earnings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--surface-2);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.dd-earnings-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}
.dd-earnings-value {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: #00c864;
  text-shadow: 0 0 8px rgba(0, 200, 100, 0.4);
}
.dd-earnings-row--rank .dd-earnings-value { color: var(--neon-orange); text-shadow: 0 0 8px var(--accent-2-glow); }
.dd-earnings-rank {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--neon-orange);
  text-shadow: 0 0 8px var(--accent-2-glow);
}

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

/* ═══════════════════════════════════════════════════
   LANDING PAGE REBUILD — Section 4:
   Final CTA + Footer
   ═══════════════════════════════════════════════════ */

/* ── Final CTA Section ── */
.dd-final-cta {
  position: relative;
  width: 100%;
  padding: 120px 0;
  background: #080c14;
  border-top: 1px solid var(--border-bright);
  text-align: center;
  overflow: hidden;
}
.dd-final-cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.dd-final-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.dd-final-glow--purple {
  width: 800px;
  height: 800px;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(155, 93, 229, 0.2) 0%, transparent 70%);
  animation: glowPulse 7s ease-in-out infinite;
}
.dd-final-glow--orange {
  width: 500px;
  height: 500px;
  bottom: -100px;
  right: 10%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
  animation: glowPulse 9s ease-in-out infinite 3s;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
.dd-final-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(155, 93, 229, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(155, 93, 229, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.dd-final-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.dd-final-eyebrow {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon-orange);
  margin-bottom: 28px;
  text-shadow: 0 0 16px var(--accent-2-glow);
  opacity: 0.85;
}
.dd-final-headline {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}
.dd-final-line {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--fg);
  display: block;
}
.dd-final-line--accent {
  background: linear-gradient(135deg, #ff6b35 0%, #ff9a56 50%, #ff6b35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 24px rgba(255, 107, 53, 0.5));
  font-style: italic;
}
.dd-final-logo-mark {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--neon-purple);
  text-shadow: 0 0 20px var(--accent-glow);
  margin-bottom: 8px;
  opacity: 0.6;
}
.dd-final-infinity {
  font-size: 64px;
  color: var(--neon-orange);
  text-shadow: 0 0 40px var(--accent-2-glow), 0 0 80px rgba(255, 107, 53, 0.2);
  line-height: 1;
  margin-bottom: 32px;
  animation: infinityPulse 3s ease-in-out infinite;
}
@keyframes infinityPulse {
  0%, 100% { text-shadow: 0 0 40px var(--accent-2-glow); }
  50% { text-shadow: 0 0 60px var(--accent-2-glow), 0 0 100px rgba(255, 107, 53, 0.3); }
}
.dd-final-cta-btn {
  display: inline-block;
  padding: 18px 48px;
  background: linear-gradient(135deg, #ff6b35, #e85a28);
  color: #fff;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(255, 107, 53, 0.5), 0 6px 24px rgba(255, 107, 53, 0.35);
  transition: box-shadow 0.3s, transform 0.2s;
  margin-bottom: 20px;
}
.dd-final-cta-btn:hover {
  box-shadow: 0 0 60px rgba(255, 107, 53, 0.7), 0 8px 32px rgba(255, 107, 53, 0.5);
  transform: translateY(-3px);
}
.dd-final-sub {
  font-size: 15px;
  color: var(--fg-muted);
  opacity: 0.7;
}

/* ── Footer ── */
.dd-site-footer {
  width: 100%;
  background: #080c14;
  border-top: 1px solid var(--border-bright);
}
.dd-footer-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}
.dd-footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  padding: 72px 0 56px;
}
.dd-footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.dd-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.dd-footer-infinity {
  font-size: 28px;
  color: var(--neon-purple);
  text-shadow: 0 0 20px var(--accent-glow);
  line-height: 1;
}
.dd-footer-logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dd-footer-brand-name {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 14px;
  opacity: 0.7;
}
.dd-footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}
.dd-footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dd-footer-follow-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  opacity: 0.6;
}
.dd-footer-social-icons {
  display: flex;
  gap: 12px;
}
.dd-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg-muted);
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.dd-social-icon:hover {
  border-color: var(--neon-purple);
  color: var(--neon-purple);
  box-shadow: 0 0 12px var(--accent-glow);
}
.dd-footer-links-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.dd-footer-link-col h4.dd-footer-col-title {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neon-orange);
  text-shadow: 0 0 8px var(--accent-2-glow);
  margin-bottom: 20px;
  opacity: 0.8;
}
.dd-footer-link-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dd-footer-link-col ul li a {
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s, text-shadow 0.2s;
}
.dd-footer-link-col ul li a:hover {
  color: var(--neon-purple);
  text-shadow: 0 0 8px var(--accent-glow);
}
.dd-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid var(--border);
}
.dd-footer-copyright {
  font-size: 13px;
  color: var(--fg-muted);
  opacity: 0.5;
}
.dd-footer-built {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neon-orange);
  text-shadow: 0 0 8px var(--accent-2-glow);
  opacity: 0.7;
}
  .dd-pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .dd-what-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .dd-nav, .section-inner, .dd-footer-main { padding-left: 24px; padding-right: 24px; }
  .what-grid { grid-template-columns: 1fr; }
  .dd-how-step { grid-template-columns: 60px 1fr; gap: 24px; }
  .dd-step-marker { font-size: 36px; }
  .outcomes-list { grid-template-columns: 1fr; }
  .outcome:nth-child(even) { border-left: none; padding-left: 0; }
  .dd-pricing-grid { grid-template-columns: 1fr; }
  .dd-what-grid { grid-template-columns: 1fr; }
  .dd-manifesto-inner { padding: 0 24px; }
  /* Footer responsive */
  .dd-footer-top { grid-template-columns: 1fr; gap: 40px; padding: 48px 0 32px; }
  .dd-footer-links-cols { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .dd-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 480px) {
  .dd-footer-links-cols { grid-template-columns: 1fr; }
  .dd-final-inner { padding: 0 24px; }
}

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