/* Winci Pitch — public/pitch/pitch-page.css */

:root {
  --navy:   #080f1e;
  --navy2:  #0d1830;
  --navy3:  #111827;
  --green:  #00d084;
  --green2: #00b870;
  --muted:  #6b7a8d;
  --light:  #f7f9f8;
  --white:  #ffffff;
  --text:   #0f172a;
  --border: rgba(255,255,255,.07);
  --font-d: 'Fraunces', Georgia, serif;
  --font-b: 'Plus Jakarta Sans', sans-serif;
}

.pitch-root {
  width: 100vw; height: 100vh; overflow: hidden;
  font-family: var(--font-b);
  background: var(--navy);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}

@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,208,132,.5); }
  70%      { box-shadow: 0 0 0 8px rgba(0,208,132,0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── DECK ── */
.deck {
  width: 100vw; height: 100vh;
  position: relative; overflow: hidden;
}

/* ── SLIDES ── */
.slide {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  padding: 72px 80px 96px;
  opacity: 0; pointer-events: none;
  transition: opacity .45s ease, transform .45s ease;
  transform: translateX(40px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.slide.active { opacity: 1; pointer-events: all; transform: translateX(0); }
.slide.exit   { opacity: 0; transform: translateX(-40px); transition: opacity .3s ease, transform .3s ease; }

/* ── NAV BAR ── */
.nav-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px;
  background: rgba(8,15,30,.7); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.pitch-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-d); font-weight: 900;
  font-size: 18px; color: var(--white); letter-spacing: -.4px;
}
.logo-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
.logo-tld { color: var(--green); }
.slide-counter { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.3); letter-spacing: 1px; }
.slide-counter span { color: var(--green); }

/* ── CONTROLS ── */
.controls {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 100;
  display: flex; align-items: center; gap: 16px;
  background: rgba(8,15,30,.7); backdrop-filter: blur(12px);
  padding: 8px 16px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,.08);
}
.ctrl-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.06); backdrop-filter: blur(8px);
  color: var(--white); font-size: 18px; cursor: pointer; transition: all .2s;
  display: flex; align-items: center; justify-content: center;
}
.ctrl-btn:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.4); }
.ctrl-btn:disabled { opacity: .25; cursor: default; }
.dots { display: flex; gap: 7px; align-items: center; }
.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.2); cursor: pointer; transition: all .25s;
}
.dot.active { background: var(--green); width: 20px; border-radius: 3px; }

/* ── SLIDE BACKGROUNDS ── */
.slide-hero {
  background:
    radial-gradient(ellipse 80% 60% at 80% -10%, rgba(0,208,132,.14) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 110%, rgba(29,78,216,.18) 0%, transparent 55%),
    var(--navy);
}
.slide-dark  { background: var(--navy2); }
.slide-pain  { background: radial-gradient(ellipse 70% 50% at 20% 50%, rgba(239,68,68,.06) 0%, transparent 60%), var(--navy); }
.slide-green { background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,208,132,.12) 0%, transparent 60%), var(--navy); }

/* ── SHARED ── */
.eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--green); margin-bottom: 16px;
}
.slide-title {
  font-family: var(--font-d); font-weight: 900;
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1.08; letter-spacing: -1.5px;
  color: var(--white); margin-bottom: 20px; text-align: center;
}
.slide-title em { font-style: italic; color: var(--green); }
.slide-sub { font-size: clamp(15px,1.8vw,18px); color: rgba(255,255,255,.5); line-height: 1.7; text-align: center; max-width: 600px; }

/* Stagger */
.slide.active .s1 { animation: fadeUp .5s .05s ease both; }
.slide.active .s2 { animation: fadeUp .5s .12s ease both; }
.slide.active .s3 { animation: fadeUp .5s .19s ease both; }
.slide.active .s4 { animation: fadeUp .5s .26s ease both; }
.slide.active .s5 { animation: fadeUp .5s .33s ease both; }
.slide.active .s6 { animation: fadeUp .5s .40s ease both; }

/* ── SLIDE 1 HERO ── */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(0,208,132,.35); background: rgba(0,208,132,.08);
  color: var(--green); font-size: 11px; font-weight: 700;
  letter-spacing: .3px; padding: 6px 16px; border-radius: 100px; margin-bottom: 32px;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
.hero-features { display: flex; gap: 32px; margin: 24px 0 28px; flex-wrap: wrap; justify-content: center; }
.hero-feat { display: flex; align-items: center; gap: 8px; font-size: clamp(14px,1.6vw,17px); font-weight: 500; color: rgba(255,255,255,.75); }
.hf-star { color: var(--green); font-size: 13px; }

/* Ticker */
.testi-ticker {
  width: 100%; max-width: 760px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.07); border-radius: 12px;
  background: rgba(255,255,255,.03); position: relative;
}
.testi-ticker::before, .testi-ticker::after { content: ''; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2; }
.testi-ticker::before { left: 0; background: linear-gradient(to right, rgba(8,15,30,.95), transparent); }
.testi-ticker::after  { right: 0; background: linear-gradient(to left, rgba(8,15,30,.95), transparent); }
.testi-ticker-inner { display: flex; animation: tickerScroll 30s linear infinite; width: max-content; }
.testi-ticker-inner:hover { animation-play-state: paused; }
.testi-tick {
  flex-shrink: 0; padding: 14px 28px; font-size: 13px;
  font-style: italic; color: rgba(255,255,255,.5);
  white-space: nowrap; border-right: 1px solid rgba(255,255,255,.06);
}
.testi-tick::before { content: '"'; color: var(--green); font-style: normal; font-family: var(--font-d); font-size: 16px; margin-right: 4px; }

/* ── SLIDE 2 PAIN ── */
.pain-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; width: 100%; max-width: 920px; }
.pain-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: 14px; padding: 22px 20px; transition: all .25s; }
.pain-card:hover { border-color: rgba(239,68,68,.35); background: rgba(239,68,68,.05); transform: translateY(-2px); }
.pain-ico { font-size: 28px; margin-bottom: 12px; }
.pain-title { font-family: var(--font-d); font-weight: 700; font-size: 15px; color: var(--white); margin-bottom: 8px; }
.pain-desc { font-size: 12px; color: rgba(255,255,255,.4); line-height: 1.65; }

/* ── SLIDE 3 FLOW ── */
.flow-row { display: flex; align-items: center; gap: 0; width: 100%; max-width: 900px; }
.flow-step { flex: 1; background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 14px; padding: 24px 20px; text-align: center; transition: all .3s; }
.flow-step:hover { border-color: rgba(0,208,132,.3); background: rgba(0,208,132,.05); }
.flow-num { width: 28px; height: 28px; border-radius: 50%; background: var(--green); color: var(--navy); font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.flow-ico { font-size: 28px; margin-bottom: 10px; }
.flow-title { font-family: var(--font-d); font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.flow-desc { font-size: 11px; color: rgba(255,255,255,.4); line-height: 1.6; }
.flow-arrow { color: rgba(0,208,132,.4); font-size: 20px; padding: 0 8px; flex-shrink: 0; }

/* ── SLIDE 4 MODULES ── */
.modules-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; width: 100%; max-width: 920px; }
.module-card { background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 16px; padding: 26px 22px; display: flex; flex-direction: column; gap: 10px; transition: all .25s; }
.module-card:hover { transform: translateY(-3px); border-color: rgba(0,208,132,.25); }
.module-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 10px; border-radius: 6px; width: fit-content; }
.tag-core    { background: rgba(0,208,132,.12); color: var(--green); }
.tag-agenda  { background: rgba(59,130,246,.12); color: #60a5fa; }
.tag-portale { background: rgba(168,85,247,.12); color: #c084fc; }
.module-title { font-family: var(--font-d); font-size: 17px; font-weight: 900; color: var(--white); letter-spacing: -.3px; }
.module-desc { font-size: 12px; color: rgba(255,255,255,.4); line-height: 1.65; flex: 1; }
.module-why { background: rgba(0,208,132,.06); border: 1px solid rgba(0,208,132,.14); border-radius: 8px; padding: 10px 12px; font-size: 11px; color: rgba(200,220,210,.7); line-height: 1.5; }
.module-why strong { display: block; font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--green); margin-bottom: 4px; }

/* ── SLIDE 5 SOCIAL PROOF ── */
.stats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; width: 100%; max-width: 780px; margin-bottom: 32px; }
.stat-card { background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 16px; padding: 28px 24px; text-align: center; }
.stat-num { font-family: var(--font-d); font-size: clamp(36px,5vw,52px); font-weight: 900; color: var(--green); letter-spacing: -2px; line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.5; }
.testi-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; width: 100%; max-width: 960px; }
.testi-card-sm { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: 12px; padding: 16px; display: flex; flex-direction: column; gap: 10px; transition: border-color .2s, transform .2s; }
.testi-card-sm:hover { border-color: rgba(0,208,132,.25); transform: translateY(-2px); }
.testi-card-q { font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.7; font-style: italic; flex: 1; }
.testi-card-auth { display: flex; align-items: center; gap: 9px; margin-top: auto; }
.tav-sm { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(135deg, var(--navy), #1e3a8a); color: var(--white); font-weight: 700; font-size: 11px; display: flex; align-items: center; justify-content: center; }
.tcn { font-size: 11px; font-weight: 700; color: var(--white); }
.tcr { font-size: 10px; color: var(--muted); }
.testi-stars { color: #f59e0b; }

/* ── SLIDE 6 PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; width: 100%; max-width: 960px; }
.plan { border-radius: 16px; padding: 22px 18px; display: flex; flex-direction: column; gap: 8px; border: 1px solid var(--border); background: rgba(255,255,255,.04); transition: transform .25s; }
.plan:hover { transform: translateY(-3px); }
.plan.highlight { background: rgba(0,208,132,.07); border-color: rgba(0,208,132,.3); }
.plan-tier { font-size: 9px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.35); }
.plan-price-big { font-family: var(--font-d); font-size: 38px; font-weight: 900; color: var(--white); letter-spacing: -1.5px; line-height: 1; }
.plan-price-big span { font-family: var(--font-b); font-size: 13px; font-weight: 400; color: rgba(255,255,255,.35); }
.plan-price-big.green { color: var(--green); }
.plan-desc-sm { font-size: 11px; color: rgba(255,255,255,.35); line-height: 1.5; margin-bottom: 4px; }
.plan-feats-sm { list-style: none; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.plan-feats-sm li { font-size: 11px; color: rgba(255,255,255,.55); display: flex; gap: 6px; align-items: flex-start; line-height: 1.45; }
.plan-feats-sm li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.plan-most { font-size: 10px; font-weight: 700; color: var(--green); letter-spacing: .5px; margin-bottom: 2px; }
.activation-card { display: flex; align-items: center; gap: 32px; width: 100%; max-width: 960px; margin-top: 16px; background: rgba(0,208,132,.06); border: 1px solid rgba(0,208,132,.22); border-radius: 14px; padding: 18px 24px; }
.activation-left { flex-shrink: 0; }
.activation-badge { display: inline-block; font-size: 9px; font-weight: 800; letter-spacing: 1.8px; text-transform: uppercase; color: var(--green); background: rgba(0,208,132,.12); padding: 3px 10px; border-radius: 100px; margin-bottom: 8px; }
.activation-price { font-family: var(--font-d); font-size: 32px; font-weight: 900; color: var(--white); letter-spacing: -1px; line-height: 1; white-space: nowrap; }
.activation-price span { font-family: var(--font-b); font-size: 13px; font-weight: 400; color: rgba(255,255,255,.4); }
.activation-desc { font-size: 11px; color: rgba(255,255,255,.3); margin-top: 5px; }
.activation-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; flex: 1; }
.activation-feat { display: flex; align-items: flex-start; gap: 8px; font-size: 12px; color: rgba(255,255,255,.6); line-height: 1.45; }
.activation-feat span { color: var(--green); flex-shrink: 0; font-size: 11px; margin-top: 1px; }

/* ── SLIDE 5b DEMO ── */
.demo-tabs { display: flex; gap: 6px; margin-bottom: 14px; }
.demo-tab { padding: 8px 18px; border-radius: 8px; border: 1.5px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04); color: rgba(255,255,255,.45); font-size: 12px; font-weight: 600; font-family: var(--font-b); cursor: pointer; transition: all .2s; }
.demo-tab:hover { border-color: rgba(255,255,255,.25); color: rgba(255,255,255,.75); }
.demo-tab.active { background: rgba(0,208,132,.12); border-color: rgba(0,208,132,.35); color: var(--green); }
.demo-panel { display: none; width: 100%; }
.demo-panel.active { display: block; }

/* ── MOCKUP ── */
.mk-shell { display: flex; background: var(--navy); border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.4); border: 1px solid rgba(255,255,255,.07); width: 100%; max-width: 900px; height: 380px; }
.mk-sidebar { width: 160px; flex-shrink: 0; background: rgba(0,0,0,.3); border-right: 1px solid rgba(255,255,255,.05); padding: 18px 12px; display: flex; flex-direction: column; gap: 3px; }
.mk-logo-sm { font-family: var(--font-d); font-weight: 900; font-size: 14px; color: var(--white); letter-spacing: -.3px; margin-bottom: 16px; padding: 0 6px; }
.mk-logo-sm span { color: var(--green); }
.mk-nav-item { display: flex; align-items: center; gap: 7px; padding: 7px 8px; border-radius: 7px; font-size: 11px; font-weight: 500; color: rgba(255,255,255,.3); }
.mk-nav-item.ac { background: rgba(255,255,255,.08); color: var(--white); }
.mk-main-area { flex: 1; overflow: hidden; display: flex; flex-direction: column; }
.mk-topbar-sm { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,.05); flex-shrink: 0; }
.mk-topbar-title { font-size: 13px; font-weight: 600; color: var(--white); }
.mk-topbar-sub { font-size: 11px; color: rgba(255,255,255,.3); }
.mk-btn-g { padding: 5px 12px; border-radius: 6px; border: none; background: var(--green); color: var(--navy); font-size: 10px; font-weight: 700; font-family: var(--font-b); cursor: default; }
.mk-content { flex: 1; padding: 16px 18px; overflow: hidden; }
.ai-chip-sm { display: inline-flex; align-items: center; gap: 5px; background: rgba(0,208,132,.08); border: 1px solid rgba(0,208,132,.18); border-radius: 6px; padding: 4px 8px; font-size: 10px; color: var(--green); font-weight: 600; }
.offer-builder { display: flex; gap: 14px; height: 100%; }
.ob-left { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.ob-right { width: 200px; flex-shrink: 0; }
.ob-field { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: 8px; padding: 10px 12px; }
.ob-field-label { font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 5px; }
.ob-field-val { font-size: 13px; color: var(--white); font-weight: 500; }
.ob-rows { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.ob-row { display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06); border-radius: 7px; padding: 8px 12px; gap: 10px; }
.ob-row-name { font-size: 11px; color: rgba(255,255,255,.7); flex: 1; }
.ob-row-price { font-size: 12px; font-weight: 700; color: var(--white); }
.ob-total { background: rgba(0,208,132,.08); border: 1px solid rgba(0,208,132,.2); border-radius: 8px; padding: 12px 14px; display: flex; justify-content: space-between; align-items: center; }
.ob-total-lbl { font-size: 11px; color: rgba(255,255,255,.5); }
.ob-total-val { font-family: var(--font-d); font-size: 22px; font-weight: 900; color: var(--green); }
.ob-preview { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07); border-radius: 8px; padding: 12px; height: 100%; display: flex; flex-direction: column; gap: 8px; }
.ob-preview-tag { font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--green); }
.ob-preview-title { font-family: var(--font-d); font-size: 13px; font-weight: 700; color: var(--white); }
.ob-preview-line { height: 2px; border-radius: 1px; background: rgba(255,255,255,.06); }
.ob-preview-line.g { background: rgba(0,208,132,.3); width: 60%; }

.tracking-layout { display: flex; gap: 14px; height: 100%; }
.track-left { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.track-right { width: 220px; flex-shrink: 0; display: flex; flex-direction: column; gap: 8px; }
.track-offer { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: 8px; padding: 10px 12px; display: flex; align-items: center; justify-content: space-between; }
.track-offer.hot { border-color: rgba(0,208,132,.3); background: rgba(0,208,132,.05); }
.track-offer-info { display: flex; flex-direction: column; gap: 2px; }
.track-offer-name { font-size: 12px; font-weight: 600; color: var(--white); }
.track-offer-meta { font-size: 10px; color: rgba(255,255,255,.3); }
.track-badge { font-size: 9px; font-weight: 700; padding: 3px 8px; border-radius: 100px; }
.track-badge.live { background: rgba(0,208,132,.15); color: var(--green); }
.track-badge.open { background: rgba(245,158,11,.12); color: #f59e0b; }
.track-badge.sign { background: rgba(99,102,241,.15); color: #818cf8; }
.track-badge.wait { background: rgba(255,255,255,.08); color: rgba(255,255,255,.4); }
.track-stat { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06); border-radius: 8px; padding: 10px 12px; flex: 1; }
.track-stat-val { font-family: var(--font-d); font-size: 22px; font-weight: 900; color: var(--white); margin-bottom: 2px; }
.track-stat-val.gv { color: var(--green); }
.track-stat-lbl { font-size: 10px; color: rgba(255,255,255,.3); }

.notif-live { background: rgba(0,208,132,.08); border: 1px solid rgba(0,208,132,.22); border-radius: 8px; padding: 10px 12px; display: flex; gap: 8px; align-items: flex-start; }
.notif-dot-live { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0; margin-top: 2px; animation: pulse 1.5s infinite; }
.notif-live-title { font-size: 11px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.notif-live-sub { font-size: 10px; color: rgba(255,255,255,.35); line-height: 1.4; }
.activity-feed { display: flex; flex-direction: column; gap: 5px; flex: 1; }
.act-item { display: flex; align-items: center; gap: 8px; padding: 6px 10px; border-radius: 6px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.05); }
.act-ico { width: 22px; height: 22px; border-radius: 5px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 11px; }
.act-ico.g { background: rgba(0,208,132,.12); }
.act-ico.b { background: rgba(59,130,246,.12); }
.act-txt { flex: 1; font-size: 10px; color: rgba(255,255,255,.55); line-height: 1.3; }
.act-time { font-size: 9px; color: rgba(255,255,255,.2); white-space: nowrap; }

.sign-layout { display: flex; gap: 14px; height: 100%; }
.sign-doc { flex: 1; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06); border-radius: 8px; padding: 14px 16px; display: flex; flex-direction: column; gap: 8px; overflow: hidden; }
.sign-doc-header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.06); }
.sign-doc-title { font-family: var(--font-d); font-size: 14px; font-weight: 700; color: var(--white); }
.sign-doc-date { font-size: 10px; color: rgba(255,255,255,.3); }
.sign-doc-line { height: 2px; border-radius: 1px; background: rgba(255,255,255,.06); margin: 2px 0; }
.sign-doc-line.w80 { width: 80%; } .sign-doc-line.w60 { width: 60%; } .sign-doc-line.w90 { width: 90%; } .sign-doc-line.w70 { width: 70%; }
.sign-doc-section { padding: 8px 0; border-top: 1px solid rgba(255,255,255,.05); }
.sign-doc-section-label { font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--green); margin-bottom: 6px; }
.sign-doc-amount { font-family: var(--font-d); font-size: 24px; font-weight: 900; color: var(--white); margin-bottom: 4px; }
.sign-doc-clause { font-size: 10px; color: rgba(255,255,255,.25); line-height: 1.5; }
.sign-right { width: 210px; flex-shrink: 0; display: flex; flex-direction: column; gap: 10px; }
.sign-box { background: rgba(0,208,132,.07); border: 1.5px solid rgba(0,208,132,.25); border-radius: 10px; padding: 14px; }
.sign-box-label { font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--green); margin-bottom: 8px; }
.sign-signature { height: 44px; border-bottom: 1px solid rgba(0,208,132,.3); display: flex; align-items: flex-end; padding-bottom: 4px; font-family: 'Georgia', serif; font-size: 22px; font-style: italic; color: rgba(255,255,255,.8); letter-spacing: -1px; }
.sign-cursor { animation: blink 1s infinite; color: var(--green); font-style: normal; }
.sign-meta { font-size: 9px; color: rgba(255,255,255,.2); margin-top: 6px; line-height: 1.4; }
.sign-status-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: 8px; padding: 10px 12px; display: flex; flex-direction: column; gap: 6px; }
.sign-step { display: flex; align-items: center; gap: 8px; font-size: 11px; color: rgba(255,255,255,.5); }
.sign-step.done { color: var(--white); }
.sign-step-ico { width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 9px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.3); }
.sign-step.done .sign-step-ico { background: rgba(0,208,132,.15); color: var(--green); }
.sign-contract-gen { background: var(--navy2); border: 1px solid rgba(255,255,255,.07); border-radius: 8px; padding: 10px 12px; display: flex; gap: 8px; align-items: center; }
.sign-contract-ico { font-size: 20px; }
.sign-contract-title { font-size: 11px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.sign-contract-sub { font-size: 9px; color: var(--green); }

/* ── SLIDE 7 CTA ── */
.cta-big { display: inline-flex; align-items: center; gap: 10px; padding: 16px 36px; border-radius: 14px; background: var(--green); color: var(--navy); font-size: 16px; font-weight: 800; font-family: var(--font-b); cursor: pointer; border: none; margin-top: 32px; transition: all .25s; letter-spacing: -.2px; position: relative; overflow: hidden; }
.cta-big::after { content: ''; position: absolute; inset: 0; background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.35) 50%, transparent 60%); background-size: 200% 100%; background-position: -200% center; }
.cta-big:hover::after { background-position: 200% center; transition: background-position .5s ease; }
.cta-big:hover { background: var(--green2); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,208,132,.4); }
.cta-url { font-size: 14px; color: rgba(255,255,255,.35); margin-top: 14px; letter-spacing: .5px; }
.cta-url span { color: var(--green); }
.guarantees { display: flex; gap: 24px; margin-top: 32px; flex-wrap: wrap; justify-content: center; }
.guarantee { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.45); }
.guarantee::before { content: '✓'; color: var(--green); font-weight: 700; }

/* ── DOWNLOAD ── */
.dl-wrap { position: relative; }
.dl-btn { display: flex; align-items: center; gap: 7px; padding: 7px 14px; border-radius: 8px; border: 1.5px solid rgba(0,208,132,.35); background: rgba(0,208,132,.1); color: var(--green); font-size: 12px; font-weight: 700; font-family: var(--font-b); cursor: pointer; transition: all .2s; }
.dl-btn:hover { background: rgba(0,208,132,.18); border-color: rgba(0,208,132,.55); }
.dl-menu { position: absolute; top: calc(100% + 8px); right: 0; background: #0d1830; border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 6px; display: none; flex-direction: column; gap: 2px; min-width: 230px; box-shadow: 0 12px 40px rgba(0,0,0,.5); z-index: 200; }
.dl-menu.open { display: flex; animation: fadeUp .2s ease; }
.dl-opt { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 8px; border: none; background: none; cursor: pointer; text-align: left; width: 100%; transition: background .15s; font-family: var(--font-b); }
.dl-opt:hover { background: rgba(255,255,255,.06); }
.dl-opt-ico { font-size: 20px; flex-shrink: 0; }
.dl-opt-title { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.dl-opt-sub   { font-size: 11px; color: rgba(255,255,255,.35); }

/* ── KEY HINT ── */
.key-hint { position: fixed; bottom: 28px; right: 32px; font-size: 11px; color: rgba(255,255,255,.2); display: flex; gap: 8px; align-items: center; }
.key { padding: 3px 7px; border-radius: 5px; border: 1px solid rgba(255,255,255,.15); font-size: 11px; color: rgba(255,255,255,.3); background: rgba(255,255,255,.05); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .slide { padding: 56px 48px 96px; }
  .pain-grid { grid-template-columns: repeat(3,1fr); gap: 12px; }
  .flow-arrow { font-size: 16px; padding: 0 4px; }
  .modules-grid { gap: 12px; }
  .pricing-grid { gap: 10px; }
  .testi-grid { gap: 10px; }
  .activation-card { gap: 20px; padding: 16px 20px; }
  .mk-shell { height: 320px; }
}
@media (max-width: 860px) {
  .slide { padding: 52px 32px 100px; }
  .hero-features { gap: 18px; }
  .testi-ticker { max-width: 100%; }
  .pain-grid { grid-template-columns: repeat(2,1fr); max-width: 600px; }
  .flow-row { flex-wrap: wrap; justify-content: center; gap: 10px; }
  .flow-arrow { display: none; }
  .flow-step { min-width: 140px; flex: 0 0 calc(33% - 8px); }
  .modules-grid { grid-template-columns: 1fr 1fr; max-width: 600px; }
  .stats-grid { max-width: 560px; }
  .testi-grid { grid-template-columns: repeat(2,1fr); max-width: 600px; }
  .pricing-grid { grid-template-columns: repeat(2,1fr); max-width: 600px; }
  .activation-feats { grid-template-columns: 1fr; gap: 6px; }
  .activation-card { flex-direction: column; gap: 14px; align-items: flex-start; max-width: 600px; }
  .mk-shell { height: auto; flex-direction: column; }
  .mk-sidebar { width: 100%; flex-direction: row; flex-wrap: wrap; padding: 10px 14px; gap: 6px; align-items: center; border-right: none; border-bottom: 1px solid rgba(255,255,255,.05); }
  .mk-logo-sm { margin-bottom: 0; margin-right: 8px; }
  .mk-main-area { min-height: 260px; }
  .demo-tabs { flex-wrap: wrap; gap: 6px; }
}
@media (max-width: 600px) {
  .slide { padding: 56px 20px 100px; justify-content: flex-start; padding-top: 80px; overflow-y: auto; }
  .controls { bottom: 12px; padding: 6px 12px; gap: 12px; }
  .slide-title { font-size: clamp(22px,6vw,30px) !important; letter-spacing: -.8px; }
  .eyebrow { margin-bottom: 10px; }
  .hero-badge { font-size: 10px; padding: 5px 12px; }
  .hero-features { flex-direction: column; gap: 10px; align-items: flex-start; }
  .hero-feat { font-size: 15px; }
  .testi-tick { font-size: 11px; padding: 12px 20px; }
  .pain-grid { grid-template-columns: 1fr; max-width: 100%; gap: 8px; }
  .pain-card { padding: 16px; display: flex; gap: 12px; align-items: flex-start; }
  .pain-ico { font-size: 22px; margin-bottom: 0; flex-shrink: 0; }
  .flow-step { flex: 0 0 calc(50% - 6px); padding: 16px 12px; }
  .flow-title { font-size: 12px; } .flow-desc { font-size: 10px; }
  .modules-grid { grid-template-columns: 1fr; max-width: 100%; }
  .module-why { display: none; }
  .stats-grid { grid-template-columns: repeat(3,1fr); gap: 8px; max-width: 100%; }
  .stat-num { font-size: clamp(24px,7vw,36px); } .stat-label { font-size: 10px; }
  .testi-grid { grid-template-columns: 1fr; max-width: 100%; }
  .testi-card-sm { padding: 14px; } .testi-card-q { font-size: 11px; }
  .pricing-grid { grid-template-columns: 1fr 1fr; gap: 8px; max-width: 100%; }
  .plan { padding: 14px 12px; } .plan-price-big { font-size: 26px; }
  .plan-feats-sm li { font-size: 10px; } .plan-desc-sm { font-size: 10px; }
  .activation-price { font-size: 24px; } .activation-feat { font-size: 11px; }
  .mk-sidebar { display: none; }
  .mk-topbar-sm { flex-direction: column; align-items: flex-start; gap: 6px; }
  .ob-right { display: none; } .track-right { display: none; }
  .sign-right { width: 160px; } .sign-box { padding: 10px; } .sign-doc-amount { font-size: 18px; }
  .demo-tab { font-size: 11px; padding: 7px 12px; }
  .nav-bar { padding: 12px 16px; }
  .dl-menu { right: 0; min-width: 200px; }
  .ctrl-btn { width: 36px; height: 36px; font-size: 16px; }
  .key-hint { display: none; }
}
@media (max-width: 400px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .flow-step { flex: 0 0 100%; }
  .stats-grid { grid-template-columns: 1fr; max-width: 260px; }
}

@media print {
  /* Encourage browsers to print colors/backgrounds in PDFs */
  * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  body {
    background: var(--navy) !important;
  }

  .pitch-root { overflow: visible !important; height: auto !important; }
  .pitch-root { background: var(--navy) !important; }

  .slide-hero { background:
    radial-gradient(ellipse 80% 60% at 80% -10%, rgba(0,208,132,.14) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 110%, rgba(29,78,216,.18) 0%, transparent 55%),
    var(--navy) !important;
  }
  .slide-dark { background: var(--navy2) !important; }
  .slide-pain { background:
    radial-gradient(ellipse 70% 50% at 20% 50%, rgba(239,68,68,.06) 0%, transparent 60%),
    var(--navy) !important;
  }
  .slide-green { background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,208,132,.12) 0%, transparent 60%),
    var(--navy) !important;
  }
  .nav-bar, .controls, .key-hint { display: none !important; }
  .deck { position: static !important; height: auto !important; overflow: visible !important; }
  .slide { position: relative !important; opacity: 1 !important; pointer-events: all !important; transform: none !important; page-break-after: always; break-after: page; display: flex !important; width: 100vw; height: 100vh; padding: 60px 80px; }
}

/* Fix: ensure pitch CSS variables exist even if the original selector is invalid. */
:root {
  --navy: #080f1e;
  --navy2: #0d1830;
  --navy3: #111827;
  --green: #00d084;
  --green2: #00b870;
  --muted: #6b7a8d;
  --light: #f7f9f8;
  --white: #ffffff;
  --text: #0f172a;
  --border: rgba(255,255,255,.07);
  --font-d: 'Fraunces', Georgia, serif;
  --font-b: 'Plus Jakarta Sans', sans-serif;
}

