/* BlueFletch.com redesign prototype — v1
   Tokens: BlueFletch blue on white, Poppins/Open Sans/IBM Plex Mono.
   Green (#1E9E52) is reserved exclusively for "verified / authenticated /
   included" moments — it's the color of the badge-tap success state in the
   real product footage, and it threads through the whole site. */

:root {
  --ink: #0f2540;
  --body: #44586e;
  --blue: #0060a8;
  --blue-deep: #004e88;
  --sky: #299ed8;
  --mist: #f0f6fb;
  --mist-deep: #e2eef8;
  --line: #d9e5f0;
  --verified: #1e9e52;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(15, 37, 64, 0.06), 0 8px 24px rgba(15, 37, 64, 0.08);
  --shadow-lift: 0 2px 4px rgba(15, 37, 64, 0.08), 0 16px 40px rgba(15, 37, 64, 0.14);
  --font-head: "Poppins", sans-serif;
  --font-body: "Open Sans", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --max: 1140px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  overflow-x: clip; /* slide-in reveals translate off-canvas; clip (not hidden) keeps sticky working */
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.15; }

a { color: var(--blue); text-decoration: none; }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 2px;
  border-radius: 4px;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 14px;
}

/* ---------- Header / nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo { display: flex; align-items: center; margin-right: 20px; }
.nav-logo img { height: 30px; display: block; }

.nav-menu { display: flex; align-items: center; gap: 2px; list-style: none; flex: 1; }

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-family: var(--font-head);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  background: none;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}
.nav-link:hover { background: var(--mist); }
.nav-link .caret { transition: transform 0.15s; font-size: 10px; color: var(--body); }
.nav-item.open .caret { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-lift);
  padding: 8px;
  display: none;
}
.nav-item.open .dropdown { display: block; }

.dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--ink);
  font-size: 14.5px;
}
.dropdown a:hover { background: var(--mist); }
.dropdown a .d { display: block; font-size: 12.5px; color: var(--body); }
.dropdown.mega {
  display: none;
  width: min(820px, calc(100vw - 48px));
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 8px;
  padding: 18px;
}
.nav-item.open .dropdown.mega { display: grid; }
.mega-col { min-width: 0; }
.mega-col + .mega-col { border-left: 1px solid var(--line); padding-left: 18px; }
.mega-col > a { padding: 8px 10px; }
.mega-col .group-label { padding: 4px 10px 8px; }
.dropdown .group-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--body);
  padding: 10px 12px 4px;
}

.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  text-align: center;
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-deep); }
.btn-ghost {
  background: var(--white);
  color: var(--blue);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--sky); }
.nav .btn-primary { padding: 10px 18px; font-size: 14px; margin-left: 8px; white-space: nowrap; }

.nav-burger { display: none; }

/* Header search */
.nav-search {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-left: 4px;
  background: none;
  border: 0;
  border-radius: 9px;
  color: var(--ink);
  cursor: pointer;
}
.nav-search:hover { background: var(--mist); color: var(--blue); }

.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 37, 64, 0.45);
  display: none;
  justify-content: center;
  align-items: flex-start;
  padding: 12vh 24px 24px;
  z-index: 110;
}
.search-overlay.open { display: flex; }
.search-panel {
  width: 100%;
  max-width: 560px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}
.search-panel input {
  width: 100%;
  border: 0;
  outline: none;
  font-family: var(--font-body);
  font-size: 17px;
  padding: 18px 22px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.search-results a {
  display: block;
  padding: 12px 22px;
  color: var(--ink);
}
.search-results a:hover { background: var(--mist); }
.search-results a b { display: block; font-family: var(--font-head); font-size: 15px; font-weight: 600; }
.search-results a span { font-size: 13.5px; color: var(--body); }
.search-empty { padding: 16px 22px; font-size: 14.5px; color: var(--body); }

/* ---------- Hero ---------- */

.hero { padding: 72px 0 40px; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.hero h1 .tick { color: var(--blue); }

.hero .sub {
  font-size: 19px;
  max-width: 34em;
  margin-bottom: 30px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }

.hero-note {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--body);
}
.hero-note .v { color: var(--verified); font-weight: 600; }

/* Device frame with real product footage */
.device-stage { display: flex; justify-content: center; position: relative; }
.device-stage::before {
  content: "";
  position: absolute;
  inset: 10% -6% -4% -6%;
  background: radial-gradient(ellipse at 50% 40%, var(--mist-deep), transparent 70%);
  z-index: 0;
}
.device {
  position: relative;
  z-index: 1;
  width: 290px;
  border-radius: 34px;
  padding: 12px;
  background: #1c2733;
  box-shadow: var(--shadow-lift);
}
.device::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 16px;
  background: #1c2733;
  border-radius: 0 0 10px 10px;
  z-index: 2;
}
.device video, .device img.screen {
  display: block;
  width: 100%;
  border-radius: 24px;
  background: #fff;
}
.device-caption {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%) translateY(50%);
  z-index: 3;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 12.5px;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.device-caption .v { color: #5fdf95; }

/* ---------- Logo row ---------- */

.logo-row { padding: 44px 0 52px; border-bottom: 1px solid var(--line); }
.logo-row p {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.logo-row .logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px 52px;
}
.logo-row img {
  height: 30px;
  opacity: 0.65;
  filter: grayscale(1);
}
.logo-row img:hover { opacity: 1; filter: none; }

/* ---------- Shift clock (problem narrative) ---------- */

.section { padding: 88px 0; }
.section.tint { background: var(--mist); }

.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}

.shift-clock {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 0.75fr;
  gap: 32px;
  align-items: center;
}
.clock-device .device { width: 210px; }
.clock-device::before { display: none; }

/* Real-world footage panel in the hero */
.film-stage { position: relative; }
.film-stage::before {
  content: "";
  position: absolute;
  inset: 12% -6% -6% -6%;
  background: radial-gradient(ellipse at 50% 40%, var(--mist-deep), transparent 70%);
  z-index: 0;
}
.film {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: visible;
  box-shadow: var(--shadow-lift);
}
.film video {
  display: block;
  width: 100%;
  border-radius: 20px;
  background: #0f2540;
}
.film-caption {
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--body);
  margin-top: 16px;
}
.clock-col {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 30px 22px;
}
.clock-col.after { border-color: var(--verified); border-width: 1.5px; }
.clock-col h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.clock-col.after h3 .pill { background: var(--verified); }
.clock-col h3 .pill {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  background: var(--body);
  border-radius: 999px;
  padding: 3px 10px;
  letter-spacing: 0.05em;
}
.clock-line {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
  padding: 11px 0;
  border-top: 1px dashed var(--line);
  font-size: 15.5px;
}
.clock-line .t { font-family: var(--font-mono); font-size: 13.5px; color: var(--ink); padding-top: 2px; }
.clock-line .v { color: var(--verified); font-weight: 600; }

/* ---------- Bento grid ---------- */

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  grid-column: span 2;
  transition: box-shadow 0.2s, transform 0.2s;
}
.tile:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.tile.wide { grid-column: span 3; }
.bento.grid3 { grid-template-columns: repeat(3, 1fr); }
.bento.grid3 .tile { grid-column: auto; }
.tile .ic { display: block; height: 34px; width: auto; margin-bottom: 16px; }
.tile img.shot {
  width: 100%;
  border-radius: 8px;
  margin-top: 18px;
  border: 1px solid var(--line);
}
.tile h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.tile p { font-size: 15px; }
.tile a.more { font-size: 14px; font-weight: 600; display: inline-block; margin-top: 12px; }

/* ---------- Outcomes ---------- */

.outcomes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.outcome {
  border-top: 3px solid var(--blue);
  background: var(--white);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
}
.outcome .num {
  font-family: var(--font-mono);
  font-size: 34px;
  font-weight: 600;
  color: var(--ink);
  display: block;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.outcome p { font-size: 14.5px; }

.outcome-source {
  margin-top: 28px;
  font-size: 14px;
  color: var(--body);
}

/* ---------- Trust band ---------- */

.trust-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.trust-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.trust-card .check {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--verified);
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.trust-card h3 { font-size: 16.5px; font-weight: 600; margin-bottom: 4px; }
.trust-card p { font-size: 14.5px; }

/* ---------- Quote ---------- */

.quote {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.quote blockquote {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.6vw, 27px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: 22px;
}
.quote cite { font-style: normal; font-size: 15px; }
.quote cite b { color: var(--ink); }

/* ---------- CTA banner ---------- */

.cta-banner {
  background: linear-gradient(120deg, var(--blue-deep), var(--blue) 55%, var(--sky));
  border-radius: 20px;
  color: #fff;
  padding: 56px;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 32px;
  align-items: center;
}
.cta-banner h2 { color: #fff; font-size: clamp(26px, 3.2vw, 36px); font-weight: 600; margin-bottom: 10px; }
.cta-banner p { color: #d6ebf9; font-size: 16.5px; }
.cta-banner .actions { display: flex; flex-direction: column; gap: 12px; }
.cta-banner .btn-primary { background: #fff; color: var(--blue-deep); }
.cta-banner .btn-ghost { background: transparent; color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.5); }

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 40px;
  margin-top: 24px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-grid h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 9px; }
.footer-grid a { color: var(--body); }
.footer-grid a:hover { color: var(--blue); }
.footer-brand img { height: 28px; margin-bottom: 14px; }
.footer-legal {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--body);
  font-size: 13px;
}

/* ---------- Demo modal ---------- */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 37, 64, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: 18px;
  max-width: 440px;
  width: 100%;
  padding: 36px;
  box-shadow: var(--shadow-lift);
  position: relative;
}
.modal h3 { font-size: 24px; font-weight: 600; margin-bottom: 6px; }
.modal .promise { font-size: 15px; margin-bottom: 24px; }
.modal .promise .v { color: var(--verified); font-weight: 600; }
.modal label {
  display: block;
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  margin: 14px 0 5px;
}
.modal textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: 9px;
  background: var(--white);
  color: var(--ink);
  resize: vertical;
}
.modal textarea:focus { border-color: var(--sky); outline: none; }
.modal input, .modal select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: 9px;
  background: var(--white);
  color: var(--ink);
}
.modal input:focus, .modal select:focus { border-color: var(--sky); outline: none; }
.modal .btn-primary { width: 100%; margin-top: 22px; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: 0;
  font-size: 22px;
  color: var(--body);
  cursor: pointer;
  padding: 6px 10px;
}
.modal .sent {
  display: none;
  text-align: center;
  padding: 30px 0 10px;
}
.modal .sent .check-big {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--verified);
  color: #fff;
  font-size: 26px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}

/* ---------- Page hero (inner pages) ---------- */

.page-hero { padding: 64px 0 8px; }
.page-hero h1 {
  font-size: clamp(32px, 4.2vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  max-width: 16em;
}
.page-hero .sub { font-size: 18px; max-width: 36em; }

/* Split page hero with product screenshot */
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 48px;
  align-items: center;
}
.hero-shot .device { width: 235px; padding: 10px; }
.hero-shot .device::after { width: 74px; height: 13px; top: 10px; }
.hero-shot .device img.screen { border-radius: 20px; }
.hero-shot::before { inset: 6% -10% 0 -10%; }
@media (max-width: 960px) {
  .page-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-shot { justify-content: flex-start; }
}

/* ---------- Pricing ---------- */

.illustrative {
  background: #fff7e6;
  border: 1px solid #f0d9a8;
  color: #7a5a17;
  font-family: var(--font-mono);
  font-size: 13px;
  border-radius: 10px;
  padding: 10px 16px;
  display: inline-block;
  margin-top: 18px;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 48px 0 20px;
  align-items: stretch;
}
.plan {
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  background: var(--white);
}
.plan.featured { border-color: var(--blue); box-shadow: var(--shadow); }
.plan .flag {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 8px;
  min-height: 16px;
}
.plan h3 { font-size: 21px; font-weight: 600; margin-bottom: 4px; }
.plan .who { font-size: 14px; min-height: 44px; margin-bottom: 14px; }
.plan .price { font-family: var(--font-mono); color: var(--ink); margin-bottom: 2px; }
.plan .price b { font-size: 38px; font-weight: 600; letter-spacing: -0.02em; }
.plan .per { font-size: 13px; margin-bottom: 20px; }
.plan ul { list-style: none; margin-bottom: 24px; }
.plan li {
  font-size: 14.5px;
  padding: 7px 0 7px 26px;
  position: relative;
  border-top: 1px dashed var(--line);
}
.plan li::before {
  content: "✓";
  position: absolute;
  left: 2px;
  color: var(--verified);
  font-weight: 700;
}
.plan li.na { color: #9db0c2; }
.plan li.na::before { content: "—"; color: #c4d2df; }
.plan .btn { margin-top: auto; }

/* Full-width pricing panel (replaces the single lonely plan card) */
.price-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.5fr;
  gap: 12px 48px;
  border: 1.5px solid var(--blue);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--white);
  padding: 40px 44px 0;
  margin: 48px 0 20px;
}
.pp-left { display: flex; flex-direction: column; align-items: flex-start; padding-bottom: 36px; }
.pp-left .flag {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 8px;
}
.pp-left .price { font-family: var(--font-mono); color: var(--ink); }
.pp-left .price b { font-size: 52px; font-weight: 600; letter-spacing: -0.02em; }
.pp-left .per { font-size: 14px; margin: 2px 0 26px; }
.pp-right { padding-bottom: 28px; }
.pp-includes {
  list-style: none;
  columns: 2;
  column-gap: 40px;
}
.pp-includes li {
  font-size: 14.5px;
  padding: 7px 0 7px 26px;
  position: relative;
  break-inside: avoid;
  border-bottom: 1px dashed var(--line);
}
.pp-includes li::before {
  content: "✓";
  position: absolute;
  left: 2px;
  color: var(--verified);
  font-weight: 700;
}
.pp-tiers {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  padding: 16px 0 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--body);
}
.pp-tiers .tiers-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
}
.pp-tiers .tier b { color: var(--ink); font-weight: 500; margin-right: 6px; }

@media (max-width: 820px) {
  .price-panel { grid-template-columns: 1fr; padding: 30px 26px 0; }
  .pp-includes { columns: 1; }
}

.compare { margin-top: 72px; }
.compare table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  background: var(--white);
}
.compare th, .compare td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.compare thead th {
  font-family: var(--font-head);
  font-size: 14px;
  background: var(--mist);
  position: sticky;
  top: 68px;
}
.compare td.y { color: var(--verified); font-weight: 700; }
.compare td.n { color: #c4d2df; }
.compare tr.rowgroup td {
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--body);
  background: var(--mist);
  padding: 8px 16px;
}

.faq { max-width: 760px; margin-top: 72px; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.faq summary {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 16.5px;
  color: var(--ink);
  cursor: pointer;
}
.faq details p { padding-top: 10px; font-size: 15px; }

/* ---------- Savings calculator ---------- */

.calc-controls label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
}
.calc-controls input[type="range"] {
  width: 100%;
  max-width: 620px;
  accent-color: var(--blue);
}
.calc-devices {
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--ink);
  margin-top: 10px;
}
.calc-devices span { font-weight: 600; color: var(--blue); }

/* Solutions two-column dropdown (industries | outcomes) */
.dropdown.sol-mega { grid-template-columns: 1fr 1fr; width: min(640px, calc(100vw - 48px)); }

/* Platform tour stops: alternating text/media rows */
.tour-stop {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  padding: 44px 0;
  border-top: 1px solid var(--line);
}
.tour-stop:first-child { border-top: 0; padding-top: 0; }
.tour-stop.flip > div:first-child { order: 2; }
.tour-stop .n {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--blue);
  display: block;
  margin-bottom: 12px;
}
.tour-stop h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.tour-stop .device { width: 220px; padding: 10px; }
.tour-stop .device::after { width: 70px; height: 12px; top: 10px; }
.tour-stop .device img.screen, .tour-stop .device video { border-radius: 20px; }
@media (max-width: 900px) {
  .tour-stop { grid-template-columns: 1fr; gap: 28px; }
  .tour-stop.flip > div:first-child { order: 0; }
  .dropdown.sol-mega { grid-template-columns: 1fr; }
}

/* ---------- Solutions page ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: step;
}
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.step .n {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--blue);
  display: block;
  margin-bottom: 12px;
}
.step h3 { font-size: 17.5px; font-weight: 600; margin-bottom: 8px; }
.step p { font-size: 15px; }

.cost-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cost {
  background: var(--white);
  border-left: 3px solid #c0504e;
  box-shadow: var(--shadow);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px;
}
.cost .num { font-family: var(--font-mono); font-size: 28px; font-weight: 600; color: var(--ink); display: block; margin-bottom: 4px; }
.cost p { font-size: 14.5px; }

/* ---------- Reveal on scroll ---------- */

/* Content is visible by default; JS opts elements into the entrance animation
   by adding .reveal-pending, then .in when they scroll into view. No JS, no
   IntersectionObserver, hidden pane — the page still renders fully. */
.reveal-pending { opacity: 0; transform: translateY(16px); transition: opacity 0.5s, transform 0.5s; }
.reveal-pending.in { opacity: 1; transform: none; }
/* Slide-in-from-right variant; .reveal-delay staggers it behind its neighbor */
.reveal-pending.reveal-right { transform: translateX(64px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.reveal-pending.reveal-right.in { transform: none; }
.reveal-pending.reveal-delay { transition-delay: 0.25s; }
@media (prefers-reduced-motion: reduce) {
  .reveal-pending { opacity: 1; transform: none; transition: none; }
  .tile { transition: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .film-stage { order: -1; }
  .shift-clock { grid-template-columns: 1fr; }
  .clock-device { justify-content: flex-start; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .tile, .tile.wide { grid-column: span 1; }
  .outcomes, .trust-band { grid-template-columns: repeat(2, 1fr); }
  .shift-clock, .plans, .steps, .cost-strip { grid-template-columns: 1fr; }
  .cta-banner { grid-template-columns: 1fr; padding: 40px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 20px;
    box-shadow: var(--shadow-lift);
  }
  .nav-menu.open { display: flex; }
  .dropdown { position: static; box-shadow: none; border: 0; display: none; padding-left: 12px; }
  .dropdown.mega { width: auto; grid-template-columns: 1fr; gap: 0; padding: 0 0 8px 12px; }
  .mega-col + .mega-col { border-left: 0; padding-left: 0; }
  .nav-burger {
    display: block;
    margin-left: auto;
    background: none;
    border: 1.5px solid var(--line);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 18px;
    color: var(--ink);
    cursor: pointer;
  }
  .nav .btn-primary { margin-left: auto; padding: 9px 14px; font-size: 13px; order: 1; }
  .nav { gap: 10px; }
  .nav-burger { margin-left: 0; order: 2; }
}

@media (max-width: 620px) {
  .outcomes, .trust-band, .bento { grid-template-columns: 1fr; }
  .hero { padding-top: 44px; }
  .section { padding: 60px 0; }
}
