/* Staffo pitch pages — shared styles */

/* language switcher — shared across pages */
.lang-switch {
  display: flex; align-items: center; gap: 2px;
  padding: 4px; background: var(--paper-pure);
  border: 1px solid var(--line); border-radius: 9999px;
  font-size: 12px; font-weight: 600;
}
.lang-switch button {
  font-family: inherit; cursor: pointer; border: 0;
  padding: 6px 10px; border-radius: 9999px;
  background: transparent;
  color: var(--muted); letter-spacing: 0.02em;
  transition: all 120ms;
}
.lang-switch button.active {
  background: var(--ink); color: var(--paper-pure);
}

:root {
  --teal-100: #DFFCEB;
  --teal-300: #9FE6D1;
  --teal-500: #56CBB3;
  --teal-700: #2F9E86;
  --teal-900: #105361;
  --navy-500: #455A75;
  --navy-700: #364762;
  --navy-900: #2C3E50;
  --ink: #1A1917;
  --ink-soft: #3E3B35;
  --paper: #F7F5F0;
  --paper-pure: #FBFAF6;
  --line: #E8E3D9;
  --muted: #6B6862;
  --shadow-sm: 0 1px 2px rgba(26,25,23,0.06);
  --shadow-md: 0 8px 24px rgba(26,25,23,0.08);
  --shadow-lg: 0 24px 64px rgba(69,90,117,0.18);
  --shadow-teal: 0 12px 32px rgba(86,203,179,0.35);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'General Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: var(--paper); color: var(--ink);
  font-size: 16px; line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; }
img { max-width: 100%; display: block; }

/* HEADER */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 245, 240, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px; height: 72px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 22px; letter-spacing: -0.01em; color: var(--ink);
}
.brand-mark { width: 34px; height: 34px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 15px; font-weight: 500; color: var(--ink-soft);
  transition: color 120ms;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active { position: relative; }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -22px; left: 0; right: 0;
  height: 2px; background: var(--teal-500);
}
.nav-right { display: flex; align-items: center; gap: 16px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; letter-spacing: -0.005em; border-radius: 10px;
  transition: transform 120ms, box-shadow 120ms, background 120ms;
}
.btn-primary {
  background: var(--teal-500); color: white;
  padding: 12px 20px; font-size: 15px;
  box-shadow: var(--shadow-teal);
}
.btn-primary:hover { background: var(--teal-700); transform: translateY(-1px); }
.btn-ghost {
  border: 1.5px solid var(--ink); color: var(--ink);
  padding: 12px 20px; font-size: 15px; background: transparent;
}
.btn-ghost:hover { background: var(--ink); color: var(--paper-pure); }
.btn-lg { padding: 16px 28px; font-size: 16px; border-radius: 12px; }

/* PITCH HERO */
.pitch-hero {
  max-width: 1280px; margin: 0 auto;
  padding: 80px 32px 100px;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 64px; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; border: 1px solid var(--line);
  padding: 6px 14px 6px 10px; border-radius: 9999px;
  font-size: 13px; font-weight: 500; color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}
.eyebrow-icon { width: 16px; height: 16px; color: var(--teal-700); }
.pitch-title {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700; letter-spacing: -0.025em;
  line-height: 1.02; margin-top: 24px;
  text-wrap: balance;
}
.pitch-title .accent {
  color: var(--teal-700); position: relative; white-space: nowrap;
}
.pitch-title .accent::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 4px;
  height: 8px; background: var(--teal-100); z-index: -1; border-radius: 4px;
}
.pitch-sub {
  font-size: 19px; line-height: 1.55; margin-top: 28px;
  color: var(--ink-soft); max-width: 540px; text-wrap: pretty;
}
.pitch-ctas {
  display: flex; align-items: center; gap: 12px; margin-top: 40px;
  flex-wrap: wrap;
}
.app-badges { display: flex; gap: 10px; align-items: center; }
.app-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: white;
  padding: 10px 18px; border-radius: 12px;
  transition: transform 120ms, background 120ms;
}
.app-badge:hover { transform: translateY(-1px); background: var(--navy-900); }
.app-badge-icon { width: 22px; height: 22px; }
.app-badge-text { display: flex; flex-direction: column; line-height: 1.1; white-space: nowrap; }
.app-badge-text small { font-size: 10px; font-weight: 400; opacity: 0.75; white-space: nowrap; }
.app-badge-text span { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; white-space: nowrap; }

/* VISUAL PANEL */
.pitch-visual {
  position: relative; aspect-ratio: 1 / 1;
  border-radius: 32px; overflow: hidden;
  padding: 48px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.pitch-visual.biz {
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: white;
}
.pitch-visual.wrk {
  background: linear-gradient(160deg, var(--teal-500) 0%, var(--teal-700) 100%);
  color: white;
}
.pitch-visual::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 80% at center, black 40%, transparent 85%);
}
.visual-stat {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; gap: 4px;
}
.visual-stat-num {
  font-size: clamp(64px, 8vw, 104px);
  font-weight: 700; letter-spacing: -0.04em; line-height: 0.95;
}
.visual-stat-lbl {
  font-size: 16px; opacity: 0.8; font-weight: 500; max-width: 22ch;
}

/* floating items inside panel */
.visual-card {
  position: absolute; z-index: 3;
  background: white; color: var(--ink);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  font-size: 13px;
}
.visual-card.top-right { top: 40px; right: 40px; }
.visual-card.mid-left { top: 45%; left: 32px; }
.vc-dot {
  width: 10px; height: 10px; border-radius: 9999px; background: var(--teal-500);
  box-shadow: 0 0 0 4px rgba(86,203,179,0.25);
  flex-shrink: 0;
}
.vc-avatar {
  width: 36px; height: 36px; border-radius: 9999px;
  background: linear-gradient(135deg, var(--teal-300), var(--teal-500));
  display: grid; place-items: center;
  color: white; font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.vc-body .t { font-weight: 600; color: var(--ink); line-height: 1.2; }
.vc-body .s { color: var(--muted); font-size: 11px; margin-top: 2px; }

/* BENEFITS */
section.benefits {
  padding: 120px 32px;
  background: var(--paper-pure);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-kicker {
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--teal-700);
  display: flex; align-items: center; gap: 8px;
}
.section-kicker::before {
  content: ''; width: 28px; height: 1.5px; background: var(--teal-500);
}
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; margin-bottom: 64px;
}
h2.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700; letter-spacing: -0.025em;
  line-height: 1.08; margin-top: 16px; max-width: 18ch;
  text-wrap: balance;
}
.lede {
  font-size: 17px; color: var(--ink-soft); max-width: 420px;
  text-wrap: pretty;
}
.benefit-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.benefit {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 28px;
  transition: transform 200ms, box-shadow 200ms, border-color 200ms;
}
.benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.benefit-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--teal-100); color: var(--teal-900);
  display: grid; place-items: center; margin-bottom: 28px;
}
.benefit-icon svg { width: 24px; height: 24px; }
.benefit-title {
  font-size: 20px; font-weight: 600; letter-spacing: -0.015em;
}
.benefit-body {
  font-size: 15px; color: var(--ink-soft); margin-top: 10px; line-height: 1.5;
}

/* PRICING BAR */
.pricing {
  max-width: 1280px; margin: 0 auto;
  padding: 80px 32px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.price-card {
  background: white; border: 1px solid var(--line);
  border-radius: 20px; padding: 32px;
}
.price-card.feature {
  background: var(--navy-900); color: white; border-color: transparent;
}
.price-kicker {
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--teal-700);
}
.price-card.feature .price-kicker { color: var(--teal-300); }
.price-name {
  font-size: 22px; font-weight: 600; letter-spacing: -0.01em;
  margin-top: 8px;
}
.price-amount {
  font-size: 48px; font-weight: 700; letter-spacing: -0.02em;
  margin-top: 16px; line-height: 1;
}
.price-amount small { font-size: 16px; font-weight: 500; color: var(--muted); }
.price-card.feature .price-amount small { color: rgba(255,255,255,0.6); }
.price-body {
  font-size: 14px; margin-top: 12px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.price-card.feature .price-body { color: rgba(255,255,255,0.75); }

/* FINAL CTA */
section.final-cta { padding: 120px 32px; }
.cta-box {
  max-width: 1280px; margin: 0 auto;
  background: var(--navy-900);
  border-radius: 32px;
  padding: 80px 64px;
  position: relative; overflow: hidden; color: white;
}
.cta-box::before {
  content: ''; position: absolute;
  top: -40%; right: -10%; width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, var(--teal-500) 0%, transparent 60%);
  opacity: 0.35; pointer-events: none;
}
.cta-inner { position: relative; z-index: 2; }
.cta-mark { width: 56px; height: 56px; margin-bottom: 32px; }
.cta-title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700; letter-spacing: -0.025em; line-height: 1.05;
  max-width: 20ch; text-wrap: balance;
}
.cta-title .accent { color: var(--teal-300); }
.cta-sub {
  font-size: 18px; margin-top: 24px;
  color: rgba(255,255,255,0.75); max-width: 540px; text-wrap: pretty;
}
.cta-ctas { margin-top: 48px; display: flex; gap: 12px; flex-wrap: wrap; }
.cta-box .app-badge { background: white; color: var(--ink); }
.cta-box .app-badge:hover { background: var(--paper); }

/* FOOTER */
footer {
  background: var(--navy-900); color: rgba(255,255,255,0.8);
  padding: 80px 32px 32px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand { color: white; }
.footer-tagline {
  margin-top: 20px; font-size: 14px;
  color: rgba(255,255,255,0.6); max-width: 280px; line-height: 1.5;
}
.footer-col h4 {
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: white; margin-bottom: 20px;
}
.footer-col a {
  display: block; font-size: 14px; margin-bottom: 12px;
  color: rgba(255,255,255,0.65);
  transition: color 120ms;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 24px;
  font-size: 13px; color: rgba(255,255,255,0.5);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .pitch-hero { grid-template-columns: 1fr; padding: 60px 24px 80px; gap: 64px; }
  .pitch-visual { max-width: 520px; margin: 0 auto; width: 100%; }
  .benefit-grid, .pricing { grid-template-columns: 1fr; }
  .cta-box { padding: 56px 32px; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .nav-inner { padding: 14px 20px; }
  .nav-links { display: none; }
  .pitch-hero { padding: 48px 20px 64px; }
  section.benefits, section.final-cta, .pricing { padding: 80px 20px; }
  .cta-box { padding: 48px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .visual-card.mid-left { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
