/* ── Home Page ─────────────────────────────────────────── */

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--parchment));
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative; z-index: 1;
}

.hero-text h1 { color: #fff; }
.hero-em { color: var(--orange); font-style: italic; }

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.45);
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.88rem 2rem;
  border-radius: var(--r-sm);
  transition: all 0.18s;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: .5rem;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); color: #fff; }

.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border: 1.5px solid var(--orange);
  font-family: var(--font-ui); font-size: .8rem; font-weight: 500;
  padding: .45rem 1rem; border-radius: var(--r-sm);
  transition: all .18s; text-decoration: none;
  display: inline-flex; align-items: center;
}
.btn-outline-orange:hover { background: var(--orange-glow); color: var(--orange-dark); }

.hero-fine-print {
  font-family: var(--font-ui); font-size: .76rem;
  color: rgba(255,255,255,0.5); margin-top: .75rem;
}

/* Hero visual */
.hero-visual { display: flex; flex-direction: column; gap: 1.5rem; }
.hero-logo-display {
  display: flex; justify-content: center;
}
.hero-full-logo {
  max-width: 420px; width: 100%;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.35));
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-demo-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-lg);
  padding: 1.5rem;
}
.demo-eyebrow { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.demo-genre-pill {
  font-family: var(--font-ui); font-size: .72rem; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase;
  padding: .2rem .7rem;
  background: var(--orange-glow); color: var(--orange-light);
  border: 1px solid rgba(232,97,10,.4); border-radius: 20px;
}
.demo-dots { display: flex; gap: 5px; }
.demo-dots span { width: 8px; height: 8px; border-radius: 50%; }
.demo-dots span:nth-child(1) { background: #e05252; }
.demo-dots span:nth-child(2) { background: var(--orange); }
.demo-dots span:nth-child(3) { background: #52c87a; }

.demo-prompt {
  font-family: var(--font-display); font-size: 1rem; font-style: italic;
  color: rgba(255,255,255,.9); line-height: 1.7;
  border: none; padding: 0; margin-bottom: 1.25rem;
  quotes: '\201C' '\201D';
}
.demo-prompt::before { content: open-quote; }
.demo-prompt::after  { content: close-quote; }

.demo-footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.1); padding-top: 1rem; }
.demo-meta { font-family: var(--font-ui); font-size: .72rem; color: rgba(255,255,255,.5); font-style: italic; }

/* ── Proof strip ───────────────────────────────────────── */
.proof-strip {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: .9rem 0;
}
.proof-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; flex-wrap: wrap;
}
.proof-stat { font-family: var(--font-ui); font-size: .85rem; color: rgba(255,255,255,.6); }
.proof-stat strong { color: var(--orange-light); }
.proof-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.2); flex-shrink: 0; }

/* ── How it works ──────────────────────────────────────── */
.how-section { background: var(--parchment-2); }
.section-head { margin-bottom: 3rem; }
.section-head .rule { max-width: 180px; margin: .75rem auto; }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0; align-items: start;
}
.step-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 2rem 1.5rem; text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.step-num {
  font-family: var(--font-display); font-size: 3.5rem; font-weight: 900;
  color: rgba(27,46,94,.08); line-height: 1; margin-bottom: .25rem;
}
.step-icon { font-size: 1.75rem; margin-bottom: .75rem; }
.step-title { font-size: 1.05rem; font-weight: 600; margin-bottom: .5rem; color: var(--navy); }
.step-body { font-size: .88rem; color: var(--muted); line-height: 1.65; }
.step-arrow { font-size: 1.5rem; color: var(--orange); padding: 2.5rem .75rem 0; }

/* ── Features ──────────────────────────────────────────── */
.features-section { background: var(--white); }
.features-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: start; }
.features-sticky { position: sticky; top: 90px; }
.features-sticky h2 { color: var(--navy); }

.fi-feature {
  display: flex; gap: 1.25rem; padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.fi-feature:first-child { border-top: 1px solid var(--border); }
.fi-feat-icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1.4; }
.fi-feat-title { font-size: 1rem; font-weight: 600; margin-bottom: .35rem; color: var(--navy); }
.fi-feat-body  { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* ── Pricing teaser ────────────────────────────────────── */
.pricing-teaser-section { background: var(--parchment-2); }
.teaser-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1.25rem; margin-top: 3rem; align-items: start;
}
.teaser-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-md); padding: 1.75rem 1.4rem;
  display: flex; flex-direction: column; gap: .6rem;
  text-align: center; position: relative;
  transition: box-shadow .2s, transform .2s;
}
.teaser-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.teaser-featured {
  border-color: var(--orange); box-shadow: 0 4px 24px var(--orange-glow);
  transform: scale(1.03);
}
.teaser-featured:hover { transform: scale(1.03) translateY(-3px); }
.teaser-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff;
  font-family: var(--font-ui); font-size: .68rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  padding: .2rem .9rem; border-radius: 20px; white-space: nowrap;
}
.teaser-tier-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--navy); }
.teaser-price { font-family: var(--font-ui); font-size: 1.8rem; font-weight: 700; color: var(--orange-dark); }
.teaser-price small { font-size: .75rem; color: var(--muted); font-weight: 400; }
.teaser-hook { font-size: .82rem; color: var(--muted); font-style: italic; }

/* ── CTA ───────────────────────────────────────────────── */
.home-cta-section {
  background: var(--navy);
  padding: 5rem 0;
  position: relative; overflow: hidden;
}
.home-cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(232,97,10,.18) 0%, transparent 65%);
  pointer-events: none;
}
.home-cta-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
  text-align: center;
}
.cta-icon { width: 72px; height: 72px; filter: drop-shadow(0 4px 16px rgba(232,97,10,.5)); }
.home-cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: .5rem; }

/* ── Mobile nav extras ─────────────────────────────────── */
.mobile-nav-cta { color: var(--orange-light) !important; font-weight: 600; }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner    { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual   { max-width: 540px; margin: 0 auto; }
  .hero-full-logo { max-width: 340px; }
  .teaser-grid   { grid-template-columns: repeat(2,1fr); }
  .teaser-featured { transform: scale(1); }
}
@media (max-width: 768px) {
  .steps-grid    { grid-template-columns: 1fr; }
  .step-arrow    { display: none; }
  .features-layout { grid-template-columns: 1fr; gap: 2rem; }
  .features-sticky { position: static; }
  .hero-ctas     { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 540px) {
  .teaser-grid   { grid-template-columns: 1fr; }
  .proof-inner   { gap: .75rem; }
  .proof-dot     { display: none; }
}
