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

:root {
  --bg:        rgb(250,238,232);
  --bg2:       rgb(245,225,213);
  --bg3:       rgb(240,227,219);
  --peach:     rgb(240,204,183);
  --peach2:    rgb(244,193,164);
  --rose:      #F6C4C0;
  --rose-deep: #d98b87;
  --violet:    #6b4d6b;
  --violet-deep:#4a2f4a;
  --mauve:     rgb(133,88,111);
  --brown:     rgb(106,84,72);
  --dark:      rgb(81,68,59);
  --darkest:   rgb(62,58,55);
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--bg);
  color: var(--dark);
  font-family: 'Work Sans', sans-serif;
  font-weight: 300;
  overflow-x: clip;
}

.blob-container { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.blob { position: absolute; border-radius: 50%; }
section { position: relative; scroll-margin-top: 74px; }
.inner { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(250,238,232,0.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(133,88,111,0.08);
}
.nav-logo { font-family: 'Josefin Sans', sans-serif; font-size: 20px; font-weight: 700; letter-spacing: -0.02em; color: var(--violet); text-decoration: none; opacity: 1; transition: opacity 0.2s; }
.nav-logo:hover { opacity: 0.72; }
.nav-toggle {
  width: 42px; height: 42px;
  border: 0px;
  border-radius: 50%;
  background: transparent;
  color: var(--violet);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.nav-toggle:active { transform: scale(0.96); }
.nav-toggle span {
  width: 18px; height: 2px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.18s ease;
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-menu-panel {
  position: fixed;
  top: 86px; left: 20px; right: 20px;
  z-index: 99;
  display: flex; flex-direction: column; gap: 4px;
  padding: 12px;
  background: rgba(250,238,232,0.72);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
  backdrop-filter: blur(18px) saturate(1.08);
  border: 1px solid rgba(133,88,111,0.12);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(46,6,26,0.14);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.nav-menu-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-menu-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-menu-secondary {
  border-top: 1px solid rgba(133,88,111,0.12);
  margin-top: 8px;
  padding-top: 8px;
}
.nav-links a {
  font-size: 15px; color: var(--brown); text-decoration: none; opacity: 0.9;
}
.nav-links a:hover { opacity: 1; }
.nav-menu-panel a {
  min-height: 44px;
  display: flex; align-items: center;
  padding: 0 12px;
  border-radius: 12px;
  font-size: 15px; color: var(--brown); text-decoration: none; opacity: 0.9;
}
.nav-menu-panel a:hover { opacity: 1; }
.nav-menu-panel a:hover, .nav-menu-panel a:focus-visible { background: rgba(255,255,255,0.54); outline: none; }
.nav-cta {
  background: var(--violet); color: var(--bg);
  font-size: 14px; font-weight: 500;
  padding: 9px 18px; border-radius: 50px; text-decoration: none;
  display: none;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--violet-deep); transform: translateY(-1px); }
.nav-menu-panel .nav-menu-cta {
  background: var(--violet);
  color: var(--bg) !important;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 50px;
  margin-top: 8px;
  opacity: 1 !important;
  font-weight: 500;
  transition: background 0.2s, transform 0.15s;
}
.nav-menu-panel .nav-menu-cta:hover,
.nav-menu-panel .nav-menu-cta:focus-visible {
  background: var(--violet-deep) !important;
  transform: translateY(-1px);
}
.nav-links-desktop { display: none; }

@media (min-width: 760px) {
  .nav-toggle { display: none; }
  .nav-links-desktop {
    display: flex; flex-direction: row; gap: 28px;
  }
  .nav-links a {
    min-height: auto;
    display: inline;
    padding: 0;
    border-radius: 0;
    opacity: 0.85;
  }
  .nav-links a:hover, .nav-links a:focus-visible { background: transparent; }
  .nav-menu-panel { display: none; }
  nav { justify-content: flex-start; gap: 28px; padding: 18px 32px; }
  section { scroll-margin-top: 86px; }
  .inner { padding: 0 32px; }
  .nav-logo { font-size: 22px; margin-right: auto; }
  .nav-cta { display: inline-flex; padding: 10px 22px; font-size: 15px; }
}

/* ─── HERO (MOBILE FIRST) ─── */
#hero { padding: 82px 0 0; min-height: auto; overflow: hidden; }
#hero .inner { display: flex; flex-direction: column; gap: 20px; align-items: center; text-align: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(107,77,107,0.12); border-radius: 50px;
  padding: 6px 14px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
  color: var(--violet); text-transform: uppercase;
}
.hero-eyebrow span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow span + span::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: var(--violet);
}
.hero-h1 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(34px, 8.5vw, 64px);
  font-weight: 700; line-height: 1.02;
  letter-spacing: -0.035em; color: var(--violet);
}
.hero-h1 em { font-style: normal; color: var(--rose-deep); }
.hero-sub { font-size: 16px; line-height: 1.55; color: var(--brown); opacity: 0.85; max-width: 540px; margin: 0 auto; }
.hero-microcopy { display: none; font-size: 12px; color: var(--brown); opacity: 0.6; }
.hero-left { display: flex; flex-direction: column; gap: 16px; align-items: center; order: 1; }

/* Google Play badge */
.gp-badge {
  display: inline-flex;
  width: clamp(180px, 48vw, 212px);
  line-height: 0;
  text-decoration: none;
  margin: 0 auto;
}
.gp-badge:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 4px;
  border-radius: 12px;
}
.gp-badge img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.15s ease;
}
.gp-badge:hover img { transform: translateY(-2px); }

/* Hero phone */
.phone-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  order: 2;
  position: relative;
  width: 100%;
  height: clamp(320px, 48vh, 410px);
  min-height: 320px;
  overflow: hidden;
  transform-origin: center top;
}
.phone {
  width: clamp(210px, 58vw, 250px);
  height: auto;
  border-radius: 13.2% / 6.3%;
  background: linear-gradient(150deg, #2a221d, #51443b);
  padding: clamp(6px, 3.2%, 8px);
  box-shadow: 0 24px 48px rgba(46,6,26,0.18), 0 6px 16px rgba(46,6,26,0.1);
  position: relative;
}
.phone-screen { width: 100%; height: auto; aspect-ratio: 393 / 852; border-radius: 10.8% / 5.1%; background: var(--bg); overflow: hidden; position: relative; }
.phone-screen::before { content: ""; position: absolute; top: 1.35%; left: 50%; transform: translateX(-50%); width: clamp(38px, 30%, 64px); height: clamp(10px, 2.65%, 16px); background: #1a1410; border-radius: 50px; z-index: 30; }
.phone-screenshot {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

@media (min-width: 760px) {
  #hero { padding: 110px 0 90px; overflow: visible; }
  #hero .inner { flex-direction: row; text-align: left; gap: 48px; }
  .hero-left { order: 1; align-items: flex-start; gap: 24px; flex: 1.05; }
  .phone-wrap { order: 2; width: auto; height: auto; min-height: 0; overflow: visible; }
  .phone { width: 290px; height: auto; }
  .gp-badge { margin: 0; }
  .hero-microcopy { display: block; }
  .hero-h1 { font-size: clamp(48px, 5.2vw, 70px); }
  .hero-sub { margin: 0; font-size: 18px; }
}

/* ─── Section atoms ─── */
.section-label { font-family: 'Josefin Sans', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--violet); opacity: 0.85; margin-bottom: 12px; }
.section-h2 { font-family: 'Josefin Sans', sans-serif; font-size: clamp(30px, 5.5vw, 50px); font-weight: 700; line-height: 1.05; letter-spacing: -0.03em; color: var(--dark); }
.section-h2 em { font-style: normal; color: var(--violet); }
.section-intro { max-width: 600px; margin-top: 14px; font-size: 16px; color: var(--brown); opacity: 0.8; line-height: 1.55; }
.soft-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.soft-cta p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--brown);
  opacity: 0.86;
}
.soft-cta strong {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 18px;
  color: var(--dark);
  letter-spacing: -0.01em;
}
.text-cta-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(107,77,107,0.1);
  color: var(--violet);
  border: 1px solid rgba(107,77,107,0.18);
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.text-cta-button:hover {
  transform: translateY(-1px);
  background: var(--violet);
  color: var(--bg);
  box-shadow: 0 10px 24px rgba(74,47,74,0.18);
}
.text-cta-button:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 4px;
}
.text-cta-button-light {
  background: rgba(255,255,255,0.12);
  color: white;
  border-color: rgba(255,255,255,0.24);
}
.text-cta-button-light:hover {
  background: var(--bg);
  color: var(--violet-deep);
  box-shadow: 0 10px 28px rgba(46,6,26,0.18);
}
.text-cta-button-light:focus-visible {
  outline-color: var(--rose);
}

/* ─── INSIDE THE APP — staggered composition ─── */
#proof { padding: 80px 0 72px; }
#proof .inner { padding: 0 36px; }
.proof-head { margin-bottom: 34px; }
.proof-head.center { text-align: center; }
.proof-head.center .section-intro { margin-left: auto; margin-right: auto; }

/* Staggered phone diorama */
.proof-stage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 30px 0;
  max-width: 318px;
  margin: 0 auto;
  padding: 28px 0 20px;
}
.proof-phone {
  position: relative;
  width: clamp(130px, 38vw, 174px);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  transition: transform 0.35s cubic-bezier(.2,.8,.3,1);
}
.proof-phone:hover { transform: translateY(-6px) rotate(0deg) !important; }
.pp-frame {
  width: 100%;
  border-radius: 13.2% / 6.3%;
  background: linear-gradient(150deg, #2a221d, #51443b);
  padding: clamp(4px, 3.2%, 8px);
  box-shadow: 0 24px 48px rgba(46,6,26,0.18), 0 6px 16px rgba(46,6,26,0.1);
  position: relative;
}
.pp-screen { width: 100%; height: auto; aspect-ratio: 393 / 852; border-radius: 10.8% / 5.1%; background: var(--bg); overflow: hidden; position: relative; }
.pp-screen::before { content: ""; position: absolute; top: 1.35%; left: 50%; transform: translateX(-50%); width: clamp(28px, 30%, 60px); height: clamp(7px, 2.65%, 14px); background: #1a1410; border-radius: 50px; z-index: 30; }
.pp-screenshot {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}
.pp-tag {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 13px; border-radius: 50px;
  background: rgba(255,255,255,0.7); backdrop-filter: blur(8px);
  border: 1px solid rgba(208,184,168,0.4);
  font-family: 'Josefin Sans', sans-serif; font-size: 12px; font-weight: 600;
  color: var(--violet); letter-spacing: 0.02em;
  white-space: nowrap;
}
.pp-tag::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--rose-deep); }

/* Mobile staggered tilts */
.proof-phone.p1 { justify-self: start; transform: translateX(8px) rotate(-4deg); z-index: 1; }
.proof-phone.p2 { justify-self: end; transform: translate(-12px, 12px) rotate(4deg); z-index: 2; }
.proof-phone.p3 { justify-self: start; transform: translateX(8px) rotate(3deg); z-index: 1; }
.proof-phone.p4 { justify-self: end; transform: translate(-12px, 12px) rotate(-5deg); z-index: 2; }
.proof-phone.p1 .pp-tag,
.proof-phone.p3 .pp-tag { transform: translateX(-16px); }
.proof-phone.p2 .pp-tag,
.proof-phone.p4 .pp-tag { transform: translateX(16px); }
.proof-cta { margin-top: 40px; }

@media (min-width: 760px) {
  #proof { padding: 80px 0 100px; }
  #proof .inner { padding: 0 32px; }
  .proof-stage {
    grid-template-columns: repeat(4, 1fr);
    display: grid;
    gap: 28px 22px;
    padding: 50px 0 30px;
    max-width: 1080px;
    margin: 0 auto;
  }
  .proof-stage .proof-phone { width: 100%; margin-left: 0; justify-self: stretch; }
  .proof-phone.p1 { transform: rotate(-6deg) translateY(20px); margin-top: 0; margin-left: 0; }
  .proof-phone.p2 { transform: rotate(4deg) translateY(-30px) scale(1.06); margin-top: 0; margin-left: 0; z-index: 2; }
  .proof-phone.p3 { transform: rotate(-3deg) translateY(-10px) scale(1.04); margin-top: 0; margin-left: 0; z-index: 2; }
  .proof-phone.p4 { transform: rotate(7deg) translateY(30px); margin-top: 0; margin-left: 0; }
  .proof-phone.p1 .pp-tag,
  .proof-phone.p2 .pp-tag,
  .proof-phone.p3 .pp-tag,
  .proof-phone.p4 .pp-tag { transform: none; }
  .pp-tag { font-size: 13px; padding: 7px 15px; }
  .proof-cta { margin-top: 48px; }
}

/* ─── HOW IT WORKS ─── */
#how { padding: 80px 0; background: linear-gradient(180deg, transparent, rgba(245,225,213,0.5) 50%, transparent); }
#how .inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
.how-head { margin-bottom: 48px; }
.how-steps {
  display: grid; grid-template-columns: 1fr; gap: 16px; width: 100%;
}
.how-step {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(208,184,168,0.4);
  border-radius: 22px; padding: 28px 24px;
  position: relative; overflow: hidden;
  text-align: left;
}
.how-step .step-num {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 70px; font-weight: 700;
  color: var(--violet); opacity: 0.18;
  position: absolute; top: -8px; right: 14px; line-height: 1;
}
.how-step h3 { font-family: 'Josefin Sans', sans-serif; font-size: 20px; font-weight: 600; color: var(--dark); margin-bottom: 8px; letter-spacing: -0.02em; position: relative; }
.how-step p { font-size: 14px; line-height: 1.55; color: var(--brown); opacity: 0.85; position: relative; }
.how-step .step-illus {
  width: 50px; height: 50px; border-radius: 14px;
  background: var(--peach); color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; position: relative;
}
.how-step:nth-child(2) .step-illus { background: var(--rose); }
.how-step:nth-child(3) .step-illus { background: var(--violet); color: var(--bg); }

@media (min-width: 760px) { .how-steps { grid-template-columns: repeat(3, 1fr); gap: 22px; } }

/* ─── BREATHE & AFFIRM (signature anchor) ─── */
#breathe {
  padding: 60px 0 70px;
  background: transparent;
  color: var(--bg);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
#breathe::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(250,238,232,0.72) 0%, rgba(250,238,232,0.18) 12%, rgba(250,238,232,0) 26%),
    radial-gradient(ellipse 82% 62% at 50% 28%, rgba(246,196,192,0.44), transparent 72%),
    radial-gradient(ellipse 90% 70% at 50% 100%, rgba(107,77,107,0.22), transparent 72%),
    radial-gradient(circle at 12% 18%, rgba(246,196,192,0.16), transparent 25%),
    radial-gradient(circle at 88% 82%, rgba(244,193,164,0.14), transparent 28%),
    linear-gradient(180deg, #9a6a80 0%, #805771 54%, #6a4a63 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0, rgba(0,0,0,0.12) 16px, rgba(0,0,0,0.7) 48px, #000 82px);
  mask-image: linear-gradient(180deg, transparent 0, rgba(0,0,0,0.12) 16px, rgba(0,0,0,0.7) 48px, #000 82px);
}
#breathe .inner { display: flex; flex-direction: column; gap: 28px; align-items: center; text-align: center; }
.breathe-text { display: flex; flex-direction: column; gap: 16px; align-items: center; }
.breathe-text .section-label { color: var(--violet); opacity: 0.88; }
.breathe-text h2 { color: var(--bg); font-size: clamp(34px, 7.5vw, 64px); }
.breathe-text h2 em { color: var(--rose); font-style: normal; }
.breathe-text p { font-size: 16px; line-height: 1.6; color: var(--bg); opacity: 0.82; max-width: 480px; }

.breathe-stage {
  position: relative; width: 100%; max-width: 460px;
  aspect-ratio: 1; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  transform-origin: center;
}
.flower-lottie {
  position: absolute;
  inset: -5%;
  width: 110%;
  height: 110%;
  opacity: 0;
  filter: drop-shadow(0 0 46px rgba(246,196,192,0.28));
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.flower-lottie svg {
  width: 100% !important;
  height: 100% !important;
}
.breathe-stage.lottie-ready .flower-lottie { opacity: 1; }
.breathe-stage.lottie-ready .flower-svg {
  animation: none;
  opacity: 0;
  visibility: hidden;
}
.flower-svg {
  width: 110%; height: 110%; position: absolute; inset: -5% -5%;
  animation: flowerBreathe 12s ease-in-out infinite;
  transform-origin: center;
  filter: drop-shadow(0 0 46px rgba(246,196,192,0.28));
  transition: opacity 0.35s ease;
}
@keyframes flowerBreathe {
  0%   { transform: scale(0.55); opacity: 0.85; }
  33%  { transform: scale(1); opacity: 1; }
  50%  { transform: scale(1); opacity: 1; }
  83%  { transform: scale(0.55); opacity: 0.85; }
  100% { transform: scale(0.55); opacity: 0.85; }
}
.flower-svg circle { mix-blend-mode: screen; }

.breathe-quote {
  position: relative; z-index: 5;
  isolation: isolate;
  font-family: 'Playfair Display', serif; font-style: italic; font-weight: 700;
  font-size: clamp(16px, 3.4vw, 22px);
  color: white;
  text-align: center; max-width: 70%;
  line-height: 1.4;
  text-shadow: 0 2px 14px rgba(58,30,48,0.24);
}
.breathe-quote::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(190%, 380px);
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(74,47,74,0.24) 0%, rgba(107,77,107,0.14) 38%, rgba(107,77,107,0.04) 58%, transparent 72%);
  filter: blur(12px);
}
.breathe-phase {
  position: absolute; bottom: -3%; left: 50%; transform: translateX(-50%);
  font-size: 13px; color: var(--rose); letter-spacing: 0.32em;
  text-transform: uppercase; font-weight: 500;
  z-index: 6;
  text-shadow: 0 2px 8px rgba(58,30,48,0.28);
}
.breathe-meta {
  display: flex; gap: 18px; flex-wrap: wrap; justify-content: center;
  margin-top: 12px;
}
.breathe-meta span {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--bg); opacity: 0.75;
}
.breathe-meta span::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--rose);
}
.breathe-cta {
  width: 100%;
  margin-top: 78px;
}
.breathe-cta p {
  color: white;
  opacity: 0.84;
}

@media (min-width: 760px) {
  #breathe { padding: 110px 0 120px; }
  #breathe .inner { flex-direction: row; flex-wrap: wrap; gap: 56px; text-align: left; align-items: center; }
  .breathe-text { align-items: flex-start; flex: 1; max-width: 460px; }
  .breathe-text .section-label { color: var(--rose); opacity: 1; }
  .breathe-text p { margin: 0; }
  .breathe-stage { max-width: 560px; flex: 1.1; }
  .breathe-text h2 { font-size: clamp(48px, 5vw, 70px); }
  .breathe-cta {
    flex: 0 0 100%;
    margin-top: 32px;
    text-align: center;
  }
}

/* ─── TRY IT NOW ─── */
#demo { padding: 90px 0; position: relative; }
#demo .blob-container .blob1 { width: 380px; height: 380px; background: var(--rose); opacity: 0.22; top: 50%; left: 50%; transform: translate(-50%,-50%); border-radius: 50%; }
#demo .inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 32px; }
.demo-card {
  width: 100%; max-width: 640px;
  background: rgba(255,255,255,0.6); backdrop-filter: blur(12px);
  border: 1px solid rgba(208,184,168,0.45);
  border-radius: 28px;
  padding: 44px 28px 36px;
  box-shadow: 0 16px 60px rgba(46,6,26,0.08);
  position: relative; overflow: hidden;
}
.demo-card::before, .demo-card::after { content: ""; position: absolute; border-radius: 50%; filter: blur(40px); z-index: 0; }
.demo-card::before { width: 200px; height: 200px; top: -70px; left: -50px; background: var(--rose); opacity: 0.4; }
.demo-card::after  { width: 220px; height: 220px; bottom: -80px; right: -50px; background: var(--violet); opacity: 0.18; }
.demo-quote-mark { font-family: 'Playfair Display', serif; font-size: 70px; font-weight: 700; color: var(--violet); opacity: 0.32; line-height: 0.4; margin-bottom: 18px; position: relative; z-index: 1; }
.demo-text { font-family: 'Playfair Display', serif; font-weight: 700; font-style: italic; font-size: clamp(22px, 4.6vw, 34px); line-height: 1.35; color: var(--darkest); position: relative; z-index: 1; margin-bottom: 28px; }
.demo-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--violet); color: var(--bg);
  border: 0;
  padding: 13px 26px; border-radius: 50px;
  font-size: 15px; font-weight: 500; text-decoration: none;
  position: relative; z-index: 1;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}
.demo-cta:hover { transform: translateY(-2px); background: var(--violet-deep); box-shadow: 0 10px 28px rgba(74,47,74,0.3); }
.demo-cta svg { transition: transform 0.2s; }
.demo-cta:hover svg { transform: translateX(4px); }

@media (min-width: 760px) { .demo-card { padding: 64px 56px 52px; } }

/* ─── FAQ ─── */
#faq { padding: 80px 0; }
#faq .inner { text-align: center; }
.faq-wrap { max-width: 760px; margin: 40px auto 0; text-align: left; }
.faq-item { border-bottom: 1px solid rgba(133,88,111,0.18); padding: 18px 0; }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  font-family: 'Josefin Sans', sans-serif; font-size: 17px; font-weight: 600;
  color: var(--dark); text-align: left; padding: 4px 0;
}
.faq-q .plus {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--peach); color: var(--dark);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 16px; transition: transform 0.25s, background 0.2s, color 0.2s;
}
.faq-item.open .plus { transform: rotate(45deg); background: var(--violet); color: white; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; font-size: 14px; line-height: 1.65; color: var(--brown); opacity: 0.85; }
.faq-item.open .faq-a { max-height: 320px; padding-top: 12px; }

@media (min-width: 760px) { .faq-q { font-size: 19px; } .faq-a { font-size: 15px; } #faq { padding: 110px 0; } }

/* ─── CTA ─── */
#cta { padding: 90px 0 110px; }
#cta .inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 22px; }
.cta-h2 { font-family: 'Josefin Sans', sans-serif; font-size: clamp(34px, 7vw, 60px); font-weight: 700; line-height: 1.02; letter-spacing: -0.035em; color: var(--violet); }
.cta-h2 em { font-style: normal; color: var(--rose-deep); }
.cta-sub { font-size: 16px; color: var(--brown); opacity: 0.8; max-width: 500px; line-height: 1.6; }
.fine-print { font-size: 12px; color: var(--brown); opacity: 0.55; }

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid rgba(133,88,111,0.12);
  padding: 26px 20px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--brown);
  flex-wrap: wrap; gap: 14px;
}
footer > div:first-child { opacity: 0.68; }
footer a {
  color: var(--violet);
  opacity: 0.82;
  text-decoration: none;
  font-weight: 400;
  transition: opacity 0.2s, color 0.2s;
}
footer a:hover { color: var(--violet-deep); opacity: 1; }
.footer-links { display: flex; gap: 20px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Cookie consent banner ────────────────────────────────────────────────────────────────────
   Lives in styles.css rather than its own file because it appears on every page and styles.css
   is the only stylesheet every page already loads.

   The one rule here that is a legal requirement rather than a taste decision: #consentDecline
   and #consentAccept share the .consent-btn class and get no modifier. Equal prominence on the
   first layer is what CNIL fined Google and Meta over in January 2022. If a future redesign
   wants a "primary" button, the answer is no. */
.consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9000;
  background: var(--bg);
  border-top: 1px solid rgba(106,84,72,0.18);
  box-shadow: 0 -8px 32px rgba(62,58,55,0.10);
  font-family: 'Work Sans', sans-serif;
  color: var(--brown);
}
.consent-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 28px;
}
.consent-copy { flex: 1; min-width: 0; }
.consent-title {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  margin: 0 0 6px;
}
.consent-copy p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  font-weight: 300;
}
.consent-copy a { color: var(--violet); text-decoration: underline; text-underline-offset: 2px; }
.consent-copy a:hover { color: var(--violet-deep); }

.consent-details { margin-top: 12px; }
.consent-details summary {
  cursor: pointer;
  font-size: 0.8125rem;
  color: var(--violet);
  width: max-content;
}
.consent-details summary:hover { color: var(--violet-deep); }
.consent-categories {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.consent-categories label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.8125rem;
  line-height: 1.5;
  font-weight: 300;
}
.consent-categories input { margin-top: 3px; flex-shrink: 0; accent-color: var(--mauve); }
.consent-categories input:disabled + span { opacity: 0.7; }
.consent-categories strong { font-weight: 500; color: var(--dark); }

.consent-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  padding-top: 2px;
}
.consent-btn {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  min-width: 116px;
  padding: 11px 22px;
  border: 1px solid var(--mauve);
  border-radius: 999px;
  background: transparent;
  color: var(--mauve);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.consent-btn:hover { background: var(--mauve); color: var(--bg); }
.consent-btn:focus-visible { outline: 2px solid var(--violet); outline-offset: 2px; }
.consent-btn-quiet {
  margin-top: 14px;
  min-width: 0;
  padding: 8px 18px;
  font-size: 0.8125rem;
}

@media (max-width: 720px) {
  .consent-inner { flex-direction: column; gap: 16px; padding: 18px 20px; }
  .consent-actions { width: 100%; }
  .consent-btn { flex: 1; min-width: 0; }
}
