/* =====================
   DREAMBIT — THEME CSS
   ===================== */

:root {
  --cream: #FFF8F0;
  --rose: #E8A598;
  --rose-light: #F4C4BC;
  --sage: #A8C5B5;
  --sage-dark: #8AB09A;
  --plum: #4A3728;
  --plum-light: #6B5A4A;
  --white: #FFFFFF;
  --shadow: rgba(74, 55, 40, 0.08);
  --shadow-md: rgba(74, 55, 40, 0.14);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--plum);
  font-family: 'Nunito', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- NAV ---- */
.nav {
  display: flex;
  align-items: center;
  padding: 24px 48px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,248,240,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--plum);
  text-decoration: none;
}

/* ---- HERO ---- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 80px 48px 80px;
  min-height: 85vh;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,165,152,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(168,197,181,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: var(--rose);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--plum);
  margin-bottom: 20px;
}

.hero-content h1 em {
  font-style: normal;
  color: var(--rose);
  position: relative;
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--plum-light);
  max-width: 480px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: rgba(232,165,152,0.12);
  color: var(--plum);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid rgba(232,165,152,0.25);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.scene-wrap {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.orb-1 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(232,165,152,0.18) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbFloat 6s ease-in-out infinite;
}

.orb-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(168,197,181,0.2) 0%, transparent 70%);
  top: 30%;
  left: 20%;
  animation: orbFloat 8s ease-in-out infinite reverse;
}

.orb-3 {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(232,165,152,0.15) 0%, transparent 70%);
  bottom: 15%;
  right: 10%;
  animation: orbFloat 7s ease-in-out infinite 2s;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-12px) scale(1.03); }
}

.stars {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

.blob-wrap {
  position: relative;
  z-index: 2;
  animation: blobBounce 4s ease-in-out infinite;
}

@keyframes blobBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.blob-shadow {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 20px;
  background: rgba(74,55,40,0.08);
  border-radius: 50%;
  filter: blur(6px);
}

.float-item {
  position: absolute;
  pointer-events: none;
  animation: floatUp 5s ease-in-out infinite;
}

.float-1 { top: 15px; right: 0; animation-delay: 0s; }
.float-2 { top: 40%; left: -20px; animation-delay: 1.5s; }
.float-3 { bottom: 60px; right: 20px; animation-delay: 3s; }

@keyframes floatUp {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(8deg); }
}

/* ---- MANIFESTO ---- */
.manifesto {
  background: var(--plum);
  color: var(--cream);
  padding: 80px 48px;
  text-align: center;
}

.manifesto-quote {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 600;
  line-height: 1.4;
  max-width: 760px;
  margin: 0 auto 28px;
  opacity: 0.95;
}

.manifesto-sub {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.75;
  line-height: 1.7;
}

/* ---- FEATURES ---- */
.features {
  padding: 100px 48px;
  background: var(--cream);
}

.features-header {
  text-align: center;
  margin-bottom: 60px;
}

.features-header h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--plum);
  margin-bottom: 14px;
}

.features-header p {
  font-size: 1.05rem;
  color: var(--plum-light);
  max-width: 460px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.feature-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  border: 1px solid rgba(232,165,152,0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px var(--shadow);
}

.feature-icon {
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--plum);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--plum-light);
  line-height: 1.65;
}

/* ---- PROCESS ---- */
.process {
  padding: 80px 48px;
  background: linear-gradient(160deg, rgba(168,197,181,0.08) 0%, rgba(232,165,152,0.06) 100%);
  border-top: 1px solid rgba(168,197,181,0.12);
}

.process-header {
  text-align: center;
  margin-bottom: 56px;
}

.process-header h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--plum);
  margin-bottom: 10px;
}

.process-header p {
  font-size: 1rem;
  color: var(--plum-light);
}

.process-steps {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid rgba(74,55,40,0.08);
}

.step:last-child {
  border-bottom: none;
}

.step-num {
  font-family: 'Quicksand', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--rose);
  opacity: 0.35;
  line-height: 1;
}

.step-content h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--plum);
  margin-bottom: 10px;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--plum-light);
  line-height: 1.65;
}

/* ---- CLOSING ---- */
.closing {
  padding: 100px 48px;
  background: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(232,165,152,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.closing-badge {
  display: inline-block;
  background: rgba(168,197,181,0.2);
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid rgba(168,197,181,0.3);
}

.closing-inner h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--plum);
  line-height: 1.25;
  margin-bottom: 18px;
  position: relative;
}

.closing-inner p {
  font-size: 1.05rem;
  color: var(--plum-light);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.closing-note {
  font-size: 0.9rem;
  color: var(--plum);
  opacity: 0.6;
}

.closing-note strong {
  font-family: 'Quicksand', sans-serif;
  color: var(--rose);
  opacity: 1;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--plum);
  color: var(--cream);
  padding: 40px 48px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 12px;
  opacity: 0.8;
}

.footer-tagline {
  font-size: 0.85rem;
  opacity: 0.5;
  margin-bottom: 8px;
}

.footer-copy {
  font-size: 0.75rem;
  opacity: 0.35;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }

  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 24px;
    text-align: center;
    min-height: auto;
  }

  .hero-content h1 { font-size: 2.2rem; }
  .hero-content p { margin: 0 auto 24px; }
  .hero-pill-row { justify-content: center; }

  .hero-visual { order: -1; }
  .scene-wrap { width: 240px; height: 240px; }

  .manifesto { padding: 60px 24px; }
  .features { padding: 60px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .process { padding: 60px 24px; }
  .step { grid-template-columns: 56px 1fr; gap: 16px; }
  .closing { padding: 60px 24px; }
  .footer { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .hero-pill-row { gap: 8px; }
  .pill { font-size: 0.75rem; padding: 5px 12px; }
  .step { grid-template-columns: 1fr; gap: 8px; }
  .step-num { font-size: 1.4rem; }
}