/* ---------- Tokens ---------- */
:root {
  --bg: #0a0a0b;
  --bg-raised: #111114;
  --bg-elevated: #16161a;
  --border: #26262c;
  --border-strong: #34343c;
  --text: #f3f3f4;
  --text-dim: #a3a3aa;
  --text-mute: #8a8a92;
  --accent: #ff3131;
  --accent-hi: #ff5757;
  --accent-glow: rgba(255, 49, 49, 0.35);
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-card: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 8px 24px rgba(0, 0, 0, 0.35);
  --maxw: 1120px;
  --serif: "Instrument Serif", ui-serif, Georgia, serif;
  --sans: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-raised);
}

.serif-italic { font-family: var(--serif); font-style: italic; font-weight: 400; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px -8px var(--accent-glow), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}
.btn-primary:hover { background: var(--accent-hi); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover { border-color: var(--text-dim); background: var(--bg-raised); }
.btn-sm { padding: 9px 14px; font-size: 13px; border-radius: 8px; }

/* `.btn` sets display: inline-flex, which is more specific than the user-agent
   [hidden] { display: none } rule. Restore the hidden behavior. */
.btn[hidden] { display: none; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 10, 11, 0.72);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; }
.brand-mark {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: block;
  filter: drop-shadow(0 6px 16px rgba(255, 49, 49, 0.18));
}
.brand-name { letter-spacing: -0.01em; }
.nav-links {
  display: flex; gap: 28px; font-size: 14px; color: var(--text-dim);
  align-items: center;
}
.nav-links a:hover { color: var(--text); }
.nav-cta-mobile { display: none; } /* CTA inside the dropdown is mobile-only */

/* Hamburger toggle — desktop default hidden, mobile shows it. */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.nav-toggle:hover { border-color: var(--text-dim); background: var(--bg-raised); }
.nav-toggle .nav-toggle-close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle-open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle-close { display: block; }

@media (max-width: 720px) {
  .nav-cta { display: none; }
  .nav-cta-mobile { display: inline-flex; width: 100%; justify-content: center; }
  .nav-toggle { display: inline-flex; }

  /* Mobile drawer — sits beneath the nav, slides down on open. */
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    margin: 0;
    padding: 14px 24px 22px;
    background: rgba(11, 11, 13, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 32px -16px rgba(0, 0, 0, 0.6);
    font-size: 16px;
    color: var(--text);
    opacity: 0;
    transform: translateY(-8px);
    visibility: hidden;
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
  }
  .nav-links a {
    padding: 12px 4px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links a:last-of-type { border-bottom: 0; }
  .nav-links .nav-cta-mobile { margin-top: 10px; padding: 12px 16px; }

  .nav-inner.is-menu-open .nav-links {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding: 72px 0 96px; overflow: hidden; }
.hero-bg {
  position: absolute; inset: -10% -5% auto -5%; height: 480px;
  background:
    radial-gradient(60% 60% at 50% 0%, rgba(255, 49, 49, 0.18), transparent 70%),
    radial-gradient(40% 40% at 80% 20%, rgba(255, 49, 49, 0.10), transparent 70%);
  filter: blur(8px); pointer-events: none;
}
.hero-inner { position: relative; text-align: center; }
.hero-title {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 16px 0 18px;
}
.hero-title .accent { color: var(--accent); }
.hero-sub {
  max-width: 620px; margin: 0 auto 28px;
  color: var(--text-dim); font-size: 17px;
}
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }

/* ---------- Animated browser (front-end timelapse) ---------- */
.browser {
  position: relative;
  margin: 0 auto;
  max-width: 880px;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, #0e0e12, #08080a);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.05) inset,
    0 30px 80px -30px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.02);
}
.browser-chrome {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: #111115;
  border-bottom: 1px solid var(--border);
}
.dot { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }
.browser-url {
  margin-left: 12px;
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: var(--text-mute);
  background: #0a0a0d;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  max-width: 260px;
  margin-right: 60px;
}
.browser-stage {
  position: relative;
  padding: 18px;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(255,49,49,0.08), transparent 60%),
    #0a0a0d;
}
@media (max-width: 600px) { .browser-stage { padding: 12px; } }

/* ---------- Live Preview Generator badge ---------- */
.preview-badge {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0 0 16px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 49, 49, 0.10);
  border: 1px solid rgba(255, 49, 49, 0.30);
  color: var(--text);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0 6px 24px -8px var(--accent-glow);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.preview-badge .pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(255, 49, 49, 0.55);
  animation: pulseDot 1.8s ease-out infinite;
  transition: background 0.3s ease;
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(255, 49, 49, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(255, 49, 49, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 49, 49, 0); }
}

/* Locked state — when the visitor picks their industry on the breakdown form,
   the badge swaps from the "live generator" red palette to a confirming green
   so it reads as "your preview is now locked." */
.preview-badge.is-locked {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.4);
  box-shadow: 0 6px 24px -8px rgba(34, 197, 94, 0.45);
}
.preview-badge.is-locked .pulse-dot {
  background: #22c55e;
  animation: pulseDotGreen 1.8s ease-out infinite;
}
@keyframes pulseDotGreen {
  0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Helper text under form selects */
.field-hint {
  margin: 6px 2px 0;
  font-size: 12px;
  color: var(--text-mute);
  line-height: 1.45;
}

/* ---------- Hero trust line + microcopy ---------- */
.hero-trust {
  margin: 14px auto 36px;
  color: var(--text-dim);
  font-size: 14px;
  max-width: 580px;
}
.hero-microcopy {
  margin: 22px auto 0;
  text-align: center;
  color: var(--text);
  font-size: 17px;
  max-width: 640px;
}
.hero-microcopy .serif-italic { color: var(--text); }

/* ---------- Industry-morph animation primitives ---------- */
@keyframes appear {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Crossfade the morphing content blocks */
.browser-stage .bw-hero,
.browser-stage .bw-cards,
.browser-stage .bw-nav,
.browser-stage .browser-url-fade {
  transition: opacity 360ms ease, transform 360ms ease;
}
.browser-stage.is-morphing .bw-hero,
.browser-stage.is-morphing .bw-cards,
.browser-stage.is-morphing .bw-nav {
  opacity: 0;
  transform: translateY(6px);
  filter: blur(2px);
}
/* Card stagger — re-triggered each cycle by toggling .cards-in */
.browser-stage .bw-card { opacity: 0; transform: translateY(8px); }
.browser-stage.cards-in .bw-card {
  animation: appear 0.45s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.browser-stage.cards-in .bw-card:nth-child(1) { animation-delay: 0.10s; }
.browser-stage.cards-in .bw-card:nth-child(2) { animation-delay: 0.22s; }
.browser-stage.cards-in .bw-card:nth-child(3) { animation-delay: 0.34s; }

/* ---------- Mock site components (real content) ---------- */
.bw { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 8px; }

/* Nav */
.bw-nav {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px;
  padding: 8px 14px; height: 40px;
}
.bw-logo {
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
  min-width: 0;
}
.bw-links { display: flex; gap: 10px; min-width: 0; overflow: hidden; }
.bw-links span {
  width: 32px; height: 6px;
  background: var(--border-strong);
  border-radius: 3px;
  flex: 0 0 auto;
}
/* Below ~540px the preview gets cramped; the decorative link bars are the
   first thing to drop so the "New Customer Booked!" pill stays whole. */
@media (max-width: 540px) {
  .bw-links { display: none; }
  .bw-nav { grid-template-columns: auto 1fr; }
  .bw-nav-toast { padding: 4px 9px 4px 7px; font-size: 10px; }
  .bw-nav-toast-dot { width: 6px; height: 6px; }
}
/* In-nav "New Customer Booked!" pill — replaces the old red CTA placeholder.
   Lives where the mock site's primary nav button would sit, doubling as a
   social-proof signal that briefly shakes on every industry cycle. */
.bw-nav-toast {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 11px 5px 9px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.4);
  border-radius: 999px;
  color: #86efac;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transform-origin: 50% 50%;
  will-change: transform;
}
.bw-nav-toast-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: bwToastPulse 2.2s ease-out infinite;
}
@keyframes bwToastPulse {
  0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
  70%  { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
.bw-nav-toast.is-shaking { animation: bwNavShake 460ms cubic-bezier(0.36, 0.07, 0.19, 0.97); }
@keyframes bwNavShake {
  0%, 100% { transform: translateX(0) rotate(0); }
  15%  { transform: translateX(-3px) rotate(-1.4deg); }
  30%  { transform: translateX(3px)  rotate(1.4deg); }
  45%  { transform: translateX(-2px) rotate(-0.9deg); }
  60%  { transform: translateX(2px)  rotate(0.9deg); }
  75%  { transform: translateX(-1px) rotate(-0.4deg); }
  90%  { transform: translateX(1px)  rotate(0.4deg); }
}

/* Hero block (real content) — split-screen: text left, image right */
.bw-hero {
  margin-top: 12px;
  padding: 18px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: center;
}
.bw-hero-text {
  display: flex; flex-direction: column; gap: 10px;
  min-width: 0; /* allow text to shrink in narrow grid columns */
}
.bw-hero-image {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background:
    radial-gradient(120% 80% at 30% 20%, rgba(239, 68, 68, 0.18), transparent 60%),
    linear-gradient(135deg, #1a1d24, #0f1117);
  display: grid;
  place-items: center;
}
.bw-hero-image-emoji {
  font-size: clamp(28px, 4.5vw, 52px);
  opacity: 0.55;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
  user-select: none;
}
.bw-hero-image-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.bw-hero-image-img.is-loaded { opacity: 1; }

/* On smaller previews the split crowds the headline — collapse to text only. */
@media (max-width: 720px) {
  .bw-hero { grid-template-columns: 1fr; }
  .bw-hero-image { display: none; }
}
.bw-headline {
  margin: 0;
  font-size: clamp(15px, 1.9vw, 22px);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: #fff;
}
.bw-subheadline {
  margin: 0;
  font-size: clamp(11px, 1.2vw, 13px);
  color: var(--text-dim);
  line-height: 1.4;
}
.bw-cta {
  align-self: flex-start;
  margin-top: 4px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 14px;
  background: var(--accent);
  color: #fff;
  border-radius: 7px;
  font-size: 12.5px;
  font-weight: 600;
  box-shadow: 0 6px 18px -8px var(--accent-glow);
}

/* Cards */
.bw-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  margin-top: 12px;
  padding: 0;
  background: transparent;
  border: 0;
}
.bw-cards .bw-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  display: flex; flex-direction: column; gap: 4px;
}
.bw-card-icon {
  font-size: 18px;
  line-height: 1;
  margin-bottom: 4px;
}
.bw-card-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}
.bw-card-sub {
  font-size: 10.5px;
  font-style: normal;
  color: var(--text-dim);
  line-height: 1.4;
}

@media (prefers-reduced-motion: reduce) {
  .browser-stage,
  .browser-stage *,
  .preview-badge .pulse-dot,
  .bw-nav-toast-dot { animation: none !important; transition: none !important; }
  .browser-stage .bw-card { opacity: 1; transform: none; }
}

/* ---------- Why section ---------- */
.why { padding: 72px 0; border-top: 1px solid var(--border); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 36px; }
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.02em; margin: 0 0 12px;
}
.section-sub { color: var(--text-dim); margin: 0; }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
@media (max-width: 820px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-card);
}
.why-card h3 { margin: 12px 0 6px; font-size: 16px; letter-spacing: -0.01em; }
.why-card p { margin: 0; color: var(--text-dim); font-size: 14px; }
.why-icon {
  width: 32px; height: 32px; display: grid; place-items: center;
  background: rgba(255, 49, 49, 0.12); color: var(--accent);
  border: 1px solid rgba(255, 49, 49, 0.25);
  border-radius: 8px;
}

/* ---------- How It Works ---------- */
.how { padding: 80px 0; border-top: 1px solid var(--border); }
.how-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: how-step;
}
.how-step {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 22px 24px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.how-step:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  box-shadow: 0 12px 32px -16px rgba(0, 0, 0, 0.6);
}
.how-step-day {
  display: inline-flex; align-self: flex-start;
  padding: 4px 10px;
  background: rgba(255, 49, 49, 0.10);
  border: 1px solid rgba(255, 49, 49, 0.30);
  color: var(--accent);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.how-step-title {
  margin: 6px 0 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.25;
}
.how-step-desc {
  margin: 0;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
}

/* Arrow connector between cards on desktop. The :not(:last-child) chevron sits
   on the right edge of each card, hidden when the grid wraps to ≤2 columns. */
@media (min-width: 901px) {
  .how-step:not(:last-child)::after {
    content: "→";
    position: absolute;
    top: 50%;
    right: -18px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    display: grid; place-items: center;
    color: var(--text-mute);
    font-size: 18px;
    pointer-events: none;
  }
}
@media (max-width: 900px) {
  .how-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .how-steps { grid-template-columns: 1fr; gap: 14px; }
}

/* ---------- Who This Is For ---------- */
.who { padding: 80px 0; border-top: 1px solid var(--border); }
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.who-col {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 28px 26px;
}
.who-col-yes { border-color: rgba(34, 197, 94, 0.30); background: rgba(34, 197, 94, 0.04); }
.who-col-no  { border-color: rgba(255, 255, 255, 0.07); }
.who-col-title {
  display: flex; align-items: center; gap: 10px;
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}
.who-mark {
  display: inline-grid; place-items: center;
  width: 28px; height: 28px;
  border-radius: 999px;
}
.who-mark-yes { background: rgba(34, 197, 94, 0.14); color: #4ade80; border: 1px solid rgba(34, 197, 94, 0.4); }
.who-mark-no  { background: rgba(255, 255, 255, 0.05); color: var(--text-mute); border: 1px solid var(--border); }
.who-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.who-list li {
  position: relative;
  padding-left: 24px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-dim);
}
.who-list li b { color: var(--text); font-weight: 600; }
.who-col-yes .who-list li::before,
.who-col-no  .who-list li::before {
  content: "";
  position: absolute;
  left: 4px; top: 9px;
  width: 8px; height: 8px;
  border-radius: 50%;
}
.who-col-yes .who-list li::before { background: rgba(34, 197, 94, 0.55); }
.who-col-no  .who-list li::before { background: var(--text-mute); opacity: 0.5; }

@media (max-width: 760px) {
  .who-grid { grid-template-columns: 1fr; gap: 16px; }
  .who-col { padding: 22px 22px 20px; }
}

/* ---------- Case study ---------- */
.work { padding: 88px 0; border-top: 1px solid var(--border); }
.work-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center;
}
@media (max-width: 900px) { .work-grid { grid-template-columns: 1fr; } }
.work-title { text-align: left; margin-top: 14px; }
.work-sub { text-align: left; max-width: 520px; }
.kpi {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.kpi li {
  background: var(--bg-raised); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px;
}
.kpi b { display: block; color: var(--accent); font-size: 22px; letter-spacing: -0.02em; }
.kpi span { color: var(--text-dim); font-size: 12px; }

.work-card {
  border: 1px solid var(--border-strong); border-radius: 14px; overflow: hidden;
  background: linear-gradient(180deg, #0e0e12, #08080a);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.6);
}
.work-card-head {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; background: #111115; border-bottom: 1px solid var(--border);
}
.work-card-body {
  position: relative; padding: 32px 28px; min-height: 280px;
  background:
    radial-gradient(80% 60% at 30% 20%, rgba(255,49,49,0.18), transparent 60%),
    #0a0a0d;
  display: flex; flex-direction: column; gap: 16px;
}
.work-headline {
  font-weight: 800; font-size: 28px; line-height: 1.05; letter-spacing: -0.02em;
  text-transform: uppercase;
}
.work-cta {
  width: 130px; height: 36px; background: var(--accent); border-radius: 8px;
  box-shadow: 0 8px 24px -8px var(--accent-glow);
}
.work-portrait {
  position: absolute; right: 18px; bottom: 18px;
  width: 120px; height: 120px; border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #3b3b45, #14141a 70%);
  border: 1px solid var(--border-strong);
}

/* ---------- Breakdown form ---------- */
.breakdown {
  padding: 96px 0;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(60% 50% at 80% 0%, rgba(255,49,49,0.10), transparent 70%),
    var(--bg);
}
.breakdown-grid {
  display: grid; grid-template-columns: 1.25fr 1fr; gap: 48px; align-items: start;
}
@media (max-width: 960px) { .breakdown-grid { grid-template-columns: 1fr; gap: 36px; } }

.breakdown-title {
  font-size: clamp(30px, 4.4vw, 44px);
  letter-spacing: -0.02em; margin: 14px 0 10px;
}
.breakdown-title .serif-italic { color: var(--accent); }
.breakdown-sub { color: var(--text-dim); font-size: 18px; max-width: 540px; margin: 0 0 28px; }
.breakdown-sub .serif-italic { color: var(--text); font-size: 20px; }

.breakdown-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 16px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-card);
}
@media (max-width: 560px) { .breakdown-form { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field-full { grid-column: 1 / -1; }
.field label {
  font-size: 13px; color: var(--text-dim); letter-spacing: 0.01em;
}
.field label .opt { color: var(--text-mute); font-weight: 400; }
.field input,
.field select {
  width: 100%;
  font: inherit;
  color: var(--text);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 12px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.field input::placeholder { color: var(--text-mute); }
.field input:focus,
.field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 49, 49, 0.18);
  background: #1a1a1f;
}
.field input[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.18);
}
.select-wrap { position: relative; }
.select-wrap select {
  appearance: none; -webkit-appearance: none;
  padding-right: 36px;
}
.select-caret {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  color: var(--text-dim); pointer-events: none;
}

.form-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; margin-top: 4px; }
.btn-submit { width: 100%; }
.trust { margin: 0; font-size: 12.5px; color: var(--text-mute); }

.breakdown-success {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.success-mark {
  width: 56px; height: 56px; border-radius: 50%;
  margin: 0 auto 16px;
  display: grid; place-items: center;
  background: rgba(255, 49, 49, 0.12); color: var(--accent);
  border: 1px solid rgba(255, 49, 49, 0.3);
}
.success-title {
  font-size: 22px; letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.success-title #success-business { color: var(--accent); }
.success-sub { color: var(--text-dim); margin: 0; }

.breakdown-aside {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-card);
}
.aside-title { margin: 0 0 16px; font-size: 16px; letter-spacing: -0.01em; }
.aside-list { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 16px; }
.aside-list li { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; }
.aside-num {
  font-family: var(--serif); font-style: italic;
  font-size: 22px; color: var(--accent); line-height: 1;
}
.aside-list b { font-size: 14px; }
.aside-list p { margin: 4px 0 0; color: var(--text-dim); font-size: 13.5px; }
.aside-quote {
  border-top: 1px dashed var(--border);
  padding-top: 16px;
}
.aside-quote p {
  margin: 0 0 6px;
  font-family: var(--serif); font-style: italic;
  font-size: 16px; color: var(--text);
}
.aside-quote cite { font-style: normal; color: var(--text-mute); font-size: 12.5px; }

/* ---------- FAQ ---------- */
.faq { padding: 88px 0; border-top: 1px solid var(--border); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
}
.faq-item summary {
  cursor: pointer; list-style: none;
  font-weight: 600; letter-spacing: -0.005em;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; color: var(--text-dim); font-size: 20px; line-height: 1;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin: 10px 0 0; color: var(--text-dim); font-size: 14px; }

/* ---------- Book strip ---------- */
.bookstrip {
  padding: 72px 0; border-top: 1px solid var(--border);
  background:
    radial-gradient(60% 60% at 50% 0%, rgba(255,49,49,0.10), transparent 70%),
    var(--bg);
}
.bookstrip-inner { text-align: center; }
.bookstrip h2 { font-size: clamp(26px, 3.6vw, 36px); letter-spacing: -0.02em; margin: 0 0 8px; }
.bookstrip p { color: var(--text-dim); margin: 0 0 22px; }

/* ---------- Footer ---------- */
.footer { padding: 28px 0; border-top: 1px solid var(--border); background: #07070a; }
.footer-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px;
  font-size: 12.5px; color: var(--text-mute);
}
.footer-brand { color: var(--text-dim); letter-spacing: 0.18em; text-transform: uppercase; font-size: 11px; }
.footer-links { display: flex; gap: 18px; }
.footer-links a:hover { color: var(--text); }

/* ---------- Qualifier (multi-step) ---------- */
.qualify {
  padding: 88px 0;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(60% 50% at 20% 0%, rgba(255,49,49,0.10), transparent 70%),
    var(--bg);
}
.qualify-shell, .qualify-final {
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
}
@media (max-width: 600px) { .qualify-shell, .qualify-final { padding: 24px 20px; } }
.qualify-head { text-align: center; margin-bottom: 22px; }
.qualify-title {
  font-size: clamp(28px, 4vw, 38px);
  letter-spacing: -0.02em;
  margin: 14px 0 10px;
}
.qualify-title .serif-italic { color: var(--accent); }
.qualify-sub { color: var(--text-dim); margin: 0 auto; max-width: 540px; }

/* Progress */
.qualify-progress { margin: 22px 0 28px; }
.qualify-progress-bar {
  height: 6px;
  border-radius: 999px;
  background: var(--bg-elevated);
  overflow: hidden;
  border: 1px solid var(--border);
}
.qualify-progress-fill {
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, var(--accent), var(--accent-hi));
  transition: width 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.qualify-progress-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}
.qualify-progress-meta :last-child { color: var(--text); font-weight: 500; }

/* Steps */
.qualify-form { display: flex; flex-direction: column; gap: 20px; }
.q-step {
  border: 0; padding: 0; margin: 0;
  animation: qStepIn 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
@keyframes qStepIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.q-legend {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  color: var(--text);
}
.q-legend em { color: var(--accent); font-style: italic; }
.q-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
}
@media (max-width: 560px) { .q-grid { grid-template-columns: 1fr; } }
.q-grid .field-full { grid-column: 1 / -1; }
.q-grid textarea {
  width: 100%;
  font: inherit;
  color: var(--text);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 12px;
  outline: none;
  resize: vertical;
  min-height: 84px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.q-grid textarea::placeholder { color: var(--text-mute); }
.q-grid textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 49, 49, 0.18);
  background: #1a1a1f;
}
.q-grid textarea[aria-invalid="true"] {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.18);
}

/* Chip-style radio groups */
.q-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.q-chips-stack { flex-direction: column; }
.q-chips-stack .q-chip { width: 100%; }
.q-chip {
  position: relative;
  cursor: pointer;
  user-select: none;
}
.q-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.q-chip span {
  display: inline-block;
  padding: 10px 14px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  border-radius: 999px;
  font-size: 13.5px;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.q-chips-stack .q-chip span {
  display: block;
  border-radius: var(--radius);
  text-align: left;
  padding: 12px 14px;
  width: 100%;
}
.q-chip:hover span { border-color: var(--border-strong); }
.q-chip input:focus-visible + span {
  box-shadow: 0 0 0 3px rgba(255, 49, 49, 0.25);
  border-color: var(--accent);
}
.q-chip input:checked + span {
  background: rgba(255, 49, 49, 0.12);
  border-color: var(--accent);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 49, 49, 0.35);
}
.q-chip[aria-invalid="true"] span,
.q-chips[aria-invalid="true"] .q-chip span { border-color: #ff6b6b; }

/* Actions */
.q-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 6px;
}
.q-actions .btn { min-width: 160px; }
.q-back-link {
  margin-right: auto;
  background: transparent;
  border: 0;
  padding: 4px 0;
  font-size: 13px;
  color: var(--text-mute);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.15s ease;
}
.q-back-link:hover { color: var(--text); }
.q-back-link[hidden] { display: none; }
.q-trust {
  margin: 4px 0 0;
  text-align: center;
  font-size: 12.5px;
  color: var(--text-mute);
}

/* Calendly final view */
.qualify-final { padding-bottom: 24px; }
.qualify-final #calendly-embed {
  margin-top: 18px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

/* Booked confirmation — replaces the calendar embed once the visitor
   actually picks a time and Calendly fires event_scheduled. */
.qualify-booked {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 48px 24px 56px;
  margin-top: 8px;
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.30);
  border-radius: var(--radius);
}
.qualify-booked-mark {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.14);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.45);
  margin-bottom: 4px;
}
.qualify-booked-title {
  margin: 0;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
}
.qualify-booked-sub {
  margin: 0;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-dim);
}

/* ============================================================
   Phase 2.7 — Polish layer
   ------------------------------------------------------------
   Soft depth shadows, hover lift, scroll reveals, CTA border
   beam, scrolled nav state, and the real-client case-study
   rotator (replaces the static work-card mockup).
   ============================================================ */

/* ---------- Soft depth shadows (Design pillar #4) ---------- */
:root {
  --shadow-md: 0 8px 24px -10px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 24px 60px -22px rgba(0, 0, 0, 0.6);
  --shadow-xl: 0 40px 100px -32px rgba(0, 0, 0, 0.72);
  --lift-transition: transform 260ms cubic-bezier(.2,.7,.3,1),
                     box-shadow 260ms cubic-bezier(.2,.7,.3,1),
                     border-color 260ms ease;
}

.why-card,
.qualify-shell,
.qualify-final,
.who-col,
.bookstrip,
.faq-item {
  box-shadow: var(--shadow-md);
  transition: var(--lift-transition);
}
.why-card:hover,
.who-col:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
}
.faq-item[open] { box-shadow: var(--shadow-lg); }

/* ---------- Progressive scroll reveal (Design pillar #3) ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms cubic-bezier(.2,.7,.3,1),
              transform 700ms cubic-bezier(.2,.7,.3,1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Primary CTA border beam (Design prompt #2) ----------
   Layer 1: a reliable layered glow shadow that works everywhere.
   Layer 2: a conic-gradient pseudo-element that sweeps a bright
   "beam" around the button border. Modern browsers only
   (mask-composite + @property); older browsers degrade silently
   to layer 1, which is already a meaningful upgrade. */
.btn-primary { position: relative; overflow: visible; isolation: isolate; }
.btn-primary:hover {
  box-shadow:
    0 0 0 1px rgba(255, 49, 49, 0.55),
    0 10px 28px -8px rgba(255, 49, 49, 0.45),
    0 0 38px -6px rgba(255, 49, 49, 0.40);
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: -1.5px;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(
    from var(--beam-angle, 0deg),
    rgba(255, 255, 255, 0) 0deg,
    rgba(255, 255, 255, 0.85) 30deg,
    rgba(255, 255, 255, 0) 80deg,
    rgba(255, 255, 255, 0) 360deg
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 220ms ease;
  z-index: 1;
}
.btn-primary:hover::before {
  opacity: 1;
  animation: beam-rotate 2.4s linear infinite;
}
@property --beam-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@keyframes beam-rotate {
  from { --beam-angle: 0deg; }
  to   { --beam-angle: 360deg; }
}
@media (prefers-reduced-motion: reduce) {
  .btn-primary:hover::before { animation: none; opacity: 0; }
}

/* ---------- Nav scrolled state (Design prompt #15) ----------
   Initial nav is intentionally lighter so the hero gradient peeks
   through; once the user scrolls past the hero the bg goes solid
   and the bar shortens slightly for a polished, anchored feel. */
.nav { transition: background 220ms ease, border-color 220ms ease; }
.nav-inner { transition: height 220ms ease; }
.nav { background: rgba(10, 10, 11, 0.45); border-bottom-color: rgba(255, 255, 255, 0.04); }
.nav.is-scrolled {
  background: rgba(10, 10, 11, 0.88);
  border-bottom-color: var(--border-strong);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03);
}
.nav.is-scrolled .nav-inner { height: 58px; }

/* ============================================================
   Real-client case-study rotator
   Three slides cycle: Clean Path Credit, A Tex Service Co.,
   Alamo City Hitch & Go. Each slide reuses the browser-frame
   shell but swaps body content + brand colors per client.
   ============================================================ */
.work-stage { display: flex; flex-direction: column; gap: 14px; }
.work-card-body--rotator {
  position: relative;
  padding: 0;
  min-height: 320px;
  background: transparent;
  display: block;
  overflow: hidden;
}
.work-link {
  margin-left: auto;
  font-size: 13px;
  text-decoration: none;
  color: var(--text-dim);
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px solid var(--border);
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}
.work-link:hover { color: var(--text); border-color: var(--text-dim); background: var(--bg-raised); }

.work-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 420ms ease, transform 420ms ease;
  pointer-events: none;
}
.work-slide.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.work-slide-inner {
  width: 100%; height: 100%;
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 16px;
  justify-content: center;
}
.work-slide-eyebrow {
  display: inline-flex; align-items: center;
  align-self: flex-start;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  padding: 6px 12px; border-radius: 999px;
  text-transform: uppercase;
}
.work-slide-headline {
  font-weight: 800; line-height: 1.05; letter-spacing: -0.02em;
  font-size: clamp(22px, 2.4vw, 30px);
}
.work-slide-cta {
  align-self: flex-start;
  padding: 9px 16px; border-radius: 10px;
  font-size: 13px; font-weight: 600;
  margin-top: 4px;
}

/* Slide 0 — Clean Path Credit (light theme, teal→blue gradient title) */
.work-slide--cleanpath {
  background:
    radial-gradient(60% 50% at 30% 0%, rgba(12, 138, 106, 0.18), transparent 70%),
    radial-gradient(50% 60% at 80% 100%, rgba(37, 99, 235, 0.14), transparent 70%),
    linear-gradient(180deg, #f7faf8, #eef5f1);
  color: #0a1a18;
}
.work-slide-eyebrow--cleanpath {
  color: #0c8a6a;
  background: rgba(12, 138, 106, 0.12);
  border: 1px solid rgba(12, 138, 106, 0.22);
}
.work-slide-grad-cleanpath {
  background: linear-gradient(90deg, #0c8a6a, #2563eb);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.work-slide-cta--dark {
  background: #0a0a0a; color: #fff;
}

/* Slide 1 — A Tex Service Co (dark navy + orange accent) */
.work-slide--atex {
  background:
    radial-gradient(60% 50% at 80% 10%, rgba(241, 130, 28, 0.18), transparent 70%),
    radial-gradient(40% 50% at 10% 90%, rgba(241, 130, 28, 0.10), transparent 70%),
    linear-gradient(180deg, #0e1320, #0a0e18);
  color: #f3f4f6;
}
.work-slide-eyebrow--atex {
  color: #f1821c;
  background: rgba(241, 130, 28, 0.10);
  border: 1px solid rgba(241, 130, 28, 0.30);
}
.work-slide-headline--atex { color: #fff; }
.work-slide-grad-atex { color: #f1821c; }
.work-slide-cta--orange { background: #f1821c; color: #0a0a0a; }

/* Slide 2 — Alamo City Hitch & Go (dark slate + red gradient on TOP-RATED) */
.work-slide--alamo {
  background:
    radial-gradient(50% 60% at 70% 0%, rgba(220, 38, 38, 0.18), transparent 70%),
    linear-gradient(180deg, #0f1219, #0a0c12);
  color: #f3f4f6;
}
.work-slide-eyebrow--alamo {
  color: #ef4444;
  background: transparent;
  border: none;
  letter-spacing: 0.16em;
  padding-left: 0;
}
.work-slide-headline--alamo {
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #fff;
}
.work-slide-grad-alamo {
  background: linear-gradient(90deg, #f87171, #b91c1c);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.work-slide-cta--red {
  background: #dc2626; color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Tabs row beneath the rotator */
.work-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 4px;
}
.work-tab {
  flex: 1 1 0;
  min-width: 0;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 12.5px;
  font-weight: 500;
  padding: 9px 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: inherit;
}
.work-tab:hover { color: var(--text); border-color: var(--text-dim); }
.work-tab.is-active {
  color: var(--text);
  border-color: var(--accent);
  background: rgba(255, 49, 49, 0.08);
}
.work-tab:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
