/* BrainTrip web styles — matches the app's warm coral/cream aesthetic */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&family=Playfair+Display:wght@700;800&display=swap');

:root {
  --cream: #F5EFE8;
  --coral: #E07040;
  --purple: #C084FC;
  --rose: #FDA4AF;
  --text: #1A1A1A;
  --text-muted: rgba(28, 28, 28, 0.65);
  --text-subtle: rgba(28, 28, 28, 0.45);
  --card: rgba(255, 255, 255, 0.65);
  --card-border: rgba(255, 255, 255, 0.95);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(135deg, #FDA4AF 0%, #FDBA74 35%, #F5EFE8 70%, #C084FC 100%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ───── Hero (index.html) ───── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.hero-inner {
  max-width: 640px;
  text-align: left;
}

.wordmark {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: var(--text);
  margin-bottom: 64px;
}

.headline {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(48px, 9vw, 88px);
  line-height: 1;
  letter-spacing: -2.5px;
  color: var(--text);
  margin-bottom: 24px;
}

.subhead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 48px;
}

.footer-links {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 14px;
}

.footer-links a {
  color: var(--coral);
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-links span {
  color: var(--text-subtle);
}

/* ───── Document pages (privacy, terms, support) ───── */
.doc-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--coral);
  text-decoration: none;
  margin-bottom: 32px;
}

.back-link:hover {
  text-decoration: underline;
}

.doc-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 48px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.doc-card h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(36px, 6vw, 48px);
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.05;
}

.doc-card .updated {
  font-size: 13px;
  color: var(--text-subtle);
  margin-bottom: 32px;
}

.doc-card h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--text);
  margin-top: 36px;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.doc-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  margin-top: 24px;
  margin-bottom: 8px;
}

.doc-card p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.doc-card ul,
.doc-card ol {
  margin-left: 24px;
  margin-bottom: 14px;
}

.doc-card li {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.doc-card a {
  color: var(--coral);
  text-decoration: none;
  font-weight: 600;
}

.doc-card a:hover {
  text-decoration: underline;
}

.doc-card strong {
  color: var(--text);
  font-weight: 600;
}

.doc-card hr {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin: 32px 0;
}

.doc-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 14px;
  color: var(--text-subtle);
  text-align: center;
}

/* ───── Mobile ───── */
@media (max-width: 640px) {
  .doc-card {
    padding: 28px 24px;
    border-radius: 20px;
  }

  .doc-page {
    padding: 32px 16px 64px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   LAUNCH LANDING — added for 1.2.0 ship
   The "coming soon" hero above is unused; the launched landing below
   replaces it. Both styles coexist so doc pages keep working.
   ═══════════════════════════════════════════════════════════════════ */

/* ───── Site header ───── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 28px;
  background: rgba(245, 239, 232, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.brand {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--text);
  text-decoration: none;
}

.brand--footer {
  font-style: italic;
  font-size: 24px;
  margin-bottom: 4px;
}

.header-cta {
  display: inline-block;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--text);
  color: #FFF;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
  transition: opacity 0.15s;
}

.header-cta:hover { opacity: 0.85; }

/* ───── HERO ───── */
.hero {
  /* override the old centered hero */
  min-height: auto !important;
  display: grid !important;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 28px 100px !important;
  align-items: center;
}

.hero-text { max-width: 560px; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2.2px;
  color: rgba(28, 28, 28, 0.55);
  margin-bottom: 18px;
}

.hero .headline {
  /* override old hero headline only inside .hero (not used elsewhere) */
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(48px, 7.5vw, 76px);
  line-height: 1.02;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 22px;
}

.hero .subhead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 30px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--text);
  color: #FFF;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.15s, box-shadow 0.15s;
}

.cta-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.cta-primary--large {
  padding: 18px 30px;
  font-size: 16px;
}

/* ───── Hero artwork (stacked phones) ───── */
.hero-art {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-phone {
  position: absolute;
  width: 56%;
  border-radius: 36px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.hero-phone--back {
  transform: rotate(-8deg) translate(-22%, 6%);
  z-index: 1;
  opacity: 0.85;
}

.hero-phone--front {
  z-index: 3;
  transform: translateY(0);
}

.hero-phone--floating {
  transform: rotate(7deg) translate(22%, -2%);
  z-index: 2;
  opacity: 0.95;
}

/* ───── FEATURES ───── */
.features {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 28px 80px;
}

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2.2px;
  color: rgba(28, 28, 28, 0.55);
  margin-bottom: 14px;
  text-align: center;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 44px);
  line-height: 1.08;
  letter-spacing: -1.2px;
  color: var(--text);
  margin-bottom: 56px;
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-title em {
  font-style: italic;
  color: var(--coral);
}

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

.feature-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 28px 26px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #FFF;
}

.feature-icon--coral { background: var(--coral); }
.feature-icon--purple { background: #9C5CFF; }
.feature-icon--rose { background: #E76F8A; }

.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
}

/* ───── HOW IT WORKS ───── */
.how {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 28px 100px;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.how-steps li {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 28px 26px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.how-step-num {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--text);
  color: #FFF;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 14px;
}

.how-steps h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-style: italic;
  font-size: 20px;
  letter-spacing: -0.4px;
  color: var(--text);
  margin-bottom: 8px;
}

.how-steps p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
}

/* ───── BOTTOM CTA ───── */
.bottom-cta {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px 90px;
}

.bottom-cta-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 28px;
  padding: 64px 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.bottom-cta-card h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-style: italic;
  font-size: clamp(36px, 5vw, 52px);
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 12px;
}

.bottom-cta-card p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* ───── SHARE LANDING (/p/[slug]) ───── */
.share-landing {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 28px 80px;
  text-align: center;
}

.share-landing .eyebrow {
  margin-bottom: 16px;
  text-align: center;
}

.share-title {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 18px;
}

.share-title em {
  font-style: italic;
  color: var(--coral);
}

.share-subtitle {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 36px;
}

.share-mock {
  margin: 0 auto 36px;
  max-width: 320px;
}

.share-mock-img {
  width: 100%;
  height: auto;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.share-footnote {
  margin-top: 22px;
  font-size: 14px;
  color: var(--text-subtle);
}

.share-footnote a {
  color: var(--coral);
  font-weight: 600;
  text-decoration: none;
}

.share-footnote a:hover { text-decoration: underline; }

/* ───── SITE FOOTER ───── */
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 28px 60px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  gap: 24px;
  flex-wrap: wrap;
}

.footer-left { text-align: left; }

.footer-tag {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--text-muted);
}

.footer-links--site a {
  color: var(--text);
  opacity: 0.6;
}

.footer-links--site a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* ───── Mobile responsive ───── */
@media (max-width: 880px) {
  .hero {
    grid-template-columns: 1fr !important;
    padding: 60px 24px 60px !important;
    gap: 36px;
  }

  .hero-text { max-width: 100%; }

  .hero-art {
    order: -1;
    max-width: 360px;
    margin: 0 auto;
  }

  .hero-phone { width: 60%; }

  .feature-grid,
  .how-steps {
    grid-template-columns: 1fr;
  }

  .site-header { padding: 14px 20px; }
  .bottom-cta-card { padding: 44px 24px; }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   LAUNCH LANDING v2 — built for conversion
   Overrides the v1 rules above where there's a conflict (selectors
   are scoped to .hero--v2 / .strips / .bottom-cta-card--v2 so v1
   styles continue to work for any non-redesigned pages).
   ═══════════════════════════════════════════════════════════════════ */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ─── HERO v2 — centered, dramatic, phone front-and-center ─── */
.hero--v2 {
  position: relative;
  display: block !important;
  grid-template-columns: none !important;
  max-width: none;
  margin: 0;
  padding: 70px 24px 60px !important;
  text-align: center;
  overflow: hidden;
  min-height: auto;
}

.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.floating-card {
  position: absolute;
  width: 200px;
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  opacity: 0.55;
  filter: saturate(1.05);
  animation: float-card 9s ease-in-out infinite;
}

.floating-card--left {
  top: 12%;
  left: -40px;
  transform: rotate(-14deg);
  animation-delay: 0s;
}

.floating-card--right {
  top: 22%;
  right: -30px;
  transform: rotate(11deg);
  animation-delay: -3s;
}

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

.floating-card--right {
  animation: float-card-r 9s ease-in-out infinite;
  animation-delay: -3s;
}

@keyframes float-card-r {
  0%, 100% { transform: rotate(11deg) translateY(0); }
  50%       { transform: rotate(11deg) translateY(-16px); }
}

/* Aurora orbs glowing behind everything */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}

.orb--coral { width: 360px; height: 360px; background: #FFB37A; top: -80px; left: 20%; }
.orb--purple { width: 320px; height: 320px; background: #C084FC; bottom: -100px; right: 18%; opacity: 0.4; }
.orb--rose { width: 280px; height: 280px; background: #FDA4AF; top: 40%; left: -100px; opacity: 0.45; }

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

.hero-content .eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(28, 28, 28, 0.55);
  margin-bottom: 24px;
}

.headline--cycle {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(48px, 8vw, 90px) !important;
  line-height: 1.02;
  letter-spacing: -2.2px;
  color: var(--text);
  margin-bottom: 24px !important;
  text-align: center;
}

.headline--cycle .punct {
  /* the trailing question mark */
  display: inline;
}

.cycle-wrap {
  display: inline-block;
  position: relative;
  vertical-align: baseline;
  min-width: 1.4em;
}

.cycle-word {
  display: inline-block;
  font-style: italic;
  color: var(--coral);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.hero--v2 .subhead {
  font-size: clamp(16px, 1.6vw, 19px) !important;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 32px !important;
  text-align: center;
}

.cta-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 50px;
}

.cta-primary--xl {
  padding: 18px 30px;
  border-radius: 999px;
  background: var(--text);
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  transition: transform 0.18s, box-shadow 0.18s;
}

.cta-primary--xl:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.32);
}

.cta-stack-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  gap: 3px;
}

.cta-stack-eyebrow {
  font-size: 10px;
  letter-spacing: 1.4px;
  opacity: 0.75;
  text-transform: uppercase;
}

.cta-stack-line {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.meta-line {
  font-size: 13px;
  color: rgba(28, 28, 28, 0.55);
  letter-spacing: 0.3px;
}

/* ─── Hero phone stage ─── */
.hero-phone-stage {
  position: relative;
  max-width: 380px;
  margin: 30px auto 0;
}

.hero-phone-main {
  width: 100%;
  border-radius: 44px;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(0, 0, 0, 0.06);
  animation: phone-float 6s ease-in-out infinite;
}

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

.fact-bubble {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  padding: 12px 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  max-width: 230px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 4px;
  animation: bubble-float 5s ease-in-out infinite;
}

.fact-bubble--top {
  top: 14%;
  right: -120px;
  animation-delay: 0s;
}

.fact-bubble--bottom {
  bottom: 14%;
  left: -130px;
  animation-delay: -2.5s;
}

@keyframes bubble-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.bubble-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--coral);
}

.bubble-text {
  font-size: 13px;
  line-height: 1.45;
  color: var(--text);
}

.bubble-text strong {
  font-weight: 700;
}

/* ─── LIVE FACT TICKER ─── */
.ticker-section {
  background: rgba(0, 0, 0, 0.85);
  overflow: hidden;
  padding: 16px 0;
  margin-top: -10px;
}

.ticker-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: ticker-scroll 60s linear infinite;
  width: max-content;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  display: flex;
  align-items: center;
  gap: 14px;
}

.ticker-city {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  color: #FBA17F;
  background: rgba(255, 179, 122, 0.12);
  border: 1px solid rgba(255, 179, 122, 0.35);
  padding: 4px 10px;
  border-radius: 999px;
}

/* ─── POSTCARD CAROUSEL ─── */
.carousel-section {
  padding: 80px 0 70px;
  overflow: hidden;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 50px;
  padding: 0 24px;
  text-align: center;
}

.section-head .section-eyebrow {
  margin-bottom: 14px;
}

.section-head .section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 16px;
}

.section-head .section-title em {
  font-style: italic;
  color: var(--coral);
}

.section-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.postcard-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.postcard-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: postcard-scroll 50s linear infinite;
  padding: 30px 0;
}

@keyframes postcard-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.postcard-tile {
  flex: none;
  width: 220px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  transition: transform 0.3s;
}

.postcard-tile--wide {
  width: 300px;
}

.postcard-track:hover {
  animation-play-state: paused;
}

.postcard-tile:hover {
  transform: scale(1.04) translateY(-6px);
}

/* ─── FEATURE STRIPS ─── */
.strips {
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 28px 60px;
}

.strip {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
  padding: 70px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

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

.strip--reverse {
  grid-template-columns: 1fr 1.1fr;
}

.strip--reverse .strip-text {
  order: 2;
}

.strip-eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2.2px;
  color: var(--coral);
  margin-bottom: 14px;
}

.strip-title {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -1.3px;
  color: var(--text);
  margin-bottom: 18px;
}

.strip-title em {
  font-style: italic;
  color: var(--coral);
}

.strip-body {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 22px;
  max-width: 480px;
}

.strip-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.strip-pills li {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.95);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  font-family: 'Inter', sans-serif;
}

.strip-art {
  display: flex;
  justify-content: center;
  align-items: center;
}

.strip-phone {
  width: 100%;
  max-width: 360px;
  border-radius: 38px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s;
}

.strip-phone:hover { transform: translateY(-6px); }

/* ─── BOTTOM CTA v2 ─── */
.bottom-cta-card--v2 {
  background:
    radial-gradient(circle at 25% 20%, rgba(224, 112, 64, 0.25) 0%, transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(192, 132, 252, 0.22) 0%, transparent 50%),
    rgba(255, 255, 255, 0.7);
  padding: 80px 32px;
}

.bottom-cta-eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2.5px;
  color: var(--coral);
  margin-bottom: 18px;
}

.bottom-cta-card--v2 h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1.04;
  letter-spacing: -1.8px;
  color: var(--text);
  margin-bottom: 18px;
}

.bottom-cta-card--v2 h2 em {
  font-style: italic;
  color: var(--coral);
}

.bottom-cta-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 36px;
}

/* ─── Mobile responsive v2 overrides ─── */
@media (max-width: 880px) {
  .hero--v2 {
    padding: 50px 20px 40px !important;
  }

  .floating-card { display: none; }
  .orb { opacity: 0.35; }

  .fact-bubble {
    display: none; /* keep mobile hero clean — just the phone + headline */
  }

  .hero-phone-stage {
    max-width: 280px;
    margin-top: 20px;
  }

  .strip {
    grid-template-columns: 1fr !important;
    gap: 30px;
    padding: 50px 0;
  }

  .strip--reverse .strip-text { order: 0; }

  .strip-art { order: -1; }

  .strip-phone { max-width: 260px; }

  .carousel-section { padding: 50px 0; }
  .postcard-tile { width: 160px; }
  .postcard-tile--wide { width: 220px; }

  .bottom-cta-card--v2 { padding: 50px 24px; }
}

/* ─── Two-phone composition for the postcard strip ─── */
/* Shows the postcard FRONT and BACK side by side — the front phone
   is dominant, the back is rotated slightly behind it. Reads as
   "postcards have two sides" without needing copy to explain. */
.strip-art--duo {
  position: relative;
  display: block;
  min-height: 460px;
  overflow: hidden;
}

.strip-art--duo .strip-phone {
  position: absolute;
  width: 76%;
  max-width: none;
  transition: transform 0.35s ease;
}

.strip-art--duo .strip-phone--front {
  z-index: 2;
  left: 0;
  top: 8%;
  transform: rotate(-5deg);
}

.strip-art--duo .strip-phone--back {
  z-index: 1;
  right: 0;
  top: 0;
  transform: rotate(7deg);
}

.strip-art--duo:hover .strip-phone--front {
  transform: rotate(-7deg) translateY(-6px);
}

.strip-art--duo:hover .strip-phone--back {
  transform: rotate(9deg) translateY(-6px);
}

@media (max-width: 880px) {
  .strip-art--duo {
    min-height: 380px;
    display: flex;
    justify-content: center;
  }
  .strip-art--duo .strip-phone {
    width: 60%;
  }
  .strip-art--duo .strip-phone--back {
    /* Hide the back on mobile so the front isn't visually crowded */
    display: none;
  }
  .strip-art--duo .strip-phone--front {
    position: relative;
    top: 0;
    transform: rotate(-3deg);
  }
}

/* ─── WHY BRAINTRIP SECTION ─── */
.why-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 28px 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  padding: 32px 24px 28px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  text-align: center;
}

.why-emoji {
  font-size: 36px;
  display: block;
  margin-bottom: 14px;
  line-height: 1;
}

.why-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.3px;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.25;
}

.why-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 680px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 360px;
    margin: 0 auto;
  }
}

/* Stamps strip — image is a cropped section of the home screen, not
   a full phone. Smaller corner radius + slightly different shadow so
   it reads as a "zoomed in" view rather than a misshapen phone. */
.strip-phone--stamps {
  max-width: 320px;
  border-radius: 22px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(0, 0, 0, 0.08);
}

/* Small inset "system note" used in feature strips for deeper detail
   without bloating the main body. Subtle warm-white card, italic serif
   body, small eyebrow. Designed to read as a "by the way" — present but
   not competing with the section headline. */
.strip-note {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-left: 3px solid var(--coral);
  border-radius: 0 14px 14px 0;
  padding: 14px 18px;
  margin-bottom: 22px;
  max-width: 480px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.strip-note-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--coral);
  margin-bottom: 6px;
}

.strip-note p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  margin: 0;
}

.strip-note p strong {
  font-style: normal;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text);
  display: block;
  margin-bottom: 4px;
}

.strip-note p em {
  color: var(--coral);
  font-style: italic;
}
