/* ===========================================================
   PeachRep — by Larbsoft
   =========================================================== */

/* ---------- Fonts ----------
   Fraunces + Inter are loaded from Google Fonts via <link> tags in each
   page's <head> (faster & more reliable than an @import here). */

/* ---------- Tokens ---------- */
:root {
  --cream:      #FBF1EA;
  --cream-deep: #F6E5DA;
  --cream-card: #FFFFFF;
  --ink:        #2B2422;
  --ink-soft:   #5C524C;
  --muted:      #978A82;

  --coral:      #F0794F;
  --coral-deep: #E5633C;
  --rose:       #EE6F8E;
  --peach:      #F4977A;
  --mint:       #54B894;
  --mint-deep:  #3FA37F;

  --grad-warm:  linear-gradient(135deg, #F4977A 0%, #EE6F8E 100%);
  --grad-coral: linear-gradient(135deg, #F58D5E 0%, #EF6A55 100%);
  --grad-mint:  linear-gradient(135deg, #5CC79C 0%, #3FA37F 100%);

  --shadow-sm:  0 2px 8px rgba(120, 70, 50, .08);
  --shadow-md:  0 14px 40px rgba(150, 80, 60, .14);
  --shadow-lg:  0 30px 70px rgba(150, 80, 60, .22);
  --shadow-phone: 0 40px 90px rgba(120, 60, 45, .30);

  --radius:     26px;
  --radius-lg:  40px;
  --maxw:       1180px;
  --ease:       cubic-bezier(.22, 1, .36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; line-height: 1.05; letter-spacing: -.01em; }

.serif { font-family: 'Fraunces', Georgia, serif; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(72px, 11vw, 140px) 0; position: relative; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--coral-deep);
  background: rgba(240, 121, 79, .10);
  padding: 7px 14px; border-radius: 100px;
}

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(34px, 5.2vw, 58px); margin: 18px 0 14px; }
.section-head p { font-size: clamp(16px, 2vw, 20px); color: var(--ink-soft); }

/* ===========================================================
   Buttons
   =========================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 16px;
  padding: 15px 26px; border-radius: 100px; border: none; cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s;
  will-change: transform;
}
.btn-primary { background: var(--grad-coral); color: #fff; box-shadow: 0 12px 30px rgba(239, 106, 85, .38); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(239, 106, 85, .5); }
.btn-ghost { background: rgba(43, 36, 34, .06); color: var(--ink); }
.btn-ghost:hover { background: rgba(43, 36, 34, .11); transform: translateY(-2px); }

/* App Store badge (official Apple badge SVG) */
.appstore {
  display: inline-block; border-radius: 13px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  box-shadow: var(--shadow-md);
}
.appstore:hover { transform: translateY(-3px) scale(1.02); box-shadow: var(--shadow-lg); }
.appstore img { height: 56px; width: auto; display: block; border-radius: 13px; }

/* ===========================================================
   Navbar
   =========================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 48px);
  transition: padding .4s var(--ease), background .4s, box-shadow .4s, backdrop-filter .4s;
}
.nav.scrolled {
  padding: 11px clamp(20px, 4vw, 48px);
  background: rgba(251, 241, 234, .8);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 1px 0 rgba(120, 80, 60, .08);
}
.brand { display: flex; align-items: center; gap: 10px; font-family: 'Fraunces', serif; font-weight: 700; font-size: 23px; }
.brand .logo { font-size: 26px; transition: transform .5s var(--ease); display: inline-block; }
.brand:hover .logo { transform: rotate(-12deg) scale(1.12); }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a.link { font-weight: 600; font-size: 15px; color: var(--ink-soft); transition: color .25s; position: relative; }
.nav-links a.link::after { content: ''; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px; background: var(--coral); border-radius: 2px; transition: width .3s var(--ease); }
.nav-links a.link:hover { color: var(--ink); }
.nav-links a.link:hover::after { width: 100%; }
.nav-cta { padding: 11px 22px; font-size: 15px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .3s var(--ease); }

/* ===========================================================
   Hero
   =========================================================== */
.hero { position: relative; padding: clamp(130px, 18vw, 200px) 0 clamp(60px, 9vw, 110px); overflow: hidden; }
/* keep hero content above the decorative blobs so they don't wash over the text */
.hero > .wrap { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 40px; }

.hero h1 { font-size: clamp(44px, 7.2vw, 88px); font-weight: 600; letter-spacing: -.02em; }
.hero h1 .accent { background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; color: transparent; font-style: italic; font-weight: 500; }
.hero .lede { font-size: clamp(17px, 2.2vw, 21px); color: var(--ink-soft); max-width: 520px; margin: 26px 0 34px; }
.hero-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-proof { display: flex; align-items: center; gap: 18px; margin-top: 30px; color: var(--muted); font-size: 14px; font-weight: 500; }
.hero-proof .stars { color: #F5A623; letter-spacing: 2px; font-size: 15px; }

/* hero phone cluster */
.hero-stage { position: relative; height: 600px; display: flex; align-items: center; justify-content: center; }
.hero-stage .phone { position: absolute; }
.hero-stage .phone.front { width: 290px; z-index: 3; transform: translateY(8px); }
.hero-stage .phone.back  { width: 240px; z-index: 2; left: 6%; top: 8%; opacity: .96; transform: rotate(-9deg); }
.hero-stage .phone.back2 { width: 230px; z-index: 1; right: 2%; bottom: 6%; opacity: .94; transform: rotate(8deg); }

/* floating blobs */
.blob { position: absolute; border-radius: 50%; filter: blur(46px); opacity: .55; z-index: 0; pointer-events: none; }
.blob.b1 { width: 360px; height: 360px; background: #F7B49A; top: -60px; right: -40px; }
.blob.b2 { width: 300px; height: 300px; background: #F2A0BB; bottom: 0; left: -80px; }
.blob.b3 { width: 240px; height: 240px; background: #9BE0C2; top: 40%; right: 30%; opacity: .4; }

/* badge chip floating near phone */
.float-chip {
  position: absolute; z-index: 5; background: #fff; border-radius: 18px;
  padding: 12px 16px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 11px;
  font-weight: 700; font-size: 15px;
}
.float-chip .ic { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; font-size: 19px; color: #fff; flex: none; }
.float-chip small { display: block; font-size: 12px; font-weight: 600; color: var(--muted); }
.float-chip.c1 { top: 7%; right: -2%; }
.float-chip.c2 { bottom: 11%; left: -6%; }

/* ===========================================================
   How it works
   =========================================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step {
  background: var(--cream-card); border-radius: var(--radius); padding: 34px 30px;
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step .num {
  font-family: 'Fraunces', serif; font-size: 17px; font-weight: 700; color: #fff;
  width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center;
  background: var(--grad-coral); margin-bottom: 22px;
}
.step h3 { font-size: 24px; margin-bottom: 10px; }
.step p { color: var(--ink-soft); font-size: 16px; }
.step .big-emoji { position: absolute; right: -10px; bottom: -14px; font-size: 84px; opacity: .08; }

/* ===========================================================
   Feature rows (alternating)
   =========================================================== */
.feature {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  gap: clamp(36px, 6vw, 90px); margin-bottom: clamp(80px, 11vw, 150px);
}
.feature:last-child { margin-bottom: 0; }
.feature.reverse .feat-media { order: 2; }
.feature .feat-tag {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px;
  padding: 7px 14px; border-radius: 100px; margin-bottom: 18px;
}
.feature h2 { font-size: clamp(30px, 4.4vw, 50px); margin-bottom: 16px; }
.feature p { font-size: clamp(16px, 1.9vw, 19px); color: var(--ink-soft); margin-bottom: 24px; }
.feat-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.feat-list li { display: flex; align-items: flex-start; gap: 12px; font-weight: 500; color: var(--ink); }
.feat-list li .tick { width: 24px; height: 24px; border-radius: 8px; display: grid; place-items: center; flex: none; color: #fff; font-size: 13px; font-weight: 800; margin-top: 2px; }

.feat-media { position: relative; display: flex; justify-content: center; }
.feat-media .glow { position: absolute; inset: 10% 14%; border-radius: 50%; filter: blur(60px); opacity: .5; z-index: 0; }
/* wrapper sized to the phone so callouts anchor to the device, not the column */
.feat-stage { position: relative; display: inline-block; }
/* floating callout card on the edge of a screenshot (like the hero chips) */
.feat-float {
  position: absolute; z-index: 5; width: clamp(150px, 15vw, 200px);
  border-radius: 18px; box-shadow: var(--shadow-lg);
  bottom: 9%; left: -16%;
}

/* ===========================================================
   Phone frame (device)
   =========================================================== */
.phone {
  position: relative; background: #1c1817; border-radius: 46px; padding: 11px;
  box-shadow: var(--shadow-phone); width: 290px;
}
/* Dynamic Island — free-floating black pill */
.phone::before {
  content: ''; position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  width: 84px; height: 25px; background: #000; border-radius: 100px; z-index: 4;
}
.phone img { border-radius: 36px; width: 100%; display: block; }
.phone.small { width: 240px; border-radius: 40px; padding: 9px; }
.phone.small::before { width: 68px; height: 20px; top: 18px; }
.phone.small img { border-radius: 32px; }

/* ===========================================================
   Privacy block
   =========================================================== */
.privacy-band { background: var(--ink); color: var(--cream); border-radius: var(--radius-lg); padding: clamp(44px, 6vw, 80px); position: relative; overflow: hidden; }
.privacy-band .eyebrow { background: rgba(155, 224, 194, .14); color: #9BE0C2; }
.privacy-band h2 { font-size: clamp(32px, 4.6vw, 54px); color: #fff; margin: 18px 0 16px; max-width: 760px; }
.privacy-band > .wrap-in > p { color: rgba(255, 255, 255, .72); font-size: clamp(16px, 2vw, 20px); max-width: 640px; }
.privacy-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 46px; }
.priv-card { background: rgba(255, 255, 255, .055); border: 1px solid rgba(255, 255, 255, .1); border-radius: 22px; padding: 28px; transition: transform .4s var(--ease), background .3s; }
.priv-card:hover { transform: translateY(-5px); background: rgba(255, 255, 255, .09); }
.priv-card .pic { width: 50px; height: 50px; border-radius: 15px; display: grid; place-items: center; font-size: 24px; background: var(--grad-mint); margin-bottom: 16px; }
.priv-card h3 { color: #fff; font-size: 21px; margin-bottom: 8px; }
.priv-card p { color: rgba(255, 255, 255, .68); font-size: 15px; }
.priv-glow { position: absolute; width: 420px; height: 420px; border-radius: 50%; background: #3FA37F; filter: blur(120px); opacity: .25; top: -120px; right: -80px; }

/* ===========================================================
   Stats counters
   =========================================================== */
.statbar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.statbar .stat .n { font-family: 'Fraunces', serif; font-size: clamp(40px, 6vw, 66px); font-weight: 700; background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.statbar .stat .l { color: var(--ink-soft); font-weight: 600; margin-top: 8px; font-size: 15px; }

/* ===========================================================
   Gallery
   =========================================================== */
.gallery { display: flex; justify-content: safe center; gap: 24px; overflow-x: auto; padding: 14px 24px 30px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.gallery::-webkit-scrollbar { height: 8px; }
.gallery::-webkit-scrollbar-thumb { background: rgba(150, 90, 70, .22); border-radius: 10px; }
.gallery .phone { flex: none; scroll-snap-align: center; }

/* ===========================================================
   CTA
   =========================================================== */
.cta-final { text-align: center; }
.cta-box { background: var(--grad-warm); border-radius: var(--radius-lg); padding: clamp(48px, 8vw, 96px) 24px; position: relative; overflow: hidden; }
.cta-box h2 { font-size: clamp(34px, 5.5vw, 66px); color: #fff; margin-bottom: 18px; }
.cta-box p { color: rgba(255, 255, 255, .9); font-size: clamp(17px, 2.2vw, 21px); max-width: 560px; margin: 0 auto 34px; }
.cta-peach { position: absolute; font-size: 130px; opacity: .16; }
.cta-peach.p1 { top: -20px; left: 4%; transform: rotate(-18deg); }
.cta-peach.p2 { bottom: -30px; right: 5%; transform: rotate(16deg); }

/* ===========================================================
   Footer
   =========================================================== */
.footer { padding: 70px 0 40px; }
.footer-grid { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 40px; border-bottom: 1px solid rgba(120, 80, 60, .14); }
.footer .brand { font-size: 26px; margin-bottom: 12px; }
.footer-col h4 { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; font-family: 'Inter', sans-serif; font-weight: 700; }
.footer-col a { display: block; color: var(--ink-soft); font-weight: 500; margin-bottom: 11px; transition: color .25s, transform .25s; }
.footer-col a:hover { color: var(--coral-deep); transform: translateX(3px); }
.footer-about { max-width: 300px; color: var(--ink-soft); font-size: 15px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding-top: 28px; color: var(--muted); font-size: 14px; }

/* ===========================================================
   Scroll reveal
   =========================================================== */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* float anim */
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
.floaty { animation: floaty 6s ease-in-out infinite; }
.floaty.slow { animation-duration: 8s; }
.floaty.delay { animation-delay: -3s; }

/* ===========================================================
   Legal pages
   =========================================================== */
.legal { padding: clamp(120px, 16vw, 170px) 0 90px; }
.legal .wrap { max-width: 800px; }
.legal h1 { font-size: clamp(38px, 6vw, 64px); margin-bottom: 12px; }
.legal .updated { color: var(--muted); font-weight: 600; margin-bottom: 40px; }
.legal h2 { font-size: clamp(24px, 3.4vw, 32px); margin: 44px 0 14px; }
.legal h3 { font-family: 'Inter', sans-serif; font-size: 19px; font-weight: 700; margin: 26px 0 8px; }
.legal p, .legal li { color: var(--ink-soft); font-size: 17px; margin-bottom: 14px; }
.legal ul { padding-left: 22px; margin-bottom: 14px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--coral-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.legal .callout { background: var(--cream-card); border-radius: var(--radius); padding: 26px 28px; box-shadow: var(--shadow-sm); margin: 24px 0; border-left: 4px solid var(--mint); }
.legal .callout p { margin: 0; color: var(--ink); font-weight: 500; }

/* ===========================================================
   Blog — index & articles
   =========================================================== */
/* shared page top spacing for blog pages (fixed nav clearance) */
.blog-top { padding-top: clamp(120px, 15vw, 160px); }

/* ---- Blog index ---- */
.blog-hero { text-align: center; max-width: 760px; margin: 0 auto clamp(40px, 6vw, 64px); }
.blog-hero h1 { font-size: clamp(40px, 6.4vw, 72px); margin: 18px 0 16px; }
.blog-hero p { font-size: clamp(17px, 2.1vw, 21px); color: var(--ink-soft); }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post-card {
  display: flex; flex-direction: column; background: var(--cream-card);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.post-card .thumb {
  aspect-ratio: 16 / 10; display: grid; place-items: center; font-size: 64px;
  position: relative; overflow: hidden;
}
.post-card .thumb::after { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,.08); }
.post-card .body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.post-card .cat { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--coral-deep); margin-bottom: 12px; }
.post-card h2 { font-size: 23px; line-height: 1.15; margin-bottom: 10px; }
.post-card p { color: var(--ink-soft); font-size: 15px; flex: 1; }
.post-card .more { margin-top: 18px; font-weight: 700; color: var(--coral-deep); font-size: 15px; }

/* category accent thumbs (no images needed) */
.thumb.t-mind   { background: var(--grad-coral); }
.thumb.t-screen { background: var(--grad-mint); }
.thumb.t-fit    { background: var(--grad-warm); }

/* ---- Article ---- */
.article { padding-bottom: 90px; }
.article .wrap { max-width: 760px; }
.article .breadcrumb { font-size: 14px; font-weight: 600; color: var(--muted); margin-bottom: 22px; }
.article .breadcrumb a { color: var(--coral-deep); }
.article-banner {
  border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 70px) clamp(28px, 5vw, 56px);
  margin-bottom: clamp(36px, 5vw, 52px); position: relative; overflow: hidden; color: #fff;
}
.article-banner .cat { font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; opacity: .92; }
.article-banner h1 { font-size: clamp(34px, 5.6vw, 60px); color: #fff; margin: 14px 0 18px; max-width: 18ch; }
.article-banner .meta { font-size: 14px; font-weight: 600; opacity: .92; display: flex; gap: 16px; flex-wrap: wrap; }
.article-banner .emoji { position: absolute; right: -10px; bottom: -28px; font-size: 150px; opacity: .18; }
.banner-mind   { background: var(--grad-coral); }
.banner-screen { background: var(--grad-mint); }
.banner-fit    { background: var(--grad-warm); }

/* prose */
.prose { color: var(--ink-soft); font-size: 18px; }
.prose > p { margin-bottom: 20px; }
.prose h2 { font-size: clamp(26px, 3.6vw, 34px); color: var(--ink); margin: 44px 0 14px; }
.prose h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: 22px; color: var(--ink); margin: 30px 0 10px; }
.prose strong { color: var(--ink); }
.prose ul, .prose ol { padding-left: 24px; margin-bottom: 22px; }
.prose li { margin-bottom: 9px; }
.prose a { color: var(--coral-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.prose blockquote {
  margin: 26px 0; padding: 4px 0 4px 22px; border-left: 4px solid var(--coral);
  font-family: 'Fraunces', Georgia, serif; font-style: italic; font-size: 22px; color: var(--ink);
}
.prose table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 16px; }
.prose th, .prose td { text-align: left; padding: 12px 14px; border-bottom: 1px solid rgba(120,80,60,.14); }
.prose th { font-family: 'Inter', sans-serif; font-weight: 700; color: var(--ink); }

/* key-takeaways / callout reused from .legal .callout but local for blog */
.kb { background: var(--cream-card); border-radius: var(--radius); padding: 24px 28px; box-shadow: var(--shadow-sm); margin: 8px 0 32px; border-left: 4px solid var(--mint); }
.kb p, .kb li { color: var(--ink); }
.kb strong { color: var(--ink); }

/* inline app CTA card inside articles */
.post-cta {
  background: var(--grad-warm); color: #fff; border-radius: var(--radius-lg);
  padding: clamp(34px, 5vw, 50px); text-align: center; margin: 48px 0; position: relative; overflow: hidden;
}
.post-cta .pc-peach { position: absolute; font-size: 120px; opacity: .15; top: -24px; right: 2%; transform: rotate(14deg); }
.post-cta h3 { font-size: clamp(24px, 3.4vw, 34px); color: #fff; margin-bottom: 12px; }
.post-cta p { color: rgba(255,255,255,.92); max-width: 460px; margin: 0 auto 24px; font-size: 17px; }
.post-cta .appstore { box-shadow: var(--shadow-lg); }

/* FAQ */
.faq { margin: 14px 0 8px; }
.faq details { background: var(--cream-card); border-radius: 18px; box-shadow: var(--shadow-sm); margin-bottom: 14px; padding: 4px 24px; }
.faq summary { cursor: pointer; list-style: none; padding: 18px 0; font-weight: 700; font-size: 18px; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 26px; font-weight: 400; color: var(--coral); transition: transform .3s var(--ease); flex: none; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--ink-soft); padding: 0 0 20px; font-size: 16px; margin: 0; }

/* related posts */
.related { margin-top: 70px; }
.related h2 { font-size: clamp(24px, 3.4vw, 32px); margin-bottom: 24px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-card { background: var(--cream-card); border-radius: 20px; padding: 22px 22px 24px; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.related-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.related-card .cat { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--coral-deep); }
.related-card h3 { font-family: 'Fraunces', serif; font-size: 19px; margin: 9px 0 0; line-height: 1.2; }

@media (max-width: 900px) {
  .post-grid { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .post-grid { grid-template-columns: 1fr; }
}

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 940px) {
  /* stacked hero: drop the mint/pink blobs that muddy the text; keep the warm top wash */
  .blob.b2, .blob.b3 { display: none; }
  .blob.b1 { width: 80vw; height: 80vw; top: -20vw; right: -10vw; opacity: .42; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero .lede { margin-left: auto; margin-right: auto; }
  .hero-cta, .hero-proof { justify-content: center; }
  .hero-stage { height: 540px; margin-top: 20px; }
  .feature, .feature.reverse { grid-template-columns: 1fr; text-align: center; }
  .feature .feat-media, .feature.reverse .feat-media { order: -1; }
  .feat-list { display: inline-flex; text-align: left; }
  .feature .feat-tag { margin-left: auto; margin-right: auto; }
  .steps { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .privacy-cards { grid-template-columns: 1fr; }
  .statbar { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
}

@media (max-width: 720px) {
  .nav-links { position: fixed; inset: 0 0 auto 0; top: 0; flex-direction: column; gap: 0;
    background: rgba(251, 241, 234, .97); backdrop-filter: blur(20px); padding: 90px 24px 30px;
    transform: translateY(-110%); transition: transform .45s var(--ease); box-shadow: var(--shadow-md); }
  .nav-links.open { transform: translateY(0); }
  .nav-links a.link { padding: 16px 0; font-size: 18px; width: 100%; text-align: center; border-bottom: 1px solid rgba(120,80,60,.08); }
  .nav-links .nav-cta { margin-top: 18px; width: 100%; }
  .nav-toggle { display: flex; z-index: 101; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .float-chip { display: none; }
  .feat-float { width: 150px; left: -2%; bottom: 2%; }
  .footer-grid { flex-direction: column; gap: 30px; }
}

@media (max-width: 420px) {
  .hero-stage .phone.back, .hero-stage .phone.back2 { display: none; }
  .hero-stage .phone.front { width: 80vw; max-width: 300px; }
  .statbar { grid-template-columns: 1fr; }
}
