@import url('colors_and_type.css');

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--pc-bg); color: var(--pc-fg); font-family: var(--pc-font-body); }
html { scroll-behavior: smooth; }
body { overflow-x: hidden; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
img { max-width: 100%; display: block; }

.pc-container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

/* === Nav (mirrors agency-landing-page .nav structure + styling) === */
.pc-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 250, 247, 0.88);
  backdrop-filter: saturate(120%) blur(8px);
  -webkit-backdrop-filter: saturate(120%) blur(8px);
  border-bottom: 1px solid transparent;
  box-shadow: 0 0 0 0 rgba(23, 26, 32, 0);
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}
.pc-nav.is-scrolled {
  border-bottom-color: var(--pc-border);
  box-shadow: 0 1px 0 rgba(23, 26, 32, 0.04);
}
.pc-nav-inner {
  max-width: 1240px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.pc-nav-left { display: flex; align-items: center; gap: 32px; }
.pc-brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.pc-brand-lockup { height: 40px; width: auto; display: block; object-fit: contain; object-position: center; }
.pc-brand-subtitle {
  font-family: var(--pc-font-display); font-size: 13px; line-height: 1;
  color: var(--pc-fg-subtle); letter-spacing: -0.01em;
  padding-left: 12px; border-left: 1px solid var(--pc-border);
  white-space: nowrap;
}
.pc-brand-subtitle em { font-style: italic; font-weight: 400; }
.pc-nav-center { display: flex; gap: 4px; }
.pc-nav-center > a,
.pc-nav-center .pc-nav-dd-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font: inherit;
  font-size: 14px;
  font-weight: 400;
  color: var(--pc-fg-muted);
  background: transparent;
  border: 0;
  border-radius: 6px;
  text-decoration: none;
  outline: 0;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  transition: color 150ms, background 150ms;
}
.pc-nav-center > a:hover,
.pc-nav-center .pc-nav-dd-toggle:hover,
.pc-nav-center .pc-nav-dd.is-open .pc-nav-dd-toggle {
  color: var(--pc-ink);
  background: var(--pc-navy-04);
}
.pc-nav-center > a:focus-visible,
.pc-nav-center .pc-nav-dd-toggle:focus-visible,
.pc-nav-right a:focus-visible,
.pc-faq-q:focus-visible,
.pc-stack-slab:focus-visible,
.pc-stack-slab.v2:focus-visible,
.pc-layer-tab:focus-visible {
  outline: 2px solid var(--pc-navy);
  outline-offset: 3px;
  border-radius: 4px;
}
.pc-nav-right { display: flex; align-items: center; gap: 14px; }

@media (max-width: 640px) {
  .pc-brand-lockup { height: 34px; }
  .pc-brand-subtitle { display: none; }
}

/* === Buttons === */
.pc-btn {
  font-family: var(--pc-font-display); font-weight: 500; font-size: 14px;
  padding: 13px 22px; border-radius: var(--pc-radius-pill);
  border: 1px solid transparent; cursor: pointer; line-height: 1;
  transition: background var(--pc-dur-fast) var(--pc-ease-standard),
              color var(--pc-dur-fast) var(--pc-ease-standard),
              border-color var(--pc-dur-fast) var(--pc-ease-standard);
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
}
.pc-btn-primary { background: var(--pc-navy); color: var(--pc-off-white); }
.pc-btn-primary:hover { background: var(--pc-navy-deep); }
.pc-btn-ghost { background: transparent; color: var(--pc-ink); border-color: var(--pc-ink-12); }
.pc-btn-ghost:hover { background: var(--pc-ink); color: var(--pc-off-white); border-color: var(--pc-ink); }
.pc-btn-sm { padding: 11px 16px; font-size: 12px; min-height: 40px; }
.pc-btn-block { width: 100%; justify-content: center; padding: 16px 22px; font-size: 15px; min-height: 52px; }
.pc-btn { min-height: 44px; }

/* === Eyebrow === */
.pc-eyebrow {
  font-family: var(--pc-font-mono); font-weight: 500; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--pc-navy);
  display: inline-flex; align-items: center; gap: 10px;
}
.pc-eyebrow::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--pc-orange); flex-shrink: 0; }

/* === Sections === */
.pc-section { padding: 96px 0; position: relative; }
.pc-section.alt { background: var(--pc-bg-alt); }
.pc-section.surface { background: var(--pc-surface); }
.pc-section.ink { background: var(--pc-ink); color: var(--pc-off-white); }
.pc-section-head { display: flex; flex-direction: column; gap: 16px; align-items: center; text-align: center; max-width: 760px; margin: 0 auto 56px; }
.pc-section-head .pc-lede { text-align: center; margin: 0 auto; }

.pc-display-xl { font-family: var(--pc-font-display); font-weight: 600; font-size: clamp(40px, 5.4vw, 64px); line-height: 1.02; letter-spacing: -0.025em; color: var(--pc-ink); margin: 0; text-wrap: balance; }
.pc-display-lg { font-family: var(--pc-font-display); font-weight: 600; font-size: clamp(34px, 4.2vw, 52px); line-height: 1.05; letter-spacing: -0.025em; color: var(--pc-ink); margin: 0; text-wrap: balance; }
.pc-lede { font-family: var(--pc-font-display); font-size: 18px; line-height: 1.5; color: var(--pc-fg-muted); margin: 0; max-width: 60ch; text-wrap: pretty; }

/* === Lead Magnet (was hero — form moved to mid-page) === */
.pc-leadmagnet { position: relative; padding: 96px 0 96px; overflow: hidden; }
.pc-leadmagnet-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 12% -10%, rgba(215, 98, 15, 0.10), transparent 55%),
    radial-gradient(circle at 92% 14%, rgba(21, 58, 161, 0.08), transparent 60%);
}
.pc-leadmagnet-grid {
  position: relative; display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 56px; align-items: stretch;
}

/* Hero LEFT — form */
.pc-hero-form-card {
  background: var(--pc-bg);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius-lg);
  padding: 32px;
  box-shadow: var(--pc-shadow-md);
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
}
.pc-hero-form-card .pocky-mark {
  position: absolute; top: -28px; right: 24px;
  width: 78px; height: 78px;
  background: var(--pc-bg);
  border: 1px solid var(--pc-border);
  border-radius: 999px;
  padding: 6px;
  box-shadow: var(--pc-shadow-md);
}
.pc-hero-form-card .pocky-mark img { width: 100%; height: 100%; object-fit: contain; }
.pc-hero-form-card h2 { font-family: var(--pc-font-display); font-weight: 600; font-size: clamp(28px, 3vw, 36px); line-height: 1.1; letter-spacing: -0.022em; color: var(--pc-ink); margin: 0; text-wrap: balance; }
.pc-hero-form-sub { font-size: 15px; line-height: 1.5; color: var(--pc-fg-muted); margin: 0; }
.pc-form-stack { display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
.pc-field { display: flex; flex-direction: column; gap: 6px; }
.pc-field label {
  font-family: var(--pc-font-mono); font-size: 10.5px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--pc-fg-subtle);
}
.pc-input, .pc-select {
  font-family: var(--pc-font-body); font-size: 16px;
  color: var(--pc-ink);
  background: var(--pc-bg);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius-sm);
  padding: 13px 14px; line-height: 1.3;
  min-height: 44px;
  outline: none;
  transition: border-color var(--pc-dur-fast) var(--pc-ease-standard),
              box-shadow var(--pc-dur-fast) var(--pc-ease-standard);
}
.pc-input:hover, .pc-select:hover { border-color: var(--pc-pale-silver); }
.pc-input:focus, .pc-select:focus { border-color: var(--pc-navy); box-shadow: 0 0 0 3px var(--pc-navy-08); }
.pc-select {
  appearance: none; -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--pc-fg-subtle) 50%),
                    linear-gradient(135deg, var(--pc-fg-subtle) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
  padding-right: 36px;
}
.pc-form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pc-form-trust {
  font-family: var(--pc-font-mono); font-size: 10.5px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--pc-fg-subtle); margin: 6px 0 0; line-height: 1.6;
}
.pc-form-confirm {
  display: flex; gap: 16px; align-items: flex-start; padding: 8px 0;
}
.pc-form-confirm .pc-booking-check {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--pc-navy); color: var(--pc-off-white);
  display: grid; place-items: center; font-weight: 600; flex-shrink: 0;
}
.pc-form-confirm h3 { font-family: var(--pc-font-display); font-size: 20px; font-weight: 600; color: var(--pc-ink); margin: 0; line-height: 1.25; }
.pc-form-confirm p { font-size: 14px; color: var(--pc-fg-muted); margin: 6px 0 0; line-height: 1.5; }
.pc-form-confirm em { font-style: normal; color: var(--pc-navy); }

/* Lead Magnet LEFT — pitch + Pocky greeting */
.pc-leadmagnet-pitch { display: flex; flex-direction: column; gap: 18px; padding: 8px 0; position: relative; }
.pc-leadmagnet-pitch h2 { margin: 0; }
.pc-leadmagnet-pocky {
  margin-top: 12px;
  width: 140px; height: 140px;
  filter: drop-shadow(0 8px 16px rgba(15,16,18,0.10));
}
.pc-leadmagnet-pocky img { width: 100%; height: 100%; object-fit: contain; }

/* === §02 Pain · asymmetric grid === */
.pc-pain-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 20px;
}
.pc-pain-card {
  background: var(--pc-bg);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius-md);
  padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
  box-shadow: var(--pc-shadow-sm);
  transition: transform var(--pc-dur-base) var(--pc-ease-standard), box-shadow var(--pc-dur-base) var(--pc-ease-standard);
  min-height: 420px;
  position: relative;
  overflow: hidden;
}
.pc-pain-card::before {
  content: ""; position: absolute; inset: 0;
  pointer-events: none; opacity: 0.4;
}
.pc-pain-card.pain-tone-orange::before { background: radial-gradient(circle at 100% 0%, rgba(215, 98, 15, 0.08), transparent 60%); }
.pc-pain-card.pain-tone-navy::before { background: radial-gradient(circle at 0% 100%, rgba(21, 58, 161, 0.08), transparent 60%); }
.pc-pain-card.pain-tone-fade::before { background: linear-gradient(180deg, transparent, rgba(15,16,18,0.04)); }
.pc-pain-card > * { position: relative; z-index: 1; }
.pc-pain-card:hover { transform: translateY(-2px); box-shadow: var(--pc-shadow-md); }
.pc-pain-card .pc-eyebrow { font-size: 11px; }
.pc-pain-card.pain-tone-orange .pc-eyebrow { color: var(--pc-orange); }
.pc-pain-card.pain-tone-navy .pc-eyebrow { color: var(--pc-navy); }
.pc-pain-card.pain-tone-fade .pc-eyebrow { color: var(--pc-fg-subtle); }
.pc-pain-card h3 { font-family: var(--pc-font-display); font-weight: 600; font-size: 22px; line-height: 1.2; letter-spacing: -0.015em; color: var(--pc-ink); margin: 0; text-wrap: balance; }
.pc-pain-card p { font-size: 14.5px; line-height: 1.55; color: var(--pc-fg-muted); margin: 0; }
.pc-pain-visual { margin-top: auto; height: 140px; border-radius: var(--pc-radius-sm); border: 1px solid var(--pc-border); position: relative; overflow: hidden; }

/* PV1 calls v2 — orange-tinted, ringing phone, walker leaving */
.pv-calls-v2 { background: linear-gradient(135deg, #FBEEE3 0%, #FAFAF7 70%); padding: 16px; }
.pv-calls-v2 .rush-clock { position: absolute; top: 12px; left: 14px; display: flex; flex-direction: column; gap: 2px; }
.pv-calls-v2 .rush-time { font-family: var(--pc-font-mono); font-size: 18px; font-weight: 600; color: var(--pc-ink); letter-spacing: -0.02em; }
.pv-calls-v2 .rush-meta { font-family: var(--pc-font-mono); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pc-orange); }
.pv-calls-v2 .rush-rings {
  position: absolute; top: 50%; left: 36%; transform: translate(-50%, -50%);
  width: 56px; height: 56px;
}
.pv-calls-v2 .rush-phone {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: var(--pc-bg); border: 1.5px solid var(--pc-orange);
  border-radius: 50%; color: var(--pc-orange);
  font-size: 22px; font-weight: 600;
  animation: rush-shake 0.6s var(--pc-ease-standard) infinite;
}
.pv-calls-v2 .rush-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1.5px solid var(--pc-orange);
  animation: rush-ring 2.4s var(--pc-ease-standard) infinite;
}
.pv-calls-v2 .rush-ring.r1 { animation-delay: 0s; }
.pv-calls-v2 .rush-ring.r2 { animation-delay: 0.6s; }
.pv-calls-v2 .rush-ring.r3 { animation-delay: 1.2s; }
@keyframes rush-ring {
  0% { transform: scale(1); opacity: 0.7; border-width: 1.5px; }
  90%, 100% { transform: scale(2.6); opacity: 0; border-width: 0.5px; }
}
@keyframes rush-shake {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-8deg); }
  75% { transform: rotate(8deg); }
}
.pv-calls-v2 .rush-walker {
  position: absolute; bottom: 14px; right: 14px;
  display: flex; align-items: center; gap: 6px;
  animation: rush-walk 3s var(--pc-ease-standard) infinite;
}
@keyframes rush-walk {
  0%, 100% { transform: translateX(-12px); opacity: 0.4; }
  50% { transform: translateX(0); opacity: 1; }
}
.pv-calls-v2 .rush-walker-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pc-ink); }
.pv-calls-v2 .rush-walker-line {
  width: 36px; height: 1px;
  background: repeating-linear-gradient(90deg, var(--pc-ink) 0 4px, transparent 4px 8px);
}
.pv-calls-v2 .rush-walker-target { font-family: var(--pc-font-mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pc-ink); }
.pv-calls-v2 .rush-loss {
  position: absolute; top: 14px; right: 14px;
  font-family: var(--pc-font-mono); font-size: 14px; font-weight: 600;
  color: var(--pc-orange); letter-spacing: -0.01em;
  animation: rush-loss 3s var(--pc-ease-standard) infinite;
}
@keyframes rush-loss {
  0%, 60% { opacity: 0; transform: translateY(0); }
  68%, 88% { opacity: 1; transform: translateY(-4px); }
  100% { opacity: 0; transform: translateY(-12px); }
}

/* PV2 WhatsApp v2 — navy-tinted, stacked threads with stagger */
.pv-wa-v2 { background: linear-gradient(135deg, rgba(21,58,161,0.06), var(--pc-bg) 70%); padding: 10px; display: flex; flex-direction: column; gap: 4px; }
.pv-wa-v2 .wa-thread {
  display: grid; grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  background: var(--pc-bg); border: 1px solid var(--pc-border);
  border-left: 3px solid var(--pc-navy);
  border-radius: 6px; padding: 5px 8px;
  font-family: var(--pc-font-body); font-size: 10.5px;
  opacity: 0; transform: translateX(-8px);
  animation: wa-in 5s var(--pc-ease-standard) infinite;
}
.pv-wa-v2 .wa-thread.t1 { animation-delay: 0s; }
.pv-wa-v2 .wa-thread.t2 { animation-delay: 0.3s; }
.pv-wa-v2 .wa-thread.t3 { animation-delay: 0.6s; }
.pv-wa-v2 .wa-thread.t4 { animation-delay: 0.9s; }
.pv-wa-v2 .wa-thread.t5 { animation-delay: 1.2s; }
.pv-wa-v2 .wa-thread.late { border-left-color: var(--pc-orange); background: rgba(215,98,15,0.04); }
.pv-wa-v2 .wa-name { font-weight: 600; color: var(--pc-ink); font-size: 10px; }
.pv-wa-v2 .wa-snippet { font-size: 9.5px; color: var(--pc-fg-subtle); grid-column: 1; grid-row: 2; }
.pv-wa-v2 .wa-time { font-family: var(--pc-font-mono); font-size: 9px; color: var(--pc-fg-subtle); letter-spacing: 0.04em; grid-column: 2; grid-row: 1; }
.pv-wa-v2 .wa-time-late { color: var(--pc-orange); font-weight: 600; }
@keyframes wa-in {
  0%, 4% { opacity: 0; transform: translateX(-8px); }
  10%, 80% { opacity: 1; transform: translateX(0); }
  90%, 100% { opacity: 0.4; transform: translateX(0); }
}

/* PV3 reviews — offline/online gap viz. Left: dense dot pool (happy regulars).
   Right: 5 empty stars + "0" (zero captured online). Ghost +1★ pulses drift
   between them = lost review opportunities. Mirrors Animation 1.4 visual
   language (stars + counter) but inverted — empty/stuck instead of full/climbing. */
.pv-rev-gap {
  background: var(--pc-surface);
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.rev-gap-side { display: flex; flex-direction: column; align-items: center; gap: 6px; }

/* Offline pool — 8×4 dot grid, navy, stagger fade-in */
.rev-gap-grid {
  display: grid;
  grid-template-columns: repeat(8, 8px);
  grid-template-rows: repeat(4, 8px);
  gap: 4px;
}
.rev-gap-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pc-navy);
  opacity: 0;
  animation: rev-gap-dot-in 5s var(--pc-ease-standard) infinite;
}
@keyframes rev-gap-dot-in {
  0% { opacity: 0; transform: scale(0.5); }
  16%, 88% { opacity: 1; transform: scale(1); }
  98%, 100% { opacity: 0; transform: scale(0.5); }
}

.rev-gap-caption {
  font-family: var(--pc-font-mono); font-size: 9px;
  letter-spacing: 0.06em;
  color: var(--pc-fg-subtle);
  text-transform: uppercase;
  white-space: nowrap;
}
.rev-gap-caption strong {
  font-family: var(--pc-font-display);
  font-weight: 600;
  font-size: 11px;
  color: var(--pc-ink);
  letter-spacing: -0.01em;
  margin-right: 1px;
}
.rev-gap-caption-orange { color: var(--pc-orange); }
.rev-gap-caption-orange strong { color: var(--pc-orange); }

/* Divider — vertical hairline labelled "gap" */
.rev-gap-divider {
  position: relative;
  width: 1px;
  height: 56px;
  background: var(--pc-border);
}
.rev-gap-divider-label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  background: var(--pc-surface);
  padding: 0 4px;
  font-family: var(--pc-font-mono); font-size: 7.5px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--pc-fg-subtle);
  white-space: nowrap;
}

/* Online side — 5 empty stars + big 0 */
.rev-gap-stars {
  display: flex; gap: 2px;
  font-size: 13px;
  color: var(--pc-pale-silver);
  letter-spacing: 0;
  line-height: 1;
}
.rev-gap-zero {
  font-family: var(--pc-font-display);
  font-weight: 600;
  font-size: 28px;
  line-height: 1;
  color: var(--pc-orange);
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  animation: rev-gap-zero-pulse 2.2s var(--pc-ease-standard) infinite;
}
@keyframes rev-gap-zero-pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

/* Ghost +1 ★ pulses — drift up from middle, fade before reaching the stars */
.rev-gap-ghost {
  position: absolute;
  font-family: var(--pc-font-mono);
  font-size: 9.5px; font-weight: 700;
  color: var(--pc-orange);
  background: var(--pc-bg);
  border: 1px solid var(--pc-orange);
  padding: 2px 5px;
  border-radius: 3px;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  animation: rev-gap-ghost-float 4.5s var(--pc-ease-standard) infinite;
  letter-spacing: 0.02em;
}
.rev-gap-ghost-1 { left: 28%; bottom: 22%; animation-delay: 0s; }
.rev-gap-ghost-2 { left: 38%; bottom: 50%; animation-delay: 1.5s; }
.rev-gap-ghost-3 { left: 22%; bottom: 38%; animation-delay: 3s; }
@keyframes rev-gap-ghost-float {
  0% { opacity: 0; transform: translateY(0) scale(0.7); }
  18% { opacity: 0.85; transform: translateY(-4px) scale(1); }
  55% { opacity: 0.45; transform: translateY(-22px) scale(0.95); }
  85%, 100% { opacity: 0; transform: translateY(-38px) scale(0.85); }
}

@media (prefers-reduced-motion: reduce) {
  .rev-gap-dot { opacity: 1 !important; transform: none !important; animation: none; }
  .rev-gap-ghost { display: none; }
  .rev-gap-zero { opacity: 1 !important; animation: none; }
}

/* === §03 Solution · stack toggle + tabs === */
.pc-stack-toggle {
  display: flex; flex-direction: column; gap: 12px;
  max-width: 820px; margin: 0 auto 40px;
}
.pc-stack-slab.v2 {
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: var(--pc-font-display);
  border-radius: var(--pc-radius-lg);
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 88px 1fr auto;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--pc-border);
  transition: background var(--pc-dur-base) var(--pc-ease-standard), border-color var(--pc-dur-base) var(--pc-ease-standard), box-shadow var(--pc-dur-base) var(--pc-ease-standard), transform var(--pc-dur-base) var(--pc-ease-standard), opacity var(--pc-dur-base) var(--pc-ease-standard);
  background: var(--pc-bg);
}
.pc-stack-slab.v2 .layer-label { font-family: var(--pc-font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pc-fg-subtle); }
.pc-stack-slab.v2 .layer-name { font-family: var(--pc-font-display); font-weight: 600; font-size: 22px; letter-spacing: -0.015em; color: var(--pc-ink); line-height: 1.2; }
.pc-stack-slab.v2 .layer-sub { font-size: 13.5px; color: var(--pc-fg-muted); margin-top: 4px; line-height: 1.4; }
.pc-stack-slab.v2 .layer-arrow {
  font-family: var(--pc-font-mono); font-size: 18px; font-weight: 500;
  color: var(--pc-fg-subtle);
  transition: color var(--pc-dur-fast) var(--pc-ease-standard);
}
.pc-stack-slab.v2.is-dim {
  opacity: 0.55;
  filter: saturate(0.7);
}
.pc-stack-slab.v2.is-dim:hover { opacity: 0.9; transform: translateY(-1px); }

/* Layer 1 active — ink with navy/orange glow */
.pc-stack-slab.v2.lower.is-active {
  background: var(--pc-ink);
  border-color: var(--pc-ink);
  box-shadow: var(--pc-shadow-lg);
  position: relative; overflow: hidden;
}
.pc-stack-slab.v2.lower.is-active::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 12% -20%, rgba(215, 98, 15, 0.22), transparent 55%),
              radial-gradient(circle at 88% 120%, rgba(21, 58, 161, 0.55), transparent 55%);
  pointer-events: none;
}
.pc-stack-slab.v2.lower.is-active > * { position: relative; z-index: 1; }
.pc-stack-slab.v2.lower.is-active .layer-label { color: var(--pc-orange); }
.pc-stack-slab.v2.lower.is-active .layer-name { color: var(--pc-off-white); }
.pc-stack-slab.v2.lower.is-active .layer-sub { color: rgba(250,250,247,0.75); }
.pc-stack-slab.v2.lower.is-active .layer-arrow { color: var(--pc-orange); }

/* Layer 2 active — light card with navy emphasis */
.pc-stack-slab.v2.upper.is-active {
  background: var(--pc-bg);
  border-color: var(--pc-navy);
  box-shadow: 0 8px 24px var(--pc-navy-12);
}
.pc-stack-slab.v2.upper.is-active .layer-label { color: var(--pc-navy); }
.pc-stack-slab.v2.upper.is-active .layer-arrow { color: var(--pc-navy); }

/* Layer detail panel */
.pc-layer-detail {
  max-width: 980px; margin: 0 auto;
  animation: layer-enter 360ms var(--pc-ease-entrance) forwards;
}
@keyframes layer-enter {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.pc-layer-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 20px;
  padding: 6px;
  background: var(--pc-bg);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius-pill);
  box-shadow: var(--pc-shadow-sm);
}
.pc-layer-tab {
  flex: 1 1 auto;
  min-width: 0;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--pc-radius-pill);
  background: transparent;
  font-family: var(--pc-font-mono);
  font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pc-fg-subtle);
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--pc-dur-fast) var(--pc-ease-standard), color var(--pc-dur-fast) var(--pc-ease-standard), border-color var(--pc-dur-fast) var(--pc-ease-standard);
}
.pc-layer-tab:hover { color: var(--pc-ink); }
.pc-layer-tab.is-active {
  background: var(--pc-navy);
  color: var(--pc-off-white);
  border-color: var(--pc-navy);
}

.pc-layer-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  background: var(--pc-bg);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius-lg);
  padding: 32px;
  box-shadow: var(--pc-shadow-md);
  animation: layer-card-enter 320ms var(--pc-ease-entrance) forwards;
}
@keyframes layer-card-enter {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.pc-layer-card-text { display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.pc-layer-card-text h3 { font-family: var(--pc-font-display); font-weight: 600; font-size: 26px; line-height: 1.2; letter-spacing: -0.02em; color: var(--pc-ink); margin: 0; text-wrap: balance; }
.pc-layer-card-text p { font-size: 15px; line-height: 1.55; color: var(--pc-fg-muted); margin: 0; }
.pc-layer-kpi {
  margin-top: 8px;
  font-family: var(--pc-font-mono); font-size: 11.5px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--pc-navy);
  padding-top: 14px; border-top: 1px solid var(--pc-border);
}
.pc-layer-oneline {
  font-size: 16px !important;
  line-height: 1.6 !important;
  color: var(--pc-fg) !important;
  text-wrap: pretty;
}

/* Layer card · Pocky-at-work scene (Layer 2) */
.pc-pocky-scene {
  align-self: stretch;
  border-radius: var(--pc-radius-md);
  overflow: hidden;
  background: var(--pc-surface);
  border: 1px solid var(--pc-border);
  box-shadow: var(--pc-shadow-sm);
  aspect-ratio: 1 / 1;
  display: flex;
}
.pc-pocky-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pc-layer-card.has-pocky-scene { align-items: stretch; }

/* Layer card visual */
.pc-visual-card {
  background: linear-gradient(135deg, var(--pc-surface) 0%, var(--pc-bg) 100%);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius-md);
  padding: 18px;
  display: flex; flex-direction: column; gap: 12px;
  position: relative; overflow: hidden;
  min-height: 240px;
}
.pc-visual-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 0%, var(--pc-navy-08), transparent 55%),
              radial-gradient(circle at 20% 100%, var(--pc-orange-08), transparent 55%);
  pointer-events: none;
}
.pc-visual-meta {
  font-family: var(--pc-font-mono); font-size: 10.5px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--pc-navy);
  position: relative; z-index: 2;
}
.pc-visual-stage { position: relative; flex: 1; min-height: 180px; }
.pc-visual-pocky {
  position: absolute; left: 50%; top: 50%;
  width: 84px; height: 84px;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 6px 12px rgba(15,16,18,0.15));
  animation: visual-pocky-bob 3.2s var(--pc-ease-standard) infinite;
  z-index: 3;
}
@keyframes visual-pocky-bob {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, calc(-50% - 4px)); }
}
.pc-visual-tag {
  position: absolute;
  background: var(--pc-bg);
  border: 1px solid var(--pc-border);
  border-radius: 8px;
  padding: 6px 10px;
  font-family: var(--pc-font-mono); font-size: 10.5px;
  color: var(--pc-ink);
  box-shadow: var(--pc-shadow-sm);
  z-index: 2;
  animation: visual-tag-in 5s var(--pc-ease-standard) infinite;
}
.pc-visual-tag.t-a { top: 12%; left: 6%; animation-delay: 0s; }
.pc-visual-tag.t-b { bottom: 16%; left: 6%; animation-delay: 0.4s; }
.pc-visual-tag.t-c { top: 22%; right: 6%; animation-delay: 0.8s; background: var(--pc-navy); color: var(--pc-off-white); border-color: var(--pc-navy); }
@keyframes visual-tag-in {
  0%, 6% { opacity: 0; transform: translateY(6px); }
  14%, 84% { opacity: 1; transform: translateY(0); }
  92%, 100% { opacity: 0.4; transform: translateY(-2px); }
}
.pc-visual-paths {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 1; pointer-events: none;
  opacity: 0.4;
}
.pc-visual-paths path {
  fill: none; stroke: var(--pc-navy); stroke-width: 0.5;
  stroke-dasharray: 1 2;
}

@media (max-width: 920px) {
  .pc-layer-card { grid-template-columns: 1fr; }
  .pc-layer-tab { font-size: 10px; padding: 10px 12px; }
}

/* === §03 Solution · two-layer stack === */
.pc-solution-stack {
  position: relative;
  display: flex; flex-direction: column; gap: 14px;
  max-width: 920px; margin: 0 auto 64px;
  padding: 24px 0 40px;
}
.pc-stack-pocky {
  position: absolute; left: 50%; top: -38px;
  transform: translateX(-50%);
  width: 96px; height: 96px;
  z-index: 3;
  filter: drop-shadow(0 8px 16px rgba(15,16,18,0.12));
}
.pc-stack-pocky img { width: 100%; height: 100%; object-fit: contain; }

.pc-stack-slab {
  position: relative;
  border-radius: var(--pc-radius-lg);
  padding: 28px 32px;
  display: flex; align-items: center; gap: 24px;
  border: 1px solid var(--pc-border);
}
.pc-stack-slab .layer-label {
  font-family: var(--pc-font-mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; flex-shrink: 0;
}
.pc-stack-slab .layer-name { font-family: var(--pc-font-display); font-weight: 600; font-size: 22px; line-height: 1.2; letter-spacing: -0.015em; }
.pc-stack-slab .layer-sub { font-size: 14px; line-height: 1.5; margin-top: 4px; }
.pc-stack-slab .layer-body { display: flex; flex-direction: column; }

.pc-stack-slab.upper {
  background: var(--pc-bg);
  border-color: var(--pc-border);
  box-shadow: var(--pc-shadow-md);
  margin: 0 32px;
  z-index: 2;
}
.pc-stack-slab.upper .layer-label { color: var(--pc-navy); }
.pc-stack-slab.upper .layer-name { color: var(--pc-ink); }
.pc-stack-slab.upper .layer-sub { color: var(--pc-fg-muted); }

.pc-stack-slab.lower {
  background: var(--pc-ink);
  border-color: var(--pc-ink);
  color: var(--pc-off-white);
  z-index: 1;
  position: relative;
  margin: 0;
}
.pc-stack-slab.lower::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 12% -20%, rgba(215, 98, 15, 0.18), transparent 55%),
              radial-gradient(circle at 88% 120%, rgba(21, 58, 161, 0.45), transparent 55%);
  border-radius: inherit; pointer-events: none;
}
.pc-stack-slab.lower > * { position: relative; z-index: 1; }
.pc-stack-slab.lower .layer-label { color: var(--pc-orange); }
.pc-stack-slab.lower .layer-name { color: var(--pc-off-white); }
.pc-stack-slab.lower .layer-sub { color: rgba(250,250,247,0.7); }

/* Layer 1 cards 2×2 */
.pc-l1-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 980px; margin: 0 auto; }
.pc-l1-card {
  background: var(--pc-bg);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius-md);
  padding: 28px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform var(--pc-dur-base) var(--pc-ease-standard), box-shadow var(--pc-dur-base) var(--pc-ease-standard);
}
.pc-l1-card:hover { transform: translateY(-2px); box-shadow: var(--pc-shadow-md); }
.pc-l1-card .pc-eyebrow { font-size: 11px; }
.pc-l1-card h4 { font-family: var(--pc-font-display); font-weight: 600; font-size: 19px; line-height: 1.25; letter-spacing: -0.015em; color: var(--pc-ink); margin: 0; text-wrap: balance; }
.pc-l1-card p { font-size: 14px; line-height: 1.55; color: var(--pc-fg-muted); margin: 0; }
.pc-l1-card .kpi {
  margin-top: 6px;
  font-family: var(--pc-font-mono); font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--pc-navy);
  padding-top: 14px; border-top: 1px solid var(--pc-border);
}

/* Layer 2 niche matrix */
.pc-l2 {
  margin-top: 64px;
  background: var(--pc-bg);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius-lg);
  padding: 40px;
  max-width: 980px;
  margin-left: auto; margin-right: auto;
}
.pc-l2-head { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.pc-l2-head h3 { font-family: var(--pc-font-display); font-weight: 600; font-size: 28px; line-height: 1.15; letter-spacing: -0.02em; color: var(--pc-ink); margin: 0; }
.pc-l2-head p { font-size: 15px; line-height: 1.55; color: var(--pc-fg-muted); margin: 0; max-width: 64ch; }

.pc-niche-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--pc-border); }
.pc-niche-row {
  display: grid; grid-template-columns: 1fr 1.4fr; align-items: baseline;
  gap: 16px; padding: 18px 8px;
  border-bottom: 1px solid var(--pc-border);
  cursor: default;
  transition: background var(--pc-dur-fast) var(--pc-ease-standard);
}
.pc-niche-row:nth-child(odd) { border-right: 1px solid var(--pc-border); padding-right: 24px; }
.pc-niche-row:nth-child(even) { padding-left: 24px; }
.pc-niche-row.is-active { background: var(--pc-navy-04); }
.pc-niche-name { font-family: var(--pc-font-display); font-weight: 600; font-size: 15px; color: var(--pc-ink); }
.pc-niche-flow { font-size: 13.5px; line-height: 1.5; color: var(--pc-fg-muted); }
.pc-niche-row.is-active .pc-niche-name { color: var(--pc-navy); }

/* === §04 About-Us-Mini === */
.pc-aboutmini {
  background: var(--pc-surface);
  border-top: 1px solid var(--pc-border);
  border-bottom: 1px solid var(--pc-border);
  padding: 56px 0;
  position: relative;
}
.pc-aboutmini-inner { display: flex; flex-direction: column; gap: 20px; align-items: center; text-align: center; max-width: 820px; margin: 0 auto; }
.pc-aboutmini-frame { font-family: var(--pc-font-display); font-size: 19px; line-height: 1.5; color: var(--pc-ink); margin: 0; max-width: 56ch; text-wrap: pretty; }
.pc-aboutmini-strip {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 8px 14px;
  padding: 18px 0;
  border-top: 1px solid var(--pc-border);
  border-bottom: 1px solid var(--pc-border);
  font-size: 13.5px; color: var(--pc-fg-muted);
  align-self: stretch;
}
.pc-aboutmini-strip a { color: var(--pc-ink); border-bottom: 1px solid var(--pc-ink-12); padding-bottom: 1px; text-decoration: none; }
.pc-aboutmini-strip a:hover { color: var(--pc-navy); border-bottom-color: var(--pc-navy); }
.pc-aboutmini-strip .sep { color: var(--pc-pale-silver); }
.pc-aboutmini-cta {
  font-family: var(--pc-font-display); font-size: 16px; font-weight: 500;
  color: var(--pc-navy); text-decoration: none;
  border-bottom: 1px solid var(--pc-navy-12); padding-bottom: 2px;
}
.pc-aboutmini-cta:hover { color: var(--pc-navy-deep); border-bottom-color: var(--pc-navy-deep); }
.pc-aboutmini-pocky { position: absolute; right: 32px; bottom: 16px; width: 64px; height: 64px; opacity: 0.85; }
.pc-aboutmini-pocky img { width: 100%; height: 100%; object-fit: contain; }

/* === §05 Calendar / Final CTA === */
.pc-final {
  background: var(--pc-ink);
  color: var(--pc-off-white);
  position: relative;
  overflow: hidden;
}
.pc-final::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(21, 58, 161, 0.55), transparent 52%),
    radial-gradient(circle at 8% 92%, rgba(215, 98, 15, 0.18), transparent 58%);
  pointer-events: none;
}
.pc-final .pc-container { position: relative; }
.pc-final .pc-display-lg { color: var(--pc-off-white); }
.pc-final .pc-eyebrow { color: rgba(250,250,247,0.85); }
.pc-final .pc-eyebrow::before { background: var(--pc-orange); }
.pc-final .pc-lede { color: rgba(250,250,247,0.78); }
.pc-final-trust {
  display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin: 18px auto 0;
  padding: 10px 16px;
  background: rgba(215, 98, 15, 0.08);
  border: 1px solid rgba(215, 98, 15, 0.32);
  border-radius: 999px;
  font-size: 13.5px; line-height: 1.45;
  color: rgba(250,250,247,0.92);
  text-align: left;
  max-width: 60ch;
  text-wrap: pretty;
}
.pc-final-trust-pill {
  font-family: var(--pc-font-mono);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--pc-orange);
  color: var(--pc-off-white);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .pc-final-trust { font-size: 12.5px; padding: 10px 14px; gap: 8px; }
  .pc-final-trust-pill { font-size: 10px; padding: 3px 8px; }
}

.pc-final-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; margin-top: 56px; }
.pc-process-vert { display: flex; flex-direction: column; gap: 0; border-left: 1px solid rgba(250,250,247,0.18); padding-left: 24px; }
.pc-process-vert .step { padding: 18px 0; border-bottom: 1px solid rgba(250,250,247,0.1); position: relative; }
.pc-process-vert .step:last-child { border-bottom: 0; }
.pc-process-vert .step::before {
  content: ""; position: absolute; left: -29px; top: 26px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--pc-orange);
  box-shadow: 0 0 0 4px rgba(215,98,15,0.18);
  opacity: 0; transform: scale(0.6);
  transition: opacity 480ms var(--pc-ease-entrance), transform 480ms var(--pc-ease-entrance);
}
.pc-process-vert .step.lit::before { opacity: 1; transform: scale(1); }
.pc-process-vert .step.lit .step-meta { color: var(--pc-orange); }
.pc-process-vert .step-meta { font-family: var(--pc-font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(250,250,247,0.5); transition: color 480ms var(--pc-ease-entrance); }
.pc-process-vert .step-body { font-family: var(--pc-font-display); font-size: 17px; line-height: 1.4; color: var(--pc-off-white); margin-top: 4px; }

/* GoHighLevel calendar iframe (mirrors agency-landing-page /kontakt) */
.calendar-iframe-wrap {
  position: relative;
  width: 100%;
  background: #fff;
  border-radius: var(--pc-radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  border: 1px solid rgba(250,250,247,0.14);
}
.calendar-iframe {
  display: block;
  width: 100%;
  height: 680px;
  border: 0;
  overflow: hidden;
  background: #fff;
}
@media (max-width: 720px) { .calendar-iframe { height: 760px; } }
@media (max-width: 500px) { .calendar-iframe { height: 820px; } }
.calendar-iframe-skeleton {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #f6f6f4 0%, #ececea 50%, #f6f6f4 100%);
  background-size: 200% 100%;
  animation: kontaktSkeletonShimmer 1.6s linear infinite;
  pointer-events: none;
}
.calendar-skeleton-text {
  font-family: var(--pc-font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pc-fg-subtle, #6a6a6a);
}
@keyframes kontaktSkeletonShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.pc-final-pocky { position: absolute; right: 32px; bottom: 24px; width: 92px; height: 92px; opacity: 0.85; pointer-events: none; }
.pc-final-pocky img { width: 100%; height: 100%; object-fit: contain; }

/* === §06 FAQ === */
.pc-faq-list { max-width: 820px; margin: 0 auto; border-top: 1px solid var(--pc-border); }
.pc-faq-item { border-bottom: 1px solid var(--pc-border); }
.pc-faq-q {
  width: 100%; background: transparent; border: 0;
  padding: 22px 0;
  display: flex; align-items: baseline; gap: 16px; justify-content: space-between;
  text-align: left; cursor: pointer; font-family: var(--pc-font-display);
  font-size: 18px; font-weight: 500; color: var(--pc-ink); line-height: 1.35;
  transition: color var(--pc-dur-fast) var(--pc-ease-standard);
}
.pc-faq-q:hover { color: var(--pc-navy); }
.pc-faq-q .marker {
  font-family: var(--pc-font-mono); font-size: 12px;
  color: var(--pc-fg-subtle); flex-shrink: 0;
  transition: color var(--pc-dur-fast) var(--pc-ease-standard), transform var(--pc-dur-base) var(--pc-ease-standard);
}
.pc-faq-item.open .pc-faq-q .marker { color: var(--pc-navy); transform: rotate(45deg); }
.pc-faq-item.open .pc-faq-q { color: var(--pc-navy); }
.pc-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 320ms var(--pc-ease-standard);
}
.pc-faq-item.open .pc-faq-a { max-height: 280px; }
.pc-faq-a-inner { padding: 0 0 22px; font-size: 15px; line-height: 1.6; color: var(--pc-fg-muted); max-width: 64ch; }
.pc-faq-foot { text-align: center; margin-top: 32px; }
.pc-faq-foot a { color: var(--pc-navy); border-bottom: 1px solid var(--pc-navy-12); padding-bottom: 2px; text-decoration: none; font-family: var(--pc-font-display); font-size: 15px; font-weight: 500; }
.pc-faq-foot a:hover { color: var(--pc-navy-deep); border-bottom-color: var(--pc-navy-deep); }

/* === Footer === */
.pc-footer { background: var(--pc-ink); color: var(--pc-off-white); padding: 64px 0 24px; }
.pc-footer-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; }
.pc-footer-brand img { height: auto; width: clamp(220px, 30vw, 360px); image-rendering: -webkit-optimize-contrast; }
.pc-footer-brand p { margin-top: 16px; font-size: 14px; color: rgba(250,250,247,0.66); max-width: 30ch; line-height: 1.55; }
.pc-footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pc-footer-cols > div { display: flex; flex-direction: column; gap: 8px; }
.pc-footer-h { font-family: var(--pc-font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(250,250,247,0.5); margin-bottom: 4px; }
.pc-footer-cols a { color: rgba(250,250,247,0.85); font-size: 13px; border: 0; cursor: pointer; text-decoration: none; }
.pc-footer-cols a:hover { color: var(--pc-off-white); }
.pc-footer-disclaim {
  max-width: 1180px; margin: 48px auto 0; padding: 18px 32px 0;
  border-top: 1px solid rgba(250,250,247,0.1);
  font-family: var(--pc-font-mono); font-size: 11px; letter-spacing: 0.04em;
  color: rgba(250,250,247,0.45); line-height: 1.55;
}
.pc-footer-base {
  max-width: 1180px; margin: 16px auto 0; padding: 0 32px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-family: var(--pc-font-mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(250,250,247,0.45);
}

/* === Tweaks panel anchor adjustments === */
@media (max-width: 920px) {
  .pc-leadmagnet-grid { grid-template-columns: 1fr; gap: 40px; }
  .pc-leadmagnet-pitch { order: 2; }
  .pc-hero-form-card { order: 1; }

  /* Pain section: 3-card stack → horizontal swipe-carousel */
  .pc-pain-grid {
    display: flex;
    flex-direction: row;
    grid-template-columns: unset;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    padding: 4px 24px;
    margin: 0 -24px;
  }
  .pc-pain-grid::-webkit-scrollbar { display: none; }
  .pc-pain-card {
    flex: 0 0 calc(100% - 56px);
    scroll-snap-align: center;
    scroll-snap-stop: always;
    min-height: auto;
  }

  .pc-l1-grid, .pc-niche-grid { grid-template-columns: 1fr; }
  .pc-niche-row:nth-child(odd) { border-right: 0; padding-right: 8px; }
  .pc-niche-row:nth-child(even) { padding-left: 8px; }
  .pc-final-grid { grid-template-columns: 1fr; gap: 40px; }
  .pc-footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .pc-stack-slab.upper { margin: 0; }
  .pc-stack-slab { flex-direction: column; align-items: flex-start; gap: 8px; padding: 22px; }
}

/* ====================================================================
   SNAP-DOTS · indicator for mobile carousels (pain · industries)
   Hidden on desktop; visible <920px on local-LP.
   ==================================================================== */
.pc-snap-dots { display: none; }

@media (max-width: 920px) {
  .pc-snap-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
  }
  .pc-snap-dots button {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
    -webkit-tap-highlight-color: transparent;
  }
  .pc-snap-dots button::before {
    /* Visible 8px dot, centered inside the 44x44 tap-target */
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pc-pale-silver);
    transition: background var(--pc-dur-base) var(--pc-ease-standard),
                transform var(--pc-dur-base) var(--pc-ease-standard);
  }
  .pc-snap-dots button.is-active::before {
    background: var(--pc-navy);
    transform: scale(1.25);
  }
  .pc-snap-dots button:focus-visible {
    outline: 2px solid var(--pc-navy);
    outline-offset: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pc-snap-dots button { transition: none; }
}

/* Layer-feature dots only show when layer-features is a carousel (<=720px).
   Hide between 721-920px where pc-pain dots would otherwise show but layer
   grid is still 2x2. */
@media (min-width: 721px) and (max-width: 920px) {
  .pc-layer-feat-dots { display: none; }
}

/* ====================================================================
   POCKY · animated SVG character
   ==================================================================== */
.pocky-svg {
  display: block;
  overflow: visible;
  filter: drop-shadow(0 4px 10px rgba(15, 16, 18, 0.12));
}
/* Body bob */
.pocky-svg { animation: pocky-bob 3.4s var(--pc-ease-standard) infinite; }
@keyframes pocky-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
/* Antenna tip — pulses orange */
.pocky-svg .pocky-antenna-tip {
  transform-origin: 50px 9px;
  animation: pocky-tip 1.6s var(--pc-ease-standard) infinite;
}
@keyframes pocky-tip {
  0%, 100% { fill: var(--pc-orange); transform: scale(1); }
  50% { fill: var(--pc-navy); transform: scale(1.4); }
}
/* Eyes blink */
.pocky-svg .pocky-eyes {
  transform-origin: 50px 46px;
  animation: pocky-blink 5s steps(1, end) infinite;
}
@keyframes pocky-blink {
  0%, 92%, 96%, 100% { transform: scaleY(1); }
  93%, 95% { transform: scaleY(0.1); }
}
/* Mood variants */
.pocky-mood-alert .pocky-antenna-tip { animation-duration: 0.6s; }
.pocky-mood-happy .pocky-eyes { animation-duration: 3.2s; }

@media (prefers-reduced-motion: reduce) {
  .pocky-svg, .pocky-svg .pocky-antenna-tip, .pocky-svg .pocky-eyes { animation: none; }
}

/* ====================================================================
   §03 LAYER 1 · BESPOKE VISUALS
   ==================================================================== */

/* Anchor positions for Pocky inside a vis-stage */
.vis-pocky-anchor { position: absolute; z-index: 5; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.vis-pocky-anchor.pos-br { right: 14px; bottom: 14px; }
.vis-pocky-anchor.pos-tr { right: 14px; top: 14px; }
.vis-pocky-anchor.pos-bl { left: 14px; bottom: 14px; }
.vis-pocky-anchor.pos-center { left: 50%; top: 50%; transform: translate(-50%, -50%); }
.vis-pocky-cap { font-family: var(--pc-font-mono); font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pc-fg-subtle); }

/* --- 1.1 Smart Website · GSAP-orchestrated 6s storyloop (ranks → fast → converts) --- */
.vis-site .pc-visual-stage { padding: 8px 0; min-height: 240px; }

/* Browser frame — GSAP owns scale entrance; static layout here */
.sw-browser {
  position: absolute;
  left: 8%; top: 18%;
  width: 64%; height: 70%;
  background: var(--pc-bg);
  border: 1px solid var(--pc-border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(15,16,18,0.08);
  display: flex; flex-direction: column;
  z-index: 2;
}
.sw-browser-bar {
  background: var(--pc-surface);
  padding: 8px 10px;
  display: flex; align-items: center; gap: 4px;
  border-bottom: 1px solid var(--pc-border);
}
.sw-browser-bar > span { width: 7px; height: 7px; border-radius: 50%; background: var(--pc-pale-silver); }
.sw-browser-url {
  flex: 1; margin-left: 10px;
  font-family: var(--pc-font-mono); font-size: 9.5px;
  color: var(--pc-fg-subtle);
  background: var(--pc-bg);
  border: 1px solid var(--pc-border);
  padding: 3px 8px;
  border-radius: 4px;
}
.sw-browser-content { padding: 14px 14px 12px; flex: 1; display: flex; flex-direction: column; gap: 6px; position: relative; }

/* Headline + body lines — GSAP scaleX paints them in */
.sw-headline {
  height: 12px; width: 80%;
  background: var(--pc-ink);
  border-radius: 2px;
}
.sw-line {
  height: 5px;
  background: var(--pc-pale-silver);
  border-radius: 2px;
}
.sw-line.w70 { width: 70%; }
.sw-line.w55 { width: 55%; }

/* CTA + pulse ring container — ring expands behind the button on every loop */
.sw-cta-wrap {
  position: relative;
  align-self: flex-start;
  margin-top: 6px;
}
.sw-cta {
  position: relative;
  background: var(--pc-orange);
  color: var(--pc-ink);
  font-family: var(--pc-font-mono);
  font-size: 10px; font-weight: 600;
  padding: 5px 9px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  z-index: 2;
}
.sw-pulse-ring {
  position: absolute;
  inset: -3px;
  border-radius: 6px;
  background: var(--pc-orange);
  opacity: 0;
  z-index: 1;
}

.sw-langs {
  position: absolute;
  bottom: 10px; right: 12px;
  display: flex; gap: 4px;
  font-family: var(--pc-font-mono); font-size: 9.5px;
}
.sw-langs span {
  padding: 2px 6px;
  border-radius: 3px;
  border: 1px solid var(--pc-border);
  color: var(--pc-fg-subtle);
}
.sw-langs .active {
  background: var(--pc-ink);
  color: var(--pc-off-white);
  border-color: var(--pc-ink);
}

/* Google search snippet — "ranks" beat, top-left.
   Rich SERP card: eyebrow, animated rank counter, trending pill, title,
   star-by-star fill. The rank pill flashes orange on each step. */
.sw-snippet {
  position: absolute;
  top: 10px; left: 10px;
  z-index: 4;
  background: var(--pc-bg);
  border: 1px solid var(--pc-border);
  border-left: 3px solid var(--pc-navy);
  border-radius: 6px;
  padding: 7px 10px;
  box-shadow: 0 4px 12px rgba(15,16,18,0.08);
  max-width: 60%;
}
.sw-snippet-eyebrow {
  font-family: var(--pc-font-mono); font-size: 7.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--pc-fg-subtle); line-height: 1;
  margin-bottom: 4px;
}
.sw-snippet-rank-row {
  display: flex; align-items: center; gap: 5px;
  margin-bottom: 3px;
}
.sw-snippet-rank {
  display: inline-flex; align-items: baseline;
  font-family: var(--pc-font-mono); font-size: 10px;
  font-weight: 700; color: var(--pc-orange);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  padding: 1px 5px;
  background: rgba(215, 98, 15, 0.08);
  border-radius: 3px;
  transform-origin: center center;
}
.sw-snippet-rank-num { font-variant-numeric: tabular-nums; }
.sw-snippet-rank-trend {
  font-family: var(--pc-font-mono); font-size: 8px;
  font-weight: 700; color: var(--pc-orange);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.sw-snippet-url {
  font-family: var(--pc-font-mono); font-size: 9px;
  color: var(--pc-navy); letter-spacing: 0.04em;
  line-height: 1.1;
}
.sw-snippet-title {
  font-family: var(--pc-font-display); font-weight: 600;
  font-size: 11px; color: var(--pc-ink);
  margin-top: 2px; line-height: 1.25;
}
.sw-snippet-stars {
  display: flex; align-items: center; gap: 1px;
  margin-top: 3px;
  font-size: 9.5px; line-height: 1;
  color: var(--pc-orange);
  letter-spacing: 0.5px;
}
.sw-snippet-star { display: inline-block; transform-origin: center center; }
.sw-snippet-stars small {
  font-family: var(--pc-font-mono); font-size: 8px;
  color: var(--pc-fg-subtle);
  letter-spacing: 0.02em;
  margin-left: 5px;
}

/* Lighthouse gauge — SVG arc top-right (Pocky owns bottom-right) */
.sw-gauge {
  position: absolute;
  top: 10px; right: 10px;
  width: 68px; height: 68px;
  z-index: 4;
}
.sw-gauge svg { width: 100%; height: 100%; display: block; }
.sw-gauge-arc { transition: none; }
.sw-gauge-label {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--pc-font-mono); font-size: 8px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--pc-fg-subtle);
  pointer-events: none;
}
.sw-gauge-label strong {
  font-size: 17px; color: var(--pc-ink);
  font-family: var(--pc-font-display); font-weight: 600;
  letter-spacing: -0.02em; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.sw-gauge-label span { margin-top: 2px; }
.sw-gauge-num { display: inline-block; transform-origin: center center; }

/* "✓ FAST" badge slides out below the gauge once the dial locks. */
.sw-gauge-badge {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  background: var(--pc-orange);
  color: var(--pc-off-white);
  font-family: var(--pc-font-mono);
  font-size: 8px; font-weight: 700;
  letter-spacing: 0.1em;
  padding: 2px 7px;
  border-radius: 3px;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(215, 98, 15, 0.32);
}

/* Booked toast — "converts" beat, slides up from bottom */
.sw-toast {
  position: absolute;
  bottom: 14px; left: 12px;
  z-index: 5;
  background: var(--pc-ink);
  color: var(--pc-off-white);
  border-radius: 8px;
  padding: 8px 11px;
  display: flex; align-items: center; gap: 9px;
  box-shadow: 0 6px 16px rgba(15,16,18,0.18);
  max-width: 52%;
}
.sw-toast-pocky {
  width: 32px; height: 32px;
  background: var(--pc-orange);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  padding: 3px;
  overflow: hidden;
}
.sw-toast-pocky .sw-pocky-img {
  width: 28px; height: 28px;
  object-fit: contain;
}

/* Brand-pack Pocky PNG — canonical, transparent. Subtle bob keeps him alive. */
.sw-pocky-img {
  display: block;
  filter: drop-shadow(0 4px 10px rgba(15, 16, 18, 0.12));
}
.sw-pocky-corner {
  width: 72px; height: 72px;
  object-fit: contain;
  animation: sw-pocky-bob 3.4s var(--pc-ease-standard) infinite;
}
@keyframes sw-pocky-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
@media (prefers-reduced-motion: reduce) {
  .sw-pocky-corner { animation: none; }
}
.sw-toast strong {
  font-family: var(--pc-font-display); font-weight: 600;
  font-size: 11.5px; color: var(--pc-off-white);
  display: block; line-height: 1.2;
}
.sw-toast small {
  font-family: var(--pc-font-mono); font-size: 9px;
  color: rgba(250,250,247,0.65); letter-spacing: 0.04em;
}

/* Pocky's thought-bubbles — fade in/out per phase, anchored above his head.
   Stacked at the same coordinate so GSAP can crossfade without layout reflow. */
.sw-pocky-anchor { right: 14px; bottom: 14px; }
.sw-pocky-bubbles {
  position: absolute;
  bottom: calc(100% + 4px); right: 0;
  width: 86px; height: 26px;
  pointer-events: none;
}
.sw-pocky-bubble {
  position: absolute; inset: 0;
  background: var(--pc-ink);
  color: var(--pc-off-white);
  border-radius: 6px;
  padding: 5px 9px;
  font-family: var(--pc-font-mono);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.04em;
  display: flex; align-items: center; justify-content: center;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(15,16,18,0.18);
}
.sw-pocky-bubble::after {
  content: ""; position: absolute;
  top: 100%; right: 18px;
  border: 4px solid transparent;
  border-top-color: var(--pc-ink);
}
.sw-bubble-fast { background: var(--pc-navy); color: var(--pc-off-white); }
.sw-bubble-fast::after { border-top-color: var(--pc-navy); }
.sw-bubble-book { background: var(--pc-orange); color: var(--pc-ink); }
.sw-bubble-book::after { border-top-color: var(--pc-orange); }

@media (prefers-reduced-motion: reduce) {
  .sw-snippet, .sw-toast { opacity: 1 !important; transform: none !important; }
  .sw-headline, .sw-line, .sw-cta { transform: scaleX(1) !important; opacity: 1 !important; }
  .sw-gauge-arc { stroke-dashoffset: 205.8 !important; }
  .sw-snippet-star, .sw-snippet-rank-trend, .sw-gauge-badge { opacity: 1 !important; transform: none !important; }
  .sw-pocky-bubble { opacity: 0 !important; }
  .sw-bubble-book { opacity: 1 !important; }
}

/* --- 1.2 Missed-Call Text-Back --- GSAP-driven, mirrors 1.1 principles:
   stepped digital readout, sequential reveals, lock-in pills, Pocky in
   the bottom-right corner with the same canonical PNG. */
.vis-callback .pc-visual-stage { padding: 0; position: relative; }

.cb-thread {
  position: absolute;
  left: 14px; right: 110px; top: 14px; bottom: 14px;
  display: flex; flex-direction: column; gap: 7px;
  justify-content: center;
}

.cb-missed {
  background: var(--pc-bg);
  border: 1px solid var(--pc-border);
  border-left: 3px solid var(--pc-orange);
  border-radius: 10px;
  padding: 8px 10px;
  display: flex; align-items: center; gap: 9px;
  box-shadow: 0 2px 8px rgba(15,16,18,0.05);
}

.cb-avatar-wrap {
  position: relative;
  width: 28px; height: 28px;
  flex-shrink: 0;
}
.cb-avatar {
  position: relative; z-index: 2;
  display: grid; place-items: center;
  width: 28px; height: 28px;
  background: var(--pc-navy);
  color: var(--pc-off-white);
  border-radius: 50%;
  font-family: var(--pc-font-mono);
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.02em;
}
.cb-ring-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid var(--pc-navy);
  pointer-events: none;
  z-index: 1;
}

.cb-missed-body { flex: 1; min-width: 0; }
.cb-missed-body strong {
  display: block;
  font-family: var(--pc-font-display); font-weight: 600;
  font-size: 11.5px; color: var(--pc-ink); line-height: 1.2;
}
.cb-missed-body small {
  font-family: var(--pc-font-mono); font-size: 9px;
  color: var(--pc-fg-subtle); letter-spacing: 0.04em;
}

.cb-x {
  width: 20px; height: 20px;
  flex-shrink: 0;
  background: var(--pc-orange);
  color: var(--pc-off-white);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700; font-size: 13px; line-height: 1;
}

/* Typing indicator — Pocky composing the reply */
.cb-typing {
  align-self: flex-start;
  background: var(--pc-bg);
  border: 1px solid var(--pc-border);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  padding: 7px 11px;
  display: flex; align-items: center; gap: 4px;
  box-shadow: 0 2px 6px rgba(15,16,18,0.04);
}
.cb-typing span {
  width: 5px; height: 5px;
  background: var(--pc-pewter);
  border-radius: 50%;
  animation: cb-typing-dot 1s infinite;
}
.cb-typing span:nth-child(2) { animation-delay: 0.15s; }
.cb-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes cb-typing-dot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-3px); opacity: 1; }
}

/* Outgoing SMS (from Pocky) — navy iMessage-style bubble, anchored left */
.cb-sms {
  align-self: flex-start;
  background: var(--pc-navy);
  color: var(--pc-off-white);
  border-radius: 12px;
  border-bottom-left-radius: 4px;
  padding: 8px 11px;
  max-width: 84%;
  display: flex; flex-direction: column; gap: 3px;
  box-shadow: 0 4px 12px rgba(21, 58, 161, 0.18);
}
.cb-sms strong {
  font-family: var(--pc-font-body);
  font-size: 11px; font-weight: 500;
  color: var(--pc-off-white);
  line-height: 1.35;
}
.cb-sms small {
  font-family: var(--pc-font-mono); font-size: 9px;
  color: rgba(250,250,247,0.65); letter-spacing: 0.04em;
}

/* Incoming reply (customer books) — light bubble, anchored right */
.cb-reply {
  align-self: flex-end;
  background: var(--pc-bg);
  border: 1px solid var(--pc-border);
  border-radius: 12px;
  border-bottom-right-radius: 4px;
  padding: 7px 9px;
  max-width: 76%;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 3px 10px rgba(15,16,18,0.06);
}
.cb-reply-avatar {
  width: 22px; height: 22px;
  flex-shrink: 0;
  background: var(--pc-orange);
  color: var(--pc-off-white);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--pc-font-mono);
  font-size: 8.5px; font-weight: 700;
}
.cb-reply strong {
  display: block;
  font-family: var(--pc-font-display); font-weight: 600;
  font-size: 11px; color: var(--pc-ink); line-height: 1.2;
}
.cb-reply small {
  font-family: var(--pc-font-mono); font-size: 8.5px;
  color: var(--pc-fg-subtle); letter-spacing: 0.04em;
}

/* SLA widget — top-right. Digital countdown card with depleting bar. */
.cb-sla {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 4;
  width: 88px;
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
}
.cb-timer {
  width: 100%;
  background: var(--pc-bg);
  border: 1px solid var(--pc-border);
  border-radius: 8px;
  padding: 7px 8px 6px;
  display: flex; flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 12px rgba(15,16,18,0.08);
}
.cb-timer-eyebrow {
  font-family: var(--pc-font-mono); font-size: 7px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--pc-fg-subtle);
  line-height: 1;
}
.cb-timer-num {
  display: inline-block;
  font-family: var(--pc-font-display); font-weight: 600;
  font-size: 21px; line-height: 1;
  color: var(--pc-ink);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  margin-top: 4px;
  transform-origin: center center;
}
.cb-timer-unit {
  font-family: var(--pc-font-mono); font-size: 7px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--pc-fg-subtle);
  margin-top: 2px;
}
.cb-timer-bar {
  width: 100%;
  height: 3px;
  background: var(--pc-pale-silver);
  border-radius: 2px;
  margin-top: 6px;
  overflow: hidden;
}
.cb-timer-bar-fill {
  display: block;
  width: 100%; height: 100%;
  background: var(--pc-orange);
  border-radius: 2px;
  transform-origin: left center;
}

.cb-pill-slot {
  position: relative;
  width: 100%;
  height: 18px;
}
.cb-pill {
  position: absolute;
  top: 0; left: 50%;
  font-family: var(--pc-font-mono);
  font-size: 8px; font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 3px;
  white-space: nowrap;
}
.cb-pill-replied {
  background: var(--pc-navy);
  color: var(--pc-off-white);
  box-shadow: 0 3px 10px rgba(21, 58, 161, 0.32);
}
.cb-pill-booked {
  background: var(--pc-orange);
  color: var(--pc-off-white);
  box-shadow: 0 3px 10px rgba(215, 98, 15, 0.34);
}

.cb-pocky-anchor { right: 14px; bottom: 14px; }

@media (prefers-reduced-motion: reduce) {
  .cb-missed, .cb-sms, .cb-reply { opacity: 1 !important; transform: none !important; }
  .cb-avatar, .cb-x { opacity: 1 !important; transform: none !important; }
  .cb-typing, .cb-pill-replied { opacity: 0 !important; }
  .cb-pill-booked { opacity: 1 !important; transform: translateX(-50%) !important; }
  .cb-timer-bar-fill { transform: scaleX(0.2) !important; }
  .cb-ring-pulse { display: none; }
}

/* --- 1.3 Database Reactivation --- GSAP-driven, mirrors 1.1 / 1.2:
   data widget top-right, stepped digital readout, lock-in pill, canonical
   Pocky in the corner. 7×4 dot grid; 8 of 28 flip orange when booked back. */
.vis-reactivate .pc-visual-stage { padding: 0; position: relative; }

/* Grid: fixed 22px dots, centered horizontally in left half of stage,
   vertically centered. Caps dot size regardless of card width — without
   this, dots stretch with the card and become huge (Bambel-Bug). */
.re-grid {
  position: absolute;
  top: 50%; left: 0; right: 116px;
  transform: translateY(-50%);
  display: grid;
  grid-template-columns: repeat(7, 22px);
  grid-template-rows: repeat(4, 22px);
  gap: 9px;
  justify-content: center;
  align-content: center;
  z-index: 1;
}
.re-dot {
  position: relative;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--pc-pale-silver);
}
.re-dot-ping {
  position: absolute; inset: -3px;
  border-radius: 50%;
  border: 1.5px solid var(--pc-navy);
  pointer-events: none;
}

/* Counter widget — vertically centered on the right edge so it pairs with
   the grid as one horizontal composition, not floating top-right alone. */
.re-counter-widget {
  position: absolute;
  top: 50%; right: 14px;
  transform: translateY(-50%);
  z-index: 4;
  width: 92px;
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
}
.re-counter {
  width: 100%;
  background: var(--pc-bg);
  border: 1px solid var(--pc-border);
  border-radius: 8px;
  padding: 7px 8px 6px;
  display: flex; flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 12px rgba(15, 16, 18, 0.08);
}
.re-counter-eyebrow {
  font-family: var(--pc-font-mono); font-size: 7px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--pc-fg-subtle);
  line-height: 1;
}
.re-counter-num {
  display: inline-block;
  font-family: var(--pc-font-display); font-weight: 600;
  font-size: 21px; line-height: 1;
  color: var(--pc-ink);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  margin-top: 4px;
  transform-origin: center center;
}
.re-counter-unit {
  font-family: var(--pc-font-mono); font-size: 7.5px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--pc-fg-subtle);
  margin-top: 2px;
}
.re-counter-bar {
  width: 100%; height: 3px;
  background: var(--pc-pale-silver);
  border-radius: 2px;
  margin-top: 6px;
  overflow: hidden;
}
.re-counter-bar-fill {
  display: block;
  width: 100%; height: 100%;
  background: var(--pc-orange);
  border-radius: 2px;
  transform-origin: left center;
}

.re-pill-slot {
  position: relative;
  width: 100%;
  height: 18px;
}
.re-pill {
  position: absolute;
  top: 0; left: 50%;
  background: var(--pc-orange);
  color: var(--pc-off-white);
  font-family: var(--pc-font-mono);
  font-size: 8px; font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 3px;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(215, 98, 15, 0.34);
}

.re-pocky-anchor { right: 14px; bottom: 14px; }

@media (prefers-reduced-motion: reduce) {
  .re-dot { opacity: 1 !important; transform: none !important; }
  .re-dot[data-i="1"], .re-dot[data-i="5"], .re-dot[data-i="9"],
  .re-dot[data-i="12"], .re-dot[data-i="16"], .re-dot[data-i="19"],
  .re-dot[data-i="22"], .re-dot[data-i="26"] {
    background: var(--pc-orange) !important;
  }
  .re-dot-ping { display: none; }
  .re-counter-widget { opacity: 1 !important; transform: none !important; }
  .re-counter-bar-fill { transform: scaleX(0.348) !important; }
  .re-pill { opacity: 1 !important; transform: translateX(-50%) !important; }
}

/* --- 1.4 Review Acquisition --- GSAP-driven, mirrors 1.1-1.3 principles:
   stars fill sequentially, counter ticks up, lock-in pill, canonical Pocky.
   Centered hero (no side widget) — celebratory social-proof beat. */
.vis-reviews .pc-visual-stage { padding: 0; position: relative; }

.rev-hero {
  position: absolute;
  inset: 14px 14px 14px 14px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px;
  text-align: center;
  z-index: 2;
}

.rev-stars {
  display: flex;
  gap: 7px;
}
.rev-star {
  display: inline-block;
  font-size: 30px; line-height: 1;
  color: var(--pc-pale-silver);
  transform-origin: center center;
}

.rev-counter-num {
  display: inline-block;
  font-family: var(--pc-font-display);
  font-weight: 600;
  font-size: 52px; line-height: 1;
  color: var(--pc-navy);
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  margin-top: 4px;
  transform-origin: center center;
}

.rev-counter-caption {
  font-family: var(--pc-font-mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pc-fg-subtle);
  margin-top: 2px;
}

.rev-pill-slot {
  position: relative;
  width: 100%;
  height: 22px;
  margin-top: 4px;
}
.rev-pill {
  position: absolute;
  top: 0; left: 50%;
  background: var(--pc-orange);
  color: var(--pc-off-white);
  font-family: var(--pc-font-mono);
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(215, 98, 15, 0.34);
}

.rev-pulse {
  position: absolute;
  font-family: var(--pc-font-mono);
  font-size: 10.5px; font-weight: 700;
  background: var(--pc-bg);
  color: var(--pc-orange);
  border: 1px solid var(--pc-orange);
  padding: 3px 7px;
  border-radius: 4px;
  box-shadow: 0 3px 10px rgba(215, 98, 15, 0.22);
  pointer-events: none;
  z-index: 5;
  letter-spacing: 0.04em;
}
.rev-pulse-1 { left: 12%; top: 20%; }
.rev-pulse-2 { right: 18%; top: 26%; }
.rev-pulse-3 { left: 22%; top: 64%; }

.rev-pocky-anchor { right: 14px; bottom: 14px; }

@media (prefers-reduced-motion: reduce) {
  .rev-star { opacity: 1 !important; transform: none !important; color: var(--pc-orange) !important; }
  .rev-counter-num, .rev-counter-caption { opacity: 1 !important; transform: none !important; }
  .rev-pulse { opacity: 0 !important; }
  .rev-pill { opacity: 1 !important; transform: translateX(-50%) !important; }
}

/* ====================================================================
   §05 ABOUT MINI · slim elevator-pitch strip (no Pocky, founder portraits)
   ==================================================================== */
.pc-about-mini {
  background: var(--pc-surface);
  padding: 56px 0;
  border-top: 1px solid var(--pc-border);
  border-bottom: 1px solid var(--pc-border);
}
.pc-about-mini-strip {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
}
.pc-about-mini-pitch {
  font-family: var(--pc-font-display);
  font-size: 17px;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--pc-ink);
  margin: 0;
  text-wrap: balance;
}
.pc-about-mini-founders {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
}
.pc-founder {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none;
  transition: opacity var(--pc-dur-fast) var(--pc-ease-standard);
}
.pc-founder img {
  width: 36px; height: 36px; border-radius: 50%; object-fit: cover;
  border: 1px solid var(--pc-border);
}
.pc-founder span {
  font-size: 12px; line-height: 1.4; color: var(--pc-fg-muted);
  display: flex; flex-direction: column;
}
.pc-founder span strong {
  font-family: var(--pc-font-display); font-weight: 600; font-size: 13px;
  color: var(--pc-ink); letter-spacing: -0.005em;
}
.pc-founder:hover { opacity: 0.7; }
.pc-founder-sep {
  color: var(--pc-fg-subtle); font-size: 14px;
}
.pc-about-mini-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--pc-font-display); font-weight: 500;
  font-size: 14px; letter-spacing: -0.005em;
  color: var(--pc-ink);
  border-bottom: 1px solid var(--pc-ink-12);
  padding-bottom: 3px;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--pc-dur-fast) var(--pc-ease-standard), border-color var(--pc-dur-fast) var(--pc-ease-standard);
}
.pc-about-mini-cta-arrow {
  display: inline-block;
  transition: transform var(--pc-dur-fast) var(--pc-ease-standard);
}
.pc-about-mini-cta:hover {
  color: var(--pc-navy);
  border-bottom-color: var(--pc-navy);
}
.pc-about-mini-cta:hover .pc-about-mini-cta-arrow { transform: translateX(4px); }

@media (max-width: 860px) {
  .pc-about-mini-strip { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .pc-about-mini-pitch { text-align: center; }
  .pc-about-mini-founders { justify-content: center; }
  .pc-about-mini-cta { justify-self: center; }
}

/* ===========================================================
   Per-card CTA in Layer detail
   =========================================================== */
.pc-layer-cta {
  margin-top: 20px;
  align-self: flex-start;
}

/* ===========================================================
   Industries dropdown (nav-center base styles defined above)
   =========================================================== */
.pc-nav-dd { position: relative; }
.pc-nav-dd-arrow {
  font-size: 10px;
  transition: transform 200ms;
}
.pc-nav-dd.is-open .pc-nav-dd-arrow { transform: rotate(180deg); }

.pc-nav-dd-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 280px;
  background: white;
  border: 1px solid var(--pc-hairline);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(15, 16, 18, 0.08);
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 50;
}
.pc-nav-dd.is-open .pc-nav-dd-menu {
  display: flex;
  transform: translateX(-50%) translateY(0);
}
.pc-nav-dd-menu a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 150ms;
}
.pc-nav-dd-menu a:hover { background: var(--pc-surface); }
.pc-nav-dd-menu a strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--pc-ink);
}
.pc-nav-dd-menu a span {
  font-size: 12px;
  color: var(--pc-fg-subtle);
}
.pc-nav-dd-menu a.is-current {
  background: var(--pc-navy-08);
}
.pc-nav-dd-menu a.is-current strong { color: var(--pc-navy); }
.pc-nav-dd-menu a.pc-nav-dd-all {
  border-top: 1px solid var(--pc-hairline);
  margin-top: 4px;
  padding-top: 12px;
  font-family: var(--pc-font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pc-fg-subtle);
  flex-direction: row;
  justify-content: center;
}

@media (max-width: 640px) {
  .pc-nav-center { display: none; }
}

/* ====================================================================
   MOBILE NAV · burger + slide-in overlay panel
   Burger visible <640px (matches .pc-nav-center hide breakpoint).
   ==================================================================== */
.pc-nav-burger {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}
.pc-nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--pc-ink);
  border-radius: 1px;
  transition: transform 240ms var(--pc-ease-standard),
              opacity 200ms var(--pc-ease-standard);
}
.pc-nav-burger:focus-visible {
  outline: 2px solid var(--pc-navy);
  outline-offset: 2px;
  border-radius: 4px;
}
.pc-nav.is-mobile-open .pc-nav-burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.pc-nav.is-mobile-open .pc-nav-burger span:nth-child(2) { opacity: 0; }
.pc-nav.is-mobile-open .pc-nav-burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.pc-nav-mobile-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(15, 16, 18, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms var(--pc-ease-standard);
  z-index: 998;
}
.pc-nav-mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  height: 100dvh;
  width: min(85vw, 340px);
  background: var(--pc-bg);
  box-shadow: -8px 0 32px rgba(15, 16, 18, 0.12);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(0.32, 0.72, 0, 1);
  z-index: 999;
  padding: 88px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow-y: auto;
  visibility: hidden;
}
.pc-nav.is-mobile-open .pc-nav-mobile-backdrop {
  opacity: 1;
  pointer-events: auto;
}
.pc-nav.is-mobile-open .pc-nav-mobile-panel {
  transform: translateX(0);
  visibility: visible;
}
.pc-nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pc-nav-mobile-links a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 8px;
  font-family: var(--pc-font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--pc-ink);
  text-decoration: none;
  border-bottom: 1px solid var(--pc-hairline);
  transition: color 150ms var(--pc-ease-standard);
}
.pc-nav-mobile-links a.is-current {
  color: var(--pc-navy);
}
.pc-nav-mobile-links a:hover,
.pc-nav-mobile-links a:focus-visible {
  color: var(--pc-navy);
}
.pc-nav-mobile-cta {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
}

@media (max-width: 640px) {
  .pc-nav-burger { display: flex; }
  .pc-nav-cta-desktop { display: none; }
}

@media (min-width: 641px) {
  .pc-nav-mobile-backdrop,
  .pc-nav-mobile-panel { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  .pc-nav-burger span,
  .pc-nav-mobile-panel,
  .pc-nav-mobile-backdrop { transition: none; }
}

/* ===========================================================
   Layer card · scannable text structure (sub + bullets + kpi)
   =========================================================== */
.pc-layer-sub {
  font-size: 15px;
  line-height: 1.5;
  color: var(--pc-fg-muted);
  margin: 8px 0 16px;
}
.pc-layer-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex; flex-direction: column;
  gap: 8px;
}
.pc-layer-bullets li {
  font-size: 14px;
  line-height: 1.5;
  color: var(--pc-fg-muted);
  padding-left: 22px;
  position: relative;
}
.pc-layer-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pc-orange);
}

/* ====================================================================
   Layer card · feature grid (icon + bold title + 1-line desc)
   Used when card.features array is provided (richer than flat bullets).
   ==================================================================== */
.pc-layer-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 4px 0 16px;
}
.pc-feature {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 16px;
  background: var(--pc-bg);
  border: 1px solid var(--pc-border);
  border-radius: 14px;
  transition: border-color var(--pc-dur-fast) var(--pc-ease-standard),
              transform var(--pc-dur-fast) var(--pc-ease-standard),
              box-shadow var(--pc-dur-fast) var(--pc-ease-standard);
  position: relative;
  overflow: hidden;
}
.pc-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(215, 98, 15, 0.06), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--pc-dur-base) var(--pc-ease-standard);
}
.pc-feature:hover {
  border-color: var(--pc-navy-12);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15,16,18,0.06);
}
.pc-feature:hover::before { opacity: 1; }
.pc-feature > * { position: relative; z-index: 1; }

.pc-feature-icon {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--pc-navy-08) 0%, var(--pc-orange-08, rgba(215,98,15,0.06)) 100%);
  color: var(--pc-navy);
  flex-shrink: 0;
}
.pc-feature-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}
.pc-feature-title {
  font-family: var(--pc-font-display);
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--pc-ink);
  margin: 0;
  text-wrap: balance;
}
.pc-feature-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--pc-fg-muted);
  margin: 0;
}

@media (max-width: 720px) {
  /* Layer features: 2x2 grid → horizontal swipe-carousel on phone */
  .pc-layer-features {
    display: flex;
    flex-direction: row;
    grid-template-columns: unset;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    padding: 4px 24px;
    margin: 4px -24px 8px;
  }
  .pc-layer-features::-webkit-scrollbar { display: none; }
  .pc-feature {
    flex: 0 0 calc(100% - 56px);
    scroll-snap-align: center;
    scroll-snap-stop: always;
    padding: 16px 14px;
  }
  .pc-feature-title { font-size: 14px; }
  .pc-feature-desc { font-size: 12.5px; }
  .pc-layer-feat-dots { margin-top: 12px; margin-bottom: 8px; }
}

/* ====================================================================
   §01 HERO · video-first centered (mirrors agency-landing-page hero)
   ==================================================================== */
.pc-mono-eyebrow {
  display: inline-block;
  font-family: var(--pc-font-mono); font-weight: 500;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--pc-silver-fog, var(--pc-fg-subtle));
}
.pc-btn-text {
  background: transparent;
  color: var(--pc-ink);
  border-color: transparent;
  padding: 13px 4px;
}
.pc-btn-text:hover { background: transparent; color: var(--pc-navy); }

.pc-hero-centered {
  position: relative;
  min-height: 90dvh;
  padding: 96px 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.pc-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.pc-hero-centered .pc-mono-eyebrow {
  margin-bottom: 24px;
}
.pc-hero-h1 {
  font-family: var(--pc-font-display);
  font-weight: 600;
  font-size: clamp(40px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--pc-ink);
  margin: 0;
  text-wrap: balance;
}
.pc-hero-line { display: block; }
.pc-hero-lede {
  font-family: var(--pc-font-mono);
  font-size: 14px;
  line-height: 1.65;
  letter-spacing: 0.01em;
  color: var(--pc-fg-muted);
  max-width: 56ch;
  margin: 24px 0 0;
}
.pc-hero-video-perspective {
  width: 100%;
  margin: 64px 0 0;
  perspective: 1000px;
}
.pc-hero-video-frame {
  position: relative;
  width: 100%;
  max-width: 1100px;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  border: 4px solid #6C6C6C;
  border-radius: 30px;
  padding: 6px;
  overflow: hidden;
  background: #222222;
  box-shadow:
    0 0 #0000004d,
    0 9px 20px #0000004a,
    0 37px 37px #00000042,
    0 84px 50px #00000026,
    0 149px 60px #0000000a,
    0 233px 65px #00000003;
  transform-origin: center center;
  transform: rotateX(var(--pc-hero-rotate, 12deg)) scale(var(--pc-hero-scale, 1.03));
  will-change: transform;
}

/* Disable 3D perspective tilt on mobile — looks broken on portrait phones. */
@media (max-width: 720px) {
  .pc-hero-video-perspective { perspective: none; }
  .pc-hero-video-frame {
    transform: none;
    will-change: auto;
  }
}
.pc-hero-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  background: #18181b;
}
@media (prefers-reduced-motion: reduce) {
  .pc-hero-video-frame { transform: none; }
}
.pc-hero-video-controls {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: rgba(23, 26, 32, 0.7);
  border-radius: 4px;
  font-family: var(--pc-font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  border: 0;
  z-index: 3;
  transition: background 200ms ease;
}
.pc-hero-video-controls:hover { background: rgba(23, 26, 32, 0.85); }
.pc-hero-video-sound-icon { display: inline-flex; align-items: center; }
.pc-hero-video-controls[data-muted="true"] .icon-unmuted,
.pc-hero-video-controls[data-muted="false"] .icon-muted { display: none; }
.pc-hero-video-controls[data-muted="true"] .icon-muted,
.pc-hero-video-controls[data-muted="false"] .icon-unmuted { display: inline-block; }
.pc-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 40px 0 0;
}
.pc-hero-metrics {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--pc-font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 32px 0 0;
}
.pc-hero-metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.pc-hero-metric-num {
  font-size: 22px;
  font-weight: 500;
  color: var(--pc-ink);
  letter-spacing: -0.01em;
  text-transform: none;
  font-feature-settings: "tnum" 1;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--pc-navy);
}
.pc-hero-metric-label {
  color: var(--pc-fg-subtle);
  font-size: 10px;
  letter-spacing: 0.16em;
}

@media (max-width: 920px) {
  .pc-hero-centered { min-height: auto; padding: 80px 0 64px; }
  .pc-hero-inner { padding: 0 20px; }
  .pc-hero-video-perspective { margin-top: 48px; }
  .pc-hero-video-frame { border-radius: 20px; padding: 4px; border-width: 2px; }
  .pc-hero-video-frame video { border-radius: 16px; }
  .pc-hero-cta-row { margin-top: 32px; }
  .pc-hero-metrics { gap: 32px; margin-top: 24px; }
  .pc-hero-metric-num { font-size: 18px; }
}

/* ====================================================================
   MOBILE POLISH PASS · 720px + 500px tightening
   Touch targets, spacing rhythm, tab/nav reflow, font scaling.
   ==================================================================== */

@media (max-width: 720px) {
  /* Section + container rhythm */
  .pc-section { padding: 64px 0; }
  .pc-leadmagnet { padding: 64px 0; }
  .pc-about-mini { padding: 40px 0; }
  .pc-section-head { margin-bottom: 40px; }
  .pc-container { padding: 0 24px; }

  /* Touch targets — bring all primary CTAs to ≥44px */
  .pc-btn { padding: 14px 22px; min-height: 48px; }
  .pc-btn-sm { min-height: 44px; padding: 12px 16px; }
  .pc-btn-block { padding: 16px 20px; min-height: 52px; }

  /* Hero — tighter type, single-column CTAs */
  .pc-hero-h1 { font-size: clamp(36px, 9vw, 56px); }
  .pc-hero-lede { font-size: 13px; line-height: 1.6; max-width: 38ch; }
  .pc-hero-cta-row { flex-direction: column; align-items: stretch; gap: 12px; width: 100%; }
  .pc-hero-cta-row .pc-btn { width: 100%; justify-content: center; }
  .pc-hero-metrics { gap: 28px; }

  /* Pain cards — auto height, tighter padding */
  .pc-pain-card { min-height: auto; padding: 24px 20px; gap: 14px; }
  .pc-pain-card h3 { font-size: 19px; }
  .pc-pain-card p { font-size: 14px; }
  .pc-pain-visual { height: 132px; }

  /* Solution: layer-tabs become horizontally scrollable instead of cramping */
  .pc-layer-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .pc-layer-tabs::-webkit-scrollbar { display: none; }
  .pc-layer-tab {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 12px 16px;
    font-size: 11px;
    white-space: nowrap;
  }
  .pc-layer-card { gap: 28px; padding: 24px; }
  .pc-layer-card-text h3 { font-size: 22px; }
  .pc-layer-sub, .pc-layer-card-text p { font-size: 14.5px; }

  /* Lead Magnet — stack columns with form first */
  .pc-leadmagnet-grid { grid-template-columns: 1fr; gap: 32px; }
  .pc-leadmagnet-pitch { order: 2; padding: 0; align-items: center; text-align: center; }
  .pc-leadmagnet-pitch h2 { text-align: center; }
  .pc-leadmagnet-pitch .pc-lede { text-align: center; margin: 0 auto; }
  .pc-leadmagnet-pocky { width: 110px; height: 110px; margin: 0 auto; }
  .pc-hero-form-card { order: 1; padding: 24px 20px; }

  /* About-mini — stay single column, tighten gap */
  .pc-about-mini-strip { gap: 20px; }

  /* Calendar wrap edge-to-edge */
  .pc-final-pocky { display: none; }

  /* FAQ — allow longer answers */
  .pc-faq-item.open .pc-faq-a { max-height: 800px; }
  .pc-faq-q { padding: 20px 0; min-height: 48px; }

  /* Nav — tighter, smaller CTA so it fits */
  .pc-nav-inner { height: 64px; gap: 12px; }
  .pc-nav-right .pc-btn-sm { padding: 10px 14px; font-size: 11px; }

  /* Footer — single column already, just tighten */
  .pc-footer-inner { padding: 56px 24px 32px; }
}

@media (max-width: 500px) {
  /* Container very tight */
  .pc-container { padding: 0 18px; }

  /* Hero metrics stack vertically — 3-column wrap looks broken at 375px */
  .pc-hero-metrics { flex-direction: column; gap: 18px; align-items: center; }
  .pc-hero-metric { gap: 4px; }
  .pc-hero-metric-num { font-size: 17px; }
  .pc-hero-metric-label { font-size: 9.5px; }

  /* Section heads narrower */
  .pc-display-lg { font-size: clamp(28px, 7.5vw, 36px); }
  .pc-section-head .pc-lede { font-size: 14.5px; }

  /* About-mini founders — vertical stack, drop sep */
  .pc-about-mini-founders { flex-direction: column; gap: 12px; align-items: center; }
  .pc-founder-sep { display: none; }
  .pc-founder { width: 100%; max-width: 280px; }

  /* Lead-magnet form: tighten field grid into single column */
  .pc-form-grid-2 { grid-template-columns: 1fr; }

  /* Pocky in lead-magnet smaller */
  .pc-leadmagnet-pocky { width: 96px; height: 96px; }

  /* Stack slabs: tighter padding, smaller layer-name */
  .pc-stack-slab.v2 { grid-template-columns: 64px 1fr auto; gap: 14px; padding: 18px 20px; }
  .pc-stack-slab.v2 .layer-name { font-size: 19px; }
  .pc-stack-slab.v2 .layer-sub { font-size: 12.5px; }

  /* FinalSection process steps tighter */
  .pc-process-vert { padding-left: 18px; }
  .pc-process-vert .step-body { font-size: 15px; }

  /* Footer brand center on tiny screens */
  .pc-footer-brand img { max-width: 180px; }
}

/* Reduced-motion: cut hero perspective + Pocky animations */
@media (prefers-reduced-motion: reduce) {
  .pc-hero-video-frame { transform: none !important; }
  .pocky-svg { animation: none !important; }
  .calendar-iframe-skeleton { animation: none; }
  .pc-pain-card .rush-rings .rush-ring,
  .pc-pain-card .rush-phone,
  .pc-pain-card .rush-walker,
  .pc-pain-card .rush-loss,
  .pc-pain-card .wa-thread { animation: none !important; opacity: 1 !important; transform: none !important; }
}
