/* ═══════════════════════════════════════════════════════
   HOME PAGE — Emotional Sequence, Not Marketing Funnel
   ═══════════════════════════════════════════════════════ */

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 0 88px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  isolation: isolate;
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 42%, rgba(212, 168, 83, 0.12) 0%, transparent 34%),
    radial-gradient(circle at 18% 24%, rgba(245, 230, 200, 0.08) 0%, transparent 30%),
    linear-gradient(180deg, rgba(10, 18, 32, 0.6) 0%, rgba(10, 18, 32, 0.14) 24%, rgba(10, 18, 32, 0.22) 58%, rgba(10, 18, 32, 0.76) 100%);
  pointer-events: none;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at center, transparent 48%, rgba(3, 4, 12, 0.3) 78%, rgba(2, 3, 10, 0.62) 100%),
    linear-gradient(90deg, rgba(4, 5, 14, 0.38) 0%, transparent 20%, transparent 80%, rgba(4, 5, 14, 0.38) 100%);
  pointer-events: none;
}

.hero__bg-gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 46%, rgba(212, 168, 83, 0.16) 0%, rgba(212, 168, 83, 0.06) 18%, transparent 42%),
    radial-gradient(circle at 32% 28%, rgba(245, 230, 200, 0.08) 0%, transparent 28%),
    linear-gradient(180deg, #08111d 0%, #0d1c30 38%, #22162d 74%, #140f1f 100%);
  animation: heroBreathing 18s ease-in-out infinite;
}

@keyframes heroBreathing {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  transform: scale(1.035);
  filter: saturate(0.82) brightness(0.82) contrast(1.04);
  mix-blend-mode: screen;
}

.hero__bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.16;
  filter: saturate(0.78) brightness(0.7) contrast(1.08);
  mix-blend-mode: screen;
}

.hero__glow {
  position: absolute;
  z-index: 3;
  width: 720px;
  height: 720px;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(212, 168, 83, 0.15) 0%, rgba(245, 230, 200, 0.06) 34%, transparent 72%);
  animation: glowPulse 12s ease-in-out infinite;
  pointer-events: none;
  filter: blur(10px);
}

@keyframes glowPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px;
  padding: 0 24px;
}

.hero__overline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.72) !important;
  margin-bottom: 24px;
  text-shadow: 0 0 18px rgba(212, 168, 83, 0.08);
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.25, 0.1, 0.25, 1) 0.3s forwards;
}

.hero__overline-text {
  white-space: nowrap;
}

.hero__overline-divider {
  font-size: 10px;
  letter-spacing: 0;
  color: rgba(232, 200, 122, 0.82);
  transform: translateY(-1px);
}

.hero__overline-line {
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 83, 0.72), transparent);
  opacity: 0.75;
}

.hero__title {
  font-family: var(--font-headline) !important;
  font-size: clamp(44px, 5.6vw, 72px) !important;
  font-weight: 300 !important;
  letter-spacing: 0.02em;
  line-height: 1.08 !important;
  color: #F6F0EA !important;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.25, 0.1, 0.25, 1) 0.6s forwards;
}

.hero__subtitle {
  font-family: var(--font-headline);
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 300;
  font-style: italic;
  color: rgba(245, 240, 232, 0.88) !important;
  line-height: 1.52;
  margin-bottom: 32px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.25, 0.1, 0.25, 1) 0.9s forwards;
}

.hero__actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.25, 0.1, 0.25, 1) 1.2s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.25, 0.1, 0.25, 1) 2s forwards;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--heart-glow), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Brand Intro ── */
.brand-intro {
  padding-top: clamp(90px, 8vw, 118px);
  padding-bottom: clamp(84px, 8vw, 110px);
}

.brand-intro .container {
  max-width: 1200px;
}

.brand-intro__intro {
  max-width: 860px;
  margin: 0 auto 54px;
}

.brand-intro__eyebrow,
.wisdom-preview__eyebrow,
.origin__eyebrow {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--heart-glow) !important;
}

.brand-intro__title,
.wisdom-preview__title,
.origin__title {
  font-size: clamp(38px, 4.6vw, 60px);
  line-height: 1.08;
  margin-bottom: 22px;
  color: var(--warm-ivory) !important;
}

.brand-intro__summary,
.wisdom-preview__summary,
.origin__text {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.82;
  color: rgba(246, 240, 234, 0.72) !important;
}

.brand-intro__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.brand-pill {
  padding: 36px 32px 34px;
  border-radius: 26px;
  border: 1px solid rgba(245, 230, 200, 0.08);
  background: linear-gradient(180deg, rgba(18, 32, 51, 0.92) 0%, rgba(10, 18, 32, 0.98) 100%);
  box-shadow: 0 24px 58px rgba(10, 18, 32, 0.28);
}

.brand-pill__kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--heart-hover);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-pill__title {
  font-size: clamp(26px, 2.2vw, 34px);
  line-height: 1.14;
  margin-bottom: 16px;
  color: var(--warm-ivory) !important;
}

.brand-pill__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.72;
  color: rgba(246, 240, 234, 0.72) !important;
}

.brand-intro__closing {
  margin: 34px auto 0;
  text-align: center;
  font-size: 17px;
  line-height: 1.7;
}

/* ── Feeling Gateway (Mirror) ── */
.gateway {
  text-align: center;
  padding-top: clamp(104px, 10vw, 136px);
  padding-bottom: clamp(88px, 8vw, 118px);
}

.gateway .container {
  max-width: 1220px;
}

.gateway__question {
  font-family: var(--font-headline);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.12;
  color: var(--warm-ivory);
  max-width: 980px;
  margin: 0 auto 28px;
}

.gateway__subtitle {
  color: rgba(245, 240, 232, 0.72);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.78;
  max-width: 760px;
  margin: 0 auto 56px;
}

.gateway__feelings {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto 68px;
}

.gateway__feeling {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 0.92 / 1;
  transition: all var(--duration-normal) var(--ease-gentle);
  border: 1px solid rgba(245, 230, 200, 0.12);
  background: rgba(10, 18, 32, 0.62);
  min-height: 240px;
}
.gateway__feeling:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 168, 83, 0.5);
  box-shadow: var(--shadow-glow);
}

.gateway__feeling-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.52) saturate(0.72);
  transition: filter var(--duration-normal) var(--ease-gentle);
}
.gateway__feeling:hover .gateway__feeling-img {
  filter: brightness(0.64) saturate(0.88);
}

.gateway__feeling-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  text-align: left;
  padding: 22px 20px;
  z-index: 1;
  background: linear-gradient(to top, rgba(9, 10, 25, 0.78) 0%, rgba(9, 10, 25, 0.28) 55%, rgba(9, 10, 25, 0.1) 100%);
}

.gateway__feeling-emoji {
  font-size: 28px;
  margin-bottom: 8px;
  opacity: 0.8;
}

.gateway__feeling-name {
  font-family: var(--font-headline);
  font-size: 24px;
  font-weight: 600;
  color: var(--warm-ivory);
  line-height: 1.1;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.gateway__feeling-desc {
  display: block;
  margin-top: 9px;
  max-width: 220px;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(246, 240, 234, 0.76);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* Mirror response */
.gateway__mirror {
  max-width: 760px;
  margin: 0 auto;
  padding: 44px 38px;
  background: linear-gradient(180deg, rgba(18, 32, 51, 0.96) 0%, rgba(10, 18, 32, 0.94) 100%);
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: 22px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(12px);
  transition: all var(--duration-slow) var(--ease-gentle);
  display: none;
}
.gateway__mirror.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.gateway__mirror-text {
  font-family: var(--font-headline);
  font-size: clamp(28px, 3vw, 38px);
  font-style: italic;
  color: var(--warm-ivory);
  line-height: 1.3;
  margin-bottom: 18px;
}

.gateway__mirror-cta {
  margin-top: 20px;
}

/* ── Session Flow Strip ── */
.session-flow {
  overflow: hidden;
  position: relative;
  padding-top: clamp(86px, 8vw, 112px);
  padding-bottom: clamp(88px, 8vw, 114px);
}

.session-flow::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(212, 168, 83, 0.14), transparent 30%),
    radial-gradient(circle at 85% 70%, rgba(245, 230, 200, 0.08), transparent 28%);
  pointer-events: none;
}

.session-flow__intro {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.session-flow__eyebrow {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--heart-glow) !important;
  margin-bottom: 18px;
}

.session-flow__headline {
  font-size: clamp(38px, 4.4vw, 62px);
  line-height: 1.04;
  margin-bottom: 20px;
  color: var(--warm-ivory) !important;
}

.session-flow__summary {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(246, 240, 234, 0.72) !important;
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.72;
}

.session-flow__legend {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.session-flow__legend span {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 10, 24, 0.32);
  color: rgba(246, 240, 234, 0.64) !important;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.session-flow__strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 420px);
  gap: 28px;
  overflow-x: auto;
  padding: 6px 8px 18px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 168, 83, 0.55) rgba(255, 255, 255, 0.06);
}

.session-flow__strip::-webkit-scrollbar {
  height: 8px;
}

.session-flow__strip::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

.session-flow__strip::-webkit-scrollbar-thumb {
  background: rgba(212, 168, 83, 0.55);
  border-radius: 999px;
}

.session-frame {
  scroll-snap-align: start;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(245, 230, 200, 0.08);
  background: linear-gradient(180deg, rgba(18, 32, 51, 0.95) 0%, rgba(10, 18, 32, 0.98) 100%);
  box-shadow: 0 28px 72px rgba(10, 18, 32, 0.34);
}

.session-frame__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.session-frame__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 10, 24, 0.92) 0%, rgba(8, 10, 24, 0.18) 55%, rgba(8, 10, 24, 0.04) 100%);
}

.session-frame__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.68) saturate(0.78);
  transform: scale(1.02);
}

.session-frame__number {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 54px;
  border-radius: 999px;
  background: rgba(10, 18, 32, 0.62);
  border: 1px solid rgba(212, 168, 83, 0.28);
  color: var(--warm-ivory) !important;
  font-size: 15px;
  letter-spacing: 0.18em;
}

.session-frame__body {
  padding: 28px 26px 30px;
}

.session-frame__eyebrow {
  margin-bottom: 14px;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--heart-hover) !important;
}

.session-frame__title {
  font-size: clamp(28px, 2.3vw, 34px);
  line-height: 1.16;
  margin-bottom: 16px;
  color: var(--warm-ivory) !important;
}

.session-frame__cue {
  margin: 0;
  color: rgba(246, 240, 234, 0.68) !important;
  font-size: 16px;
  line-height: 1.7;
}

.session-flow__footer {
  position: relative;
  z-index: 1;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  text-align: center;
  padding-top: 22px;
  padding-bottom: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.session-flow__footer-text {
  margin: 0;
  max-width: 760px;
  color: rgba(246, 240, 234, 0.68) !important;
  font-size: 18px;
  line-height: 1.9;
}

/* ── Wisdom Preview ── */
.wisdom-preview {
  padding-top: clamp(68px, 6.5vw, 92px);
  padding-bottom: clamp(88px, 8vw, 116px);
}

.wisdom-preview .container {
  max-width: 1200px;
}

.wisdom-preview__intro {
  max-width: 860px;
  margin: 0 auto 52px;
}

.wisdom-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.wisdom-card {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 34px 30px 30px;
  border-radius: 24px;
  text-decoration: none;
  border: 1px solid rgba(245, 230, 200, 0.1);
  background:
    radial-gradient(circle at top left, rgba(212, 168, 83, 0.09), transparent 34%),
    linear-gradient(180deg, rgba(18, 32, 51, 0.96) 0%, rgba(10, 18, 32, 1) 100%);
  box-shadow: 0 24px 60px rgba(10, 18, 32, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: transform var(--duration-normal) var(--ease-gentle), border-color var(--duration-normal) var(--ease-gentle), box-shadow var(--duration-normal) var(--ease-gentle), background var(--duration-normal) var(--ease-gentle);
  isolation: isolate;
}

.wisdom-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(245, 230, 200, 0.06), transparent 30%);
  pointer-events: none;
}

.wisdom-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 83, 0.34), transparent);
  pointer-events: none;
}

.wisdom-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 168, 83, 0.22);
  box-shadow: 0 28px 70px rgba(10, 18, 32, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.wisdom-card__kicker {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232, 200, 122, 0.78) !important;
  text-shadow: 0 0 16px rgba(212, 168, 83, 0.08);
}

.wisdom-card__title {
  color: var(--warm-ivory) !important;
  font-size: clamp(24px, 1.9vw, 30px);
  line-height: 1.16;
  letter-spacing: 0.005em;
  margin-bottom: 18px;
  max-width: 12ch;
  text-wrap: balance;
}

.wisdom-card__text {
  color: rgba(246, 240, 234, 0.76) !important;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 32ch;
}

.wisdom-card__meta {
  display: inline-flex;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.58) !important;
}

.wisdom-preview__footer {
  margin-top: 38px;
  text-align: center;
}

/* ── Human Origin ── */
.origin {
  padding-top: clamp(92px, 8vw, 120px);
  padding-bottom: clamp(92px, 8vw, 120px);
}

.origin .container {
  max-width: 1100px;
}

.origin__card {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  padding: 54px 48px 50px;
  border-radius: 34px;
  border: 1px solid rgba(245, 230, 200, 0.1);
  background:
    radial-gradient(circle at top, rgba(212, 168, 83, 0.1), transparent 42%),
    linear-gradient(180deg, rgba(20, 31, 48, 0.92) 0%, rgba(10, 18, 32, 0.98) 100%);
  box-shadow: 0 30px 80px rgba(10, 18, 32, 0.3);
}

.origin__text {
  max-width: 760px;
  margin: 0 auto;
}

.origin__actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero__overline {
    gap: 8px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .hero__overline-line {
    width: 32px;
    flex: 0 0 32px;
  }

  .hero__overline-divider {
    font-size: 8px;
  }

  .brand-intro__grid,
  .wisdom-preview__grid {
    grid-template-columns: 1fr;
  }

  .gateway__feelings {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
    gap: 16px;
    margin-bottom: 44px;
  }

  .session-flow__footer {
    justify-content: center;
    text-align: center;
  }

  .origin__card {
    padding: 42px 28px 38px;
    border-radius: 26px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: auto;
    padding: 132px 0 84px;
  }

  .hero__overline {
    flex-wrap: nowrap;
    gap: 6px;
    max-width: calc(100vw - 40px);
    font-size: 8.5px;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
  }

  .hero__overline-line {
    width: 20px;
    flex: 0 0 20px;
  }

  .hero__overline-divider {
    font-size: 7px;
    transform: none;
  }

  .hero__title {
    font-size: clamp(36px, 11vw, 44px) !important;
  }

  .hero__subtitle {
    font-size: 18px;
    margin-bottom: 48px;
  }

  .gateway__question {
    font-size: clamp(30px, 9vw, 42px);
  }

  .gateway__subtitle {
    margin-bottom: 40px;
    font-size: 18px;
  }

  .gateway__feelings {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 40px;
  }

  .gateway__feeling {
    min-height: 214px;
  }

  .gateway__feeling-name {
    font-size: 17px;
    line-height: 1.08;
    max-width: 132px;
    text-wrap: balance;
  }

  .gateway__feeling-text {
    padding: 16px 14px;
  }

  .gateway__feeling-desc {
    max-width: none;
    font-size: 11px;
    line-height: 1.35;
    margin-top: 8px;
  }

  .gateway__mirror {
    padding: 32px 22px;
  }

  .brand-pill,
  .wisdom-card {
    padding: 28px 22px 24px;
    border-radius: 20px;
  }

  .session-flow__strip {
    grid-auto-columns: minmax(278px, 86vw);
    gap: 18px;
  }

  .session-frame {
    border-radius: 20px;
  }

  .session-frame__body {
    padding: 22px 20px 24px;
  }

  .session-frame__title {
    font-size: 26px;
  }

  .story-card {
    padding: 30px 24px 26px;
  }

  .story-card__text {
    font-size: 18px;
    line-height: 1.58;
  }

  .story-card__author {
    font-size: 13px;
  }
}

/* ── Stories ── */
.stories {
  background-position: center;
  background-size: cover;
  padding-top: clamp(104px, 10vw, 138px);
  padding-bottom: clamp(86px, 8vw, 116px);
}

.stories .container {
  max-width: 1200px;
}

.stories__title {
  color: var(--warm-ivory) !important;
  font-size: clamp(42px, 4.8vw, 64px);
  line-height: 1.08;
  margin-bottom: 24px;
}

.stories__subtitle {
  color: rgba(246, 240, 234, 0.72) !important;
  max-width: 820px;
  font-size: clamp(19px, 1.45vw, 23px);
  line-height: 1.92;
}

.stories__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 56px;
}

.story-card {
  padding: 40px 38px 34px;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(18, 32, 51, 0.92) 0%, rgba(10, 18, 32, 0.96) 100%);
  border: 1px solid rgba(245, 230, 200, 0.1);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(10, 18, 32, 0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.story-card__text {
  font-family: var(--font-headline);
  font-size: 20px;
  font-style: italic;
  color: rgba(246, 240, 234, 0.85);
  line-height: 1.62;
  margin-bottom: 24px;
}

.story-card__author {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(232, 200, 122, 0.74);
}

/* ── Honesty Section ── */
.honesty {
  text-align: center;
  padding-top: clamp(104px, 10vw, 140px);
  padding-bottom: clamp(86px, 8vw, 118px);
}

.honesty .container {
  max-width: 1220px;
}

.honesty h2,
.honesty h3 {
  color: var(--warm-ivory) !important;
}

.honesty .text-muted {
  color: rgba(246, 240, 234, 0.68) !important;
}

.honesty h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 4.8vw, 62px);
  line-height: 1.12;
}

.honesty__intro {
  max-width: 860px;
  line-height: 1.82;
  font-size: clamp(19px, 1.45vw, 23px);
  margin-top: 24px;
}

.honesty__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  max-width: 1080px;
  margin: 58px auto 0;
  text-align: left;
}

.honesty__col {
  position: relative;
  padding: 42px 38px 38px;
  border-radius: 28px;
  border: 1px solid rgba(245, 230, 200, 0.1);
  background: linear-gradient(180deg, rgba(20, 31, 48, 0.96) 0%, rgba(10, 18, 32, 0.98) 100%);
  box-shadow: 0 26px 64px rgba(10, 18, 32, 0.32);
  overflow: hidden;
}

.honesty__col::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 168, 83, 0.42), rgba(212, 168, 83, 0.06));
}

.honesty__col--yes {
  background: linear-gradient(180deg, rgba(21, 33, 50, 0.96) 0%, rgba(10, 18, 32, 0.98) 100%);
}

.honesty__col--no {
  background: linear-gradient(180deg, rgba(14, 24, 38, 0.96) 0%, rgba(8, 16, 29, 0.98) 100%);
}

.honesty__col h3 {
  font-size: 26px;
  margin-bottom: 30px;
  line-height: 1.2;
}
.honesty__col--yes h3 { color: var(--heart-glow); }
.honesty__col--no h3 { color: var(--healing-mist); }
.honesty__col--yes h3 { color: var(--heart-glow) !important; }
.honesty__col--no h3 { color: var(--healing-mist) !important; }

.honesty__list {
  list-style: none;
  padding: 0;
}
.honesty__list li {
  padding: 12px 0;
  color: rgba(246, 240, 234, 0.84);
  font-size: 17px;
  line-height: 1.7;
  padding-left: 28px;
  position: relative;
}
.honesty__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.honesty__col--yes .honesty__list li::before { background: var(--heart-glow); }
.honesty__col--no .honesty__list li::before { background: var(--healing-mist); }

@media (max-width: 600px) {
  .honesty__cols { grid-template-columns: 1fr; }
  .offer-card {
    padding: 42px 24px 38px;
    border-radius: 24px;
  }
}

/* ── Final CTA ── */
#email-capture .container {
  max-width: 1120px;
}

#email-capture {
  padding-top: clamp(106px, 10vw, 144px);
  padding-bottom: clamp(92px, 8vw, 124px);
}

.offer-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 60px 52px 54px;
  border-radius: 34px;
  border: 1px solid rgba(245, 230, 200, 0.12);
  background:
    radial-gradient(circle at top, rgba(212, 168, 83, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(18, 32, 51, 0.92) 0%, rgba(10, 18, 32, 0.98) 100%);
  box-shadow: 0 30px 80px rgba(10, 18, 32, 0.28);
}

.offer-card__eyebrow {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--heart-glow);
}

.offer-card__title {
  margin-bottom: 22px;
  color: var(--warm-ivory) !important;
}

.offer-card__summary {
  max-width: 680px;
  margin: 0 auto 28px;
  font-size: clamp(19px, 1.45vw, 23px);
  line-height: 1.82;
  color: rgba(245, 240, 232, 0.76) !important;
}

.offer-card__price {
  font-family: var(--font-headline);
  font-size: clamp(34px, 4.2vw, 60px);
  line-height: 1.12;
  margin-bottom: 40px;
  color: var(--warm-ivory);
}

.offer-card__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.offer-card__note {
  font-size: 13px;
  margin-top: 22px;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.6);
}

.final-breath {
  text-align: center;
  padding: clamp(112px, 10vw, 152px) 0 clamp(120px, 11vw, 164px);
}

.final-breath__text {
  font-family: var(--font-headline);
  font-size: clamp(34px, 4vw, 58px);
  font-style: italic;
  color: var(--warm-ivory);
  line-height: 1.26;
  max-width: 980px;
  margin: 0 auto 60px;
}

#email-capture .btn--ghost,
#email-capture a.btn--ghost,
.final-breath .btn--ghost,
.final-breath a.btn--ghost {
  color: var(--warm-ivory) !important;
}

/* ── Homepage Color Guard ── */
body.infeeling-home .brand-intro,
body.infeeling-home .gateway,
body.infeeling-home .session-flow,
body.infeeling-home .wisdom-preview,
body.infeeling-home .origin,
body.infeeling-home .stories,
body.infeeling-home .honesty,
body.infeeling-home #email-capture,
body.infeeling-home .final-breath {
  color: var(--warm-ivory) !important;
}

body.infeeling-home .brand-intro__title,
body.infeeling-home .gateway__question,
body.infeeling-home .session-flow__headline,
body.infeeling-home .wisdom-preview__title,
body.infeeling-home .origin__title,
body.infeeling-home .stories__title,
body.infeeling-home .honesty h2,
body.infeeling-home .honesty h3,
body.infeeling-home .offer-card__title,
body.infeeling-home .final-breath__text,
body.infeeling-home .brand-pill__title,
body.infeeling-home .session-frame__title,
body.infeeling-home .gateway__feeling-name,
body.infeeling-home .story-card__text {
  color: var(--warm-ivory) !important;
  -webkit-text-fill-color: var(--warm-ivory) !important;
}

body.infeeling-home .brand-intro__summary,
body.infeeling-home .brand-pill__text,
body.infeeling-home .brand-intro__closing,
body.infeeling-home .gateway__subtitle,
body.infeeling-home .gateway__feeling-desc,
body.infeeling-home .session-flow__summary,
body.infeeling-home .session-frame__cue,
body.infeeling-home .session-flow__footer-text,
body.infeeling-home .wisdom-preview__summary,
body.infeeling-home .wisdom-card__text,
body.infeeling-home .origin__text,
body.infeeling-home .stories__subtitle,
body.infeeling-home .story-card__author,
body.infeeling-home .honesty__intro,
body.infeeling-home .honesty__list li,
body.infeeling-home .offer-card__summary,
body.infeeling-home .offer-card__note {
  color: rgba(245, 240, 232, 0.78) !important;
  -webkit-text-fill-color: rgba(245, 240, 232, 0.78) !important;
}

body.infeeling-home .brand-intro__eyebrow,
body.infeeling-home .wisdom-preview__eyebrow,
body.infeeling-home .origin__eyebrow,
body.infeeling-home .session-flow__eyebrow,
body.infeeling-home .offer-card__eyebrow,
body.infeeling-home .wisdom-card__kicker,
body.infeeling-home .session-frame__eyebrow {
  color: var(--heart-glow) !important;
  -webkit-text-fill-color: var(--heart-glow) !important;
}

body.infeeling-home .offer-card__price {
  color: var(--warm-ivory) !important;
  -webkit-text-fill-color: var(--warm-ivory) !important;
}

body.infeeling-home .btn--primary,
body.infeeling-home a.btn--primary,
body.infeeling-home button.btn--primary {
  background: var(--heart-glow) !important;
  background-image: none !important;
  color: var(--midnight) !important;
  -webkit-text-fill-color: var(--midnight) !important;
  border: 1px solid rgba(212, 168, 83, 0.24) !important;
  box-shadow: 0 16px 40px rgba(212, 168, 83, 0.28) !important;
  opacity: 1 !important;
  filter: none !important;
}

body.infeeling-home .btn--primary:hover,
body.infeeling-home a.btn--primary:hover,
body.infeeling-home button.btn--primary:hover {
  background: var(--heart-hover) !important;
  background-image: none !important;
  color: var(--midnight) !important;
  -webkit-text-fill-color: var(--midnight) !important;
}

body.infeeling-home .btn--ghost,
body.infeeling-home a.btn--ghost,
body.infeeling-home button.btn--ghost {
  color: var(--warm-ivory) !important;
  -webkit-text-fill-color: var(--warm-ivory) !important;
  opacity: 1 !important;
}

/* ── Homepage Cozy Spacing ── */
body.infeeling-home .hero {
  padding: 96px 0 62px;
}

body.infeeling-home .brand-intro {
  padding-top: clamp(62px, 5.6vw, 82px);
  padding-bottom: clamp(58px, 5.6vw, 78px);
}

body.infeeling-home .gateway {
  padding-top: clamp(72px, 7vw, 96px);
  padding-bottom: clamp(62px, 5.8vw, 82px);
}

body.infeeling-home .session-flow {
  padding-top: clamp(60px, 5.8vw, 78px);
  padding-bottom: clamp(62px, 5.8vw, 80px);
}

body.infeeling-home .wisdom-preview {
  padding-top: clamp(50px, 4.8vw, 66px);
  padding-bottom: clamp(62px, 5.8vw, 80px);
}

body.infeeling-home .origin {
  padding-top: clamp(64px, 6vw, 82px);
  padding-bottom: clamp(64px, 6vw, 82px);
}

body.infeeling-home .stories {
  padding-top: clamp(72px, 7vw, 96px);
  padding-bottom: clamp(60px, 5.8vw, 82px);
}

body.infeeling-home .honesty {
  padding-top: clamp(72px, 7vw, 98px);
  padding-bottom: clamp(60px, 5.8vw, 82px);
}

body.infeeling-home #email-capture {
  padding-top: clamp(72px, 7vw, 96px);
  padding-bottom: clamp(64px, 6vw, 84px);
}

body.infeeling-home .final-breath {
  padding: clamp(76px, 7vw, 100px) 0 clamp(86px, 8vw, 112px);
}

body.infeeling-home .brand-intro__intro,
body.infeeling-home .wisdom-preview__intro {
  margin-bottom: 38px;
}

body.infeeling-home .brand-intro__grid,
body.infeeling-home .wisdom-preview__grid,
body.infeeling-home .stories__grid {
  gap: 20px;
}

body.infeeling-home .gateway__question {
  margin-bottom: 18px;
}

body.infeeling-home .gateway__subtitle {
  margin-bottom: 38px;
}

body.infeeling-home .gateway__feelings {
  margin-bottom: 48px;
  gap: 18px;
}

body.infeeling-home .gateway__mirror {
  padding: 34px 30px;
}

body.infeeling-home .session-flow__intro {
  margin-bottom: 26px;
}

body.infeeling-home .session-flow__legend {
  margin-bottom: 22px;
}

body.infeeling-home .session-flow__strip {
  gap: 20px;
}

body.infeeling-home .session-flow__footer {
  margin-top: 34px;
  gap: 16px;
  padding-top: 16px;
}

body.infeeling-home .wisdom-preview__footer {
  margin-top: 28px;
}

body.infeeling-home .origin__card {
  padding: 42px 38px 40px;
}

body.infeeling-home .origin__actions {
  margin-top: 22px;
}

body.infeeling-home .stories__grid {
  margin-top: 40px;
}

body.infeeling-home .honesty__intro {
  margin-top: 16px;
}

body.infeeling-home .honesty__cols {
  gap: 24px;
  margin-top: 40px;
}

body.infeeling-home .honesty__col {
  padding: 34px 30px 30px;
}

body.infeeling-home .offer-card {
  padding: 46px 40px 42px;
}

body.infeeling-home .offer-card__price {
  margin-bottom: 28px;
}

body.infeeling-home .offer-card__note {
  margin-top: 16px;
}

body.infeeling-home .final-breath__text {
  margin-bottom: 42px;
}

@media (max-width: 768px) {
  body.infeeling-home .hero {
    padding: 108px 0 56px;
    min-height: auto;
  }

  body.infeeling-home .brand-intro,
  body.infeeling-home .gateway,
  body.infeeling-home .session-flow,
  body.infeeling-home .wisdom-preview,
  body.infeeling-home .origin,
  body.infeeling-home .stories,
  body.infeeling-home .honesty,
  body.infeeling-home #email-capture {
    padding-top: 56px;
    padding-bottom: 54px;
  }

  body.infeeling-home .final-breath {
    padding: 62px 0 76px;
  }

  body.infeeling-home .brand-intro__intro,
  body.infeeling-home .wisdom-preview__intro,
  body.infeeling-home .session-flow__intro {
    margin-bottom: 28px;
  }

  body.infeeling-home .gateway__subtitle,
  body.infeeling-home .gateway__feelings,
  body.infeeling-home .stories__grid,
  body.infeeling-home .honesty__cols {
    margin-bottom: 0;
  }

  body.infeeling-home .gateway__subtitle {
    margin-bottom: 28px;
  }

  body.infeeling-home .gateway__feelings {
    gap: 14px;
    margin-bottom: 34px;
  }

  body.infeeling-home .session-flow__legend {
    margin-bottom: 18px;
    gap: 10px;
  }

  body.infeeling-home .session-flow__strip {
    gap: 16px;
  }

  body.infeeling-home .session-flow__footer {
    margin-top: 26px;
  }

  body.infeeling-home .origin__card,
  body.infeeling-home .offer-card,
  body.infeeling-home .honesty__col,
  body.infeeling-home .story-card {
    padding: 30px 24px 28px;
  }

  body.infeeling-home .stories__grid {
    gap: 18px;
    margin-top: 30px;
  }

  body.infeeling-home .honesty__cols {
    gap: 18px;
    margin-top: 30px;
  }

  body.infeeling-home .final-breath__text {
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  body.infeeling-home .hero {
    padding: 110px 0 52px;
  }

  body.infeeling-home .brand-intro,
  body.infeeling-home .gateway,
  body.infeeling-home .session-flow,
  body.infeeling-home .wisdom-preview,
  body.infeeling-home .origin,
  body.infeeling-home .stories,
  body.infeeling-home .honesty,
  body.infeeling-home #email-capture {
    padding-top: 48px;
    padding-bottom: 46px;
  }

  body.infeeling-home .brand-intro__grid,
  body.infeeling-home .wisdom-preview__grid,
  body.infeeling-home .stories__grid {
    gap: 16px;
  }

  body.infeeling-home .gateway__feelings {
    gap: 12px;
    margin-bottom: 28px;
  }

  body.infeeling-home .gateway__mirror {
    padding: 26px 18px;
  }

  body.infeeling-home .origin__card,
  body.infeeling-home .offer-card,
  body.infeeling-home .honesty__col,
  body.infeeling-home .story-card,
  body.infeeling-home .brand-pill,
  body.infeeling-home .wisdom-card {
    padding: 26px 20px 24px;
  }
}

/* ── 2026 Homepage Rewrite ── */
.home-intro {
  padding-top: clamp(68px, 6.5vw, 92px);
  padding-bottom: clamp(72px, 6.5vw, 96px);
  background:
    radial-gradient(circle at 50% 30%, rgba(212, 168, 83, 0.09), transparent 34%),
    radial-gradient(circle at 18% 22%, rgba(212, 168, 83, 0.05), transparent 28%),
    linear-gradient(180deg, rgba(10, 18, 32, 1) 0%, rgba(11, 19, 31, 1) 100%);
}

.home-intro__copy {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(34px, 4vw, 48px);
  border-radius: 32px;
  border: 1px solid rgba(245, 230, 200, 0.08);
  background:
    radial-gradient(circle at top left, rgba(212, 168, 83, 0.06), transparent 36%),
    linear-gradient(180deg, rgba(18, 32, 51, 0.92) 0%, rgba(10, 18, 32, 0.96) 100%);
  box-shadow:
    0 24px 60px rgba(10, 18, 32, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  font-size: clamp(19px, 1.45vw, 22px);
  line-height: 1.92;
  color: rgba(245, 240, 232, 0.82);
}

.home-intro__copy p {
  margin-bottom: 1.28em;
}

.home-intro__copy strong {
  color: var(--warm-ivory);
  font-weight: 500;
}

.method-section {
  padding-top: clamp(88px, 8vw, 116px);
  padding-bottom: clamp(92px, 8.2vw, 124px);
  background:
    radial-gradient(circle at 50% 18%, rgba(212, 168, 83, 0.07), transparent 28%),
    linear-gradient(180deg, rgba(11, 19, 31, 1) 0%, rgba(13, 23, 38, 1) 50%, rgba(15, 27, 45, 1) 100%);
}

.method-section__intro {
  max-width: 860px;
  margin: 0 auto;
}

.method-section__title {
  font-size: clamp(42px, 4.2vw, 54px);
  line-height: 1.04;
  margin-bottom: 18px;
  color: var(--warm-ivory) !important;
}

.method-section__sub {
  font-family: var(--font-body);
  font-size: 18px;
  font-style: italic;
  color: var(--heart-glow) !important;
  margin-bottom: 36px;
}

.method-section__body {
  max-width: 680px;
  margin: 0 auto;
  font-size: clamp(18px, 1.35vw, 19px);
  line-height: 1.9;
  color: rgba(245, 240, 232, 0.8) !important;
}

.method-section__body p {
  margin-bottom: 1.2em;
}

.method-section__divider {
  display: block;
  width: 80px;
  height: 1px;
  margin: 40px auto 0;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 83, 0.95), transparent);
}

.method-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 44px;
}

.method-pillar {
  padding: 30px 28px 28px;
  border-radius: 28px;
  border: 1px solid rgba(245, 230, 200, 0.1);
  background:
    radial-gradient(circle at top left, rgba(212, 168, 83, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(19, 31, 48, 0.92), rgba(10, 18, 32, 0.98));
  box-shadow: 0 24px 58px rgba(3, 6, 16, 0.24);
  text-align: center;
}

.method-pillar__icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
  position: relative;
  color: var(--heart-glow);
}

.method-pillar__icon span,
.method-pillar__icon span::before,
.method-pillar__icon span::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.icon-body {
  inset: 6px 16px;
  border: 1.5px solid rgba(212, 168, 83, 0.92);
  border-radius: 18px 18px 14px 14px;
}

.icon-body::before {
  top: -10px;
  left: 50%;
  width: 14px;
  height: 14px;
  transform: translateX(-50%);
  border: 1.5px solid rgba(212, 168, 83, 0.92);
  border-radius: 50%;
}

.icon-wave {
  inset: 23px 8px 15px;
  border-top: 1.5px solid rgba(212, 168, 83, 0.92);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.icon-wave::before {
  inset: -8px 8px auto;
  height: 8px;
  border-top: 1.5px solid rgba(212, 168, 83, 0.72);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.icon-eye {
  inset: 18px 8px;
  border: 1.5px solid rgba(212, 168, 83, 0.92);
  border-radius: 100% 0;
  transform: rotate(45deg);
}

.icon-eye::before {
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%);
  border: 1.5px solid rgba(212, 168, 83, 0.92);
  border-radius: 50%;
}

.method-pillar__title {
  margin-bottom: 12px;
  font-size: clamp(28px, 2.1vw, 34px);
  color: var(--warm-ivory) !important;
}

.method-pillar__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.74) !important;
}

.library-preview {
  padding-top: clamp(90px, 8vw, 118px);
  padding-bottom: clamp(92px, 8vw, 118px);
  background:
    radial-gradient(circle at 50% 12%, rgba(212, 168, 83, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(11, 19, 31, 1) 0%, rgba(15, 27, 45, 1) 100%);
}

.library-preview__intro {
  margin-bottom: 42px;
}

.library-preview__title {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(38px, 4vw, 50px);
  line-height: 1.08;
  color: var(--warm-ivory) !important;
}

.library-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.library-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 28px;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(18, 32, 51, 0.94) 0%, rgba(10, 18, 32, 0.98) 100%);
  border: 1px solid rgba(245, 230, 200, 0.08);
  box-shadow: 0 22px 56px rgba(10, 18, 32, 0.22);
}

.library-card__image {
  aspect-ratio: 1 / 0.82;
  overflow: hidden;
}

.library-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) brightness(0.82);
  transition: transform var(--duration-normal) var(--ease-gentle), filter var(--duration-normal) var(--ease-gentle);
}

.library-card:hover .library-card__image img {
  transform: scale(1.02);
  filter: saturate(0.88) brightness(0.88);
}

.library-card__body {
  padding: 24px 24px 28px;
}

.library-card__title {
  font-size: clamp(26px, 2vw, 32px);
  line-height: 1.16;
  margin-bottom: 14px;
  color: var(--warm-ivory) !important;
}

.library-card__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.74;
  color: rgba(245, 240, 232, 0.74) !important;
}

.library-preview__footer {
  margin-top: 32px;
  text-align: center;
}

.library-preview__link {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--heart-glow) !important;
}

.home-bridges {
  padding-top: clamp(86px, 7.8vw, 112px);
  padding-bottom: clamp(90px, 8vw, 116px);
}

.home-bridges__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.bridge-card {
  padding: 40px 38px 38px;
  border-radius: 32px;
  border: 1px solid rgba(245, 230, 200, 0.1);
  background:
    radial-gradient(circle at top left, rgba(212, 168, 83, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(19, 31, 48, 0.92), rgba(10, 18, 32, 0.98));
  box-shadow: 0 24px 60px rgba(10, 18, 32, 0.24);
}

.bridge-card--gold {
  background:
    radial-gradient(circle at top left, rgba(212, 168, 83, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(28, 34, 49, 0.94), rgba(14, 18, 29, 0.98));
}

.bridge-card__eyebrow {
  margin-bottom: 16px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--heart-glow) !important;
}

.bridge-card__title {
  margin-bottom: 18px;
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 1.08;
  color: var(--warm-ivory) !important;
}

.bridge-card__text {
  margin-bottom: 26px;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.74) !important;
}

@media (max-width: 900px) {
  .method-pillars,
  .library-preview__grid,
  .home-bridges__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .home-intro,
  .method-section,
  .library-preview,
  .home-bridges {
    padding-top: 68px;
    padding-bottom: 70px;
  }

  .method-pillar,
  .bridge-card {
    padding: 30px 24px 28px;
  }

  .library-card__body {
    padding: 22px 22px 24px;
  }
}

@media (max-width: 480px) {
  .home-intro__copy,
  .method-section__body {
    font-size: 18px;
  }

  .method-section__title,
  .library-preview__title {
    font-size: clamp(34px, 9vw, 42px);
  }

  .bridge-card__title {
    font-size: clamp(30px, 8vw, 38px);
  }

  .mid-cta__lead {
    font-size: clamp(22px, 6vw, 28px);
  }

  .offer-card__trial {
    font-size: clamp(24px, 7vw, 32px);
  }
}

/* ── Hero Body Text (continuation of subtitle) ── */
.hero__body {
  font-family: var(--font-body);
  font-size: clamp(18px, 1.4vw, 20px);
  font-weight: 300;
  font-style: normal;
  color: rgba(245, 240, 232, 0.8) !important;
  line-height: 1.78;
  margin-bottom: 56px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.25, 0.1, 0.25, 1) 1.05s forwards;
}

.hero__body p {
  margin-bottom: 1em;
}

.hero__body p:last-child {
  margin-bottom: 0;
}

/* ── Mid-Page CTA ── */
.mid-cta {
  padding-top: clamp(72px, 6.5vw, 96px);
  padding-bottom: clamp(72px, 6.5vw, 96px);
  border-top: 1px solid rgba(245, 230, 200, 0.06);
  border-bottom: 1px solid rgba(245, 230, 200, 0.06);
}

.mid-cta__lead {
  max-width: 680px;
  margin: 0 auto 36px;
  font-family: var(--font-headline);
  font-size: clamp(26px, 2.8vw, 36px);
  font-style: italic;
  line-height: 1.32;
  color: var(--warm-ivory) !important;
}

.mid-cta__note {
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.58) !important;
}

/* ── Begin section: trial & upsell ── */
.offer-card__trial {
  font-family: var(--font-headline);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.16;
  margin-bottom: 12px;
  color: var(--warm-ivory) !important;
}

.offer-card__trial-sub {
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.72;
  margin-bottom: 36px;
  color: rgba(245, 240, 232, 0.72) !important;
}

.offer-card__upsell {
  margin-top: 28px;
  font-size: 15px;
  line-height: 1.72;
  color: rgba(245, 240, 232, 0.56) !important;
}

.offer-card__proof {
  margin-top: 8px;
  font-family: var(--font-headline);
  font-size: 17px;
  font-style: italic;
  line-height: 1.6;
  color: var(--heart-glow) !important;
}

/* ── Hide Astra-injected pagination on homepage ── */
body.infeeling-home .page-numbers,
body.infeeling-home nav.navigation,
body.infeeling-home .nav-links,
body.infeeling-home .posts-navigation {
  display: none !important;
}
