/* =============================================================
   AGI Solutions — Sunshine Optimism
   Designed: warm, hopeful, confident. Anchored by espresso.
   ============================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Palette */
  --bg:           #FFF8EE;
  --bg-warm:      #FFF1DF;
  --surface:      #FFFFFF;
  --peach:        #FFE9D6;
  --peach-deep:   #FFD4B0;
  --coral:        #FF6B4A;
  --coral-mid:    #FFB088;
  --coral-deep:   #E64A24;
  --honey:        #FFD23F;
  --honey-deep:   #F2B500;
  --espresso:     #2D1B14;
  --cocoa:        #5C4634;
  --taupe:        #8B7560;
  --line:         #EAD9C2;
  --line-deep:    #D4BF9F;
  --shadow:       0 1px 2px rgba(45,27,20,.04), 0 12px 32px -8px rgba(45,27,20,.10);
  --shadow-lg:    0 4px 8px rgba(45,27,20,.06), 0 30px 60px -12px rgba(45,27,20,.18);
  --shadow-coral: 0 8px 22px -6px rgba(255,107,74,.55);

  /* Layout */
  --page: clamp(1.25rem, 5vw, 5rem);
  --max:  1280px;
  --max-narrow: 980px;
  --radius:    22px;
  --radius-s:  12px;
  --radius-xs: 8px;
  --radius-l:  36px;
  --radius-pill: 999px;

  /* Type */
  --f-display: 'Fraunces', 'Georgia', serif;
  --f-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --display-vars: 'opsz' 144, 'SOFT' 50, 'wght' 460;
  --small-vars:   'opsz' 14, 'SOFT' 30, 'wght' 460;

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --dur: 280ms;
  --dur-slow: 600ms;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--espresso);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
input, textarea, select { font: inherit; color: inherit; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
::selection { background: var(--coral); color: #fff; }
:focus-visible {
  outline: 2px solid var(--espresso);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute; left: 1rem; top: 1rem;
  background: var(--espresso); color: var(--bg);
  padding: .75rem 1rem; border-radius: var(--radius-s);
  transform: translateY(-200%); transition: transform .2s;
  z-index: 200;
}
.skip-link:focus { transform: translateY(0); }

/* ---------- Buttons (Inter, no Fraunces) ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.25rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: -.005em;
  line-height: 1;
  transition: transform var(--dur) var(--ease), background var(--dur), color var(--dur), box-shadow var(--dur);
  white-space: nowrap;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.btn svg { width: 18px; height: 18px; }
.btn-large { padding: 1.05rem 1.6rem; font-size: 1.025rem; }
.btn-large svg { width: 20px; height: 20px; }

.btn-primary {
  background: var(--espresso); color: var(--bg);
  box-shadow: 0 1px 0 rgba(255,255,255,.1) inset, 0 8px 20px -6px rgba(45,27,20,.4);
}
.btn-primary:hover { transform: translateY(-2px); background: #3e2519; box-shadow: 0 1px 0 rgba(255,255,255,.12) inset, 0 14px 28px -6px rgba(45,27,20,.5); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent; color: var(--espresso);
  border: 1.5px solid var(--espresso);
}
.btn-ghost:hover { background: var(--espresso); color: var(--bg); transform: translateY(-2px); }

.btn-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: var(--radius-pill);
  color: var(--espresso);
  transition: background var(--dur);
}
.btn-icon:hover { background: var(--peach); }
.btn-icon svg { width: 22px; height: 22px; }

.ghost-link {
  color: var(--cocoa); font-weight: 500; font-size: .92rem;
  padding: .5rem .85rem; border-radius: var(--radius-pill);
  transition: color var(--dur), background var(--dur);
}
.ghost-link:hover { color: var(--espresso); background: var(--peach); }

.text-link {
  color: var(--coral-deep); font-weight: 600;
  border-bottom: 1.5px solid currentColor; padding-bottom: 2px;
  background: none; cursor: pointer;
  font-size: inherit;
}
.text-link:hover { color: var(--espresso); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; gap: 2rem;
  padding: .9rem var(--page);
  background: rgba(255,248,238,.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur), background var(--dur);
}
.site-header.is-scrolled {
  background: rgba(255,248,238,.92);
  border-bottom-color: var(--line);
}

.brand {
  display: inline-flex; align-items: center; gap: .65rem;
  color: var(--espresso); font-weight: 700; letter-spacing: -.02em;
  font-size: 1.05rem;
}
.brand-mark {
  width: 32px; height: 32px;
  display: inline-grid; place-items: center;
  background: var(--coral);
  border-radius: 9px;
  color: var(--bg);
  box-shadow: var(--shadow-coral);
  transition: transform var(--dur) var(--ease);
}
.brand:hover .brand-mark { transform: rotate(-8deg) scale(1.04); }
.brand-mark svg { width: 22px; height: 22px; }
.brand-word { font-family: var(--f-body); }

.primary-nav {
  display: flex; align-items: center; gap: .4rem;
  margin-inline-start: auto;
}
.primary-nav a {
  font-weight: 500; font-size: .94rem;
  color: var(--cocoa);
  padding: .55rem .85rem; border-radius: var(--radius-pill);
  transition: color var(--dur), background var(--dur);
}
.primary-nav a:hover { color: var(--espresso); background: var(--peach); }

.header-actions { display: flex; align-items: center; gap: .4rem; }
.menu-toggle { display: none; }

/* ---------- Section scaffold ---------- */
.section {
  padding: clamp(4rem, 9vw, 8rem) var(--page);
  position: relative;
}
.section-head {
  max-width: var(--max-narrow);
  margin: 0 auto clamp(2.5rem, 5vw, 4.5rem);
  text-align: center;
}
.kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--coral-deep);
  padding: .35rem .8rem;
  background: var(--peach);
  border-radius: var(--radius-pill);
  margin-bottom: 1.1rem;
}
.kicker::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: var(--coral);
}
h1, h2, h3, .display { font-family: var(--f-display); font-variation-settings: var(--display-vars); }
h1, h2 { letter-spacing: -.025em; line-height: 1.02; margin: 0; }
h2 {
  font-size: clamp(2.1rem, 4.5vw, 3.6rem);
  color: var(--espresso);
  font-weight: 500;
}
h2 em { font-style: italic; color: var(--coral-deep); font-weight: 460; }
.lede {
  margin: 1.1rem auto 0;
  max-width: 36em;
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  color: var(--cocoa);
  line-height: 1.55;
}

/* ---------- Reveal animations ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  padding: clamp(2rem, 5vw, 4rem) var(--page) 0;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-bg .sun {
  position: absolute; top: -180px; right: -120px;
  width: 540px; height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--honey) 0%, rgba(255,210,63,.4) 45%, transparent 70%);
  filter: blur(8px);
  opacity: .85;
}
.hero-bg .ray {
  position: absolute; top: -40%; left: 35%;
  width: 80px; height: 200%;
  background: linear-gradient(180deg, transparent, rgba(255,176,136,.25), transparent);
  transform-origin: top center;
  filter: blur(20px);
}
.hero-bg .ray-1 { transform: rotate(8deg) translateX(0); opacity: .8; }
.hero-bg .ray-2 { left: 55%; transform: rotate(-4deg); opacity: .5; }
.hero-bg .ray-3 { left: 78%; transform: rotate(12deg); width: 140px; opacity: .35; }

.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem) 0;
}
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
}

.hero-copy { max-width: 36rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: .45rem .85rem;
  border-radius: var(--radius-pill);
  font-size: .82rem; font-weight: 500;
  color: var(--cocoa);
  box-shadow: var(--shadow);
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2bd573;
  box-shadow: 0 0 0 4px rgba(43,213,115,.22);
  animation: pulse-dot 2.4s var(--ease) infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(43,213,115,.22); }
  50%      { box-shadow: 0 0 0 8px rgba(43,213,115,0); }
}

.hero-title {
  font-family: var(--f-display);
  font-variation-settings: 'opsz' 144, 'SOFT' 80, 'wght' 460;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: .98;
  letter-spacing: -.03em;
  margin: 1.25rem 0 1.25rem;
  color: var(--espresso);
}
.hero-title em {
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'wght' 460;
  color: var(--coral-deep);
}
.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  color: var(--cocoa);
  max-width: 32em;
  margin: 0 0 1.75rem;
}
.hero-cta-row {
  display: flex; flex-wrap: wrap; gap: .75rem;
  margin-bottom: 1.75rem;
}
.hero-tags {
  display: flex; flex-wrap: wrap;
  gap: 1.25rem 1.5rem;
  padding-top: .5rem;
}
.hero-tags li {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .9rem;
  color: var(--cocoa);
  font-weight: 500;
}
.hero-tags svg {
  width: 16px; height: 16px; color: var(--coral);
  flex-shrink: 0;
}

/* ---------- Phone stage ---------- */
.hero-visual { display: grid; justify-items: center; gap: 1rem; position: relative; }
.phone-stage {
  position: relative;
  display: grid; justify-items: center; gap: 1.25rem;
  width: 100%; max-width: 380px;
}
.phone-frame {
  position: relative;
  width: 100%; max-width: 320px;
  aspect-ratio: 9 / 19.5;
  background: var(--espresso);
  border-radius: 44px;
  padding: 14px;
  box-shadow:
    0 0 0 2px #4a3527 inset,
    0 2px 4px rgba(45,27,20,.4),
    0 24px 18px -18px rgba(45,27,20,.55),
    0 30px 60px -12px rgba(45,27,20,.35),
    0 60px 90px -30px rgba(255,107,74,.25);
}
.phone-screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: var(--bg);
}
.phone-notch {
  position: absolute; top: 22px; left: 50%;
  transform: translateX(-50%);
  width: 92px; height: 22px;
  background: var(--espresso);
  border-radius: 0 0 14px 14px;
  z-index: 5;
}
.phone-glare {
  position: absolute; inset: 14px;
  border-radius: 32px;
  background: linear-gradient(115deg, rgba(255,255,255,.18) 0%, transparent 18%, transparent 100%);
  pointer-events: none;
  z-index: 4;
}

.phone-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 6;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--espresso);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  box-shadow: var(--shadow);
  transition: background var(--dur), transform var(--dur);
}
.phone-nav svg { width: 18px; height: 18px; }
.phone-nav:hover { background: var(--espresso); color: var(--bg); transform: translateY(-50%) scale(1.06); }
.phone-prev { left: -16px; }
.phone-next { right: -16px; }
@media (max-width: 480px) {
  .phone-prev { left: 4px; }
  .phone-next { right: 4px; }
}

/* ---------- Slider track / slides ---------- */
.slider-track {
  position: relative;
  width: 100%; height: 100%;
}
.slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 360ms var(--ease);
  pointer-events: none;
}
.slide.is-active { opacity: 1; pointer-events: auto; z-index: 2; }

/* ---------- Compare (IG vs Website) ----------
   Two independently-sized halves so each side renders its full content
   within its allocated width. --split = % of phone given to WEBSITE (right). */
.compare {
  --split: 62%;
  position: relative;
  width: 100%; height: 100%;
  overflow: hidden;
  border-radius: 32px;
}
.compare-before {
  /* IG (left side) */
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: calc(100% - var(--split));
  overflow: hidden;
  z-index: 2;
  transition: width var(--dur) var(--ease);
}
.compare-after {
  /* Website (right side) */
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: var(--split);
  overflow: hidden;
  z-index: 1;
  transition: width var(--dur) var(--ease);
}
.compare.is-dragging .compare-before,
.compare.is-dragging .compare-after {
  transition: none;
}
.compare-handle {
  position: absolute; top: 0; bottom: 0;
  left: calc(100% - var(--split));
  transform: translateX(-50%);
  width: 44px;
  z-index: 3;
  cursor: ew-resize;
  background: transparent;
  border: 0;
  padding: 0;
  touch-action: none;
  transition: left var(--dur) var(--ease);
}
.compare.is-dragging .compare-handle { transition: none; }
.compare-handle::before {
  content: '';
  position: absolute; top: 0; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: var(--bg);
  box-shadow: 0 0 8px rgba(45,27,20,.4);
}
.handle-grip {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--espresso);
  display: grid; place-items: center; gap: 3px;
  box-shadow: 0 4px 12px rgba(45,27,20,.25);
}
.handle-grip i {
  display: block;
  width: 2px; height: 12px;
  background: var(--espresso);
}
.handle-grip {
  display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 4px;
}

/* ===========================================================
   PHONE MOCKUP REDESIGN — real IG profiles + real websites
   =========================================================== */

/* ---------- IG mock (left half, "before") ---------- */
.ig-mock {
  width: 100%; height: 100%;
  background: #fff;
  color: #0f0f0f;
  padding: 30px 0 0;
  display: flex; flex-direction: column;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 8.5px;
  line-height: 1.25;
  overflow: hidden;
  position: relative;
}
.ig-status {
  display: flex; align-items: center; justify-content: space-between;
  padding: 2px 10px 3px;
  font-size: 8.5px; font-weight: 700;
  color: #0f0f0f;
}
.ig-status-r { display: inline-flex; gap: 3px; align-items: center; }
.ig-status-r svg { width: 9px; height: 9px; }
.ig-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 5px 8px 6px;
  border-bottom: .5px solid #ececec;
}
.ig-top svg { width: 13px; height: 13px; color: #0f0f0f; flex: none; }
.ig-handle {
  display: inline-flex; align-items: center; gap: 2px;
  font-size: 10px; font-weight: 700;
  letter-spacing: -.01em;
}
.ig-handle svg { width: 10px; height: 10px; }
.ig-profile {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px 4px;
}
.ig-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background-color: #ddd;
  background-size: cover; background-position: center;
  flex: none;
  border: 1.5px solid #fff;
  box-shadow: 0 0 0 1.5px #e0b250;
}
.ig-counts {
  display: flex; flex: 1; justify-content: space-around;
  text-align: center;
}
.ig-counts span { display: flex; flex-direction: column; align-items: center; }
.ig-counts b { font-size: 10px; font-weight: 700; color: #0f0f0f; }
.ig-counts em { font-style: normal; font-size: 8px; color: #555; }
.ig-bio {
  padding: 0 10px 4px;
}
.ig-bio strong { display: block; font-size: 9.5px; font-weight: 700; }
.ig-bio em { font-style: normal; display: block; font-size: 8.5px; color: #1f1f1f; line-height: 1.3; }
.ig-actions {
  display: flex; gap: 4px; padding: 4px 10px 8px;
}
.ig-btn {
  flex: 1; text-align: center;
  font-size: 9px; font-weight: 600;
  padding: 4px 0;
  border-radius: 6px;
  background: #efefef;
  color: #0f0f0f;
}
.ig-btn-primary { background: #1f8eef; color: #fff; }
.ig-btn-square { flex: 0 0 22px; display: grid; place-items: center; padding: 0; }
.ig-btn-square svg { width: 11px; height: 11px; }
.ig-highlights {
  display: flex; gap: 6px;
  padding: 2px 10px 8px;
  overflow: hidden;
}
.ig-hl { display: flex; flex-direction: column; align-items: center; gap: 2px; flex: none; }
.ig-hl-ring {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5d3a3, #c08a5c);
  border: 1.5px solid #fff;
  box-shadow: 0 0 0 1px #e0e0e0;
}
.ig-hl span:not(.ig-hl-ring) { font-size: 7.5px; color: #0f0f0f; }
.ig-tabs {
  display: flex;
  border-top: .5px solid #ececec;
  border-bottom: .5px solid #ececec;
}
.ig-tab {
  flex: 1; display: grid; place-items: center;
  padding: 4px 0;
  opacity: .5;
}
.ig-tab.is-active { opacity: 1; border-bottom: 1.5px solid #0f0f0f; }
.ig-tab svg { width: 11px; height: 11px; }
.ig-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  flex: 1;
  min-height: 0;
}
.ig-thumb {
  width: 100%; height: 100%;
  min-height: 30px;
  background: #ddd;
  background-size: cover; background-position: center;
}
.ig-nav {
  display: flex; justify-content: space-around; align-items: center;
  padding: 5px 8px 6px;
  border-top: .5px solid #ececec;
  background: #fff;
}
.ig-nav svg { width: 13px; height: 13px; color: #0f0f0f; }
.ig-nav-me {
  width: 14px; height: 14px;
  border-radius: 50%;
  background-color: #ddd;
  background-size: cover; background-position: center;
  border: 1px solid #0f0f0f;
}

/* Vertical-specific avatar ring tints */
.ig-cafe   .ig-avatar { box-shadow: 0 0 0 1.5px #C17250; }
.ig-cafe   .ig-hl-ring { background: linear-gradient(135deg, #f5d3a3, #6b3f1f); }
.ig-salon  .ig-avatar { box-shadow: 0 0 0 1.5px #94a98a; }
.ig-salon  .ig-hl-ring { background: linear-gradient(135deg, #d9c5b4, #6b4530); }
.ig-gym    .ig-avatar { box-shadow: 0 0 0 1.5px #ff3b30; }
.ig-gym    .ig-hl-ring { background: linear-gradient(135deg, #2a2a2a, #d8862e); }
.ig-clinic .ig-avatar { box-shadow: 0 0 0 1.5px #5C7D5F; }
.ig-clinic .ig-hl-ring { background: linear-gradient(135deg, #d4e0d2, #6b8e6f); }


/* ---------- Website mock (right half, "after") ---------- */
.mockup {
  width: 100%; height: 100%;
  background: var(--bg);
  color: var(--espresso);
  padding: 30px 0 0;
  display: flex; flex-direction: column;
  font-family: var(--f-body);
  overflow: hidden;
  gap: 0;
}
.mu-browser {
  display: flex; align-items: center; gap: 6px;
  padding: 5px 8px;
  background: #f1ebe2;
  border-bottom: 1px solid var(--line);
  flex: none;
}
.mu-dots { display: inline-flex; gap: 3px; flex: none; }
.mu-dots i { width: 6px; height: 6px; border-radius: 50%; background: #d6c8b8; display: block; }
.mu-dots i:nth-child(1) { background: #ff5f57; }
.mu-dots i:nth-child(2) { background: #febc2e; }
.mu-dots i:nth-child(3) { background: #28c840; }
.mu-url {
  flex: 1; min-width: 0;
  display: inline-flex; align-items: center; gap: 3px;
  background: #fff;
  border-radius: 999px;
  padding: 2px 7px;
  font-size: 8px; font-weight: 600;
  color: var(--cocoa);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mu-url svg { width: 8px; height: 8px; color: #2a8c4e; flex: none; }
.mu-tabicons svg { width: 9px; height: 9px; color: var(--cocoa); }

.mu-hero {
  position: relative;
  background-size: cover; background-position: center;
  padding: 14px 14px 16px;
  min-height: 175px;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff;
  flex: none;
}
.mu-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.55) 70%, rgba(0,0,0,.75) 100%);
}
.mu-hero-inner { position: relative; display: flex; flex-direction: column; gap: 3px; }
.mu-brand {
  font-family: var(--f-display);
  font-variation-settings: 'opsz' 36, 'wght' 600;
  font-size: 11px;
  letter-spacing: -.01em;
  align-self: flex-start;
  background: rgba(255,255,255,.92);
  color: var(--espresso);
  padding: 2px 7px;
  border-radius: 999px;
  margin-bottom: 4px;
}
.mu-brand i { font-style: italic; color: var(--coral-deep); margin-left: 1px; }
.mu-h1 {
  font-family: var(--f-display);
  font-variation-settings: 'opsz' 96, 'wght' 500;
  font-size: 19px;
  line-height: 1.02;
  letter-spacing: -.02em;
  margin: 0;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,.3);
}
.mu-tagline { font-size: 10px; line-height: 1.3; margin: 3px 0 0; opacity: .92; }
.mu-cta {
  align-self: flex-start;
  margin-top: 8px;
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--coral);
  color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(255,107,74,.4);
}
.mu-cta svg { width: 12px; height: 12px; }

.mu-services {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  padding: 10px 9px 8px;
  flex: none;
}
.mu-svc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 7px 4px;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  text-align: center;
}
.mu-svc svg { width: 15px; height: 15px; color: var(--coral-deep); }
.mu-svc span { font-size: 9px; font-weight: 600; color: var(--espresso); }

.mu-about {
  display: flex; align-items: center; gap: 6px;
  padding: 4px 10px 6px;
  flex: 1;
  min-height: 0;
}
.mu-thumb {
  width: 28px; height: 28px;
  border-radius: 50%;
  background-color: #ddd;
  background-size: cover; background-position: center;
  flex: none;
}
.mu-about-text { min-width: 0; }
.mu-about-text strong { display: block; font-size: 9px; font-weight: 700; color: var(--espresso); line-height: 1.15; }
.mu-about-text em { font-style: normal; font-size: 8px; line-height: 1.25; color: var(--cocoa); display: block; }

.mu-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding: 5px 10px 7px;
  border-top: 1px solid var(--line);
  background: #fbf5ed;
  flex: none;
}
.mu-hours { display: inline-flex; align-items: center; gap: 3px; font-size: 8px; font-weight: 600; color: var(--cocoa); }
.mu-hours svg { width: 8px; height: 8px; }
.mu-socials { display: inline-flex; gap: 5px; }
.mu-socials svg { width: 10px; height: 10px; color: var(--cocoa); }

/* ---------- Vertical theme overrides ---------- */
.theme-salon .mu-cta { background: #5C7D5F; box-shadow: 0 4px 10px rgba(92,125,95,.35); }
.theme-salon .mu-svc svg { color: #5C7D5F; }
.theme-salon .mu-brand i { color: #5C7D5F; }

.theme-gym { background: #0f0f0f; color: #fff; }
.theme-gym .mu-browser { background: #1a1a1a; border-color: #2a2a2a; }
.theme-gym .mu-url { background: #2a2a2a; color: #e5e5e5; }
.theme-gym .mu-url svg { color: #4ade80; }
.theme-gym .mu-tabicons svg { color: #888; }
.theme-gym .mu-brand { background: #ff3b30; color: #fff; font-family: var(--f-body); font-weight: 900; letter-spacing: .04em; text-transform: uppercase; font-size: 10px; padding: 3px 8px; }
.theme-gym .mu-brand i { color: #fff; font-style: normal; }
.theme-gym .mu-cta { background: #ff3b30; box-shadow: 0 4px 10px rgba(255,59,48,.45); }
.theme-gym .mu-services { background: #0f0f0f; }
.theme-gym .mu-hero-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.35) 55%, rgba(255,59,48,.55) 100%);
}
.theme-gym .mu-svc { background: #1a1a1a; border-color: #2a2a2a; }
.theme-gym .mu-svc span { color: #fff; }
.theme-gym .mu-svc svg { color: #ff3b30; }
.theme-gym .mu-about { background: #0f0f0f; }
.theme-gym .mu-about-text strong { color: #fff; }
.theme-gym .mu-about-text em { color: #aaa; }
.theme-gym .mu-foot { background: #1a1a1a; border-color: #2a2a2a; }
.theme-gym .mu-hours { color: #aaa; }
.theme-gym .mu-socials svg { color: #888; }

.theme-clinic .mu-cta { background: #5C7D5F; box-shadow: 0 4px 10px rgba(92,125,95,.35); }
.theme-clinic .mu-svc svg { color: #5C7D5F; }
.theme-clinic .mu-brand i { color: #5C7D5F; font-style: italic; }

/* Lucide rendered SVGs default to currentColor stroke; ensure rating stars look filled. */
.stars svg, .trust-star { fill: currentColor; }

/* ===========================================================
   PHONE MOCKUP POLISH — vertical widgets, IG refinements,
   frame reflection, 3D tilt + dramatic slide transitions
   =========================================================== */

/* ---------- Shared widget container (replaces mu-about) ---------- */
.mu-widget {
  flex: 1; min-height: 0;
  display: flex; flex-direction: column;
  gap: 5px;
  padding: 9px 10px 10px;
  background: linear-gradient(180deg, #ffffff 0%, #fbf5ed 100%);
  border-top: 1px solid var(--line);
}
.mu-w-head {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 10px; font-weight: 800; letter-spacing: .04em;
  color: var(--espresso); text-transform: uppercase;
  margin-bottom: 2px;
}
.mu-pill {
  display: inline-flex; align-items: center; gap: 3px;
  background: linear-gradient(135deg, #ffd8c4, #ffb09a);
  color: #5a2412;
  font-size: 9px; font-weight: 700; text-transform: none; letter-spacing: 0;
  padding: 3px 7px; border-radius: 999px;
  box-shadow: 0 1px 2px rgba(193,114,80,.25);
}
.mu-pill svg { width: 9px; height: 9px; }

/* ---------- Cafe: menu list ---------- */
.mu-menu-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 8px;
  background: #fff;
  border: 1px solid #efe3d3;
  border-radius: 8px;
  font-size: 10.5px; color: var(--espresso);
}
.mu-menu-row > span { display: inline-flex; align-items: center; gap: 6px; font-weight: 500; }
.mu-menu-row svg { width: 12px; height: 12px; color: var(--coral-deep); }
.mu-menu-row b { font-size: 11px; font-weight: 800; color: var(--coral-deep); }

/* ---------- Salon: booking widget ---------- */
.mu-book { background: linear-gradient(180deg, #ffffff 0%, #f3f6f0 100%); }
.mu-tabs {
  display: flex; gap: 4px;
  background: #eef1ea; border-radius: 8px; padding: 3px;
}
.mu-tabs span {
  flex: 1; text-align: center;
  font-size: 9.5px; font-weight: 600; color: #6b7a6c;
  padding: 5px 0; border-radius: 5px;
}
.mu-tabs .is-on { background: #5C7D5F; color: #fff; box-shadow: 0 1px 3px rgba(92,125,95,.4); }
.mu-next {
  margin-top: 5px;
  display: flex; align-items: center; gap: 7px;
  background: #fff; border: 1px solid #dde5d6;
  border-radius: 8px; padding: 7px 9px;
  font-size: 10.5px; color: var(--espresso);
}
.mu-next b { font-weight: 800; color: #3d5840; }
.mu-next-t { flex: 1; }
.mu-next svg { width: 12px; height: 12px; color: #5C7D5F; }
.mu-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74,222,128,.25);
  flex: none;
}

/* ---------- Gym: live schedule ---------- */
.theme-gym .mu-widget {
  background: linear-gradient(180deg, #0f0f0f 0%, #161616 100%);
  border-top-color: #2a2a2a;
}
.mu-srow {
  display: flex; align-items: center; gap: 8px;
  background: #1a1a1a; border: 1px solid #2a2a2a;
  border-radius: 7px;
  padding: 6px 9px;
  font-size: 10.5px; color: #fff;
}
.mu-srow b { font-weight: 800; font-feature-settings: 'tnum'; min-width: 38px; color: #fff; font-size: 11px; }
.mu-srow > span:nth-of-type(1) {
  flex: 1; font-weight: 700; letter-spacing: .06em; color: #ff3b30; text-transform: uppercase; font-size: 10.5px;
}
.mu-int { display: inline-flex; gap: 3px; }
.mu-int i {
  width: 5px; height: 5px; border-radius: 50%;
  background: #3a3a3a; display: block;
}
.int-1 i:nth-child(1) { background: #4ade80; }
.int-2 i:nth-child(1), .int-2 i:nth-child(2) { background: #facc15; }
.int-3 i { background: #ff3b30; }
.mu-left {
  font-size: 9.5px; color: #aaa; min-width: 40px; text-align: right;
}

/* ---------- Clinic: pricing tiers ---------- */
.theme-clinic .mu-widget { background: linear-gradient(180deg, #ffffff 0%, #f1f5ef 100%); }
.mu-tiers { flex-direction: row !important; gap: 5px; align-items: stretch; }
.mu-tier {
  position: relative;
  flex: 1;
  background: #fff;
  border: 1px solid #dde5d6;
  border-radius: 9px;
  padding: 8px 4px 9px;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  text-align: center;
}
.mu-tier span { font-size: 9px; font-weight: 700; color: #6b7a6c; text-transform: uppercase; letter-spacing: .06em; }
.mu-tier b { font-size: 16px; font-weight: 800; color: var(--espresso); line-height: 1; font-feature-settings: 'tnum'; }
.mu-tier em { font-style: normal; font-size: 9px; color: #888; }
.mu-tier.is-on {
  background: linear-gradient(180deg, #5C7D5F, #3d5840);
  border-color: #3d5840;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(60,88,64,.35);
}
.mu-tier.is-on span, .mu-tier.is-on em { color: #d9e6d4; }
.mu-tier.is-on b { color: #fff; }
.mu-tier.is-on .mu-tier-badge,
.mu-tier-badge {
  position: absolute !important;
  top: -11px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: #1a2e1c !important;
  color: #FFD23F !important;
  font-size: 7.5px !important;
  font-weight: 800 !important;
  font-family: 'Inter', -apple-system, sans-serif !important;
  padding: 3px 8px !important;
  border-radius: 4px !important;
  letter-spacing: .14em !important;
  white-space: nowrap !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
  box-shadow:
    0 2px 6px rgba(0,0,0,.35),
    inset 0 -1px 0 rgba(0,0,0,.25),
    inset 0 1px 0 rgba(255,255,255,.08) !important;
  border: 1px solid rgba(255,210,63,.4) !important;
  z-index: 5 !important;
}

/* ===========================================================
   Widget extras — fill the phone screen with real content
   =========================================================== */
.mu-section-h {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 9.5px; font-weight: 800; letter-spacing: .06em;
  color: var(--espresso); text-transform: uppercase;
  margin-top: 6px; padding: 0 1px;
}
.mu-link {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 9px; font-weight: 700; color: var(--coral-deep);
  text-transform: none; letter-spacing: 0;
}
.mu-link svg { width: 9px; height: 9px; }

/* ---------- Cafe: photo grid + review strip + loyalty ---------- */
.mu-grid3 {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.mu-grid3-i {
  aspect-ratio: 1;
  border-radius: 7px;
  background-size: cover; background-position: center;
  filter: saturate(.92);
}
.mu-review {
  margin-top: 5px;
  display: flex; align-items: center; gap: 7px;
  background: #fff; border: 1px solid #efe3d3;
  border-radius: 8px;
  padding: 6px 8px;
}
.mu-stars { display: inline-flex; gap: 1px; }
.mu-stars svg { width: 11px; height: 11px; color: #f5b342; fill: #f5b342; }
.mu-review-t {
  font-size: 9.5px; color: var(--cocoa); flex: 1;
}
.mu-review-t b { font-weight: 800; color: var(--espresso); font-size: 11px; }

.mu-loyalty {
  margin-top: 4px;
  display: flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, #2D1B14, #4a2f1f); color: #fff;
  border-radius: 9px;
  padding: 7px 9px;
}
.mu-loy-t { flex: 1; display: flex; flex-direction: column; gap: 0; }
.mu-loy-t b { font-size: 10px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.mu-loy-t em { font-style: normal; font-size: 8.5px; color: #f5d3a3; }
.mu-stamps { display: inline-flex; gap: 3px; }
.mu-stamps i {
  width: 9px; height: 9px; border-radius: 50%;
  border: 1px solid #f5d3a3;
}
.mu-stamps i.on { background: #FF6B4A; border-color: #FF6B4A; box-shadow: 0 0 0 1px rgba(255,210,63,.4); }

/* ---------- Salon: time slots + stylist team + before/after ---------- */
.mu-slots {
  display: flex; gap: 4px; flex-wrap: wrap;
  margin-top: 5px;
}
.mu-slot {
  flex: 1; min-width: 0;
  background: #fff; border: 1px solid #dde5d6;
  border-radius: 7px;
  padding: 5px 4px;
  font-size: 9.5px; font-weight: 700; color: #3d5840;
  text-align: center;
  white-space: nowrap;
}
.mu-slot.is-on {
  background: #5C7D5F; color: #fff; border-color: #3d5840;
  box-shadow: 0 1px 3px rgba(60,88,64,.35);
}
.mu-team {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}
.mu-team-i {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  background: #fff; border: 1px solid #dde5d6;
  border-radius: 8px;
  padding: 6px 2px 6px;
}
.mu-av {
  width: 30px; height: 30px; border-radius: 50%;
  background-size: cover; background-position: center;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #dde5d6;
}
.mu-av-n {
  font-size: 9.5px; font-weight: 700; color: var(--espresso);
  margin-top: 3px;
}
.mu-av-t {
  font-size: 8px; color: #5C7D5F; font-weight: 600;
  letter-spacing: .02em;
}

.mu-ba {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4px;
  border-radius: 8px; overflow: hidden;
  position: relative;
}
.mu-ba-i {
  aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  position: relative;
}
.mu-ba-i span {
  position: absolute; top: 4px; left: 4px;
  background: rgba(0,0,0,.55); color: #fff;
  font-size: 7.5px; font-weight: 800; letter-spacing: .12em;
  padding: 2px 5px; border-radius: 999px;
}

/* ---------- Gym: stats + member quote + live + promo ---------- */
.mu-live {
  display: flex; align-items: center; justify-content: space-between; gap: 7px;
  background: #1a1a1a; border: 1px solid #2a2a2a;
  border-radius: 7px;
  padding: 6px 9px;
  margin-bottom: 2px;
}
.mu-live-l { display: inline-flex; align-items: center; gap: 6px; font-size: 10.5px; font-weight: 800; color: #fff; }
.mu-live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74,222,128,.25);
  animation: livePulse 1.6s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}
.mu-live b { color: #4ade80; font-weight: 800; font-family: 'JetBrains Mono', ui-monospace, monospace; }
.mu-live-r { font-size: 8.5px; color: #888; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }

.mu-stats {
  margin-top: 4px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
.mu-stat {
  background: #1a1a1a; border: 1px solid #2a2a2a;
  border-radius: 7px;
  padding: 7px 4px;
  display: flex; flex-direction: column; align-items: center; gap: 0;
}
.mu-stat b {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 15px; font-weight: 800; color: #fff;
  line-height: 1; letter-spacing: -.02em;
  display: inline-flex; align-items: center; gap: 3px;
  font-feature-settings: 'tnum';
}
.mu-stat b svg { width: 11px; height: 11px; color: #facc15; fill: #facc15; }
.mu-stat span {
  font-size: 8px; color: #888; text-transform: uppercase;
  letter-spacing: .08em; margin-top: 3px; font-weight: 700;
}
.mu-quote {
  margin-top: 4px;
  display: flex; align-items: center; gap: 7px;
  background: #1a1a1a; border: 1px solid #2a2a2a;
  border-left: 3px solid #ff3b30;
  border-radius: 7px;
  padding: 7px 9px;
}
.mu-q-av {
  width: 28px; height: 28px; border-radius: 50%;
  background-size: cover; background-position: center;
  flex: none;
  border: 2px solid #2a2a2a;
}
.mu-q-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.mu-q-stars { display: inline-flex; gap: 1px; }
.mu-q-stars svg { width: 9px; height: 9px; color: #facc15; fill: #facc15; }
.mu-q-t { font-size: 9.5px; color: #ccc; line-height: 1.3; }
.mu-q-t b { font-weight: 800; color: #fff; }

.mu-promo {
  margin-top: 3px;
  display: flex; align-items: center; justify-content: space-between; gap: 6px;
  background: #facc15; color: #0a0a0a;
  border-radius: 7px;
  padding: 8px 11px;
  position: relative;
  transform: skewX(-3deg);
}
.mu-promo > * { transform: skewX(3deg); }
.mu-promo-t b { font-family: var(--f-body); font-weight: 900; font-size: 13px; letter-spacing: -.02em; display: block; }
.mu-promo-t em { font-style: normal; font-size: 8.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.mu-promo-arrow {
  width: 24px; height: 24px;
  background: #0a0a0a; color: #facc15;
  border-radius: 50%;
  display: grid; place-items: center;
}
.mu-promo-arrow svg { width: 13px; height: 13px; }

/* ---------- Clinic: alert + doctor card + insurance + map + contact ---------- */
.mu-tiers-wrap {
  flex: 1; min-height: 0;
  display: flex; flex-direction: column;
  gap: 6px;
  padding: 9px 10px 10px;
  background: linear-gradient(180deg, #ffffff 0%, #f1f5ef 100%);
  border-top: 1px solid var(--line);
}
.mu-tiers-wrap .mu-tiers {
  display: flex; flex-direction: row; gap: 5px; align-items: stretch;
  margin-top: 4px;
}

.mu-alert {
  display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid #c9dac3;
  border-left: 3px solid #5C7D5F;
  border-radius: 8px;
  padding: 7px 10px;
}
.mu-alert-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74,222,128,.18);
  flex: none;
  animation: livePulse 1.8s ease-in-out infinite;
}
.mu-alert-t { font-size: 10px; color: #3d5840; flex: 1; line-height: 1.2; }
.mu-alert-t b { font-weight: 800; color: var(--espresso); display: block; font-size: 10.5px; }

.mu-doc {
  display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid #dde5d6;
  border-radius: 9px;
  padding: 8px 9px;
}
.mu-doc-av {
  width: 34px; height: 34px; border-radius: 50%;
  background-size: cover; background-position: center;
  flex: none;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #dde5d6;
}
.mu-doc-body { display: flex; flex-direction: column; gap: 1px; min-width: 0; flex: 1; }
.mu-doc-n { font-size: 10.5px; font-weight: 800; color: var(--espresso); }
.mu-doc-t { font-size: 9px; color: #6b7a6c; font-weight: 500; line-height: 1.3; }
.mu-doc-check { width: 16px; height: 16px; color: #5C7D5F; flex: none; }
.mu-ins {
  display: flex; gap: 4px; flex-wrap: wrap;
}
.mu-ins-c {
  background: #fff; border: 1px solid #dde5d6;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 9px; font-weight: 700; color: #3d5840;
  letter-spacing: .02em;
}
.mu-ins-c:last-child { background: #5C7D5F; color: #fff; border-color: #3d5840; }
.mu-map {
  display: flex; flex-direction: column;
  border-radius: 9px; overflow: hidden;
  border: 1px solid #dde5d6;
  background: #fff;
}
.mu-map-bg {
  height: 56px;
  background:
    radial-gradient(circle at 60% 50%, #c6d8c1 0%, #b4cbb0 35%, #a5c0a1 100%);
  background-image:
    linear-gradient(transparent 23px, rgba(255,255,255,.4) 24px),
    linear-gradient(90deg, transparent 28px, rgba(255,255,255,.4) 29px),
    radial-gradient(circle at 50% 50%, #c6d8c1, #a5c0a1);
  background-size: 24px 24px, 28px 28px, 100% 100%;
  position: relative;
}
.mu-map-bg::before {
  content: ''; position: absolute; left: 18px; top: 22px; right: 22px; height: 3px;
  background: #d8a268; border-radius: 2px; opacity: .7;
  transform: rotate(-6deg);
}
.mu-map-pin {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -90%);
  width: 22px; height: 22px;
  background: #5C7D5F; border: 2px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform-origin: bottom left;
  display: grid; place-items: center;
  box-shadow: 0 4px 8px rgba(60,88,64,.4);
  rotate: -45deg;
}
.mu-map-pin svg { width: 12px; height: 12px; color: #fff; rotate: 45deg; }
.mu-map-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 7px;
  padding: 7px 9px;
}
.mu-map-cta > span:first-child { display: flex; flex-direction: column; }
.mu-map-cta b { font-size: 10px; font-weight: 800; color: var(--espresso); }
.mu-map-cta em { font-style: normal; font-size: 8.5px; color: #6b7a6c; }
.mu-map-btn {
  display: inline-flex; align-items: center; gap: 4px;
  background: #5C7D5F; color: #fff;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 9.5px; font-weight: 800;
  white-space: nowrap;
}
.mu-map-btn svg { width: 11px; height: 11px; }

.mu-contact {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px;
}
.mu-contact-i {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  background: #fff; border: 1px solid #dde5d6;
  border-radius: 8px;
  padding: 7px 4px;
}
.mu-contact-i svg { width: 16px; height: 16px; color: #5C7D5F; }
.mu-contact-i span { font-size: 8.5px; font-weight: 700; color: var(--espresso); }

/* ---------- IG polish: gradient header, count separators, story rings, nav active ---------- */
.ig-mock::before {
  content: "";
  position: absolute; top: 30px; left: 0; right: 0; height: 56px;
  background: linear-gradient(180deg, rgba(250,245,237,.6) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none; z-index: 0;
}
.ig-cafe::before   { background: linear-gradient(180deg, rgba(193,114,80,.10), rgba(255,255,255,0)); }
.ig-salon::before  { background: linear-gradient(180deg, rgba(92,125,95,.10),  rgba(255,255,255,0)); }
.ig-gym::before    { background: linear-gradient(180deg, rgba(255,59,48,.10),  rgba(255,255,255,0)); }
.ig-clinic::before { background: linear-gradient(180deg, rgba(92,125,95,.10),  rgba(255,255,255,0)); }
.ig-status, .ig-top, .ig-profile, .ig-bio, .ig-actions { position: relative; z-index: 1; }

/* Authentic IG story-ring gradient (overrides earlier flat) */
.ig-avatar {
  position: relative;
  box-shadow:
    0 0 0 1.5px #fff,
    0 0 0 3px transparent;
  background-clip: padding-box;
}
.ig-avatar::after {
  content: "";
  position: absolute; inset: -3px;
  border-radius: 50%;
  padding: 1.5px;
  background: conic-gradient(from 210deg, #f9ce34, #ee2a7b, #6228d7, #f9ce34);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.ig-cafe .ig-avatar,
.ig-salon .ig-avatar,
.ig-gym .ig-avatar,
.ig-clinic .ig-avatar { box-shadow: 0 0 0 1.5px #fff; }

/* Counts: tighter typography + subtle separator */
.ig-counts { gap: 2px; }
.ig-counts span { position: relative; padding: 0 4px; }
.ig-counts span + span::before {
  content: "";
  position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 1px; background: #ececec;
}
.ig-counts b { font-feature-settings: 'tnum'; letter-spacing: -.02em; }

/* Story highlight: real IG-style outer ring */
.ig-hl-ring {
  position: relative;
  background: #fff !important;
  box-shadow: 0 0 0 1.5px #d6d6d6;
}
.ig-hl-ring::after {
  content: "";
  position: absolute; inset: 2px;
  border-radius: 50%;
}
.ig-cafe   .ig-hl-ring::after { background: linear-gradient(135deg, #f5d3a3, #6b3f1f); }
.ig-salon  .ig-hl-ring::after { background: linear-gradient(135deg, #d9c5b4, #5C7D5F); }
.ig-gym    .ig-hl-ring::after { background: linear-gradient(135deg, #2a2a2a, #ff3b30); }
.ig-clinic .ig-hl-ring::after { background: linear-gradient(135deg, #d4e0d2, #5C7D5F); }

/* Bottom nav active indicator */
.ig-nav { position: relative; }
.ig-nav svg:first-of-type { color: #0f0f0f; }
.ig-nav svg:first-of-type::after { content: ""; }
.ig-nav::before {
  content: "";
  position: absolute; top: 0; left: 8%; width: 14%; height: 1.5px;
  background: #0f0f0f;
  border-radius: 1px;
}

/* ---------- Phone frame: glass reflection + edge polish ---------- */
.phone-frame::before {
  content: "";
  position: absolute; inset: 14px;
  border-radius: 32px;
  background:
    linear-gradient(125deg, rgba(255,255,255,.32) 0%, rgba(255,255,255,.08) 14%, rgba(255,255,255,0) 32%, rgba(255,255,255,0) 70%, rgba(255,255,255,.06) 90%, rgba(255,255,255,.18) 100%);
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 6;
}
.phone-frame::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 44px;
  background: linear-gradient(160deg, rgba(255,255,255,.10) 0%, rgba(255,255,255,0) 28%, rgba(0,0,0,0) 72%, rgba(255,255,255,.06) 100%);
  pointer-events: none;
}
.phone-glare {
  background:
    linear-gradient(118deg, rgba(255,255,255,.28) 0%, rgba(255,255,255,.08) 12%, rgba(255,255,255,0) 28%, rgba(255,255,255,0) 76%, rgba(255,255,255,.10) 100%);
}

/* ---------- Slide transitions: cinematic enter, 3D tilt rest ---------- */
.slider-track { perspective: 1400px; }
.slide {
  transition:
    opacity 480ms var(--ease),
    transform 520ms var(--ease),
    filter 480ms var(--ease);
  transform: translateX(34px) scale(.985) rotateY(-3deg);
  filter: blur(2px) saturate(.85);
  transform-origin: 50% 50%;
}
.slide.is-active {
  transform: translateX(0) scale(1) rotateY(0deg);
  filter: none;
}

/* ---------- Slider dot color sweep ---------- */
.slider-dots .dot {
  position: relative; overflow: hidden;
  background-image: linear-gradient(90deg, var(--coral) 0%, var(--coral-deep) 100%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  transition: background-size 380ms var(--ease), color var(--dur);
}
.slider-dots .dot.is-active {
  background-image: linear-gradient(90deg, var(--coral) 0%, var(--coral-deep) 100%);
  background-size: 100% 100%;
  background-color: transparent;
  color: #fff;
}

/* ---------- Slider controls ---------- */
.slider-dots {
  display: flex; gap: .4rem;
  padding: .35rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow);
}
.slider-dots .dot {
  padding: .45rem .9rem;
  border-radius: var(--radius-pill);
  font-size: .8rem; font-weight: 600;
  color: var(--cocoa);
  transition: background var(--dur), color var(--dur);
}
.slider-dots .dot.is-active {
  background: var(--espresso);
  color: var(--bg);
}
.slider-dots .dot:not(.is-active):hover { background: var(--peach); color: var(--espresso); }
.slider-hint {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .78rem; color: var(--taupe);
  margin: 0;
}
.slider-hint svg { width: 14px; height: 14px; }

/* ---------- Trust strip (marquee) ---------- */
.trust-strip {
  position: relative; z-index: 1;
  max-width: var(--max);
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  background: var(--espresso);
  color: var(--bg);
  border-radius: var(--radius-pill);
  padding: .9rem 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.trust-track {
  display: inline-flex; align-items: center; gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  padding-right: 2.5rem;
}
.trust-cell {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .98rem; font-weight: 500;
}
.trust-cell b {
  font-family: var(--f-display);
  font-variation-settings: 'opsz' 40, 'wght' 600;
  font-size: 1.4rem;
  color: var(--honey-deep);
}
.trust-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--coral);
  flex-shrink: 0;
}
.trust-star { width: 16px; height: 16px; color: var(--honey); margin-left: 2px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================================
   VERTICALS
   ============================================================= */
.verticals {
  background: var(--bg);
}
.vert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: var(--max);
  margin: 0 auto;
}
@media (max-width: 1100px) { .vert-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .vert-grid { grid-template-columns: 1fr; } }

.vert-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex; flex-direction: column;
  gap: 1rem;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur);
  position: relative;
  overflow: hidden;
}
.vert-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.vert-blob {
  position: relative;
  aspect-ratio: 5 / 5.5;
  border-radius: 18px;
  overflow: hidden;
}
.vert-blob svg {
  width: 100%; height: 100%;
  display: block;
}
.vert-blob image {
  filter: saturate(.85) sepia(.18) brightness(.96);
}
.vert-num {
  position: absolute;
  top: .75rem; left: .9rem;
  font-family: var(--f-display);
  font-variation-settings: 'opsz' 40, 'wght' 480;
  font-size: 1.3rem;
  color: var(--bg);
  text-shadow: 0 2px 8px rgba(45,27,20,.35);
  z-index: 2;
}
.vert-cafe { background: linear-gradient(160deg, #FFF8EE 0%, #FFE9D6 100%); }
.vert-salon { background: linear-gradient(160deg, #FFF8EE 0%, #F4E4D7 100%); }
.vert-gym { background: linear-gradient(160deg, #FFF8EE 0%, #FFE0C8 100%); }
.vert-clinic { background: linear-gradient(160deg, #FFF8EE 0%, #EBF0E5 100%); }

.vert-body h3 {
  font-family: var(--f-body); /* per ux-critic: card titles in Inter */
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -.015em;
  margin: 0 0 .4rem;
  color: var(--espresso);
}
.vert-body p {
  margin: 0 0 .85rem;
  font-size: .92rem;
  line-height: 1.5;
  color: var(--cocoa);
}
.vert-tags {
  display: flex; flex-wrap: wrap; gap: .35rem;
  margin-top: auto;
}
.vert-tags li {
  font-size: .73rem; font-weight: 500;
  color: var(--cocoa);
  padding: .25rem .55rem;
  background: var(--peach);
  border-radius: var(--radius-pill);
}

.vert-foot {
  max-width: var(--max);
  margin: 2.5rem auto 0;
  text-align: center;
  font-size: 1rem;
  color: var(--cocoa);
}

/* =============================================================
   PROCESS / HOW IT WORKS
   ============================================================= */
.process {
  background: linear-gradient(180deg, var(--bg) 0%, var(--peach) 100%);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: var(--max);
  margin: 0 auto;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }

.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.5rem 1.5rem;
  display: flex; flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur) var(--ease);
}
.step:hover { transform: translateY(-4px); }
.step-num {
  font-family: var(--f-body);
  font-size: .82rem; font-weight: 700;
  letter-spacing: .12em;
  color: var(--coral-deep);
}
.step-body h3 {
  font-family: var(--f-body);
  font-size: 1.45rem; font-weight: 600;
  letter-spacing: -.018em;
  margin: 0 0 .55rem;
}
.step-body p {
  margin: 0 0 .85rem;
  color: var(--cocoa);
  font-size: .98rem;
  line-height: 1.55;
}
.step-meta {
  display: inline-flex;
  padding: .35rem .65rem;
  background: var(--bg-warm);
  border-radius: var(--radius-pill);
  font-size: .78rem; font-weight: 600;
  color: var(--cocoa);
}
.step-art {
  align-self: flex-end;
  width: 110px; height: 110px;
}
.step-art svg { width: 100%; height: 100%; }

.process-callout {
  max-width: var(--max);
  margin: clamp(2.5rem, 4vw, 3.5rem) auto 0;
  background: var(--espresso);
  color: var(--bg);
  border-radius: var(--radius-l);
  padding: clamp(2rem, 4vw, 3rem);
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.process-callout::before {
  content: ''; position: absolute;
  top: -80px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, var(--honey), transparent 70%);
  opacity: .35;
  border-radius: 50%;
}
.callout-eyebrow {
  font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--honey);
  margin: 0 0 .55rem;
}
.callout-line {
  font-family: var(--f-display);
  font-variation-settings: 'opsz' 144, 'wght' 460;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.15;
  margin: 0 0 .35rem;
  max-width: 28em;
}
.callout-line em {
  font-style: italic;
  color: var(--coral-mid);
}
.callout-sub {
  margin: 0;
  font-size: .92rem;
  color: rgba(255,248,238,.7);
}
.process-callout .btn-primary {
  background: var(--coral);
  color: var(--bg);
  flex-shrink: 0;
  z-index: 1;
}
.process-callout .btn-primary:hover { background: var(--bg); color: var(--espresso); }

/* =============================================================
   PORTFOLIO / WORK
   ============================================================= */
.work {
  background: var(--bg);
}
.work-filters {
  display: flex; flex-wrap: wrap; gap: .5rem;
  justify-content: center;
  margin: -1rem auto 2.5rem;
  max-width: var(--max);
}
.chip {
  padding: .55rem 1.15rem;
  border-radius: var(--radius-pill);
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: .9rem; font-weight: 500;
  color: var(--cocoa);
  transition: background var(--dur), color var(--dur), border-color var(--dur);
}
.chip:hover { background: var(--peach); color: var(--espresso); }
.chip.is-active { background: var(--espresso); color: var(--bg); border-color: var(--espresso); }

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  max-width: var(--max);
  margin: 0 auto;
}
@media (max-width: 1000px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .work-grid { grid-template-columns: 1fr; } }

.work-card {
  display: flex; flex-direction: column;
  transition: transform var(--dur) var(--ease);
}
.work-card.is-hidden { display: none; }
.work-card:hover { transform: translateY(-6px); }
.work-link {
  display: flex; flex-direction: column; gap: 1rem;
  color: inherit; text-decoration: none;
  border-radius: 16px;
  outline-offset: 6px;
}
.work-link:focus-visible { outline: 2px solid var(--coral); }
.work-link:hover .work-frame {
  box-shadow: 0 24px 48px -16px rgba(45,27,20,.25), 0 8px 16px -8px rgba(255,107,74,.18);
}
.work-link:hover .work-go { transform: translate(2px,-2px); color: var(--coral-deep); }

.work-frame {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 11;
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
}
.wf-bar {
  display: flex; align-items: center; gap: .35rem;
  padding: .55rem .75rem;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--line);
  font-size: .72rem; color: var(--taupe);
}
.wf-bar.dark { background: #1a1a1a; color: rgba(255,255,255,.5); border-bottom-color: #2a2a2a; }
.wf-bar.light { background: #fafafa; }
.wf-bar i {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--line-deep);
}
.wf-bar.dark i { background: #3a3a3a; }
.wf-bar i:nth-child(1) { background: #FF6B6B; }
.wf-bar i:nth-child(2) { background: #FFD23F; }
.wf-bar i:nth-child(3) { background: #4CD964; }
.wf-bar span {
  margin-left: auto; margin-right: auto;
  padding: .2rem .55rem;
  background: rgba(45,27,20,.05);
  border-radius: 4px;
  font-size: .68rem;
}
.wf-bar.dark span { background: rgba(255,255,255,.06); }

.wf-screen {
  flex: 1;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* ----- Luna Café — cinematic split + film grain ---------- */
.frame-warm .wf-screen { background: #F4ECDF; }
.pf-luna { display: flex; flex-direction: column; }
.pf-luna-split {
  flex: 1;
  display: grid; grid-template-columns: 1.35fr 1fr;
  min-height: 0;
}
.pf-luna-photo {
  background-size: cover; background-position: center;
  filter: saturate(.78) contrast(1.05) brightness(.92);
}
.pf-luna-block {
  background: #C26849;
  display: flex; align-items: flex-start; justify-content: center;
  padding: .85rem .4rem;
  position: relative;
}
.pf-luna-block::after {
  content: ''; position: absolute; left: 50%; bottom: .55rem;
  width: 1px; height: 1.4rem; background: rgba(255,240,220,.6);
}
.pf-luna-vert {
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-family: var(--f-body); font-size: .55rem; font-weight: 600;
  letter-spacing: .26em; color: #F4E2CC;
}
.pf-luna-h {
  position: absolute; left: .9rem; right: .9rem; bottom: .65rem;
  font-family: var(--f-display);
  font-variation-settings: 'opsz' 144, 'wght' 360, 'SOFT' 40;
  font-size: 1.55rem; line-height: .92;
  color: #FFF6E8; letter-spacing: -.025em;
  text-shadow: 0 1px 8px rgba(45,27,20,.45);
}
.pf-luna-h em {
  font-style: italic; font-variation-settings: 'opsz' 144, 'wght' 380, 'SOFT' 80;
  color: #E8B574;
}
.pf-luna-grain {
  position: absolute; inset: 0; pointer-events: none; opacity: .14;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/></svg>");
  mix-blend-mode: overlay;
}

/* ----- Hatch Coffee — brutalist grid + mono data --------- */
.frame-bold .wf-screen {
  background: #0B0B0B; color: #F5F1EA;
  padding: .85rem .9rem .8rem;
  display: flex; flex-direction: column;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
}
.frame-bold { border-radius: 14px; }
.pf-hatch-num {
  font-size: .58rem; letter-spacing: .18em;
  color: rgba(245,241,234,.5);
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(245,241,234,.18);
}
.pf-hatch-h {
  font-family: var(--f-body); font-weight: 900;
  font-size: 2rem; line-height: .92;
  letter-spacing: -.01em;
  margin: .55rem 0 auto;
  color: #F5F1EA;
}
.pf-hatch-grid {
  display: grid; grid-template-columns: 1fr auto;
  align-items: end; gap: .7rem;
  padding-top: .55rem;
  border-top: 1px solid rgba(245,241,234,.18);
}
.pf-hatch-data {
  display: flex; flex-direction: column; gap: .1rem;
  font-size: .56rem; letter-spacing: .14em;
  color: rgba(245,241,234,.62);
}
.pf-hatch-data span:first-child { color: #FF4D2E; }
.pf-hatch-cta {
  width: 1.9rem; height: 1.9rem;
  background: #FF4D2E; color: #0B0B0B;
  display: grid; place-items: center;
  font-family: var(--f-body); font-weight: 800; font-size: 1.1rem;
}

/* ----- Studio Sage — breathing mesh + slow beauty -------- */
.frame-elegant .wf-screen {
  background: #F4EFE6; color: #34302A;
  padding: .9rem 1rem .85rem;
  display: flex; flex-direction: column;
}
.pf-sage-mesh {
  position: absolute; inset: -10% -5% auto auto;
  width: 75%; aspect-ratio: 1; border-radius: 50%;
  background: conic-gradient(from 220deg, #C9D4BA, #E8C9C1, #DDD0B6, #C9D4BA);
  filter: blur(28px); opacity: .55; z-index: 0;
}
.pf-sage-eyebrow {
  position: relative; z-index: 1;
  font-family: var(--f-body); font-size: .56rem;
  letter-spacing: .28em; font-weight: 500;
  color: #807468;
}
.pf-sage-h {
  position: relative; z-index: 1;
  font-family: var(--f-display);
  font-variation-settings: 'opsz' 144, 'wght' 340, 'SOFT' 60;
  font-size: 2.05rem; line-height: .94;
  letter-spacing: -.03em;
  color: #34302A;
  margin: .35rem 0 auto;
}
.pf-sage-h em {
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'wght' 360, 'SOFT' 100;
  color: #8C9779;
}
.pf-sage-foot {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: .55rem;
  padding-top: .45rem;
}
.pf-sage-blob {
  width: 1.8rem; height: 1.8rem;
  border-radius: 64% 36% 58% 42% / 52% 60% 40% 48%;
  background-size: cover; background-position: center;
  flex-shrink: 0;
  filter: saturate(.85);
}
.pf-sage-cap {
  font-family: var(--f-display);
  font-variation-settings: 'opsz' 14, 'wght' 380;
  font-style: italic; font-size: .72rem;
  color: #6F665A;
}

/* ----- Lumen Hair Lab — neon fluid + stacked headlines --- */
.frame-vibrant .wf-screen {
  background: #0F0B1F; color: #F2E9DF;
  padding: .85rem .95rem .75rem;
  display: flex; flex-direction: column;
}
.pf-lumen-fluid {
  position: absolute; left: -15%; top: -20%;
  width: 75%; aspect-ratio: 1; border-radius: 50%;
  background: conic-gradient(from 200deg, #E84A75, #B43E7F, #E84A75);
  filter: blur(34px); opacity: .85; z-index: 0;
  animation: lumenDrift 12s ease-in-out infinite alternate;
}
.pf-lumen-fluid-2 {
  left: auto; right: -10%; top: auto; bottom: -25%;
  background: conic-gradient(from 40deg, #E8C36B, #C28A3E, #E8C36B);
  opacity: .7;
  animation-duration: 14s; animation-direction: alternate-reverse;
}
@keyframes lumenDrift {
  0% { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(8%,4%,0) scale(1.12); }
}
.pf-lumen-eyebrow {
  position: relative; z-index: 2;
  font-family: var(--f-body); font-size: .58rem;
  letter-spacing: .24em; font-weight: 500;
  color: #F2E9DF;
}
.pf-lumen-stack {
  position: relative; z-index: 2; flex: 1;
  display: flex; align-items: center; justify-content: flex-start;
  margin-top: .15rem;
}
.pf-lumen-ghost {
  position: absolute; left: -.05em; top: 50%;
  transform: translateY(-50%);
  font-family: var(--f-body); font-weight: 900;
  font-size: 2.4rem; line-height: 1;
  letter-spacing: -.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(242,233,223,.22);
  z-index: 1;
}
.pf-lumen-h {
  position: relative; z-index: 2;
  font-family: var(--f-display);
  font-variation-settings: 'opsz' 144, 'wght' 480, 'SOFT' 100;
  font-size: 2.1rem; line-height: 1;
  letter-spacing: -.025em;
  color: #F2E9DF;
  padding-left: .25rem;
}
.pf-lumen-h em {
  font-style: italic;
  background: linear-gradient(95deg, #E84A75, #E8C36B);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pf-lumen-sub {
  position: relative; z-index: 2;
  font-family: var(--f-display);
  font-variation-settings: 'opsz' 14, 'wght' 380;
  font-style: italic; font-size: .72rem;
  color: rgba(242,233,223,.7);
}

/* ----- Iron Hour — strobed pulse + countdown ------------- */
.frame-iron .wf-screen {
  background: #0A0A0A; color: #FAFAFA;
  padding: .8rem .9rem .75rem;
  display: flex; flex-direction: column;
}
.pf-iron-pulse {
  position: absolute; left: -20%; top: -25%;
  width: 90%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, #D9341E 0%, transparent 65%);
  filter: blur(8px); opacity: .55; z-index: 0;
  animation: ironPulse 2.4s ease-in-out infinite;
}
.pf-iron-pulse-2 {
  left: auto; right: -25%; top: auto; bottom: -20%;
  width: 70%; opacity: .4;
  animation-delay: 1.2s;
}
@keyframes ironPulse {
  0%, 100% { transform: scale(1); opacity: .55; }
  50% { transform: scale(1.15); opacity: .35; }
}
.pf-iron-sweat {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--f-body); font-weight: 900;
  font-size: 4.2rem; letter-spacing: -.04em;
  color: rgba(217,52,30,.08);
  z-index: 0; pointer-events: none;
  line-height: 1;
}
.pf-iron-eyebrow {
  position: relative; z-index: 2;
  display: inline-flex; align-items: center; gap: .35rem;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: .56rem; letter-spacing: .2em;
  color: #FAFAFA;
}
.pf-iron-dot {
  width: .42rem; height: .42rem; border-radius: 50%;
  background: #D9341E;
  box-shadow: 0 0 8px #D9341E;
  animation: ironDot 1.4s ease-in-out infinite;
}
@keyframes ironDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.7); }
}
.pf-iron-timer {
  position: relative; z-index: 2;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-weight: 700; font-size: 3rem; line-height: 1;
  letter-spacing: -.03em;
  color: #FAFAFA;
  margin: .35rem 0 auto;
  font-feature-settings: 'tnum' on;
}
.pf-iron-foot {
  position: relative; z-index: 2;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: .54rem; letter-spacing: .14em;
  color: rgba(250,250,250,.55);
  padding-top: .45rem;
  border-top: 1px solid rgba(250,250,250,.14);
}

/* ----- Verde Wellness — glass orb + healing mesh --------- */
.frame-soft .wf-screen {
  background: #FBF8F1; color: #2C3A35;
  padding: .95rem 1rem .85rem;
  display: flex; flex-direction: column;
}
.pf-verde-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 20% 10%, rgba(94,139,126,.18), transparent 60%),
    radial-gradient(50% 45% at 85% 90%, rgba(232,196,184,.32), transparent 65%);
  z-index: 0;
}
.pf-verde-orb {
  position: absolute; right: -1.2rem; top: 50%;
  transform: translateY(-50%);
  width: 5.2rem; height: 5.2rem;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.7), rgba(232,196,184,.35) 45%, rgba(94,139,126,.55));
  box-shadow:
    inset 0 0 28px rgba(255,255,255,.4),
    0 18px 36px -10px rgba(94,139,126,.45);
  z-index: 1;
  animation: verdeFloat 6s ease-in-out infinite;
}
.pf-verde-orb-core {
  position: absolute; left: 30%; top: 25%;
  width: 1.3rem; height: 1.3rem; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.85), transparent 70%);
  filter: blur(3px);
}
@keyframes verdeFloat {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 4px)); }
}
.pf-verde-eyebrow {
  position: relative; z-index: 2;
  font-family: var(--f-body); font-size: .56rem;
  letter-spacing: .26em; font-weight: 500;
  color: #5E8B7E;
}
.pf-verde-h {
  position: relative; z-index: 2;
  font-family: var(--f-display);
  font-variation-settings: 'opsz' 144, 'wght' 380, 'SOFT' 50;
  font-size: 1.55rem; line-height: 1.02;
  letter-spacing: -.025em;
  color: #2C3A35;
  margin: .35rem 0 0;
  max-width: 60%;
}
.pf-verde-h em {
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'wght' 400, 'SOFT' 100;
  color: #5E8B7E;
}

.work-meta {
  display: flex; flex-direction: column; gap: .25rem;
}
.work-meta h3 {
  font-family: var(--f-body);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: -.01em;
  display: inline-flex; align-items: center; gap: .4rem;
}
.work-go {
  width: 16px; height: 16px;
  color: var(--taupe);
  transition: transform var(--dur) var(--ease), color var(--dur);
}
.work-tag {
  font-size: .82rem;
  color: var(--taupe);
}

/* =============================================================
   VOICES
   ============================================================= */
.voices {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
}
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.2vw, 1.75rem);
  max-width: var(--max);
  margin: 0 auto;
  align-items: stretch;
}
@media (max-width: 980px) { .voice-grid { grid-template-columns: 1fr; max-width: 38rem; } }

.voice-card {
  background: linear-gradient(180deg, #FFFCF6 0%, #FBF4E8 100%);
  border: 1px solid rgba(60, 40, 28, 0.08);
  border-radius: 22px;
  padding: 1.5rem 1.6rem 1.4rem;
  position: relative;
  display: flex; flex-direction: column;
  gap: 1.1rem;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur), border-color var(--dur);
  box-shadow:
    0 1px 2px rgba(60, 40, 28, .04),
    0 8px 24px -8px rgba(60, 40, 28, .08);
  isolation: isolate;
  overflow: hidden;
}
.voice-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--accent, var(--coral)) 50%, transparent 100%);
  opacity: .7;
  z-index: 1;
}
.voice-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 2px 4px rgba(60, 40, 28, .06),
    0 18px 40px -10px rgba(60, 40, 28, .18);
  border-color: rgba(60, 40, 28, 0.14);
}
.voice-card::before {
  content: '"';
  position: absolute;
  top: 0.6rem; right: 1.1rem;
  font-family: var(--f-display);
  font-variation-settings: 'opsz' 144, 'wght' 900;
  font-size: 4.2rem;
  line-height: 1;
  color: var(--accent, var(--coral));
  opacity: .18;
  pointer-events: none;
  z-index: 0;
}
.voice-1 { --accent: #C5563E; }
.voice-2 { --accent: #6B8E6D; background: linear-gradient(180deg, #F8F2E5 0%, #F2EAD9 100%); }
.voice-3 { --accent: #8B3A4D; }

.voice-chip {
  display: inline-flex; align-items: center; gap: 6px;
  align-self: flex-start;
  font-family: var(--f-body);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent, var(--coral-deep));
  background: rgba(255, 255, 255, .65);
  border: 1px solid rgba(60, 40, 28, .08);
  padding: 5px 10px 5px 8px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  position: relative; z-index: 2;
}
.voice-chip svg {
  width: 13px; height: 13px;
  stroke-width: 2.2;
}

.voice-q {
  font-family: var(--f-display);
  font-variation-settings: 'opsz' 96, 'wght' 440, 'SOFT' 20;
  font-size: 1.18rem;
  line-height: 1.42;
  letter-spacing: -.012em;
  margin: 0;
  color: var(--espresso);
  flex: 1;
  position: relative; z-index: 2;
}
.voice-q em {
  font-style: italic;
  color: var(--accent, var(--coral-deep));
  font-variation-settings: 'opsz' 96, 'wght' 500, 'SOFT' 20;
  background: linear-gradient(180deg, transparent 65%, rgba(193, 86, 62, .12) 65%);
  padding: 0 2px;
}
.voice-2 .voice-q em { background: linear-gradient(180deg, transparent 65%, rgba(107, 142, 109, .14) 65%); }
.voice-3 .voice-q em { background: linear-gradient(180deg, transparent 65%, rgba(139, 58, 77, .12) 65%); }

.voice-card footer {
  display: flex; align-items: center; gap: .9rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(60, 40, 28, .08);
  position: relative; z-index: 2;
}
.avatar {
  position: relative;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, .9),
    0 2px 8px rgba(60, 40, 28, .14),
    inset 0 -2px 4px rgba(0, 0, 0, .12),
    inset 0 1px 2px rgba(255, 255, 255, .25);
}
.avatar span {
  font-family: var(--f-display);
  font-variation-settings: 'opsz' 144, 'wght' 600;
  font-size: 1.02rem;
  color: #fff;
  letter-spacing: .01em;
  line-height: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .2);
}
.avatar-1 { background: radial-gradient(circle at 30% 30%, #E07B5C 0%, #C5563E 60%, #9E3F2A 100%); }
.avatar-2 { background: radial-gradient(circle at 30% 30%, #8FAE91 0%, #6B8E6D 60%, #4D6E4F 100%); }
.avatar-3 { background: radial-gradient(circle at 30% 30%, #B5566C 0%, #8B3A4D 60%, #6E2A3B 100%); }

.voice-who strong {
  display: block;
  font-family: var(--f-body);
  font-size: .94rem; font-weight: 600;
  color: var(--espresso);
  letter-spacing: -.005em;
  margin-bottom: 2px;
}
.voice-who span {
  display: block;
  font-size: .78rem;
  color: var(--taupe);
  letter-spacing: 0;
}

.voice-trust {
  max-width: 48rem;
  margin: 3rem auto 0;
  display: flex; align-items: stretch; justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: 1.4rem 1.8rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, .55) 0%, rgba(255, 255, 255, .25) 100%);
  border: 1px solid rgba(60, 40, 28, .08);
  border-radius: 20px;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px -10px rgba(60, 40, 28, .1);
}
.trust-stat {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  flex: 1; min-width: 0;
  text-align: center;
}
.trust-stat b {
  font-family: var(--f-display);
  font-variation-settings: 'opsz' 144, 'wght' 540;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  line-height: 1;
  color: var(--espresso);
  letter-spacing: -.02em;
  display: inline-flex; align-items: baseline; gap: 1px;
}
.trust-stat b i {
  font-style: normal;
  font-size: .55em;
  color: var(--coral-deep);
  font-variation-settings: 'opsz' 144, 'wght' 500;
  margin-left: 1px;
}
.trust-stat span {
  font-size: .78rem;
  color: var(--cocoa);
  font-weight: 500;
  letter-spacing: .01em;
}
.trust-divider {
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(60, 40, 28, .15) 50%, transparent 100%);
  align-self: stretch;
}
@media (max-width: 640px) {
  .voice-trust { flex-direction: column; gap: 1rem; padding: 1.2rem; }
  .trust-divider { width: 60%; height: 1px; align-self: center; background: linear-gradient(90deg, transparent 0%, rgba(60, 40, 28, .15) 50%, transparent 100%); }
}

/* =============================================================
   FAQ
   ============================================================= */
.faq {
  background: var(--bg);
}
.faq-list {
  max-width: var(--max-narrow);
  margin: 0 auto;
  display: flex; flex-direction: column;
  gap: .5rem;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  overflow: hidden;
  transition: border-color var(--dur);
}
.faq-item:has(.faq-q[aria-expanded="true"]) {
  border-color: var(--coral);
  box-shadow: 0 8px 24px -8px rgba(255,107,74,.2);
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.2rem 1.4rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--espresso);
  text-align: left;
  transition: color var(--dur);
}
.faq-q:hover { color: var(--coral-deep); }
.faq-q svg {
  width: 20px; height: 20px;
  padding: 6px;
  box-sizing: content-box;
  background: var(--bg-warm);
  border-radius: 999px;
  color: var(--coral-deep);
  transition: transform var(--dur) var(--ease), background var(--dur);
  flex-shrink: 0;
}
.faq-q:hover svg { background: var(--coral-soft, #FFE4D6); }
.faq-q[aria-expanded="true"] svg {
  transform: rotate(180deg);
  color: var(--coral);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms var(--ease);
}
.faq-a p {
  margin: 0;
  padding: 0 1.4rem 1.4rem;
  color: var(--cocoa);
  font-size: .98rem;
  line-height: 1.6;
}

/* =============================================================
   FINAL CTA
   ============================================================= */
.cta-final {
  padding-block: clamp(3rem, 8vw, 6rem);
}
.cta-card {
  max-width: var(--max-narrow);
  margin: 0 auto;
  background: var(--peach);
  border: 1px solid var(--peach-deep);
  border-radius: var(--radius-l);
  padding: clamp(3rem, 6vw, 4.5rem) clamp(2rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-sun {
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  opacity: .65;
  animation: spin-slow 60s linear infinite;
}
.cta-sun svg { width: 100%; height: 100%; }
@keyframes spin-slow { to { transform: rotate(360deg); } }

.cta-card .kicker { background: var(--surface); }
.cta-card h2 { margin-top: 1rem; }
.cta-row {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: .75rem; margin-top: 2rem;
}
.cta-fineprint {
  margin-top: 1.25rem;
  font-size: .9rem;
  color: var(--cocoa);
}
.cta-fineprint a { color: var(--coral-deep); font-weight: 600; }
.cta-fineprint a:hover { color: var(--espresso); }

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer {
  background: var(--espresso);
  color: var(--bg);
  padding: clamp(3rem, 6vw, 5rem) var(--page) 1.5rem;
}
.foot-top {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,248,238,.12);
}
@media (max-width: 780px) {
  .foot-top { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
}

.foot-brand .brand { color: var(--bg); margin-bottom: 1rem; }
.foot-tag {
  margin: 0;
  font-family: var(--f-display);
  font-variation-settings: 'opsz' 144, 'wght' 420;
  font-size: 1.35rem;
  line-height: 1.25;
  color: var(--coral-mid);
  max-width: 18em;
}
.foot-col { display: flex; flex-direction: column; gap: .5rem; }
.foot-h {
  font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--honey);
  margin: 0 0 .35rem;
}
.foot-col a, .foot-col span {
  color: rgba(255,248,238,.78);
  font-size: .95rem;
  transition: color var(--dur);
}
.foot-col a:hover { color: var(--bg); }

.foot-bot {
  max-width: var(--max);
  margin: 1.5rem auto 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: .82rem;
  color: rgba(255,248,238,.5);
}
.foot-sun {
  display: inline-flex; align-items: center; gap: .4rem;
}
.foot-sun svg { width: 14px; height: 14px; color: var(--honey); }

/* =============================================================
   MOBILE MENU
   ============================================================= */
.mobile-menu {
  position: fixed; inset: 0;
  z-index: 100;
  background: var(--bg);
  padding: 1rem var(--page) 2rem;
  display: flex; flex-direction: column;
  gap: 2rem;
  transform: translateY(-100%);
  transition: transform 400ms var(--ease-out);
}
.mobile-menu[data-open="true"] { transform: translateY(0); }
.mm-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: .25rem 0;
}
.mm-nav {
  display: flex; flex-direction: column;
  gap: .25rem;
  margin-top: 1rem;
}
.mm-nav a {
  font-family: var(--f-display);
  font-variation-settings: 'opsz' 144, 'wght' 460;
  font-size: 2.2rem;
  letter-spacing: -.02em;
  padding: .35rem 0;
  color: var(--espresso);
}
.mm-call {
  font-size: 1.1rem; font-weight: 600;
  color: var(--cocoa);
  text-align: center;
  margin-top: auto;
}

/* =============================================================
   QUOTE DIALOG
   ============================================================= */
.quote-dialog {
  margin: auto;
  padding: 0;
  width: min(640px, 100% - 2rem);
  max-height: min(720px, 92vh);
  border: none;
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--espresso);
  box-shadow: 0 30px 80px -10px rgba(45,27,20,.4);
  overflow: hidden;
}
.quote-dialog::backdrop {
  background: rgba(45,27,20,.55);
  backdrop-filter: blur(4px);
}
.quote-dialog[open] {
  animation: dialog-in 380ms var(--ease-out);
}
@keyframes dialog-in {
  from { opacity: 0; transform: translateY(20px) scale(.98); }
  to   { opacity: 1; transform: none; }
}

.quote-form {
  display: flex; flex-direction: column;
  height: 100%;
  max-height: min(720px, 92vh);
}
.qd-head {
  position: relative;
  padding: 1.5rem 4rem 1.1rem 1.75rem;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.qd-eyebrow {
  margin: 0 0 .25rem;
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--coral-deep);
}
.qd-head h2 {
  font-family: var(--f-display);
  font-variation-settings: 'opsz' 144, 'wght' 460;
  font-size: 1.6rem; line-height: 1.15;
  letter-spacing: -.02em;
  margin: 0;
}
.qd-close {
  position: absolute; top: .85rem; right: .85rem;
}

.qd-progress {
  display: flex; align-items: center;
  padding: 1rem 1.75rem;
  gap: .5rem;
  border-bottom: 1px solid var(--line);
  background: var(--bg-warm);
}
.qd-step {
  display: flex; align-items: center; gap: .55rem;
  font-size: .85rem; font-weight: 500;
  color: var(--taupe);
  flex: 0 0 auto;
}
.qd-step span {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--surface);
  border: 1.5px solid var(--line-deep);
  display: grid; place-items: center;
  font-size: .78rem;
  transition: all var(--dur);
}
.qd-step.is-active { color: var(--espresso); }
.qd-step.is-active span {
  background: var(--coral);
  color: var(--bg);
  border-color: var(--coral);
}
.qd-step.is-done span { background: var(--espresso); color: var(--bg); border-color: var(--espresso); }
.qd-step:not(:last-child)::after {
  content: ''; width: 24px; height: 1.5px;
  background: var(--line-deep);
  margin-inline-start: .25rem;
}

.qd-stage {
  flex: 1;
  position: relative;
  overflow-y: auto;
  padding: 1.5rem 1.75rem 1.25rem;
}
.qd-panel {
  display: none;
  padding: 0;
  margin: 0;
  border: 0;
}
.qd-panel.is-active { display: block; }

/* Industry choice cards */
.qd-choices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .65rem;
}
.qd-industry .choice-other { grid-column: 1 / -1; }
.choice { position: relative; }
.choice input {
  position: absolute; opacity: 0; inset: 0;
  width: 100%; height: 100%;
  cursor: pointer;
}
.choice-card {
  display: flex; align-items: center; gap: .85rem;
  padding: 1rem 1.1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-s);
  background: var(--surface);
  transition: all var(--dur);
  font-weight: 500;
}
.choice-card .choice-emoji {
  display: inline-grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--peach) 0%, var(--peach-deep) 100%);
  color: var(--coral-deep);
  font-size: 1.05rem;
  flex-shrink: 0;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.55),
    0 1px 2px rgba(60,40,28,.08);
  transition: all var(--dur);
}
.choice input:checked + .choice-card .choice-emoji {
  background: linear-gradient(180deg, var(--coral) 0%, var(--coral-deep) 100%);
  color: var(--bg);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.25),
    0 4px 10px -2px rgba(255,107,74,.45);
}
.choice-card .choice-label { font-size: 1rem; color: var(--espresso); }
.choice:hover .choice-card { border-color: var(--coral-mid); transform: translateY(-2px); }
.choice input:checked + .choice-card {
  border-color: var(--coral);
  background: var(--peach);
  box-shadow: 0 6px 20px -6px rgba(255,107,74,.35);
}

/* Style choice cards */
.qd-style { grid-template-columns: repeat(2, 1fr); }
.choice-style {
  display: flex; flex-direction: column;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-s);
  background: var(--surface);
  overflow: hidden;
  transition: all var(--dur);
}
.sc-preview {
  height: 80px;
  display: flex; align-items: center; justify-content: center;
  gap: 6px;
  padding: 0 1rem;
}
.sc-preview i { display: block; height: 32px; border-radius: 6px; flex: 1; }
.sc-warm .sc-preview { background: linear-gradient(135deg, #FFF8EE, #FFE9D6); }
.sc-warm .sc-preview i:nth-child(1) { background: #C17250; height: 44px; }
.sc-warm .sc-preview i:nth-child(2) { background: #FFD23F; }
.sc-warm .sc-preview i:nth-child(3) { background: #2D1B14; height: 22px; }

.sc-bold .sc-preview { background: #0d0d0d; }
.sc-bold .sc-preview i:nth-child(1) { background: var(--bg); }
.sc-bold .sc-preview i:nth-child(2) { background: var(--coral); height: 44px; }
.sc-bold .sc-preview i:nth-child(3) { background: var(--honey); height: 22px; }

.sc-elegant .sc-preview { background: #FBF9F5; }
.sc-elegant .sc-preview i:nth-child(1) { background: #D8CEBC; height: 24px; }
.sc-elegant .sc-preview i:nth-child(2) { background: #2a2a2a; }
.sc-elegant .sc-preview i:nth-child(3) { background: #ECE6DC; height: 18px; }

.sc-vibrant .sc-preview { background: linear-gradient(135deg, #FFD23F, #FF6B4A); }
.sc-vibrant .sc-preview i:nth-child(1) { background: #6A4ACE; }
.sc-vibrant .sc-preview i:nth-child(2) { background: #4ACE8A; height: 44px; }
.sc-vibrant .sc-preview i:nth-child(3) { background: #C84A6A; height: 22px; }

.sc-name { padding: .85rem 1rem .25rem; font-weight: 600; font-size: .98rem; }
.sc-desc { padding: 0 1rem .85rem; font-size: .82rem; color: var(--taupe); }
.choice:hover .choice-style { border-color: var(--coral-mid); transform: translateY(-2px); }
.choice input:checked + .choice-style {
  border-color: var(--coral);
  box-shadow: 0 6px 20px -6px rgba(255,107,74,.35);
}

.qd-tip {
  margin: 1rem 0 0;
  padding: .85rem 1rem;
  background: var(--bg-warm);
  border-radius: var(--radius-s);
  font-size: .85rem;
  color: var(--cocoa);
  text-align: center;
}

/* Contact fields */
.qd-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .85rem;
}
.field { display: flex; flex-direction: column; gap: .35rem; }
.field-wide { grid-column: 1 / -1; }
.field span {
  font-size: .82rem;
  font-weight: 500;
  color: var(--cocoa);
}
.field input, .field textarea {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-xs);
  padding: .75rem .85rem;
  font-size: .95rem;
  color: var(--espresso);
  transition: border-color var(--dur), background var(--dur);
  font-family: var(--f-body);
  resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--coral);
  background: var(--bg);
}
.field input::placeholder, .field textarea::placeholder { color: var(--taupe); }

/* Thanks panel */
.qd-thanks {
  text-align: center;
  padding: 1rem 0 .5rem;
}
.qd-thanks .qd-sun {
  width: 64px; height: 64px;
  margin: 0 auto 1rem;
  animation: spin-slow 30s linear infinite;
}
.qd-thanks h3 {
  font-family: var(--f-display);
  font-variation-settings: 'opsz' 144, 'wght' 460;
  font-size: 1.85rem;
  letter-spacing: -.02em;
  margin: 0 0 .55rem;
}
.qd-thanks p {
  margin: 0 0 .5rem;
  color: var(--cocoa);
  font-size: .98rem;
}
.qd-thanks-meta { margin-bottom: 1.5rem; }

.qd-foot {
  display: flex; align-items: center; gap: .65rem;
  padding: 1rem 1.75rem;
  background: var(--surface);
  border-top: 1px solid var(--line);
}
.qd-grow { flex: 1; }

/* Responsive dialog */
@media (max-width: 540px) {
  .qd-choices, .qd-style, .qd-fields { grid-template-columns: 1fr; }
  .qd-stage { padding: 1.25rem 1.25rem 1rem; }
  .qd-head, .qd-progress, .qd-foot { padding-inline: 1.25rem; }
  .qd-step:not(.is-active):not(.is-done) { display: none; }
  .qd-step:not(:last-child)::after { display: none; }
}

/* =============================================================
   HEADER RESPONSIVE
   ============================================================= */
@media (max-width: 920px) {
  .primary-nav { display: none; }
  .ghost-link { display: none; }
  .menu-toggle { display: inline-flex; }
}

@media (max-width: 540px) {
  .header-actions .btn-primary span { display: none; }
  .header-actions .btn-primary { padding: .7rem .85rem; }
}

/* =============================================================
   STATIC PAGES (privacy, terms)
   ============================================================= */
.legal-page {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) var(--page);
}
.legal-page h1 {
  font-family: var(--f-display);
  font-variation-settings: 'opsz' 144, 'wght' 460;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  letter-spacing: -.03em;
  margin: 0 0 .35rem;
}
.legal-page .subtitle {
  font-size: 1.05rem;
  color: var(--cocoa);
  margin: 0 0 3rem;
}
.legal-page h2 {
  font-family: var(--f-body);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 2.5rem 0 .75rem;
}
.legal-page p {
  margin: 0 0 1rem;
  color: var(--cocoa);
  line-height: 1.7;
}
.legal-page a { color: var(--coral-deep); text-decoration: underline; text-underline-offset: 3px; }
.legal-page a:hover { color: var(--espresso); }

/* ---------- Sales and handoff pages ---------- */
.sales-page {
  width: min(1120px, calc(100% - 2 * var(--page)));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.sales-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .8fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}
.sales-hero h1 {
  margin: .4rem 0 1rem;
  font-family: var(--f-display);
  font-variation-settings: var(--display-vars);
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: .9;
  letter-spacing: 0;
}
.sales-hero p {
  margin: 0;
  color: var(--cocoa);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  max-width: 62ch;
}
.sales-note,
.fallback-box {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  border-radius: var(--radius-xs);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}
.sales-note strong,
.fallback-box strong { display: block; margin-bottom: .35rem; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}
.price-card {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-xs);
  background: var(--surface);
  padding: clamp(1.25rem, 2vw, 1.7rem);
  box-shadow: var(--shadow);
}
.price-card.is-featured {
  border-color: var(--espresso);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.price-kicker {
  display: inline-flex;
  width: fit-content;
  border-radius: var(--radius-pill);
  background: var(--peach);
  color: var(--cocoa);
  font-weight: 700;
  font-size: .78rem;
  padding: .35rem .65rem;
}
.price-card h2,
.content-block h2,
.handoff-grid h2 {
  margin: 0;
  font-family: var(--f-display);
  font-variation-settings: var(--small-vars);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1;
  letter-spacing: 0;
}
.price {
  margin: 0;
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 800;
}
.price small { font-size: .95rem; color: var(--taupe); font-weight: 600; }
.price-card ul,
.content-block ul {
  display: grid;
  gap: .65rem;
  list-style: none;
}
.price-card li,
.content-block li {
  display: grid;
  grid-template-columns: 1.1rem 1fr;
  gap: .55rem;
  color: var(--cocoa);
}
.price-card li::before,
.content-block li::before {
  content: "";
  width: .48rem;
  height: .48rem;
  border-radius: 50%;
  background: var(--coral);
  margin-top: .55rem;
}
.price-card .btn { margin-top: auto; justify-content: center; }
.content-grid,
.handoff-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.content-block {
  border: 1px solid var(--line);
  border-radius: var(--radius-xs);
  background: rgba(255,255,255,.74);
  padding: clamp(1.25rem, 2vw, 1.8rem);
}
.content-block p {
  color: var(--cocoa);
  margin: .65rem 0 0;
}
.steps-list {
  counter-reset: sales-step;
  display: grid;
  gap: .85rem;
}
.steps-list li {
  counter-increment: sales-step;
  display: grid;
  grid-template-columns: 2.3rem 1fr;
  gap: .85rem;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius-xs);
  background: rgba(255,255,255,.7);
  padding: 1rem;
}
.steps-list li::before {
  content: counter(sales-step, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  background: var(--espresso);
  color: var(--bg);
  font-weight: 800;
  font-size: .8rem;
}
.config-cta[data-config-missing="true"] {
  opacity: .78;
  cursor: not-allowed;
}
.tally-embed {
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xs);
  background: var(--surface);
  overflow: hidden;
}
.tally-embed iframe {
  width: 100%;
  min-height: 520px;
  border: 0;
}
.welcome-form {
  padding: 1.2rem;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
}
.form-grid label {
  display: grid;
  gap: .4rem;
  color: var(--cocoa);
  font-size: .82rem;
  font-weight: 700;
}
.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-xs);
  background: rgba(255,255,255,.82);
  color: var(--espresso);
  font: inherit;
  font-weight: 500;
  padding: .8rem .9rem;
  outline: none;
}
.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255,107,74,.14);
}
.form-grid .span-2 {
  grid-column: 1 / -1;
}
.form-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
.form-actions p {
  margin: 0;
  color: var(--taupe);
  font-size: .92rem;
}
.form-actions button:disabled {
  opacity: .65;
  cursor: wait;
  transform: none;
}
@media (max-width: 860px) {
  .sales-hero,
  .pricing-grid,
  .content-grid,
  .handoff-grid {
    grid-template-columns: 1fr;
  }
  .sales-page { padding-top: 2.5rem; }
  .price-card.is-featured { order: -1; }
  .form-grid { grid-template-columns: 1fr; }
  .form-actions { align-items: flex-start; flex-direction: column; }
}
.back-home {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-bottom: 1.5rem;
  font-size: .92rem;
  color: var(--cocoa);
  font-weight: 500;
}
.back-home:hover { color: var(--espresso); }

/* ===========================================================
   PHONE MOCKUP GLOW-UP — premium depth, gradients, accents
   per-theme polish layered on top of the base widget styles
   =========================================================== */

/* ---------- Shared: card depth + soft inner highlight ---------- */
.mu-svc,
.mu-menu-row,
.mu-tier,
.mu-doc,
.mu-alert,
.mu-map,
.mu-review,
.mu-team-i,
.mu-next,
.mu-slot,
.mu-srow,
.mu-stat,
.mu-quote,
.mu-live,
.mu-contact-i,
.mu-ins-c {
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}

/* ---------- Browser bar: glassy URL pill ---------- */
.mu-url {
  background: linear-gradient(180deg, #ffffff 0%, #f6f1ea 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 1px 2px rgba(45,27,20,.08);
}

/* ---------- Hero: stronger overlay, brand chip pop ---------- */
.mu-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(120% 70% at 50% 110%, rgba(0,0,0,.25), transparent 65%);
  pointer-events: none;
}
.mu-brand {
  backdrop-filter: blur(8px);
  background: rgba(255,253,248,.92);
  box-shadow:
    0 4px 12px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.9);
}
.mu-cta {
  background: linear-gradient(135deg, #FF7E5A 0%, #FF4D2E 100%);
  box-shadow:
    0 6px 14px rgba(255,77,46,.45),
    inset 0 1px 0 rgba(255,255,255,.35),
    inset 0 -1px 0 rgba(0,0,0,.12);
}

/* ---------- CAFE — oat milk gradient + golden hour ---------- */
.theme-cafe .mu-widget,
.mockup-cafe .mu-widget {
  background:
    radial-gradient(140% 60% at 0% 0%, rgba(255,210,63,.10), transparent 55%),
    linear-gradient(180deg, #FFFDF8 0%, #F8EFE2 100%);
}
.mockup-cafe .mu-svc {
  background: linear-gradient(180deg, #FFFFFF 0%, #FBF3E7 100%);
  box-shadow:
    0 2px 6px rgba(193,114,80,.10),
    inset 0 1px 0 rgba(255,255,255,.9);
  border-color: #efe3d3;
}
.mockup-cafe .mu-menu-row {
  background: linear-gradient(180deg, #FFFFFF 0%, #FCF6EC 100%);
  box-shadow:
    0 1px 3px rgba(193,114,80,.08),
    inset 0 1px 0 rgba(255,255,255,.85);
}
.mockup-cafe .mu-review {
  background: linear-gradient(180deg, #FFFBF3 0%, #FFF2DC 100%);
  border-color: #f5d3a3;
  box-shadow: 0 2px 8px rgba(245,179,66,.18);
}
.mockup-cafe .mu-loyalty {
  background: linear-gradient(135deg, #2D1B14 0%, #4a2f1f 50%, #6b3f1f 100%);
  box-shadow:
    0 6px 14px rgba(45,27,20,.35),
    inset 0 1px 0 rgba(255,210,63,.2);
}

/* ---------- SALON — sage + rose gold accents ---------- */
.mockup-salon .mu-widget {
  background:
    radial-gradient(120% 50% at 100% 0%, rgba(232,196,184,.18), transparent 55%),
    linear-gradient(180deg, #FFFFFF 0%, #F0F4ED 100%);
}
.mockup-salon .mu-svc {
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F7F0 100%);
  box-shadow:
    0 2px 6px rgba(92,125,95,.10),
    inset 0 1px 0 rgba(255,255,255,.95);
  border-color: #dde5d6;
}
.mockup-salon .mu-svc svg { color: #5C7D5F; }
.mockup-salon .mu-cta {
  background: linear-gradient(135deg, #6B8E6D 0%, #3d5840 100%);
  box-shadow:
    0 6px 14px rgba(60,88,64,.4),
    inset 0 1px 0 rgba(255,255,255,.25);
}
.mockup-salon .mu-next {
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F7F0 100%);
  box-shadow:
    0 2px 8px rgba(92,125,95,.12),
    inset 0 1px 0 rgba(255,255,255,.9);
}
.mockup-salon .mu-team-i {
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F7F0 100%);
  box-shadow:
    0 2px 6px rgba(92,125,95,.10),
    inset 0 1px 0 rgba(255,255,255,.9);
}
.mockup-salon .mu-av {
  box-shadow:
    0 0 0 1px #dde5d6,
    0 2px 6px rgba(92,125,95,.2);
}
.mockup-salon .mu-slot {
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F7F0 100%);
  box-shadow: 0 1px 3px rgba(92,125,95,.10);
}
.mockup-salon .mu-slot.is-on {
  background: linear-gradient(135deg, #6B8E6D 0%, #3d5840 100%);
  box-shadow:
    0 4px 10px rgba(60,88,64,.4),
    inset 0 1px 0 rgba(255,255,255,.2);
}
.mockup-salon .mu-ba-i {
  box-shadow: 0 4px 12px rgba(92,125,95,.18);
}
.mockup-salon .mu-ba-i span {
  background: linear-gradient(135deg, rgba(45,27,20,.85), rgba(45,27,20,.6));
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
}

/* ---------- GYM — stealth charcoal + crimson neon ---------- */
.theme-gym .mu-widget {
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(255,59,48,.10), transparent 55%),
    linear-gradient(180deg, #0a0a0a 0%, #161616 100%);
}
.theme-gym .mu-svc {
  background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
  border-color: #2a2a2a;
  box-shadow:
    0 2px 6px rgba(0,0,0,.4),
    inset 0 1px 0 rgba(255,255,255,.04);
}
.theme-gym .mu-cta {
  background: linear-gradient(135deg, #FF3B30 0%, #C8281F 100%);
  box-shadow:
    0 0 0 1px rgba(255,59,48,.4),
    0 6px 18px rgba(255,59,48,.55),
    0 0 24px rgba(255,59,48,.35),
    inset 0 1px 0 rgba(255,255,255,.25);
}
.theme-gym .mu-srow {
  background: linear-gradient(180deg, #1c1c1c 0%, #131313 100%);
  border-color: #2a2a2a;
  box-shadow:
    0 1px 3px rgba(0,0,0,.4),
    inset 0 1px 0 rgba(255,255,255,.04);
}
.theme-gym .mu-stat {
  background: linear-gradient(180deg, #1c1c1c 0%, #0f0f0f 100%);
  box-shadow:
    0 2px 6px rgba(0,0,0,.4),
    inset 0 1px 0 rgba(255,255,255,.06);
}
.theme-gym .mu-quote {
  background: linear-gradient(180deg, #1c1c1c 0%, #131313 100%);
  box-shadow:
    -3px 0 8px rgba(255,59,48,.25),
    0 2px 6px rgba(0,0,0,.4);
}
.theme-gym .mu-live {
  background: linear-gradient(180deg, #1c1c1c 0%, #131313 100%);
  box-shadow:
    0 0 0 1px rgba(74,222,128,.15),
    0 2px 8px rgba(0,0,0,.4);
}
.theme-gym .mu-promo {
  background: linear-gradient(135deg, #FFD23F 0%, #FFB800 100%);
  box-shadow:
    0 6px 18px rgba(255,210,63,.45),
    0 0 24px rgba(255,210,63,.2),
    inset 0 1px 0 rgba(255,255,255,.4),
    inset 0 -1px 0 rgba(0,0,0,.1);
}

/* ---------- CLINIC — botanical sage + halo ---------- */
.theme-clinic .mu-services,
.mockup-clinic .mu-services {
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(94,139,126,.06), transparent 55%);
}
.mu-tiers-wrap {
  background:
    radial-gradient(120% 60% at 0% 0%, rgba(94,139,126,.10), transparent 55%),
    linear-gradient(180deg, #FFFFFF 0%, #F0F5EE 100%) !important;
}
.mockup-clinic .mu-svc {
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F8F2 100%);
  box-shadow:
    0 4px 12px rgba(94,139,126,.10),
    inset 0 1px 0 rgba(255,255,255,.9);
  border-color: #dde5d6;
}
.mockup-clinic .mu-cta {
  background: linear-gradient(135deg, #6B8E6D 0%, #3d5840 100%);
  box-shadow:
    0 6px 14px rgba(60,88,64,.4),
    inset 0 1px 0 rgba(255,255,255,.25);
}
.mu-alert {
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F8F2 100%);
  box-shadow:
    0 2px 8px rgba(94,139,126,.12),
    inset 0 1px 0 rgba(255,255,255,.95);
}
.mu-tier:not(.is-on) {
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F8F2 100%);
  box-shadow:
    0 2px 6px rgba(94,139,126,.10),
    inset 0 1px 0 rgba(255,255,255,.95);
}
.mu-tier.is-on {
  background: linear-gradient(180deg, #6B8E6D 0%, #3d5840 100%);
  box-shadow:
    0 8px 20px rgba(60,88,64,.4),
    0 0 0 1px rgba(60,88,64,.6),
    inset 0 1px 0 rgba(255,255,255,.2);
}
.mu-doc {
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F8F2 100%);
  box-shadow:
    0 4px 12px rgba(94,139,126,.12),
    inset 0 1px 0 rgba(255,255,255,.95);
}
.mu-doc-av {
  box-shadow:
    0 0 0 1px #dde5d6,
    0 4px 8px rgba(94,139,126,.2);
}
.mu-ins-c {
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F8F2 100%);
  box-shadow: 0 1px 3px rgba(94,139,126,.08);
}
.mu-ins-c:last-child {
  background: linear-gradient(135deg, #6B8E6D 0%, #3d5840 100%);
  box-shadow:
    0 3px 8px rgba(60,88,64,.35),
    inset 0 1px 0 rgba(255,255,255,.2);
}
.mu-map {
  box-shadow:
    0 4px 14px rgba(94,139,126,.18),
    inset 0 1px 0 rgba(255,255,255,.9);
}
.mu-map-btn {
  background: linear-gradient(135deg, #6B8E6D 0%, #3d5840 100%);
  box-shadow:
    0 3px 8px rgba(60,88,64,.4),
    inset 0 1px 0 rgba(255,255,255,.2);
}
.mu-contact-i {
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F8F2 100%);
  box-shadow:
    0 2px 6px rgba(94,139,126,.10),
    inset 0 1px 0 rgba(255,255,255,.95);
}

/* ---------- Phone frame: ambient golden hour glow ---------- */
.phone-frame {
  filter:
    drop-shadow(0 30px 60px rgba(45,27,20,.18))
    drop-shadow(0 60px 90px rgba(255,107,74,.18));
}

/* ---------- Subtle floating motion on the doctor check + promo ---------- */
.mu-doc-check {
  filter: drop-shadow(0 1px 2px rgba(94,139,126,.35));
}

/* =============================================================
   STEAM PLUMES — rising from the cafe phone latte hero
   ============================================================= */
.mu-steam {
  position: absolute;
  left: 14%; right: 14%;
  bottom: 38%;
  height: 60%;
  pointer-events: none;
  z-index: 4;
  overflow: visible;
}
.steam-puff {
  position: absolute;
  bottom: 0;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.85) 0%, rgba(255,255,255,.5) 40%, rgba(255,255,255,0) 70%);
  filter: blur(3px);
  opacity: 0;
  animation: steam-rise 4.5s ease-out infinite;
}
.steam-puff-1 { left: 22%; animation-delay: 0s; }
.steam-puff-2 { left: 48%; animation-delay: 1.5s; width: 16px; height: 16px; }
.steam-puff-3 { left: 72%; animation-delay: 3s; width: 12px; height: 12px; }
@keyframes steam-rise {
  0%   { transform: translate(0, 10px) scale(.4); opacity: 0; }
  20%  { opacity: .55; }
  60%  { opacity: .35; }
  100% { transform: translate(var(--drift, -6px), -90px) scale(2.6); opacity: 0; }
}
.steam-puff-1 { --drift: -10px; }
.steam-puff-2 { --drift: 4px; }
.steam-puff-3 { --drift: 8px; }
@media (prefers-reduced-motion: reduce) {
  .steam-puff { animation: none; opacity: 0; }
}

/* Sections need relative positioning for absolute children (sun anchors, etc.) */
.section { position: relative; }

/* =============================================================
   SCROLL-LINKED SUN — rises across page, lands at the final CTA
   ============================================================= */
.scroll-sun {
  position: fixed;
  right: -120px;
  bottom: 8vh;
  width: 520px; height: 520px;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transform: translate3d(0, calc((1 - var(--sun-progress, 0)) * 95vh), 0);
  will-change: transform, opacity;
  transition: opacity 1000ms ease;
}
.scroll-sun.is-on { opacity: 1; }
.scroll-sun svg {
  width: 100%; height: 100%;
  display: block;
  filter:
    drop-shadow(0 0 40px rgba(255,210,63,.45))
    drop-shadow(0 0 80px rgba(255,170,80,.25));
}
.scroll-sun .sun-core {
  fill: #FFD23F;
  opacity: .55;
}
.scroll-sun .sun-rays {
  stroke: #FFB546;
  opacity: .35;
}
.scroll-sun .sun-halo {
  fill: url(#sunHaloGradient);
  opacity: .9;
}
/* Spin the rays very slowly */
@keyframes sun-spin {
  to { transform: rotate(360deg); }
}
.scroll-sun .sun-rays-group {
  transform-origin: center;
  animation: sun-spin 80s linear infinite;
}
/* Hide / disable on small screens + reduced motion */
@media (max-width: 720px) {
  .scroll-sun { width: 320px; height: 320px; right: -100px; bottom: 4vh; }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-sun { transition: none; transform: none; bottom: 6vh; opacity: .35; }
  .scroll-sun .sun-rays-group { animation: none; }
}
/* Layer order: keep all main content above the sun */
main { position: relative; z-index: 1; }
.site-header { position: relative; z-index: 10; }
.site-footer { position: relative; z-index: 1; }

/* =============================================================
   404 PAGE — cold-coffee illustration + friendly copy
   ============================================================= */
.page-404 {
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(255,210,63,.08), transparent 55%),
    radial-gradient(80% 60% at 100% 100%, rgba(193,114,80,.10), transparent 60%),
    var(--bg);
  min-height: 100vh;
  display: flex; flex-direction: column;
}
.page-404 main { flex: 1; }
.lost-page {
  display: grid; place-items: center;
  min-height: calc(100vh - 200px);
  padding: 4rem clamp(1.25rem, 5vw, 4rem);
}
.lost-stage {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  max-width: 1100px;
  width: 100%;
}
@media (max-width: 820px) {
  .lost-stage { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; }
  .lost-art { max-width: 320px; margin: 0 auto; }
}
.lost-art {
  width: 100%; height: auto;
  filter: drop-shadow(0 18px 30px rgba(60,40,28,.12));
}
.lost-zzz {
  transform-origin: 240px 50px;
  animation: lost-zzz 4s ease-in-out infinite;
}
@keyframes lost-zzz {
  0%, 100% { transform: translateY(0); opacity: .9; }
  50%      { transform: translateY(-4px); opacity: .55; }
}
@media (prefers-reduced-motion: reduce) { .lost-zzz { animation: none; } }

.lost-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
@media (max-width: 820px) { .lost-copy { align-items: center; } }
.lost-code {
  font-family: var(--f-display);
  font-variation-settings: 'opsz' 144, 'wght' 600, 'SOFT' 30;
  font-size: clamp(3.5rem, 9vw, 6rem);
  line-height: .9;
  color: var(--coral);
  letter-spacing: -.03em;
  margin: 0;
  text-shadow: 2px 4px 0 rgba(255,107,74,.15);
}
.lost-copy h1 {
  font-family: var(--f-display);
  font-variation-settings: 'opsz' 144, 'wght' 500, 'SOFT' 20;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--espresso);
  margin: 0;
}
.lost-lede {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--cocoa);
  max-width: 32rem;
  margin: .25rem 0 .75rem;
}
.lost-row {
  display: flex; gap: .75rem;
  flex-wrap: wrap;
  margin-top: .5rem;
}
@media (max-width: 820px) { .lost-row { justify-content: center; } }
.lost-fineprint {
  font-size: .85rem;
  color: var(--taupe);
  margin-top: 1.25rem;
  line-height: 1.5;
}
.lost-fineprint a {
  color: var(--coral-deep);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.lost-fineprint a:hover { color: var(--coral); }


/* ============================================================
   LIVE PREVIEW GENERATOR  +  OPPORTUNITY CALCULATOR
   ============================================================ */

.preview-gen.section,
.opportunity-calc.section { padding: 5rem var(--page); }

.preview-gen .section-head h2,
.opportunity-calc .section-head h2 { letter-spacing: -.02em; }

/* ---------- PVG grid + form ---------- */
.pvg-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
  margin-top: 2.5rem;
}
@media (max-width: 880px) { .pvg-grid { grid-template-columns: 1fr; } }

.pvg-form {
  display: grid; gap: 1.1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}
.pvg-field { display: grid; gap: .4rem; }
.pvg-lbl {
  font-size: .75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--cocoa);
}
.pvg-lbl em { font-style: italic; color: var(--taupe); font-weight: 500; text-transform: none; letter-spacing: 0; }

.pvg-ico {
  display: flex; align-items: center; gap: .55rem;
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: var(--radius-s);
  padding: .65rem .85rem;
  transition: border-color .15s, box-shadow .15s;
}
.pvg-ico:focus-within { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(255,107,74,.18); }
.pvg-ico i[data-lucide] { width: 16px; height: 16px; color: var(--taupe); flex-shrink: 0; }
.pvg-ico input {
  border: 0; outline: 0; background: transparent;
  font: inherit; color: var(--espresso);
  width: 100%; min-width: 0;
}
.pvg-ico input::placeholder { color: #b59c80; }
.pvg-dollar { color: var(--taupe); font-weight: 600; flex-shrink: 0; }

.pvg-pair { display: grid; grid-template-columns: 1fr 7rem; gap: .8rem; }

.pvg-fieldset { border: 0; padding: 0; margin: 0; display: grid; gap: .55rem; }
.pvg-fieldset legend { padding: 0; margin-bottom: 0; }

.pvg-pills { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.pvg-pill {
  display: flex; align-items: center; gap: .55rem;
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: var(--radius-s);
  padding: .65rem .8rem;
  cursor: pointer;
  font-weight: 500; color: var(--cocoa);
  transition: all .15s;
}
.pvg-pill input { position: absolute; opacity: 0; pointer-events: none; }
.pvg-pill i[data-lucide] { width: 16px; height: 16px; color: var(--taupe); }
.pvg-pill:hover { border-color: var(--line-deep); }
.pvg-pill.is-active {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
}
.pvg-pill.is-active i[data-lucide] { color: #fff; }

.pvg-vibes { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem; }
.pvg-vibe {
  display: grid; gap: .35rem;
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: var(--radius-s);
  padding: .65rem;
  cursor: pointer; transition: all .15s;
}
.pvg-vibe input { position: absolute; opacity: 0; pointer-events: none; }
.pvg-vibe-swatches { display: flex; gap: 4px; }
.pvg-vibe-swatches i { display: block; width: 100%; height: 14px; border-radius: 4px; }
.pvg-vibe-name { font-size: .82rem; font-weight: 500; color: var(--cocoa); }
.pvg-vibe:hover { border-color: var(--line-deep); }
.pvg-vibe.is-active { border-color: var(--coral); box-shadow: 0 0 0 2px rgba(255,107,74,.18); }

/* ---------- PVG phone ---------- */
.pvg-stage {
  display: grid;
  justify-items: center;
  gap: .85rem;
  position: sticky; top: 1.5rem;
}
.pvg-phone {
  width: 295px;
  height: 600px;
  background: #1a1a1a;
  border-radius: 38px;
  padding: 11px;
  box-shadow: 0 30px 60px -20px rgba(45,27,20,.35), 0 0 0 1px rgba(255,255,255,.05) inset;
  position: relative;
  overflow: hidden;
}
.pvg-phone-notch {
  position: absolute; top: 11px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 22px;
  background: #000;
  border-radius: 0 0 14px 14px;
  z-index: 5;
}
.pvg-phone-bar {
  display: flex; align-items: center; gap: .4rem;
  background: #fff;
  border-radius: 28px 28px 0 0;
  padding: 22px .8rem .5rem;
  font-size: .72rem;
  color: var(--taupe);
}
.pvg-phone-dot {
  width: 7px; height: 7px; background: #d4d4d4; border-radius: 50%;
}
.pvg-phone-url { flex: 1; text-align: center; font-weight: 500; color: #5a5a5a; }
.pvg-phone-refresh i { width: 13px; height: 13px; color: #999; }
.pvg-page {
  height: calc(100% - 50px);
  overflow-y: auto;
  background: var(--bg);
  padding: .9rem;
  display: grid;
  gap: .8rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,.18) transparent;
}
.pvg-page::-webkit-scrollbar { width: 4px; }
.pvg-page::-webkit-scrollbar-thumb { background: rgba(0,0,0,.18); border-radius: 99px; }

/* ---------- Shared page bits ---------- */
.pvg-page .pvg-eyebrow {
  font-size: .58rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--coral-deep); display: inline-flex; align-items: center; gap: .3rem; margin: 0;
}
.pvg-page .pvg-eyebrow i[data-lucide] { width: 12px; height: 12px; }
.pvg-h1 { font-family: 'Fraunces', Georgia, serif; font-size: 1.25rem; line-height: 1.1; color: var(--espresso); margin: .15rem 0 .25rem; font-weight: 500; }
.pvg-h3 { font-size: .95rem; color: var(--espresso); margin: .15rem 0; font-weight: 600; }
.pvg-h4 { display: inline-flex; align-items: center; gap: .35rem; font-size: .8rem; color: var(--espresso); margin: 0 0 .2rem; font-weight: 600; }
.pvg-h4 i[data-lucide] { width: 13px; height: 13px; color: var(--coral); }
.pvg-lede { font-size: .78rem; color: var(--cocoa); margin: 0; line-height: 1.4; }
.pvg-mute { font-size: .7rem; color: var(--taupe); margin: 0; line-height: 1.4; }
.pvg-strong { font-size: .82rem; color: var(--espresso); margin: 0; font-weight: 600; line-height: 1.3; }
.pvg-price { font-family: 'Fraunces', serif; font-size: 1.2rem; color: var(--coral-deep); font-weight: 600; margin: .3rem 0 0; }
.pvg-section { display: grid; gap: .5rem; }
.pvg-section-eyebrow {
  font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: var(--cocoa); margin: .4rem 0 0;
}
.pvg-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.05);
  border-radius: 12px;
  padding: .7rem;
  display: grid; gap: .25rem;
}
.pvg-card-hero { background: linear-gradient(180deg, #fff8ec, #fff); border: 1px solid #f4e1c1; }
.pvg-card-visit { background: #fff; }
.pvg-card-prescription { background: linear-gradient(180deg, #fff, #fff7ed); border: 1px solid #f3dcc1; }
.pvg-card-availability { background: linear-gradient(180deg, #fdf3ec, #fff); border: 1px solid #f3dcc1; }
.pvg-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.pvg-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .4rem; }
.pvg-list li { display: flex; align-items: center; justify-content: space-between; gap: .6rem; padding: .55rem .7rem; background: #fff; border-radius: 10px; font-size: .78rem; }
.pvg-list li span { color: var(--cocoa); }
.pvg-list li b { color: var(--coral-deep); }
.pvg-map { height: 50px; background: linear-gradient(110deg, #fdebd9 0%, #fff 100%); border-radius: 8px; margin-top: .35rem; position: relative; }
.pvg-map::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 8px; height: 8px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 6px rgba(255,107,74,.2); }

.pvg-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .75rem 1rem;
  border-radius: 28px;
  border: 0; font: inherit; font-weight: 600; font-size: .8rem;
  cursor: pointer;
  background: var(--coral); color: #fff;
  transition: transform .15s, box-shadow .15s;
}
.pvg-btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-coral); }
.pvg-btn i[data-lucide] { width: 14px; height: 14px; }
.pvg-cta-primary { background: var(--coral); }
.pvg-mini-btn {
  margin-top: .4rem;
  background: transparent; border: 1px solid var(--line-deep);
  color: var(--espresso); font-weight: 600; font-size: .72rem;
  padding: .45rem .8rem; border-radius: 99px; cursor: pointer;
}
.pvg-chips { display: flex; flex-wrap: wrap; gap: .35rem; }
.pvg-chip {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  color: var(--cocoa);
  font: inherit; font-size: .68rem; font-weight: 500;
  padding: .35rem .65rem;
  border-radius: 99px;
  cursor: pointer;
  transition: all .15s;
}
.pvg-chip:hover { border-color: var(--coral); }
.pvg-chip.is-active { background: var(--espresso); color: #fff; border-color: var(--espresso); }

.pvg-quote {
  background: #fff7ed;
  border-left: 3px solid var(--coral);
  border-radius: 8px;
  padding: .65rem .8rem;
  font-size: .72rem; color: var(--cocoa); line-height: 1.45;
}
.pvg-quote cite { display: block; margin-top: .35rem; font-style: normal; font-weight: 600; color: var(--taupe); font-size: .68rem; }

.pvg-livebadge {
  font-size: .72rem; color: var(--taupe);
  display: inline-flex; align-items: center; gap: .4rem;
  margin: 0;
}
.pvg-livedot {
  display: inline-block; width: 7px; height: 7px; background: var(--coral); border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255,107,74,.6);
  animation: pvgPulse 1.6s ease-in-out infinite;
}
@keyframes pvgPulse { 50% { box-shadow: 0 0 0 6px rgba(255,107,74,0); } }

.pvg-phone-toast {
  position: absolute; bottom: 1rem; left: 50%; transform: translate(-50%, 20px);
  background: var(--espresso); color: #fff;
  padding: .55rem 1rem; border-radius: 99px;
  font-size: .72rem; font-weight: 500;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: all .25s;
  z-index: 10;
}
.pvg-phone-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
.pvg-phone-toast.is-neon { background: #c5ff3b; color: #111; }
.pvg-phone-toast.is-teal { background: #1f8a8a; color: #fff; }

/* ---------- Café archetype ---------- */
.pvg-cafe-hero {
  position: relative;
  background-size: cover; background-position: center;
  border-radius: 12px;
  height: 110px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: .7rem;
  overflow: hidden;
}
.pvg-cafe-hero-tint {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.55) 100%);
}
.pvg-cafe-hero-body { position: relative; color: #fff; }
.pvg-cafe-hero-body .pvg-eyebrow { color: #ffd9c6; }
.pvg-cafe-hero-body .pvg-h1, .pvg-cafe-hero-body .pvg-lede { color: #fff; }
.pvg-cafe-builder {
  display: grid; grid-template-columns: 70px 1fr; gap: .7rem;
  align-items: center;
  background: linear-gradient(180deg, #fff, #fff7ed);
  border-radius: 12px; padding: .7rem;
  border: 1px solid #f3dcc1;
}
.pvg-cafe-mug { position: relative; width: 70px; height: 80px; }
.pvg-mug-glass {
  position: relative;
  width: 56px; height: 70px;
  margin: 5px auto 0;
  background: rgba(255,255,255,.7);
  border: 1.5px solid #d4b691;
  border-radius: 8px 8px 14px 14px;
  overflow: hidden;
}
.pvg-mug-liquid {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 75%;
  transition: background .4s, height .4s;
}
.pvg-mug-liquid.is-espresso { background: linear-gradient(180deg, #6b3a1f, #2d1b14); }
.pvg-mug-liquid.is-matcha { background: linear-gradient(180deg, #99c065, #5a8235); }
.pvg-mug-liquid.is-coldbrew { background: linear-gradient(180deg, #4a2818, #1a0c08); }
.pvg-mug-cream {
  position: absolute; bottom: 75%; left: 0; right: 0;
  background: linear-gradient(180deg, #fff8ed, #f3dcc1);
  transition: height .4s;
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.pvg-mug-handle {
  position: absolute; right: -2px; top: 22px;
  width: 14px; height: 24px;
  border: 2px solid #d4b691;
  border-left: 0;
  border-radius: 0 14px 14px 0;
}
.pvg-options { display: grid; gap: .35rem; }
.pvg-options-lbl { font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--cocoa); margin: .3rem 0 0; }
.pvg-cart-pill {
  position: sticky; bottom: 0;
  align-self: end;
  background: var(--espresso); color: #fff;
  padding: .4rem .75rem; border-radius: 99px;
  font-size: .7rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: .35rem;
  width: max-content;
  justify-self: end;
}
.pvg-cart-pill i { width: 12px; height: 12px; }

/* ---------- Salon archetype ---------- */
.pvg-salon-hero {
  background: linear-gradient(135deg, #e8eee2 0%, #f5efe5 100%);
  border-radius: 12px; padding: .9rem .7rem;
}
.pvg-chairs { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: .4rem; }
.pvg-chair {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .55rem .35rem;
  cursor: pointer;
  display: grid; gap: .15rem;
  font: inherit;
  text-align: center;
  transition: all .15s;
}
.pvg-chair b { font-size: .82rem; color: var(--espresso); font-weight: 600; }
.pvg-chair span { font-size: .62rem; color: var(--taupe); }
.pvg-chair:hover { border-color: var(--coral); transform: translateY(-1px); }

/* ---------- Gym archetype (DARK MODE — overrides regardless of vibe) ---------- */
.pvg-phone.is-gym .pvg-page { background: #111; color: #f5f5f5; }
.pvg-phone.is-gym .pvg-page .pvg-h1,
.pvg-phone.is-gym .pvg-page .pvg-h3,
.pvg-phone.is-gym .pvg-page .pvg-strong,
.pvg-phone.is-gym .pvg-page .pvg-h4 { color: #fff; }
.pvg-phone.is-gym .pvg-page .pvg-mute { color: #9a9a9a; }
.pvg-phone.is-gym .pvg-page .pvg-card { background: #1c1c1c; border-color: rgba(255,255,255,.06); }
.pvg-phone.is-gym .pvg-page .pvg-card-dark { background: #181818; }
.pvg-phone.is-gym .pvg-page .pvg-list li { background: #1c1c1c; color: #ddd; }
.pvg-phone.is-gym .pvg-page .pvg-list li b { color: #c5ff3b; }
.pvg-phone.is-gym .pvg-page .pvg-section-eyebrow { color: #9a9a9a; }
.pvg-phone.is-gym .pvg-page .pvg-eyebrow-neon { color: #c5ff3b; }
.pvg-phone.is-gym .pvg-page .pvg-mute-neon { color: #8a8a8a; font-size: .7rem; margin: 0; line-height: 1.4; }
.pvg-phone.is-gym .pvg-page .pvg-h1-italic { font-family: 'Fraunces', serif; font-style: italic; font-weight: 600; letter-spacing: -.02em; }
.pvg-phone.is-gym .pvg-page .pvg-h4 i[data-lucide] { color: #c5ff3b; }
.pvg-phone.is-gym .pvg-page .pvg-chip-neon { background: #1c1c1c; border-color: rgba(255,255,255,.1); color: #ddd; }
.pvg-phone.is-gym .pvg-page .pvg-chip-neon.is-active { background: #c5ff3b; color: #111; border-color: #c5ff3b; }
.pvg-phone.is-gym .pvg-page .pvg-cta-neon { background: #c5ff3b; color: #111; font-weight: 800; letter-spacing: .02em; text-transform: uppercase; font-size: .78rem; }
.pvg-phone.is-gym .pvg-page .pvg-cta-neon:hover { box-shadow: 0 8px 22px -6px rgba(197,255,59,.6); }
.pvg-phone.is-gym .pvg-page .pvg-mini-btn { background: transparent; border-color: rgba(255,255,255,.18); color: #fff; text-transform: uppercase; letter-spacing: .08em; font-size: .65rem; }
.pvg-phone.is-gym .pvg-page .pvg-routine { background: #181818; border-radius: 12px; padding: .6rem; display: grid; gap: .55rem; }
.pvg-phone.is-gym .pvg-page .pvg-routine-row { display: grid; grid-template-columns: 18px 1fr; gap: .55rem; align-items: start; }
.pvg-phone.is-gym .pvg-page .pvg-routine-num { color: #c5ff3b; font-weight: 700; font-size: .68rem; }
.pvg-phone.is-gym .pvg-page .pvg-zone { background: #181818; border-radius: 12px; padding: .65rem; display: grid; gap: .35rem; }
.pvg-phone.is-gym .pvg-page .pvg-zone-bar { height: 10px; background: rgba(255,255,255,.06); border-radius: 99px; overflow: hidden; }
.pvg-phone.is-gym .pvg-page .pvg-zone-bar span { display: block; height: 100%; border-radius: 99px; transition: width .4s; }
.pvg-phone.is-gym .pvg-page .pvg-quote { background: #1c1c1c; border-left-color: #c5ff3b; color: #c8c8c8; }
.pvg-phone.is-gym .pvg-page .pvg-quote cite { color: #888; }
.pvg-phone.is-gym .pvg-page .pvg-classes { list-style: none; padding: 0; margin: 0; display: grid; gap: .4rem; }
.pvg-phone.is-gym .pvg-page .pvg-classes li { background: #1c1c1c; border-radius: 10px; padding: .55rem .7rem; font-size: .72rem; display: flex; align-items: center; gap: .5rem; color: #ddd; }
.pvg-phone.is-gym .pvg-page .pvg-classes li b { color: #c5ff3b; font-weight: 700; font-size: .68rem; min-width: 50px; }
.pvg-phone.is-gym .pvg-page .pvg-spots { margin-left: auto; font-size: .6rem; font-weight: 700; text-transform: uppercase; padding: .15rem .45rem; border-radius: 99px; background: rgba(197,255,59,.12); color: #c5ff3b; }
.pvg-phone.is-gym .pvg-page .pvg-spots-warn { background: rgba(255,138,59,.15); color: #ffa766; }
.pvg-phone.is-gym .pvg-page .pvg-spots-last { background: rgba(255,59,59,.18); color: #ff7676; }
.pvg-phone.is-gym .pvg-page .pvg-gym-hero { background: linear-gradient(135deg, #181818, #222); padding: .8rem .7rem; border-radius: 12px; }
.pvg-phone.is-gym .pvg-page .pvg-h1.pvg-h1-italic { color: #fff; font-size: 1.35rem; }
.pvg-phone.is-gym .pvg-page .pvg-lede { color: #b0b0b0; }

/* ---------- Clinic archetype ---------- */
.pvg-phone.is-clinic .pvg-clinic-toast {
  background: #fff4ea;
  border: 1px solid #f3dcc1;
  color: var(--cocoa);
  padding: .5rem .65rem;
  border-radius: 10px;
  display: flex; align-items: center; gap: .4rem;
  font-size: .72rem; font-weight: 500;
}
.pvg-phone.is-clinic .pvg-clinic-toast i { width: 14px; height: 14px; color: #1f8a8a; flex-shrink: 0; }
.pvg-phone.is-clinic .pvg-clinic-hero { background: linear-gradient(135deg, #e6f1f1 0%, #f4ecdf 100%); border-radius: 12px; padding: .9rem .7rem; }
.pvg-phone.is-clinic .pvg-cta-teal { background: #1f8a8a; }
.pvg-phone.is-clinic .pvg-cta-teal:hover { box-shadow: 0 8px 22px -6px rgba(31,138,138,.55); }
.pvg-phone.is-clinic .pvg-card-availability { background: linear-gradient(180deg, #e9f4f4, #fff); border-color: #c5e0e0; }
.pvg-phone.is-clinic .pvg-card-availability .pvg-eyebrow { color: #1f6a6a; }

/* ---------- Vibe overrides (not for gym) ---------- */
.pvg-phone.vibe-bold-modern:not(.is-gym) .pvg-page { background: #f6f2e9; }
.pvg-phone.vibe-bold-modern:not(.is-gym) .pvg-page .pvg-eyebrow { color: #ff5c2b; }
.pvg-phone.vibe-bold-modern:not(.is-gym) .pvg-cta-primary { background: #1a1a1a; }
.pvg-phone.vibe-elegant:not(.is-gym) .pvg-page { background: #fdf7ee; }
.pvg-phone.vibe-elegant:not(.is-gym) .pvg-page .pvg-eyebrow { color: #a07a52; }
.pvg-phone.vibe-elegant:not(.is-gym) .pvg-cta-primary { background: #2e2722; }
.pvg-phone.vibe-vibrant:not(.is-gym) .pvg-page { background: #fff4ec; }
.pvg-phone.vibe-vibrant:not(.is-gym) .pvg-page .pvg-eyebrow { color: #ff3b8e; }
.pvg-phone.vibe-vibrant:not(.is-gym) .pvg-cta-primary { background: #1d6dff; }

/* ============================================================
   OPPORTUNITY CALCULATOR  (v2 — asymmetric, tactile, dramatic)
   ============================================================ */
.oc-card {
  --pain: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);  /* 44/56 — verdict dominates */
  border-radius: var(--radius);
  overflow: hidden;
  margin: 2.5rem auto 0;
  width: 100%;
  max-width: 1120px;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}
.oc-card > * { min-width: 0; }                        /* allow tracks to actually shrink */
@media (max-width: 880px) {                           /* keep 2-col for tablet-landscape — verdict needs the real-time feedback */
  .oc-card { grid-template-columns: 1fr; }
}

/* ---------- LEFT: controls ---------- */
.oc-controls {
  background: var(--bg-warm);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  display: grid; gap: 1.6rem;
  align-content: start;
  border-right: 1px dashed rgba(45,27,20,.1);
}
@media (max-width: 880px) { .oc-controls { border-right: 0; border-bottom: 1px dashed rgba(45,27,20,.1); } }

.oc-step { display: grid; gap: .6rem; padding-top: 1.3rem; border-top: 1px dashed rgba(45,27,20,.1); }
.oc-step:first-child { padding-top: 0; border-top: 0; }

.oc-eyebrow {
  display: flex; align-items: baseline; gap: .55rem; flex-wrap: wrap;
  font-family: var(--f-body);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .04em;
  color: var(--cocoa);
  margin: 0;
  overflow-wrap: break-word;
  hyphens: auto;
}
.oc-eyebrow .oc-num {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 400;
  font-size: 1.1rem; color: var(--coral-deep); letter-spacing: -.02em;
}
.oc-row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.oc-readout {
  font-family: 'Fraunces', serif;
  font-size: 1.65rem; font-weight: 400; font-style: italic;
  color: var(--espresso);
  margin: 0; line-height: 1;
  font-variant-numeric: tabular-nums;
}

/* ---------- Industry stamps (fluid: 4-across when there's room, 2x2 when there isn't) ---------- */
.oc-stamps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
  gap: .55rem;
}
.oc-stamp {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: .55rem .65rem;
  padding: .85rem .9rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  box-shadow: 0 3px 0 var(--line-deep);
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease, background .12s ease, color .12s ease;
  user-select: none;
}
.oc-stamp input { position: absolute; opacity: 0; pointer-events: none; }
.oc-stamp i { grid-row: 1 / 3; width: 22px; height: 22px; color: var(--taupe); transition: color .12s; }
.oc-stamp-name {
  font-family: 'Fraunces', serif;
  font-size: 1.02rem; font-weight: 500;
  color: var(--espresso);
  line-height: 1;
}
.oc-stamp-unit {
  font-family: var(--f-body);
  font-size: .68rem; font-weight: 500;
  color: var(--taupe);
  letter-spacing: .02em;
}
/* dot is rendered (state hook) but visually suppressed — let the press do the talking */
.oc-stamp-dot { display: none; }
.oc-stamp:hover { border-color: var(--line-deep); transform: translateY(-1px); box-shadow: 0 4px 0 var(--line-deep); }
.oc-stamp.is-active {
  background: var(--bg);
  border-color: var(--coral);
  box-shadow: 0 0 0 var(--coral);
  transform: translateY(3px);
  color: var(--espresso);
}
.oc-stamp.is-active i { color: var(--coral-deep); }
.oc-stamp:focus-within { outline: 2px solid var(--coral); outline-offset: 3px; }

/* ---------- Sliders (filled track via --val) ---------- */
.oc-slider {
  --val: 0%;
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px;
  background: linear-gradient(to right, var(--coral) var(--val), var(--line) var(--val));
  border-radius: var(--radius-pill);
  outline: none;
  transition: background .06s linear;
}
.oc-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 26px; height: 26px;
  background: var(--surface);
  border: 2px solid var(--coral);
  border-radius: 50%;
  cursor: grab;
  box-shadow: var(--shadow-coral);
  transition: transform .15s ease, box-shadow .15s ease;
}
.oc-slider::-moz-range-thumb {
  width: 26px; height: 26px;
  background: var(--surface);
  border: 2px solid var(--coral);
  border-radius: 50%;
  cursor: grab;
  box-shadow: var(--shadow-coral);
  transition: transform .15s ease, box-shadow .15s ease;
}
.oc-slider:active::-webkit-slider-thumb {
  cursor: grabbing;
  transform: scale(1.15);
  box-shadow: 0 14px 30px -6px rgba(255,107,74,.7);
}
.oc-slider:active::-moz-range-thumb {
  cursor: grabbing;
  transform: scale(1.15);
  box-shadow: 0 14px 30px -6px rgba(255,107,74,.7);
}
.oc-slider:focus-visible::-webkit-slider-thumb { box-shadow: 0 0 0 4px rgba(255,107,74,.25), var(--shadow-coral); }
.oc-slider:focus-visible::-moz-range-thumb     { box-shadow: 0 0 0 4px rgba(255,107,74,.25), var(--shadow-coral); }

.oc-scale {
  display: flex; justify-content: space-between;
  font-family: var(--f-body); font-size: .7rem; color: var(--taupe);
  margin-top: .1rem;
  font-variant-numeric: tabular-nums;
}
.oc-hint {
  display: flex; align-items: center; gap: .4rem;
  font-size: .72rem; color: var(--taupe);
  margin: .4rem 0 0;
  font-style: italic;
}
.oc-hint i { width: 13px; height: 13px; }

/* ---------- RIGHT: the verdict (dramatic dark panel) ---------- */
.oc-verdict {
  position: relative;
  isolation: isolate;
  min-width: 0;
  background-color: var(--espresso);
  /* spotlight radial-gradient handles ALL of the pain scaling; no inset shadow (would muddy the noise) */
  background-image:
    radial-gradient(120% 90% at 50% -10%, rgba(255,154,120, calc(.14 + .18 * var(--pain))) 0%, rgba(45,27,20,0) 55%),
    radial-gradient( 90% 70% at 50% 115%, rgba(255,107,74, calc(.06 + .26 * var(--pain))) 0%, rgba(45,27,20,0) 60%);
  color: #fff;
  padding: clamp(1.6rem, 3.2vw, 2.6rem) clamp(1.4rem, 3vw, 2.4rem);
  display: flex; align-items: center;
}
/* paper-grain noise */
.oc-verdict::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.07'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}
.oc-verdict-inner { position: relative; z-index: 1; width: 100%; display: grid; gap: 1.15rem; }

.oc-verdict-eye {
  font-family: 'Fraunces', serif;
  font-style: italic; font-weight: 400;
  font-size: 1rem;
  color: #d6b89b;
  margin: 0;
  display: flex; align-items: center; gap: .8rem;
  text-transform: lowercase;
  letter-spacing: .01em;
}
/* let the italic do the work — no underline */
.oc-verdict-eye em { font-style: italic; color: #fff; font-weight: 400; }
.oc-verdict-eye .oc-rule {
  flex: 1; height: 1px;
  background: repeating-linear-gradient(90deg, rgba(214,184,155,.35) 0 4px, transparent 4px 8px);
}

.oc-verdict-stage {
  position: relative;
  display: flex; align-items: baseline; flex-wrap: wrap;
  gap: .35rem .75rem;
  padding: .25rem 0 .15rem;
  margin-bottom: clamp(1.5rem, 4vw, 3rem);    /* breathing room before the narrative line */
  min-width: 0;
}
.oc-verdict-num {
  font-family: 'Fraunces', serif;
  font-weight: 300; font-style: italic;
  font-size: clamp(2rem, 11vw, 7rem);                  /* low floor — mobile screens are tight */
  line-height: .88;
  letter-spacing: -.045em;
  color: #fff;
  margin: 0;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 1px 0 rgba(0,0,0,.25);
  transform-origin: left center;
  will-change: transform, opacity;
  transition: opacity .12s ease;
  min-width: 0;
  word-break: keep-all;
}
.oc-verdict-num.is-rolling { opacity: .82; }
.oc-verdict-num.is-settling { animation: oc-settle .55s cubic-bezier(0.16, 1, 0.3, 1); }
@keyframes oc-settle {                       /* gravity, not springiness — this is a *loss* number */
  0%   { transform: scale(.97); opacity: .85; }
  100% { transform: scale(1);   opacity: 1; }
}
.oc-verdict-unit {
  font-family: 'Fraunces', serif;
  font-style: italic; font-weight: 400;
  font-size: 1.1rem;
  color: #c7a98b;
  margin: 0 0 .35rem;
  line-height: 1;
}

/* The "Ouch" badge — anchored to the stage; constrained so it never escapes the dark panel */
.oc-verdict-tag {
  position: absolute;
  top: -.4rem;
  right: 0;
  max-width: min(260px, 55%);                  /* never wider than half the stage */
  background: var(--coral);
  color: #fff;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: .72rem;
  line-height: 1.25;
  letter-spacing: .01em;
  padding: .38rem .7rem .4rem;
  border-radius: 14px;                          /* slight rounding holds 2 lines well */
  text-align: center;
  transform: rotate(-3deg);
  box-shadow: 0 8px 22px -6px rgba(255,107,74,.5), 0 0 0 3px var(--espresso);
  mix-blend-mode: screen;                       /* sinks into the dark panel — burn-in, not sticker */
  animation: oc-tag-pop .35s cubic-bezier(.175,.885,.32,1.275);
  z-index: 2;
}
@keyframes oc-tag-pop {
  0%   { transform: rotate(-3deg) scale(.6); opacity: 0; }
  100% { transform: rotate(-3deg) scale(1);  opacity: 1; }
}
/* once we're single-column (stacked) on narrow viewports, the badge sits inline
   and overlaps the number — intentional sticker, not orphaned element. */
@media (max-width: 880px) {
  .oc-verdict-tag {
    position: relative;
    top: auto; right: auto;
    display: inline-block;
    align-self: flex-start;
    margin: -1.1rem 0 .25rem .15rem;            /* negative top → overlaps the number above */
    max-width: 92%;
    mix-blend-mode: normal;
    z-index: 3;
  }
}

.oc-verdict-line {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem; font-weight: 400;
  line-height: 1.5;
  color: #e9d4b9;
  margin: 0;
  max-width: 40ch;
}
.oc-verdict-line em {
  font-style: normal;
  font-weight: 600;
  color: #ff8e6b;                          /* coral on dark — punch */
  font-variant-numeric: tabular-nums;
  letter-spacing: .005em;
}

.oc-fineprint {
  display: flex; justify-content: space-between; gap: 1rem;
  font-family: var(--f-body);
  font-size: .68rem; letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.42);
  padding-top: .55rem;
  border-top: 1px dashed rgba(214,184,155,.25);
}
.oc-fineprint span:last-child { font-style: italic; text-transform: none; letter-spacing: 0; }

/* CTA — full-width grounding block, NOT a pill */
.oc-cta {
  display: flex; align-items: center; justify-content: center;
  gap: .6rem;
  width: 100%;
  background: var(--coral);
  color: #fff;
  border: 0;
  padding: 1.05rem 1.25rem;
  border-radius: var(--radius-s);
  font: inherit; font-weight: 600; font-size: 1rem;
  cursor: pointer;
  letter-spacing: .005em;
  box-shadow: 0 12px 28px -10px rgba(0,0,0,.45), inset 0 -2px 0 rgba(0,0,0,.18);
  transition: transform .15s, box-shadow .15s, background .15s;
}
.oc-cta:hover  { background: var(--coral-deep); transform: translateY(-1px); box-shadow: 0 18px 36px -12px rgba(0,0,0,.55), inset 0 -2px 0 rgba(0,0,0,.18); }
.oc-cta:active { transform: translateY(1px);  box-shadow: 0 6px 14px -6px rgba(0,0,0,.4), inset 0 -1px 0 rgba(0,0,0,.18); }
.oc-cta i { width: 16px; height: 16px; }

.oc-trust {
  font-family: var(--f-body);
  font-size: .72rem;
  color: rgba(255,255,255,.55);
  margin: 0; text-align: center;
  letter-spacing: .02em;
}

@media (prefers-reduced-motion: reduce) {
  .oc-verdict-num.is-settling { animation: none; }
  .oc-verdict-tag { animation: none; }
  .oc-stamp, .oc-slider, .oc-cta, .oc-verdict { transition: none; }
}
