/* ============================================================
   Menoup — Web Landing  ·  Light Mode
   Brand Book v2 tokens. Do not invent colors.
   ============================================================ */

:root {
  /* Foundation */
  --aubergine: #2A1F2B;
  --ivory: #F5EFE6;
  --paper: #FBF8F1;
  --rose-gold: #C9A876;
  --mocha: #8A6A4A;
  --blush: #E8D4C8;
  --bordeaux: #6B2737;
  --wine: #8B4A5C;
  --sage: #8E9A82;

  /* Functional accents (oklch ~0.78 / 0.09) */
  --acc-champagne: #D4B27A;
  --acc-aqua: #7FB8D9;
  --acc-lavender: #A89CDB;
  --acc-rose: #D99AB8;
  --acc-periwinkle: #8EA4D9;

  /* Text */
  --ink: #2A1F2B;
  --ink-soft: rgba(42, 31, 43, 0.62);
  --ink-faint: rgba(42, 31, 43, 0.40);
  --hairline: rgba(42, 31, 43, 0.12);

  /* Tweakable */
  --accent: #B83B73;       /* ciklámen — signal accent */
  --accent-on: #fff;       /* readable text on the accent fill */
  --orb-scale: 1;
  --orb-dur: 3.6s;

  /* Type */
  --f-display: 'Italiana', 'Times New Roman', serif;
  --f-editor: 'Cormorant Garamond', 'Times New Roman', serif;
  --f-ui: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --f-mono: 'JetBrains Mono', 'SFMono-Regular', ui-monospace, monospace;

  /* Layout */
  --maxw: 1200px;
  --shadow-soft: 0 18px 48px -24px rgba(42, 31, 43, 0.30);
  --shadow-card: 0 8px 28px -16px rgba(42, 31, 43, 0.22);
  --radius: 16px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: var(--f-ui);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

.eyebrow {
  font-family: var(--f-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
}

.display { font-family: var(--f-display); font-weight: 400; line-height: 1.02; letter-spacing: 0.005em; }
.editorial { font-family: var(--f-editor); font-style: italic; font-weight: 400; }
.accent-word { color: var(--accent); font-style: italic; font-family: var(--f-editor); }

/* ============================================================ NAV */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 248, 241, 0.72);
  -webkit-backdrop-filter: saturate(150%) blur(14px); backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.nav.scrolled {
  background: rgba(251, 248, 241, 0.9);
  border-bottom-color: var(--hairline);
  box-shadow: 0 8px 30px -18px rgba(42,31,43,0.32);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; gap: 24px;
  transition: height .3s ease;
}
.nav.scrolled .nav-inner { height: 64px; }

/* scroll progress line */
.nav-progress {
  position: absolute; left: 0; bottom: -1px; height: 2px; width: 100%;
  transform: scaleX(var(--nav-progress, 0)); transform-origin: left center;
  background: linear-gradient(90deg, var(--rose-gold), var(--accent) 55%, #8EA4D9);
  opacity: 0; transition: opacity .3s ease;
}
.nav.scrolled .nav-progress { opacity: 1; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 50%;
  position: relative; display: grid; place-items: center;
  background: radial-gradient(circle at 36% 30%, #fff 0%, var(--ivory) 60%, var(--blush) 100%);
  border: 1.5px solid var(--accent);
  box-shadow: 0 4px 12px -6px rgba(201, 168, 118, 0.6);
  transition: transform .25s cubic-bezier(.34,1.45,.5,1), box-shadow .25s ease;
}
.brand-mark .ring {
  position: absolute; inset: -1.5px; border-radius: 50%; border: 1.5px solid var(--accent);
  opacity: 0; pointer-events: none;
}
.brand:hover .brand-mark { transform: scale(1.07); box-shadow: 0 8px 18px -6px color-mix(in srgb, var(--accent) 70%, transparent); }
.brand:hover .brand-mark .ring { animation: brand-ping 1.6s ease-out infinite; }
.brand:hover .brand-mark .ring:nth-child(2) { animation-delay: .5s; }
@keyframes brand-ping { 0% { transform: scale(1); opacity: .55; } 70% { opacity: 0; } 100% { transform: scale(1.8); opacity: 0; } }
.brand-mark .bm-core { font-family: var(--f-display); font-size: 22px; color: var(--accent); transform: translateY(-1px); position: relative; z-index: 1; }
.brand-name { font-family: var(--f-display); font-size: 25px; letter-spacing: 0.12em; color: var(--ink); }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 14.5px; font-weight: 450; color: var(--ink-soft);
  transition: color .2s ease; position: relative; padding: 6px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; border-radius: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: center;
  transition: transform .28s cubic-bezier(.4,1,.4,1);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--ink); font-weight: 500; }
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-div { width: 1px; height: 26px; background: var(--hairline); margin: 0 2px; }
.nav-mobile-only { display: none !important; }

.btn {
  font-family: var(--f-ui); font-weight: 500; font-size: 14.5px;
  border-radius: 12px; padding: 11px 20px; cursor: pointer; border: 1px solid transparent;
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  transform: translateY(0);
  transition: transform .14s cubic-bezier(.34,1.45,.5,1), box-shadow .16s ease, filter .2s ease, border-color .2s ease;
}
.btn-primary {
  background: var(--accent); color: var(--accent-on);
  box-shadow:
    0 4px 0 0 color-mix(in srgb, var(--accent) 58%, #1a0f15),
    0 12px 22px -10px color-mix(in srgb, var(--accent) 70%, transparent),
    inset 0 1px 0 rgba(255,255,255,0.28);
}
.btn-primary:hover {
  filter: brightness(1.04); transform: translateY(-2px);
  box-shadow:
    0 6px 0 0 color-mix(in srgb, var(--accent) 58%, #1a0f15),
    0 20px 34px -12px color-mix(in srgb, var(--accent) 70%, transparent),
    inset 0 1px 0 rgba(255,255,255,0.32);
}
.btn-primary:active {
  transform: translateY(3px);
  box-shadow:
    0 1px 0 0 color-mix(in srgb, var(--accent) 58%, #1a0f15),
    0 6px 14px -10px color-mix(in srgb, var(--accent) 60%, transparent),
    inset 0 2px 5px rgba(26,15,21,0.28);
}
.btn-ghost {
  background: #fff; color: var(--ink); border-color: var(--hairline);
  box-shadow: 0 3px 0 0 rgba(201,168,118,0.28), 0 10px 20px -12px rgba(42,31,43,0.22), inset 0 1px 0 rgba(255,255,255,0.9);
}
.btn-ghost:hover {
  border-color: var(--accent); transform: translateY(-2px);
  box-shadow: 0 5px 0 0 rgba(201,168,118,0.34), 0 18px 30px -14px rgba(42,31,43,0.26), inset 0 1px 0 rgba(255,255,255,0.9);
}
.btn-ghost:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 0 rgba(201,168,118,0.28), 0 6px 14px -10px rgba(42,31,43,0.2), inset 0 2px 5px rgba(201,168,118,0.18);
}
.btn-dark {
  background: var(--aubergine); color: var(--ivory);
  box-shadow: 0 4px 0 0 #160f17, 0 12px 22px -12px rgba(42,31,43,0.5), inset 0 1px 0 rgba(255,255,255,0.12);
}
.btn-dark:hover { filter: brightness(1.12); transform: translateY(-2px); box-shadow: 0 6px 0 0 #160f17, 0 20px 34px -14px rgba(42,31,43,0.55), inset 0 1px 0 rgba(255,255,255,0.12); }
.btn-dark:active { transform: translateY(3px); box-shadow: 0 1px 0 0 #160f17, 0 6px 14px -10px rgba(42,31,43,0.45), inset 0 2px 5px rgba(0,0,0,0.3); }
.btn-hero {
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 600;
}

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--ink); margin: 5px 0; }

/* ============================================================ LANGUAGE SWITCHER */
.lang { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; border: 1px solid var(--hairline); border-radius: 12px;
  padding: 11px 13px; cursor: pointer; color: var(--ink); font-family: var(--f-ui);
  font-size: 14.5px; font-weight: 500;
  box-shadow: 0 3px 0 0 rgba(201,168,118,0.24), 0 8px 18px -12px rgba(42,31,43,0.2), inset 0 1px 0 rgba(255,255,255,0.9);
  transform: translateY(0);
  transition: transform .14s cubic-bezier(.34,1.45,.5,1), box-shadow .16s ease, border-color .2s ease;
}
.lang-btn:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 5px 0 0 rgba(201,168,118,0.3), 0 16px 26px -14px rgba(42,31,43,0.24), inset 0 1px 0 rgba(255,255,255,0.9); }
.lang-btn:active { transform: translateY(2px); box-shadow: 0 1px 0 0 rgba(201,168,118,0.24), 0 6px 12px -10px rgba(42,31,43,0.2), inset 0 2px 5px rgba(201,168,118,0.16); }
.lang-btn svg { width: 17px; height: 17px; color: var(--accent); }
.lang-btn .lang-code { letter-spacing: 0.06em; font-family: var(--f-mono); font-size: 12.5px; color: var(--ink-soft); }
.lang-btn .lang-chev { width: 13px; height: 13px; color: var(--ink-faint); opacity: 0.9; transition: transform .25s ease; }
.lang.open .lang-btn .lang-chev { transform: rotate(180deg); }
.lang.open .lang-btn { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 5px 0 0 rgba(201,168,118,0.3), 0 16px 26px -14px rgba(42,31,43,0.24), inset 0 1px 0 rgba(255,255,255,0.9); }

.lang-menu {
  position: absolute; top: calc(100% + 10px); right: 0; min-width: 210px;
  background: rgba(251, 248, 241, 0.92); backdrop-filter: saturate(140%) blur(16px);
  border: 1px solid var(--hairline); border-radius: 16px; padding: 7px;
  box-shadow: var(--shadow-soft); z-index: 60;
  opacity: 0; transform: translateY(-8px) scale(0.98); transform-origin: top right;
  pointer-events: none; transition: opacity .2s ease, transform .2s ease;
}
.lang.open .lang-menu { opacity: 1; transform: none; pointer-events: auto; }
.lang-opt {
  width: 100%; display: flex; align-items: center; gap: 10px;
  background: none; border: 0; cursor: pointer; border-radius: 11px;
  padding: 11px 12px; font-family: var(--f-ui); font-size: 15px; color: var(--ink);
  text-align: left; transition: background .15s ease;
}
.lang-opt:hover { background: rgba(201, 168, 118, 0.12); }
.lang-opt .ln { flex: 1; font-weight: 500; }
.lang-opt .lr { font-family: var(--f-mono); font-size: 11px; color: var(--ink-faint); letter-spacing: 0.04em; }
.lang-opt .lc { width: 17px; height: 17px; stroke: var(--accent); opacity: 0; flex-shrink: 0; }
.lang-opt.active { background: rgba(201, 168, 118, 0.10); }
.lang-opt.active .lc { opacity: 1; }
.lang-opt.active .lr { display: none; }

/* ============================================================ HERO */
.hero { position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(232, 212, 200, 0.55) 0%, rgba(232,212,200,0) 70%),
    radial-gradient(40% 40% at 85% 20%, rgba(201, 168, 118, 0.16) 0%, rgba(201,168,118,0) 70%),
    radial-gradient(40% 40% at 12% 30%, rgba(168, 156, 219, 0.12) 0%, rgba(168,156,219,0) 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; padding: 64px 32px 40px; }

/* Variant A — centered */
.hero-a { text-align: center; }
.hero-a .hero-copy { max-width: 860px; margin: 0 auto; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--hairline); border-radius: 999px;
  padding: 7px 16px 7px 8px; font-size: 13px; color: var(--ink-soft);
  box-shadow: var(--shadow-card); margin-bottom: 30px;
}
.hero-pill b { color: var(--ink); font-weight: 500; }
.hero-pill .dot { width: 22px; height: 22px; border-radius: 50%; background: var(--accent); color: var(--accent-on); display: grid; place-items: center; font-family: var(--f-display); font-size: 13px; }

.hero h1 { font-size: clamp(44px, 7.2vw, 92px); margin-bottom: 26px; }
.hero .lede {
  font-family: var(--f-editor); font-size: clamp(20px, 2.4vw, 27px);
  line-height: 1.45; color: var(--ink-soft); max-width: 600px;
}
.hero-a .lede { margin: 0 auto; }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero-a .cta-row { justify-content: center; }

.store-btn {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--aubergine); color: var(--ivory);
  border-radius: 14px; padding: 11px 20px;
  transform: translateY(0);
  box-shadow: 0 5px 0 0 #160f17, 0 14px 24px -14px rgba(42,31,43,0.55), inset 0 1px 0 rgba(255,255,255,0.13);
  transition: transform .14s cubic-bezier(.34,1.45,.5,1), box-shadow .16s ease, filter .2s ease;
}
.store-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 0 0 #160f17, 0 24px 36px -16px rgba(42,31,43,0.6), inset 0 1px 0 rgba(255,255,255,0.14); }
.store-btn:active { transform: translateY(3px); box-shadow: 0 1px 0 0 #160f17, 0 8px 16px -10px rgba(42,31,43,0.5), inset 0 2px 6px rgba(0,0,0,0.32); }
.store-btn svg { width: 24px; height: 24px; flex-shrink: 0; }
.store-btn .st-sub { font-size: 10.5px; letter-spacing: 0.04em; opacity: 0.78; line-height: 1; }
.store-btn .st-main { font-size: 17px; font-weight: 500; line-height: 1.15; }

.hero-note { margin-top: 20px; font-size: 13px; color: var(--ink-faint); display: flex; gap: 8px; align-items: center; justify-content: inherit; }
.hero-a .hero-note { justify-content: center; }

/* ============================================================ PHONE MOCKUP */
.phone-stage { position: relative; z-index: 1; display: grid; place-items: center; padding: 8px 0 0; }
.hero-a .phone-stage { margin-top: 56px; }

.phone {
  width: 320px; aspect-ratio: 320 / 612;
  background: #fff; border-radius: 28px;
  border: 9px solid #1f1620;
  box-shadow: 0 60px 120px -40px rgba(42,31,43,0.5), 0 0 0 2px rgba(201,168,118,0.18);
  position: relative; overflow: hidden;
  color: var(--ink);
}
.phone-notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 10px; height: 10px; background: #1f1620; border-radius: 50%; z-index: 5; }
.phone-screen { position: absolute; inset: 0; background: var(--paper); padding: 44px 16px 76px; overflow: hidden; display: flex; flex-direction: column; gap: 12px; }
.phone-screen.has-image { padding: 12px 0 0; background: #fff; }
.phone-screen.has-image img { width: 100%; height: calc(100% - 12px); object-fit: cover; display: block; }
.ph-statusbar { display: flex; justify-content: space-between; align-items: center; padding: 0 8px 6px; font-size: 12px; font-weight: 600; color: var(--ink); }
.ph-head { display: flex; align-items: center; justify-content: space-between; padding: 0 6px; }
.ph-head .ph-logo { font-family: var(--f-display); font-size: 19px; letter-spacing: 0.12em; }
.ph-head .ph-tag { font-size: 8.5px; letter-spacing: 0.26em; color: var(--ink-faint); text-transform: uppercase; }

.ph-card {
  background: #fff; border: 1.5px solid rgba(201,168,118,0.45); border-radius: 14px;
  padding: 13px 14px; box-shadow: 0 6px 16px -12px rgba(42,31,43,0.3);
  display: flex; flex-direction: column; gap: 7px;
}
.ph-card-top { display: flex; align-items: center; justify-content: space-between; }
.ph-val { font-family: var(--f-display); font-size: 23px; line-height: 1; }
.ph-val small { font-family: var(--f-ui); font-size: 11px; color: var(--ink-soft); margin-left: 2px; }
.ph-title { font-family: var(--f-editor); font-style: italic; font-size: 16px; color: var(--ink); }
.ph-sub { font-size: 11px; color: var(--ink-soft); }
.ph-chip { align-self: flex-start; font-size: 11px; padding: 5px 12px; border-radius: 999px; background: var(--ivory); color: var(--ink); border: 1px solid var(--hairline); }

/* orb badge inside phone + everywhere */
.orb-badge { position: relative; width: var(--bs, 38px); height: var(--bs, 38px); display: grid; place-items: center; flex-shrink: 0; }
.orb-badge .ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1.5px solid var(--bc, var(--accent)); opacity: 0;
  animation: aurora-pulse var(--orb-dur) ease-in-out infinite;
}
.orb-badge .ring:nth-child(2) { animation-delay: calc(var(--orb-dur) / 3); }
.orb-badge .ring:nth-child(3) { animation-delay: calc(var(--orb-dur) / 1.5); }
.orb-badge .core {
  position: relative; width: 100%; height: 100%; border-radius: 50%;
  background: #fff; border: 1.5px solid var(--bc, var(--accent));
  display: grid; place-items: center; box-shadow: 0 4px 12px -6px color-mix(in srgb, var(--bc, var(--accent)) 60%, transparent);
}
.orb-badge .core svg { width: 52%; height: 52%; stroke: var(--bc, var(--accent)); }

@keyframes aurora-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  80% { opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}

.ph-nav { position: absolute; bottom: 0; left: 0; right: 0; height: 64px; background: rgba(255,255,255,0.9); backdrop-filter: blur(8px); border-top: 1px solid var(--hairline); display: flex; align-items: center; justify-content: space-around; padding: 0 14px 8px; }
.ph-nav-item { display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: 8.5px; color: var(--ink-faint); }
.ph-nav-item.active { color: var(--ink); }
.ph-nav-item svg { width: 19px; height: 19px; stroke: currentColor; }
.ph-nav-orb { width: 26px; height: 26px; border-radius: 50%; background: var(--accent); display: grid; place-items: center; font-family: var(--f-display); font-size: 15px; color: var(--accent-on); }

/* trust strip under hero */
.trust { text-align: center; padding: 36px 32px 8px; position: relative; z-index: 1; }
.trust .label { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 18px; }
.trust-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 28px; }
.trust-chip { display: inline-flex; align-items: center; gap: 9px; color: var(--ink-soft); font-size: 13.5px; }
.trust-chip .tnum { font-family: var(--f-display); font-size: 26px; color: var(--ink); line-height: 1; }
.trust-stars { color: var(--accent); letter-spacing: 2px; font-size: 14px; }
.trust-logo { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.08em; color: var(--ink-faint); border: 1px solid var(--hairline); border-radius: 8px; padding: 8px 14px; background: #fff; }

/* ============================================================ SECTION SHELL */
section.band { padding: 96px 0; position: relative; }
.band.ivory { background: var(--ivory); }
.sec-head { max-width: 720px; margin-bottom: 56px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 { font-size: clamp(34px, 4.6vw, 56px); margin: 16px 0 18px; }
.sec-head p { font-family: var(--f-editor); font-size: clamp(18px, 2vw, 22px); color: var(--ink-soft); line-height: 1.5; }

/* ============================================================ FEATURES */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feat-card {
  background: #fff; border: 1.5px solid rgba(201,168,118,0.30); border-radius: var(--radius);
  padding: 30px 28px; cursor: pointer;
  box-shadow: 0 3px 0 0 rgba(201,168,118,0.20), 0 12px 26px -16px rgba(42,31,43,0.26), inset 0 1px 0 rgba(255,255,255,0.8);
  transition: transform .24s cubic-bezier(.22,.9,.3,1.25), box-shadow .24s ease, border-color .24s ease;
  display: flex; flex-direction: column; gap: 14px;
  position: relative; isolation: isolate;
}
.feat-card:hover {
  transform: translateY(-6px); border-color: color-mix(in srgb, var(--bc, var(--accent)) 55%, transparent);
  box-shadow: 0 6px 0 0 color-mix(in srgb, var(--bc, var(--accent)) 26%, transparent), 0 30px 54px -22px rgba(42,31,43,0.34), inset 0 1px 0 rgba(255,255,255,0.85);
}
.feat-card:active {
  transform: translateY(-2px);
  box-shadow: 0 3px 0 0 rgba(201,168,118,0.2), 0 16px 32px -20px rgba(42,31,43,0.3), inset 0 1px 0 rgba(255,255,255,0.8);
}
.feat-card h3 { font-family: var(--f-editor); font-style: italic; font-weight: 500; font-size: 25px; }
.feat-card p { font-size: 15px; color: var(--ink-soft); line-height: 1.55; }
.feat-card .feat-link { margin-top: auto; font-size: 14px; font-weight: 500; color: var(--bc, var(--accent)); display: inline-flex; align-items: center; gap: 7px; }
.feat-card .feat-link::after { content: ''; position: absolute; inset: 0; z-index: 1; border-radius: inherit; }
.feat-card .feat-link svg { width: 16px; height: 16px; stroke: currentColor; transition: transform .2s ease; }
.feat-card:hover .feat-link svg { transform: translateX(4px); }

/* ============================================================ HOW IT WORKS */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; counter-reset: step; }
.step { position: relative; padding-top: 12px; }
.step-num { font-family: var(--f-display); font-size: 54px; color: var(--accent); line-height: 1; opacity: 0.55; }
.step h3 { font-family: var(--f-editor); font-style: italic; font-size: 26px; margin: 8px 0 10px; }
.step p { font-size: 15px; color: var(--ink-soft); line-height: 1.6; max-width: 320px; }

/* ============================================================ MEET MONA */
.mona-split { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center; }
.mona-orb-big { position: relative; width: 320px; height: 320px; display: grid; place-items: center; margin: 0 auto; }
.mona-orb-big .ring { position: absolute; width: 220px; height: 220px; border-radius: 50%; border: 1.5px solid var(--rc, var(--accent)); opacity: 0; animation: aurora-pulse var(--orb-dur) ease-in-out infinite; transform-origin: center; }
.mona-orb-big .ring:nth-child(1) { --rc: var(--rose-gold); animation-delay: 0s; }
.mona-orb-big .ring:nth-child(2) { --rc: var(--acc-lavender); animation-delay: calc(var(--orb-dur)/3); }
.mona-orb-big .ring:nth-child(3) { --rc: var(--acc-rose); animation-delay: calc(var(--orb-dur)/1.5); }
.mona-orb-big .core {
  position: relative; width: calc(220px * var(--orb-scale)); height: calc(220px * var(--orb-scale)); border-radius: 50%;
  background: radial-gradient(circle at 36% 30%, #fff 0%, var(--ivory) 55%, var(--blush) 100%);
  border: 1.5px solid var(--accent); display: grid; place-items: center;
  box-shadow: 0 24px 60px -28px rgba(201,168,118,0.7), inset 0 0 30px rgba(255,255,255,0.6);
}
.mona-orb-big .core span { font-family: var(--f-display); font-size: calc(124px * var(--orb-scale)); color: var(--accent); transform: translateY(-4px); }

.mona-chat { display: flex; flex-direction: column; gap: 12px; max-width: 460px; margin-top: 28px; }
.bubble { border-radius: 16px; padding: 14px 17px; font-family: var(--f-editor); font-style: italic; font-size: 17px; line-height: 1.45; max-width: 90%; }
.bubble.mona { background: #fff; border: 1.5px solid rgba(201,168,118,0.4); align-self: flex-start; box-shadow: var(--shadow-card); font-style: normal; font-family: var(--f-ui); }
.bubble.you { background: var(--accent); color: var(--accent-on); align-self: flex-end; font-style: normal; font-family: var(--f-ui); font-size: 14.5px; }

/* ============================================================ TESTIMONIALS */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote-card { background: #fff; border: 1px solid var(--hairline); border-radius: var(--radius); padding: 30px 28px; box-shadow: 0 3px 0 0 rgba(201,168,118,0.16), 0 12px 26px -16px rgba(42,31,43,0.24), inset 0 1px 0 rgba(255,255,255,0.8); display: flex; flex-direction: column; gap: 18px; transition: transform .24s cubic-bezier(.22,.9,.3,1.25), box-shadow .24s ease; }
.quote-card:hover { transform: translateY(-5px); box-shadow: 0 5px 0 0 rgba(201,168,118,0.22), 0 28px 50px -22px rgba(42,31,43,0.32), inset 0 1px 0 rgba(255,255,255,0.85); }
.quote-card .stars { color: var(--accent); letter-spacing: 2px; font-size: 14px; }
.quote-card blockquote { font-family: var(--f-editor); font-style: italic; font-size: 20px; line-height: 1.5; color: var(--ink); }
.quote-card .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-family: var(--f-display); font-size: 19px; color: var(--aubergine); background: var(--ivory); border: 1.5px solid var(--accent); }
.who .nm { font-weight: 500; font-size: 14.5px; }
.who .rl { font-size: 12.5px; color: var(--ink-soft); }

/* ============================================================ PRICING */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card { background: #fff; border: 1.5px solid var(--hairline); border-radius: 20px; padding: 34px 30px; display: flex; flex-direction: column; gap: 8px; box-shadow: 0 3px 0 0 rgba(201,168,118,0.18), 0 14px 30px -18px rgba(42,31,43,0.26), inset 0 1px 0 rgba(255,255,255,0.8); transition: transform .24s cubic-bezier(.22,.9,.3,1.25), box-shadow .24s ease, border-color .24s ease; }
.price-card:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--accent) 45%, var(--hairline)); box-shadow: 0 6px 0 0 rgba(201,168,118,0.26), 0 32px 58px -24px rgba(42,31,43,0.34), inset 0 1px 0 rgba(255,255,255,0.85); }
.price-card.featured { border-color: var(--accent); box-shadow: 0 5px 0 0 color-mix(in srgb, var(--accent) 40%, transparent), 0 28px 64px -28px rgba(201,168,118,0.6), inset 0 1px 0 rgba(255,255,255,0.85); position: relative; }
.price-card.featured:hover { transform: translateY(-6px); box-shadow: 0 8px 0 0 color-mix(in srgb, var(--accent) 42%, transparent), 0 40px 74px -30px rgba(201,168,118,0.62), inset 0 1px 0 rgba(255,255,255,0.85); }
.price-card.featured::after { content: var(--badge-popular, "Most popular"); position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--accent-on); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; }
.price-card .tier { font-family: var(--f-editor); font-style: italic; font-size: 24px; }
.price-card .amt { font-family: var(--f-display); font-size: 48px; line-height: 1.1; }
.price-card .amt small { font-family: var(--f-ui); font-size: 15px; color: var(--ink-soft); }
.price-card .pdesc { font-size: 14px; color: var(--ink-soft); margin-bottom: 8px; }
.price-card ul { list-style: none; display: flex; flex-direction: column; gap: 11px; margin: 12px 0 22px; }
.price-card li { display: flex; gap: 10px; font-size: 14.5px; color: var(--ink); align-items: flex-start; }
.price-card li svg { width: 18px; height: 18px; stroke: var(--accent); flex-shrink: 0; margin-top: 1px; }
.price-card .btn { justify-content: center; margin-top: auto; }

/* ============================================================ FAQ */
.faq-list { max-width: 800px; margin: 0 auto; border-top: 1px solid var(--hairline); }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-q { width: 100%; background: none; border: 0; cursor: pointer; text-align: left; padding: 24px 8px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-family: var(--f-ui); font-size: 18px; font-weight: 500; color: var(--ink); }
.faq-q .icon { width: 22px; height: 22px; flex-shrink: 0; position: relative; transition: transform .3s ease; }
.faq-q .icon::before, .faq-q .icon::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; }
.faq-q .icon::before { width: 16px; height: 1.8px; top: 10px; left: 3px; }
.faq-q .icon::after { width: 1.8px; height: 16px; top: 3px; left: 10px; transition: opacity .3s ease; }
.faq-item.open .faq-q .icon::after { opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 8px 26px; font-family: var(--f-editor); font-size: 18px; line-height: 1.55; color: var(--ink-soft); max-width: 680px; }

/* ============================================================ CLOSING CTA */
.closing { background: var(--aubergine); color: var(--ivory); border-radius: 32px; padding: 80px 48px; text-align: center; position: relative; overflow: hidden; }
.closing::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 80% at 50% 0%, rgba(201,168,118,0.22) 0%, rgba(201,168,118,0) 70%); }
.closing > * { position: relative; z-index: 1; }
.closing h2 { font-family: var(--f-display); font-size: clamp(36px, 5vw, 64px); margin-bottom: 18px; }
.closing .accent-word { color: var(--accent); }
.closing p { font-family: var(--f-editor); font-style: italic; font-size: 22px; color: rgba(245,239,230,0.78); max-width: 520px; margin: 0 auto 36px; }
.closing .cta-row { justify-content: center; }
.closing .store-btn { background: var(--ivory); color: var(--aubergine); }

/* ============================================================ FOOTER */
footer { background: var(--paper); border-top: 1px solid var(--hairline); padding: 64px 0 40px; }
.foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.foot-brand .brand-name { display: block; margin: 14px 0 12px; }
.foot-brand p { font-family: var(--f-editor); font-style: italic; font-size: 17px; color: var(--ink-soft); max-width: 280px; }
.foot-col h4 { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 16px; font-weight: 600; }
.foot-col a { display: block; font-size: 14.5px; color: var(--ink-soft); padding: 6px 0; transition: color .2s ease; }
.foot-col a:hover { color: var(--accent); }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; border-top: 1px solid var(--hairline); font-size: 13px; color: var(--ink-faint); gap: 16px; flex-wrap: wrap; }

/* ============================================================ REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .orb-badge .ring, .mona-orb-big .ring { animation: none; opacity: 0.18; }
}

/* ============================================================ HERO VARIANT B (split) */
body[data-hero="b"] .hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; max-width: var(--maxw); margin: 0 auto; padding: 72px 32px 64px; }
body[data-hero="b"] .hero-a { text-align: left; }
body[data-hero="b"] .hero-copy { max-width: 560px; margin: 0; }
body[data-hero="b"] .hero-a .lede { margin: 0; }
body[data-hero="b"] .hero-a .cta-row { justify-content: flex-start; }
body[data-hero="b"] .hero-a .hero-note { justify-content: flex-start; }
body[data-hero="b"] .phone-stage { margin-top: 0; }
body[data-hero="b"] .hero::before { background:
    radial-gradient(50% 60% at 88% 35%, rgba(232, 212, 200, 0.6) 0%, rgba(232,212,200,0) 72%),
    radial-gradient(40% 40% at 95% 75%, rgba(168, 156, 219, 0.16) 0%, rgba(168,156,219,0) 70%); }

/* ============================================================ RESPONSIVE */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links { display: flex; flex-direction: column; position: absolute; top: 76px; left: 0; right: 0; background: var(--paper); border-bottom: 1px solid var(--hairline); padding: 20px 32px 28px; gap: 8px; align-items: flex-start; }
  .nav.open .nav-links a { padding: 8px 0; font-size: 17px; }
  .nav.open .nav-links .nav-mobile-only { display: inline-flex !important; }
  .feat-grid, .steps, .quote-grid, .price-grid { grid-template-columns: 1fr 1fr; }
  body[data-hero="b"] .hero-inner { grid-template-columns: 1fr; text-align: center; }
  body[data-hero="b"] .hero-copy { margin: 0 auto; }
  body[data-hero="b"] .hero-a, body[data-hero="b"] .hero-a .lede { text-align: center; }
  body[data-hero="b"] .hero-a .cta-row, body[data-hero="b"] .hero-a .hero-note { justify-content: center; }
  body[data-hero="b"] .phone-stage { margin-top: 40px; }
  .mona-split { grid-template-columns: 1fr; gap: 36px; }
  .foot-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  body[data-hero="c"] .float-card { display: none !important; }
}
@media (max-width: 620px) {
  .wrap, .hero-inner, body[data-hero="b"] .hero-inner { padding-left: 20px; padding-right: 20px; }
  .feat-grid, .steps, .quote-grid, .price-grid { grid-template-columns: 1fr; }
  .price-card.featured { order: -1; }
  section.band { padding: 64px 0; }
  .brand-name { display: none; }
  .nav-cta .btn-ghost, .nav-cta .btn-primary, .nav-cta .nav-div { display: none !important; }
  .closing { padding: 56px 24px; border-radius: 24px; }
  .foot-top { grid-template-columns: 1fr; gap: 28px; }
  .phone { width: 280px; }
}

/* ============================================================ HERO VARIANT C — editorial / signature */
.hero-c-only { display: none; }
body[data-hero="c"] .hero-c-only { display: flex; }

body[data-hero="c"] .hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  grid-template-areas: "copy phone" "trust trust";
  align-items: center;
  column-gap: 36px;
  padding: 28px max(28px, calc((100% - var(--maxw)) / 2)) 56px;
}
body[data-hero="c"] .hero::before {
  background:
    radial-gradient(38% 50% at 16% 22%, rgba(201,168,118,0.22) 0%, rgba(201,168,118,0) 70%),
    radial-gradient(46% 56% at 82% 28%, rgba(184,59,115,0.12) 0%, rgba(184,59,115,0) 72%),
    radial-gradient(50% 60% at 70% 88%, rgba(142,164,217,0.16) 0%, rgba(142,164,217,0) 72%);
}
body[data-hero="c"] .hero-inner { grid-area: copy; max-width: 620px; padding: 0; margin: 0; text-align: left; }
body[data-hero="c"] .hero-copy { max-width: 620px; margin: 0; }
body[data-hero="c"] .hero-a .lede,
body[data-hero="c"] .hero .lede { margin: 0; max-width: 540px; }
body[data-hero="c"] .hero-a .cta-row,
body[data-hero="c"] .hero-a .hero-note { justify-content: flex-start; }
body[data-hero="c"] .hero h1 { font-size: clamp(46px, 5.6vw, 86px); margin-bottom: 0; line-height: 1.03; }
body[data-hero="c"] .trust { grid-area: trust; margin-top: 44px; }

/* kicker */
body[data-hero="c"] .hero-kicker {
  display: inline-flex; align-items: center; gap: 10px; align-self: flex-start;
  background: #fff; border: 1px solid var(--hairline); border-radius: 999px;
  padding: 7px 16px 7px 7px; box-shadow: var(--shadow-card);
  font-size: 13px; font-weight: 500; color: var(--ink-soft); margin-bottom: 24px;
}
body[data-hero="c"] .hero-kicker .hk-orb {
  width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center;
  background: radial-gradient(circle at 35% 30%, #3a2c3c 0%, #1b1330 60%, #0e1027 100%);
  border: 1px solid var(--rose-gold); color: #E8CF9E;
  font-family: var(--f-display); font-size: 13px; line-height: 1;
}

/* signature balance wave under headline */
body[data-hero="c"] .balance-wave { display: block; width: min(420px, 100%); height: 30px; margin: 14px 0 26px; }
body[data-hero="c"] .balance-wave svg { width: 100%; height: 100%; overflow: visible; }
.bw-pulse { transform-origin: 210px 28px; animation: bw-ping 2.8s ease-out infinite; }
@keyframes bw-ping { 0% { transform: scale(1); opacity: 0.6; } 70% { transform: scale(3.4); opacity: 0; } 100% { opacity: 0; } }

/* phone stage becomes a positioning canvas */
body[data-hero="c"] .phone-stage { grid-area: phone; position: relative; margin: 0; padding: 0; min-height: 660px; }
body[data-hero="c"] .phone-stage .phone { position: relative; z-index: 2; }

/* aurora field behind phone — gradient halo (no blend/blur, renders crisp) */
body[data-hero="c"] .aurora-field { position: absolute; inset: -6% -10%; display: block; z-index: 0; pointer-events: none; border-radius: 50%;
  background:
    radial-gradient(34% 30% at 24% 22%, rgba(201,168,118,0.34) 0%, rgba(201,168,118,0) 70%),
    radial-gradient(36% 32% at 80% 26%, rgba(168,156,219,0.30) 0%, rgba(168,156,219,0) 72%),
    radial-gradient(40% 36% at 30% 84%, rgba(184,59,115,0.20) 0%, rgba(184,59,115,0) 72%),
    radial-gradient(38% 34% at 82% 80%, rgba(142,164,217,0.26) 0%, rgba(142,164,217,0) 72%);
  animation: af-breathe 9s ease-in-out infinite;
}
body[data-hero="c"] .aurora-field i { display: none; }
@keyframes af-breathe { 0%,100% { transform: scale(1); opacity: 0.9; } 50% { transform: scale(1.06); opacity: 1; } }

/* floating insight cards */
body[data-hero="c"] .float-card {
  position: absolute; z-index: 3;
  background: var(--accent);
  color: var(--accent-on);
  border-radius: 18px;
  box-shadow: 0 16px 36px -16px rgba(42,31,43,0.5);
  padding: 12px 16px;
  font-family: var(--f-ui);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  max-width: 240px;
  animation: fc-float 6s ease-in-out infinite;
}
body[data-hero="c"] .float-card.fc-balance { top: 8%; left: 2%; border-top-right-radius: 6px; }
body[data-hero="c"] .float-card.fc-mona { top: 30%; right: 2%; max-width: 240px; animation-delay: -2s; border-top-left-radius: 6px; }
body[data-hero="c"] .float-card.fc-flush { bottom: 12%; left: 4%; max-width: 240px; animation-delay: -4s; border-top-right-radius: 6px; }
@keyframes fc-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

body[data-hero="c"] .fc-body { display: flex; flex-direction: column; gap: 1px; }
body[data-hero="c"] .fc-label { font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint); }
body[data-hero="c"] .fc-num { font-family: var(--f-display); font-size: 22px; color: var(--ink); line-height: 1; }
body[data-hero="c"] .fc-num small { font-family: var(--f-ui); font-size: 11px; color: var(--ink-soft); margin-left: 1px; }
body[data-hero="c"] .fc-mona-head { display: flex; align-items: center; gap: 8px; font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint); }
body[data-hero="c"] .fc-quote { font-family: var(--f-editor); font-style: italic; font-size: 15px; line-height: 1.35; color: var(--ink); }
body[data-hero="c"] .fc-flush .fc-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 18%, transparent); flex-shrink: 0; }

@media (prefers-reduced-motion: reduce) {
  body[data-hero="c"] .aurora-field,
  body[data-hero="c"] .float-card,
  .bw-pulse { animation: none; }
}

@media (max-width: 980px) {
  body[data-hero="c"] .hero {
    grid-template-columns: 1fr; grid-template-areas: "copy" "phone" "trust";
    justify-items: center; row-gap: 8px; padding-top: 44px;
  }
  body[data-hero="c"] .hero-inner { text-align: center; justify-items: center; max-width: 640px; }
  body[data-hero="c"] .hero-copy { display: flex; flex-direction: column; align-items: center; }
  body[data-hero="c"] .hero-a .cta-row, body[data-hero="c"] .hero-a .hero-note { justify-content: center; }
  body[data-hero="c"] .hero .lede { margin: 0 auto; }
  body[data-hero="c"] .balance-wave { margin-left: auto; margin-right: auto; }
  body[data-hero="c"] .phone-stage { min-height: 0; margin-top: 28px; }
  body[data-hero="c"] .float-card.fc-balance { left: 2%; top: 8%; }
  body[data-hero="c"] .float-card.fc-mona { right: 2%; top: 30%; }
  body[data-hero="c"] .float-card.fc-flush { left: 4%; bottom: 12%; }
}
@media (max-width: 600px) {
  body[data-hero="c"] .float-card.fc-mona { display: none !important; }
  body[data-hero="c"] .float-card.fc-balance { left: 2%; top: 8%; }
  body[data-hero="c"] .float-card.fc-flush { left: 4%; bottom: 12%; }
}

/* ============================================================ BAND DARK */
.band.dark {
  background: var(--aubergine);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.band.dark::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 50% at 50% 100%, rgba(201, 168, 118, 0.14) 0%, rgba(201,168,118,0) 70%);
  pointer-events: none;
}
.band.dark .sec-head h2 { color: var(--rose-gold); }
.band.dark .sec-head p { color: rgba(245, 239, 230, 0.7); }
.band.dark .sec-head .eyebrow { color: var(--rose-gold); }

/* ============================================================ PRICING TOGGLE */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 40px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.billing-toggle .active-mode {
  color: var(--accent);
  font-weight: 600;
}
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
}
.toggle-switch input {
  opacity: 0; width: 0; height: 0;
}
.toggle-slider {
  position: absolute; cursor: pointer; inset: 0;
  background-color: var(--hairline);
  transition: .25s ease;
  border-radius: 28px;
  border: 1px solid var(--hairline);
}
.toggle-slider:before {
  position: absolute; content: "";
  height: 20px; width: 20px; left: 3px; bottom: 3px;
  background-color: #fff;
  transition: .25s cubic-bezier(.34,1.45,.5,1);
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(42,31,43,0.18);
}
input:checked + .toggle-slider {
  background-color: var(--accent);
  border-color: var(--accent);
}
input:checked + .toggle-slider:before {
  transform: translateX(24px);
}
.billing-toggle .discount-badge {
  background: var(--blush);
  color: var(--bordeaux);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

/* ============================================================ BLOG LISTING & CARDS */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
  justify-content: center;
}
.filter-btn {
  background: #fff;
  border: 1px solid var(--hairline);
  color: var(--ink-soft);
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s ease;
}
.filter-btn:hover {
  border-color: var(--accent);
  color: var(--ink);
}
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-on);
  box-shadow: 0 4px 12px -5px color-mix(in srgb, var(--accent) 50%, transparent);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 168, 118, 0.5);
  box-shadow: var(--shadow-soft);
}
.blog-cover {
  width: 100%;
  aspect-ratio: 16 / 10;
  background-color: var(--ivory);
  background-size: cover;
  background-position: center;
  position: relative;
}
.blog-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.category-badge {
  align-self: flex-start;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--mocha);
  border: 1px solid rgba(138, 106, 74, 0.28);
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.blog-card h3 {
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 1.25;
  color: var(--ink);
}
.blog-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 12px;
}
.blog-meta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: var(--ink-faint);
  border-top: 1px solid var(--hairline);
  padding-top: 14px;
}
.blog-read-link {
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.blog-read-link svg {
  width: 14px; height: 14px;
  stroke: currentColor;
  transition: transform .2s ease;
}
.blog-card:hover .blog-read-link svg {
  transform: translateX(3px);
}

/* ============================================================ BLOG POST READER */
.post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 48px;
  align-items: start;
}
.post-article {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.post-hero {
  margin-bottom: 30px;
}
.post-hero .post-title {
  font-family: var(--f-display);
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.15;
  margin: 12px 0 16px;
  color: var(--ink);
}
.post-author-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 20px;
}
.post-author-bar .author-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--blush);
  border: 1px solid var(--rose-gold);
  display: grid; place-items: center;
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.post-body {
  font-family: var(--f-editor);
  font-size: 19.5px;
  line-height: 1.68;
  color: var(--ink);
}
.post-body p {
  margin-bottom: 24px;
}
.post-body h2, .post-body h3 {
  font-family: var(--f-display);
  font-weight: 400;
  margin: 40px 0 16px;
  line-height: 1.2;
}
.post-body h2 { font-size: 28px; color: var(--accent); }
.post-body h3 { font-size: 22px; color: var(--ink); }
.post-body ul, .post-body ol {
  margin-bottom: 24px;
  padding-left: 24px;
}
.post-body li {
  margin-bottom: 10px;
}
.post-body blockquote {
  font-style: italic;
  font-size: 22px;
  border-left: 3px solid var(--accent);
  padding-left: 24px;
  margin: 32px 0;
  color: var(--mocha);
  line-height: 1.5;
}

.post-body .medical-note {
  font-style: italic;
}

.post-sidebar {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sidebar-box {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.sidebar-box h4 {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 16px;
  font-weight: 600;
}
.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toc-list a {
  font-size: 14px;
  color: var(--ink-soft);
  transition: color .2s ease;
  line-height: 1.4;
}
.toc-list a:hover {
  color: var(--accent);
}
.related-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.related-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.related-item span {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--ink-faint);
  letter-spacing: 0.05em;
}
.related-item a {
  font-family: var(--f-editor);
  font-style: italic;
  font-size: 16px;
  line-height: 1.35;
  color: var(--ink);
  transition: color .2s ease;
}
.related-item a:hover {
  color: var(--accent);
}

@media (max-width: 980px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
}
@media (max-width: 620px) {
  .blog-grid { grid-template-columns: 1fr; }
  .post-article { padding: 24px; }
  .post-body { font-size: 18px; line-height: 1.6; }
}

/* ============================================================ MONA TRY (interactive preview) */
.mona-try { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.mona-try-label { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
.mona-try-row { display: flex; gap: 10px; align-items: flex-end; }
.mona-try-input {
  flex: 1; padding: 12px 15px; border: 1.5px solid rgba(201,168,118,0.45); border-radius: 14px;
  font-family: var(--f-ui); font-size: 15px; color: var(--ink); background: #fff;
  resize: none; outline: none; line-height: 1.45; transition: border-color .2s;
}
.mona-try-input:focus { border-color: var(--accent); }
.mona-try-btn {
  padding: 11px 20px; background: var(--accent); color: #2A1F2B; border: none; border-radius: 12px;
  font-family: var(--f-ui); font-size: 14px; font-weight: 600; cursor: pointer;
  white-space: nowrap; transition: opacity .2s, transform .15s;
}
.mona-try-btn:disabled { opacity: 0.4; cursor: default; }
.mona-try-btn:not(:disabled):hover { opacity: 0.88; transform: translateY(-1px); }
.bubble.mona-thinking { padding: 14px 20px; }
.mona-dots { display: flex; gap: 6px; align-items: center; }
.mona-dots span {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(201,168,118,0.75);
  animation: monadot 1.2s ease-in-out infinite;
}
.mona-dots span:nth-child(2) { animation-delay: 0.2s; }
.mona-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes monadot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.35; }
  30% { transform: translateY(-6px); opacity: 1; }
}
.mona-try-limit-msg {
  font-family: var(--f-ui); font-size: 14px; color: var(--ink-soft);
  padding: 12px 16px; background: rgba(201,168,118,0.10); border-radius: 12px;
}
.mona-try-cta {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 14px;
  padding: 13px 22px; background: var(--accent); color: #2A1F2B; border-radius: 12px;
  font-family: var(--f-ui); font-size: 15px; font-weight: 600;
  text-decoration: none; transition: opacity .2s, transform .15s;
}
.mona-try-cta:hover { opacity: 0.88; transform: translateY(-1px); }


