/* =============================================================
   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-badge {
  position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  background: #f5d3a3; color: #5a2412;
  font-size: 8px !important; font-weight: 800;
  padding: 2px 7px; border-radius: 999px;
  letter-spacing: .04em;
  white-space: nowrap;
}

/* ===========================================================
   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.5vw, 2rem);
  max-width: var(--max);
  margin: 0 auto;
}
@media (max-width: 980px) { .voice-grid { grid-template-columns: 1fr; max-width: 38rem; } }

.voice-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem 1.4rem;
  position: relative;
  display: flex; flex-direction: column;
  gap: 1.2rem;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur);
}
.voice-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.voice-card::before {
  content: '“';
  position: absolute;
  top: -.4rem; left: 1.1rem;
  font-family: var(--f-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--coral);
  opacity: .25;
}
.voice-1 { background: var(--surface); }
.voice-2 { background: var(--peach); border-color: var(--peach-deep); }
.voice-3 { background: var(--surface); }

.voice-q {
  font-family: var(--f-display);
  font-variation-settings: 'opsz' 144, 'wght' 420;
  font-size: 1.22rem;
  line-height: 1.35;
  letter-spacing: -.015em;
  margin: 0;
  color: var(--espresso);
  flex: 1;
}
.voice-q em {
  font-style: italic;
  color: var(--coral-deep);
}
.voice-card footer {
  display: flex; align-items: center; gap: .75rem;
}
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--f-body);
  font-weight: 700; font-size: .9rem;
  flex-shrink: 0;
  letter-spacing: .02em;
}
.avatar-1 { background: var(--coral); color: var(--bg); }
.avatar-2 { background: var(--honey); color: var(--espresso); }
.avatar-3 { background: #5C7D5F; color: var(--bg); }
.voice-card footer strong {
  display: block;
  font-size: .96rem; font-weight: 600;
}
.voice-card footer span {
  display: block;
  font-size: .78rem;
  color: var(--taupe);
}

.voice-rating {
  max-width: var(--max);
  margin: 2.5rem auto 0;
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  flex-wrap: wrap;
}
.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 18px; height: 18px; color: var(--honey-deep); }
.rating-text { font-size: .95rem; color: var(--cocoa); }
.rating-text b { color: var(--espresso); font-weight: 700; }

/* =============================================================
   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 { font-size: 1.5rem; }
.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); }
.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); }
