:root {
  --bg: #0C0E12;
  --bg-alt: #141820;
  --fg: #E8E6E1;
  --fg-muted: #9B978E;
  --accent: #D4A053;
  --accent-light: #E8C98A;
  --foundation: #4A7C6F;
  --lifestyle: #7B6BA5;
  --growth: #5889B5;
  --opportunity: #D4A053;
  --radius: 12px;
  --max-w: 1120px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 48px;
  max-width: var(--max-w);
  margin: 0 auto;
  gap: 64px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 100px;
  padding: 6px 18px;
  margin-bottom: 32px;
}

.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 28px;
  color: var(--fg);
}

.hero h1 .accent {
  color: var(--accent);
}

.lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
}

.hero-visual {
  flex-shrink: 0;
}

.layer-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.layer-chip {
  padding: 18px 36px;
  border-radius: var(--radius);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  text-align: center;
  min-width: 220px;
  border: 1px solid rgba(255,255,255,0.06);
}

.chip-foundation { background: rgba(74,124,111,0.18); color: var(--foundation); border-color: rgba(74,124,111,0.3); }
.chip-lifestyle  { background: rgba(123,107,165,0.18); color: var(--lifestyle);  border-color: rgba(123,107,165,0.3); }
.chip-growth     { background: rgba(88,137,181,0.18);  color: var(--growth);     border-color: rgba(88,137,181,0.3); }
.chip-opportunity{ background: rgba(212,160,83,0.15);  color: var(--opportunity); border-color: rgba(212,160,83,0.3); }

/* ─── Reframe ─── */
.reframe {
  padding: 120px 48px;
  background: var(--bg-alt);
}

.reframe-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.reframe h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 56px;
  color: var(--fg);
}

.reframe-grid {
  display: flex;
  align-items: center;
  gap: 48px;
  justify-content: center;
}

.reframe-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 20px;
  font-weight: 600;
}

.reframe-old ul,
.reframe-new ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reframe-old li {
  color: var(--fg-muted);
  font-size: 1.1rem;
  text-decoration: line-through;
  text-decoration-color: rgba(155,151,142,0.4);
}

.reframe-new li {
  color: var(--accent-light);
  font-size: 1.1rem;
  font-weight: 500;
}

.reframe-arrow {
  color: var(--accent);
  flex-shrink: 0;
}

/* ─── Layers ─── */
.layers {
  padding: 120px 48px;
}

.layers-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.layers h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 12px;
}

.layers-subtitle {
  color: var(--fg-muted);
  font-size: 1.1rem;
  margin-bottom: 56px;
  max-width: 560px;
}

.layers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.layer-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 40px 36px;
  border: 1px solid rgba(255,255,255,0.04);
  transition: border-color 0.2s;
}

.layer-card:hover {
  border-color: rgba(255,255,255,0.1);
}

.layer-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 16px;
}

.layer-1 .layer-number { color: var(--foundation); }
.layer-2 .layer-number { color: var(--lifestyle); }
.layer-3 .layer-number { color: var(--growth); }
.layer-4 .layer-number { color: var(--opportunity); }

.layer-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.layer-1 h3 { color: var(--foundation); }
.layer-2 h3 { color: var(--lifestyle); }
.layer-3 h3 { color: var(--growth); }
.layer-4 h3 { color: var(--opportunity); }

.layer-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ─── Buckets ─── */
.buckets {
  padding: 120px 48px;
  background: var(--bg-alt);
}

.buckets-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.buckets h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 12px;
}

.buckets-subtitle {
  color: var(--fg-muted);
  font-size: 1.1rem;
  margin-bottom: 56px;
  max-width: 560px;
}

.bucket-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.bucket-item {
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 24px 20px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 12px;
}

.bucket-icon {
  color: var(--accent);
  font-size: 0.7rem;
}

/* ─── Flywheel ─── */
.flywheel {
  padding: 120px 48px;
}

.flywheel-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.flywheel h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 12px;
}

.flywheel-subtitle {
  color: var(--fg-muted);
  font-size: 1.1rem;
  margin-bottom: 56px;
  max-width: 560px;
}

.flywheel-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.fw-step {
  position: relative;
}

.fw-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: rgba(212,160,83,0.15);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}

.fw-step h3 {
  font-size: 1.2rem;
  color: var(--accent-light);
  margin-bottom: 10px;
}

.fw-step p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ─── Closing ─── */
.closing {
  padding: 140px 48px;
  background: var(--bg-alt);
  text-align: center;
}

.closing-inner {
  max-width: 720px;
  margin: 0 auto;
}

.closing-headline {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin-bottom: 28px;
  color: var(--accent-light);
}

.closing-text {
  color: var(--fg-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.closing-tagline {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--fg);
  letter-spacing: 0.02em;
}

/* ─── Footer ─── */
.site-footer {
  padding: 48px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
  margin-bottom: 6px;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* ─── Purchase ─── */
.purchase {
  padding: 120px 48px;
  background: var(--bg);
}

.purchase-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.purchase-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.purchase-headline {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
  color: var(--fg);
}

.purchase-accent {
  color: var(--accent-light);
}

.purchase-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 56px;
}

.purchase-card {
  background: var(--bg-alt);
  border: 1px solid rgba(212,160,83,0.18);
  border-radius: 20px;
  display: flex;
  gap: 0;
  overflow: hidden;
}

.purchase-card-left {
  flex: 1;
  padding: 52px 48px;
}

.purchase-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 32px;
}

.price-amount {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
}

.price-label {
  font-size: 0.88rem;
  color: var(--fg-muted);
}

.purchase-features {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.purchase-features li {
  color: var(--fg);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.purchase-features li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.purchase-btn {
  display: inline-block;
  background: var(--accent);
  color: #0C0E12;
  text-decoration: none;
  padding: 17px 40px;
  border-radius: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(212,160,83,0.25);
  margin-bottom: 16px;
}

.purchase-btn:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212,160,83,0.35);
}

.purchase-guarantee {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 4px;
}

.purchase-card-right {
  width: 340px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #141820 0%, #0f1219 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
  border-left: 1px solid rgba(255,255,255,0.04);
}

/* Decorative book visual */
.guidebook-visual {
  display: flex;
  gap: 0;
  filter: drop-shadow(0 12px 40px rgba(0,0,0,0.5));
}

.gv-spine {
  width: 28px;
  background: var(--accent);
  border-radius: 4px 0 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: #0C0E12;
  letter-spacing: 0.1em;
}

.gv-cover {
  background: #1a1f2d;
  border: 1px solid rgba(212,160,83,0.15);
  border-left: none;
  border-radius: 0 8px 8px 0;
  padding: 32px 28px;
  width: 210px;
}

.gv-subtitle {
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-bottom: 32px;
}

.gv-layers {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gv-layer {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  padding: 7px 12px;
  border-radius: 5px;
  letter-spacing: 0.04em;
}

.gv-foundation { background: rgba(74,124,111,0.18); color: var(--foundation); }
.gv-lifestyle  { background: rgba(123,107,165,0.18); color: var(--lifestyle); }
.gv-growth     { background: rgba(88,137,181,0.18); color: var(--growth); }
.gv-opportunity{ background: rgba(212,160,83,0.15); color: var(--opportunity); }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 24px;
    min-height: auto;
    gap: 48px;
  }
  .lede { margin: 0 auto; }
  .layers-grid { grid-template-columns: 1fr; }
  .bucket-flow { grid-template-columns: repeat(2, 1fr); }
  .flywheel-steps { grid-template-columns: repeat(2, 1fr); }
  .reframe-grid { flex-direction: column; gap: 24px; }
  .reframe-arrow { transform: rotate(90deg); }
  .purchase-card { flex-direction: column; }
  .purchase-card-right { width: 100%; padding: 40px; }
  .guidebook-visual { justify-content: center; }
}

@media (max-width: 480px) {
  .hero { padding: 48px 20px; }
  .reframe, .layers, .buckets, .flywheel, .closing, .purchase { padding: 80px 20px; }
  .bucket-flow { grid-template-columns: 1fr; }
  .flywheel-steps { grid-template-columns: 1fr; }
  .layer-chip { min-width: 180px; padding: 14px 24px; }
  .purchase-card { flex-direction: column; }
  .purchase-card-right { width: 100%; }
  .purchase-card-left { padding: 36px 28px; }
  .guidebook-visual { justify-content: center; }
}
/* ─── Preview Capture (Email Lead Capture) ─────────────────────────────────── */

.preview-capture {
  padding: 100px 40px;
  background: linear-gradient(180deg, #0C0E12 0%, #0f1218 50%, #0C0E12 100%);
  text-align: center;
}

.preview-capture-inner {
  max-width: 600px;
  margin: 0 auto;
}

.preview-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #D4A053;
  margin-bottom: 16px;
}

.preview-headline {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #E8E6E1;
  margin-bottom: 16px;
  line-height: 1.25;
}

.preview-sub {
  color: #9B978E;
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 36px;
}

.preview-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.preview-fields {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 480px;
}

.preview-input {
  flex: 1;
  background: #141820;
  border: 1px solid rgba(255,255,255,0.1);
  color: #E8E6E1;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.preview-input:focus {
  border-color: rgba(212, 160, 83, 0.5);
}

.preview-input::placeholder {
  color: #5a574f;
}

.preview-btn {
  background: #D4A053;
  color: #0C0E12;
  border: none;
  border-radius: 8px;
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}

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

.preview-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.preview-privacy {
  font-size: 0.75rem;
  color: #5a574f;
  margin: 0;
}

/* Success state */
.preview-success {
  text-align: center;
  padding: 20px 0;
}

.preview-success-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(212, 160, 83, 0.12);
  color: #D4A053;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.preview-success-msg {
  font-size: 1.15rem;
  font-weight: 600;
  color: #E8E6E1;
  margin-bottom: 8px;
}

.preview-success-sub {
  color: #9B978E;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.preview-success-cta {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(212,160,83,0.4);
  color: #D4A053;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s;
}

.preview-success-cta:hover {
  background: rgba(212, 160, 83, 0.08);
}

/* Error state */
.preview-error-msg {
  color: #E8827A;
  font-size: 0.9rem;
  margin-top: 12px;
}

@media (max-width: 600px) {
  .preview-capture { padding: 80px 20px; }
  .preview-headline { font-size: 1.75rem; }
  .preview-fields { flex-direction: column; }
  .preview-btn { width: 100%; }
}
