/* Dream.Do. — StoryBrand Landing Page with Images */

:root {
  --bg-primary: #0D0D14;
  --bg-secondary: #161622;
  --bg-card: #1A1A2E;
  --gold: #C9A84C;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --gold-glow: rgba(201, 168, 76, 0.08);
  --text-primary: #F0EDE6;
  --text-secondary: #A9A6A0;
  --text-tertiary: #6B6965;
  --border: rgba(255, 255, 255, 0.06);
  --success: #4CAF50;
  --failure: #E74C3C;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.gold { color: var(--gold); }

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 16px 0;
  background: rgba(13, 13, 20, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { text-decoration: none; font-size: 22px; font-weight: 800; }
.logo-dream { color: var(--text-primary); }
.logo-do { color: var(--gold); }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  font-family: var(--font-body);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 14px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn-sm:hover {
  background: var(--gold);
  color: var(--bg-primary);
}
.btn-lg { padding: 16px 36px; font-size: 17px; }

.btn-primary {
  background: var(--gold);
  color: var(--bg-primary);
}
.btn-primary:hover {
  background: #D4B55A;
  transform: translateY(-1px);
}

/* ── Hero — Full-bleed image ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(13, 13, 20, 0.55) 0%,
    rgba(13, 13, 20, 0.7) 50%,
    rgba(13, 13, 20, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 160px 24px 100px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 20px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: 19px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* ── Problem Section ── */
.problem {
  padding: 100px 0 60px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.problem-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
}

.problem-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.problem-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.problem-card strong {
  color: var(--text-primary);
}

/* ── Image Break (parallax-style divider) ── */
.image-break {
  position: relative;
  height: 320px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-break img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-break-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 20, 0.75);
}

.image-break-text {
  position: relative;
  z-index: 1;
  font-size: 20px;
  color: var(--text-secondary);
  text-align: center;
  max-width: 560px;
  padding: 0 24px;
  line-height: 1.7;
}

.image-break-text strong {
  color: var(--gold);
  font-weight: 700;
}

/* ── Guide Section ── */
.guide {
  padding: 80px 0;
}

.guide-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  border-left: 3px solid var(--gold);
  padding: 32px 36px;
  background: var(--gold-glow);
  border-radius: 0 12px 12px 0;
}

.guide-empathy {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.7;
  font-style: italic;
}

.guide-authority {
  font-size: 17px;
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.7;
}

/* ── Plan Section — Side-by-side layout ── */
.plan {
  padding: 80px 0;
}

.plan-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 48px;
}

.plan-image {
  border-radius: 16px;
  overflow: hidden;
}

.plan-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.plan-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.plan-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-number {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg-primary);
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plan-step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.plan-step p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── Stakes Section ── */
.stakes {
  padding: 80px 0;
}

.stakes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stakes-failure,
.stakes-success {
  border-radius: 12px;
  padding: 32px 28px;
}

.stakes-failure {
  background: rgba(231, 76, 60, 0.06);
  border: 1px solid rgba(231, 76, 60, 0.15);
}

.stakes-success {
  background: var(--gold-glow);
  border: 1px solid var(--gold-dim);
}

.stakes-failure h3 {
  color: var(--failure);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.stakes-success h3 {
  color: var(--gold);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.stakes-failure ul,
.stakes-success ul {
  list-style: none;
  padding: 0;
}

.stakes-failure li,
.stakes-success li {
  font-size: 15px;
  color: var(--text-secondary);
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.stakes-failure li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--failure);
  font-weight: 700;
}

.stakes-success li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ── Artists Section — Side-by-side ── */
.artists {
  padding: 80px 0;
}

.artists-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.artists-text .section-title {
  text-align: left;
}

.artist-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.artist-tag {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.artists-image {
  border-radius: 16px;
  overflow: hidden;
}

.artists-image img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

/* ── Section Titles ── */
.section-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Waitlist Section ── */
.waitlist {
  padding: 100px 0;
  text-align: center;
}

.waitlist-form {
  max-width: 580px;
  margin: 36px auto 0;
}

.form-row {
  display: flex;
  gap: 8px;
}

.form-input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
}

.form-input:focus { border-color: var(--gold); }
.form-input::placeholder { color: var(--text-tertiary); }

.form-select {
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 15px;
  font-family: var(--font-body);
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
}

.form-note {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 12px;
}

.waitlist-success { padding: 32px; }
.success-icon { font-size: 48px; margin-bottom: 12px; }
.waitlist-success h3 { font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.waitlist-success p { color: var(--text-secondary); }

.artist-fields {
  margin-top: 16px;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.artist-fields-inner {
  background: rgba(201, 168, 76, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 12px;
  padding: 20px;
}

.artist-fields-label {
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 12px;
}

.form-row-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-row-stack .form-input,
.form-row-stack .form-select {
  width: 100%;
}

.share-prompt {
  color: var(--text-tertiary) !important;
  font-size: 14px !important;
  margin-top: 24px !important;
  margin-bottom: 12px !important;
}

.share-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  color: var(--text-secondary);
  font-family: var(--font-body);
}

.share-btn:hover {
  border-color: var(--gold-dim);
  color: var(--text-primary);
  transform: translateY(-1px);
}

.share-x:hover { color: #F0EDE6; }
.share-fb:hover { color: #4267B2; }
.share-copy:hover { color: var(--gold); }

/* ── Footer ── */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.footer-simple { text-align: center; }
.footer-simple .logo {
  display: inline-block;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-links-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}

.footer-links-row a {
  color: var(--text-tertiary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links-row a:hover { color: var(--gold); }
.footer-copy { font-size: 13px; color: var(--text-tertiary); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero { min-height: 80vh; }
  .hero-content { padding: 120px 24px 60px; }
  .hero-title { font-size: 36px; }
  .hero-subtitle { font-size: 16px; }

  .problem-grid { grid-template-columns: 1fr; gap: 16px; }

  .image-break { height: 240px; }
  .image-break-text { font-size: 17px; }

  .plan-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .plan-image { max-height: 280px; }

  .stakes-grid { grid-template-columns: 1fr; gap: 16px; }

  .artists-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .artists-image { order: -1; }
  .artists-text .section-title,
  .artists-text .section-subtitle {
    text-align: center !important;
  }
  .artist-features { justify-content: center; }

  .section-title { font-size: 28px; }

  .form-row { flex-direction: column; }
  .form-row .btn { width: 100%; }

  .guide-inner { padding: 24px 20px; }
}
