:root {
  --ink: #08111f;
  --ink-2: #0d1c31;
  --surface: #ffffff;
  --line: rgba(148, 163, 184, 0.22);
  --muted: #6b7280;
  --text: #111827;
  --green: #16a34a;
  --green-2: #22c55e;
  --blue: #2563eb;
  --cyan: #06b6d4;
  --amber: #f59e0b;
  --shadow: 0 24px 80px rgba(5, 12, 25, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f4f7fb;
  color: var(--text);
  font-family: "DM Sans", Arial, sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 16px clamp(18px, 4vw, 54px);
  background: rgba(247, 250, 252, 0.84);
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand span span {
  color: var(--green);
}

.brand-mark {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(34, 197, 94, 0.96), rgba(6, 182, 212, 0.88)),
    #16a34a;
  box-shadow: 0 10px 28px rgba(22, 163, 74, 0.28);
}

/* Header brand logo (horizontal SVG). Replaced the green-dot + text wordmark
   2026-05-24. Height drives the visual size; width is auto so the natural
   8.6:1 aspect of the horizontal SVG is preserved. */
.brand-logo {
  height: 37px;
  width: auto;
  display: block;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 42px;
  margin-left: auto;
}

.desktop-nav a,
.ghost-link {
  color: #4b5563;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.18s ease, color 0.18s ease;
}

.desktop-nav a:hover,
.ghost-link:hover {
  color: var(--ink);
  transform: translateY(-2px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Header-scoped overrides so the larger nav + logo (2026-05-24 bump) have
   visually balanced Log in / Start free trial controls. Hero-section CTAs
   still use the default `.solid-link` / `.primary-cta` size. */
.header-actions .ghost-link {
  font-size: 15px;
}
.header-actions .solid-link {
  font-size: 14px;
  min-height: 44px;
  padding: 0 18px;
}

.solid-link,
.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.solid-link,
.primary-cta {
  color: #ffffff;
  background: var(--green);
  box-shadow: 0 14px 34px rgba(22, 163, 74, 0.28);
}

.solid-link:hover,
.primary-cta:hover {
  transform: translateY(-3px);
  background: #1db954;
  box-shadow: 0 18px 40px rgba(22, 163, 74, 0.46);
}

.secondary-cta {
  color: #d9f99d;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.secondary-cta:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.36);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.hero-shell {
  min-height: 94vh;
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(520px, 1.28fr);
  align-items: center;
  gap: clamp(28px, 4.6vw, 64px);
  padding: 110px clamp(18px, 5vw, 72px) 46px;
  color: #ffffff;
  background:
    radial-gradient(circle at 70% 35%, rgba(6, 182, 212, 0.28), transparent 32%),
    radial-gradient(circle at 42% 72%, rgba(34, 197, 94, 0.18), transparent 28%),
    linear-gradient(135deg, #07111f 0%, #0d1b2d 48%, #111827 100%);
  min-width: 0;
}

.hero-copy {
  max-width: 540px;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: #b7c6d8;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green-2);
  box-shadow: 0 0 18px rgba(34, 197, 94, 0.88);
}

h1,
h2,
h3 {
  font-family: "DM Sans", sans-serif;
  letter-spacing: 0;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(36px, 3.2vw, 48px);
  line-height: 0.95;
  font-weight: 800;
}

/* Brand-matching green accent on "Dash" in the hero h1. Matches the green
   used in the storefront header logo SVG and the --green token. */
.hero-title-accent {
  color: var(--green);
}

.hero-subtitle {
  margin: 22px 0 0;
  max-width: 540px;
  color: #ecfeff;
  font-size: clamp(22px, 2.3vw, 31px);
  line-height: 1.12;
  font-weight: 700;
}

.hero-copyline {
  margin: 18px 0 0;
  max-width: 560px;
  color: #aebdd0;
  font-size: 16px;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 36px;
}

.signal-row {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(390px, calc(100% - 290px));
  min-width: 310px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 8px;
  background: rgba(9, 18, 32, 0.74);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.signal-row div {
  min-width: 0;
  padding: 10px 12px;
  background: rgba(8, 17, 31, 0.36);
}

.signal-row strong {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 21px;
  line-height: 1;
}

.signal-row span {
  display: block;
  margin-top: 6px;
  color: #aebdd0;
  font-family: "DM Mono", monospace;
  font-size: 8px;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 620px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(34, 197, 94, 0.16), transparent 44%),
    rgba(8, 17, 31, 0.32);
  box-shadow: 0 32px 110px rgba(0, 0, 0, 0.36);
}

#command-canvas {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 620px;
}

.command-label-layer {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  overflow: hidden;
}

.map-pin-card {
  position: absolute;
  width: max-content;
  min-width: 148px;
  max-width: 210px;
  padding: 9px 11px;
  border: 1px solid rgba(125, 211, 252, 0.28);
  border-radius: 7px;
  background: rgba(9, 18, 32, 0.76);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(13px);
  transform: translate(-50%, -100%);
  transition: opacity 0.12s ease;
}

.map-pin-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 10px;
  height: 10px;
  border-right: 1px solid rgba(125, 211, 252, 0.24);
  border-bottom: 1px solid rgba(125, 211, 252, 0.24);
  background: rgba(9, 18, 32, 0.76);
  transform: translateX(-50%) rotate(45deg);
}

.map-pin-card.is-confirmed {
  border-color: rgba(34, 197, 94, 0.48);
}

.map-pin-card.is-loose {
  border-color: rgba(245, 158, 11, 0.52);
}

.map-pin-card span {
  display: block;
  color: #7dd3fc;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  text-transform: uppercase;
}

.map-pin-card strong {
  display: block;
  margin-top: 3px;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.1;
}

.map-pin-card em {
  display: block;
  margin-top: 4px;
  color: #b9c7d8;
  font-size: 11px;
  font-style: normal;
}

.scene-hud,
.floating-card {
  position: absolute;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 8px;
  background: rgba(9, 18, 32, 0.74);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.scene-hud {
  padding: 14px 16px;
  min-width: 210px;
}

.scene-hud-left {
  left: 18px;
  top: 18px;
}

.scene-hud-right {
  right: 18px;
  bottom: 18px;
}

.hud-label,
.floating-card span,
.section-heading span,
.feature-copy > span,
.cta-band span,
.proof-strip span {
  display: block;
  color: #7dd3fc;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.scene-hud strong,
.floating-card strong {
  display: block;
  margin-top: 5px;
  font-size: 14px;
}

.scene-hud p {
  margin: 4px 0 0;
  color: #aebdd0;
  font-size: 12px;
}

.floating-card {
  padding: 11px 13px;
  min-width: 190px;
}

.card-one {
  left: 11%;
  bottom: 14%;
}

.card-two {
  right: 13%;
  top: 22%;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1180px;
  margin: -34px auto 0;
  position: relative;
  z-index: 5;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.proof-strip div {
  padding: 20px 22px;
  background: var(--surface);
}

.proof-strip span {
  color: var(--muted);
}

.proof-strip strong {
  display: block;
  margin-top: 5px;
  font-size: 18px;
}

.section-block {
  max-width: 1180px;
  margin: 0 auto;
  padding: 118px clamp(18px, 3vw, 28px) 0;
}

.section-block + .section-block {
  margin-top: 42px;
}

.section-heading {
  max-width: 760px;
}

.section-heading span,
.feature-copy > span,
.cta-band span {
  color: var(--green);
}

.section-heading h2,
.feature-copy h2,
.cta-band h2 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
}

.section-heading h2 .heading-dash {
  display: inline;
  color: inherit;
  font-family: inherit;
  font-size: 0.72em;
  line-height: 1;
  text-transform: none;
  vertical-align: 0.06em;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.workflow-grid article,
.command-grid article {
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}

.workflow-grid article span {
  color: var(--blue);
  font-family: "DM Mono", monospace;
  font-size: 11px;
}

.workflow-grid h3,
.command-grid h3 {
  margin: 38px 0 10px;
  color: var(--ink);
  font-size: 24px;
}

.workflow-grid p,
.feature-list p,
.command-grid p {
  margin: 0;
  color: #5b6472;
  font-size: 14px;
  line-height: 1.58;
}

/* ─────────────────────────────────────────────────────────────────────────
   "How it works" workflow cards — redesign (2026-05-24)
   Layered effects:
     A. Big translucent backdrop number behind each card
     C. Hover lift + soft green glow + cursor-follow spotlight
     S. Scroll-driven screenshot viewport / panning preview
     F. Lucide icon per step (inline SVG in HTML)
     G. Connected timeline rail behind the card row with a dot at each step
     T3. Monospaced step-label line under the heading
   Plus subtle mesh-gradient section backdrop + scroll fade-in reveal.
   Disabled cleanly under prefers-reduced-motion.
   ───────────────────────────────────────────────────────────────────────── */

/* --- Section: mesh gradient backdrop ------------------------------------ */
.workflow-section,
.split-band,
.reportops-section {
  position: relative;
  isolation: isolate;
}

.workflow-section .section-heading {
  max-width: 840px;
}

.workflow-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(60% 50% at 15% 0%, rgba(22, 163, 74, 0.08) 0%, rgba(22, 163, 74, 0) 60%),
    radial-gradient(50% 60% at 90% 35%, rgba(37, 99, 235, 0.072) 0%, rgba(37, 99, 235, 0) 65%),
    radial-gradient(40% 40% at 50% 100%, rgba(6, 182, 212, 0.064) 0%, rgba(6, 182, 212, 0) 70%);
  filter: blur(2px);
  animation: workflowMeshDrift 28s ease-in-out infinite alternate;
}

.split-band::before,
.reportops-section::before {
  content: "";
  position: absolute;
  inset: -42px -7vw;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(58% 48% at 10% 14%, rgba(22, 163, 74, 0.035) 0%, rgba(22, 163, 74, 0) 64%),
    radial-gradient(50% 60% at 90% 38%, rgba(37, 99, 235, 0.032) 0%, rgba(37, 99, 235, 0) 70%),
    linear-gradient(180deg, rgba(248, 250, 252, 0) 0%, rgba(248, 250, 252, 0.5) 100%);
  -webkit-mask-image: radial-gradient(ellipse 78% 72% at 50% 50%, #000 0%, #000 58%, transparent 100%);
  mask-image: radial-gradient(ellipse 78% 72% at 50% 50%, #000 0%, #000 58%, transparent 100%);
}

@keyframes workflowMeshDrift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(2%, -1%, 0) scale(1.05); }
}

/* --- Grid: cards row (no timeline rail; removed 2026-05-24 per design) ---
   Previously had a gradient line + dots connecting the 4 cards. Removed
   because the visual rail was distracting; per-step icon color (below)
   carries the pipeline progression instead. */
.workflow-section .workflow-grid {
  position: relative;
  margin-top: 28px;
}

/* --- Card: base layout + the backdrop number --------------------------- */
.workflow-card {
  position: relative;
  overflow: hidden;
  /* Cursor-follow spotlight position (set by workflow-effects.js) */
  --x: 50%;
  --y: 50%;
  --peek-x: 0%;
  --peek-y: 0%;
  /* No fixed min-height — the screenshot preview pane sets the floor */
  padding: 26px 22px 22px;
  /* Establish a stacking baseline so :hover can raise the card above
     its siblings cleanly via z-index. */
  z-index: 1;
  /* transition tuned in the duplicate .workflow-card block below — spring-feel */
}
/* Timeline dot above each card — removed 2026-05-24 along with the rail. */
/* Big translucent number sitting in the text portion of the card, below the
   screenshot preview pane. Subtler now (3%) since the screenshot is doing the
   visual work — this is just a quiet step-number watermark. */
.card-backdrop-number {
  position: absolute;
  bottom: -18px;
  right: -8px;
  font-family: "DM Sans", sans-serif;
  font-size: 120px;
  font-weight: 800;
  line-height: 1;
  color: var(--step-color, var(--ink));
  opacity: 0.06;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Screenshot preview pane at the top of each card. Real product UI sits here.
   Clip-path reveals top-to-bottom when the card enters viewport (.is-visible
   class added by workflow-effects.js IntersectionObserver). Image gets a
   subtle hover zoom + tinted overlay that matches the step's brand color. */
.workflow-card .card-preview {
  position: relative;
  /* Pull edges flush to the card border for a clean panel look. The card has
     padding: 26px 22px 22px, so negative margins push the preview to the
     card border on top/left/right, leaving 18px gap below. */
  width: calc(100% + 44px);
  aspect-ratio: 16 / 10;
  margin: -26px -22px 18px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: linear-gradient(135deg, var(--surface) 0%, #f1f5f9 100%);
  /* Clip-path starts fully clipped from the bottom; transitions to full reveal */
  clip-path: inset(0 0 100% 0);
  transition:
    clip-path 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    inset 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    margin 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.32s ease,
    box-shadow 0.32s ease;
}
.workflow-card.is-visible .card-preview {
  clip-path: inset(0 0 0 0);
}
.workflow-card .card-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Anchor each screenshot to its most important region. step-02 (the map)
     reads best centered; the data-heavy panels lead with their top-left. */
  object-position: center top;
  transform-origin: center;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.workflow-card[data-step="02"] .card-preview img {
  /* Map view — center on the Orlando pins so the route reads instantly */
  object-position: center center;
}
.workflow-card:hover .card-preview img {
  transform: none;
}
/* Subtle brand-tinted wash over the preview so it doesn't feel like a flat
   raster slap. Matches the step's color. */
.workflow-card .card-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(var(--step-color-rgb), 0) 60%,
    rgba(var(--step-color-rgb), 0.08) 100%
  );
  transition: opacity 0.32s ease;
}
.workflow-card:hover .card-preview::after {
  opacity: 0;
}

/* Card transition tuned for a snappier "pop" feel — cubic-bezier overshoots
   slightly so the lift has a touch of bounce instead of a flat slide. */
.workflow-card {
  transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.32s ease,
              filter 0.32s ease,
              box-shadow 0.32s ease,
              border-color 0.32s ease,
              min-height 0.32s ease;
}

/* Hover state — raise the hovered card ABOVE its siblings in stacking
   order so the lift visibly clears the neighbouring cards. The shrink-other-
   cards trick (`:has()` below) is what makes the "pop" actually read
   visually — the focal card looks closer because the neighbors recede. */
.workflow-card:hover {
  transform: translateY(-10px) scale(1.025);
  z-index: 5;
  border-color: rgba(22, 163, 74, 0.55);
  box-shadow:
    0 34px 72px rgba(15, 23, 42, 0.18),
    0 0 0 1.5px rgba(22, 163, 74, 0.30),
    0 28px 46px -14px rgba(22, 163, 74, 0.24);
}

/* When the grid contains a hovered card, dim + shrink the siblings so the
   focal card visually pops forward instead of just sitting a few pixels
   higher than its neighbors. Uses :has() — supported in all current evergreen
   browsers (Chrome 105+, Safari 15.4+, Firefox 121+). On older browsers the
   declaration is simply ignored and you still get the standalone lift. */
.workflow-grid:has(.workflow-card:hover) .workflow-card:not(:hover) {
  transform: none;
  opacity: 1;
  filter: none;
}

/* Auto-panning preview state. Once the workflow cards enter view on desktop,
   each card becomes a quiet screenshot window: the product image fills the
   card, pans left-to-right, and the body copy steps out of the way. */
@media (min-width: 900px) {
  .workflow-card.is-pan-active,
  .workflow-card:hover {
    min-height: 540px;
    padding: 0;
    transform: none;
    z-index: 6;
    border-color: rgba(var(--step-color-rgb), 0.46);
    box-shadow:
      0 38px 78px rgba(15, 23, 42, 0.176),
      0 0 0 1px rgba(var(--step-color-rgb), 0.208),
      0 24px 56px -22px rgba(var(--step-color-rgb), 0.368);
  }

  .workflow-card.is-pan-active .card-preview,
  .workflow-card:hover .card-preview {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    border: 0;
    clip-path: inset(0 0 0 0);
    z-index: 1;
  }

  .workflow-card.is-pan-active .card-preview img,
  .workflow-card:hover .card-preview img {
    width: 175%;
    height: 100%;
    max-width: none;
    margin: 0;
    object-fit: cover;
    animation: workflowPreviewPan 9s ease-in-out infinite alternate;
    transform: translate3d(var(--peek-x), var(--peek-y), 0);
  }

  .workflow-card[data-step="02"].is-pan-active .card-preview img,
  .workflow-card[data-step="02"]:hover .card-preview img {
    width: 150%;
  }

  .workflow-card.is-pan-active .card-preview::after,
  .workflow-card:hover .card-preview::after {
    opacity: 1;
    background:
      linear-gradient(180deg, rgba(8, 17, 31, 0) 0%, rgba(8, 17, 31, 0.02) 48%, rgba(255, 255, 255, 0.92) 80%, #ffffff 100%);
  }

  .workflow-card.is-pan-active .card-backdrop-number,
  .workflow-card:hover .card-backdrop-number {
    opacity: 0.10;
    z-index: 2;
  }

  .workflow-card.is-pan-active .card-inner,
  .workflow-card:hover .card-inner {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    padding: 120px 22px 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.88) 48%, #ffffff 100%);
  }

  .workflow-card.is-pan-active .card-inner h3,
  .workflow-card.is-pan-active .card-inner p,
  .workflow-card:hover .card-inner h3,
  .workflow-card:hover .card-inner p {
    display: none;
  }
}

@keyframes workflowPreviewPan {
  0% {
    object-position: left top;
    transform: translate3d(var(--peek-x), var(--peek-y), 0);
  }
  100% {
    object-position: right top;
    transform: translate3d(calc(-42% + var(--peek-x)), var(--peek-y), 0);
  }
}

/* Cursor-follow spotlight overlay (mousemove JS positions it) */
.workflow-card .card-spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s ease;
  background: radial-gradient(
    280px circle at var(--x) var(--y),
    rgba(22, 163, 74, 0.16),
    rgba(22, 163, 74, 0.06) 35%,
    transparent 70%
  );
  z-index: 0;
}
.workflow-card:hover .card-spotlight {
  opacity: 0;
}

/* Inner content stack: icon → meta line → heading → paragraph
   Icon + meta + heading are centered; paragraph stays left-aligned so the
   body copy still reads naturally. */
.workflow-card .card-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}
.workflow-card .card-inner p {
  text-align: left;
  margin-top: 4px;
}

/* Icon square — sits below the screenshot preview, above the meta line.
   Color comes from per-step CSS custom properties (--step-color +
   --step-color-rgb) set on each card by its [data-step] selector below.
   Step mapping:
     01 Intake          → green   (incoming claim)
     02 Optimize route  → blue    (active planning workflow)
     03 Confirm appts   → amber   (waiting / attention)
     04 Track → payment → cyan    (completion / financial outflow) */
.workflow-card .card-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    rgba(var(--step-color-rgb), 0.14),
    rgba(var(--step-color-rgb), 0.04)
  );
  border: 1px solid rgba(var(--step-color-rgb), 0.22);
  display: grid;
  place-items: center;
  color: var(--step-color);
  margin: 0 auto 4px;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.workflow-card .card-icon svg {
  width: 20px;
  height: 20px;
}
.workflow-card:hover .card-icon {
  transform: scale(1.10);
  border-color: rgba(var(--step-color-rgb), 0.55);
  box-shadow: 0 10px 24px -8px rgba(var(--step-color-rgb), 0.40);
}

/* Per-step color tokens. RGB triplets so we can compose them into rgba()
   for tints + borders without duplicating the hex everywhere. */
.workflow-card[data-step="01"] { --step-color: #16a34a; --step-color-rgb: 22, 163, 74;  } /* green */
.workflow-card[data-step="02"] { --step-color: #2563eb; --step-color-rgb: 37, 99, 235;  } /* blue */
.workflow-card[data-step="03"] { --step-color: #f59e0b; --step-color-rgb: 245, 158, 11; } /* amber */
.workflow-card[data-step="04"] { --step-color: #06b6d4; --step-color-rgb: 6, 182, 212;  } /* cyan */

/* Mono step-label line (T3). Color picks up the per-step CSS var so the
   "STEP 01 · INTAKE" caption matches the icon color above it. */
.workflow-card .card-meta {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--step-color);
  margin-top: 2px;
}

/* Override the legacy h3 spacing (the old layout pushed h3 down 38px to
   make room for the tiny "01" mono number; new layout has the meta line
   right above h3, so a tighter top margin is correct). */
.workflow-section .workflow-card h3 {
  margin: 4px 0 6px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.18;
}

/* --- Scroll fade-in reveal --------------------------------------------- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.workflow-card.reveal-on-scroll[data-step="01"] { transition-delay: 0ms; }
.workflow-card.reveal-on-scroll[data-step="02"] { transition-delay: 80ms; }
.workflow-card.reveal-on-scroll[data-step="03"] { transition-delay: 160ms; }
.workflow-card.reveal-on-scroll[data-step="04"] { transition-delay: 240ms; }

/* --- Reduced motion: kill the moving / heavy effects ------------------- */
@media (prefers-reduced-motion: reduce) {
  .workflow-section::before { animation: none; }
  .reveal-on-scroll { opacity: 1; transform: none; transition: none; }
  .workflow-card { transition: none; }
  .workflow-card:hover { transform: none; }
  .workflow-card:hover .card-icon { transform: none; }
  .workflow-card .card-spotlight { display: none; }
  /* Don't shrink / fade siblings when motion is reduced */
  .workflow-grid:has(.workflow-card:hover) .workflow-card:not(:hover) {
    transform: none;
    opacity: 1;
    filter: none;
  }
}

/* --- Mobile / narrow: stack cards vertically ---------------------------- */
@media (max-width: 880px) {
  .workflow-section .workflow-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .workflow-card {
    min-height: 0;
  }
  .card-backdrop-number {
    font-size: 96px;
  }
}

.split-band {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
}

.product-panel {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 246, 255, 0.94)),
    #f8fbff;
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.13);
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  padding: 12px 12px 18px;
  border-bottom: 1px solid rgba(37, 99, 235, 0.12);
}

.panel-topline span,
.panel-topline strong,
.drive-line {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  color: #2563eb;
  text-transform: uppercase;
}

.panel-route {
  position: relative;
  height: 386px;
  padding: 16px 4px 4px;
  overflow: hidden;
}

.panel-route::before,
.panel-route::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  height: 42px;
  pointer-events: none;
}

.panel-route::before {
  top: 0;
  background: linear-gradient(180deg, #f8fbff, rgba(248, 251, 255, 0));
}

.panel-route::after {
  bottom: 0;
  background: linear-gradient(0deg, #f8fbff, rgba(248, 251, 255, 0));
}

.route-scroll {
  height: 100%;
  overflow: hidden;
}

.route-track {
  display: grid;
  animation: routeScroll 18s linear infinite;
}

.route-stop {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.route-stop span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #60a5fa;
  color: #ffffff;
  font-family: "DM Mono", monospace;
  font-size: 12px;
  font-weight: 700;
}

.route-stop.confirmed {
  border-color: rgba(22, 163, 74, 0.26);
  background: rgba(240, 253, 244, 0.95);
}

.route-stop.confirmed span {
  background: var(--green);
}

.route-stop.active {
  border-color: rgba(37, 99, 235, 0.42);
  background: rgba(219, 234, 254, 0.98);
  box-shadow:
    0 0 0 1px rgba(37, 99, 235, 0.08),
    0 18px 38px rgba(37, 99, 235, 0.16);
  animation: activeRoutePulse 2.8s ease-in-out infinite;
}

.route-stop.active span {
  background: var(--blue);
}

.route-stop.amber {
  border-color: rgba(245, 158, 11, 0.32);
  background: rgba(255, 251, 235, 0.98);
}

.route-stop.amber span {
  background: var(--amber);
}

.route-stop strong {
  overflow: hidden;
  color: var(--ink);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.route-stop em {
  color: #334155;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-style: normal;
}

.route-stop b {
  grid-column: 2 / 4;
  margin-top: -3px;
  color: #64748b;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
}

.route-stop.confirmed b {
  color: var(--green);
}

.route-stop.active b {
  color: var(--blue);
}

.route-stop.amber b {
  color: #b45309;
}

.drive-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 9px;
  padding: 8px 18px;
  text-transform: none;
  color: #64748b;
}

.drive-line::before,
.drive-line::after {
  content: "";
  height: 1px;
  background: rgba(37, 99, 235, 0.14);
}

@keyframes routeScroll {
  0%, 10% {
    transform: translateY(0);
  }
  92%, 100% {
    transform: translateY(-58%);
  }
}

@keyframes activeRoutePulse {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(4px);
  }
}

.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.feature-list div {
  padding-left: 16px;
  border-left: 3px solid var(--green);
}

.feature-list strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
}

.feature-list p {
  margin-top: 6px;
}

.reportops-board {
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 12%, rgba(34, 197, 94, 0.12), transparent 26%),
    radial-gradient(circle at 88% 24%, rgba(37, 99, 235, 0.12), transparent 28%),
    #ffffff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
}

.reportops-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
}

.reportops-topline span,
.reportops-summary span,
.report-card span {
  color: var(--green);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.reportops-topline strong {
  color: var(--ink);
  font-size: 18px;
}

.reportops-window {
  position: relative;
  overflow: hidden;
  padding: 28px 0;
}

.reportops-window::before,
.reportops-window::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 90px;
  pointer-events: none;
}

.reportops-window::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0));
}

.reportops-window::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff, rgba(255, 255, 255, 0));
}

.reportops-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: reportPipeline 26s linear infinite;
}

.report-card {
  width: 230px;
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.report-card strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 23px;
  line-height: 1;
}

.report-card em {
  display: block;
  margin-top: 8px;
  color: #5b6472;
  font-size: 13px;
  font-style: normal;
}

.report-card b {
  display: inline-flex;
  margin-top: 16px;
  padding: 6px 9px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--blue);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  font-weight: 700;
}

.report-card.unscheduled {
  border-color: rgba(245, 158, 11, 0.32);
  background: #fffbeb;
}

.report-card.unscheduled span {
  color: #b45309;
}

.report-card.unscheduled b {
  background: var(--amber);
}

.report-card.inspected {
  border-color: rgba(6, 182, 212, 0.32);
  background: #ecfeff;
}

.report-card.inspected span {
  color: var(--cyan);
}

.report-card.inspected b {
  background: var(--cyan);
}

.report-card.writing {
  border-color: rgba(37, 99, 235, 0.32);
  background: #eff6ff;
}

.report-card.writing span {
  color: var(--blue);
}

.report-card.review {
  border-color: rgba(37, 99, 235, 0.26);
  background: #f8fafc;
}

.report-card.review span {
  color: #475569;
}

.report-card.review b {
  background: #64748b;
}

.report-card.paid {
  border-color: rgba(22, 163, 74, 0.42);
  background: #f0fdf4;
  box-shadow:
    0 0 0 1px rgba(34, 197, 94, 0.12),
    0 20px 46px rgba(22, 163, 74, 0.14);
}

.report-card.paid strong {
  color: #166534;
}

.report-card.paid b {
  background: var(--green);
}

.reportops-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(148, 163, 184, 0.22);
  background: #f8fafc;
}

.reportops-summary div {
  padding: 16px 20px;
  border-right: 1px solid rgba(148, 163, 184, 0.18);
}

.reportops-summary div:last-child {
  border-right: none;
}

.reportops-summary strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 28px;
  line-height: 1;
}

@keyframes reportPipeline {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.command-section {
  padding-bottom: 92px;
}

.command-section .section-heading {
  max-width: 840px;
}

.command-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.command-grid article {
  min-height: 210px;
}

.cta-band {
  max-width: 1180px;
  margin: 42px auto 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(22, 163, 74, 0.96), rgba(37, 99, 235, 0.92)),
    var(--green);
  box-shadow: var(--shadow);
}

.cta-band h2 {
  max-width: 760px;
  color: #ffffff;
  font-size: clamp(26px, 4vw, 44px);
}

.cta-band span {
  color: #dcfce7;
}

.cta-band .primary-cta {
  color: var(--ink);
  background: #ffffff;
  box-shadow: none;
  flex-shrink: 0;
}

.cta-band .primary-cta:hover {
  transform: translateY(-3px);
  background: #f0fdf4;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

/* Footer is now Tailwind-managed — no custom CSS needed */

/* trial note below hero CTAs */
.trial-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 14px 0 20px;
}

/* cta-band with two action buttons */
.cta-band .cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cta-band p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin: 6px 0 0;
}

.cta-band .ghost-cta {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.45);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.18s;
}

.cta-band .ghost-cta:hover {
  transform: translateY(-3px);
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .hero-shell,
  .split-band {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 520px;
  }

  #command-canvas {
    min-height: 520px;
  }

  .workflow-grid,
  .command-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 12px 14px;
  }

  .header-actions {
    margin-left: auto;
  }

  .ghost-link {
    display: none;
  }

  .solid-link {
    min-height: 36px;
    padding: 0 11px;
    font-size: 12px;
  }

  .hero-shell {
    min-height: auto;
    padding: 92px 14px 34px;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }

  .hero-copy h1 {
    font-size: 31px;
    line-height: 1;
  }

  .hero-subtitle {
    font-size: 24px;
  }

  .hero-copyline {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-cta,
  .secondary-cta {
    width: 100%;
  }

  .signal-row,
  .proof-strip,
  .workflow-grid,
  .reportops-summary,
  .command-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  #command-canvas {
    width: 100%;
    max-width: 100%;
    min-height: 430px;
  }

  .scene-hud {
    min-width: 0;
    max-width: 190px;
    padding: 10px 11px;
  }

  .scene-hud-right {
    right: 10px;
    bottom: 12px;
  }

  .scene-hud-left {
    left: 10px;
    top: 10px;
  }

  .signal-row {
    left: 10px;
    right: auto;
    bottom: 12px;
    width: 150px;
    min-width: 0;
    grid-template-columns: 1fr;
  }

  .signal-row div {
    display: grid;
    grid-template-columns: 36px 1fr;
    align-items: center;
    gap: 8px;
    padding: 7px 9px;
  }

  .signal-row strong {
    font-size: 15px;
  }

  .signal-row span {
    margin-top: 0;
    font-size: 6.5px;
    white-space: normal;
    line-height: 1.2;
  }

  .floating-card {
    display: none;
  }

  .map-pin-card {
    min-width: 132px;
    max-width: 170px;
    padding: 8px 9px;
  }

  .map-pin-card span {
    font-size: 8px;
  }

  .map-pin-card strong {
    font-size: 12px;
  }

  .map-pin-card em {
    font-size: 10px;
  }

  .proof-strip {
    margin: 0 14px;
  }

  .section-block {
    padding: 70px 14px 0;
  }

  .reportops-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .reportops-window::before,
  .reportops-window::after {
    width: 34px;
  }

  .report-card {
    width: 204px;
    min-height: 138px;
    padding: 15px;
  }

  .report-card strong {
    font-size: 20px;
  }

  .reportops-summary div {
    border-right: none;
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  }

  .reportops-summary div:last-child {
    border-bottom: none;
  }

  .workflow-grid article,
  .command-grid article {
    min-height: 0;
  }

  .workflow-grid h3,
  .command-grid h3 {
    margin-top: 26px;
  }

  .product-panel {
    padding: 12px;
  }

  .route-stop {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .route-stop em,
  .route-stop b {
    grid-column: 2;
  }

  .cta-band {
    margin: 42px 14px 34px;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
  }

}

/* ── Mobile app section ─────────────────────────────── */
.mobile-section {
  padding-bottom: 88px;
}
.mobile-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 60px);
}
.mobile-copy .mobile-eyebrow {
  display: inline-block;
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  background: rgba(37,99,235,0.08);
  padding: 5px 12px;
  border-radius: 99px;
  margin-bottom: 18px;
}
.mobile-copy h2 {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  line-height: 1.2;
}
.mobile-copy > p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 480px;
}
.mobile-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  border-radius: 10px;
  padding: 10px 16px;
  min-width: 160px;
  position: relative;
}
.store-badge-soon { opacity: 0.92; }
.store-badge-soon::after {
  content: "Soon";
  position: absolute;
  top: -8px;
  right: -8px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  background: var(--blue);
  padding: 2px 7px;
  border-radius: 99px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.store-badge svg { flex-shrink: 0; }
.store-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.store-badge-text small {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.store-badge-text strong {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 2px;
}
.mobile-trial-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}
.beta-signup {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 420px;
}
.beta-signup-label {
  font-size: 0.85rem;
  color: var(--ink);
  font-weight: 600;
  margin: 0 0 2px;
}
.beta-signup-row {
  display: flex;
  gap: 8px;
}
.beta-signup-row input {
  flex: 1;
  font-family: "DM Sans", sans-serif;
  font-size: 0.92rem;
  color: var(--ink);
  background: #f8fafc;
  border: 1.5px solid rgba(148,163,184,0.3);
  border-radius: 10px;
  padding: 11px 13px;
  outline: none;
  min-width: 0;
}
.beta-signup-row input:focus {
  border-color: var(--blue);
  background: #fff;
}
.beta-signup-row button {
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 11px 18px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.18s;
}
.beta-signup-row button:hover { opacity: 0.88; }
.beta-signup-row button:disabled { opacity: 0.5; cursor: not-allowed; }
.beta-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.beta-turnstile {
  min-height: 65px;
}
.beta-status {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}
.beta-status.is-error { color: #b91c1c; font-weight: 600; }
.beta-status.is-success { color: var(--green); font-weight: 600; }
.mobile-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ── Phone mockup ──────────────────────────────────────── */
.phone-mock {
  position: relative;
  width: 290px;
  height: 590px;
  background: #0b1422;
  border-radius: 38px;
  padding: 12px 10px;
  box-shadow:
    0 30px 70px rgba(5,12,25,0.22),
    0 12px 30px rgba(5,12,25,0.14),
    inset 0 0 0 2px #1a2438;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
}
.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  background: #04070d;
  border-radius: 50%;
  z-index: 3;
  box-shadow: inset 0 0 0 1px #1a2438;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: #f4f6fa;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}
.phone-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  color: #0b1422;
  padding: 9px 22px 6px;
  background: #fff;
}
.phone-statusbar-right {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.phone-statusbar-right svg { color: #0b1422; }
.phone-batt {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 9px;
  border: 1px solid #0b1422;
  border-radius: 2px;
  margin-left: 2px;
}
.phone-batt::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 2px;
  width: 2px;
  height: 5px;
  background: #0b1422;
  border-radius: 0 1px 1px 0;
}
.phone-batt i {
  position: absolute;
  inset: 1px;
  background: #0b1422;
  border-radius: 1px;
  width: 12px;
}
.phone-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #fff;
  overflow: hidden;
}
.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 14px 8px;
}
.phone-header strong {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  display: block;
  line-height: 1.1;
}
.phone-header p {
  font-size: 10px;
  color: var(--muted);
  margin: 2px 0 0;
}
.phone-header-actions {
  display: flex;
  gap: 5px;
}
.phone-chip-sm {
  font-size: 9px;
  font-weight: 600;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 4px 7px;
}
.phone-weekstrip {
  padding: 6px 14px 4px;
  border-bottom: 1px solid var(--line);
}
.phone-weekstrip-label {
  display: block;
  font-size: 9px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 5px;
}
.phone-weekstrip-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.phone-weekstrip-days span {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px 0 5px;
  border-radius: 6px;
}
.phone-weekstrip-days em {
  font-size: 8px;
  color: var(--muted);
  font-style: normal;
  text-transform: lowercase;
}
.phone-weekstrip-days b {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 1px;
}
.phone-weekstrip-days .active {
  background: var(--green);
  color: #fff;
}
.phone-weekstrip-days .active em,
.phone-weekstrip-days .active b { color: #fff; }
.phone-weekstrip-days .active i {
  position: absolute;
  bottom: -2px;
  right: 4px;
  font-size: 7px;
  font-weight: 700;
  background: #fff;
  color: var(--green);
  border-radius: 50%;
  width: 11px;
  height: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
}
.phone-startrow {
  padding: 6px 14px;
  font-size: 9px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.phone-origin {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-bottom: 1px solid var(--line);
}
.phone-pill {
  font-size: 10px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 99px;
  white-space: nowrap;
}
.phone-pill-outline-green {
  color: var(--green);
  border: 1.5px solid var(--green);
  background: #fff;
}
.phone-pill-text {
  font-size: 10px;
  color: var(--ink);
  font-weight: 600;
  margin-right: auto;
}
.phone-pill-blue {
  background: var(--blue);
  color: #fff;
  margin-left: auto;
}
.phone-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 8px 14px 10px;
  background: #fff;
}
.phone-tabs span {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 6px 0;
}
.phone-tabs .active {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.phone-map {
  position: relative;
  flex: 1;
  overflow: hidden;
  background: #e9eef2;
}
/* Base land tone */
.phone-map-bg {
  position: absolute;
  inset: 0;
  background: #eef3ef;
}
/* Land masses + water as solid clipped shapes (clearer than blurry radials) */
.phone-map-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    /* park / greenspace top-right */
    radial-gradient(ellipse 35% 22% at 78% 24%, #c7e3b8 0%, #c7e3b8 60%, transparent 62%),
    /* park / greenspace lower-left */
    radial-gradient(ellipse 28% 18% at 18% 72%, #cee6bd 0%, #cee6bd 60%, transparent 62%),
    /* water body right edge (Galveston Bay-ish) */
    radial-gradient(ellipse 30% 55% at 102% 70%, #aacde5 0%, #aacde5 55%, transparent 58%),
    /* faint grid */
    linear-gradient(0deg, rgba(180,190,200,0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180,190,200,0.18) 1px, transparent 1px);
  background-size:
    auto,
    auto,
    auto,
    40px 40px,
    40px 40px;
}
/* Road network */
.phone-map-roads {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.phone-map-roads .rd {
  position: absolute;
  background: #ffffff;
  box-shadow:
    0 0 0 1px rgba(150,160,175,0.45);
}
/* Major highways (thicker, slightly amber tint) */
.phone-map-roads .rd-major {
  background: #ffe9a8;
  box-shadow: 0 0 0 1px rgba(180,140,40,0.45);
}
/* Diagonal highway 1 */
.phone-map-roads .rd-1 { top: 22%; left: -10%; width: 130%; height: 4px; transform: rotate(-8deg); }
/* Vertical highway */
.phone-map-roads .rd-2 { top: -10%; left: 58%; width: 4px; height: 130%; transform: rotate(6deg); }
/* Main belt highway (horizontal) */
.phone-map-roads .rd-3 { top: 52%; left: -10%; width: 130%; height: 5px; transform: rotate(-2deg); }
/* Side road diagonal */
.phone-map-roads .rd-4 { top: 70%; left: -5%; width: 80%; height: 2px; transform: rotate(-10deg); }
/* Vertical secondary */
.phone-map-roads .rd-5 { top: -10%; left: 28%; width: 2px; height: 130%; transform: rotate(-4deg); }
/* Small connecting roads */
.phone-map-roads .rd-6 { top: 40%; left: 10%; width: 45%; height: 1.5px; transform: rotate(12deg); }
.phone-map-roads .rd-7 { top: 80%; left: 35%; width: 50%; height: 1.5px; transform: rotate(4deg); }
.phone-map-roads .rd-8 { top: 18%; left: 35%; width: 30%; height: 1.5px; transform: rotate(-20deg); }
.phone-map-roads .rd-9 { top: 62%; left: 5%; width: 2px; height: 30%; transform: rotate(8deg); }
/* Highway shield labels */
.phone-map-shield {
  position: absolute;
  background: #fff;
  border: 1px solid rgba(120,130,145,0.6);
  border-radius: 3px;
  font-family: "DM Sans", sans-serif;
  font-size: 7px;
  font-weight: 700;
  color: #4a5568;
  padding: 1px 3px;
  letter-spacing: 0.02em;
  z-index: 1;
}
/* Place labels */
.phone-map-place {
  position: absolute;
  font-family: "DM Sans", sans-serif;
  font-size: 8px;
  font-weight: 600;
  color: #4a5568;
  letter-spacing: 0.01em;
  text-shadow: 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff;
  z-index: 1;
  white-space: nowrap;
}
.phone-map-place-big {
  font-size: 9px;
  font-weight: 700;
  color: #2d3748;
}
.phone-map-toast {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(11,20,34,0.78);
  color: #fff;
  font-size: 8px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 99px;
  z-index: 2;
}
.phone-pin {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(5,12,25,0.25);
  transform: translate(-50%, -100%);
  z-index: 2;
}
.phone-pin::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}
.phone-pin-green { background: var(--green); color: var(--green); }
.phone-pin-green > * { color: #fff; }
.phone-pin-blue { background: var(--blue); color: var(--blue); }
.phone-pin-blue > * { color: #fff; }
.phone-pin-amber { background: var(--amber); color: var(--amber); }
.phone-pin-amber > * { color: #fff; }
/* keep digits/exclamation white on top of colored background */
.phone-pin-green, .phone-pin-blue, .phone-pin-amber {
  color: #fff;
}
.phone-pin-green::after { color: var(--green); }
.phone-pin-blue::after { color: var(--blue); }
.phone-pin-amber::after { color: var(--amber); }
.phone-map-attrib {
  position: absolute;
  bottom: 4px;
  left: 6px;
  font-size: 7px;
  color: rgba(11,20,34,0.55);
  z-index: 2;
}
.phone-footer {
  display: flex;
  justify-content: space-between;
  padding: 8px 14px;
  font-size: 10px;
  font-weight: 600;
  color: var(--ink);
  background: #fff;
  border-top: 1px solid var(--line);
}
.phone-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 5px 0 8px;
}
.phone-nav span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  font-size: 8px;
  font-weight: 600;
  color: var(--muted);
}
.phone-nav .active { color: var(--green); }
.phone-nav-ico {
  font-style: normal;
  font-size: 13px;
  line-height: 1;
}

@media (max-width: 820px) {
  .mobile-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .mobile-section {
    padding-bottom: 64px;
  }
  .mobile-copy > p { margin-left: auto; margin-right: auto; }
  .mobile-badges { justify-content: center; }
  .beta-signup { margin-left: auto; margin-right: auto; }
  .phone-mock { width: 260px; height: 530px; }
}

/* ── Unified site footer ─────────────────────────────────────────────────────
   One footer for every page (home, pricing, legal). Replaces the Tailwind-CDN
   footer that home/legal used and the bare .site-footer pricing used — so the
   whole storefront no longer depends on cdn.tailwindcss.com. */
.site-footer {
  background: #07111f;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #94a3b8;
}
.site-footer-inner { max-width: 1180px; margin: 0 auto; padding: 64px 28px 56px; }
.site-footer-top {
  display: grid;
  grid-template-columns: 1.8fr 0.3fr 1fr 1fr;
  gap: 32px 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.site-footer-brand { display: flex; flex-direction: column; gap: 16px; }
.site-footer-brand img { height: 30px; width: auto; display: block; }
.site-footer-brand p { font-size: 15px; line-height: 1.6; color: #94a3b8; max-width: 240px; margin: 0; }
.site-footer-mail { font-size: 14px; color: #64748b; text-decoration: none; }
.site-footer-mail:hover { color: #cbd5e1; }
.site-footer-col { display: flex; flex-direction: column; gap: 14px; }
.site-footer-head {
  font-size: 12px; font-family: "DM Mono", monospace; text-transform: uppercase;
  letter-spacing: 0.12em; color: #64748b; margin-bottom: 2px;
}
.site-footer-col a { font-size: 15px; color: #94a3b8; text-decoration: none; transition: color 0.2s; }
.site-footer-col a:hover { color: #fff; }
.site-footer-cta {
  margin-top: 12px; display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 20px; border-radius: 8px; font-size: 15px; font-weight: 700; color: #fff;
  text-decoration: none; background: linear-gradient(135deg, #16a34a, #0d9488);
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.22); transition: transform 0.2s, box-shadow 0.2s;
}
.site-footer-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(22, 163, 74, 0.45); }
.site-footer-legal {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 12px 24px; padding-top: 28px;
}
.site-footer-legal > span { font-size: 13px; color: #94a3b8; }
.site-footer-legal-links { display: flex; gap: 24px; }
.site-footer-legal-links a { font-size: 13px; color: #64748b; text-decoration: none; transition: color 0.2s; }
.site-footer-legal-links a:hover { color: #94a3b8; }
@media (max-width: 760px) {
  .site-footer-top { grid-template-columns: 1fr 1fr; }
  .site-footer-brand { grid-column: 1 / -1; }
  .site-footer-spacer { display: none; }
  .site-footer-legal { flex-direction: column; align-items: flex-start; }
}

/* ─────────────────────────────────────────────────────────────────────────
   Cinematic pinned "How it works" (2026-06-07). Class `.wf-cinematic` is added
   to .workflow-section by workflow-cinematic.js ONLY on desktop + motion. With
   no class the grid renders exactly as before (the fallback). Scoped to
   >=900px; under reduced-motion the JS never adds the class.
   ───────────────────────────────────────────────────────────────────────── */
@media (min-width: 900px) {
  /* Tighten the top so the pinned stage fills the viewport (kills the big gap
     under the heading) and shrink the heading a touch to give the card room. */
  /* Keep the section's OWN padding (don't crowd the section above). Only close
     the gap INSIDE the pinned view: small heading margin, compact stage. */
  .workflow-section.wf-cinematic .section-heading { margin-bottom: 10px; max-width: 940px; }
  .workflow-section.wf-cinematic .section-heading h2 { font-size: 30px; line-height: 1.16; }

  /* Stage ≈ card height so the card sits just under the heading (minimal gap)
     and the dots sit right below it. */
  .workflow-section.wf-cinematic .workflow-grid {
    display: block;
    position: relative;
    min-height: min(66vh, 640px);
    margin-top: 8px;
  }
  /* Transparent card — the screenshot is the anchor, copy floats beside it.
     pointer-events:none kills ALL hover FX (hover is gone; scroll is the only
     driver). Centered with auto margins (NOT transform) so GSAP's transform
     scrub doesn't fight the centering. */
  .workflow-section.wf-cinematic .workflow-card {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 100%;
    max-width: 1180px;
    height: max-content;
    max-height: 100%;
    min-height: 0;
    display: grid;
    grid-template-columns: 1.55fr 0.85fr;   /* wide screenshot · narrow copy */
    align-items: center;
    gap: 48px;
    padding: 4px;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
    pointer-events: none;
    transition: none;          /* GSAP owns transform/opacity */
    will-change: transform, opacity;
  }
  /* Framed panel; the screenshot is shown WHOLE (object-fit: contain below) so
     nothing is ever cropped, regardless of the image's native dimensions. */
  .workflow-section.wf-cinematic .workflow-card .card-preview {
    width: 100%;
    height: min(58vh, 580px);
    aspect-ratio: auto;
    margin: 0;
    padding: 12px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 30px 72px rgba(15, 23, 42, 0.16);
    clip-path: none;           /* visibility handled by opacity, not the reveal clip */
    transition: none;
  }
  /* Show the WHOLE screenshot — never crop. */
  .workflow-section.wf-cinematic .workflow-card .card-preview img {
    object-fit: contain;
    object-position: center;
  }
  .workflow-section.wf-cinematic .workflow-card .card-preview::after { display: none; }
  .workflow-section.wf-cinematic .workflow-card .card-inner { padding: 0; }
  .workflow-section.wf-cinematic .workflow-card .card-meta { font-size: 15px; letter-spacing: 0.05em; }
  .workflow-section.wf-cinematic .workflow-card h3 { font-size: 34px; margin: 16px 0 14px; }
  .workflow-section.wf-cinematic .workflow-card p { font-size: 17px; line-height: 1.62; max-width: 46ch; }
  /* Remove the giant translucent step number. */
  .workflow-section.wf-cinematic .card-backdrop-number { display: none; }

  /* Scroll/scrub is the ONLY driver in cinematic mode — remove ALL hover FX
     (they felt glitchy layered under the pin). */
  .workflow-section.wf-cinematic .card-spotlight { display: none; }
  .workflow-section.wf-cinematic .workflow-card:hover { transform: none; border: none; box-shadow: none; }
  .workflow-section.wf-cinematic .workflow-card:hover .card-preview {
    border-color: var(--line);
    box-shadow: 0 30px 72px rgba(15, 23, 42, 0.16);
  }
  .workflow-section.wf-cinematic .workflow-card:hover .card-preview img { transform: none; }
  .workflow-section.wf-cinematic .workflow-card:hover .card-preview::after { opacity: 1; }
  .workflow-section.wf-cinematic .workflow-grid:has(.workflow-card:hover) .workflow-card:not(:hover) {
    opacity: inherit;
    filter: none;
    transform: none;
  }

  /* Progress dots */
  .workflow-section.wf-cinematic .wf-dots {
    position: absolute;
    left: 50%;
    bottom: 6px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
  }
  .workflow-section.wf-cinematic .wf-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.18);
    transition: background 0.25s ease, transform 0.25s ease;
  }
  .workflow-section.wf-cinematic .wf-dots button[aria-current="true"] {
    background: var(--green, #16a34a);
    transform: scale(1.3);
  }
}
