/*
 * Callout marketing site — crafted, story-driven redesign.
 * Brand tokens mirror packages/shared/src/brand.ts: condensed display face,
 * hairline borders, squared-off tags, industrial orange. The look leans
 * "good tools, well organised" — blueprint grids, warm paper, confident type.
 */

:root {
  --brand: #f97316;
  --brand-dark: #ea580c;
  --brand-soft: #fff1e6;
  --accent: #6366f1;
  --ink: #0f172a;
  --ink-2: #1e293b;
  --canvas: #f7f6f3; /* warm paper, not cold grey */
  --surface: #ffffff;
  --success: #16a34a;
  --muted: #64748b;
  --muted-2: #94a3b8;
  --border: #e7e3db;
  --line: #e2e8f0;

  --r-tag: 4px;
  --r-ctrl: 8px;
  --r-card: 14px;
  --r-xl: 22px;

  --f-display: 'Barlow Condensed', system-ui, sans-serif;
  --f-body: 'Inter', ui-sans-serif, system-ui, sans-serif;

  --maxw: 1180px;
  --pad: clamp(1.1rem, 5vw, 2.5rem);
  --shadow-sm: 0 1px 2px rgb(15 23 42 / 0.05);
  --shadow-md: 0 10px 30px -12px rgb(15 23 42 / 0.18);
  --shadow-lg: 0 28px 60px -24px rgb(15 23 42 / 0.32);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--f-display);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0.005em;
  margin: 0;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Decorative background ---------- */
.bg-decor { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.bg-grid {
  position: absolute; inset: -2px;
  background-image:
    linear-gradient(to right, rgb(15 23 42 / 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(15 23 42 / 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 30%, transparent 80%);
}
.bg-glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; }
.bg-glow--1 { width: 520px; height: 520px; top: -180px; right: -120px; background: radial-gradient(circle, rgb(249 115 22 / 0.28), transparent 70%); }
.bg-glow--2 { width: 460px; height: 460px; top: 380px; left: -160px; background: radial-gradient(circle, rgb(99 102 241 / 0.18), transparent 70%); }

/* ---------- Shared bits ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--f-display); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.8rem; color: var(--brand-dark);
}
.kicker--center { justify-content: center; }
.kicker-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px rgb(249 115 22 / 0.16); }

.ink-highlight { position: relative; white-space: nowrap; color: var(--brand-dark); }
.ink-highlight::after {
  content: ''; position: absolute; left: -2%; right: -2%; bottom: 0.08em; height: 0.34em;
  background: linear-gradient(90deg, rgb(249 115 22 / 0.32), rgb(249 115 22 / 0.18));
  border-radius: 3px; z-index: -1;
}

.section-sub { margin-top: 0.9rem; color: var(--muted); font-size: 1.1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--f-display); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.04em;
  font-size: 1rem; line-height: 1; cursor: pointer;
  padding: 0.8rem 1.3rem; border-radius: var(--r-ctrl);
  border: 1.5px solid transparent;
  transition: transform 0.12s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.btn:active { transform: translateY(1px); }
.btn-solid { background: var(--brand); color: #fff; box-shadow: 0 8px 20px -8px rgb(249 115 22 / 0.6); }
.btn-solid:hover { background: var(--brand-dark); box-shadow: 0 12px 26px -8px rgb(249 115 22 / 0.7); transform: translateY(-1px); }
.btn-line { background: var(--surface); color: var(--ink); border-color: var(--border); }
.btn-line:hover { border-color: var(--ink); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { color: var(--brand-dark); }
.btn-lg { font-size: 1.12rem; padding: 0.95rem 1.6rem; }
.btn-sm { font-size: 0.88rem; padding: 0.6rem 1rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; gap: 1.5rem;
  padding: 0.85rem var(--pad);
  background: rgb(247 246 243 / 0.7);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease, padding 0.25s ease;
}
.header.is-stuck { border-bottom-color: var(--border); background: rgb(247 246 243 / 0.92); }

.logo { display: inline-flex; align-items: center; gap: 0.6rem; }
.logo-mark {
  display: grid; place-items: center; width: 36px; height: 36px;
  border-radius: 9px; background: var(--ink); color: var(--brand);
  box-shadow: var(--shadow-sm);
}
.logo-word { font-family: var(--f-display); font-weight: 700; font-size: 1.5rem; letter-spacing: 0.01em; }
.logo--light .logo-word { color: #fff; }
.logo--light .logo-mark { background: #fff; color: var(--brand); }

.nav { display: flex; gap: 1.6rem; margin-left: auto; font-weight: 500; font-size: 0.95rem; }
.nav a { color: var(--muted); position: relative; padding: 0.2rem 0; }
.nav a::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--brand); transition: width 0.2s ease; }
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }

.header-actions { display: flex; gap: 0.5rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s ease; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: sticky; top: 61px; z-index: 55;
  display: flex; flex-direction: column; gap: 0.25rem;
  padding: 1rem var(--pad) 1.5rem;
  background: var(--surface); border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  animation: drop 0.2s ease-out;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a { padding: 0.7rem 0.2rem; font-weight: 600; color: var(--ink-2); border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 0.6rem; }
@keyframes drop { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Layout ---------- */
section { padding: clamp(3.5rem, 8vw, 6.5rem) var(--pad); }

/* ---------- Hero ---------- */
.hero {
  display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  max-width: var(--maxw); margin: 0 auto;
  padding-top: clamp(2.5rem, 6vw, 4.5rem); padding-bottom: clamp(2rem, 5vw, 4rem);
}
.hero-title {
  font-size: clamp(2.8rem, 7vw, 5rem); font-weight: 700;
  margin: 1.1rem 0 0; letter-spacing: -0.01em;
}
.hero-lede { margin-top: 1.4rem; font-size: 1.22rem; color: var(--ink-2); max-width: 38ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.hero-ticks { display: flex; flex-wrap: wrap; gap: 1.2rem; margin-top: 1.6rem; }
.hero-ticks li { display: flex; align-items: center; gap: 0.45rem; font-size: 0.92rem; color: var(--muted); font-weight: 500; }
.hero-ticks li::before { content: ''; width: 16px; height: 16px; border-radius: 50%; background: var(--brand-soft); position: relative; flex: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 13l4 4L19 7' stroke='%23ea580c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 11px; background-repeat: no-repeat; background-position: center; }

/* Hero visual */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 560px; }
.phone {
  position: relative; width: 286px; background: #0b1220;
  border-radius: 42px; padding: 13px; box-shadow: var(--shadow-lg);
  border: 1px solid #1f2937;
  animation: float 7s ease-in-out infinite;
}
.phone-glare { position: absolute; inset: 13px; border-radius: 30px; pointer-events: none;
  background: linear-gradient(135deg, rgb(255 255 255 / 0.1), transparent 40%); z-index: 3; }
.phone-screen { background: var(--canvas); border-radius: 31px; padding: 1rem 0.85rem; min-height: 540px; overflow: hidden; }
.ps-status { display: flex; justify-content: space-between; align-items: center; font-size: 0.72rem; font-weight: 700; color: var(--ink); padding: 0.1rem 0.5rem 0.6rem; }
.ps-dots { display: inline-flex; gap: 3px; }
.ps-dots i { width: 5px; height: 5px; border-radius: 50%; background: var(--ink); opacity: 0.5; }
.ps-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.8rem; }
.ps-hi { font-family: var(--f-display); font-weight: 700; font-size: 1.5rem; }
.ps-day { font-size: 0.78rem; color: var(--muted); }
.ps-avatar { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; background: var(--ink); color: #fff; font-weight: 700; font-size: 0.8rem; }
.ps-money { background: linear-gradient(150deg, #0f172a, #1e293b); color: #fff; border-radius: 16px; padding: 0.9rem 1rem; margin-bottom: 0.7rem; }
.ps-money-label { font-size: 0.72rem; color: #cbd5e1; text-transform: uppercase; letter-spacing: 0.1em; }
.ps-money-val { font-family: var(--f-display); font-weight: 700; font-size: 2rem; margin-top: 0.1rem; font-variant-numeric: tabular-nums; }
.ps-money-val span { color: #94a3b8; font-size: 1.2rem; }
.ps-bar { height: 6px; border-radius: 4px; background: rgb(255 255 255 / 0.14); margin-top: 0.6rem; overflow: hidden; }
.ps-bar span { display: block; height: 100%; background: var(--brand); border-radius: 4px; }
.ps-job { background: var(--surface); border: 1px solid var(--border); border-radius: 13px; padding: 0.7rem 0.8rem; margin-bottom: 0.55rem; box-shadow: var(--shadow-sm); }
.ps-job-title { font-weight: 600; font-size: 0.9rem; margin-top: 0.35rem; }
.ps-job-meta { font-size: 0.74rem; color: var(--muted); margin-top: 0.1rem; }
.chip { font-family: var(--f-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.66rem; padding: 0.18rem 0.5rem; border-radius: var(--r-tag); }
.chip--live { background: #fee2e2; color: #b91c1c; }
.chip--next { background: #e0e7ff; color: #4338ca; }
.ps-tap { margin-top: 0.55rem; width: 100%; border: 0; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  background: var(--brand); color: #fff; font-family: var(--f-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.92rem; padding: 0.8rem; border-radius: 11px; }

.float-card {
  position: absolute; z-index: 5; display: flex; align-items: center; gap: 0.6rem;
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  padding: 0.65rem 0.85rem; box-shadow: var(--shadow-md); width: max-content; max-width: 210px;
}
.float-card--paid { top: 8%; right: 2%; animation: float 6s ease-in-out infinite; }
.float-card--quote { bottom: 12%; left: -2%; animation: float 6.5s ease-in-out infinite 0.6s; }
.fc-icon { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 9px; flex: none; }
.fc-icon--green { background: #dcfce7; color: #15803d; }
.fc-icon--orange { background: var(--brand-soft); color: var(--brand-dark); }
.fc-title { font-weight: 700; font-size: 0.84rem; }
.fc-sub { font-size: 0.74rem; color: var(--muted); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- Marquee ---------- */
.marquee { padding: 0; background: var(--ink); color: #cbd5e1; overflow: hidden; border-block: 1px solid #1f2937; }
.marquee-track { display: flex; gap: 1.4rem; align-items: center; white-space: nowrap; padding: 0.95rem 0; width: max-content; animation: scroll-x 38s linear infinite; }
.marquee-track span { font-family: var(--f-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; font-size: 1.05rem; }
.marquee-track i { color: var(--brand); font-style: normal; }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Story ---------- */
.story { max-width: var(--maxw); margin: 0 auto; }
.story-head { text-align: center; max-width: 760px; margin: 0 auto clamp(2.2rem, 5vw, 3.4rem); }
.story-head h2 { font-size: clamp(2.1rem, 5vw, 3.2rem); margin-top: 0.9rem; }
.story-split { display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(1rem, 3vw, 2rem); align-items: stretch; }
.story-col { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); padding: clamp(1.5rem, 3vw, 2.2rem); box-shadow: var(--shadow-sm); }
.story-col--old { background: #fbfaf8; }
.story-col--new { border-color: rgb(249 115 22 / 0.35); box-shadow: 0 20px 50px -28px rgb(249 115 22 / 0.45); position: relative; }
.story-col--new::before { content: ''; position: absolute; inset: 0; border-radius: var(--r-xl); padding: 1px; background: linear-gradient(160deg, rgb(249 115 22 / 0.5), transparent 50%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.story-col-head { margin-bottom: 1rem; }
.story-col-head h3 { font-size: 1.5rem; margin-top: 0.6rem; }
.story-tag { display: inline-block; font-family: var(--f-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.72rem; padding: 0.25rem 0.6rem; border-radius: var(--r-tag); }
.story-tag--bad { background: #f1f5f9; color: var(--muted); }
.story-tag--good { background: var(--brand-soft); color: var(--brand-dark); }
.story-prose { color: var(--ink-2); font-size: 1.02rem; }
.story-list { margin-top: 1.2rem; display: grid; gap: 0.6rem; }
.story-list li { position: relative; padding-left: 1.7rem; color: var(--ink-2); font-size: 0.96rem; }
.story-list--bad li::before { content: ''; position: absolute; left: 0; top: 0.45em; width: 13px; height: 2px; background: var(--muted-2); }
.story-list--good li { padding-left: 1.8rem; }
.story-list--good li::before { content: ''; position: absolute; left: 0; top: 0.1em; width: 18px; height: 18px; border-radius: 50%; background: var(--brand-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 13l4 4L19 7' stroke='%23ea580c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center; }
.story-divider { display: flex; align-items: center; justify-content: center; }
.story-arrow { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--ink); color: var(--brand); box-shadow: var(--shadow-md); }

/* ---------- Day / timeline ---------- */
.day { max-width: var(--maxw); margin: 0 auto; }
.day-head { text-align: center; max-width: 780px; margin: 0 auto clamp(2.5rem, 5vw, 3.8rem); }
.day-head h2 { font-size: clamp(2.1rem, 5vw, 3.2rem); margin-top: 0.9rem; }

.timeline { position: relative; max-width: 760px; margin: 0 auto; padding-left: clamp(2.4rem, 8vw, 3.4rem); }
.timeline::before { content: ''; position: absolute; left: clamp(0.8rem, 3vw, 1.2rem); top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--brand), rgb(249 115 22 / 0.15)); }
.tl-item { position: relative; display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; padding: 0.9rem 0 1.6rem; }
.tl-time { font-family: var(--f-display); font-weight: 700; font-size: 1.35rem; color: var(--ink); width: 4.2rem; text-align: right; padding-top: 0.15rem; }
.tl-time small { font-size: 0.7rem; color: var(--muted); margin-left: 1px; }
.tl-item::before { content: ''; position: absolute; left: calc(-1 * clamp(2.4rem, 8vw, 3.4rem) + clamp(0.8rem, 3vw, 1.2rem) - 6px); top: 1.25rem; width: 14px; height: 14px; border-radius: 50%; background: var(--surface); border: 3px solid var(--brand); box-shadow: 0 0 0 4px var(--canvas); }
.tl-body { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-card); padding: 1.1rem 1.2rem; box-shadow: var(--shadow-sm); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.tl-item:hover .tl-body { transform: translateX(4px); box-shadow: var(--shadow-md); }
.tl-icon { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; background: var(--brand-soft); color: var(--brand-dark); margin-bottom: 0.55rem; }
.tl-body h3 { font-size: 1.3rem; }
.tl-body p { margin-top: 0.3rem; color: var(--muted); font-size: 0.98rem; }

.day-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; max-width: 760px; margin: clamp(2.5rem,5vw,3.5rem) auto 0; }
.stat { text-align: center; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-card); padding: 1.6rem 1rem; box-shadow: var(--shadow-sm); }
.stat-num { display: block; font-family: var(--f-display); font-weight: 700; font-size: 3.2rem; color: var(--brand-dark); line-height: 1; }
.stat p { margin-top: 0.5rem; color: var(--muted); font-size: 0.94rem; }

/* ---------- Features ---------- */
.features { max-width: var(--maxw); margin: 0 auto; }
.features-head { text-align: center; max-width: 700px; margin: 0 auto clamp(2.2rem,5vw,3.4rem); }
.features-head h2 { font-size: clamp(2.1rem, 5vw, 3.2rem); margin-top: 0.9rem; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.feature { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-card); padding: 1.5rem; box-shadow: var(--shadow-sm); transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgb(249 115 22 / 0.35); }
.feature--wide { grid-column: span 2; }
.feature--accent { background: linear-gradient(155deg, #0f172a, #1e293b); color: #fff; border-color: #1f2937; }
.feature--accent p { color: #cbd5e1; }
.feat-icon { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: var(--brand-soft); color: var(--brand-dark); margin-bottom: 0.9rem; }
.feat-icon--invert { background: rgb(249 115 22 / 0.18); color: var(--brand); }
.feature h3 { font-size: 1.45rem; }
.feature p { margin-top: 0.4rem; color: var(--muted); font-size: 0.98rem; }

/* ---------- Voices ---------- */
.voices { max-width: var(--maxw); margin: 0 auto; }
.voices-head { text-align: center; max-width: 720px; margin: 0 auto clamp(2.2rem,5vw,3.2rem); }
.voices-head h2 { font-size: clamp(2rem, 4.6vw, 3rem); margin-top: 0.9rem; }
.voices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.quote-card { margin: 0; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-card); padding: 1.6rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 1rem; }
.quote-stars { color: var(--brand); letter-spacing: 2px; font-size: 0.95rem; }
.quote-card blockquote { margin: 0; font-size: 1.05rem; color: var(--ink-2); line-height: 1.55; }
.quote-card figcaption { display: flex; align-items: center; gap: 0.7rem; margin-top: auto; }
.qc-avatar { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 11px; background: var(--seed, var(--ink)); color: #fff; font-weight: 700; font-size: 0.85rem; flex: none; }
.quote-card figcaption strong { display: block; font-size: 0.95rem; }
.quote-card figcaption small { color: var(--muted); font-size: 0.82rem; }

/* ---------- Pricing ---------- */
.pricing { max-width: var(--maxw); margin: 0 auto; }
.pricing-inner { display: grid; grid-template-columns: 1fr 0.85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); padding: clamp(1.8rem, 4vw, 3.2rem); box-shadow: var(--shadow-md); position: relative; overflow: hidden; }
.pricing-inner::before { content: ''; position: absolute; top: -120px; left: -80px; width: 320px; height: 320px; background: radial-gradient(circle, rgb(249 115 22 / 0.12), transparent 70%); }
.pricing-copy { position: relative; }
.pricing-copy h2 { font-size: clamp(2.1rem, 4.6vw, 3rem); margin: 0.8rem 0 1rem; }
.pricing-copy p { color: var(--ink-2); font-size: 1.05rem; }
.pricing-points { margin-top: 1.4rem; display: grid; gap: 0.7rem; }
.pricing-points li { display: flex; align-items: center; gap: 0.6rem; color: var(--ink-2); font-weight: 500; }
.pricing-points svg { color: var(--success); flex: none; }

.price-card { position: relative; background: linear-gradient(170deg, #0f172a, #1e293b); color: #fff; border-radius: var(--r-xl); padding: 2.2rem 1.8rem 1.8rem; box-shadow: var(--shadow-lg); text-align: center; }
.price-ribbon { position: absolute; top: -0.85rem; left: 50%; transform: translateX(-50%); background: var(--brand); color: #fff; font-family: var(--f-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.74rem; padding: 0.35rem 0.9rem; border-radius: var(--r-tag); box-shadow: var(--shadow-md); }
.price-plan { font-family: var(--f-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: #cbd5e1; font-size: 1rem; margin-bottom: 0.6rem; }
.price-now { display: flex; align-items: flex-start; justify-content: center; gap: 0.2rem; line-height: 1; }
.price-cur { font-family: var(--f-display); font-weight: 600; font-size: 1.8rem; margin-top: 0.5rem; color: var(--brand); }
.price-big { font-family: var(--f-display); font-weight: 700; font-size: 5rem; }
.price-per { align-self: flex-end; color: #94a3b8; font-weight: 600; margin-bottom: 0.7rem; }
.price-context { color: #cbd5e1; margin-top: 0.2rem; }
.price-then { display: inline-flex; align-items: center; gap: 0.45rem; margin-top: 1rem; padding: 0.5rem 0.9rem; background: rgb(255 255 255 / 0.06); border: 1px solid rgb(255 255 255 / 0.12); border-radius: var(--r-ctrl); font-size: 0.9rem; color: #e2e8f0; }
.price-then svg { color: var(--brand); flex: none; }
.price-includes { text-align: left; margin: 1.4rem 0; display: grid; gap: 0.1rem; }
.price-includes li { position: relative; padding: 0.5rem 0 0.5rem 1.7rem; border-bottom: 1px solid rgb(255 255 255 / 0.08); font-size: 0.94rem; color: #e2e8f0; }
.price-includes li:last-child { border-bottom: 0; }
.price-includes li::before { content: ''; position: absolute; left: 0; top: 0.55rem; width: 16px; height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 13l4 4L19 7' stroke='%23f97316' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 16px; background-repeat: no-repeat; }
.price-fine { margin-top: 0.8rem; font-size: 0.78rem; color: #94a3b8; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-head { text-align: center; margin-bottom: clamp(1.8rem,4vw,2.6rem); }
.faq-head h2 { font-size: clamp(2rem, 4.6vw, 2.9rem); margin-top: 0.9rem; }
.faq-list { display: grid; gap: 0.7rem; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-card); padding: 0.3rem 1.3rem; box-shadow: var(--shadow-sm); transition: border-color 0.2s ease; }
.faq-item[open] { border-color: rgb(249 115 22 / 0.4); }
.faq-item summary { cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 0; font-weight: 600; font-size: 1.06rem; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus { position: relative; width: 18px; height: 18px; flex: none; }
.faq-plus::before, .faq-plus::after { content: ''; position: absolute; background: var(--brand); border-radius: 2px; transition: transform 0.22s ease; }
.faq-plus::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-plus::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq-item[open] .faq-plus::after { transform: rotate(90deg); opacity: 0; }
.faq-item p { padding: 0 0 1.1rem; color: var(--muted); font-size: 0.98rem; }

/* ---------- Final CTA ---------- */
.final { padding-block: clamp(3rem, 7vw, 5rem); }
.final-inner { max-width: var(--maxw); margin: 0 auto; text-align: center; background: linear-gradient(150deg, #0f172a 0%, #1e293b 60%, #2a1c10 100%); color: #fff; border-radius: var(--r-xl); padding: clamp(2.5rem, 6vw, 4.5rem) var(--pad); position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.final-inner::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(to right, rgb(255 255 255 / 0.04) 1px, transparent 1px), linear-gradient(to bottom, rgb(255 255 255 / 0.04) 1px, transparent 1px); background-size: 36px 36px; mask-image: radial-gradient(ellipse 70% 80% at 50% 0%, #000, transparent 75%); }
.final-inner > * { position: relative; }
.final-inner h2 { font-size: clamp(2.3rem, 6vw, 4rem); }
.final-inner p { margin: 1rem auto 0; color: #cbd5e1; font-size: 1.2rem; max-width: 46ch; }
.final-cta { margin-top: 2rem; display: flex; flex-direction: column; align-items: center; gap: 0.8rem; }
.final-note { font-size: 0.88rem; color: #94a3b8; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #cbd5e1; padding: clamp(2.5rem,5vw,3.5rem) var(--pad) 1.8rem; }
.footer-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 2rem; }
.footer-tag { margin-top: 0.8rem; color: var(--muted-2); font-size: 0.92rem; max-width: 22ch; }
.footer-col-title { font-family: var(--f-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.8rem; color: #fff; margin-bottom: 0.9rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a { color: var(--muted-2); font-size: 0.94rem; transition: color 0.15s ease; }
.footer-col a:hover { color: var(--brand); }
.footer-cta .btn { margin-bottom: 0.7rem; }
.footer-mini { font-size: 0.82rem; color: var(--muted-2); }
.footer-base { max-width: var(--maxw); margin: 2.2rem auto 0; padding-top: 1.4rem; border-top: 1px solid #1f2937; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.85rem; color: var(--muted-2); }
.footer-built { font-style: italic; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .nav, .header-actions { display: none; }
  .nav-toggle { display: flex; }
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 2rem; }
  .hero-lede { margin-inline: auto; }
  .hero-cta, .hero-ticks { justify-content: center; }
  .hero-visual { min-height: 520px; margin-top: 1rem; }
  .story-split { grid-template-columns: 1fr; }
  .story-divider { transform: rotate(90deg); padding: 0.4rem 0; }
  .feature-grid, .voices-grid, .day-stats { grid-template-columns: 1fr 1fr; }
  .feature--wide { grid-column: span 2; }
  .pricing-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .hero-title { font-size: clamp(2.5rem, 11vw, 3.4rem); }
  .feature-grid, .voices-grid, .day-stats { grid-template-columns: 1fr; }
  .feature--wide { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .footer-base { flex-direction: column; gap: 0.4rem; }
  .float-card { max-width: 175px; }
  .tl-time { font-size: 1.1rem; width: 3.4rem; }
}

/* =====================================================================
   Jobber-style additions: social proof, product showcases, industries
   ===================================================================== */

/* ---------- Hero social proof ---------- */
.hero-proof { display: flex; align-items: center; gap: 0.7rem; margin-top: 1.6rem; flex-wrap: wrap; }
.proof-stars { color: var(--brand); letter-spacing: 2px; font-size: 1.05rem; }
.proof-text { font-size: 0.92rem; color: var(--muted); font-weight: 500; max-width: 38ch; }

/* ---------- Showcases ---------- */
.showcases { max-width: var(--maxw); margin: 0 auto; }
.show-head { text-align: center; max-width: 760px; margin: 0 auto clamp(2.4rem, 5vw, 3.6rem); }
.show-head h2 { font-size: clamp(2.1rem, 5vw, 3.2rem); margin-top: 0.9rem; }

.showcase {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding: clamp(1.5rem, 4vw, 2.5rem) 0;
}
.showcase + .showcase { border-top: 1px dashed var(--border); }
.showcase--flip .show-copy { order: 2; }
.show-step { font-family: var(--f-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.82rem; color: var(--brand-dark); }
.show-copy h3 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); margin: 0.6rem 0 0.9rem; }
.show-copy > p { color: var(--ink-2); font-size: 1.08rem; }
.show-list { margin-top: 1.3rem; display: grid; gap: 0.65rem; }
.show-list li { position: relative; padding-left: 1.9rem; color: var(--ink-2); font-weight: 500; }
.show-list li::before { content: ''; position: absolute; left: 0; top: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--brand-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 13l4 4L19 7' stroke='%23ea580c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 13px; background-repeat: no-repeat; background-position: center; }

.show-art { display: flex; justify-content: center; }

/* ---------- Generic in-product UI mock ---------- */
.ui { width: 100%; max-width: 420px; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow-lg); overflow: hidden; }
.ui-bar { display: flex; align-items: center; gap: 0.6rem; padding: 0.7rem 0.9rem; background: #f1efe9; border-bottom: 1px solid var(--border); }
.ui-bar--dark { background: #0f172a; border-bottom-color: #1f2937; }
.ui-bar--dark .ui-bar-title { color: #fff; }
.ui-dots { display: inline-flex; gap: 5px; }
.ui-dots i { width: 9px; height: 9px; border-radius: 50%; background: #cbd5e1; }
.ui-bar--dark .ui-dots i { background: #334155; }
.ui-bar-title { font-family: var(--f-display); font-weight: 600; font-size: 1rem; letter-spacing: 0.02em; color: var(--ink); }
.ui-pill { margin-left: auto; font-family: var(--f-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.68rem; padding: 0.2rem 0.55rem; border-radius: var(--r-tag); background: #e2e8f0; color: var(--muted); }
.ui-pill--ok { background: #dcfce7; color: #15803d; }
.ui-body { padding: 1.1rem 1.1rem 1.2rem; }
.ui-cta { margin-top: 1rem; width: 100%; border: 0; cursor: pointer; background: var(--brand); color: #fff; font-family: var(--f-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.95rem; padding: 0.75rem; border-radius: var(--r-ctrl); }

/* Quote mock */
.uq-cust { display: flex; align-items: center; gap: 0.6rem; padding-bottom: 0.9rem; margin-bottom: 0.7rem; border-bottom: 1px solid var(--line); }
.uq-av { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; background: var(--accent); color: #fff; font-weight: 700; font-size: 0.82rem; }
.uq-cust strong { display: block; font-size: 0.95rem; }
.uq-cust small { color: var(--muted); font-size: 0.8rem; }
.uq-line { display: flex; justify-content: space-between; padding: 0.32rem 0; font-size: 0.92rem; font-variant-numeric: tabular-nums; }
.uq-muted { color: var(--muted); }
.uq-sep { height: 1px; background: var(--line); margin: 0.5rem 0; }
.uq-total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 0.4rem; padding-top: 0.5rem; border-top: 2px solid var(--ink); font-family: var(--f-display); font-weight: 700; font-size: 1.25rem; font-variant-numeric: tabular-nums; }

/* Calendar mock */
.uc-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; padding: 0.7rem; background: var(--canvas); min-height: 280px; }
.uc-col { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; min-height: 260px; }
.uc-col.uc-today { border-color: var(--brand); box-shadow: inset 0 0 0 1px var(--brand); }
.uc-day { display: block; text-align: center; font-family: var(--f-display); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.06em; color: var(--muted); padding: 0.4rem 0; border-bottom: 1px solid var(--line); }
.uc-today .uc-day { color: var(--brand-dark); }
.uc-block { position: absolute; left: 4px; right: 4px; display: flex; flex-direction: column; gap: 1px; padding: 0.3rem 0.35rem; border-radius: 6px; font-size: 0.64rem; font-weight: 600; line-height: 1.15; color: #fff; box-shadow: var(--shadow-sm); }
.uc-block small { font-weight: 500; opacity: 0.85; font-size: 0.58rem; }
.uc-b1 { background: var(--brand); }
.uc-b2 { background: var(--accent); }
.uc-b3 { background: #0ea5a4; }

/* Payment mock */
.up-body { padding: 1.4rem 1.2rem 1.5rem; text-align: center; }
.up-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.up-amount { font-family: var(--f-display); font-weight: 700; font-size: 3.4rem; line-height: 1; margin-top: 0.2rem; font-variant-numeric: tabular-nums; }
.up-amount span { color: var(--muted-2); font-size: 1.8rem; }
.up-tap { margin-top: 1.2rem; display: flex; flex-direction: column; align-items: center; gap: 0.6rem; padding: 1.2rem; border: 2px dashed var(--border); border-radius: 14px; font-family: var(--f-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-2); font-size: 0.95rem; }
.up-wifi { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--brand-soft); color: var(--brand-dark); animation: pulse 2.2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgb(249 115 22 / 0.35); } 50% { box-shadow: 0 0 0 10px rgb(249 115 22 / 0); } }
.up-receipt { margin-top: 0.9rem; display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.84rem; color: var(--success); font-weight: 500; }
.up-check { display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: #dcfce7; color: #15803d; flex: none; }

/* ---------- Industries ---------- */
.industries { max-width: var(--maxw); margin: 0 auto; }
.ind-head { text-align: center; max-width: 720px; margin: 0 auto clamp(2rem, 4vw, 3rem); }
.ind-head h2 { font-size: clamp(2rem, 4.6vw, 3rem); margin-top: 0.9rem; }
.ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.ind-card { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.7rem; text-align: center; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-card); padding: 1.6rem 1rem; box-shadow: var(--shadow-sm); transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease; }
.ind-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgb(249 115 22 / 0.4); }
.ind-icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: var(--brand-soft); color: var(--brand-dark); }
.ind-card h3 { font-size: 1.2rem; }
.ind-card--more { background: linear-gradient(155deg, #0f172a, #1e293b); border-color: #1f2937; }
.ind-card--more h3 { color: #fff; }

@media (max-width: 940px) {
  .showcase { grid-template-columns: 1fr; gap: 1.8rem; }
  .showcase--flip .show-copy { order: 0; }
  .show-art { order: -1; }
  .ind-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .up-amount { font-size: 2.8rem; }
  .uc-grid { min-height: 230px; }
}
