/* ============================================================================
   Koliya — Landing v2 (warm / LIGHT, RTL Hebrew)
   Builds on tokens.css. Owner-locked: warm, human, light, rounded, no dark,
   no gradient orbs, no stock-generic imagery. 60fps: transform/opacity only.
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  background: var(--color-bg);
  color: var(--color-text);
}

img { max-width: 100%; display: block; }
button { font-family: inherit; }
/* Keyboard focus: solid outline (not box-shadow) so it is never clipped by the
   overflow:hidden containers on FAQ items / phone screens; accent-ink = 7.3:1 on
   ivory so the ring is clearly visible for keyboard users. */
:focus-visible { outline: 3px solid var(--color-accent-ink); outline-offset: 2px; box-shadow: none; border-radius: var(--radius-sm); }
/* Buttons sit on light grounds with their own radius — keep the ring hugging them. */
.btn:focus-visible, .talk-card:focus-visible, .faq-item summary:focus-visible { outline-offset: 3px; }

.wrap { max-width: var(--page-max-width); margin: 0 auto; padding: 0 var(--space-6); }
.section { padding: var(--space-24) 0; }
.section-tint { background: var(--color-bg-tint); }
.section-sunken { background: var(--color-bg-sunken); }
@media (max-width: 720px) { .section { padding: var(--space-16) 0; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-weight: var(--fw-semibold); font-size: var(--text-sm);
  color: var(--color-accent-ink); background: var(--color-accent-soft);
  padding: var(--space-1) var(--space-4); border-radius: var(--radius-pill);
  margin-bottom: var(--space-5);
}
.eyebrow.teal { color: var(--color-calm-ink); background: var(--color-calm-soft); }

.section-head { max-width: 640px; margin: 0 0 var(--space-12); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: var(--text-h1); margin-bottom: var(--space-4); }
.section-head p { font-size: var(--text-lg); color: var(--color-text-secondary); margin: 0; }

/* ---- Scroll progress + reveal --------------------------------------------- */
.scroll-progress {
  position: fixed; top: 0; inset-inline: 0; height: 3px; z-index: var(--z-toast);
  background: var(--color-accent); transform: scaleX(0); transform-origin: right center;
  will-change: transform;
}
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.stagger > .r-item { opacity: 0; transform: translateY(18px); transition: opacity .55s var(--ease-out), transform .55s var(--ease-out); }
.stagger.in > .r-item { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .stagger > .r-item { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ============================================================================
   NAV
   ========================================================================== */
.nav {
  position: sticky; top: 0; z-index: var(--z-sticky);
  transition: background var(--dur-base) var(--ease-standard), box-shadow var(--dur-base) var(--ease-standard);
}
.nav.scrolled {
  background: rgba(255, 251, 245, 0.86);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  box-shadow: var(--shadow-sm);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-height); }
.nav-links { display: flex; align-items: center; gap: var(--space-6); }
.nav-links a { color: var(--color-text-secondary); font-weight: var(--fw-medium); font-size: var(--text-sm); transition: color var(--dur-fast); }
.nav-links a:hover { color: var(--color-text); }
.nav-cta { display: flex; align-items: center; gap: var(--space-3); }
@media (max-width: 860px) { .nav-links { display: none; } }
@media (max-width: 560px) { .nav-cta .btn-secondary { display: none; } }

/* Wordmark */
.wordmark { display: inline-flex; align-items: baseline; gap: 2px; font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: 1.5rem; color: var(--color-text); letter-spacing: 0; }
.wordmark .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-accent); display: inline-block; margin-inline-start: 3px; position: relative; top: -2px; }
.wordmark .dot::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--color-accent); animation: pulse-dot 2.6s var(--ease-standard) infinite; }
@keyframes pulse-dot { 0% { transform: scale(1); opacity: .55; } 70%,100% { transform: scale(2.6); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .wordmark .dot::after { animation: none; } }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2); text-decoration: none; white-space: nowrap; }
/* Color-law §2.6: white-on-coral = 3.03:1 → AA-LARGE only. Primary (coral-filled)
   CTA labels must be >=18px semibold so they clear the large-text bar everywhere. */
.btn-primary { background: var(--cta-bg); color: var(--cta-text); box-shadow: var(--cta-shadow); font-size: var(--text-lg); font-weight: var(--fw-semibold); }
.btn-primary:hover { background: var(--cta-bg-hover); color: var(--cta-text); transform: translateY(-2px); box-shadow: 0 16px 40px rgba(239,108,77,.34); }
.btn-secondary { background: var(--color-surface); color: var(--color-text); border: 1px solid var(--color-border-strong); }
.btn-secondary:hover { background: var(--color-surface-2); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-lg { font-size: var(--text-lg); padding: var(--space-4) var(--space-8); }
.btn-ghost { background: transparent; color: var(--color-accent-ink); }
.btn-ghost:hover { background: var(--color-accent-soft); }

/* ============================================================================
   HERO
   ========================================================================== */
.hero { position: relative; padding-top: var(--space-16); padding-bottom: var(--space-20); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 80% at 85% 0%, var(--color-accent-softer) 0%, transparent 55%),
    radial-gradient(90% 70% at 10% 20%, var(--color-calm-soft) 0%, transparent 50%),
    var(--color-bg);
  opacity: .9;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--space-16); align-items: center; }
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; gap: var(--space-12); } }

.hero h1 { font-family: var(--font-display); font-size: var(--text-display); font-weight: var(--fw-bold); line-height: 1.08; margin: 0 0 var(--space-5); }
/* Color-law §2.6: --color-accent is FILL-ONLY. Coral TEXT on ivory = 2.94:1 (fails
   even 3:1). Hero highlight is the largest display text → accent-active (4.46:1, AA-large). */
.hero h1 .hl { color: var(--color-accent-active); }
.hero-lead { font-size: var(--text-xl); color: var(--color-text-secondary); line-height: var(--lh-relaxed); max-width: 30ch; margin: 0 0 var(--space-8); }
.hero-cta { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.hero-trust { display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-5); margin-top: var(--space-8); }
.hero-trust span { display: inline-flex; align-items: center; gap: var(--space-2); font-size: var(--text-sm); color: var(--color-text-secondary); font-weight: var(--fw-medium); }
.hero-trust .tick { color: var(--color-calm); flex: none; }

/* Hero living phone preview (doubles as poster for future hero film) */
.hero-visual { position: relative; display: flex; justify-content: center; }
.phone {
  position: relative; width: 320px; max-width: 86vw; background: var(--color-surface);
  border-radius: 40px; padding: 14px; box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
}
.phone::before { content: ""; position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 92px; height: 6px; border-radius: 999px; background: var(--color-surface-3); }
.phone-screen { background: linear-gradient(180deg, var(--color-bg-tint), var(--color-surface)); border-radius: 28px; padding: var(--space-5) var(--space-4) var(--space-4); min-height: 480px; display: flex; flex-direction: column; gap: var(--space-3); overflow: hidden; }
.phone-topbar { display: flex; align-items: center; gap: var(--space-3); padding: var(--space-1) var(--space-2) var(--space-3); }
.phone-caller { display: flex; flex-direction: column; }
.phone-caller b { font-size: var(--text-base); font-weight: var(--fw-semibold); }
.phone-caller small { font-size: var(--text-xs); color: var(--color-text-muted); }
.live-chip { margin-inline-start: auto; display: inline-flex; align-items: center; gap: 6px; font-size: var(--text-xs); font-weight: var(--fw-semibold); color: var(--color-calm-ink); background: var(--color-calm-soft); padding: 4px 10px; border-radius: 999px; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-calm); position: relative; }
.live-dot::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--color-calm); animation: pulse-dot 2s var(--ease-standard) infinite; }
@media (prefers-reduced-motion: reduce) { .live-dot::after { animation: none; } }

/* Avatar (circular tight face crop + warm ring, dark corners hidden by mask) */
.avatar { position: relative; border-radius: 50%; overflow: hidden; flex: none; background: var(--color-surface-3); box-shadow: 0 0 0 3px var(--color-surface), 0 0 0 6px var(--color-accent-soft); }
.avatar::after { content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: inset 0 -18px 26px -14px rgba(239,108,77,.5), inset 0 14px 22px -14px rgba(255,251,245,.55); }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar-40 { width: 40px; height: 40px; }
.avatar-56 { width: 56px; height: 56px; }
.avatar-72 { width: 72px; height: 72px; box-shadow: 0 0 0 4px var(--color-surface), 0 0 0 8px var(--color-accent-soft); }
.avatar-96 { width: 96px; height: 96px; box-shadow: 0 0 0 4px var(--color-surface), 0 0 0 9px var(--color-accent-soft); }

/* Chat bubbles */
.bubble { max-width: 80%; padding: var(--space-3) var(--space-4); border-radius: var(--bubble-radius); font-size: var(--text-sm); line-height: 1.5; box-shadow: var(--shadow-xs); }
.bubble.caller { background: var(--bubble-in-bg); color: var(--bubble-in-text); align-self: flex-start; border-bottom-right-radius: 6px; }
.bubble.agent { background: var(--bubble-agent-bg); color: var(--bubble-agent-text); align-self: flex-end; border-bottom-left-radius: 6px; }
.bubble .who { display: block; font-size: var(--text-xs); font-weight: var(--fw-semibold); margin-bottom: 2px; color: var(--color-text-muted); }
.bubble.agent .who { color: var(--color-calm-ink); }

.wave { display: inline-flex; align-items: flex-end; gap: 3px; height: 16px; }
.wave i { width: 3px; background: var(--color-calm); border-radius: 3px; height: 40%; animation: wave 1.1s var(--ease-standard) infinite; }
@keyframes wave { 0%,100% { height: 30%; } 50% { height: 100%; } }
@media (prefers-reduced-motion: reduce) { .wave i { animation: none; height: 60%; } }

/* Floating proof tags around hero phone */
.float-tag { position: absolute; display: inline-flex; align-items: center; gap: var(--space-2); background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-pill); padding: var(--space-2) var(--space-4); box-shadow: var(--shadow-lg); font-size: var(--text-sm); font-weight: var(--fw-semibold); }
.float-tag .ico { color: var(--color-calm); flex: none; }
.float-tag.t1 { top: 8%; inset-inline-start: -6%; animation: float 5s ease-in-out infinite; }
.float-tag.t2 { bottom: 14%; inset-inline-end: -8%; animation: float 5.6s ease-in-out infinite .6s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (max-width: 520px) { .float-tag { display: none; } }
@media (prefers-reduced-motion: reduce) { .float-tag { animation: none; } }

/* ============================================================================
   SCROLL-DRIVEN LIVE CALL STORY (centerpiece)
   ========================================================================== */
.story { position: relative; background: var(--color-bg-tint); }
.story-track { position: relative; height: 360vh; }
@media (max-width: 960px) { .story-track { height: auto; } }
.story-sticky { position: sticky; top: var(--header-height); min-height: calc(100vh - var(--header-height)); display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-12); align-items: center; padding: var(--space-10) 0; }
@media (max-width: 960px) { .story-sticky { grid-template-columns: 1fr; gap: var(--space-8); min-height: auto; position: static; padding: var(--space-8) 0; } }

.story-copy h2 { font-size: var(--text-h1); margin-bottom: var(--space-4); }
.story-copy p { font-size: var(--text-lg); color: var(--color-text-secondary); }
.story-steplist { list-style: none; margin: var(--space-8) 0 0; padding: 0; display: flex; flex-direction: column; gap: var(--space-3); }
.story-steplist li { display: flex; align-items: center; gap: var(--space-3); font-size: var(--text-base); color: var(--color-text-muted); transition: color var(--dur-base), transform var(--dur-base); }
.story-steplist li .num { width: 26px; height: 26px; border-radius: 50%; background: var(--color-surface-3); color: var(--color-text-muted); display: grid; place-items: center; font-size: var(--text-xs); font-weight: var(--fw-bold); flex: none; transition: background var(--dur-base), color var(--dur-base); }
.story-steplist li.active { color: var(--color-text); transform: translateX(-4px); }
.story-steplist li.active .num { background: var(--color-accent); color: #fff; }
.story-steplist li.done .num { background: var(--color-calm); color: #fff; }

/* Phone in story: bubbles + tracking panel */
.story-phone { display: flex; justify-content: center; gap: var(--space-5); align-items: stretch; }
.story-phone .phone { width: 300px; }
.story-phone .phone-screen { height: 520px; min-height: 520px; max-height: 520px; }
.story-msgs { display: flex; flex-direction: column; gap: var(--space-3); flex: 1; overflow: hidden; justify-content: flex-end; }

/* progressive reveal for call turns (JS-enhanced). No-JS / no-scrub: all visible. */
.js-scrub .turn { display: none; }
.js-scrub .turn.show { display: flex; flex-direction: column; animation: turnIn .42s var(--ease-out) both; }
@keyframes turnIn { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .js-scrub .turn.show { animation: none; } }
.turn { display: flex; flex-direction: column; }
.turn.sys { align-self: center; }
.turn.sys .syschip { display: inline-flex; align-items: center; gap: var(--space-2); font-size: var(--text-xs); font-weight: var(--fw-semibold); color: var(--color-text-secondary); background: var(--color-surface-2); border: 1px solid var(--color-border); padding: 4px 12px; border-radius: 999px; }
.turn.sys .syschip.match { color: var(--color-calm-ink); background: var(--color-calm-soft); border-color: transparent; }
.typing { align-self: flex-end; display: inline-flex; gap: 4px; padding: 10px 14px; background: var(--bubble-agent-bg); border-radius: var(--bubble-radius); }
.typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--color-calm); animation: typing 1.2s infinite; }
.typing i:nth-child(2){ animation-delay:.15s; } .typing i:nth-child(3){ animation-delay:.3s; }
@keyframes typing { 0%,60%,100% { transform: translateY(0); opacity:.5; } 30% { transform: translateY(-5px); opacity:1; } }
@media (prefers-reduced-motion: reduce) { .typing i { animation: none; } }

/* Tracking panel — fields fill / calendar checks / record saves */
.track-panel { width: 260px; flex: none; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); padding: var(--space-5); display: flex; flex-direction: column; gap: var(--space-4); align-self: center; }
@media (max-width: 1080px) { .track-panel { display: none; } }
.track-panel h4 { font-family: var(--font-display); font-size: var(--text-base); margin: 0; display: flex; align-items: center; gap: var(--space-2); }
.track-panel h4 .live-dot { width: 7px; height: 7px; }
.field { display: flex; flex-direction: column; gap: 3px; }
/* Label is load-bearing small copy → text-secondary (6.23:1), 14px min (design-language §2.6).
   Muted (3.19:1) is only for >=18px or captions; these field labels are neither. */
.field .lbl { font-size: 0.875rem; color: var(--color-text-secondary); font-weight: var(--fw-semibold); }
.field .val { font-size: var(--text-sm); font-weight: var(--fw-semibold); color: var(--color-text-muted); background: var(--color-bg-sunken); border-radius: var(--radius-sm); padding: 7px 10px; min-height: 32px; display: flex; align-items: center; gap: 6px; transition: color var(--dur-base), background var(--dur-base); }
/* Numbers inside RTL lines: render each value by its own content direction so a
   pure phone/time value stays LTR-grouped and never bidi-scrambles (H8). */
.field .val { unicode-bidi: plaintext; }
.ltr-num { unicode-bidi: isolate; font-variant-numeric: tabular-nums; }
.field.filled .val { color: var(--color-text); }
.field.filled .val::before { content: "✓"; color: var(--color-calm); font-weight: var(--fw-bold); }
.field.listening .val { background: var(--color-honey-soft); color: var(--color-honey-ink); }
.field.listening .val::before { content: "•"; color: var(--color-honey); }

.mini-cal { background: var(--color-bg-sunken); border-radius: var(--radius-md); padding: var(--space-3); }
.mini-cal .cal-h { font-size: var(--text-xs); color: var(--color-text-muted); font-weight: var(--fw-semibold); margin-bottom: var(--space-2); }
.slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.slot { font-size: var(--text-xs); font-weight: var(--fw-semibold); text-align: center; padding: 6px 0; border-radius: var(--radius-sm); background: var(--color-surface); color: var(--color-text-muted); border: 1px solid var(--color-border); transition: all var(--dur-base); }
.slot.taken { opacity: .4; text-decoration: line-through; }
.slot.picked { background: var(--color-calm); color: #fff; border-color: transparent; transform: scale(1.06); box-shadow: var(--shadow-calm); }

.record-saved { display: flex; align-items: center; gap: var(--space-3); background: var(--color-calm-soft); border-radius: var(--radius-md); padding: var(--space-3); opacity: 0; transform: translateY(8px); transition: opacity var(--dur-slow), transform var(--dur-slow); }
.record-saved.show { opacity: 1; transform: none; }
.record-saved .ico { width: 34px; height: 34px; border-radius: 50%; background: var(--color-calm); color: #fff; display: grid; place-items: center; flex: none; }
.record-saved b { font-size: var(--text-sm); color: var(--color-calm-ink); }
.record-saved small { display: block; font-size: var(--text-xs); color: var(--color-calm-ink); opacity: .8; }

.story-hint { text-align: center; color: var(--color-text-muted); font-size: var(--text-sm); font-weight: var(--fw-medium); padding-bottom: var(--space-6); display: flex; align-items: center; justify-content: center; gap: var(--space-2); }
.story-hint .m { animation: nudge 1.6s ease-in-out infinite; }
@keyframes nudge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(4px); } }
@media (prefers-reduced-motion: reduce) { .story-hint .m { animation: none; } }

/* ============================================================================
   HOW IT WORKS
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-xl); padding: var(--space-6); position: relative; transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base); }
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step-ico { width: 52px; height: 52px; border-radius: var(--radius-md); display: grid; place-items: center; margin-bottom: var(--space-4); background: var(--color-accent-soft); color: var(--color-accent-ink); }
.step-card:nth-child(2) .step-ico { background: var(--color-calm-soft); color: var(--color-calm-ink); }
.step-card:nth-child(3) .step-ico { background: var(--color-honey-soft); color: var(--color-honey-ink); }
.step-card:nth-child(4) .step-ico { background: var(--color-accent-soft); color: var(--color-accent-ink); }
.step-num { position: absolute; top: var(--space-5); inset-inline-start: var(--space-5); font-family: var(--font-numeric); font-size: var(--text-sm); font-weight: var(--fw-bold); color: var(--color-text-muted); }
.step-card h3 { font-size: var(--text-xl); margin-bottom: var(--space-2); }
.step-card p { font-size: var(--text-sm); color: var(--color-text-secondary); margin: 0; }

/* ============================================================================
   EMPLOYEE / TEMPLATE GALLERY
   ========================================================================== */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
@media (max-width: 860px) { .gallery { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; } }
.emp-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-2xl); padding: var(--space-8) var(--space-6); text-align: center; transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base); }
.emp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.emp-card .avatar { margin: 0 auto var(--space-5); }
.emp-card h3 { font-size: var(--text-xl); margin-bottom: 2px; }
.emp-role { font-size: var(--text-sm); color: var(--color-accent-ink); font-weight: var(--fw-semibold); margin-bottom: var(--space-4); }
.emp-card p { font-size: var(--text-sm); color: var(--color-text-secondary); margin: 0 0 var(--space-5); }
.emp-tags { display: flex; flex-wrap: wrap; gap: var(--space-2); justify-content: center; }
.emp-tags .tag { font-size: var(--text-xs); font-weight: var(--fw-semibold); padding: 4px 10px; border-radius: var(--radius-pill); background: var(--color-bg-sunken); color: var(--color-text-secondary); }

/* ============================================================================
   BOTTOM-LINE / MONEY TRUTH (H3)
   ========================================================================== */
.moneytruth-lead { font-size: var(--text-xl); color: var(--color-text); font-weight: var(--fw-medium); line-height: var(--lh-relaxed); max-width: 52ch; margin-inline: auto; }
.moneytruth-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); margin-top: var(--space-10); }
@media (max-width: 900px) { .moneytruth-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .moneytruth-grid { grid-template-columns: 1fr; } }
.mt-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-xl); padding: var(--space-6); box-shadow: var(--shadow-xs); }
.mt-card h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); color: var(--color-accent-ink); }
.mt-card p { font-size: var(--text-sm); color: var(--color-text-secondary); margin: 0; line-height: var(--lh-relaxed); }
.mt-card .mt-src { display: block; margin-top: var(--space-3); font-size: var(--text-xs); color: var(--color-text-muted); font-weight: var(--fw-semibold); }

/* ============================================================================
   CONSOLE CAPABILITIES AS SECTIONS (H10) — brand graphics, not screenshots
   ========================================================================== */
.cap-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: var(--space-6); align-items: stretch; max-width: 980px; margin-inline: auto; }
@media (max-width: 860px) { .cap-grid { grid-template-columns: 1fr; } }
.cap-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-2xl); box-shadow: var(--shadow-md); padding: var(--space-6); }
.cap-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-4); }
.cap-title { display: inline-flex; align-items: center; gap: var(--space-2); font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: var(--text-base); }
.cap-mini { font-size: var(--text-xs); color: var(--color-text-muted); font-weight: var(--fw-semibold); background: var(--color-bg-sunken); border-radius: var(--radius-pill); padding: 3px 10px; }
.cap-loglist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.cap-loglist li { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: var(--space-3); padding: var(--space-3) 0; border-top: 1px solid var(--color-border); }
.cap-loglist li:first-child { border-top: none; }
.cap-log-main { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.cap-log-main b { font-size: var(--text-sm); font-weight: var(--fw-semibold); }
.cap-reason { font-size: var(--text-xs); color: var(--color-text-secondary); }
.cap-out { font-size: var(--text-xs); font-weight: var(--fw-semibold); padding: 3px 9px; border-radius: var(--radius-pill); white-space: nowrap; }
.cap-out.ok { color: var(--color-calm-ink); background: var(--color-calm-soft); }
.cap-out.fwd { color: var(--color-honey-ink); background: var(--color-honey-soft); }
.cap-time { font-family: var(--font-numeric); font-variant-numeric: tabular-nums; font-size: var(--text-xs); color: var(--color-text-muted); }
.cap-note { display: block; margin-top: var(--space-4); font-size: var(--text-xs); color: var(--color-text-muted); }
.cap-side { display: flex; flex-direction: column; gap: var(--space-6); }
.cap-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.cap-tile { text-align: center; background: var(--color-bg-sunken); border-radius: var(--radius-lg); padding: var(--space-4) var(--space-2); }
.cap-tile b { display: block; font-family: var(--font-numeric); font-variant-numeric: tabular-nums; font-size: 1.6rem; font-weight: var(--fw-bold); color: var(--color-accent-ink); line-height: 1; }
.cap-tile span { font-size: var(--text-xs); color: var(--color-text-secondary); font-weight: var(--fw-semibold); }
.cap-wa { padding: 0; overflow: hidden; }
.cap-wa-head { display: flex; align-items: center; gap: var(--space-2); background: var(--color-calm); color: #fff; padding: var(--space-3) var(--space-5); font-weight: var(--fw-semibold); font-size: var(--text-sm); }
.cap-wa-body { padding: var(--space-4) var(--space-5); background: var(--color-calm-soft); }
.cap-wa-body p { margin: 0 0 var(--space-2); font-size: var(--text-sm); color: var(--color-text); line-height: var(--lh-normal); }
.cap-wa-body p:last-child { margin-bottom: 0; }
.cap-wa-time { font-family: var(--font-numeric); font-size: var(--text-xs); color: var(--color-text-muted); }
.cap-voices { max-width: 640px; margin: var(--space-10) auto 0; text-align: center; }
.cap-voices-q { font-size: var(--text-base); font-weight: var(--fw-semibold); color: var(--color-text); }
.cap-voices-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--space-4); margin-top: var(--space-4); }
.cap-voice { display: inline-flex; align-items: center; gap: var(--space-2); font-size: var(--text-sm); font-weight: var(--fw-semibold); color: var(--color-text); }
.cap-voice small { color: var(--color-accent-ink); font-weight: var(--fw-semibold); }
.cap-langs { margin: var(--space-4) auto 0; max-width: 52ch; font-size: var(--text-sm); color: var(--color-text-secondary); line-height: var(--lh-normal); }

/* ============================================================================
   ROI + PRICING
   ========================================================================== */
.roi { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); margin-bottom: var(--space-16); }
@media (max-width: 860px) { .roi { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }
.roi-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-xl); padding: var(--space-6); }
/* Color-law §2.6: coral/teal figures use the -ink variants (accent-ink 7.33:1,
   calm-ink 7.28:1) — raw accent/calm as text is FILL-ONLY and fails contrast. */
.roi-card .big { font-family: var(--font-numeric); font-size: 2.4rem; font-weight: var(--fw-bold); color: var(--color-accent-ink); line-height: 1; margin-bottom: var(--space-2); }
.roi-card.teal .big { color: var(--color-calm-ink); }
.roi-card p { font-size: var(--text-sm); color: var(--color-text-secondary); margin: 0; }

.pricing { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); align-items: stretch; }
@media (max-width: 1000px) { .pricing { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pricing { grid-template-columns: 1fr; } }
.tier { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-xl); padding: var(--space-6); display: flex; flex-direction: column; transition: transform var(--dur-base), box-shadow var(--dur-base); }
.tier:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tier.flagship { border: 2px solid var(--color-accent); box-shadow: var(--shadow-lg); position: relative; }
.tier.flagship::before { content: "המומלץ"; position: absolute; top: -13px; inset-inline-start: 50%; transform: translateX(50%); background: var(--color-accent); color: #fff; font-size: var(--text-xs); font-weight: var(--fw-bold); padding: 4px 14px; border-radius: var(--radius-pill); box-shadow: var(--shadow-accent); }
.tier h3 { font-size: var(--text-xl); margin-bottom: 2px; }
.tier .who { font-size: var(--text-xs); color: var(--color-text-muted); min-height: 32px; margin-bottom: var(--space-4); }
.tier .price { font-family: var(--font-numeric); font-size: 2rem; font-weight: var(--fw-bold); color: var(--color-text); line-height: 1; }
.tier .price small { font-size: var(--text-sm); font-weight: var(--fw-medium); color: var(--color-text-muted); }
.tier .price.custom { font-size: var(--text-h3); }
.tier .mins { font-size: var(--text-xs); color: var(--color-calm-ink); font-weight: var(--fw-semibold); background: var(--color-calm-soft); border-radius: var(--radius-pill); padding: 4px 10px; align-self: flex-start; margin: var(--space-3) 0 var(--space-5); }
.tier ul { list-style: none; margin: 0 0 var(--space-6); padding: 0; display: flex; flex-direction: column; gap: var(--space-2); flex: 1; }
.tier ul li { font-size: var(--text-sm); color: var(--color-text-secondary); display: flex; gap: var(--space-2); align-items: flex-start; }
.tier ul li .tick { color: var(--color-calm); flex: none; margin-top: 3px; }
.tier .btn { width: 100%; }

.pricing-note { text-align: center; color: var(--color-text-muted); font-size: var(--text-sm); margin-top: var(--space-6); }

/* Guarantee band */
.guarantee { margin-top: var(--space-16); background: var(--color-surface); border: 1px solid var(--color-border-accent); border-radius: var(--radius-2xl); padding: var(--space-10); display: grid; grid-template-columns: auto 1fr; gap: var(--space-8); align-items: center; box-shadow: var(--shadow-md); }
@media (max-width: 720px) { .guarantee { grid-template-columns: 1fr; text-align: center; padding: var(--space-8); } }
.guarantee .seal { width: 92px; height: 92px; border-radius: 50%; background: var(--color-accent-soft); color: var(--color-accent-ink); display: grid; place-items: center; margin-inline: auto; }
.guarantee h3 { font-size: var(--text-h2); margin-bottom: var(--space-2); }
.guarantee p { font-size: var(--text-base); color: var(--color-text-secondary); margin: 0; }

/* ============================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 760px; margin-inline: auto; display: flex; flex-direction: column; gap: var(--space-3); }
.faq-item { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow var(--dur-base); }
.faq-item[open] { box-shadow: var(--shadow-md); }
.faq-item summary { list-style: none; cursor: pointer; padding: var(--space-5) var(--space-6); font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: var(--text-lg); display: flex; align-items: center; gap: var(--space-4); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { margin-inline-start: auto; flex: none; transition: transform var(--dur-base); color: var(--color-accent); }
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item .a { padding: 0 var(--space-6) var(--space-5); color: var(--color-text-secondary); font-size: var(--text-base); line-height: var(--lh-relaxed); }
.faq-item .a p { margin: 0; }

/* ============================================================================
   TRUST (without lies)
   ========================================================================== */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
@media (max-width: 900px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-card { text-align: center; padding: var(--space-6) var(--space-4); }
.trust-card .ico { width: 56px; height: 56px; border-radius: var(--radius-lg); background: var(--color-calm-soft); color: var(--color-calm-ink); display: grid; place-items: center; margin: 0 auto var(--space-4); }
.trust-card h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.trust-card p { font-size: var(--text-sm); color: var(--color-text-secondary); margin: 0; }

/* Honest security line under the trust grid (H11c) */
.trust-security { display: flex; align-items: center; justify-content: center; gap: var(--space-2); max-width: 640px; margin: var(--space-10) auto 0; text-align: center; font-size: var(--text-sm); color: var(--color-text-secondary); font-weight: var(--fw-medium); }
.trust-security svg { color: var(--color-calm); flex: none; }
.footer-console { color: var(--color-text-muted) !important; }

/* ============================================================================
   ACCESSIBILITY WIDGET + STORAGE CONSENT (H11a / H11b)
   ========================================================================== */
.a11y { position: fixed; inset-block-end: var(--space-5); inset-inline-start: var(--space-5); z-index: calc(var(--z-toast) + 1); transition: inset-block-end var(--dur-base) var(--ease-out); }
/* Lift the FAB above the storage-consent bar while it's showing so it stays clickable. */
body.has-cookie .a11y { inset-block-end: calc(var(--space-5) + 92px); }
@media (max-width: 560px) { body.has-cookie .a11y { inset-block-end: calc(var(--space-5) + 150px); } }
/* Quietly-premium FAB: coral glyph on ivory surface, soft ring — not a loud coral blob */
.a11y-fab { width: 50px; height: 50px; border-radius: 50%; border: 1.5px solid var(--color-border-strong); background: var(--color-surface); color: var(--color-accent-ink); box-shadow: var(--shadow-md); cursor: pointer; display: grid; place-items: center; transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-base), border-color var(--dur-fast), background var(--dur-fast); }
.a11y-fab:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); border-color: var(--color-accent); background: var(--color-accent-soft); }
.a11y-panel { position: absolute; inset-block-end: calc(52px + var(--space-3)); inset-inline-start: 0; width: 268px; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); padding: var(--space-5); display: flex; flex-direction: column; gap: var(--space-4); }
.a11y-panel[hidden] { display: none; }
.a11y-panel h4 { font-family: var(--font-display); font-size: var(--text-base); margin: 0; }
.a11y-row { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); font-size: var(--text-sm); font-weight: var(--fw-semibold); }
.a11y-btns { display: flex; gap: var(--space-1); }
.a11y-btns button, .a11y-toggle { font-family: inherit; font-size: var(--text-sm); font-weight: var(--fw-semibold); padding: 6px 10px; border-radius: var(--radius-sm); border: 1.5px solid var(--color-border-strong); background: var(--color-surface); color: var(--color-text); cursor: pointer; transition: background var(--dur-fast), border-color var(--dur-fast); }
.a11y-btns button:hover, .a11y-toggle:hover { border-color: var(--color-accent); background: var(--color-accent-soft); }
.a11y-toggle[aria-pressed="true"] { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }
.a11y-statement { font-size: var(--text-xs); color: var(--color-accent-ink); font-weight: var(--fw-semibold); text-decoration: underline; text-underline-offset: 2px; }

.cookie { position: fixed; inset-block-end: 0; inset-inline: 0; z-index: var(--z-toast); background: var(--color-surface); border-top: 1px solid var(--color-border-strong); box-shadow: 0 -8px 30px rgba(0,0,0,.08); padding: var(--space-4) var(--space-6); display: flex; align-items: center; justify-content: center; gap: var(--space-5); flex-wrap: wrap; }
.cookie[hidden] { display: none; }
.cookie-ico { flex: none; color: var(--color-accent-ink); display: inline-grid; place-items: center; }
.cookie p { font-size: var(--text-sm); color: var(--color-text-secondary); margin: 0; max-width: 64ch; }
.cookie p a { color: var(--color-accent-ink); font-weight: var(--fw-semibold); text-decoration: underline; }
.cookie .btn { flex: none; padding: var(--space-2) var(--space-6); }
@media (max-width: 560px) { .cookie { flex-direction: column; gap: var(--space-3); text-align: center; } }

/* ============================================================================
   ON-PAGE HELP CHAT (self-built, no 3rd-party, RTL). Corner stack: the chat FAB
   sits bottom-INLINE-END (visual left in RTL) — the opposite corner from the a11y
   FAB (inline-start / visual right) — and lifts above the storage-consent bar with
   it. Panel opens upward from that corner.
   ========================================================================== */
.chat { position: fixed; inset-block-end: var(--space-5); inset-inline-end: var(--space-5); z-index: calc(var(--z-toast) + 1); transition: inset-block-end var(--dur-base) var(--ease-out); }
body.has-cookie .chat { inset-block-end: calc(var(--space-5) + 92px); }
@media (max-width: 560px) { body.has-cookie .chat { inset-block-end: calc(var(--space-5) + 150px); } }

.chat-fab { position: relative; width: 56px; height: 56px; border-radius: 50%; border: none; background: var(--color-accent); color: #fff; box-shadow: var(--shadow-lg); cursor: pointer; display: grid; place-items: center; transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-base), background var(--dur-fast); }
.chat-fab:hover { transform: translateY(-2px); box-shadow: var(--shadow-xl); background: var(--color-accent-ink); }
.chat-fab:focus-visible { outline: 3px solid var(--color-accent-soft); outline-offset: 2px; }
.chat .chat-fab-dot { position: absolute; inset-block-start: 4px; inset-inline-end: 4px; width: 10px; height: 10px; border-radius: 50%; background: #2ecc71; border: 2px solid var(--color-accent); }
.chat.open .chat-fab { transform: scale(.92); opacity: .9; }

.chat-panel { position: absolute; inset-block-end: calc(56px + var(--space-3)); inset-inline-end: 0; width: 348px; max-width: calc(100vw - var(--space-8)); max-height: min(72vh, 560px); background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-2xl); box-shadow: var(--shadow-xl); display: flex; flex-direction: column; overflow: hidden; }
.chat-panel[hidden] { display: none; }

.chat-head { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); padding: var(--space-4) var(--space-5); background: linear-gradient(160deg, var(--color-accent-softer), var(--color-calm-soft)); border-bottom: 1px solid var(--color-border); }
.chat-head-id { display: flex; align-items: center; gap: var(--space-3); }
.chat-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--color-accent); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--text-lg); }
.chat-head strong { font-family: var(--font-display); font-size: var(--text-base); display: block; color: var(--color-text); }
.chat-status { font-size: var(--text-xs); color: var(--color-text-secondary); }
.chat-x { border: none; background: transparent; color: var(--color-text-secondary); cursor: pointer; padding: 6px; border-radius: var(--radius-sm); display: grid; place-items: center; transition: background var(--dur-fast), color var(--dur-fast); }
.chat-x:hover { background: rgba(0,0,0,.05); color: var(--color-text); }

.chat-log { flex: 1 1 auto; overflow-y: auto; padding: var(--space-4) var(--space-4) var(--space-2); display: flex; flex-direction: column; gap: var(--space-3); }
.chat-msg { max-width: 88%; padding: var(--space-3) var(--space-4); border-radius: var(--radius-xl); font-size: var(--text-sm); line-height: 1.55; }
.chat-msg p { margin: 0; }
.chat-msg.bot { align-self: flex-start; background: var(--color-bg-sunken); color: var(--color-text); border-end-start-radius: var(--radius-sm); }
.chat-msg.user { align-self: flex-end; background: var(--color-accent-soft); color: var(--color-accent-ink); border-end-end-radius: var(--radius-sm); font-weight: var(--fw-medium); }
.chat-cta { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-3); }
.chat-cta-btn { font-size: var(--text-sm); font-weight: var(--fw-semibold); padding: 8px 14px; border-radius: var(--radius-lg, 12px); background: var(--color-accent); color: #fff; text-decoration: none; transition: background var(--dur-fast); }
.chat-cta-btn:hover { background: var(--color-accent-ink); }
.chat-cta-btn.ghost { background: transparent; color: var(--color-accent-ink); border: 1.5px solid var(--color-border-strong); }
.chat-cta-btn.ghost:hover { background: var(--color-accent-soft); border-color: var(--color-accent); }

.chat-dots { display: inline-flex; gap: 4px; }
.chat-dots i { width: 6px; height: 6px; border-radius: 50%; background: var(--color-text-muted); display: inline-block; animation: chatDot 1s infinite ease-in-out; }
.chat-dots i:nth-child(2) { animation-delay: .15s; }
.chat-dots i:nth-child(3) { animation-delay: .3s; }
@keyframes chatDot { 0%, 60%, 100% { transform: translateY(0); opacity: .4; } 30% { transform: translateY(-4px); opacity: 1; } }

.chat-chips { display: flex; flex-wrap: wrap; gap: var(--space-2); padding: 0 var(--space-4) var(--space-3); }
.chat-chip { font-family: inherit; font-size: var(--text-xs); font-weight: var(--fw-semibold); padding: 6px 12px; border-radius: 999px; border: 1.5px solid var(--color-border-strong); background: var(--color-surface); color: var(--color-accent-ink); cursor: pointer; transition: background var(--dur-fast), border-color var(--dur-fast); }
.chat-chip:hover { background: var(--color-accent-soft); border-color: var(--color-accent); }

.chat-input { display: flex; align-items: center; gap: var(--space-2); padding: var(--space-3) var(--space-4) var(--space-4); border-top: 1px solid var(--color-border); }
.chat-input input { flex: 1 1 auto; font-family: inherit; font-size: var(--text-sm); padding: 10px 14px; border-radius: 999px; border: 1.5px solid var(--color-border-strong); background: var(--color-surface); color: var(--color-text); }
.chat-input input:focus-visible { outline: none; border-color: var(--color-accent); }
.chat-send { flex: none; width: 40px; height: 40px; border-radius: 50%; border: none; background: var(--color-accent); color: #fff; cursor: pointer; display: grid; place-items: center; transition: background var(--dur-fast), transform var(--dur-fast); }
.chat-send:hover { background: var(--color-accent-ink); transform: scale(1.05); }

@media (max-width: 560px) {
  .chat-panel { position: fixed; inset-block-end: calc(56px + var(--space-4)); inset-inline: var(--space-3); width: auto; max-width: none; max-height: 68vh; }
  body.has-cookie .chat-panel { inset-block-end: calc(56px + var(--space-4) + 150px); }
}
@media (prefers-reduced-motion: reduce) {
  .chat-fab, .chat-send { transition: none; }
  .chat-dots i { animation: none; }
}

/* High-contrast mode: darken the softer text tokens + underline links (honest, no layout break) */
html.a11y-contrast { --color-text-secondary: #3a2a1e; --color-text-muted: #46342a; }
html.a11y-contrast body { color: #150f0a; }
html.a11y-contrast a:not(.btn) { text-decoration: underline; text-underline-offset: 2px; }

/* ============================================================================
   FINAL CTA + FOOTER
   ========================================================================== */
.finalcta { text-align: center; }
.finalcta-inner { background: linear-gradient(160deg, var(--color-accent-softer), var(--color-calm-soft)); border-radius: var(--radius-2xl); padding: var(--space-20) var(--space-8); position: relative; overflow: hidden; }
.finalcta h2 { font-size: var(--text-h1); margin-bottom: var(--space-4); }
.finalcta p { font-size: var(--text-lg); color: var(--color-text-secondary); max-width: 46ch; margin: 0 auto var(--space-8); }
.finalcta .hero-cta { justify-content: center; }

.footer { background: var(--color-surface); border-top: 1px solid var(--color-border); padding: var(--space-16) 0 var(--space-10); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--space-10); margin-bottom: var(--space-12); }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: var(--space-8); } }
.footer p { font-size: var(--text-sm); color: var(--color-text-secondary); max-width: 34ch; margin: var(--space-4) 0 0; }
.footer-parent { font-size: var(--text-sm); color: var(--color-text-muted); margin-top: var(--space-2) !important; letter-spacing: .01em; }
.footer-parent strong { color: var(--color-text-secondary); font-weight: var(--fw-bold); }
.footer h5 { font-family: var(--font-display); font-size: var(--text-sm); font-weight: var(--fw-semibold); margin: 0 0 var(--space-4); color: var(--color-text); }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--space-3); }
.footer ul a { color: var(--color-text-secondary); font-size: var(--text-sm); }
.footer ul a:hover { color: var(--color-accent-ink); }
.footer-legal { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-2) var(--space-4); padding-top: var(--space-6); border-top: 1px solid var(--color-border); font-size: var(--text-sm); }
.footer-legal a { color: var(--color-text-secondary); font-weight: var(--fw-medium); }
.footer-legal a:hover { color: var(--color-accent-ink); }
.footer-legal .sep { color: var(--color-border-strong); }
.footer-bottom { margin-top: var(--space-5); padding-top: var(--space-5); border-top: 1px solid var(--color-border); display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--space-3); font-size: var(--text-xs); color: var(--color-text-muted); }

/* setup-fee line inside tier cards (native-ear + offer-economics pass 2026-07-07) */
.tier .setup-note{margin:.4rem 0 0;font-size:.82rem;color:var(--color-text-muted,#9A8B80)}
.tier .setup-note small{opacity:.85}

/* ============================================================================
   LANDING v3 — pain-dwell, self-recognition, not-for, dental-first, one-price.
   Same warm/light language; motion breathes not bounces; icon weight 2 everywhere.
   ========================================================================== */

/* ---- M1: PAIN-DWELL (the earned low) + self-recognition --------------------- */
.paindwell { background: var(--color-bg-sunken); padding: var(--space-20) 0; }
.paindwell-inner { max-width: 680px; margin-inline: auto; text-align: center; }
.paindwell-time { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: var(--text-lg); color: var(--color-text-secondary); margin: 0 0 var(--space-3); }
.paindwell h2 { font-size: var(--text-h1); margin-bottom: var(--space-5); }
.paindwell-lead { font-size: var(--text-xl); color: var(--color-text-secondary); line-height: var(--lh-relaxed); max-width: 48ch; margin: 0 auto var(--space-4); }

.recognition { margin-top: var(--space-10); text-align: right; max-width: 560px; margin-inline: auto; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-xl); padding: var(--space-8); box-shadow: var(--shadow-md); }
.recognition-head { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: var(--text-lg); margin: 0 0 var(--space-4); }
.recognition ul { list-style: none; margin: 0 0 var(--space-5); padding: 0; display: flex; flex-direction: column; gap: var(--space-3); }
.recognition li { position: relative; padding-inline-start: var(--space-5); font-size: var(--text-base); color: var(--color-text-secondary); line-height: var(--lh-normal); }
.recognition li::before { content: ""; position: absolute; inset-inline-start: 0; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--color-accent); }
.recognition-refrain { margin: 0; font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: var(--text-lg); color: var(--color-text); line-height: var(--lh-snug); }

/* ---- M2: dental-first employee feature + demoted verticals ------------------ */
.emp-feature { display: grid; grid-template-columns: auto 1fr; gap: var(--space-8); align-items: center; max-width: 760px; margin-inline: auto; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-2xl); padding: var(--space-10); box-shadow: var(--shadow-md); }
@media (max-width: 640px) { .emp-feature { grid-template-columns: 1fr; text-align: center; padding: var(--space-8); gap: var(--space-5); } }
.emp-feature .avatar { margin: 0; }
@media (max-width: 640px) { .emp-feature .avatar { margin-inline: auto; } }
.emp-feature-body h3 { font-size: var(--text-h3); margin-bottom: 2px; }
.emp-feature-body .emp-role { margin-bottom: var(--space-4); }
.emp-feature-body p { font-size: var(--text-base); color: var(--color-text-secondary); margin: 0 0 var(--space-5); line-height: var(--lh-relaxed); }
.emp-more { text-align: center; color: var(--color-text-secondary); font-size: var(--text-base); margin: var(--space-8) auto 0; max-width: 48ch; }

/* dental-first talk picker: primary card prominent, others demoted */
.talk-picker-more { font-size: var(--text-sm); font-weight: var(--fw-semibold); color: var(--color-text-secondary); margin: var(--space-4) 0 var(--space-1); padding-inline-start: var(--space-2); }
.talk-card.secondary { padding: var(--space-3) var(--space-4); }
.talk-card.secondary .talk-card-body b { font-size: var(--text-base); }

/* ---- M4: not-for / boundaries (Safety gate) -------------------------------- */
.notfor h2 em { font-style: normal; color: var(--color-accent-ink); }
.notfor-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); max-width: 980px; margin-inline: auto; }
@media (max-width: 860px) { .notfor-list { grid-template-columns: 1fr; max-width: 540px; } }
.notfor-item { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-xl); padding: var(--space-6); box-shadow: var(--shadow-xs); }
.notfor-item h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.notfor-item p { font-size: var(--text-sm); color: var(--color-text-secondary); margin: 0; line-height: var(--lh-relaxed); }
.notfor-reframe { max-width: 680px; margin: var(--space-10) auto 0; text-align: center; font-size: var(--text-lg); color: var(--color-text); line-height: var(--lh-relaxed); font-weight: var(--fw-medium); }

/* ---- M3: one price, one decision + guarantee wrap + expandable fine print --- */
.offer { max-width: 720px; margin-inline: auto; background: var(--color-surface); border: 1px solid var(--color-border-accent); border-radius: var(--radius-2xl); box-shadow: var(--shadow-lg); padding: var(--space-10); text-align: center; }
@media (max-width: 640px) { .offer { padding: var(--space-8) var(--space-5); } }
.offer-price { display: grid; grid-template-columns: 1fr auto 1fr; gap: var(--space-6); align-items: center; }
@media (max-width: 640px) { .offer-price { grid-template-columns: 1fr; gap: var(--space-5); } }
.offer-line { display: flex; flex-direction: column; gap: var(--space-1); }
.offer-label { font-size: var(--text-sm); font-weight: var(--fw-semibold); color: var(--color-text-secondary); }
.offer-amt { font-family: var(--font-numeric); font-size: 2.4rem; font-weight: var(--fw-bold); color: var(--color-text); line-height: 1.05; }
.offer-amt small { font-size: var(--text-base); font-weight: var(--fw-medium); color: var(--color-text-muted); }
.offer-sub { font-size: var(--text-xs); color: var(--color-text-secondary); line-height: var(--lh-normal); }
.offer-then { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--color-accent-soft); color: var(--color-accent-ink); margin-inline: auto; flex: none; }
.offer-guarantee { margin-top: var(--space-8); padding-top: var(--space-8); border-top: 1px solid var(--color-border); display: grid; grid-template-columns: auto 1fr; gap: var(--space-6); align-items: center; text-align: right; }
@media (max-width: 640px) { .offer-guarantee { grid-template-columns: 1fr; text-align: center; } }
.offer-guarantee .seal { width: 84px; height: 84px; border-radius: 50%; background: var(--color-accent-soft); color: var(--color-accent-ink); display: grid; place-items: center; margin-inline: auto; }
.offer-guarantee h3 { font-size: var(--text-h3); margin-bottom: var(--space-2); }
.offer-guarantee p { font-size: var(--text-base); color: var(--color-text-secondary); margin: 0; line-height: var(--lh-relaxed); }
/* H6: price-varies affordance + minutes line + pay-then-build order */
.price-varies { font-size: var(--text-sm); color: var(--color-text-secondary); margin: var(--space-3) 0 0; }
.price-varies a { color: var(--color-accent-ink); font-weight: var(--fw-semibold); text-decoration: underline; text-underline-offset: 2px; }
.offer-mins { margin: var(--space-6) 0 0; font-size: var(--text-sm); color: var(--color-text-secondary); line-height: var(--lh-normal); }
.offer-steps { list-style: none; margin: var(--space-5) 0 0; padding: var(--space-5) 0 0; border-top: 1px solid var(--color-border); display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3); }
@media (max-width: 640px) { .offer-steps { grid-template-columns: 1fr 1fr; } }
.offer-steps li { display: flex; align-items: center; gap: var(--space-2); font-size: var(--text-sm); font-weight: var(--fw-semibold); color: var(--color-text); text-align: start; }
.offer-steps .s-n { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--color-accent-soft); color: var(--color-accent-ink); display: grid; place-items: center; font-size: var(--text-xs); font-weight: var(--fw-bold); }
.offer-cta { margin-top: var(--space-8); width: 100%; }

.offer-more { max-width: 720px; margin: var(--space-6) auto 0; }
.offer-more summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: var(--space-3); justify-content: center; font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: var(--text-base); color: var(--color-text-secondary); padding: var(--space-4); border-radius: var(--radius-lg); transition: color var(--dur-fast); }
.offer-more summary::-webkit-details-marker { display: none; }
.offer-more summary:hover { color: var(--color-text); }
.offer-more summary .chev { flex: none; transition: transform var(--dur-base); color: var(--color-accent); }
.offer-more[open] summary .chev { transform: rotate(180deg); }
.offer-more-body { padding: var(--space-2) var(--space-6) var(--space-6); text-align: right; }
.offer-more-body p { font-size: var(--text-sm); color: var(--color-text-secondary); line-height: var(--lh-relaxed); margin: 0 0 var(--space-4); }
.offer-more-body p:last-child { margin-bottom: 0; }
.offer-more-body strong { color: var(--color-text); font-weight: var(--fw-semibold); }
@media (prefers-reduced-motion: reduce) { .offer-more summary .chev { transition: none; } }

/* ============================================================================
   NICHE-ADAPTIVE LAYER — dialable hero, self-select picker, monogram avatar
   ========================================================================== */

/* Anti-FOUC cloak (buyer-judge fix): a deep-linked hero stays hidden until niche.js
   applies the correct copy, so the generic default never flashes. Only the text column
   cloaks (the phone can swap unnoticed); the un-niched default never gets .niche-pending. */
html.niche-pending .hero-copy { visibility: hidden; }

/* Hero dial: the demo number as a coral tel: link (one tap on mobile) */
.hero-dial { gap: var(--space-3); }
.hero-dial .dial-num { font-family: var(--font-numeric); font-variant-numeric: tabular-nums; letter-spacing: .02em; }
.hero-dial-note { font-size: var(--text-sm); color: var(--color-text-secondary); margin: var(--space-3) 0 0; }

/* Niche self-select bar (elevated: the "tell us your business" moment, hero-adjacent) */
.niche-bar { background: var(--color-accent-softer); border-block: 1px solid var(--color-border-accent); padding: var(--space-6) 0; }
.niche-bar-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: var(--space-3) var(--space-6); }
.niche-bar-head { display: flex; flex-direction: column; gap: 2px; text-align: center; }
.niche-bar-q { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--text-xl); color: var(--color-text); }
.niche-bar-sub { font-size: var(--text-sm); color: var(--color-text-secondary); }
.niche-chips { display: flex; flex-wrap: wrap; gap: var(--space-2); justify-content: center; }
.niche-chip {
  font-family: var(--font-body); font-weight: var(--fw-semibold); font-size: var(--text-base);
  color: var(--color-text); background: var(--color-surface);
  border: 1.5px solid var(--color-border-strong); border-radius: var(--radius-pill);
  padding: var(--space-2) var(--space-5); cursor: pointer;
  transition: color var(--dur-fast), background var(--dur-fast), border-color var(--dur-fast), transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast);
}
.niche-chip:hover { color: var(--color-text); border-color: var(--color-accent); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.niche-chip.active { color: #fff; background: var(--color-accent); border-color: var(--color-accent); box-shadow: var(--shadow-accent); }
@media (max-width: 560px) { .niche-bar-inner { flex-direction: column; } .niche-bar-q { font-size: var(--text-lg); } }
@media (prefers-reduced-motion: reduce) { .niche-chip { transition: none; } }

/* Monogram avatar (niche persona without a portrait yet, e.g. law/עדי) — same warm ring */
.avatar-mono {
  width: 100%; height: 100%; display: grid; place-items: center;
  background: var(--color-accent-soft); color: var(--color-accent-ink);
  font-family: var(--font-display); font-weight: var(--fw-semibold);
}
.avatar-40 .avatar-mono { font-size: var(--text-lg); }
.avatar-56 .avatar-mono { font-size: var(--text-xl); }
.avatar-72 .avatar-mono { font-size: var(--text-h3); }
.avatar-96 .avatar-mono { font-size: var(--text-h2); }

/* ---- Demo scenario chips (live-talk) --------------------------------------- */
.talk-scenarios-wrap { width: 100%; max-width: 380px; margin-top: var(--space-2); }
.talk-scenarios-q { font-size: var(--text-sm); font-weight: var(--fw-semibold); color: var(--color-text-secondary); margin: 0 0 var(--space-2); text-align: center; }
.talk-scenarios { display: flex; flex-wrap: wrap; gap: var(--space-2); justify-content: center; }
.talk-chip-scenario {
  font-family: var(--font-body); font-weight: var(--fw-semibold); font-size: var(--text-sm);
  color: var(--color-text); background: var(--color-surface);
  border: 1.5px solid var(--color-border-strong); border-radius: var(--radius-pill);
  padding: var(--space-2) var(--space-4); cursor: pointer;
  transition: color var(--dur-fast), background var(--dur-fast), border-color var(--dur-fast), transform var(--dur-fast) var(--ease-out);
}
.talk-chip-scenario:hover { border-color: var(--color-accent); transform: translateY(-1px); }
.talk-chip-scenario.selected { color: #fff; background: var(--color-accent); border-color: var(--color-accent); box-shadow: var(--shadow-accent); }
.talk-chip-scenario.open { color: var(--color-text-secondary); background: transparent; border-style: dashed; }
.talk-chip-scenario.open.selected { color: #fff; background: var(--color-calm); border-color: var(--color-calm); border-style: solid; box-shadow: var(--shadow-calm); }
.talk-scenario-hint { font-size: var(--text-sm); line-height: var(--lh-normal); color: var(--color-honey-ink); background: var(--color-honey-soft); border-radius: var(--radius-md); padding: var(--space-2) var(--space-3); margin: var(--space-3) 0 0; min-height: 0; }
.talk-scenario-hint:empty { display: none; }
@media (prefers-reduced-motion: reduce) { .talk-chip-scenario { transition: none; } }

/* ---- Live mini-tracker (fills from field events during a call) ------------- */
.talk-tracker { width: 100%; max-width: 380px; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); box-shadow: var(--shadow-xs); padding: var(--space-4); margin-top: var(--space-1); }
/* H9: relocated into the picker column — fill its width, sit under the picker note */
.talk-picker .talk-tracker { max-width: none; margin-top: var(--space-4); }
.talk-tracker-head { display: flex; align-items: center; gap: var(--space-2); font-family: var(--font-display); font-size: var(--text-sm); font-weight: var(--fw-semibold); color: var(--color-text-secondary); margin-bottom: var(--space-3); }
.talk-tracker.live .talk-tracker-head { color: var(--color-calm-ink); }
.talk-tracker-fields { display: flex; flex-wrap: wrap; gap: var(--space-2); min-height: 28px; }
.tf-chip { display: inline-flex; align-items: center; gap: 6px; font-size: var(--text-xs); font-weight: var(--fw-semibold); padding: 5px 10px; border-radius: var(--radius-pill); background: var(--color-bg-sunken); color: var(--color-text-secondary); transition: background var(--dur-base), color var(--dur-base); }
.tf-chip b { font-weight: var(--fw-bold); color: var(--color-text-muted); }
.tf-chip.preview { opacity: .55; }
.tf-chip.listening { background: var(--color-honey-soft); color: var(--color-honey-ink); }
.tf-chip.listening b { color: var(--color-honey-ink); }
.tf-chip.captured { background: var(--color-calm-soft); color: var(--color-calm-ink); animation: tfPop var(--dur-base) var(--ease-out); }
.tf-chip.captured b { color: var(--color-calm-ink); }
.tf-chip.captured::before { content: "✓"; font-weight: var(--fw-bold); color: var(--color-calm); }
.tf-chip .tf-dots { opacity: .8; }
@keyframes tfPop { from { transform: scale(.9); opacity: .4; } to { transform: none; opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .tf-chip { animation: none !important; transition: none; } }

/* ---- Numbers block (stats-bank authority layer, static-ready) -------------- */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); max-width: 960px; margin-inline: auto; }
@media (max-width: 780px) { .stats-grid { grid-template-columns: 1fr; max-width: 460px; } }
.stat-card { text-align: center; padding: var(--space-8) var(--space-5); background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-xl); box-shadow: var(--shadow-xs); }
/* Color-law §2.6: coral/teal as TEXT uses the -ink variants (accent-ink 7.33 / calm-ink 7.28). */
.stat-num { font-family: var(--font-numeric); font-variant-numeric: tabular-nums; font-size: 2.6rem; font-weight: var(--fw-bold); color: var(--color-accent-ink); line-height: 1; margin-bottom: var(--space-3); }
.stat-card:nth-child(2) .stat-num { color: var(--color-calm-ink); }
.stat-line { font-size: var(--text-base); color: var(--color-text); line-height: var(--lh-normal); margin: 0 0 var(--space-4); }
.stat-src { font-size: var(--text-xs); color: var(--color-text-secondary); font-weight: var(--fw-semibold); }

/* ============================================================================
   LIVE TALK — talk to a template employee, live in the browser
   Same warm/light system; the phone frame reuses .phone / .bubble tokens.
   ========================================================================== */
.talk-stage { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--space-10); align-items: start; }
@media (max-width: 900px) { .talk-stage { grid-template-columns: 1fr; gap: var(--space-8); max-width: 460px; margin-inline: auto; } }

/* --- template picker --- */
.talk-picker { display: flex; flex-direction: column; gap: var(--space-3); }
.talk-card { display: flex; align-items: center; gap: var(--space-4); text-align: start; width: 100%; background: var(--color-surface); border: 1.5px solid var(--color-border); border-radius: var(--radius-xl); padding: var(--space-4) var(--space-5); cursor: pointer; transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-base), border-color var(--dur-base); }
.talk-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.talk-card .avatar { flex: none; }
.talk-card-body { display: flex; flex-direction: column; gap: 1px; flex: 1; min-width: 0; }
.talk-card-body b { font-size: var(--text-lg); font-weight: var(--fw-semibold); color: var(--color-text); }
.talk-card-role { font-size: var(--text-sm); font-weight: var(--fw-semibold); color: var(--color-accent-ink); }
.talk-card-voice { font-size: var(--text-xs); color: var(--color-text-secondary); }
.talk-card-pick { flex: none; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; border: 1.5px solid var(--color-border-strong); color: transparent; transition: background var(--dur-base), border-color var(--dur-base), color var(--dur-base); }
.talk-card.selected { border-color: var(--color-accent); background: var(--color-accent-softer); box-shadow: var(--shadow-sm); }
.talk-card.selected .talk-card-pick { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }
.talk-picker-note { font-size: var(--text-xs); color: var(--color-text-muted); margin: var(--space-2) 0 0; padding-inline-start: var(--space-2); }

/* --- live phone --- */
.talk-live { display: flex; flex-direction: column; align-items: center; gap: var(--space-5); }
.talk-phone { width: 100%; max-width: 380px; }
.talk-phone .phone-screen { min-height: 0; height: 440px; }
.talk-timer { margin-inline-start: auto; font-family: var(--font-numeric); font-variant-numeric: tabular-nums; font-size: var(--text-xs); font-weight: var(--fw-bold); color: var(--color-text-secondary); background: var(--color-bg-sunken); border-radius: var(--radius-pill); padding: 3px 9px; }
.talk-timer.low { color: var(--color-error-ink); background: var(--color-error-soft); }
.talk-chip { display: inline-flex; align-items: center; gap: 6px; font-size: var(--text-xs); font-weight: var(--fw-semibold); padding: 4px 10px; border-radius: var(--radius-pill); white-space: nowrap; }
.talk-chip.idle, .talk-chip.connecting, .talk-chip.ended { color: var(--color-text-secondary); background: var(--color-bg-sunken); }
.talk-chip.live { color: var(--color-calm-ink); background: var(--color-calm-soft); }
.talk-chip.demo { color: var(--color-honey-ink); background: var(--color-honey-soft); }
.talk-chip.speaking { box-shadow: 0 0 0 3px rgba(47,169,140,.18); }
.talk-dot-static { width: 8px; height: 8px; border-radius: 50%; background: var(--color-honey); }
.talk-status-line { min-height: 18px; font-size: var(--text-xs); font-weight: var(--fw-semibold); color: var(--color-calm-ink); padding-inline: var(--space-2); }

.talk-body { position: relative; flex: 1; min-height: 0; display: flex; }
.talk-msgs { flex: 1; overflow-y: auto; display: flex; flex-direction: column; gap: var(--space-2); padding: var(--space-2); scroll-behavior: smooth; }
.talk-bubble { max-width: 82%; padding: var(--space-2) var(--space-3); border-radius: var(--bubble-radius); font-size: var(--text-sm); line-height: 1.5; box-shadow: var(--shadow-xs); animation: turnIn var(--dur-base) var(--ease-out) both; }
.talk-bubble .who { display: block; font-size: 11px; font-weight: var(--fw-semibold); margin-bottom: 1px; color: var(--color-text-muted); }
.talk-bubble.agent { background: var(--bubble-agent-bg); color: var(--bubble-agent-text); align-self: flex-end; border-bottom-left-radius: 6px; }
.talk-bubble.agent .who { color: var(--color-calm-ink); }
.talk-bubble.caller { background: var(--bubble-in-bg); color: var(--bubble-in-text); align-self: flex-start; border-bottom-right-radius: 6px; }
@media (prefers-reduced-motion: reduce) { .talk-bubble { animation: none; } }
.talk-sys { align-self: center; display: inline-flex; align-items: center; gap: 6px; font-size: var(--text-xs); font-weight: var(--fw-semibold); color: var(--color-text-secondary); background: var(--color-bg-sunken); border-radius: var(--radius-pill); padding: 4px 12px; }
.talk-sys.match { color: var(--color-calm-ink); background: var(--color-calm-soft); }
.talk-sys svg { flex: none; }
.talk-note { align-self: stretch; font-size: var(--text-xs); line-height: 1.5; color: var(--color-honey-ink); background: var(--color-honey-soft); border-radius: var(--radius-md); padding: var(--space-2) var(--space-3); margin-bottom: var(--space-1); }

/* --- overlay state screens (idle / explainer / connecting / wind-down) --- */
.talk-overlay { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: var(--space-5); background: linear-gradient(180deg, rgba(255,251,245,.86), rgba(255,251,245,.97)); backdrop-filter: blur(3px); border-radius: 20px; }
.talk-overlay[hidden] { display: none; }
.talk-overlay h3 { font-size: var(--text-lg); margin: 0 0 var(--space-2); }
.talk-overlay p { font-size: var(--text-sm); color: var(--color-text-secondary); margin: 0 0 var(--space-5); max-width: 30ch; }
.talk-overlay .btn { width: 100%; }
.talk-idle-ring { width: 92px; height: 92px; border-radius: 50%; margin: 0 auto var(--space-4); overflow: hidden; box-shadow: 0 0 0 4px var(--color-surface), 0 0 0 8px var(--color-accent-soft); }
.talk-idle-ring img { width: 100%; height: 100%; object-fit: cover; }
.talk-mic-ico, .talk-windown-ico { width: 62px; height: 62px; border-radius: 50%; margin: 0 auto var(--space-4); display: grid; place-items: center; background: var(--color-accent-soft); color: var(--color-accent-ink); }
.talk-explainer-btns { display: flex; flex-direction: column; gap: var(--space-2); width: 100%; }
.talk-connecting .talk-spinner { width: 44px; height: 44px; border-radius: 50%; margin: 0 auto var(--space-4); border: 3px solid var(--color-accent-soft); border-top-color: var(--color-accent); animation: talk-spin .8s linear infinite; }
@keyframes talk-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .talk-connecting .talk-spinner { animation: none; } }
.talk-windown-ico { background: var(--color-calm-soft); color: var(--color-calm-ink); }
.talk-windown .btn + .btn { margin-top: var(--space-2); }

/* --- action buttons under the phone --- */
.talk-actions { display: flex; flex-direction: column; gap: var(--space-3); width: 100%; max-width: 380px; }
.talk-start { display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2); width: 100%; }
.talk-watch, .talk-end { width: 100%; }
