/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 8rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(138,158,138,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(74,124,124,0.08) 0%, transparent 60%),
    var(--white);
}

.hero > * { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(138,158,138,0.12);
  border: 1px solid rgba(138,158,138,0.3);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em;
  color: var(--sage-dark); text-transform: uppercase;
  margin-bottom: 2rem;
  animation: fadeUp 0.6s ease both;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  max-width: 760px;
  margin: 0 auto 1.5rem;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero h1 em {
  font-style: italic;
  color: var(--teal);
}

.hero-sub {
  font-size: 1.1rem; color: var(--text-soft); font-weight: 300;
  max-width: 480px; margin: 0 auto 2.5rem;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-cta {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: center;
  animation: fadeUp 0.7s 0.3s ease both;
  margin-bottom: 4rem;
}

.btn-hero {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--ink); color: var(--white);
  padding: 0.85rem 2rem; border-radius: 100px;
  font-size: 1rem; font-weight: 500; text-decoration: none;
  transition: all 0.2s; letter-spacing: 0.01em;
}
.btn-hero:hover { background: var(--teal); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(74,124,124,0.25); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--text-soft); text-decoration: none;
  font-size: 0.95rem; font-weight: 400;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--ink); }

/* ── FEATURE PILLS (hero) ── */
.hero-features {
  display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center;
  animation: fadeUp 0.7s 0.4s ease both;
}

.feature-pill {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--mist-dark);
  border-radius: 100px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem; color: var(--text-body);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.feature-pill .icon { font-size: 1rem; }

/* ── SCREENSHOTS ── */
.screenshots {
  padding: 5rem 2rem;
  background: var(--mist);
}

.screenshots-inner {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem;
  align-items: start;
}

.screenshot-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.screenshot-card img {
  width: 100%; display: block;
  border-radius: 20px 20px 0 0;
}

.screenshot-caption {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--mist-dark);
}

.screenshot-caption strong {
  display: block; font-size: 0.95rem; font-weight: 500;
  color: var(--ink); margin-bottom: 0.25rem;
}

.screenshot-caption span {
  font-size: 0.85rem; color: var(--text-soft);
}

/* ── WHAT'S NEW BANNER ── */
.new-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--sage-dark) 100%);
  color: var(--white);
  padding: 3.5rem 2rem;
  text-align: center;
}

.new-banner .eyebrow {
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  opacity: 0.75; margin-bottom: 0.75rem; font-weight: 500;
}

.new-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300; margin-bottom: 0.75rem;
}

.new-banner p {
  opacity: 0.85; font-size: 1rem; font-weight: 300; max-width: 500px; margin: 0 auto;
}

/* ── FEATURES GRID ── */
.features {
  padding: 6rem 2rem;
  background: var(--white);
}

.features-inner { max-width: 960px; margin: 0 auto; }

.section-header {
  text-align: center; margin-bottom: 3.5rem;
}

.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300; color: var(--ink);
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-soft); font-size: 1rem; font-weight: 300;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--mist);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
}

.feature-card .fc-icon {
  font-size: 1.75rem; margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1rem; font-weight: 500; color: var(--ink);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.88rem; color: var(--text-soft); line-height: 1.6;
}

/* NEW badge */
.badge-new {
  display: inline-block;
  background: var(--teal); color: var(--white);
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 0.15rem 0.5rem;
  border-radius: 100px; vertical-align: middle; margin-left: 0.4rem;
}

/* ── HOW IT WORKS ── */
.how {
  padding: 6rem 2rem;
  background: var(--mist);
}

.how-inner { max-width: 700px; margin: 0 auto; }

.how-steps { display: flex; flex-direction: column; gap: 0; }

.how-step {
  display: grid; grid-template-columns: 48px 1fr;
  gap: 1.5rem; align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--mist-dark);
}
.how-step:last-child { border-bottom: none; }

.step-num {
  width: 48px; height: 48px;
  background: var(--white);
  border: 1px solid var(--mist-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 600; color: var(--sage-dark);
  flex-shrink: 0; margin-top: 0.15rem;
}

.step-content h3 {
  font-size: 1.05rem; font-weight: 500; color: var(--ink);
  margin-bottom: 0.4rem;
}

.step-content p {
  font-size: 0.9rem; color: var(--text-soft); line-height: 1.65;
}

/* ── NOT ANOTHER APP ── */
.philosophy {
  padding: 6rem 2rem;
  background: var(--ink);
  color: rgba(255,255,255,0.9);
}

.philosophy-inner { max-width: 680px; margin: 0 auto; text-align: center; }

.philosophy h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300; margin-bottom: 1.5rem;
  color: var(--white);
}

.philosophy p {
  font-size: 1rem; font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,0.7); margin-bottom: 1.2rem;
}

.philosophy a.btn-light {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  padding: 0.8rem 1.8rem; border-radius: 100px;
  text-decoration: none; font-size: 0.95rem; font-weight: 400;
  transition: all 0.2s;
}
.philosophy a.btn-light:hover {
  background: rgba(255,255,255,0.18);
}

/* ── BUNDLE ── */
.bundle-promo {
  padding: 6rem 2rem;
  background: var(--mist);
  scroll-margin-top: 80px;
}
.bundle-promo-inner {
  max-width: 940px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3.5rem; align-items: center;
}
.bundle-promo-video {
  width: 100%; max-width: 420px; aspect-ratio: 1 / 1;
  display: block; margin: 0 auto;
  border-radius: 18px; object-fit: cover;
  background: var(--mist-dark);
  box-shadow: 0 14px 44px rgba(26,31,26,0.16);
}
.bundle-promo-eyebrow {
  display: inline-block;
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal); font-weight: 600; margin-bottom: 0.85rem;
}
.bundle-promo-copy h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 300; line-height: 1.12;
  color: var(--ink); margin-bottom: 1.1rem;
}
.bundle-promo-copy p {
  font-size: 1rem; font-weight: 300; line-height: 1.8;
  color: var(--text-body); margin-bottom: 1.9rem; max-width: 40ch;
}
.bundle-promo-cta {
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.9rem;
}
.bundle-promo-link {
  color: var(--teal); text-decoration: none; font-size: 0.92rem; font-weight: 500;
}
.bundle-promo-link:hover { color: var(--ink); }
@media (max-width: 768px) {
  .bundle-promo { padding: 4.5rem 1.5rem; }
  .bundle-promo-inner { grid-template-columns: 1fr; gap: 2.2rem; text-align: center; }
  .bundle-promo-copy p { margin-left: auto; margin-right: auto; }
  .bundle-promo-cta { align-items: center; }
  .bundle-promo-media { order: -1; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 680px) {
  .screenshots-inner { grid-template-columns: 1fr; max-width: 380px; }
}
