/* JetTeam — bright trade-paper theme: warm paper + navy ink + copper pipe accents.
   Phones, the voice player, and the pilot card stay DARK (they're devices/impact bands) —
   done by re-scoping the CSS variables inside those components. */
:root {
  --bg: #f6f3ee;          /* warm paper */
  --bg-raised: #efe9e0;   /* deeper paper */
  --bg-card: #ffffff;
  --line: #e0d8cc;
  --ink: #1d2b3a;         /* navy ink */
  --ink-2: #45586b;
  --ink-3: #71828f;
  --accent: #c2622e;      /* copper */
  --accent-hot: #a2761c;  /* brass (dark enough for text on light) */
  --water: #2f8fc5;
  --good: #1f9d63;
  --bad: #cf4444;
  --radius: 14px;
  --display: "Bebas Neue", "Arial Narrow", sans-serif;
  --body: "Inter", system-ui, sans-serif;
}
/* dark device/impact scopes — components inside these keep the navy theme */
.phone, .call-player, .alert-card, .report-card, .pilot-card, .ticker, .freeze-frame {
  --bg: #0b1520; --bg-raised: #101d2b; --bg-card: #142534; --line: #24384a;
  --ink: #f4f7f9; --ink-2: #b9c6d2; --ink-3: #8296a8;
  --accent: #d97b45; --accent-hot: #e9b45b;
  color: var(--ink);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* faint film grain */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 100;
  pointer-events: none; opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}
img { max-width: 100%; }
a { color: inherit; }

.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: .02em;
  line-height: .95;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
}
.accent { color: var(--accent); }
.display .accent {
  background: linear-gradient(100deg, #c2622e 20%, #a2761c 90%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.freeze-frame .display, .pilot-card .display { color: var(--ink); }
.center { text-align: center; }
.eyebrow {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .8rem;
  margin-bottom: .9rem;
}
.kicker {
  color: var(--ink-3);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  margin-bottom: 1rem;
}
.lede { color: var(--ink-2); font-size: 1.15rem; max-width: 44rem; }
.lede.center { margin: 0 auto; }
.micro { color: var(--ink-3); font-size: .8rem; }
.micro.center { text-align: center; margin-top: 1rem; }

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.on { opacity: 1; transform: none; }

/* ambient glows */
.glow { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; z-index: 0; }
.glow-a { width: 520px; height: 520px; background: rgba(194, 98, 46, .12); top: -140px; right: -80px; }
.glow-b { width: 420px; height: 420px; background: rgba(47, 143, 197, .10); bottom: -160px; left: -120px; }
.glow-c { width: 500px; height: 320px; background: rgba(194, 98, 46, .10); left: 50%; transform: translateX(-50%); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  border-radius: 999px;
  padding: .85rem 1.6rem;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(120deg, #a44e1f, #c2622e 45%, #d8834a);
  color: #fff;
  box-shadow: 0 6px 22px rgba(164, 78, 31, .35);
}
.btn-primary:hover { box-shadow: 0 10px 32px rgba(164, 78, 31, .5); }
.btn-ghost { border: 1px solid #cfc4b4; color: var(--ink-2); }
.btn-ghost:hover { border-color: var(--ink-3); color: var(--ink); }
.btn-sm { padding: .55rem 1.1rem; font-size: .85rem; }
.btn-lg { padding: 1.05rem 2.1rem; font-size: 1.05rem; }
.cta-row { display: flex; gap: .9rem; flex-wrap: wrap; margin: 1.6rem 0 .8rem; }
.cta-row.center { justify-content: center; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 1.5rem;
  padding: .8rem clamp(1rem, 5vw, 3rem);
  background: rgba(246, 243, 238, .88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.nav.scrolled { border-bottom-color: var(--line); box-shadow: 0 8px 26px rgba(29, 43, 58, .08); }
.brand { font-weight: 800; font-size: 1.15rem; text-decoration: none; white-space: nowrap; }
.brand em { font-style: normal; color: var(--accent); }
.brand-mark { color: var(--accent); }
.nav-links { display: flex; gap: 1.2rem; margin-left: auto; }
.nav-links a { color: var(--ink-2); text-decoration: none; font-size: .9rem; font-weight: 500; }
.nav-links a:hover { color: var(--ink); }
@media (max-width: 760px) { .nav-links { display: none; } .nav { justify-content: space-between; } }

/* ---------- hero ---------- */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 3rem;
  align-items: center;
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 5vw, 3rem) clamp(2.5rem, 6vw, 4.5rem);
  max-width: 76rem;
  margin: 0 auto;
}
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    linear-gradient(rgba(29, 43, 58, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 43, 58, .05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 75% 65% at 55% 35%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 55% 35%, #000 30%, transparent 75%);
}
.hero-copy, .hero-phone { position: relative; z-index: 1; }
.hero-rig {
  position: absolute; inset: -30px -40px auto auto;
  width: 115%; height: 108%;
  opacity: .6; z-index: -1;
  filter: drop-shadow(0 10px 24px rgba(29, 43, 58, .25));
  pointer-events: none;
}
@media (max-width: 880px) { .hero { grid-template-columns: 1fr; } .hero-rig { opacity: .35; } }

/* pipe section dividers */
.pipe-wrap { max-width: 76rem; margin: 0 auto; padding: 0 clamp(1rem, 5vw, 3rem); }
.pipe-divider { display: block; width: 100%; height: 40px; opacity: .9; filter: drop-shadow(0 6px 12px rgba(29, 43, 58, .25)); }

.hero-ticks { display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; margin-top: .8rem; }
.tick { font-size: .8rem; color: var(--ink-3); font-weight: 600; display: inline-flex; align-items: center; gap: .45rem; }
.tick i { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.tick.live i { background: var(--good); box-shadow: 0 0 8px rgba(31, 157, 99, .6); }
.tick.soon i { background: #d8a53c; box-shadow: 0 0 8px rgba(162, 118, 28, .5); }

/* ---------- ticker (dark navy band) ---------- */
.ticker {
  overflow: hidden;
  background: #0f1d2b;
  border-top: 1px solid #24384a;
  border-bottom: 1px solid #24384a;
  padding: .55rem 0;
}
.ticker-track {
  display: flex; gap: 1.6rem; width: max-content;
  animation: ticker 28s linear infinite;
  font-family: var(--display);
  font-size: 1.05rem; letter-spacing: .12em;
  color: var(--ink-3); text-transform: uppercase; white-space: nowrap;
}
.ticker-track span:nth-child(4n+1) { color: var(--ink-2); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- phone mockup (always dark — it's a device) ---------- */
.phone {
  width: min(340px, 100%);
  margin: 0 auto;
  background: #060a0d;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 12px 12px 16px;
  box-shadow: 0 24px 55px rgba(29, 43, 58, .35), 0 0 0 1px rgba(255,255,255,.03) inset;
  position: relative;
}
.phone-lg { width: min(390px, 100%); }
.phone-notch {
  width: 38%; height: 18px; margin: 0 auto 4px;
  background: #060a0d; border: 1px solid var(--line);
  border-radius: 999px;
}
.phone-status {
  display: flex; justify-content: space-between;
  font-size: .68rem; color: var(--ink-3);
  padding: .15rem .5rem .35rem;
  letter-spacing: .05em;
}
.phone-header {
  display: flex; align-items: center; gap: .6rem;
  padding: .5rem .4rem .7rem;
  border-bottom: 1px solid var(--line);
}
.phone-header strong { display: block; font-size: .9rem; }
.phone-header small { color: var(--ink-3); font-size: .72rem; }
.avatar {
  width: 34px; height: 34px; flex: none;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  border-radius: 50%; font-size: .75rem; font-weight: 800; color: #fff;
}
.phone-body {
  padding: .9rem .3rem .5rem;
  display: flex; flex-direction: column; gap: .55rem;
  height: 300px; overflow-y: auto;   /* FIXED height: animations never move the page */
  scrollbar-width: none;
}
.phone-body::-webkit-scrollbar { display: none; }
.phone-lg .phone-body { height: 400px; }
.msg {
  max-width: 85%;
  padding: .6rem .8rem;
  border-radius: 16px;
  font-size: .84rem;
  line-height: 1.4;
  animation: pop .25s ease;
  overflow-wrap: anywhere;
  color: #f4f7f9;
}
.msg.out { background: #26547c; border-bottom-left-radius: 4px; align-self: flex-start; }
.msg.in { background: #2f9e44; border-bottom-right-radius: 4px; align-self: flex-end; }
.msg.typing { color: var(--ink-2); letter-spacing: .2em; font-weight: 700; }
.receipt { align-self: flex-start; font-size: .62rem; color: var(--ink-3); margin: -0.35rem 0 0 .5rem; }
@keyframes pop { from { opacity: 0; transform: translateY(6px) scale(.97); } }
.missed-banner, .urgency-chip, .booked-chip {
  align-self: center; text-align: center;
  font-size: .72rem; font-weight: 700;
  padding: .3rem .8rem; border-radius: 999px;
  animation: pop .25s ease;
}
.missed-banner { background: #3b1f1f; color: #ff9d9d; }
.urgency-chip { background: #3d2a12; color: #e9b45b; }
.booked-chip { background: #12321f; color: #3ecf8e; }
/* slot chips offered inside a thread */
.slot-row { display: flex; gap: .5rem; align-self: flex-start; padding-left: .3rem; animation: pop .25s ease; flex-wrap: wrap; }
.slot-row button {
  background: var(--bg-card); color: var(--ink);
  border: 1px solid var(--accent); border-radius: 999px;
  padding: .5rem .95rem; font-size: .8rem; font-weight: 700;
  cursor: pointer; font-family: var(--body);
}
.slot-row button:hover { background: rgba(217, 123, 69, .18); }
.slot-row button:disabled { opacity: .45; cursor: default; }
.replay {
  position: absolute; right: 16px; bottom: 14px;
  background: var(--bg-card); color: var(--ink-2);
  border: 1px solid var(--line); border-radius: 999px;
  padding: .35rem .8rem; font-size: .75rem; cursor: pointer;
}
.replay:hover { color: var(--ink); }

/* hero call screen — same fixed footprint as the message screen, so swapping never shifts layout */
.call-screen { text-align: center; padding: 1.6rem .5rem 1rem; height: 364px; overflow: hidden; }
.call-label { color: var(--ink-3); font-size: .75rem; text-transform: uppercase; letter-spacing: .2em; }
.call-avatar {
  width: 72px; height: 72px; margin: 1rem auto .6rem;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #7c3aed, #db2777);
  border-radius: 50%; font-size: 1.3rem; font-weight: 800; color: #fff;
}
.call-name { font-size: 1.35rem; font-weight: 700; }
.call-loc { color: var(--ink-3); font-size: .8rem; margin-bottom: 1.6rem; }
.call-actions { display: flex; justify-content: center; gap: 3.2rem; margin-bottom: 1.4rem; }
.call-btn {
  width: 54px; height: 54px; display: grid; place-items: center;
  border-radius: 50%; font-size: 1.3rem; color: #fff;
}
.call-btn.decline { background: #e03131; }
.call-btn.accept { background: #2f9e44; }
.call-btn.ringing { animation: ring 1.1s ease infinite; }
@keyframes ring {
  0%, 100% { transform: rotate(0); box-shadow: 0 0 0 0 rgba(47, 158, 68, .55); }
  15% { transform: rotate(-12deg); }
  30% { transform: rotate(10deg); }
  45% { transform: rotate(-8deg); box-shadow: 0 0 0 14px rgba(47, 158, 68, 0); }
  60% { transform: rotate(0); }
}
.call-hint { color: var(--ink-3); font-size: .75rem; font-style: italic; }

/* ---------- stat bar ---------- */
.statbar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 2.6rem clamp(1rem, 5vw, 3rem) 1.4rem;
  max-width: 76rem; margin: 0 auto;
}
.stat { text-align: center; padding: .5rem; }
.stat-num {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: #b85c28;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-label { color: var(--ink-2); font-size: .9rem; max-width: 16rem; display: inline-block; }
.statbar-note { grid-column: 1 / -1; text-align: center; color: var(--ink-3); font-size: .78rem; }
@media (max-width: 720px) { .statbar { grid-template-columns: 1fr; gap: 1.4rem; } }

/* ---------- sections ---------- */
.section { position: relative; padding: clamp(3rem, 8vw, 5.5rem) clamp(1rem, 5vw, 3rem); max-width: 76rem; margin: 0 auto; }
.section h2 { margin-bottom: 1.6rem; }
.kicker.center { text-align: center; }

/* problem */
.problem-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: .9rem;
  margin: 2rem 0;
}
@media (max-width: 880px) { .problem-grid { grid-template-columns: repeat(2, 1fr); } }
.p-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1rem;
  font-weight: 600; font-size: .95rem; text-align: center;
  box-shadow: 0 6px 18px rgba(29, 43, 58, .05);
  transition: transform .15s ease, box-shadow .15s ease;
}
.p-card:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(29, 43, 58, .1); }
.freeze-frame {
  position: relative;
  margin: 4.2rem auto 0;
  max-width: 46rem;
  text-align: center;
  background: radial-gradient(ellipse at center, #1e130a 0%, #0a0f14 70%);
  border: 1px solid #3f2a18;
  border-radius: var(--radius);
  padding: 2.6rem 1.5rem 2.4rem;
  box-shadow: 0 30px 60px rgba(29, 43, 58, .25);
}
.drip {
  position: absolute; top: -34px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 78px;
  filter: drop-shadow(0 6px 12px rgba(29, 43, 58, .35));
}
.droplet { animation: drip 2.6s ease-in infinite; transform-origin: 77px 44px; }
@keyframes drip {
  0%   { transform: translateY(0) scale(.4); opacity: 0; }
  30%  { transform: translateY(0) scale(1); opacity: 1; }
  75%  { transform: translateY(46px) scale(1); opacity: 1; }
  85%  { transform: translateY(52px) scale(1.2, .5); opacity: 0; }
  100% { opacity: 0; }
}
.ff-line1 { font-family: var(--display); font-size: clamp(1.4rem, 3.5vw, 2.1rem); color: var(--ink-2); letter-spacing: .04em; }
.ff-line2 { font-family: var(--display); font-size: clamp(2rem, 5vw, 3rem); letter-spacing: .04em; color: var(--ink); }
.ff-money { color: var(--accent-hot); font-size: 1.35em; display: inline-block; margin-left: .22em; text-shadow: 0 0 40px rgba(233, 180, 91, .35); }
.freeze-frame.punch .ff-money { animation: punch .5s cubic-bezier(.2, 1.6, .4, 1) both; }
.freeze-frame.punch .ff-line1 { animation: punch .4s cubic-bezier(.2, 1.4, .4, 1) both; }
@keyframes punch {
  0% { transform: scale(.6); opacity: 0; }
  60% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); }
}

/* rewind */
.rewind { padding-top: 0; }
.rewind-turn {
  text-align: center;
  color: var(--accent);
  font-weight: 800;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  margin-bottom: 2.2rem;
}
.rewind-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 60rem; margin: 0 auto; }
@media (max-width: 760px) { .rewind-grid { grid-template-columns: 1fr; } }
.timeline {
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: var(--bg-card);
  box-shadow: 0 8px 22px rgba(29, 43, 58, .05);
}
.timeline.bad { border-color: #ecc4c4; }
.timeline.good { border-color: #bfe0cd; box-shadow: 0 8px 26px rgba(31, 157, 99, .1); }
.timeline h3 { font-family: var(--display); letter-spacing: .05em; font-size: 1.4rem; margin-bottom: 1rem; }
.timeline.bad h3 { color: var(--bad); }
.timeline.good h3 { color: var(--good); }
.timeline ol { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.timeline li { color: var(--ink-2); font-size: .95rem; padding-left: .2rem; }
.tl-loss { color: var(--bad) !important; font-weight: 700; }
.tl-win { color: var(--good) !important; font-weight: 700; }

/* demo video (vertical phone footage in a device frame) */
.watch { text-align: center; }
.video-frame {
  width: min(860px, 94vw);
  margin: 2rem auto 0;
  background: #060a0d;
  border: 1px solid #24384a;
  border-radius: 22px;
  padding: 10px;
  box-shadow: 0 24px 55px rgba(29, 43, 58, .35);
}
.video-frame video { width: 100%; border-radius: 18px; display: block; }

/* front-desk grid */
.desk-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2.4rem; }
@media (max-width: 1000px) { .desk-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .desk-grid { grid-template-columns: 1fr; } }
.d-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.1rem 1.1rem;
  box-shadow: 0 8px 20px rgba(29, 43, 58, .05);
  transition: transform .15s ease, box-shadow .15s ease;
}
.d-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(29, 43, 58, .12); }
.d-card h3 { font-size: 1rem; margin: .8rem 0 .35rem; }
.d-card p { color: var(--ink-3); font-size: .85rem; line-height: 1.5; }
.badge {
  font-size: .64rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: .2rem .55rem; border-radius: 999px;
}
.badge.live { background: rgba(31, 157, 99, .1); color: #187a4b; border: 1px solid rgba(31, 157, 99, .3); }
.badge.soon { background: rgba(162, 118, 28, .1); color: #8a641a; border: 1px solid rgba(162, 118, 28, .3); }

/* how it works */
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; margin-top: 2.5rem; }
@media (max-width: 880px) { .how-grid { grid-template-columns: 1fr; } }
.steps { list-style: none; counter-reset: step; display: flex; flex-direction: column; gap: 1.3rem; }
.steps li { counter-increment: step; padding-left: 3.2rem; position: relative; color: var(--ink-2); }
.steps li strong { color: var(--ink); display: block; margin-bottom: .15rem; }
.steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: .1rem;
  width: 2.2rem; height: 2.2rem;
  display: grid; place-items: center;
  background: var(--bg-card); border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 50%;
  font-family: var(--display); font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(29, 43, 58, .08);
}

/* call player (dark device) */
.call-player {
  max-width: 44rem; margin: 2.4rem auto 0;
  background: linear-gradient(170deg, #142534, #0e1a26);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.4rem 1.4rem 1.1rem;
  box-shadow: 0 30px 60px rgba(29, 43, 58, .3);
}
.cp-head { display: flex; align-items: center; gap: 1rem; }
.cp-play {
  width: 56px; height: 56px; flex: none;
  border: none; border-radius: 50%;
  background: linear-gradient(120deg, #b95f30, #d97b45 45%, #e59a5f);
  color: #180d05; font-size: 1.25rem; font-weight: 800;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(217, 123, 69, .4);
  transition: transform .12s ease;
}
.cp-play:hover { transform: scale(1.06); }
.cp-meta { min-width: 0; }
.cp-meta strong { display: block; font-size: .95rem; }
.cp-meta small { color: var(--ink-3); font-size: .78rem; }
.wave { display: flex; align-items: center; gap: 3px; margin-left: auto; height: 40px; }
.wave i {
  width: 3px; height: 8px; border-radius: 2px;
  background: var(--ink-3); opacity: .55;
}
.call-player.playing .wave i {
  background: var(--accent);
  opacity: .9;
  animation: wavebar 1s ease-in-out infinite;
  animation-delay: calc(var(--d, 0) * 1s);
}
.wave i:nth-child(3n)   { --d: .15; }
.wave i:nth-child(3n+1) { --d: .32; }
.wave i:nth-child(4n)   { --d: .48; }
.wave i:nth-child(5n)   { --d: .61; }
@keyframes wavebar {
  0%, 100% { height: 7px; }
  50% { height: 30px; }
}
@media (max-width: 640px) { .wave { display: none; } }
.cp-transcript {
  margin-top: 1.1rem; display: flex; flex-direction: column; gap: .55rem;
  height: 240px; overflow-y: auto;   /* FIXED height: transcript grows inside, page stays put */
  scrollbar-width: thin;
}
.cp-line { display: flex; gap: .7rem; font-size: .9rem; animation: pop .3s ease; }
.cp-line .who {
  flex: none; width: 86px; text-align: right;
  font-size: .7rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding-top: .15rem;
}
.cp-line.caller .who { color: var(--ink-3); }
.cp-line.ai .who { color: var(--accent); }
.cp-line p { color: var(--ink-2); }
.cp-line.ai p { color: var(--ink); }
.cp-booked {
  align-self: center; margin-top: .4rem;
  background: #12321f; color: #3ecf8e;
  font-size: .8rem; font-weight: 700;
  padding: .35rem 1rem; border-radius: 999px;
  animation: pop .3s ease;
}

/* try it yourself */
.try-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; margin-top: 2.5rem; }
@media (max-width: 880px) { .try-grid { grid-template-columns: 1fr; } }
.chips { display: flex; flex-wrap: wrap; gap: .45rem; padding: .6rem .3rem 0; }
.chips button {
  background: var(--bg-card); color: var(--ink-2);
  border: 1px solid var(--line); border-radius: 999px;
  padding: .5rem .95rem; font-size: .8rem; font-weight: 600;
  cursor: pointer; font-family: var(--body);
  transition: border-color .15s ease, color .15s ease;
}
.chips button:hover { border-color: var(--accent); color: var(--ink); }
.composer {
  display: flex; gap: .5rem; padding: .6rem .3rem 0;
}
.composer input {
  flex: 1; min-width: 0;
  background: var(--bg-card); color: var(--ink);
  border: 1px solid var(--line); border-radius: 999px;
  padding: .6rem 1rem;
  font-size: 1rem;   /* ≥16px so iOS Safari doesn't zoom the page on focus */
  font-family: var(--body);
  outline: none;
}
.composer input:focus { border-color: var(--accent); }
.composer input::placeholder { color: var(--ink-3); }
.composer button {
  width: 44px; height: 44px; flex: none;
  border: none; border-radius: 50%;
  background: linear-gradient(120deg, #b95f30, #d97b45 45%, #e59a5f); color: #180d05;
  font-size: 1rem; cursor: pointer;
}
.live-card { position: sticky; top: 5.5rem; }
.live-card dd { transition: color .3s ease; }
.live-card dd.flash { color: var(--accent-hot); }
.live-card.urgent { border-color: #6b3a10; box-shadow: 0 0 50px rgba(217, 123, 69, .2); }
@media (max-width: 880px) { .live-card { position: static; } }

/* owner cards (dark device notifications) */
.owner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }
@media (max-width: 880px) { .owner-grid { grid-template-columns: 1fr; } }
.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.card-tag {
  font-family: var(--display); letter-spacing: .06em;
  font-size: 1.25rem; margin-bottom: 1.1rem;
}
.alert-card { border-color: #4a2c12; box-shadow: 0 16px 40px rgba(29, 43, 58, .25); }
.alert-card dl div { display: flex; justify-content: space-between; gap: 1rem; padding: .5rem 0; border-bottom: 1px solid var(--line); }
.alert-card dl div:last-child { border-bottom: 0; }
.alert-card dt { color: var(--ink-3); font-size: .85rem; flex: none; }
.alert-card dd { font-weight: 600; font-size: .9rem; text-align: right; overflow-wrap: anywhere; }
.report-card { box-shadow: 0 16px 40px rgba(29, 43, 58, .25); }
.report-rows { list-style: none; }
.report-rows li { display: flex; justify-content: space-between; padding: .55rem 0; border-bottom: 1px solid var(--line); color: var(--ink-2); font-size: .92rem; }
.report-rows li strong { color: var(--ink); font-variant-numeric: tabular-nums; }
.report-rows .report-total { border-bottom: 0; padding-top: .9rem; }
.report-rows .report-total strong { color: #3ecf8e; font-size: 1.25rem; }

/* roi */
.roi-box {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  margin-top: 2.2rem;
  align-items: center;
  box-shadow: 0 14px 34px rgba(29, 43, 58, .07);
}
@media (max-width: 880px) { .roi-box { grid-template-columns: 1fr; } }
.roi-controls { display: flex; flex-direction: column; gap: 1.4rem; }
.roi-controls label { font-weight: 600; font-size: .95rem; display: block; }
.roi-controls output { float: right; color: #b85c28; font-weight: 700; font-variant-numeric: tabular-nums; }
.roi-controls input[type="range"] { width: 100%; margin-top: .6rem; accent-color: var(--accent); }
.roi-result { text-align: center; }
.roi-jobs { color: var(--ink-2); }
.roi-jobs strong { color: var(--ink); font-size: 1.3rem; }
.roi-hero {
  font-family: var(--display);
  font-size: clamp(3.2rem, 7vw, 4.6rem);
  color: var(--good);
  line-height: 1;
  margin: .4rem 0;
  font-variant-numeric: tabular-nums;
}
.roi-caption { color: var(--ink-2); font-size: .95rem; }

/* service area */
.area { text-align: center; }
.area-chips { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-top: 1.6rem; }
.area-chips span {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: 999px; padding: .45rem 1rem;
  font-size: .85rem; font-weight: 600; color: var(--ink-2);
  box-shadow: 0 4px 12px rgba(29, 43, 58, .05);
}

/* pilot (dark impact card) */
.pilot-card {
  max-width: 34rem; margin: 0 auto;
  background: linear-gradient(160deg, #142534, #1e1409);
  border: 1px solid #4a2c12;
  border-radius: 20px;
  padding: 2.5rem clamp(1.2rem, 4vw, 2.5rem);
  text-align: center;
  box-shadow: 0 30px 70px rgba(29, 43, 58, .35);
}
.pilot-price { margin: 1rem 0 1.4rem; color: var(--ink-2); }
.pilot-price strong { font-family: var(--display); font-size: 3.4rem; color: var(--ink); }
.pilot-price span { display: block; font-size: .85rem; color: var(--ink-3); }
.pilot-list { list-style: none; text-align: left; margin: 0 auto 1.4rem; max-width: 26rem; color: var(--ink-2); }
.pilot-list li { padding: .35rem 0; font-size: .95rem; }
.guarantee {
  background: rgba(62, 207, 142, .08);
  border: 1px solid rgba(62, 207, 142, .3);
  border-radius: 10px;
  padding: .8rem 1rem;
  font-size: .9rem;
  color: var(--ink-2);
  margin-bottom: 1.6rem;
}
.guarantee strong { color: #3ecf8e; }

/* trust */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.2rem; }
@media (max-width: 880px) { .trust-grid { grid-template-columns: 1fr; } }
.t-card {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.2rem;
  color: var(--ink-2); font-size: .92rem;
  box-shadow: 0 6px 16px rgba(29, 43, 58, .05);
}
.t-card strong { color: var(--ink); }

/* faq */
.faq { max-width: 48rem; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}
.faq summary {
  cursor: pointer; font-weight: 700; font-size: 1.02rem;
  list-style: none; position: relative; padding-right: 2rem;
}
.faq summary::after { content: "+"; position: absolute; right: .2rem; color: var(--accent); font-size: 1.3rem; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--ink-2); padding-top: .7rem; font-size: .95rem; }

/* footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem clamp(1rem, 5vw, 3rem) 4.5rem;
  max-width: 76rem; margin: 0 auto;
  display: flex; flex-direction: column; gap: .7rem;
  color: var(--ink-2); font-size: .9rem;
}
.footer nav a { color: var(--ink-2); }

/* sticky mobile CTA */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  padding: .7rem 1rem calc(.7rem + env(safe-area-inset-bottom));
  background: rgba(246, 243, 238, .94);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  text-align: center;
}
.mobile-cta .btn { display: block; }
@media (min-width: 761px) { .mobile-cta { display: none; } }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker-track { animation: none; }
  .call-btn.ringing, .freeze-frame.punch .ff-money, .freeze-frame.punch .ff-line1,
  .msg, .call-player.playing .wave i, .cp-line, .cp-booked, .droplet { animation: none !important; }
  .btn:hover, .p-card:hover, .d-card:hover, .cp-play:hover { transform: none; }
}
