:root {
  --bg:        #F5F0EB;
  --bg2:       #EDE8E2;
  --bg3:       #E8E4DF;
  --mist:      #B8C5CC;
  --slate:     #6B8891;
  --slate-d:   #4A6570;
  --sand:      #C4B5A0;
  --sand-d:    #A89580;
  --text:      #2C2C2A;
  --text-mid:  #6B6560;
  --text-soft: #9B9590;
  --border:    rgba(107,136,145,0.15);
  --border2:   rgba(107,136,145,0.25);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

body {
  background:
    radial-gradient(circle at 66% 22%, rgba(184,197,204,0.34) 0, rgba(184,197,204,0.16) 18%, transparent 42%),
    radial-gradient(circle at 95% 88%, rgba(196,181,160,0.26) 0, rgba(196,181,160,0.12) 20%, transparent 44%),
    radial-gradient(circle at 8% 8%, rgba(255,255,255,0.72) 0, rgba(255,255,255,0.35) 24%, transparent 48%),
    linear-gradient(135deg, #F5F0EB 0%, #EEE9E3 50%, #F5F0EB 100%);
  background-attachment: fixed;
  background-size: cover;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.75;
}

/* ── PARTICLES CANVAS ── */
#particles-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

/* ── BLOBS ── */
.blob-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  animation: blobDrift 18s ease-in-out infinite;
}
.blob-1 { width:520px; height:520px; background:#B8C5CC; top:-100px; left:-120px; animation-delay:0s; }
.blob-2 { width:400px; height:400px; background:#C4B5A0; bottom:-80px; right:-80px; animation-delay:-7s; }
.blob-3 { width:300px; height:300px; background:#8FA3AB; top:40%; left:60%; animation-delay:-12s; }
@keyframes blobDrift {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-20px) scale(1.04); }
  66% { transform: translate(-20px,30px) scale(0.97); }
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 28px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 200;
  background: linear-gradient(to bottom, rgba(245,240,235,0.92) 60%, transparent);
  backdrop-filter: blur(8px);
}
.logo {
  display: inline-flex;
  align-items: center;
  width: 132px;
  color: var(--text);
  text-decoration: none;
}
.logo img {
  display: block;
  width: 100%;
  height: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.25s ease;
}
.nav-link:hover { color: var(--slate-d); }
.nav-cta {
  background: transparent;
  color: var(--slate-d);
  border: 1px solid var(--border2);
  padding: 10px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s ease;
  text-decoration: none;
}
.nav-cta:hover {
  background: var(--slate);
  color: white;
  border-color: var(--slate);
}


/* ── BURGER ── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 300;
  background: none;
  border: none;
  padding: 4px;
}
.burger span {
  display: block;
  height: 1px;
  background: var(--text);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transform-origin: center;
}
.burger span:nth-child(1) { width: 24px; }
.burger span:nth-child(2) { width: 16px; }
.burger span:nth-child(3) { width: 20px; }
.burger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
  width: 22px;
}
.burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.burger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
  width: 22px;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 250;
  pointer-events: none;
}
.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(44,44,42,0.25);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.mobile-menu-panel {
  position: absolute;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 100px 0 48px;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  border-left: 1px solid var(--border);
}
.mobile-menu.open {
  pointer-events: all;
}
.mobile-menu.open .mobile-menu-backdrop {
  opacity: 1;
}
.mobile-menu.open .mobile-menu-panel {
  transform: translateX(0);
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  width: 100%;
}
.mobile-nav-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--text-mid);
  text-decoration: none;
  padding: 18px 40px;
  border-bottom: 1px solid var(--border);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transform: translateX(20px);
  transition: color 0.25s ease, padding-left 0.25s ease, opacity 0.4s ease, transform 0.4s ease;
}
.mobile-nav-link::after {
  content: '→';
  font-size: 16px;
  color: var(--mist);
  font-family: 'DM Sans', sans-serif;
  transition: color 0.25s ease, transform 0.25s ease;
}
.mobile-nav-link:hover {
  color: var(--text);
  padding-left: 48px;
}
.mobile-nav-link:hover::after {
  color: var(--slate);
  transform: translateX(4px);
}
.mobile-menu.open .mobile-nav-link {
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu.open .mobile-nav-link:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.open .mobile-nav-link:nth-child(2) { transition-delay: 0.13s; }
.mobile-menu.open .mobile-nav-link:nth-child(3) { transition-delay: 0.18s; }
.mobile-menu.open .mobile-nav-link:nth-child(4) { transition-delay: 0.23s; }
.mobile-menu-cta {
  margin-top: auto;
  padding: 0 40px;
  width: 100%;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease 0.3s, transform 0.4s ease 0.3s;
}
.mobile-menu.open .mobile-menu-cta {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu-tag {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 48px;
  padding: 0 40px;
  opacity: 0;
  transition: opacity 0.4s ease 0.05s;
}
.mobile-menu.open .mobile-menu-tag {
  opacity: 1;
}

@media(max-width:768px){
  .burger { display: flex; }
  .nav-links { display: none; }
  .mobile-menu { display: block; }
  nav { padding: 20px 24px; }
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 24px 60px;
  position: relative;
}

/* Breathing sphere */
.sphere-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  pointer-events: none;
  z-index: 0;
}
.sphere {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  filter: blur(28px);
  background: radial-gradient(circle at 38% 35%,
    rgba(255,255,255,0.7) 0%,
    rgba(184,197,204,0.38) 40%,
    rgba(143,163,171,0.2) 70%,
    rgba(107,136,145,0.08) 100%
  );
  box-shadow:
    inset -10px -10px 36px rgba(107,136,145,0.12),
    inset 10px 10px 24px rgba(255,255,255,0.45),
    0 8px 50px rgba(107,136,145,0.1),
    0 0 0 1px rgba(184,197,204,0.15);
  animation: sphereBreathe 5.5s ease-in-out infinite;
}
.sphere-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(107,136,145,0.06);
  animation: ringExpand 5.5s ease-in-out infinite;
}
.sphere-ring-1 { inset: -16px; animation-delay: 0s; }
.sphere-ring-2 { inset: -32px; border-color: rgba(107,136,145,0.1); animation-delay: 0.3s; }
.sphere-ring-3 { inset: -48px; border-color: rgba(107,136,145,0.06); animation-delay: 0.6s; }

@keyframes sphereBreathe {
  0%,100% { transform: scale(1); box-shadow: inset -20px -20px 60px rgba(107,136,145,0.2), inset 20px 20px 40px rgba(255,255,255,0.6), 0 20px 80px rgba(107,136,145,0.18), 0 0 0 1px rgba(184,197,204,0.3); }
  50% { transform: scale(1.12); box-shadow: inset -20px -20px 60px rgba(107,136,145,0.25), inset 20px 20px 40px rgba(255,255,255,0.7), 0 30px 100px rgba(107,136,145,0.25), 0 0 0 1px rgba(184,197,204,0.4); }
}
@keyframes ringExpand {
  0%,100% { transform: scale(1); opacity:0.7; }
  50% { transform: scale(1.12); opacity:1; }
}

.breath-label {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-soft);
  white-space: nowrap;
  animation: breatheLabelCycle 5.5s ease-in-out infinite;
}
@keyframes breatheLabelCycle {
  0%,45% { opacity:1; content:'inhale'; }
  50%,95% { opacity:0.5; }
  100% { opacity:1; }
}

.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.3s forwards;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 6vw, 74px);
  line-height: 1.08;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
}
.hero-title em { font-style: italic; color: var(--slate-d); }
.hero-sub {
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto 52px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.7s forwards;
  line-height: 1.8;
}
.hero-ctas {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  opacity: 0; animation: fadeUp 0.9s ease 0.9s forwards;
}
.btn-primary {
  background: var(--slate);
  color: white;
  border: none;
  padding: 18px 52px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s ease;
  text-decoration: none;
  display: inline-block;
  border-radius: 2px;
}
.btn-primary:hover {
  background: var(--slate-d);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(107,136,145,0.28);
}
.note { font-size: 12px; color: var(--text-soft); letter-spacing: 0.04em; }

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

/* ── SHARED SECTION STYLES ── */
section { position: relative; z-index: 1; }

.section-tag {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-tag::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--mist);
}

.serif-h { font-family:'Cormorant Garamond',serif; font-weight:300; }

/* ── PRODUCT SUMMARY ── */
.product-summary {
  padding: 72px 56px 36px;
}
.product-summary-inner {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255,255,255,0.62);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 44px 48px;
  box-shadow: 0 8px 42px rgba(107,136,145,0.07);
}
.product-summary-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 300;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 32px;
}
.summary-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.summary-points span {
  background: var(--bg);
  color: var(--text-mid);
  font-size: 13px;
  line-height: 1.45;
  padding: 18px 16px;
}

/* ── MIRROR ── */
.mirror {
  padding: 120px 56px;
  max-width: 1020px;
  margin: 0 auto;
}
.mirror-title {
  font-family:'Cormorant Garamond',serif;
  font-size: clamp(32px,4.5vw,56px);
  font-weight: 300;
  margin-bottom: 64px;
  line-height: 1.1;
}
.mirror-title em { font-style:italic; color:var(--slate-d); }

.mirror-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1px;
  background: var(--border);
}
.mirror-item {
  padding: 16px 24px;
  background: var(--bg);
  font-size: 14px;
  color: var(--text-mid);
  transition: all 0.3s ease;
  cursor: default;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: unset;
}
.mirror-item::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mist);
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.mirror-item:hover {
  background: var(--bg3);
  color: var(--text);
  padding-left: 28px;
}
.mirror-item:hover::before {
  background: var(--slate);
  box-shadow: 0 0 0 3px rgba(107,136,145,0.15);
}



/* ── CTA INTERRUPT ── */
.cta-interrupt {
  text-align: center;
  padding: 80px 24px;
}
.cta-interrupt h2 {
  font-family:'Cormorant Garamond',serif;
  font-size: clamp(28px,4vw,50px);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  margin-bottom: 40px;
}

/* ── AUDIO ── */
.audio-section {
  max-width: 600px;
  margin: 0 auto;
  padding: 60px 24px 100px;
  text-align: center;
}
.audio-box {
  background: white;
  border: 1px solid var(--border2);
  padding: 48px 40px;
  box-shadow: 0 4px 40px rgba(107,136,145,0.08);
  border-radius: 4px;
}
.audio-tag { font-size:11px; letter-spacing:0.2em; text-transform:uppercase; color:var(--text-soft); margin-bottom:12px; }
.audio-title {
  font-family:'Cormorant Garamond',serif;
  font-size: 22px; font-weight:300;
  color: var(--text);
  margin-bottom: 36px;
  line-height: 1.3;
}
.play-btn {
  width: 68px; height: 68px;
  border-radius: 50%;
  border: 1px solid var(--mist);
  background: white;
  color: var(--slate);
  font-size: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  transition: all 0.3s ease;
  margin-bottom: 28px;
  box-shadow: 0 4px 20px rgba(107,136,145,0.12);
}
.play-btn:hover {
  background: var(--slate);
  color: white;
  border-color: var(--slate);
  transform: scale(1.04);
}
.static-play {
  cursor: default;
  margin-bottom: 14px;
}
.static-play:hover {
  background: white;
  color: var(--slate);
  border-color: var(--mist);
  transform: none;
}
.audio-status {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 22px;
}
.audio-desc { font-size:14px; color:var(--text-soft); line-height:1.75; }

/* ── WHAT HAPPENS ── */
.what-happens {
  max-width: 760px;
  margin: 0 auto;
  padding: 100px 56px;
}
.what-happens h2 {
  font-family:'Cormorant Garamond',serif;
  font-size: clamp(28px,4vw,48px);
  font-weight:300;
  margin-bottom: 40px;
  line-height: 1.15;
}
.body-p {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 24px;
}
.pull-quote {
  font-family:'Cormorant Garamond',serif;
  font-size: 22px;
  font-style: italic;
  font-weight:300;
  color: var(--slate-d);
  border-left: 2px solid var(--mist);
  padding: 4px 0 4px 28px;
  margin: 52px 0;
  line-height: 1.6;
}

/* ── WHY WORKS ── */
.why-works {
  background: transparent;
  padding: 100px 56px;
}
.why-inner { max-width: 760px; margin: 0 auto; }
.why-works h2 {
  font-family:'Cormorant Garamond',serif;
  font-size: clamp(28px,4vw,48px);
  font-weight:300;
  margin-bottom: 36px;
  line-height:1.15;
}
.objection {
  margin-top: 56px;
  padding: 40px 44px;
  background: white;
  border-left: 3px solid var(--mist);
  box-shadow: 0 2px 24px rgba(107,136,145,0.06);
  border-radius: 0 4px 4px 0;
}
.objection-q {
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size: 20px;
  font-weight:300;
  color: var(--slate-d);
  margin-bottom: 16px;
}
.objection p { font-size:16px; color:var(--text-mid); line-height:1.85; }

/* ── SCENARIOS ── */
.scenarios {
  padding: 100px 56px;
  max-width: 1100px;
  margin: 0 auto;
}
.scenarios > h2 {
  font-family:'Cormorant Garamond',serif;
  font-size: clamp(30px,4.5vw,54px);
  font-weight:300;
  margin-bottom: 64px;
  line-height:1.1;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.card {
  background: white;
  padding: 36px 32px;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--mist), var(--slate));
  transform: scaleX(0);
  transition: transform 0.35s ease;
  transform-origin: left;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(107,136,145,0.13); border-color: var(--mist); }
.card:hover::before { transform: scaleX(1); }
.card-num { font-size:11px; letter-spacing:0.2em; color:var(--slate); text-transform:uppercase; margin-bottom:16px; }
.card-title {
  font-family:'Cormorant Garamond',serif;
  font-size: 20px; font-weight:400;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.25;
}
.card-body { font-size:14px; color:var(--text-mid); line-height:1.75; }
.cards-cta { text-align:center; margin-top:64px; }
.cards-cta p {
  font-family:'Cormorant Garamond',serif;
  font-size:24px; font-style:italic; font-weight:300;
  color:var(--text-mid); margin-bottom:32px;
}

/* ── COMPARISON ── */
.comparison {
  background: transparent;
  padding: 100px 56px;
}
.comparison-inner { max-width: 820px; margin: 0 auto; }
.comparison h2 {
  font-family:'Cormorant Garamond',serif;
  font-size: clamp(28px,4vw,48px);
  font-weight:300;
  margin-bottom:12px;
  line-height:1.15;
}
.comp-sub { font-size:16px; color:var(--text-mid); margin-bottom:52px; }
.comp-table { width:100%; border-collapse:collapse; margin-bottom:64px; }
.comp-table tr { border-bottom: 1px solid var(--border); }
.comp-table td { padding:20px 16px; font-size:15px; color:var(--text-mid); }
.comp-table td:first-child { color:var(--slate-d); font-size:13px; letter-spacing:0.04em; width:38%; font-weight:400; }
.comp-table tr:hover td { background: rgba(184,197,204,0.08); }

.price-card {
  background: white;
  padding: 60px 48px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: 0 4px 40px rgba(107,136,145,0.08);
  scroll-margin-top: 110px;
}
.price-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 22px;
}
.price-num {
  font-family:'Cormorant Garamond',serif;
  font-size: 80px; font-weight:300;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}
.price-num sup { font-size:36px; vertical-align:top; margin-top:14px; }
.purchase-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: 560px;
  margin: 34px auto 34px;
  background: var(--border);
  text-align: left;
}
.purchase-list li {
  background: var(--bg);
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.45;
  padding: 16px 18px;
}
.purchase-list li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mist);
  margin-right: 10px;
  transform: translateY(-2px);
}
.price-desc { font-size:15px; color:var(--text-mid); margin-bottom:32px; line-height:1.75; max-width:420px; margin-left:auto; margin-right:auto; }
.purchase-microcopy {
  font-size: 12px;
  color: var(--text-soft);
  margin-top: 18px;
  margin-bottom: 0;
  letter-spacing: 0.04em;
}

/* ── WHAT YOU GET ── */
.what-get { max-width: 760px; margin: 0 auto; padding: 100px 56px; }
.what-get h2 {
  font-family:'Cormorant Garamond',serif;
  font-size: clamp(28px,4vw,46px); font-weight:300;
  margin-bottom:36px; line-height:1.15;
}
.get-list { margin: 52px 0; }
.get-item {
  display: flex; gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.get-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--mist);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--slate); font-size: 15px;
  flex-shrink: 0; margin-top: 2px;
  background: white;
}
.get-text strong { display:block; font-weight:400; color:var(--text); margin-bottom:4px; font-size:16px; }
.get-text span { font-size:14px; color:var(--text-soft); }

/* ── TRUST ── */
.trust { background: transparent; padding: 100px 56px; }
.trust-inner { max-width: 720px; margin: 0 auto; }
.trust-inner h2 {
  font-family:'Cormorant Garamond',serif;
  font-size: clamp(26px,3.5vw,42px); font-weight:300;
  margin-bottom: 36px; line-height:1.15;
}
.team-section {
  margin: 56px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(107,136,145,0.1);
}
.team-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}
.team-section:hover .team-img { transform: scale(1.03); }
.team-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 70%, rgba(237,232,226,0.72) 100%);
  pointer-events: none;
}
.team-caption {
  background: rgba(237,232,226,0.72);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 44px;
}
.team-names-block {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.team-name-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 0;
}
.team-name-divider {
  height: 1px;
  background: var(--border2);
}
.team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.04em;
}
.team-role {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
}
@media(max-width:680px){
  .team-section { grid-template-columns: 1fr; }
  .team-img-wrap { aspect-ratio: 3/2; }
  .team-img {
    object-position: center 55%;
  }
  .team-img-overlay { background: linear-gradient(to bottom, transparent 60%, rgba(237,232,226,0.72) 100%); }
  .team-caption { padding: 20px 24px 24px; }
  .team-name-item { padding: 12px 0; }
  .team-name { font-size: 18px; }
  .team-role { font-size: 10px; }
}

/* ── REVIEWS ── */
.reviews { padding: 100px 56px; max-width: 1100px; margin: 0 auto; }
.reviews > h2 {
  font-family:'Cormorant Garamond',serif;
  font-size: clamp(30px,4.5vw,54px); font-weight:300;
  margin-bottom: 64px; line-height:1.1;
}
.reviews-grid { columns: 3; column-gap: 16px; }
@media(max-width:900px){ .reviews-grid{columns:2;} }
@media(max-width:580px){ .reviews-grid{columns:1;} }
.review {
  break-inside: avoid;
  background: white;
  padding: 32px 28px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: box-shadow 0.3s ease;
}
.review:hover { box-shadow: 0 8px 32px rgba(107,136,145,0.1); }
.review-text { font-size:14px; color:var(--text-mid); line-height:1.8; margin-bottom:20px; font-style:italic; }
.review-author { font-size:11px; letter-spacing:0.12em; color:var(--slate); text-transform:uppercase; }

/* ── FAQ ── */
.faq {
  background: transparent;
  padding: 100px 56px;
}
.faq-inner {
  max-width: 820px;
  margin: 0 auto;
}
.faq h2 {
  font-family:'Cormorant Garamond',serif;
  font-size: clamp(28px,4vw,48px);
  font-weight:300;
  margin-bottom: 48px;
  line-height:1.15;
}
.faq-list {
  border-top: 1px solid var(--border2);
}
.faq-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border2);
}
.faq-item h3 {
  font-family:'Cormorant Garamond',serif;
  font-size: 23px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
}
.faq-item p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 680px;
}

/* ── FINAL CTA ── */
.final-cta {
  padding: 160px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-sphere-wrap {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  pointer-events: none;
}
.final-sphere {
  position: absolute; inset: 0;
  border-radius: 50%;
  filter: blur(40px);
  background: radial-gradient(circle at 38% 35%,
    rgba(255,255,255,0.6) 0%,
    rgba(184,197,204,0.22) 40%,
    rgba(143,163,171,0.1) 70%,
    transparent 100%
  );
  animation: sphereBreathe 5.5s ease-in-out infinite;
}
.final-sphere-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(107,136,145,0.06);
  animation: ringExpand 5.5s ease-in-out infinite;
}
.final-sphere-ring-1 { inset: -40px; }
.final-sphere-ring-2 { inset: -80px; border-color: rgba(107,136,145,0.06); animation-delay:0.4s; }

.final-inner { position:relative; z-index:2; max-width:580px; margin:0 auto; }
.final-cta h2 {
  font-family:'Cormorant Garamond',serif;
  font-size: clamp(30px,5vw,58px); font-weight:300;
  margin-bottom: 20px; line-height:1.1;
}
.final-cta h2 em { font-style:italic; color:var(--slate-d); }
.final-cta p { font-size:16px; color:var(--text-mid); margin-bottom:52px; line-height:1.8; }
.cta-stack { display:flex; flex-direction:column; align-items:center; gap:16px; }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border2);
  padding: 16px 48px;
  font-family:'DM Sans',sans-serif; font-size:13px; font-weight:400;
  letter-spacing:0.12em; text-transform:uppercase;
  cursor:pointer; transition:all 0.3s ease;
  text-decoration:none; display:inline-block; border-radius:2px;
}
.btn-outline:hover { border-color:var(--slate); color:var(--slate-d); }
.guarantee { margin-top:36px; font-size:12px; color:var(--text-soft); line-height:1.8; }

/* ── DIVIDER ── */
.divider { height:1px; background:var(--border); margin:0 56px; }

/* ── FOOTER ── */
footer {
  padding: 40px 56px;
  border-top: 1px solid var(--border);
  display: flex; justify-content:space-between; align-items:center;
  font-size:12px; color:var(--text-soft);
}
footer a { color:var(--text-soft); text-decoration:none; transition:color 0.2s; }
footer a:hover { color:var(--slate); }
.footer-logo { width: 112px; opacity: 0.88; }

/* ── SCROLL REVEAL ── */
.reveal { opacity:0; transform:translateY(28px); transition:opacity 0.75s ease, transform 0.75s ease; }
.reveal.in { opacity:1; transform:translateY(0); }

/* ── RESPONSIVE ── */
@media(max-width:768px){
  nav{padding:20px 24px;}
  .product-summary,.mirror,.what-happens,.why-works,.scenarios,.comparison,.what-get,.trust,.reviews,.faq{padding-left:24px;padding-right:24px;}
  .product-summary { padding-top: 48px; }
  .product-summary-inner { padding: 32px 24px; }
  .summary-points { grid-template-columns: 1fr 1fr; }
  .purchase-list { grid-template-columns: 1fr; }
  .cards-grid{grid-template-columns:1fr;}
  .sphere-wrap{width:200px;height:200px;}
  footer{flex-direction:column;gap:16px;text-align:center;}
}

/* ── MOBILE STACKING CARDS ── */
@media(max-width:768px){
  .cards-grid {
    display: block;
    position: relative;
  }
  .cards-grid .card {
    position: sticky;
    top: 72px;
    margin-bottom: 12px;
    transform-origin: top center;
    box-shadow: 0 4px 24px rgba(107,136,145,0.12);
  }
  .cards-grid .card:nth-child(1)  { top: 72px;  z-index: 1; }
  .cards-grid .card:nth-child(2)  { top: 84px;  z-index: 2; }
  .cards-grid .card:nth-child(3)  { top: 96px;  z-index: 3; }
  .cards-grid .card:nth-child(4)  { top: 108px; z-index: 4; }
  .cards-grid .card:nth-child(5)  { top: 120px; z-index: 5; }
  .cards-grid .card:nth-child(6)  { top: 132px; z-index: 6; }
  .cards-grid .card:nth-child(7)  { top: 144px; z-index: 7; }
  .cards-grid .card:hover { transform: none; }
}
