/* ==========================================================================
   Frontbits — Bonsai-inspired design system
   Loaded after style.css, replacing the previous Stripe-inspired enterprise
   skin. Pure sans-serif (Inter everywhere, no serif/mono accents), neutral
   charcoal ink and hairlines, moderate rounded corners, soft floating-card
   shadows, airy spacing. Frontbits blue (#0071E3, matching the logo mark)
   is the only brand color — used purely as an accent, never as a base ink
   or background tone.
   ========================================================================== */

:root {
  --navy: #1a1a1a;
  --navy-2: #262626;
  --ink: #1a1a1a;
  --ink-2: #52525b;
  --ink-3: #71717a;
  --line: #e4e4e7;
  --line-strong: #d4d4d8;
  --bg: #ffffff;
  --bg-alt: #f7f7f8;
  --dark: #1a1a1a;
  --dark-2: #262626;
  --accent: #0071e3;
  --accent-dark: #0060c0;
  --accent-soft: #e8f2fd;
  --cyan: #06b6d4;
  --sky: #2997ff;
  --radius: 14px;
  --radius-lg: 18px;
  --radius-sm: 10px;
  --radius-btn: 12px;
  /* redefine brand vars so base style.css rules follow the new accent */
  --primary: #0071e3;
  --primary-dark: #0060c0;
  --primary-soft: #e8f2fd;
  --font-mono: var(--font-sans);
  --font-serif: var(--font-sans);
  --shadow-md: 0 8px 28px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 24px 56px rgba(0, 0, 0, 0.12);
}

body {
  color: var(--ink-2);
  font-size: 16px;
  letter-spacing: -0.011em;
}

::selection { background: rgba(0, 113, 227, 0.18); }

/* ---------- Typography ---------- */

h1, h2, h3 {
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.032em;
  line-height: 1.08;
}

/* bare <h1> (About hero, booking-confirmed) never had a font-size
   rule of its own, so it fell back to the browser default (2em,
   non-responsive) instead of the design system's scale. Page-level
   heroes with their own class (.hero__title) already override this. */
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(2.1rem, 4.4vw, 3.2rem); }

/* single accent word: bold sans in electric blue */
h1 em, h2 em,
.hero__title em {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: inherit;
  color: var(--accent);
  -webkit-text-fill-color: var(--accent);
  background: none;
  animation: none;
}
.section--dark h2 em, .cta h2 em {
  color: var(--sky);
  -webkit-text-fill-color: var(--sky);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.eyebrow--light { color: var(--sky); }

/* left-aligned section heads (enterprise grid), replacing Apple centering */
.section__head {
  max-width: 720px;
  margin: 0 0 64px;
  text-align: left;
}
.section__head p {
  color: var(--ink-3);
  font-size: 1.08rem;
  line-height: 1.6;
  margin-left: 0;
  text-align: left;
}

/* ---------- Buttons: rounded, friendly ---------- */

.btn {
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: -0.006em;
  padding: 14px 26px;
  border: 1px solid transparent;
}
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--sm { padding: 9px 18px; font-size: 0.86rem; }

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 113, 227, 0.28);
}
.btn--primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 113, 227, 0.32);
}

.btn--ghost {
  background: #fff;
  color: var(--navy);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--navy); transform: translateY(-1px); }

.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn--outline-light:hover { background: rgba(255, 255, 255, 0.08); border-color: #fff; }

.btn--white {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}
.btn--white:hover { transform: translateY(-1px); box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2); }

/* blue arrow text link (used on booking page + inline links) */
.applelink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.96rem;
}
.applelink::after { content: "\2192"; transition: transform 0.2s var(--ease); }
.applelink:hover::after { transform: translateX(3px); }
.applelink--lg { font-size: 1.05rem; }

/* ---------- Nav: light bar, hairline rule ---------- */

.nav {
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03); }
.nav__inner { height: 64px; }
.nav__logo img { height: 22px; }
.nav__links { gap: 32px; }
.nav__links a:not(.btn) {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-2);
}
.nav__links a:not(.btn):hover { color: var(--navy); }
.nav__burger { border-color: var(--line); border-radius: var(--radius-sm); }
.nav__burger span { background: var(--navy); }

/* ---------- Hero: light, soft blob, left-aligned ---------- */

.hero--enterprise {
  position: relative;
  padding: 196px 0 120px;
  background:
    radial-gradient(640px 420px at 88% -12%, rgba(0, 113, 227, 0.075), transparent 70%),
    radial-gradient(520px 380px at -6% 108%, rgba(6, 182, 212, 0.06), transparent 70%),
    var(--bg);
  overflow: hidden;
}

/* soft blurred blue blob, the hero's one decorative flourish */
.hero__grid {
  position: absolute;
  top: -12%;
  right: -8%;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.16), transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.hero--enterprise .hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 32px 56px;
  text-align: left;
  max-width: none;
  padding-bottom: 0;
}

.hero__col { min-width: 0; }

.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 30px;
}

.hero--enterprise .hero__title {
  font-size: clamp(2.4rem, 3.4vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.038em;
  line-height: 1.04;
  color: var(--navy);
  margin-bottom: 24px;
}

.hero--enterprise .hero__sub {
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  color: var(--ink-3);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 0 38px;
}

.hero--enterprise .hero__cta {
  justify-content: flex-start;
  gap: 14px;
  margin-bottom: 0;
}

/* small uppercase meta row under the hero CTAs, spans both grid columns */
.hero__meta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 36px;
  margin-top: 8px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.hero__meta span { display: inline-flex; align-items: center; gap: 9px; }
.hero__meta span::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
}

/* ---------- Hero mockup: illustrative dashboard, not a real product ---------- */

.hero__mockup { position: relative; }
.hero__mockup::before {
  content: "";
  position: absolute;
  inset: -10%;
  background: radial-gradient(60% 60% at 50% 40%, rgba(0, 113, 227, 0.16), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

/* separate element from .hero__mockup so the continuous idle float
   (animation) never fights the .reveal entrance (transition) on the
   same transform property */
.mockup-float {
  position: relative;
  z-index: 1;
  animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.mockup {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.mockup__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 14px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}
.mockup__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--line-strong);
}
.mockup__url {
  margin-left: 10px;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.02em;
  color: var(--ink-3);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mockup__body { display: flex; }

.mockup__sidebar {
  flex: 0 0 100px;
  padding: 16px 10px;
  border-right: 1px solid var(--line);
  background: var(--bg-alt);
}
.mockup__logo {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: var(--accent);
  margin-bottom: 18px;
}
.mockup__nav { display: flex; flex-direction: column; gap: 3px; }
.mockup__nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 28px;
  padding: 0 8px;
  border-radius: var(--radius-sm);
  font-size: 0.64rem;
  font-weight: 600;
  color: var(--ink-3);
  white-space: nowrap;
}
.mockup__nav-item--active { background: var(--accent-soft); color: var(--accent); }
.mockup__nav-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.7;
  flex: none;
}

.mockup__main { flex: 1; min-width: 0; padding: 18px; }

.mockup__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.mockup__title { font-size: 0.9rem; font-weight: 700; color: var(--navy); letter-spacing: -0.01em; }
.mockup__btn {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  border-radius: var(--radius-sm);
  padding: 6px 11px;
  white-space: nowrap;
}

.mockup__stats {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.mockup__stat {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 9px 10px;
  background: #fff;
}
.mockup__stat-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 6px;
}
.mockup__stat-value {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.mockup__chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 64px;
  padding: 10px;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
}
.mockup__bar {
  flex: 1;
  height: var(--h);
  border-radius: 2px 2px 0 0;
  background: var(--accent);
  opacity: 0.85;
}
.mockup__bar:nth-child(even) { background: var(--sky); opacity: 0.55; }

.mockup__rows { display: flex; flex-direction: column; }
.mockup__row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid var(--line);
}
.mockup__row:first-child { border-top: none; padding-top: 0; }
.mockup__row-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
}
.mockup__row-dot--muted { background: var(--line-strong); }
.mockup__row-line {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: var(--line);
}
.mockup__row-tag {
  flex: none;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 3px;
  padding: 3px 8px;
}
.mockup__row-tag--muted { color: var(--ink-3); background: var(--bg-alt); border: 1px solid var(--line); }

/* ---------- Hero mockup: richer chrome, sidebar, topbar, rows (hero only --
   the smaller mockups reused in Problem/Solution keep the plainer markup
   above and simply don't render the elements styled below) ---------- */

.mockup__dot--red { background: #ff8a80; }
.mockup__dot--amber { background: #ffcc80; }
.mockup__dot--green { background: #a5e8bd; }

.mockup__url svg { width: 11px; height: 11px; flex: none; margin-right: 2px; vertical-align: -1px; }
.mockup__url { display: inline-flex; align-items: center; gap: 3px; }

.mockup__chrome-menu {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 2.5px;
  flex: none;
}
.mockup__chrome-menu span { width: 3px; height: 3px; border-radius: 50%; background: var(--line-strong); }

.mockup__workspace {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.mockup__workspace .mockup__logo { margin-bottom: 0; }
.mockup__workspace-name { font-size: 0.66rem; font-weight: 700; color: var(--navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.mockup__nav-item svg { width: 13px; height: 13px; flex: none; }

.mockup__sidebar-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.mockup__sidebar-user { font-size: 0.62rem; font-weight: 600; color: var(--ink-3); }

.mockup__avatar {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.5rem;
  font-weight: 700;
  color: #fff;
  background: var(--navy);
}
.mockup__avatar--sm { width: 20px; height: 20px; }

.mockup__topbar-actions { display: flex; align-items: center; gap: 8px; }

.mockup__icon-btn {
  position: relative;
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-3);
}
.mockup__icon-btn svg { width: 12px; height: 12px; }
.mockup__icon-dot {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sky);
  border: 1.5px solid #fff;
}

.mockup__stat { position: relative; }
.mockup__stat-trend {
  display: block;
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  font-weight: 700;
}
.mockup__stat-trend--up { color: #16a34a; }
.mockup__stat-trend--down { color: #dc4c4c; }

.mockup__chart-legend {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  font-weight: 600;
  color: var(--ink-3);
}
.mockup__chart-legend span { display: inline-flex; align-items: center; gap: 5px; }
.mockup__legend-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.mockup__legend-dot--muted { background: var(--sky); opacity: 0.55; }

.mockup__row-avatar {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.5rem;
  font-weight: 700;
  color: #fff;
  background: var(--c, var(--accent));
}
.mockup__row-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mockup__row-name {
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mockup__row-sub {
  font-size: 0.58rem;
  color: var(--ink-3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mockup__row-amount {
  flex: none;
  font-size: 0.64rem;
  font-weight: 700;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* floating notification card, overlaps the mockup's edge for depth --
   static (no separate animation), just rides along with the parent's
   existing idle float */
.mockup__float-card {
  position: absolute;
  left: -26px;
  bottom: 32px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
}
.mockup__float-icon {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #e6f7ec;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mockup__float-icon svg { width: 13px; height: 13px; }
.mockup__float-title { display: block; font-size: 0.6rem; color: var(--ink-3); font-weight: 600; }
.mockup__float-amount { display: block; font-size: 0.76rem; font-weight: 700; color: var(--navy); font-variant-numeric: tabular-nums; }

/* ---------- Work mockups: full product app-shell (sidebar + top bar +
   KPI cards + content panel) with a layered gray canvas, soft elevation
   and semantic green/amber/red status colors, so each case study reads
   as a real, polished SaaS screenshot rather than a flat wireframe. ---- */

.appshot {
  --canvas: #f4f5f7;
  --ok-fg: #15803d;   --ok-bg: #e6f6ec;
  --warn-fg: #b45309; --warn-bg: #fbeece;
  --bad-fg: #dc2626;  --bad-bg: #fdeaea;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 26px 60px -20px rgba(15, 23, 42, 0.30), 0 6px 16px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  font-family: var(--font-sans);
  color: var(--navy);
}

/* Each product gets its own brand colour: redefining --accent locally
   recolours the whole shell (brand mark, active nav, buttons, tabs,
   primary avatars) while the semantic ok/warn/bad colours stay put */
.appshot--stockroom { --accent: #4f46e5; --accent-soft: #eceefe; }
.appshot--dispatch  { --accent: #0d9488; --accent-soft: #d7f1ed; }
.appshot--deskline  { --accent: #7c3aed; --accent-soft: #f0eafe; }
.appshot--slots     { --accent: #db2777; --accent-soft: #fce7f2; }

.appshot__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 34px;
  padding: 0 14px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}
.appshot__chrome .mockup__dot { width: 8px; height: 8px; }
.appshot__url {
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.62rem;
  color: var(--ink-3);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.appshot__url svg { width: 10px; height: 10px; flex: none; }

.appshot__body { display: flex; min-width: 0; }

/* --- Sidebar --- */
.appshot__sidebar {
  flex: 0 0 168px;
  background: #fff;
  border-right: 1px solid var(--line);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.appshot__brand {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 4px 14px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--line);
}
.appshot__brand-mark {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
}
.appshot__brand-name { font-size: 0.8rem; font-weight: 700; letter-spacing: -0.01em; }
.appshot__brand-chev { margin-left: auto; color: var(--ink-3); display: flex; }
.appshot__brand-chev svg { width: 13px; height: 13px; }

.appshot__navlabel {
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 12px 8px 5px;
}
.appshot__navitem {
  display: flex;
  align-items: center;
  gap: 9px;
  height: 30px;
  padding: 0 8px;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink-2);
  white-space: nowrap;
}
.appshot__navitem svg { width: 15px; height: 15px; flex: none; color: var(--ink-3); }
.appshot__navitem--active { background: var(--accent-soft); color: var(--accent); font-weight: 600; }
.appshot__navitem--active svg { color: var(--accent); }
.appshot__navitem-badge {
  margin-left: auto;
  font-size: 0.56rem;
  font-weight: 700;
  color: var(--accent);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 1px 7px;
}

.appshot__user {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.appshot__user-av {
  flex: none;
  width: 27px; height: 27px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.58rem; font-weight: 700;
}
.appshot__user-text { min-width: 0; display: flex; flex-direction: column; }
.appshot__user-name { font-size: 0.68rem; font-weight: 600; color: var(--navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.appshot__user-role { font-size: 0.58rem; color: var(--ink-3); }

/* --- Main --- */
.appshot__main { flex: 1; min-width: 0; background: var(--canvas); display: flex; flex-direction: column; }

.appshot__topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.appshot__topbar-title { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.appshot__topbar-title strong { font-size: 0.92rem; font-weight: 700; letter-spacing: -0.015em; }
.appshot__topbar-title span { font-size: 0.63rem; color: var(--ink-3); }
.appshot__topbar-actions { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.appshot__search {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 27px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.62rem;
  color: var(--ink-3);
  background: var(--bg-alt);
}
.appshot__search svg { width: 11px; height: 11px; }
.appshot__iconbtn {
  position: relative;
  flex: none;
  width: 27px; height: 27px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-3);
}
.appshot__iconbtn svg { width: 13px; height: 13px; }
.appshot__iconbtn-dot {
  position: absolute; top: -1px; right: -1px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--bad-fg); border: 1.5px solid #fff;
}
.appshot__topbar-av {
  flex: none;
  width: 27px; height: 27px;
  border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.58rem; font-weight: 700;
}

.appshot__content { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 13px; }

.appshot__kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.appshot__kpi {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.appshot__kpi-label { display: block; font-size: 0.56rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.appshot__kpi-value { display: block; font-size: 1.18rem; font-weight: 700; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.appshot__kpi-trend { display: inline-block; margin-top: 5px; font-size: 0.58rem; font-weight: 700; }
.appshot__kpi-trend--up { color: var(--ok-fg); }
.appshot__kpi-trend--down { color: var(--bad-fg); }
.appshot__kpi-trend--flat { color: var(--ink-3); }

.appshot__panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}
.appshot__panel-head {
  display: flex;
  align-items: center;
  gap: 10px 12px;
  flex-wrap: wrap;
  padding: 12px 15px;
  border-bottom: 1px solid var(--line);
}
.appshot__panel-title { font-size: 0.78rem; font-weight: 700; }
.appshot__panel-actions { margin-left: auto; display: flex; align-items: center; gap: 8px; }

.appshot__tabs { display: flex; gap: 4px; flex-wrap: wrap; }
.appshot__tab {
  font-size: 0.64rem;
  font-weight: 600;
  color: var(--ink-3);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.appshot__tab--active { background: var(--accent-soft); color: var(--accent); }

.appshot__btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.64rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  border-radius: 8px;
  padding: 6px 11px;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.18);
}
.appshot__btn svg { width: 12px; height: 12px; }
.appshot__btn--ghost { color: var(--ink-2); background: #fff; border: 1px solid var(--line); box-shadow: none; }

.appshot__av {
  flex: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--c, var(--accent));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.54rem; font-weight: 700;
}

.appshot__pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 3px 9px 3px 8px;
  border-radius: 999px;
}
.appshot__pill::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: currentColor; flex: none; }
.appshot__pill--ok { color: var(--ok-fg); background: var(--ok-bg); }
.appshot__pill--warn { color: var(--warn-fg); background: var(--warn-bg); }
.appshot__pill--bad { color: var(--bad-fg); background: var(--bad-bg); }
.appshot__pill--info { color: var(--accent); background: var(--accent-soft); }

/* --- Content patterns: one per product, sharing the shell above --- */

/* Base table (used by Stockroom inventory) */
.appshot-table { width: 100%; border-collapse: collapse; }
.appshot-table th {
  text-align: left;
  font-size: 0.54rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--ink-3);
  padding: 9px 15px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.appshot-table td {
  padding: 10px 15px;
  border-bottom: 1px solid var(--line);
  font-size: 0.72rem;
  vertical-align: middle;
  white-space: nowrap;
}
.appshot-table tr:last-child td { border-bottom: none; }
.appshot-table__prod { display: flex; align-items: center; gap: 8px; font-weight: 600; }
.appshot-table__sku { font-variant-numeric: tabular-nums; color: var(--ink-3); }

/* Stockroom: inline stock-level bar */
.appshot-stock { display: inline-flex; align-items: center; gap: 8px; }
.appshot-stock__track { flex: none; width: 52px; height: 6px; border-radius: 3px; background: var(--line); overflow: hidden; }
.appshot-stock__fill { display: block; height: 100%; width: var(--p, 0%); border-radius: 3px; background: var(--ok-fg); }
.appshot-stock__fill--warn { background: var(--warn-fg); }
.appshot-stock__fill--bad { background: var(--bad-fg); }
.appshot-stock__num { font-variant-numeric: tabular-nums; font-weight: 700; }

/* Deskline: support ticket list */
.appshot-tickets { display: flex; flex-direction: column; }
.appshot-ticket {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 15px;
  border-bottom: 1px solid var(--line);
  border-left: 3px solid transparent;
}
.appshot-tickets .appshot-ticket:last-child { border-bottom: none; }
.appshot-ticket--urgent { border-left-color: var(--bad-fg); }
.appshot-ticket--high { border-left-color: var(--warn-fg); }
.appshot-ticket--normal { border-left-color: var(--line-strong); }
.appshot-ticket__body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.appshot-ticket__subj { font-size: 0.74rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.appshot-ticket__meta { font-size: 0.6rem; color: var(--ink-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.appshot-ticket__sla { flex: none; font-size: 0.6rem; font-weight: 700; color: var(--ink-2); font-variant-numeric: tabular-nums; white-space: nowrap; }
.appshot-ticket__sla--warn { color: var(--warn-fg); }
.appshot-ticket__sla--bad { color: var(--bad-fg); }

/* Dispatch: field-service kanban board */
.appshot-board { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 14px; background: var(--canvas); }
.appshot-board__col { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.appshot-board__colhead { display: flex; align-items: center; gap: 6px; padding: 0 2px 2px; font-size: 0.54rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); }
.appshot-board__count { color: var(--ink-3); background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 0 6px; font-size: 0.52rem; }
.appshot-board__card { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 9px 10px; box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05); display: flex; flex-direction: column; gap: 7px; }
.appshot-board__cust { font-size: 0.7rem; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.appshot-board__svc { font-size: 0.6rem; color: var(--ink-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.appshot-board__foot { display: flex; align-items: center; justify-content: space-between; gap: 6px; }
.appshot-board__time { font-size: 0.58rem; font-weight: 600; color: var(--ink-2); font-variant-numeric: tabular-nums; }
.appshot-board__assignee { display: flex; align-items: center; gap: 6px; }

/* Slots: bookings day agenda */
.appshot-day { display: flex; flex-direction: column; padding: 8px 0; }
.appshot-day__row { display: flex; gap: 12px; padding: 0 15px; }
.appshot-day__time { flex: none; width: 44px; padding-top: 12px; font-size: 0.58rem; font-weight: 600; color: var(--ink-3); font-variant-numeric: tabular-nums; text-align: right; }
.appshot-day__slot { flex: 1; min-width: 0; padding: 6px 0; border-top: 1px solid var(--line); }
.appshot-day__row:first-child .appshot-day__slot { border-top: none; }
.appshot-day__appt {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 11px;
  border-radius: 9px;
  border-left: 3px solid var(--c, var(--accent));
  background: var(--bg-alt);
}
.appshot-day__appt-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.appshot-day__appt-name { font-size: 0.72rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.appshot-day__appt-svc { font-size: 0.6rem; color: var(--ink-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.appshot-day__empty { padding: 9px 0; font-size: 0.62rem; color: var(--ink-3); }

/* ---------- Problem / Solution: two-column rows with visuals ---------- */

.problem-solution { padding-bottom: 76px; }
.problem-solution .section__head { margin-bottom: 0; }

.problem-solution__row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.problem-solution__row--reverse { grid-template-columns: 0.9fr 1.1fr; margin-top: 76px; }

.problem-solution__arrow {
  display: flex;
  margin: 44px 0 0;
  color: var(--accent);
}
.problem-solution__arrow svg { width: 22px; height: 22px; }

.problem-solution__visual { position: relative; min-height: 300px; }
.problem-solution__visual--chaos { min-height: 360px; }

/* "chaos" visual: scattered, overlapping, tilted cards standing in for
   disconnected spreadsheets/tools -- deliberately messy to contrast
   with the single aligned mockup on the solution side. Each card reads
   as a distinct tool (spreadsheet / chat / invoice / tasks), mirroring
   the copy next to it, rather than generic placeholder bars. */
.chaos-card {
  position: absolute;
  width: 46%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-md);
  padding: 12px 14px;
}
.chaos-card--1 { top: 2%; left: 0; transform: rotate(-7deg); z-index: 3; }
.chaos-card--2 { top: 20%; left: 50%; width: 42%; transform: rotate(6deg); z-index: 2; }
.chaos-card--3 { top: 56%; left: 4%; width: 46%; transform: rotate(-4deg); z-index: 4; }
.chaos-card--4 { top: 75%; left: 48%; width: 40%; transform: rotate(5deg); z-index: 1; }

.chaos-card__dots { display: flex; gap: 4px; margin-bottom: 10px; }
.chaos-card__dots span { width: 5px; height: 5px; border-radius: 50%; background: var(--line-strong); }

.chaos-card__rows { display: grid; gap: 6px; }
.chaos-card__rows span { height: 6px; border-radius: 2px; background: var(--line); }
.chaos-card__rows span:nth-child(even) { width: 70%; }

/* spreadsheet card: a small grid of cells, one flagged red to suggest a
   broken formula -- literal illustration of "spreadsheets breaking down" */
.chaos-card__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.chaos-card__grid span { height: 13px; border-radius: 2px; background: var(--bg-alt); border: 1px solid var(--line); }
.chaos-card__cell--error { background: #fbe4e4; border-color: #f0b8b8; }

/* chat card: two scattered messages from different people, standing in
   for a Slack thread doing a real system's job */
.chaos-card__msg { display: flex; align-items: flex-start; gap: 9px; }
.chaos-card__msg + .chaos-card__msg { margin-top: 9px; }
.chaos-card__avatar { flex: none; width: 20px; height: 20px; border-radius: 50%; background: var(--accent-soft); }
.chaos-card__avatar--muted { background: var(--bg-alt); border: 1px solid var(--line); }
.chaos-card__lines { display: grid; gap: 6px; flex: 1; padding-top: 3px; }
.chaos-card__lines span { height: 6px; border-radius: 2px; background: var(--line); }
.chaos-card__lines span:last-child { width: 60%; }

/* invoice card: a dollar amount + line items + an overdue flag */
.chaos-card__amount {
  display: block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--navy);
  margin-bottom: 9px;
}
.chaos-card__flag {
  display: inline-block;
  margin-top: 9px;
  font-family: var(--font-mono);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #c23a3a;
  background: #fbe4e4;
  border-radius: 3px;
  padding: 3px 7px;
}

/* tasks card: a small checklist, one item done -- work half-tracked
   across yet another disconnected tool */
.chaos-card__checklist { display: flex; flex-direction: column; gap: 8px; }
.chaos-card__check { display: flex; align-items: center; gap: 7px; }
.chaos-card__check::before {
  content: "";
  flex: none;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  border: 1.5px solid var(--line-strong);
}
.chaos-card__check::after {
  content: "";
  flex: 1;
  height: 6px;
  border-radius: 2px;
  background: var(--line);
}
.chaos-card__check--done::before { background: var(--accent); border-color: var(--accent); }

.chaos-badge {
  position: absolute;
  top: 42%;
  left: 40%;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg);
  z-index: 5;
}
.chaos-badge svg { width: 15px; height: 15px; }

/* solution visual: reuses the hero's .mockup component verbatim (same
   illustrative product), kept perfectly straight/centered -- aligned
   and calm, the deliberate visual opposite of the tilted chaos cards */
.problem-solution__visual .mockup {
  max-width: 420px;
  margin: 0 auto;
}

.problem-solution__points {
  list-style: none;
  margin-top: 28px;
}
.problem-solution__points li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 0.98rem;
  font-weight: 500;
}
.problem-solution__points li:first-child { border-top: none; padding-top: 0; }

.problem-solution__point-icon {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
}
.problem-solution__point-icon svg { width: 17px; height: 17px; }

/* ---------- Stats: ruled strip, tabular numbers ---------- */

.stats { border-block: 1px solid var(--line); background: var(--bg); }
.stat { padding: 52px 16px; }
.stat__num {
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.stat__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 8px;
  display: block;
}

/* ---------- Work: alternating case-study rows ---------- */

.cases { display: grid; gap: 96px; }

.case {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 72px;
  align-items: center;
}
.case:nth-child(even) { grid-template-columns: 0.88fr 1.12fr; }
.case:nth-child(even) .case__media { order: 2; }

.case__media {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-alt);
  box-shadow: var(--shadow-md);
}
.case__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* selected-work cards use the same illustrative .mockup component as the
   hero -- swap the fixed-crop photo frame for a centered, unclipped one */
.case__media--mockup {
  aspect-ratio: auto;
  border: none;
  box-shadow: none;
  background: transparent;
  overflow: visible;
  display: flex;
  align-items: center;
}
.case__media--mockup .appshot { width: 100%; }
/* on the smaller home/listing cards the sidebar would be too cramped --
   drop it so the top bar + KPIs + panel get the full card width */
.case__media--mockup .appshot__sidebar { display: none; }

.case__num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.case__body h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  letter-spacing: -0.026em;
  margin-bottom: 14px;
}

.case__desc {
  color: var(--ink-3);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 46ch;
  margin-bottom: 22px;
}

.case__metric {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--bg-alt);
  padding: 9px 14px;
  margin-bottom: 26px;
}
.case__metric::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--accent);
  flex: none;
}

/* ruled closing row: prompt left, button right */
.work__cta {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  text-align: left;
  border-top: 1px solid var(--line);
  padding-top: 36px;
  margin-top: 8px;
}
.work__cta p { color: var(--navy); font-weight: 600; font-size: 1.35rem; letter-spacing: -0.02em; }
.work__cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Offer (The Build): reuses base .price-card component,
   which was already fully theme-driven via CSS vars except for two
   spots with a literal old-purple #635BFF baked in (not a variable,
   so it never picked up the enterprise blue automatically) ---------- */

/* horizontal layout: heading left, pricing card right */
.offer__inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 56px;
  align-items: center;
}
.offer__inner .section__head { margin-bottom: 0; max-width: none; }

.offer-card-wrap { max-width: 460px; margin: 0; }
.offer-card-wrap .pricing__note { text-align: left; }

.price-card { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.price-card:hover { box-shadow: var(--shadow-lg); }

.price-card--featured {
  border: 1px solid var(--accent);
  box-shadow: 0 20px 48px rgba(0, 113, 227, 0.14);
}

.price-card__badge {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  border-radius: var(--radius-sm);
}

.price-card h3 { color: var(--navy); font-size: 1.3rem; letter-spacing: -0.02em; }
.price-card__desc { min-height: 0; }
.price-card__price { color: var(--navy); font-variant-numeric: tabular-nums; }
/* "Custom quote" is a phrase, not a short numeral like "$999" -- drop the
   size so it doesn't wrap awkwardly in the same card width */
.price-card__price--quote { font-size: 1.7rem; }

.price-card ul li::before {
  background: var(--accent-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230071E3' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4L19 7'/%3E%3C/svg%3E") center / 10px no-repeat;
}

.pricing__note a { color: var(--accent); }

/* ---------- Process: navy panel ---------- */

.section--dark { background: var(--navy); color: #a3a3a3; }
.section--dark .section__head p { color: #a3a3a3; }
.process__grid { gap: 20px; }
.process-step {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 34px 30px;
}
.process-step:hover {
  transform: translateY(-4px);
  border-color: rgba(41, 151, 255, 0.55);
  background: rgba(255, 255, 255, 0.05);
}
.process-step__num {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--sky);
  opacity: 1;
  margin-bottom: 18px;
}
.process-step__num::before { content: "/ "; opacity: 0.5; }
.process-step h3 { color: #fff; font-size: 1.22rem; letter-spacing: -0.02em; }
.process-step p { color: #a3a3a3; font-size: 0.93rem; }
.process-step__time {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  background: rgba(41, 151, 255, 0.12);
  border: 1px solid rgba(41, 151, 255, 0.28);
  border-radius: 3px;
  color: var(--sky);
  padding: 5px 10px;
}

/* ---------- Testimonials ---------- */

.testimonial {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 36px;
}
.testimonial:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.testimonial__stars { color: var(--accent); font-size: 0.85rem; letter-spacing: 3px; }
.testimonial blockquote {
  color: var(--navy);
  font-size: 1.06rem;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.012em;
}
.testimonial figcaption { border-top: 1px solid var(--line); }
.testimonial figcaption strong { color: var(--navy); }
.testimonial figcaption span { color: var(--ink-3); font-size: 0.82rem; }
.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ---------- FAQ ---------- */

.faq__list { gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.faq-item[open] { border-color: rgba(0, 113, 227, 0.5); }
.faq-item summary { font-size: 1rem; font-weight: 600; color: var(--navy); letter-spacing: -0.012em; }
.faq-item__icon::before, .faq-item__icon::after { background: var(--accent); }
.faq-item p { color: var(--ink-3); font-size: 0.95rem; }

/* ---------- CTA: electric gradient band ---------- */

.cta {
  background: linear-gradient(108deg, #071f3b 0%, #0d3468 42%, #0060c0 82%, #0071e3 100%);
  padding: 130px 0;
}
.cta__glow {
  background:
    radial-gradient(ellipse 46% 58% at 84% 118%, rgba(6, 182, 212, 0.4), transparent 70%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: auto, 25% 100%;
  opacity: 0.9;
}
.cta__inner h2 { letter-spacing: -0.032em; }
.cta__inner p { color: #c9dbf2; }
.cta__email { color: #a8c8f0; }
.cta__email:hover { color: #fff; }
.cta__assurance li { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: #a8c8f0; }
.cta__assurance li::before { color: #67e8f9; }

/* ---------- Footer: navy ---------- */

.footer { background: var(--navy); color: #a3a3a3; padding-top: 84px; }
.footer__inner { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.footer__brand p { color: #a3a3a3; font-size: 0.92rem; }
.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sky);
}
.footer__col a { color: #a3a3a3; font-size: 0.92rem; }
.footer__col a:hover { color: #fff; }
.footer__socials a { border: 1px solid rgba(255, 255, 255, 0.16); border-radius: var(--radius-sm); color: #a3a3a3; }
.footer__socials a:hover { color: #fff; border-color: var(--sky); transform: none; }
.footer__bottom { border-top: none; font-size: 0.8rem; color: #7d94ad; }

/* ---------- Booking confirmation ---------- */

.confirm { padding-top: 190px; }
.confirm__icon {
  border-radius: var(--radius);
  background: var(--accent-soft);
  border: 1px solid rgba(0, 113, 227, 0.2);
  color: var(--accent);
}
.confirm__lead { color: var(--ink-3); }
.confirm__steps li { border-top-color: var(--line); }
.confirm__step-num {
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.8rem;
}
.confirm__steps strong { color: var(--navy); }

/* ---------- Legal pages (Privacy Policy) ---------- */

.legal-hero { padding: 190px 0 24px; }
.legal-hero h1 { margin-top: 12px; }
.legal__updated {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--ink-3);
  margin-top: 10px;
}
.legal { padding-top: 0; padding-bottom: 140px; }
.legal__body h2 {
  margin: 44px 0 14px;
  font-size: 1.3rem;
  color: var(--navy);
}
.legal__body h2:first-child { margin-top: 0; }
.legal__body h3 {
  margin: 26px 0 10px;
  font-size: 1.05rem;
  color: var(--navy);
}
.legal__body p, .legal__body li { color: var(--ink-2); line-height: 1.75; }
.legal__body p { margin-bottom: 16px; }
.legal__body ul { margin: 0 0 16px; padding-left: 22px; }
.legal__body li { margin-bottom: 8px; }
.legal__body a { color: var(--accent); }
.legal__body strong { color: var(--navy); }

/* ---------- Case study pages ---------- */

.cs-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 22px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}
.cs-back::before { content: "\2190"; transition: transform 0.2s var(--ease); }
.cs-back:hover::before { transform: translateX(-3px); }

.cs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.cs-tags span { display: inline-flex; align-items: center; gap: 8px; }
.cs-tags span::before { content: ""; width: 6px; height: 6px; background: var(--accent); flex: none; }

.cs-media {
  margin: 40px 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cs-media img { display: block; width: 100%; }

/* case studies use the same illustrative .mockup component as the hero --
   this variant drops its own border/shadow so the mockup's don't double up */
.cs-media--mockup { border: none; box-shadow: none; overflow: visible; }

.cs-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 8px 0 36px;
  padding: 32px 0;
  border-block: 1px solid var(--line);
  text-align: center;
}

.cs-testimonial { margin: 56px 0; }

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

@media (max-width: 1024px) {
  .hero--enterprise { padding: 168px 0 96px; }

  .hero--enterprise .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero--enterprise .hero__title { font-size: clamp(2.6rem, 6vw, 3.6rem); }
  .hero--enterprise .hero__sub { max-width: 560px; }
  .hero__mockup { max-width: 480px; justify-self: start; }

  .case,
  .case:nth-child(even) { grid-template-columns: 1fr; gap: 32px; }
  .case:nth-child(even) .case__media { order: 0; }
  .cases { gap: 72px; }

  .offer__inner { grid-template-columns: 1fr; gap: 44px; }
  .offer-card-wrap { max-width: 460px; justify-self: start; }

  .problem-solution__row,
  .problem-solution__row--reverse { grid-template-columns: 1fr; gap: 40px; }
  .problem-solution__row--reverse { margin-top: 56px; }
  /* text always reads before the decorative visual once stacked,
     regardless of which row it's the first or second DOM child of */
  .problem-solution__row .section__head,
  .problem-solution__row--reverse .section__head { order: 1; }
  .problem-solution__visual { order: 2; min-height: 260px; }
  .problem-solution__visual--chaos { min-height: 320px; }
}

@media (max-width: 768px) {
  .section { padding: 76px 0; }

  .hero--enterprise { padding: 140px 0 72px; }
  .hero--enterprise .hero__inner { gap: 40px; }
  .hero--enterprise .hero__title { font-size: clamp(2.5rem, 11vw, 3.4rem); }
  .hero--enterprise .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__meta { gap: 12px 22px; margin-top: 0; }
  .hero__grid { width: 380px; height: 380px; top: -8%; right: -20%; }

  .hero__mockup { max-width: 100%; justify-self: stretch; }
  .mockup__sidebar { display: none; }
  .mockup__stats { flex-wrap: wrap; }
  .mockup__stat { flex: 1 1 calc(50% - 4px); }
  .mockup__bar:nth-child(n + 6) { display: none; }

  .cs-results { grid-template-columns: 1fr; gap: 20px; }
  .mockup__icon-btn:first-child { display: none; }
  .mockup__row-sub { display: none; }
  .mockup__float-card { display: none; }

  .appshot__sidebar { display: none; }
  .appshot__search { display: none; }
  .appshot-table__sku, .appshot-table__loc { display: none; }
  .appshot-board { grid-template-columns: 1fr; }
  .appshot-day__time { width: 40px; }

  .cases { gap: 56px; }
  .case { gap: 22px; }
  .case__body h3 { font-size: 1.4rem; }
  .work__cta { flex-direction: column; align-items: flex-start; }

  /* light mobile menu (base style.css paints it near-black) */
  .nav__links {
    top: 64px;
    height: calc(100vh - 64px);
    background: #fff;
    border-top: 1px solid var(--line);
    /* the unconditional desktop .nav__links { gap: 32px } above loads
       after style.css's mobile gap:0 with equal specificity, so it was
       winning even at mobile widths -- re-close the gap here, where
       this stylesheet's own cascade position guarantees it wins */
    gap: 0;
  }
  .nav__links a:not(.btn) {
    color: var(--navy);
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    padding: 8px 0;
  }
  .nav__links a:not(.btn):hover { color: var(--accent); }
}
