/* Zyco AI Studio — Resonant Stark design system */
/* Fonts loaded via <link> in page head — Instrument Serif, DM Sans, IBM Plex Mono */

:root,
[data-theme="light"] {
  --bg: #f3f1ec;
  --bg-muted: #e8e5de;
  --bg-elevated: #ffffff;
  --ink: #1a1814;
  --ink-muted: #2f2b26;
  --ink-subtle: #5c574e;
  --line: rgba(26, 24, 20, 0.1);
  --accent: #b45309;
  --accent-hover: #92400e;
  --accent-soft: rgba(180, 83, 9, 0.1);
  --focus: #b45309;
  --radius: 4px;
  --radius-lg: 6px;
  --shadow: 0 1px 1px rgba(26, 24, 20, 0.04), 0 18px 40px -24px rgba(26, 24, 20, 0.28);
  --shadow-hover: 0 1px 1px rgba(26, 24, 20, 0.05), 0 28px 56px -28px rgba(26, 24, 20, 0.38);
  --font-display: "Instrument Serif", Georgia, "Times New Roman", serif;
  --font-body: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --header-h: 68px;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --surface-dark: #1a1814;
  --surface-dark-fg: #f5f4f0;
  --surface-dark-muted: rgba(245, 244, 240, 0.68);
  --surface-dark-subtle: rgba(245, 244, 240, 0.48);
  --surface-dark-line: rgba(245, 244, 240, 0.12);
  --media-bg: #121110;
}

[data-theme="dark"] {
  --bg: #111110;
  --bg-muted: #1a1917;
  --bg-elevated: #222120;
  --ink: #f5f4f0;
  --ink-muted: #b8b4ac;
  --ink-subtle: #8a857c;
  --line: rgba(245, 244, 240, 0.1);
  --accent: #d97706;
  --accent-hover: #b45309;
  --accent-soft: rgba(217, 119, 6, 0.14);
  --focus: #d97706;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.45);
}

[data-theme="ocean"] {
  --bg: #081420;
  --bg-muted: #0c1a2e;
  --bg-elevated: #0f2238;
  --ink: #e8f4fc;
  --ink-muted: #a8cce0;
  --ink-subtle: #6a95b0;
  --line: rgba(232, 244, 252, 0.12);
  --accent: #22d3ee;
  --accent-hover: #06b6d4;
  --accent-soft: rgba(34, 211, 238, 0.14);
  --focus: #22d3ee;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.42);
  --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.52);
}

[data-theme="forest"] {
  --bg: #f1f7f2;
  --bg-muted: #e3ebe5;
  --bg-elevated: #ffffff;
  --ink: #0f1a14;
  --ink-muted: #4a5f52;
  --ink-subtle: #7a9184;
  --line: rgba(15, 26, 20, 0.1);
  --accent: #16a34a;
  --accent-hover: #15803d;
  --accent-soft: rgba(22, 163, 74, 0.1);
  --focus: #16a34a;
  --shadow: 0 12px 40px rgba(15, 26, 20, 0.07);
  --shadow-hover: 0 20px 50px rgba(15, 26, 20, 0.11);
}

[data-theme="violet"] {
  --bg: #120f1c;
  --bg-muted: #1a1528;
  --bg-elevated: #221c32;
  --ink: #f3effa;
  --ink-muted: #c8c0dc;
  --ink-subtle: #948aa8;
  --line: rgba(243, 239, 250, 0.1);
  --accent: #a78bfa;
  --accent-hover: #8b5cf6;
  --accent-soft: rgba(167, 139, 250, 0.14);
  --focus: #a78bfa;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.38);
  --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.48);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  transition: background 0.2s, color 0.2s;
}
body.atelier::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 400;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.55'/></svg>");
}
@media (prefers-reduced-motion: reduce) {
  body.atelier::after { display: none; }
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
ul { list-style: none; }
p { max-width: 68ch; }

.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.container-sm { width: min(760px, calc(100% - 40px)); margin-inline: auto; }

.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 200;
  transform: translateY(-200%); background: var(--ink); color: var(--bg);
  padding: 10px 16px; border-radius: 8px; font-weight: 700; text-decoration: none;
}
.skip-link:focus { transform: none; outline: 2px solid var(--accent); outline-offset: 2px; }

/* Typography */
.display { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.03em; line-height: 1.05; }
h1.display { font-size: clamp(2.9rem, 6.4vw, 5.15rem); }
h2.display { font-size: clamp(2.15rem, 4.2vw, 3.5rem); }
h3.display { font-size: clamp(1.35rem, 2vw, 1.75rem); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), color-mix(in srgb, var(--accent) 20%, transparent));
}
.display, h1.display, h2.display, h3.display { color: var(--ink); }
.lede { font-size: clamp(1.08rem, 1.55vw, 1.22rem); color: var(--ink-muted); max-width: 58ch; line-height: 1.7; }
.fact-lead {
  font-size: 1.08rem; color: var(--ink-muted); max-width: 62ch; line-height: 1.7;
  border-left: 2px solid var(--accent); padding-left: 1rem; margin-bottom: 1.5rem;
}
.fact-lead strong { color: var(--ink); }
.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
.price-num {
  font-family: var(--font-mono); font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700; letter-spacing: -0.04em; color: var(--ink);
}

/* Icons */
.icon {
  width: 1.25rem; height: 1.25rem; stroke: currentColor; fill: none;
  stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0;
}
.icon-lg { width: 1.5rem; height: 1.5rem; }
.icon-wrap {
  width: 44px; height: 44px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 10px; color: var(--ink);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 0 1.25rem; border-radius: var(--radius);
  font-weight: 600; font-size: 0.88rem; letter-spacing: 0.02em; text-decoration: none; cursor: pointer;
  border: 1px solid transparent; transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.btn:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; }
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); box-shadow: 0 4px 14px color-mix(in srgb, var(--accent) 24%, transparent); }
.btn-lg { min-height: 48px; padding-inline: 1.5rem; font-size: 0.94rem; }
.btn-secondary { background: var(--bg-elevated); color: var(--ink); border-color: var(--line); }
.btn-secondary:hover { border-color: color-mix(in srgb, var(--ink) 20%, var(--line)); background: var(--bg); }
.btn-ghost { background: transparent; color: var(--ink-muted); border-color: transparent; padding-inline: 0.5rem; min-height: auto; }
.btn-ghost:hover { color: var(--ink); }
.text-link {
  display: inline-flex; align-items: center; gap: 6px; font-weight: 600;
  color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line);
  transition: border-color 0.15s, gap 0.15s;
}
.text-link:hover { border-color: var(--ink); gap: 10px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg-elevated) 88%, transparent);
  backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.site-header.is-scrolled { border-color: var(--line); }
.nav {
  min-height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px; text-decoration: none;
  font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; letter-spacing: -0.03em; flex-shrink: 0;
}
.brand-mark {
  width: 32px; height: 32px; border-radius: 4px; background: var(--ink); color: var(--bg);
  display: grid; place-items: center; font-family: var(--font-display); font-size: 1.1rem;
}
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a {
  text-decoration: none; font-size: 0.88rem; font-weight: 500; color: var(--ink-muted);
  transition: color 0.15s;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 6px; text-decoration: none;
  font-family: var(--font-mono); font-size: 0.72rem; color: var(--ink-muted);
}
.nav-phone .icon { display: none; }
.nav-phone:hover { color: var(--ink); }
/* Always-visible contact path */
.nav-phone--hot {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--accent) 45%, var(--line));
  background: color-mix(in srgb, var(--accent) 12%, var(--bg-elevated));
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.nav-phone--hot:hover {
  background: color-mix(in srgb, var(--accent) 22%, var(--bg-elevated));
  border-color: var(--accent);
  color: var(--ink);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.nav-phone--hot .icon { color: var(--accent); }
.theme-toggle {
  position: relative;
  width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 999px;
  background: var(--bg-elevated); color: var(--ink); cursor: pointer;
  display: grid; place-items: center; transition: border-color 0.3s, background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.2s var(--ease);
}
.theme-toggle .theme-palette-icon { width: 1.1rem; height: 1.1rem; opacity: 0.88; }
.theme-swatch {
  position: absolute; right: 3px; bottom: 3px;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--accent); border: 2px solid var(--bg-elevated);
  box-shadow: 0 0 0 1px var(--line);
  transition: background 0.45s var(--ease), transform 0.3s var(--ease);
  pointer-events: none;
}
.theme-toggle:hover .theme-swatch { transform: scale(1.12); }
.theme-toggle:hover {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
  box-shadow: 0 0 0 4px var(--accent-soft);
  transform: scale(1.05);
}
.theme-toggle .icon { transition: transform 0.45s var(--ease), opacity 0.3s; }
.theme-toggle:active .icon { transform: rotate(-20deg) scale(0.92); }
[data-theme-mode="dark"] .theme-toggle {
  background: color-mix(in srgb, var(--accent) 12%, var(--bg-elevated));
  border-color: color-mix(in srgb, var(--accent) 30%, var(--line));
  color: color-mix(in srgb, var(--accent) 70%, #fff);
}
.theme-transition,
.theme-transition *,
.theme-transition *::before,
.theme-transition *::after {
  transition: background 0.45s var(--ease), color 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease) !important;
}
@media (prefers-reduced-motion: reduce) {
  .theme-transition,
  .theme-transition *,
  .theme-transition *::before,
  .theme-transition *::after { transition: none !important; }
}
.theme-toggle:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; }
.menu-btn {
  display: none; border: 0; background: transparent; padding: 8px; cursor: pointer;
  flex-shrink: 0;
}
.menu-btn span {
  display: block; width: 22px; height: 2px; margin: 5px 0; background: var(--ink);
  transition: transform 0.25s, opacity 0.25s;
}
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero { padding: clamp(3rem, 8vw, 6rem) 0 clamp(3.5rem, 7vw, 5rem); position: relative; }
.hero-power { overflow: hidden; }
.hero-ambient {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, color-mix(in srgb, var(--accent) 7%, transparent) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 60%, color-mix(in srgb, var(--accent) 5%, transparent) 0%, transparent 50%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
  position: relative; z-index: 1;
}
.hero-copy .display em {
  font-style: italic; color: var(--accent);
}
.trust-ribbon {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem;
}
.trust-ribbon-item {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0.35rem 0.75rem; border-radius: 999px;
  border: 1px solid var(--line); background: var(--bg-elevated);
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-muted);
}
.trust-ribbon-item .icon { width: 0.9rem; height: 0.9rem; color: var(--accent); }
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 2rem;
}
.hero-proof-note {
  display: flex; align-items: flex-start; gap: 8px; margin-top: 1.25rem;
  font-size: 0.86rem; color: var(--ink-muted); max-width: 42ch;
}
.hero-proof-note .icon {
  width: 1rem; height: 1rem; color: #16a34a; flex-shrink: 0; margin-top: 0.15rem;
  stroke-width: 2.5;
}
.hero-trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.65rem;
  margin-top: 2rem;
}
.hero-trust-card {
  padding: 1rem 0.85rem; border-radius: var(--radius);
  border: 1px solid var(--line); background: var(--bg-elevated);
  box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s;
}
.hero-trust-card:hover {
  transform: translateY(-3px); border-color: color-mix(in srgb, var(--accent) 30%, var(--line));
  box-shadow: var(--shadow-hover);
}
.hero-trust-card strong {
  display: block; font-size: 1.35rem; font-weight: 600; color: var(--ink);
  margin-bottom: 0.15rem;
}
.hero-trust-card > span {
  display: block; font-size: 0.8rem; font-weight: 600; color: var(--ink);
}
.hero-trust-card small {
  display: block; margin-top: 0.25rem; font-size: 0.68rem; color: var(--ink-subtle); line-height: 1.4;
}
.showcase-verify-note {
  margin-top: 0.65rem; font-size: 0.75rem; color: var(--ink-subtle); text-align: center;
  font-family: var(--font-mono);
  max-width: none; /* the global paragraph measure was centring it off-axis */
}
.hero-visual {
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  background: var(--bg-elevated); box-shadow: var(--shadow);
}
.portfolio-thumb img, .portfolio-thumb .preview-picture,
.portfolio-thumb .preview-shot-img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.preview-picture { display: block; width: 100%; height: 100%; }
.preview-shot-img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

/* Sits behind every screenshot so a slow or failed image shows the brand
   gradient and the site name instead of the near-black media well. */
.preview-fallback-layer {
  position: absolute; inset: 0; z-index: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem; text-align: center;
}
.preview-fallback-name {
  font-family: var(--font-mono); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.04em; color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}
.preview-picture { position: relative; z-index: 1; }
.preview-picture.is-failed { display: none; }
/* Every media well that hosts a fallback layer must be a containing block. */
.portfolio-card-pro-media,
.portfolio-thumb,
.showcase-preview-media { position: relative; }
.hero-picture img { width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: top center; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 1.25rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line);
}
.hero-stat strong {
  display: block; font-family: var(--font-mono); font-size: 1.35rem; font-weight: 600;
}
.hero-stat span { font-size: 0.82rem; color: var(--ink-muted); }

/* Sections */
.section { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem;
  margin-bottom: clamp(2rem, 4vw, 3rem); flex-wrap: wrap;
}
.section-alt {
  position: relative; overflow: hidden;
  background: var(--bg-muted); border-block: 1px solid var(--line);
  color: var(--ink);
}
.section-alt::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 8% 15%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 58%),
    radial-gradient(ellipse 55% 45% at 92% 85%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 52%);
}
.section-alt::after {
  content: "";
  position: absolute; inset: 0; pointer-events: none; opacity: 0.45;
  background-image: radial-gradient(circle at center, color-mix(in srgb, var(--ink) 9%, transparent) 1px, transparent 1px);
  background-size: 26px 26px;
}
.section-alt > .container { position: relative; z-index: 1; }

/* Cards */
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; align-items: stretch; }
.card {
  padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-elevated); transition: transform 0.2s var(--ease), box-shadow 0.2s, border-color 0.2s;
  display: flex; flex-direction: column; height: 100%;
}
.card .text-link { margin-top: auto; padding-top: 0.85rem; }
.card:hover { box-shadow: var(--shadow-hover); border-color: color-mix(in srgb, var(--ink) 12%, var(--line)); }
.card h3 { margin: 0.85rem 0 0.5rem; font-family: var(--font-body); font-size: 1.05rem; font-weight: 700; color: var(--ink); }
.card p { font-size: 0.92rem; color: var(--ink-muted); }

/* Hero showcase */
.hero-showcase-wrap {
  position: relative; border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--bg-elevated); box-shadow: var(--shadow); padding: 0.85rem;
}
.showcase-badge {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 0.85rem;
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-muted);
}
.live-pulse {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
  animation: pulseLive 1.8s ease-in-out infinite;
}
@keyframes pulseLive {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  50% { opacity: 0.85; box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}
.browser-frame { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: var(--bg); }
.browser-chrome {
  display: flex; align-items: center; gap: 0.65rem; padding: 0.65rem 0.85rem;
  background: var(--bg-elevated); border-bottom: 1px solid var(--line);
}
.browser-dots { display: flex; gap: 5px; flex-shrink: 0; }
.browser-dots span { width: 9px; height: 9px; border-radius: 50%; }
.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:nth-child(3) { background: #28c840; }
.browser-url {
  flex: 1; padding: 0.35rem 0.65rem; background: var(--bg); border-radius: 6px;
  font-size: 0.72rem; color: var(--ink-muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
/* The text is swapped synchronously with the slide; only the fade is animated,
   so the URL bar can never show a different site than the caption. */
.browser-url.is-changing { animation: url-swap 0.36s var(--ease); }
@keyframes url-swap {
  0% { opacity: 0; transform: translateY(-2px); }
  100% { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .browser-url.is-changing { animation: none; }
}
.browser-live {
  font-family: var(--font-mono); font-size: 0.62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; color: #16a34a;
  display: inline-flex; align-items: center; gap: 5px;
}
.browser-viewport {
  aspect-ratio: 16/10; position: relative; overflow: hidden; background: var(--media-bg);
  min-height: 220px;
}
.browser-viewport.is-switching .showcase-slide { opacity: 0; transform: scale(1.04); }
.showcase-slide {
  display: block; position: absolute; inset: 0; text-decoration: none; color: inherit;
  opacity: 0; transform: scale(1.04);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.showcase-slide.is-active { opacity: 1; transform: scale(1); }
.showcase-preview-media { position: absolute; inset: 0; overflow: hidden; }
.preview-shot-img,
.case-feature-shot img,
.portfolio-gallery-media .preview-shot-img {
  image-rendering: -webkit-optimize-contrast;
}
.showcase-preview-media .preview-shot-img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  transition: transform 8s linear;
}
.showcase-slide.is-active .preview-shot-img { transform: scale(1.06); }
.browser-viewport:hover .showcase-slide.is-active .preview-shot-img { transform: scale(1.1); }
.showcase-preview-overlay {
  position: absolute; inset: 0; z-index: 2; display: flex; justify-content: space-between; align-items: flex-end;
  padding: 1.1rem; background: linear-gradient(to top, rgba(0,0,0,.68) 0%, transparent 58%);
  color: #fff; pointer-events: none;
}
.showcase-name { font-weight: 700; font-size: 1rem; }
.showcase-cat { font-size: 0.78rem; opacity: 0.85; margin-top: 0.15rem; }
.showcase-cta { font-family: var(--font-mono); font-size: 0.72rem; opacity: 0.9; flex-shrink: 0; }
@media (max-width: 600px) {
  /* Side-by-side caption and CTA collide once the frame narrows; stack them. */
  .showcase-preview-overlay { flex-direction: column; align-items: flex-start; gap: 0.4rem; padding: 0.9rem; }
  .showcase-cta { font-size: 0.68rem; }
}
.hero-showcase-tabs {
  display: flex; justify-content: center; gap: 0.5rem; margin-top: 0.85rem;
}
.showcase-dot {
  width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%;
  background: var(--line); cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.showcase-dot.is-active {
  background: var(--accent); transform: scale(1.2);
}
.showcase-dot:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; }
.showcase-playpause {
  width: 20px; height: 20px; margin-left: 0.35rem; padding: 0;
  border: 0; border-radius: 50%; background: transparent; color: var(--ink-subtle);
  cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
  transition: color 0.2s;
}
.showcase-playpause:hover { color: var(--ink); }
.showcase-playpause:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; }
/* Pause glyph by default; play glyph once paused. */
.showcase-playpause::before {
  content: ""; width: 8px; height: 9px;
  border-left: 3px solid currentColor; border-right: 3px solid currentColor;
}
.showcase-playpause.is-paused::before {
  width: 0; height: 0; border: 0;
  border-top: 5px solid transparent; border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor; margin-left: 2px;
}
.showcase-tab {
  padding: 0.4rem 0.75rem; border: 1px solid var(--line); border-radius: 999px;
  background: var(--bg); color: var(--ink-muted); font-size: 0.75rem; font-weight: 600;
  cursor: pointer; transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
}
.showcase-tab:hover { border-color: var(--ink-subtle); color: var(--ink); transform: translateY(-1px); }
.showcase-tab.is-active {
  border-color: var(--accent); color: var(--accent); background: var(--accent-soft);
}

/* Client marquee */
.client-marquee {
  overflow: hidden; border-block: 1px solid var(--line); background: var(--bg-elevated);
  padding: 0.85rem 0;
}
.client-marquee-track {
  display: flex; gap: 2.5rem; width: max-content;
  animation: marqueeScroll 32s linear infinite;
}
.client-marquee-track span {
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-subtle); white-space: nowrap;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Trust wall */
.trust-wall {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: var(--surface-dark); color: var(--surface-dark-fg);
  border-block: 1px solid var(--surface-dark-line);
}
.trust-wall .eyebrow { color: var(--surface-dark-subtle); }
.trust-wall .eyebrow::before { background: var(--accent); }
.trust-wall .display { color: var(--surface-dark-fg); margin-bottom: 0; }
.trust-wall-head { margin-bottom: clamp(2rem, 4vw, 2.75rem); max-width: 20ch; }
.trust-wall-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.trust-wall-card {
  padding: 1.35rem 1.25rem 1.5rem; border-radius: var(--radius);
  border: 1px solid var(--surface-dark-line);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.25s var(--ease), border-color 0.25s, background 0.25s;
}
.trust-wall-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  background: color-mix(in srgb, var(--accent) 8%, transparent);
}
.trust-wall-icon {
  width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 10px; margin-bottom: 1rem;
  background: color-mix(in srgb, var(--accent) 18%, transparent);
  color: color-mix(in srgb, var(--accent) 70%, #fff);
}
.trust-wall-card h3 {
  font-size: 1.02rem; font-weight: 700; margin-bottom: 0.45rem; color: var(--surface-dark-fg);
}
.trust-wall-card p {
  font-size: 0.88rem; line-height: 1.55;
  color: var(--surface-dark-muted); max-width: none;
}
.trust-wall-card .text-link {
  color: color-mix(in srgb, var(--accent) 80%, #fff);
  border-color: color-mix(in srgb, var(--accent) 40%, transparent);
}

/* Verify banner */
.verify-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; flex-wrap: wrap;
  padding: 1.15rem 1.35rem; margin-bottom: 1.5rem;
  border: 1px solid color-mix(in srgb, var(--accent) 28%, var(--line));
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--bg-elevated) 60%);
}
.verify-banner-copy {
  display: flex; align-items: center; gap: 1rem;
}
.verify-banner-icon {
  width: 48px; height: 48px; display: grid; place-items: center; flex-shrink: 0;
  border-radius: 12px; background: var(--bg-elevated); border: 1px solid var(--line);
  color: var(--accent);
}
.verify-banner-copy strong { display: block; font-size: 1rem; margin-bottom: 0.1rem; }
.verify-banner-copy span { font-size: 0.88rem; color: var(--ink-muted); }

/* Trust pillars */
.trust-pillar { position: relative; padding-top: 2.5rem; }
.trust-pillar-num {
  position: absolute; top: 1.25rem; left: 1.5rem;
  font-family: var(--font-display); font-size: 2.5rem; line-height: 1;
  color: color-mix(in srgb, var(--accent) 22%, var(--line)); pointer-events: none;
}
.trust-pillar h3 { position: relative; z-index: 1; }

/* Proof strip */
.proof-strip {
  padding: 1.75rem 0; background: var(--bg-elevated);
  border-block: 1px solid var(--line);
}
.proof-strip-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.proof-strip-item {
  padding: 0.85rem 1rem; border-radius: var(--radius);
  border: 1px solid var(--line); background: var(--bg);
  transition: border-color 0.2s, transform 0.2s var(--ease);
}
.proof-strip-item:hover { border-color: color-mix(in srgb, var(--accent) 35%, var(--line)); transform: translateY(-2px); }
.proof-strip-item strong {
  display: block; font-size: 0.92rem; font-weight: 600; margin-bottom: 0.2rem;
}
.proof-strip-item span { font-size: 0.75rem; color: var(--ink-muted); }
.proof-strip-item .text-link { font-size: 0.75rem; border: 0; }

/* Portfolio bento — balanced powerful grid */
.portfolio-bento {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; grid-auto-rows: minmax(180px, auto);
}
.portfolio-bento .portfolio-card {
  display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; background: var(--bg-elevated); text-decoration: none; color: inherit;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
  min-height: 100%;
}
.portfolio-bento .portfolio-card:hover {
  transform: translateY(-5px); box-shadow: var(--shadow-hover);
  border-color: color-mix(in srgb, var(--card-accent, var(--accent)) 35%, var(--line));
}
.portfolio-card--hero { grid-column: span 7; grid-row: span 2; }
.portfolio-card--tall { grid-column: span 5; grid-row: span 2; }
.portfolio-card--wide { grid-column: span 7; }
.portfolio-card--compact { grid-column: span 5; }
.portfolio-card--banner { grid-column: span 12; }
.portfolio-bento .portfolio-card:not([class*="portfolio-card--"]) { grid-column: span 4; }
.portfolio-preview-frame { display: flex; flex-direction: column; flex: 1; min-height: 0; }
.portfolio-chrome {
  display: flex; align-items: center; gap: 0.5rem; padding: 0.55rem 0.75rem;
  background: var(--bg); border-bottom: 1px solid var(--line); flex-shrink: 0;
}
.portfolio-dots { display: flex; gap: 5px; }
.portfolio-dots span { width: 7px; height: 7px; border-radius: 50%; }
.portfolio-dots span:nth-child(1) { background: #ff5f57; }
.portfolio-dots span:nth-child(2) { background: #febc2e; }
.portfolio-dots span:nth-child(3) { background: #28c840; }
.portfolio-url {
  flex: 1; font-family: var(--font-mono); font-size: 0.65rem; color: var(--ink-muted);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.portfolio-live {
  font-family: var(--font-mono); font-size: 0.58rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: #16a34a; display: inline-flex; align-items: center; gap: 4px;
}
.portfolio-live-dot { width: 5px; height: 5px; border-radius: 50%; background: #22c55e; animation: pulseLive 1.8s infinite; }
.portfolio-preview-media {
  position: relative; flex: 1; min-height: 140px; overflow: hidden; background: var(--media-bg);
}
.portfolio-preview-media .preview-shot-img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  transition: transform 0.6s var(--ease);
}
.portfolio-card:hover .portfolio-preview-media .preview-shot-img { transform: scale(1.06); }
.portfolio-card--hero .portfolio-preview-media { min-height: 280px; }
.portfolio-card--tall .portfolio-preview-media { min-height: 100%; }
.portfolio-preview-shade {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 50%);
}
.portfolio-index {
  position: absolute; top: 0.6rem; right: 0.7rem; z-index: 3;
  font-family: var(--font-mono); font-size: 0.65rem; color: rgba(255,255,255,.45);
}
.portfolio-preview-caption {
  position: absolute; left: 0.9rem; right: 0.9rem; bottom: 0.75rem; z-index: 3; color: #fff;
}
.portfolio-preview-caption h3 { font-size: 1rem; font-weight: 700; margin: 0 0 0.15rem; color: #fff; }
.portfolio-card--hero .portfolio-preview-caption h3 { font-size: 1.2rem; }
.portfolio-preview-caption p { margin: 0; font-size: 0.75rem; opacity: 0.88; color: #fff; }
.portfolio-body {
  padding: 1rem 1.1rem 1.15rem; display: flex; flex-direction: column; flex: 1;
}
.portfolio-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 0.55rem; }
.portfolio-tag {
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.2rem 0.5rem; border-radius: 999px; border: 1px solid var(--line); color: var(--ink-muted);
}
.portfolio-desc {
  font-size: 0.88rem; color: var(--ink-muted); line-height: 1.55; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.portfolio-link {
  margin-top: 0.75rem; font-weight: 700; font-size: 0.85rem; color: var(--ink);
  transition: gap 0.2s; display: inline-flex; align-items: center; gap: 6px;
}
.portfolio-card:hover .portfolio-link { gap: 10px; color: var(--accent); }

/* Reveal stagger */
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .hero-showcase-wrap, .client-marquee-track, .live-pulse, .portfolio-live-dot { animation: none; }
  .reveal-delay-1, .reveal-delay-2, .reveal-delay-3, .reveal-delay-4 { transition-delay: 0s; }
}


/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; align-items: stretch; }
.price-card {
  position: relative; padding: 1.75rem; border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--bg-elevated); color: var(--ink); display: flex; flex-direction: column;
}
.price-card.is-featured { border-color: var(--accent); box-shadow: var(--shadow); }
.price-badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 12px; border-radius: 999px;
}
.price-tier { font-weight: 700; font-size: 1rem; margin-bottom: 0.35rem; color: var(--ink); }
.price-best { font-size: 0.86rem; color: var(--ink-muted); margin-bottom: 1rem; }
.price-delivery { font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-subtle); margin: 0.5rem 0 1.25rem; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; margin-top: 1.5rem; color: var(--ink); }
.compare-table th, .compare-table td {
  padding: 0.75rem 0.85rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top;
}
.compare-table th { font-weight: 600; color: var(--ink-muted); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; }
.compare-table .yes { color: var(--ink); font-weight: 600; }
.compare-table .no { color: var(--ink-subtle); }
.subsection { margin-top: 3.5rem; padding-top: 2.5rem; border-top: 1px solid var(--line); }
.subsection-title { font-family: var(--font-display); font-size: 1.75rem; margin-bottom: 0.5rem; color: var(--ink); }
.subsection-desc { color: var(--ink-muted); margin-bottom: 1.5rem; max-width: 58ch; }
.addon-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
.addon-item {
  display: flex; gap: 1rem; padding: 1.1rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg);
}
.addon-item strong { display: block; margin-bottom: 0.25rem; }
.addon-item p { font-size: 0.86rem; color: var(--ink-muted); }
.addon-price { font-family: var(--font-mono); font-size: 0.82rem; margin-top: 0.5rem; color: var(--ink); }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-elevated); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.1rem 1.2rem; border: 0; background: transparent; color: var(--ink);
  font-weight: 600; text-align: left; cursor: pointer;
}
.faq-q:focus-visible { outline: 2px solid var(--focus); outline-offset: -2px; }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.25s var(--ease); }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; padding: 0 1.2rem; color: var(--ink-muted); font-size: 0.92rem; }
.faq-item.is-open .faq-a-inner { padding-bottom: 1.1rem; }
.faq-icon { font-family: var(--font-mono); color: var(--ink-subtle); transition: transform 0.2s; }
.faq-item.is-open .faq-icon { transform: rotate(45deg); }

/* Resources */
.resource-hero-card {
  padding: clamp(2rem, 4vw, 3rem); border: 2px solid var(--accent); border-radius: var(--radius-lg);
  background: var(--accent-soft); margin-bottom: 2.5rem;
}
.resource-hero-card h2 { margin: 0.5rem 0 0.75rem; }
.steps {
  /* It is an <ol> for semantics; the cards carry their own "Step 01" labels, so
     the native markers were rendering as loose "1." "2." outside the boxes. */
  list-style: none; padding-left: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 2rem 0 3rem;
}
.step {
  padding: 1.25rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-elevated);
}
.step-num {
  font-family: var(--font-mono); font-size: 0.78rem; color: var(--accent); margin-bottom: 0.5rem;
}
.resource-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.resource-card {
  padding: 1.35rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-elevated); transition: transform 0.2s, box-shadow 0.2s;
}
.resource-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.resource-card .label {
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-subtle); margin-bottom: 0.5rem;
}
.resource-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.45rem; }
.resource-card p { font-size: 0.9rem; color: var(--ink-muted); margin-bottom: 0.85rem; }

/* CTA band — always dark surface for readable contrast */
.cta-band {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  border-top: 1px solid var(--surface-dark-line);
  background: var(--surface-dark);
  color: var(--surface-dark-fg);
}
.cta-band .eyebrow { color: var(--surface-dark-subtle); }
.cta-band .display,
.cta-band h2 { color: var(--surface-dark-fg); }
.cta-band .lede { color: var(--surface-dark-muted); }
.cta-band .btn-primary { background: var(--accent); color: #fff; }
.cta-band .btn-secondary {
  color: var(--surface-dark-fg);
  border-color: rgba(245, 244, 240, 0.35);
  background: transparent;
}
.cta-band .btn-secondary:hover { background: rgba(255, 255, 255, 0.08); }

/* Footer */
.site-footer {
  position: relative; overflow: hidden;
  padding: 0 0 1.5rem; border-top: 0;
  background: var(--footer-bg, #0a0a0a); color: var(--footer-fg, #f5f5f4);
}
.site-footer.footer-rich { margin-top: 0; }
.footer-accent-bar {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent) 20%, #d97706 50%, var(--accent) 80%, transparent);
  background-size: 200% 100%;
  animation: footerShimmer 4s ease-in-out infinite;
}
@keyframes footerShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.footer-mesh {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.35;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 85%);
}
.footer-glow {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.footer-glow--right {
  top: -140px; right: -100px; width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(180, 83, 9, 0.24) 0%, transparent 68%);
}
.footer-glow--left {
  bottom: -180px; left: -120px; width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.12) 0%, transparent 70%);
}
.footer-watermark {
  position: absolute; bottom: -0.12em; right: -0.02em; pointer-events: none; user-select: none;
  font-family: var(--font-display); font-size: clamp(5rem, 16vw, 11rem); line-height: 0.85;
  letter-spacing: -0.04em; color: rgba(255, 255, 255, 0.03); white-space: nowrap;
}
.footer-hero {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 4vw, 3rem);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(2rem, 4vw, 2.75rem);
  border-bottom: 1px solid var(--footer-line, rgba(255, 255, 255, 0.08));
}
.footer-eyebrow {
  color: rgba(245, 245, 244, 0.45) !important;
  margin-bottom: 0.65rem;
}
.footer-headline {
  font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.05; letter-spacing: -0.03em; font-weight: 400;
  margin-bottom: 1.25rem; color: var(--footer-fg);
}
.footer-headline span { display: block; color: color-mix(in srgb, var(--accent) 75%, #fff); }
.footer-rich .brand { color: var(--footer-fg); margin-bottom: 0.85rem; }
.footer-rich .brand-mark { background: var(--accent); color: #fff; }
.footer-tagline {
  max-width: 46ch; font-size: 0.95rem; line-height: 1.65;
  color: var(--footer-muted, rgba(245, 245, 244, 0.68));
}
.footer-tagline strong { color: rgba(245, 245, 244, 0.92); font-weight: 600; }

.footer-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem;
  margin-top: 1.5rem; padding-top: 1.25rem;
  border-top: 1px solid var(--footer-line, rgba(255, 255, 255, 0.08));
}
.footer-stat {
  padding: 0.65rem 0.5rem; border-radius: 10px;
  border: 1px solid var(--footer-line, rgba(255, 255, 255, 0.07));
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.25s, transform 0.25s var(--ease);
}
.footer-stat:hover { border-color: rgba(180, 83, 9, 0.35); transform: translateY(-2px); }
.footer-stat strong {
  display: block; font-size: 1.15rem; font-weight: 600; color: var(--footer-fg);
  margin-bottom: 0.15rem;
}
.footer-stat span { font-size: 0.72rem; color: var(--footer-muted, rgba(245, 245, 244, 0.55)); }

.footer-hero-action {
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  padding: 1.5rem; border-radius: var(--radius-lg);
  border: 1px solid var(--footer-line, rgba(255, 255, 255, 0.1));
  background: rgba(255, 255, 255, 0.03);
  position: relative;
}
.footer-cta-glow::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px;
  background: linear-gradient(135deg, rgba(180,83,9,.55), transparent 40%, rgba(217,119,6,.35));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none; animation: footerBorderPulse 3s ease-in-out infinite;
}
@keyframes footerBorderPulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}
.footer-phone-label {
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--footer-muted, rgba(245, 245, 244, 0.55));
  margin-bottom: 0.35rem;
}
.footer-phone {
  font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 400; line-height: 1.1; letter-spacing: -0.02em;
  text-decoration: none; color: var(--footer-fg); margin-bottom: 1rem;
  transition: color 0.2s;
}
.footer-phone:hover { color: var(--accent); }
.footer-cta-note {
  margin-top: 0.75rem; font-size: 0.78rem;
  color: var(--footer-muted, rgba(245, 245, 244, 0.45));
}
.footer-rich .btn-primary { width: 100%; text-align: center; justify-content: center; }

.footer-portfolio {
  padding: 1.5rem 0 0.5rem;
  border-bottom: 1px solid var(--footer-line, rgba(255, 255, 255, 0.08));
}
.footer-section-label {
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(245, 245, 244, 0.38);
  margin-bottom: 0.85rem;
}
.footer-portfolio-track {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.footer-portfolio-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0.45rem 0.85rem; border-radius: 999px;
  border: 1px solid var(--footer-line, rgba(255, 255, 255, 0.12));
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.8rem; font-weight: 600; color: var(--footer-muted, rgba(245, 245, 244, 0.78));
  text-decoration: none; transition: border-color 0.2s, color 0.2s, transform 0.2s var(--ease), background 0.2s;
}
.footer-portfolio-chip:hover {
  color: var(--footer-fg); border-color: rgba(180, 83, 9, 0.45);
  background: rgba(180, 83, 9, 0.1); transform: translateY(-2px);
}
.footer-portfolio-chip .live-pulse { width: 6px; height: 6px; flex-shrink: 0; }

.footer-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  padding: clamp(2rem, 4vw, 2.75rem) 0;
}
.footer-col strong {
  display: block; margin-bottom: 0.85rem; font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(245, 245, 244, 0.42);
}
.footer-col a {
  display: flex; align-items: center; gap: 6px; text-decoration: none;
  font-size: 0.88rem; color: var(--footer-muted, rgba(245, 245, 244, 0.72));
  margin-bottom: 0.55rem; transition: color 0.2s, transform 0.2s var(--ease);
}
.footer-col a::after {
  content: "→"; opacity: 0; transform: translateX(-6px);
  transition: opacity 0.2s, transform 0.2s var(--ease); font-size: 0.85em;
}
.footer-col a:hover { color: var(--footer-fg); transform: translateX(3px); }
.footer-col a:hover::after { opacity: 1; transform: translateX(0); }

.footer-marquee {
  overflow: hidden; border-block: 1px solid var(--footer-line, rgba(255, 255, 255, 0.08));
  padding: 0.75rem 0; margin-bottom: 0.25rem;
}
.footer-marquee-track {
  display: flex; gap: 2rem; width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.footer-marquee-track span {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(245, 245, 244, 0.28); white-space: nowrap;
}
.footer-marquee-track span::after { content: "◆"; margin-left: 2rem; font-size: 0.5rem; opacity: 0.6; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  padding-top: 1.25rem;
  font-family: var(--font-mono); font-size: 0.72rem;
  color: rgba(245, 245, 244, 0.38);
}
.footer-address { font-style: normal; }
.footer-bottom a { color: inherit; text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--footer-fg); }

[data-theme-mode="dark"] .site-footer.footer-rich {
  --footer-bg: #050505;
  --footer-line: rgba(255, 255, 255, 0.07);
}
[data-theme="ocean"] .site-footer.footer-rich,
[data-theme="violet"] .site-footer.footer-rich {
  --footer-bg: color-mix(in srgb, var(--bg) 88%, #000);
}

@media (prefers-reduced-motion: reduce) {
  .footer-marquee-track, .footer-accent-bar { animation: none; }
  .footer-cta-glow::before { animation: none; }
}

@media (max-width: 900px) {
  .footer-hero { grid-template-columns: 1fr; }
  .footer-hero-action { align-items: stretch; }
  .footer-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Exit prompt */
.exit-overlay {
  position: fixed; inset: 0; z-index: 300; display: none; place-items: center;
  background: rgba(0, 0, 0, 0.55); padding: 1rem;
}
.exit-overlay.is-open { display: grid; }
.exit-modal {
  width: min(420px, 100%); padding: 2rem; border-radius: var(--radius-lg);
  background: var(--bg-elevated); border: 1px solid var(--line); position: relative;
}
.exit-close {
  position: absolute; top: 12px; right: 12px; border: 0; background: transparent;
  color: var(--ink-subtle); cursor: pointer; width: 36px; height: 36px; border-radius: 8px;
}
.exit-close:focus-visible { outline: 2px solid var(--focus); }

/* AI pricing tabs */
.tab-nav { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.tab-btn {
  padding: 0.55rem 1rem; border: 1px solid var(--line); border-radius: 999px;
  background: var(--bg-elevated); color: var(--ink-muted); cursor: pointer; font-weight: 600; font-size: 0.85rem;
}
.tab-btn.is-active { border-color: var(--ink); color: var(--ink); }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; }
.data-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.data-table th, .data-table td { padding: 0.85rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.data-table th { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-muted); }
.data-table .price-col { font-family: var(--font-mono); white-space: nowrap; }

/* Breadcrumbs */
.breadcrumbs { padding: 1.25rem 0 0; font-size: 0.85rem; color: var(--ink-muted); }
.breadcrumbs a { color: var(--ink-muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--ink); }

/* Reveal — hidden only after JS arms the observer. If scripts fail, content stays visible. */
@media (prefers-reduced-motion: no-preference) {
  html.js-reveal .reveal { opacity: 0; transform: translateY(20px); filter: blur(4px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), filter 0.6s var(--ease); }
  html.js-reveal .reveal.is-visible { opacity: 1; transform: none; filter: none; }
}

/* Responsive */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-bento .portfolio-card--hero { grid-column: span 12; grid-row: span 1; }
  .portfolio-bento .portfolio-card--tall { grid-column: span 12; grid-row: span 1; }
  .portfolio-bento .portfolio-card--wide { grid-column: span 12; }
  .portfolio-bento .portfolio-card--compact { grid-column: span 12; }
  .portfolio-bento .portfolio-card:not([class*="portfolio-card--"]) { grid-column: span 6; }
  .trust-wall-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .menu-btn { display: block; }
  .nav-links {
    position: fixed; inset: var(--header-h) 0 auto 0; background: var(--bg);
    border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch;
    padding: 1rem 1.25rem 1.5rem; gap: 0; transform: translateY(-120%);
    opacity: 0; pointer-events: none; transition: transform 0.25s var(--ease), opacity 0.25s;
  }
  .nav-links.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 0.85rem 0; border-bottom: 1px solid var(--line); }
  .nav-actions .btn-primary { display: none; }
  /* The email must stay whole and tappable; the wordmark yields space. */
  .brand { min-width: 0; overflow: hidden; }
  .nav-phone { flex-shrink: 0; white-space: nowrap; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-wall-grid { grid-template-columns: 1fr; }
  .proof-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .verify-banner { flex-direction: column; align-items: stretch; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .faq-grid, .resource-grid, .addon-grid, .footer-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-bento { grid-template-columns: 1fr; }
  .portfolio-bento .portfolio-card,
  .portfolio-card--hero, .portfolio-card--tall, .portfolio-card--wide, .portfolio-card--banner {
    grid-column: span 1; grid-row: span 1;
  }
  .portfolio-card--hero .portfolio-preview-media { min-height: 200px; }
  .hero-showcase-wrap { animation: none; }
  .card-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .content-grid, .article-shell { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}

/* Small phones: tighten the header so the full phone number always fits. */
@media (max-width: 620px) {
  .nav { gap: 0.5rem; }
  .brand { font-size: 0.95rem; gap: 8px; }
  .brand-mark { width: 28px; height: 28px; font-size: 1rem; }
  .menu-btn { padding: 6px 4px; }
  .nav-actions { gap: 0.4rem; }
  .nav-phone { font-size: 0.62rem; gap: 5px; padding: 0.35rem 0.55rem; min-height: 40px; }
  .theme-toggle { width: 34px; height: 34px; }
  .theme-toggle .theme-palette-icon { width: 1rem; height: 1rem; }
}
@media (max-width: 430px) {
  /* Below this width the wordmark and the email cannot both fit; the email wins.
     The wordmark is hidden visually only, so the home link keeps its accessible name. */
  .nav .brand-text {
    position: absolute; width: 1px; height: 1px;
    overflow: hidden; clip-path: inset(50%); white-space: nowrap;
  }
  .nav-phone .icon { display: none; }
}

/* ── Portfolio groups ────────────────────────────────────── */
.portfolio-groups { display: grid; gap: clamp(2rem, 4vw, 3rem); }
.portfolio-group-title {
  display: flex; flex-direction: column; gap: 0.3rem;
  font-family: var(--font-body); font-size: 1rem; font-weight: 700;
  letter-spacing: -0.01em; margin-bottom: 1rem;
}
.portfolio-group-note {
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 400;
  color: var(--ink-muted); letter-spacing: 0.01em; text-transform: none;
}
.portfolio-live--concept,
.live-badge--concept {
  font-family: var(--font-mono); font-size: 0.58rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-muted);
}

/* ── Inner pages ─────────────────────────────────────────── */
.page-hero-actions {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin-top: 1.5rem;
}
.page-hero {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 80% at 100% 0%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 55%);
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 1rem; }

.content-grid {
  display: grid; grid-template-columns: 220px 1fr; gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start; padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.content-grid aside h2, .content-grid aside h3 { font-size: 1.15rem; font-weight: 700; line-height: 1.3; }
/* The aside heading is an h2: it precedes the first h2 in the prose column, so
   leaving it as h3 skipped a level straight from the page h1 (WCAG 1.3.1).
   It is sized like an h3 here so promoting the tag changed nothing visually. */

.prose h2, .article-body h2 {
  font-family: var(--font-body); font-size: 1.35rem; font-weight: 700;
  margin: 2rem 0 0.65rem; letter-spacing: -0.02em;
}
.prose h2:first-child, .article-body h2:first-child { margin-top: 0; }
.prose h3, .article-body h3 { font-size: 1.05rem; font-weight: 700; margin: 1.5rem 0 0.5rem; }
.prose p, .article-body p { color: var(--ink-muted); margin-bottom: 1rem; font-size: 0.94rem; }
.prose ul, .article-body ul, .article-body ol { margin: 0 0 1rem 1.1rem; color: var(--ink-muted); font-size: 0.94rem; }
.prose li, .article-body li { margin-bottom: 0.45rem; }
.article-meta { font-family: var(--font-mono); font-size: 0.75rem; color: var(--ink-subtle); margin-top: 1rem; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap; }
.section-head h2 { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem); }
.section-head p { color: var(--ink-muted); max-width: 42ch; font-size: 0.94rem; }
.card-icon { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; color: var(--ink-subtle); margin-bottom: 0.65rem; }

.article-shell {
  display: grid; grid-template-columns: 1fr 240px; gap: 2.5rem;
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(3rem, 5vw, 4rem);
  align-items: start;
}
.article-aside {
  padding: 1.25rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-elevated); position: sticky; top: calc(var(--header-h) + 1rem);
}
.article-aside strong { display: block; margin-bottom: 0.75rem; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-subtle); }
.article-aside a { display: block; text-decoration: none; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.5rem; color: var(--ink-muted); }
.article-aside a:hover { color: var(--ink); }

.check-grid { display: grid; gap: 0.65rem; margin: 1rem 0 1.5rem; }
@media (min-width: 640px) { .check-grid { grid-template-columns: 1fr 1fr; } }
.check-item {
  display: flex; gap: 0.75rem; padding: 0.85rem 1rem; border: 1px solid var(--line);
  border-radius: var(--radius); background: var(--bg-elevated); cursor: pointer;
}
.check-item input { margin-top: 0.2rem; accent-color: var(--accent); }
.check-item strong { display: block; font-size: 0.9rem; }
.check-item span { font-size: 0.82rem; color: var(--ink-muted); }
.phase-tag {
  display: inline-block; font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 0.35rem 0.65rem;
  border-radius: 999px; margin-bottom: 0.75rem;
}
.phase-tag.before { background: var(--accent-soft); color: var(--accent); }
.phase-tag.after { background: color-mix(in srgb, var(--ink) 8%, transparent); color: var(--ink-muted); }

/* Contact */
.contact-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; padding: 2.5rem 0; border-bottom: 1px solid var(--line); }
.contact-info-card {
  padding: 1.35rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-elevated); text-decoration: none; color: inherit;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.contact-info-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.contact-info-card .label { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-subtle); }
.contact-info-card .value { font-weight: 600; margin: 0.35rem 0; }
.contact-info-card .sub { font-size: 0.82rem; color: var(--ink-muted); }
.contact-info-card--hot {
  border-color: color-mix(in srgb, var(--accent) 55%, var(--line));
  background: linear-gradient(160deg, color-mix(in srgb, var(--accent) 14%, var(--bg-elevated)), var(--bg-elevated));
  box-shadow: 0 10px 28px -18px color-mix(in srgb, var(--accent) 55%, transparent);
}
.contact-info-card--hot .value { font-size: 1.35rem; color: var(--ink); }
.contact-info-card--hot .label { color: var(--accent); }

.contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; padding: 3rem 0; }
.process-step { display: flex; gap: 1rem; margin-bottom: 1.25rem; }
.process-step-num {
  width: 32px; height: 32px; border-radius: 999px; border: 1px solid var(--line);
  display: grid; place-items: center; font-family: var(--font-mono); font-size: 0.78rem; flex-shrink: 0;
}
.process-step strong { display: block; font-size: 0.92rem; margin-bottom: 0.2rem; }
.process-step span { font-size: 0.86rem; color: var(--ink-muted); }
.hours-box {
  margin-top: 1.5rem; padding: 1.25rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-elevated);
}
.hours-box h3 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem; color: var(--ink-subtle); }
.hours-row { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.88rem; padding: 0.35rem 0; border-bottom: 1px solid var(--line); }
.hours-row:last-child { border-bottom: 0; }

.form-panel {
  padding: 1.75rem; border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--bg-elevated); box-shadow: var(--shadow);
}
.form-panel h2 { font-size: 1.35rem; font-weight: 700; margin-bottom: 0.35rem; }
.form-panel .form-lede { font-size: 0.9rem; color: var(--ink-muted); margin-bottom: 1.5rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 0.35rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.75rem 0.9rem; border: 1px solid var(--line); border-radius: 8px;
  background: var(--bg); color: var(--ink); transition: border-color 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: 0.78rem; color: var(--ink-subtle); margin-top: 0.75rem; }

/* Estimate carried over from the planner / calculator. */
.planner-context {
  margin: 0 0 1rem; padding: 0.7rem 0.9rem; border-radius: var(--radius);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--line));
  background: var(--accent-soft); font-size: 0.82rem; line-height: 1.5;
}
.calc-result-cta { margin-top: 1rem; display: inline-flex; }

/* Submission result — always visible, never silent. */
.form-status {
  margin-top: 0.9rem; padding: 0.85rem 1rem; border-radius: var(--radius);
  font-size: 0.86rem; line-height: 1.55; border: 1px solid var(--line);
  background: var(--bg-muted); color: var(--ink);
}
.form-status:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; }
.form-status a { color: inherit; font-weight: 600; }
.form-status--pending { border-color: var(--line); color: var(--ink-muted); }
.form-status--success {
  border-color: rgba(22, 163, 74, 0.45);
  background: rgba(22, 163, 74, 0.1);
  padding: 0;
  border: 0;
  background: transparent;
}
form.is-submitted > :not([data-form-status]) { display: none !important; }
form.is-submitted [data-form-status] { margin-top: 0; }
.thanks-panel {
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(22, 163, 74, 0.4);
  background: color-mix(in srgb, #16a34a 10%, var(--bg-elevated));
  color: var(--ink);
}
.thanks-panel-title { font-size: 1.05rem; margin-bottom: 0.35rem; }
.thanks-panel-lede { font-size: 0.92rem; color: var(--ink-muted); margin-bottom: 1rem; max-width: none; }
.thanks-panel-actions {
  display: flex; flex-wrap: wrap; gap: 0.65rem; margin-bottom: 1rem;
}
.thanks-panel-next {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 0.55rem;
  font-size: 0.86rem; color: var(--ink-muted);
}
.thanks-panel-next strong { color: var(--ink); }
.sent-banner {
  padding: clamp(1.25rem, 3vw, 2rem) 0 0;
}
.sent-banner .thanks-panel { max-width: 720px; }
.form-status--error {
  border-color: rgba(185, 28, 28, 0.5);
  background: rgba(185, 28, 28, 0.09);
}
.form-status-detail { display: block; margin-top: 0.35rem; font-size: 0.78rem; color: var(--ink-subtle); }
[data-form-status] { font-size: 0.9rem; font-weight: 600; margin-top: 0.75rem; color: var(--accent); }
.map-embed iframe { display: block; width: 100%; height: 360px; border: 0; filter: grayscale(30%); }

/* Portfolio case studies */
.portfolio-live-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); padding-bottom: 3rem; }
.live-card {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: var(--bg-elevated); color: var(--ink);
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.live-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.live-preview-frame { display: block; text-decoration: none; color: inherit; }
.live-chrome {
  display: flex; align-items: center; gap: 0.5rem; padding: 0.55rem 0.75rem;
  background: var(--bg); border-bottom: 1px solid var(--line);
}
.live-dots { display: flex; gap: 5px; }
.live-dots span { width: 7px; height: 7px; border-radius: 50%; }
.live-dots span:nth-child(1) { background: #ff5f57; }
.live-dots span:nth-child(2) { background: #febc2e; }
.live-dots span:nth-child(3) { background: #28c840; }
.live-url { flex: 1; font-family: var(--font-mono); font-size: 0.65rem; color: var(--ink-muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.live-badge { font-family: var(--font-mono); font-size: 0.58rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #16a34a; }
.live-dot { display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: #22c55e; margin-right: 4px; }
.live-preview-media { aspect-ratio: 16/10; position: relative; overflow: hidden; background: var(--media-bg); }
.live-preview-media > * { position: absolute; inset: 0; }
.preview-shot { background-size: cover; background-position: top center; }
.preview-fallback { display: flex; align-items: center; justify-content: center; }
.preview-monogram { font-size: 3rem; font-weight: 600; color: rgba(255,255,255,0.9); }
.live-preview-shade { background: linear-gradient(to top, rgba(0,0,0,.75), transparent 55%); z-index: 2; pointer-events: none; }
.live-index { position: absolute; top: 0.65rem; right: 0.75rem; z-index: 3; font-family: var(--font-mono); font-size: 0.65rem; color: rgba(255,255,255,.4); }
.live-preview-caption { position: absolute; left: 1rem; right: 1rem; bottom: 0.85rem; z-index: 3; color: #fff; }
.live-preview-caption h2 { font-size: 1.1rem; font-weight: 700; margin: 0 0 0.2rem; color: #fff; }
.live-preview-caption p { margin: 0; font-size: 0.78rem; opacity: 0.88; color: #fff; }
.live-body { padding: 1.15rem; }
.live-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 0.65rem; }
.live-tag { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.2rem 0.5rem; border-radius: 999px; border: 1px solid var(--line); color: var(--ink-muted); }
.live-body p { font-size: 0.9rem; color: var(--ink-muted); margin-bottom: 0.75rem; }
.live-link { font-weight: 600; font-size: 0.88rem; text-decoration: none; color: var(--accent); }
.live-link:hover { text-decoration: underline; }

@media (max-width: 1024px) {
  .cards { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
}

/* —— Professional layout refresh —— */
.hero-pro { padding: clamp(3.5rem, 8vw, 5.5rem) 0 clamp(3rem, 6vw, 4rem); position: relative; overflow: hidden; }
.hero-pro::before {
  content: "";
  position: absolute; top: -20%; right: -10%; width: min(520px, 70vw); height: min(520px, 70vw);
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 14%, transparent) 0%, transparent 68%);
}
.hero-pro::after {
  content: "";
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px; pointer-events: none;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--accent) 35%, var(--line)) 50%, transparent);
}
.hero-pro > .container { position: relative; z-index: 1; }
.hero-pro h1.display { font-size: clamp(2.25rem, 5vw, 3.65rem); max-width: 16ch; }
.hero-pro .display em { font-style: normal; color: inherit; }
.hero-meta-bar {
  display: flex; flex-wrap: wrap; gap: 1.5rem 2rem;
  margin: 1.75rem 0 0.5rem; padding: 1.25rem 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.hero-meta-item strong {
  display: block; font-size: 1.25rem; font-weight: 600; color: var(--ink); margin-bottom: 0.1rem;
}
/* Direct child only — the counter markup nests a <span> inside <strong>, and a
   descendant selector here shrank every hero number to the caption size. */
.hero-meta-item > span { font-size: 0.8rem; color: var(--ink-muted); }

.logo-strip {
  border-block: 1px solid var(--line); background: var(--bg-muted);
  padding: 1rem 0;
}
.logo-strip-inner {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.logo-strip-label {
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-subtle); flex-shrink: 0;
}
.logo-strip-names {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem;
}
.logo-strip-names span {
  font-size: 0.88rem; font-weight: 500; color: var(--ink-muted);
}

.section-head--stack { flex-direction: column; align-items: flex-start; }
.section-head--stack .lede { margin-top: 0.5rem; }
/* Wide screens: title left, lede right on the same baseline. Stacked, the two
   left-aligned blocks leave half the row empty and the page reads unfinished. */
@media (min-width: 900px) {
  .section-head--stack:not(.section-head--center) {
    flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 3rem;
  }
  .section-head--stack:not(.section-head--center) > :first-child { flex: 1 1 30rem; }
  .section-head--stack:not(.section-head--center) > .lede {
    flex: 1 1 24rem; max-width: 42ch; margin-top: 0;
  }
}
.section-head--center { align-items: center; text-align: center; }
.section-head--center .lede { margin-inline: auto; }
.section-cta { margin-top: 2rem; text-align: center; }

.process-list {
  list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
  counter-reset: none;
}
.process-step {
  display: flex; gap: 1rem; padding: 1.5rem;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--bg-elevated);
}
.process-num {
  font-size: 0.82rem; font-weight: 600; color: var(--accent);
  padding-top: 0.15rem; flex-shrink: 0;
}
.process-step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--ink); }
.process-step p { font-size: 0.9rem; color: var(--ink-muted); max-width: none; }

.pricing-preview {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.pricing-preview-card {
  padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--bg-elevated); color: var(--ink);
}
.pricing-preview-card--featured {
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
  box-shadow: var(--shadow);
}
.pricing-preview-tier {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-muted); margin-bottom: 0.35rem;
}
.pricing-preview-note {
  font-size: 0.85rem; color: var(--ink-muted); margin: 0.35rem 0 1rem;
}
.pricing-preview-list {
  list-style: none; font-size: 0.88rem; color: var(--ink-muted);
}
.pricing-preview-list li {
  padding: 0.35rem 0; border-top: 1px solid var(--line);
}
.pricing-preview-list li::before {
  content: "✓ "; color: var(--accent); font-weight: 700;
}

.portfolio-grid-pro {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.portfolio-card-pro {
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; background: var(--bg-elevated);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.portfolio-card-pro:hover {
  box-shadow: var(--shadow-hover);
  border-color: color-mix(in srgb, var(--ink) 12%, var(--line));
}
.portfolio-card-pro-media {
  aspect-ratio: 16/10; overflow: hidden; background: var(--media-bg);
}
.portfolio-card-pro-media .preview-shot-img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  transition: transform 0.4s var(--ease);
}
.portfolio-card-pro:hover .preview-shot-img { transform: scale(1.03); }
.portfolio-card-pro-body { padding: 1.1rem 1.25rem 1.25rem; }
.portfolio-card-pro-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.2rem; color: var(--ink); }
.portfolio-card-pro-body p { font-size: 0.85rem; color: var(--ink-muted); max-width: none; margin-bottom: 0.5rem; }
.portfolio-card-pro-link {
  font-size: 0.82rem; font-weight: 600; color: var(--accent);
}

.faq-grid--single { grid-template-columns: 1fr; max-width: 640px; margin-inline: auto; }

.cta-band-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.cta-band-inner .display { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 0.35rem; }
.cta-band-inner .lede { margin-bottom: 0; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; flex-shrink: 0; }

.footer-pro {
  background: var(--surface-dark);
  color: var(--surface-dark-fg);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 1.5rem;
  border-top: 1px solid var(--surface-dark-line);
}
.footer-pro .brand { color: var(--surface-dark-fg); margin-bottom: 0.65rem; }
.footer-pro .brand-mark { background: var(--accent); color: #fff; }
.footer-pro-brand p {
  font-size: 0.9rem; color: var(--surface-dark-muted); max-width: 36ch; line-height: 1.6;
}
.footer-pro-top {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; flex-wrap: wrap;
  padding-bottom: 2rem; margin-bottom: 2rem;
  border-bottom: 1px solid var(--surface-dark-line);
}
.footer-pro-contact {
  display: flex; flex-direction: column; align-items: flex-end; gap: 0.75rem;
}
.footer-pro-phone {
  font-family: var(--font-display); font-size: 1.5rem; text-decoration: none;
  color: var(--surface-dark-fg); letter-spacing: -0.02em;
}
.footer-pro-phone:hover { color: var(--accent); }
.footer-grid--pro { margin-bottom: 2rem; }
.footer-pro .footer-col strong { color: var(--surface-dark-fg); }
.footer-pro .footer-col a { color: var(--surface-dark-muted); }
.footer-pro .footer-col a:hover { color: var(--surface-dark-fg); }
.footer-bottom--pro {
  padding-top: 1.25rem; border-top: 1px solid var(--surface-dark-line);
  color: var(--surface-dark-subtle);
  font-family: var(--font-mono); font-size: 0.72rem;
}
.footer-bottom--pro .footer-address { color: inherit; }

.fact-lead { border-left-width: 3px; }

/* Portfolio gallery — equal 3×3 grid, images only */
.gallery-wall {
  max-width: 1080px;
  margin-inline: auto;
}
/* Flex, not grid: the client group holds five cards, and a grid strands the
   last two against the left edge with a hole where the third should be.
   Wrapping flex items keep the same 3-up rhythm but centre the short row. */
.portfolio-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  align-items: stretch;
}
.portfolio-gallery .portfolio-card {
  display: block;
  position: relative;
  flex: 0 1 calc((100% - 2.5rem) / 3);
  width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 10;
  height: auto;
  grid-column: auto !important;
  grid-row: auto !important;
  min-height: 0 !important;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--media-bg);
  box-shadow: 0 1px 2px rgba(26, 24, 20, 0.04);
  text-decoration: none;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.portfolio-gallery .portfolio-card--hero,
.portfolio-gallery .portfolio-card--tall,
.portfolio-gallery .portfolio-card--wide,
.portfolio-gallery .portfolio-card--compact,
.portfolio-gallery .portfolio-card--banner {
  grid-column: auto !important;
  grid-row: auto !important;
}
.portfolio-gallery .portfolio-card::after {
  content: "";
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: opacity 0.3s;
}
.portfolio-gallery .portfolio-card:hover {
  border-color: color-mix(in srgb, var(--accent) 38%, var(--line));
  box-shadow:
    0 8px 28px rgba(26, 24, 20, 0.1),
    0 0 0 1px color-mix(in srgb, var(--accent) 12%, transparent);
  transform: translateY(-2px);
}
.portfolio-gallery-media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  overflow: hidden; background: var(--media-bg);
}
.portfolio-gallery-media .preview-picture,
.portfolio-gallery-media .preview-shot-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  transition: transform 0.55s var(--ease);
}
.portfolio-gallery .portfolio-card:hover .preview-shot-img { transform: scale(1.035); }

@media (max-width: 900px) {
  .gallery-wall { max-width: none; }
  .portfolio-gallery { gap: 1rem; }
  .portfolio-gallery .portfolio-card { flex-basis: calc((100% - 1rem) / 2); }
}
@media (max-width: 520px) {
  .portfolio-gallery { gap: 0.75rem; }
  .portfolio-gallery .portfolio-card {
    flex-basis: calc((100% - 0.75rem) / 2);
    aspect-ratio: 4 / 3;
  }
}

/* Customer reviews */
/* Three reviews in a two-up grid left an orphan card and a half-empty row. */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 1080px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
.review-card {
  display: flex; flex-direction: column;
  padding: 1.35rem 1.4rem 1.4rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.review-card:hover {
  border-color: color-mix(in srgb, var(--accent) 28%, var(--line));
  box-shadow: var(--shadow-hover);
}
.review-stars {
  display: flex; gap: 2px; margin-bottom: 0.85rem;
  font-size: 0.9rem; line-height: 1;
}
.review-star { color: var(--line); }
.review-star.is-filled { color: var(--accent); }
.review-quote {
  flex: 1; margin: 0 0 1.1rem; padding: 0; border: 0;
}
.review-quote p {
  font-size: 0.95rem; line-height: 1.6; color: var(--ink);
  max-width: none; margin: 0;
}
.review-meta {
  display: flex; flex-direction: column; gap: 0.15rem;
  padding-top: 1rem; border-top: 1px solid var(--line);
}
.review-meta strong {
  font-size: 0.92rem; font-weight: 700; color: var(--ink);
}
.review-business { font-size: 0.85rem; color: var(--ink-muted); }
.review-type {
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--ink-subtle); margin-top: 0.1rem;
}
.review-site {
  margin-top: 0.5rem; font-size: 0.82rem; font-weight: 600;
  color: var(--accent); text-decoration: none;
}
.review-site:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .process-list { grid-template-columns: 1fr; }
  .pricing-preview { grid-template-columns: 1fr; }
  .portfolio-grid-pro { grid-template-columns: repeat(2, 1fr); }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .footer-pro-contact { align-items: flex-start; }
}
@media (max-width: 600px) {
  .portfolio-grid-pro { grid-template-columns: 1fr; }
  .hero-meta-bar { gap: 1rem; }
  .card-grid--services { grid-template-columns: 1fr; }
}

/* —— Modern homepage features —— */
.hero-speed-badge {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 1rem;
  padding: 0.45rem 0.85rem; border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--accent) 28%, var(--line));
  background: color-mix(in srgb, var(--accent) 8%, var(--bg-elevated));
  font-size: 0.82rem; font-weight: 600; color: var(--ink);
}
.hero-speed-badge .icon { width: 1rem; height: 1rem; color: var(--accent); }

.showcase-live-badge {
  display: inline-flex; align-items: center; gap: 6px; margin-bottom: 0.35rem;
  font-family: var(--font-mono); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: #86efac;
}

.btn-pulse {
  animation: btnPulse 2.8s ease-in-out infinite;
}
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 0%, transparent); }
  50% { box-shadow: 0 0 0 8px color-mix(in srgb, var(--accent) 18%, transparent); }
}
@media (prefers-reduced-motion: reduce) {
  .btn-pulse { animation: none; }
}

/* Site planner */
.site-planner {
  max-width: 820px; margin-inline: auto;
  padding: 1.75rem; border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--bg-elevated); box-shadow: var(--shadow);
}
.planner-steps {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem;
}
.planner-step {
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.05em;
  text-transform: uppercase; padding: 0.35rem 0.65rem; border-radius: 999px;
  border: 1px solid var(--line); color: var(--ink-subtle);
}
.planner-step.is-active {
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
  background: var(--accent-soft); color: var(--ink); font-weight: 700;
}
.planner-panel.is-hidden { display: none; }
.planner-q {
  font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; color: var(--ink);
}
.planner-options { display: grid; gap: 0.65rem; }
.planner-options--grid { grid-template-columns: repeat(3, 1fr); }
.planner-options--row { grid-template-columns: repeat(4, 1fr); }
.planner-option {
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.2rem;
  padding: 1rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg); color: var(--ink); cursor: pointer; text-align: left;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.planner-option strong { font-size: 0.92rem; }
.planner-option span:last-child { font-size: 0.78rem; color: var(--ink-muted); }
.planner-option-icon { font-size: 1.25rem; margin-bottom: 0.15rem; }
.planner-option:hover { border-color: color-mix(in srgb, var(--accent) 35%, var(--line)); transform: translateY(-2px); }
.planner-option.is-selected {
  border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft);
}
.planner-checks, .calc-extras { display: flex; flex-direction: column; gap: 0.65rem; }
.planner-check {
  display: flex; align-items: center; gap: 0.65rem; font-size: 0.92rem; color: var(--ink);
  cursor: pointer;
}
.planner-check input { accent-color: var(--accent); width: 1rem; height: 1rem; }
.planner-check .mono { margin-left: auto; color: var(--ink-muted); font-size: 0.78rem; }
.planner-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--line);
}
.planner-result-tier {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.35rem;
}
.planner-result-price { margin-bottom: 0.35rem; }
.planner-result-meta { font-size: 0.88rem; color: var(--ink-muted); margin-bottom: 1rem; }
.planner-result-list {
  list-style: none; font-size: 0.9rem; color: var(--ink-muted); margin-bottom: 1.25rem;
}
.planner-result-list li { padding: 0.35rem 0; border-top: 1px solid var(--line); }
.planner-result-list li::before { content: "✓ "; color: var(--accent); font-weight: 700; }
.planner-result-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Portfolio gallery proof overlay */
.portfolio-gallery .portfolio-card { position: relative; }
.gallery-card-proof {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 1.75rem 1rem 0.85rem;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.45) 55%, transparent 100%);
  color: #fff; pointer-events: none;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.portfolio-gallery .portfolio-card:hover .gallery-card-proof,
.portfolio-gallery .portfolio-card:focus-visible .gallery-card-proof {
  opacity: 1; transform: translateY(0);
}
.gallery-proof-industry {
  display: block; font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.75; margin-bottom: 0.2rem;
}
.gallery-proof-text { display: block; font-size: 0.88rem; font-weight: 700; }
.gallery-proof-delivery {
  display: inline-block; margin-top: 0.35rem; font-size: 0.68rem;
  padding: 0.15rem 0.5rem; border-radius: 999px;
  background: rgba(255, 255, 255, 0.12); color: #fff;
}
@media (max-width: 768px) {
  .gallery-card-proof { opacity: 1; transform: none; }
}

/* Delivery timeline */
.delivery-timeline {
  list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
  counter-reset: none; max-width: 960px; margin-inline: auto;
}
.delivery-step {
  position: relative; padding: 1.5rem; border: 1px solid var(--line);
  border-radius: var(--radius-lg); background: var(--bg-elevated);
  box-shadow: var(--shadow);
}
.delivery-step-marker {
  margin-bottom: 0.85rem;
}
.delivery-step-marker span {
  display: inline-block; padding: 0.25rem 0.65rem; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent);
  font-size: 0.72rem; font-weight: 700;
}
.delivery-step-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.45rem; color: var(--ink); }
.delivery-step-body p { font-size: 0.9rem; color: var(--ink-muted); max-width: none; }
.delivery-note { font-size: 0.82rem; color: var(--ink-muted); }

/* AI demo */
.ai-demo {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2rem; align-items: start;
}
.ai-demo-window {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; background: var(--bg-elevated); box-shadow: var(--shadow);
}
.ai-demo-chrome {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.75rem 1rem; border-bottom: 1px solid var(--line);
  background: var(--bg-muted);
}
.ai-demo-title { font-weight: 700; font-size: 0.88rem; }
.ai-demo-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 0.68rem; color: #16a34a;
}
.ai-demo-thread {
  min-height: 220px; max-height: 280px; overflow-y: auto;
  padding: 1rem; display: flex; flex-direction: column; gap: 0.75rem;
}
.ai-demo-msg { display: flex; gap: 0.65rem; align-items: flex-start; }
.ai-demo-msg--user { justify-content: flex-end; }
.ai-demo-msg--user .ai-demo-bubble {
  background: var(--accent-soft); color: var(--ink);
  border: 1px solid color-mix(in srgb, var(--accent) 25%, var(--line));
}
.ai-demo-avatar {
  width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0;
  display: grid; place-items: center; font-weight: 700; font-size: 0.75rem;
  background: var(--accent); color: #fff;
}
.ai-demo-bubble {
  padding: 0.65rem 0.85rem; border-radius: 12px; max-width: 88%;
  font-size: 0.88rem; line-height: 1.5; background: var(--bg-muted); color: var(--ink);
}
.ai-demo-chips {
  display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 0.75rem 1rem 1rem;
  border-top: 1px solid var(--line);
}
.ai-demo-chip {
  padding: 0.35rem 0.75rem; border-radius: 999px; border: 1px solid var(--line);
  background: var(--bg); color: var(--ink-muted); font-size: 0.78rem; font-weight: 600;
  cursor: pointer; transition: border-color 0.15s, color 0.15s;
}
.ai-demo-chip:hover { border-color: var(--accent); color: var(--ink); }
.ai-demo-list {
  list-style: none; margin: 0 0 1.25rem; font-size: 0.92rem; color: var(--ink-muted);
}
.ai-demo-list li {
  padding: 0.65rem 0; border-bottom: 1px solid var(--line);
}
.ai-demo-list strong { color: var(--ink); }
.ai-demo-note { margin-top: 1rem; font-size: 0.78rem; color: var(--ink-subtle); }

/* Pricing calculator */
.price-calculator {
  margin-top: 2.5rem; padding: 1.75rem; border: 1px solid var(--line);
  border-radius: var(--radius-lg); background: var(--bg-elevated);
  box-shadow: var(--shadow);
}
.calc-head { margin-bottom: 1.25rem; }
.calc-lede { font-size: 0.9rem; color: var(--ink-muted); margin-top: 0.35rem; }
.calc-control label { display: block; font-weight: 600; margin-bottom: 0.65rem; }
.calc-control input[type="range"] {
  width: 100%; accent-color: var(--accent);
}
.calc-extras { margin: 1.25rem 0; }
.calc-output {
  padding: 1.25rem; margin-bottom: 1rem; border-radius: var(--radius);
  background: var(--bg-muted); border: 1px solid var(--line);
}
.calc-result-tier {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.25rem;
}
.calc-result-price { margin-bottom: 0.25rem; }
.calc-result-delivery { font-size: 0.82rem; color: var(--ink-muted); }
.calc-result-note { font-size: 0.78rem; color: var(--ink-subtle); margin-top: 0.35rem; }

/* Enhanced reviews */
.review-card-top {
  display: flex; justify-content: space-between; align-items: center;
  gap: 0.75rem; margin-bottom: 0.85rem;
}
.review-delivery-badge {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; padding: 0.2rem 0.55rem; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent); white-space: nowrap;
}
.review-type-badge {
  display: inline-block; margin-top: 0.15rem;
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-subtle);
}

/* Case study */
.case-study-meta {
  display: flex; flex-wrap: wrap; gap: 1.5rem 2rem; margin-top: 1.25rem;
}
.case-study-meta div span {
  display: block; font-size: 1.35rem; font-weight: 700; color: var(--ink);
}
.case-study-meta small { font-size: 0.78rem; color: var(--ink-muted); }
.case-study-shot {
  margin: 2rem 0; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
}
.case-study-shot img { width: 100%; display: block; }
.case-study-grid { padding-bottom: 3rem; }
.case-study-facts {
  list-style: none; font-size: 0.88rem; color: var(--ink-muted);
}
.case-study-facts li { padding: 0.5rem 0; border-bottom: 1px solid var(--line); }
.case-study-facts strong { color: var(--ink); display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.15rem; }
.case-study-quote {
  margin: 2rem 0 0; padding: 1.25rem 1.35rem; border-left: 3px solid var(--accent);
  background: var(--accent-soft); border-radius: 0 var(--radius) var(--radius) 0;
}
.case-study-quote p { font-size: 1rem; color: var(--ink); margin-bottom: 0.65rem; max-width: none; }
.case-study-quote footer { font-size: 0.85rem; color: var(--ink-muted); }

@media (max-width: 900px) {
  .planner-options--grid { grid-template-columns: repeat(2, 1fr); }
  .planner-options--row { grid-template-columns: repeat(2, 1fr); }
  .delivery-timeline { grid-template-columns: 1fr; }
  .ai-demo { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .planner-options--grid, .planner-options--row { grid-template-columns: 1fr; }
}

/* AI services page */
.ai-services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.ai-service-card {
  display: flex; flex-direction: column; height: 100%;
  padding: 1.35rem; border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--bg-elevated); box-shadow: var(--shadow);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.ai-service-card:hover {
  border-color: color-mix(in srgb, var(--accent) 30%, var(--line));
  box-shadow: var(--shadow-hover); transform: translateY(-2px);
}
.ai-service-card-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 0.5rem; margin-bottom: 0.75rem;
}
.ai-service-icon { font-size: 1.5rem; line-height: 1; }
.ai-service-tag {
  font-family: var(--font-mono); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.2rem 0.5rem; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent);
}
.ai-service-card h3 {
  font-size: 1.05rem; font-weight: 700; margin-bottom: 0.45rem; color: var(--ink);
}
.ai-service-card > p {
  flex: 1; font-size: 0.9rem; color: var(--ink-muted); max-width: none; margin-bottom: 0;
}
.ai-service-card-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  margin-top: 1rem; padding-top: 0.85rem; border-top: 1px solid var(--line);
}
.ai-service-price { font-weight: 700; color: var(--accent); font-size: 0.88rem; }
.ai-service-delivery { font-size: 0.78rem; color: var(--ink-subtle); }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

@media (max-width: 900px) {
  .ai-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ai-services-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Premium motion layer
   ========================================================================== */

/* Page load */
body.is-loading { overflow: hidden; }
body.is-loading .hero-pro > .container {
  opacity: 0;
  transform: translateY(18px);
}
body.is-loaded .hero-pro > .container {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 300;
  pointer-events: none;
  background: transparent;
}
.scroll-progress-fill {
  display: block;
  height: 100%;
  width: var(--progress, 0%);
  background: linear-gradient(90deg, var(--accent), color-mix(in srgb, var(--accent) 60%, #fff));
  box-shadow: 0 0 12px color-mix(in srgb, var(--accent) 45%, transparent);
  transition: width 0.08s linear;
  border-radius: 0 2px 2px 0;
}

/* Hero ambient orbs */
.hero-ambient {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  will-change: transform;
  transition: opacity 0.4s;
}
.hero-orb--1 {
  top: -8%;
  right: 5%;
  width: min(480px, 55vw);
  height: min(480px, 55vw);
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 22%, transparent), transparent 68%);
  animation: orbFloat1 14s ease-in-out infinite;
}
.hero-orb--2 {
  bottom: 5%;
  left: -8%;
  width: min(360px, 45vw);
  height: min(360px, 45vw);
  background: radial-gradient(circle, color-mix(in srgb, var(--dream, var(--accent)) 16%, transparent), transparent 70%);
  animation: orbFloat2 18s ease-in-out infinite;
}
.hero-orb--3 {
  top: 40%;
  left: 35%;
  width: min(200px, 30vw);
  height: min(200px, 30vw);
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 10%, transparent), transparent 72%);
  animation: orbFloat3 11s ease-in-out infinite;
}
@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, 24px); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(28px, -18px); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-14px, -20px); }
}

/* Hero title stagger */
.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.05em;
  max-width: none;
}
.hero-line {
  display: block;
}
html.js-hero .hero-line {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(6px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease), filter 0.65s var(--ease);
}
html.js-hero .hero-line.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}
.hero-line--accent {
  background: linear-gradient(135deg, var(--ink) 0%, var(--accent) 55%, color-mix(in srgb, var(--accent) 70%, #d97706) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Hero item stagger — gated so a JS failure never blanks the hero */
html.js-hero [data-hero-item] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
html.js-hero [data-hero-item].is-visible {
  opacity: 1;
  transform: none;
}

/* Magnetic buttons */
[data-magnetic] {
  transition: transform 0.18s var(--ease), box-shadow 0.2s, background 0.15s;
  will-change: transform;
}

/* Card lift + tilt */
.card[data-tilt],
.pricing-preview-card[data-tilt] {
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateZ(0);
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease), border-color 0.2s;
}
.card[data-tilt]:hover,
.pricing-preview-card[data-tilt]:hover {
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-6px) translateZ(0);
  box-shadow: 0 20px 48px -16px color-mix(in srgb, var(--accent) 18%, rgba(26, 24, 20, 0.12));
  border-color: color-mix(in srgb, var(--accent) 28%, var(--line));
}
.card .icon-wrap {
  transition: background 0.25s, border-color 0.25s, transform 0.25s var(--ease);
}
.card:hover .icon-wrap {
  background: var(--accent-soft);
  border-color: color-mix(in srgb, var(--accent) 30%, var(--line));
  transform: scale(1.05);
}

/* Logo marquee */
.logo-strip--marquee {
  overflow: hidden;
  padding: 1.1rem 0;
}
.logo-strip--marquee .logo-strip-inner {
  flex-wrap: nowrap;
}
.logo-marquee {
  overflow: hidden;
  flex: 1;
  min-width: 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logo-marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: logoMarquee 28s linear infinite;
}
.logo-marquee-track span {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-muted);
  white-space: nowrap;
  transition: color 0.2s;
}
.logo-marquee-track span:hover { color: var(--accent); }
@keyframes logoMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Delivery timeline draw — gated so a JS failure never blanks the section */
html.js-hero .delivery-step {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), box-shadow 0.2s;
}
html.js-hero .delivery-step.is-drawn {
  opacity: 1;
  transform: none;
}
html.js-hero .delivery-step.is-drawn:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: color-mix(in srgb, var(--accent) 25%, var(--line));
}

/* Featured pricing glow */
.pricing-preview-card--featured.is-glowing {
  position: relative;
  overflow: hidden;
}
.pricing-preview-card--featured.is-glowing::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--accent), transparent 40%, color-mix(in srgb, var(--accent) 50%, transparent) 70%, var(--accent));
  background-size: 200% 200%;
  animation: pricingGlow 4s ease infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
@keyframes pricingGlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* CTA band mesh */
.cta-band--mesh {
  position: relative;
  overflow: hidden;
}
.cta-band--mesh::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 80% at 10% 50%, color-mix(in srgb, var(--accent) 20%, transparent), transparent 55%),
    radial-gradient(ellipse 50% 60% at 90% 30%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 50%);
  animation: ctaMesh 8s ease-in-out infinite alternate;
}
@keyframes ctaMesh {
  from { opacity: 0.7; transform: scale(1); }
  to { opacity: 1; transform: scale(1.05); }
}
.cta-band--mesh > .container { position: relative; z-index: 1; }

/* Nav active section */
.nav-links a.is-active-section {
  color: var(--accent);
}

/* Showcase float */
.hero-showcase-wrap {
  animation: showcaseFloat 6s ease-in-out infinite;
}
@keyframes showcaseFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-orb--1, .hero-orb--2, .hero-orb--3,
  .logo-marquee-track, .hero-showcase-wrap,
  .pricing-preview-card--featured.is-glowing::before,
  .cta-band--mesh::before {
    animation: none;
  }
  .hero-line, [data-hero-item], .delivery-step {
    opacity: 1;
    transform: none;
    filter: none;
  }
  .scroll-progress { display: none; }
}

/* ============================================================
   Cinematic video hero
   The brand film runs full-bleed behind the copy. Every token the
   hero's children read (--ink, --line, --accent) is re-declared on
   the section, so shared components (.btn, .fact-lead, .eyebrow)
   invert for the dark stage without a single component override.
   ============================================================ */
.hero-cinema {
  --ink: #f8fafc;
  --ink-muted: rgba(241, 245, 249, 0.9);
  --ink-subtle: rgba(226, 232, 240, 0.72);
  --line: rgba(255, 255, 255, 0.2);
  --bg-elevated: rgba(255, 255, 255, 0.1);
  --accent: #fbbf24;
  --accent-hover: #fde68a;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 88vh;
  min-height: min(92svh, 900px);
  padding: clamp(4rem, 9vw, 6.5rem) 0 clamp(2.75rem, 5vw, 3.75rem);
  background: #061018;
  color: var(--ink);
}
.hero-cinema-media {
  position: absolute; inset: 0; z-index: -1;
  overflow: hidden; background: #061018;
}
.hero-cinema-video {
  width: 100%; height: 100%; display: block;
  object-fit: cover; object-position: center;
  transform: scale(1.02);
  animation: heroDrift 28s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to   { transform: scale(1.07) translate3d(-1%, -0.8%, 0); }
}
/* Light scrim: keep type readable without burying the bright film. */
.hero-cinema-scrim {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(100deg, rgba(4,10,18,.72) 0%, rgba(4,10,18,.48) 34%, rgba(4,10,18,.22) 62%, rgba(4,10,18,.28) 100%),
    radial-gradient(120% 90% at 12% 40%, rgba(4,10,18,.35), transparent 65%);
}
/* Melts the film into the page below. The first half stays clear so the
   scroll cue and video control never sit on the washed-out part. */
.hero-cinema-fade {
  position: absolute; left: 0; right: 0; bottom: -1px; pointer-events: none;
  height: clamp(80px, 11vh, 150px);
  background: linear-gradient(180deg, transparent 0%, transparent 46%, var(--bg) 100%);
}
.hero-cinema-inner { position: relative; z-index: 1; }
.hero-cinema .hero-copy { max-width: 46rem; }
.hero-cinema h1.display {
  font-size: clamp(2.85rem, 6.6vw, 5.1rem);
  line-height: 0.98; letter-spacing: -0.04em; max-width: 13ch;
  text-wrap: balance;
}
.hero-cinema .hero-line--accent {
  color: #fde68a;
  font-style: italic;
}
.hero-cinema-eyebrow { color: #fcd34d; }
.hero-cinema .fact-lead {
  color: rgba(232, 238, 248, 0.88);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  border-left-color: var(--accent);
}
.hero-live-proof {
  margin-top: 1rem;
  max-width: 40rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(232, 238, 248, 0.78);
  font-family: var(--font-mono);
  letter-spacing: 0.01em;
}
.hero-live-proof a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}
.hero-live-proof a:hover { border-bottom-color: var(--accent); color: #fde68a; }
.hero-live-proof span[aria-hidden="true"] {
  margin-inline: 0.35rem;
  opacity: 0.55;
}
.hero-cinema .text-link { color: #fff; border-bottom-color: rgba(255, 255, 255, 0.42); }
.hero-cinema .text-link:hover { border-bottom-color: var(--accent); }
.hero-cinema .btn-primary { color: #14100a; box-shadow: none; }
.hero-cinema .btn-primary:hover { color: #14100a; }
.hero-cinema .btn-secondary {
  background: rgba(255, 255, 255, 0.08); color: #f5f7fb;
  border-color: rgba(255, 255, 255, 0.3); backdrop-filter: blur(10px);
}
.hero-cinema .btn-secondary:hover { background: rgba(255, 255, 255, 0.16); border-color: rgba(255, 255, 255, 0.55); }
.hero-cinema .hero-actions { margin-top: 1.35rem; }
.hero-cinema .hero-actions .btn-primary {
  font-size: 0.95rem;
  min-height: 52px;
  padding-inline: 1.5rem;
  box-shadow: none;
}
.hero-why-call {
  margin-top: 1rem;
  max-width: 40rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(248, 250, 252, 0.88);
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.55);
}
.hero-cinema .hero-speed-badge {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  color: rgba(248, 250, 252, 0.95);
}
.hero-cinema .hero-speed-badge .icon { color: #fcd34d; }
.hero-cinema .hero-meta-bar { margin-top: 1.75rem; gap: 1.5rem 3rem; }
.hero-cinema .hero-meta-item strong { color: #fff; font-size: 1.7rem; letter-spacing: -0.02em; }
.hero-cinema .hero-meta-item > span { color: rgba(241, 245, 249, 0.78); }

/* Foot rail: scroll cue left, video control right */
.hero-cinema-foot {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; margin-top: clamp(2rem, 5vw, 3.25rem);
}
.hero-scroll-cue {
  display: inline-flex; align-items: center; gap: 0.65rem;
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(226, 232, 240, 0.78);
  text-decoration: none; transition: color 0.2s;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.85);
}
.hero-scroll-cue:hover { color: #fff; }
.hero-scroll-cue .icon { width: 1rem; height: 1rem; animation: cueBob 2.2s ease-in-out infinite; }
@keyframes cueBob {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(4px); opacity: 1; }
}
.hero-video-toggle {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.45rem 0.9rem; border-radius: 999px; cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(8, 12, 22, 0.5); backdrop-filter: blur(10px);
  color: rgba(226, 232, 240, 0.85);
  font-family: var(--font-mono); font-size: 0.66rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.hero-video-toggle:hover { color: #fff; border-color: rgba(255, 255, 255, 0.45); background: rgba(8, 12, 22, 0.7); }
.hero-video-toggle:focus-visible { outline: 2px solid #fcd34d; outline-offset: 3px; }
.hero-video-toggle.is-hidden { display: none; }
.hero-video-toggle-glyph {
  width: 9px; height: 10px; flex-shrink: 0;
  border-left: 3px solid currentColor; border-right: 3px solid currentColor;
}
.hero-video-toggle.is-paused .hero-video-toggle-glyph {
  width: 0; height: 0; border: 0;
  border-top: 5px solid transparent; border-bottom: 5px solid transparent;
  border-left: 9px solid currentColor;
}

@media (max-width: 860px) {
  .hero-cinema {
    min-height: auto;
    padding: clamp(3rem, 11vw, 4.5rem) 0 clamp(2rem, 6vw, 3rem);
  }
  /* Single column: the copy sits over the middle of the frame, so the
     scrim has to darken top-to-bottom instead of left-to-right. */
  .hero-cinema-scrim {
    background: linear-gradient(180deg, rgba(4,10,18,.28) 0%, rgba(4,10,18,.55) 42%, rgba(4,10,18,.72) 100%);
  }
  .hero-cinema .hero-copy > * { text-shadow: 0 1px 14px rgba(0, 0, 0, 0.5), 0 2px 28px rgba(0, 0, 0, 0.35); }
  .hero-cinema .hero-actions .btn { width: 100%; }
  .hero-cinema .hero-meta-bar { gap: 1.25rem 1.75rem; }
  .hero-cinema .hero-meta-item { flex: 1 1 7rem; }
  .hero-cinema .hero-meta-item strong { font-size: 1.35rem; }
  .hero-cinema-foot { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
}

/* ============================================================
   Live client sites — the showcase, promoted out of the hero
   ============================================================ */
.showcase-section { position: relative; }
.showcase-stage { position: relative; max-width: 1000px; margin-inline: auto; }
.showcase-stage::before {
  content: ""; position: absolute; inset: -6% -5% -12%; z-index: 0;
  pointer-events: none; border-radius: 50%; filter: blur(70px);
  background: radial-gradient(58% 58% at 50% 50%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 72%);
}
.showcase-stage > .hero-showcase-wrap {
  position: relative; z-index: 1;
  padding: clamp(0.85rem, 1.6vw, 1.15rem);
}
.showcase-stage .browser-viewport { aspect-ratio: 16 / 9.4; min-height: 260px; }
.showcase-stage .showcase-name { font-size: 1.2rem; }
.showcase-stage .showcase-cat { font-size: 0.85rem; }
.showcase-stage .showcase-preview-overlay { padding: 1.4rem; }
.showcase-facts {
  list-style: none; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
  max-width: 1000px; margin: clamp(2rem, 4vw, 2.75rem) auto 0;
}
.showcase-facts li {
  border-top: 2px solid color-mix(in srgb, var(--accent) 45%, var(--line));
  padding-top: 0.85rem;
}
.showcase-facts strong { display: block; font-size: 1.3rem; color: var(--ink); margin-bottom: 0.2rem; }
.showcase-facts span { font-size: 0.85rem; color: var(--ink-muted); }
.showcase-actions {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem;
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
}
@media (max-width: 720px) {
  .showcase-facts { grid-template-columns: 1fr; gap: 1rem; }
  .showcase-stage .browser-viewport { aspect-ratio: 16 / 11; }
  /* The stacked overlay inherits space-between, which strands the caption at
     the top of the shot; both blocks belong at the bottom. */
  .showcase-stage .showcase-preview-overlay { justify-content: flex-end; padding: 1rem; }
  .showcase-stage .showcase-name { font-size: 1.05rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-cinema-video { animation: none; transform: none; }
  .hero-scroll-cue .icon { animation: none; }
}

/* ============================================================
   Primary nav — five items, and a real CTA inside the mobile menu
   ============================================================ */
.nav-cta-mobile { display: none; }
@media (max-width: 768px) {
  /* The header CTA is hidden at this width, so the menu has to carry call + audit. */
  .nav-cta-mobile {
    display: inline-flex; width: 100%; margin-top: 0.65rem; border-bottom: 0;
    justify-content: center; min-height: 48px;
  }
  .nav-links a.nav-cta-mobile:first-of-type { margin-top: 1.1rem; }
  .nav-links a.nav-cta-mobile { padding: 0 1.25rem; }
}

/* ============================================================
   Featured case study
   ============================================================ */
.case-feature-grid {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.case-feature-copy .lede { margin-top: 0.75rem; }
.case-feature-points {
  list-style: none; padding: 0; margin: 1.5rem 0 0;
  display: grid; gap: 0.75rem;
}
.case-feature-points li {
  position: relative; padding-left: 1.5rem;
  font-size: 0.94rem; color: var(--ink-muted);
}
.case-feature-points li::before {
  content: ""; position: absolute; left: 0; top: 0.6em;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
}
.case-feature-points strong { color: var(--ink); }
.case-feature-stats {
  display: flex; flex-wrap: wrap; gap: 1.25rem 2.5rem;
  margin: 1.75rem 0 0; padding: 1.25rem 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.case-feature-stats strong { display: block; font-size: 1.4rem; color: var(--ink); }
.case-feature-stats span { font-size: 0.8rem; color: var(--ink-muted); }
.case-feature-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.75rem; }
.case-feature-shot {
  position: relative; display: block; border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--line);
  box-shadow: 0 24px 60px -28px rgba(26, 24, 20, 0.4);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.case-feature-shot img {
  display: block; width: 100%; height: 100%;
  aspect-ratio: 4 / 3; object-fit: cover; object-position: top center;
}
.case-feature-shot:hover { transform: translateY(-4px); box-shadow: 0 30px 70px -28px rgba(26, 24, 20, 0.5); }
.case-feature-shot-tag {
  position: absolute; left: 0.85rem; bottom: 0.85rem;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 0.4rem 0.75rem; border-radius: 999px;
  background: rgba(8, 10, 16, 0.72); backdrop-filter: blur(8px);
  color: #fff; font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.06em;
}
@media (max-width: 900px) {
  .case-feature-grid { grid-template-columns: 1fr; gap: 2rem; }
  /* Screenshot first on a phone: the proof should land before the argument. */
  .case-feature-shot { order: -1; }
  .case-feature-stats { gap: 1rem 1.75rem; }
  .case-feature-stats > div { flex: 1 1 7rem; }
  .case-feature-actions .btn { flex: 1 1 100%; }
}

.case-pair-head {
  margin-bottom: 1.75rem;
}
.case-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.case-pair-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-elevated);
  color: inherit;
  text-decoration: none;
}
.case-pair-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}
.case-pair-body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.2rem 1.35rem 1.4rem;
}
.case-pair-body .eyebrow { margin-bottom: 0.15rem; }
.case-pair-body h3 {
  font-family: var(--font-display, "Instrument Serif", Georgia, serif);
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.case-pair-body p {
  font-size: 0.92rem;
  color: var(--ink-muted);
  margin: 0;
}
.case-pair-link {
  margin-top: 0.65rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}
@media (max-width: 800px) {
  .case-pair { grid-template-columns: 1fr; }
}

.founder-band {
  border-block: 1px solid var(--line);
  background: var(--bg-muted);
}
.founder-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 2.5rem 4rem;
  align-items: start;
}
.founder-band-id .display {
  font-size: clamp(2rem, 4vw, 3.25rem);
  max-width: 10ch;
}
.founder-band-copy {
  font-size: 1.05rem;
  color: var(--ink-muted);
  max-width: 42rem;
}
.founder-band-copy p + p { margin-top: 0.85rem; }
.founder-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

/* ============================================================
   Atelier — print-studio craft for conversion pages
   Signature: live client sites as catalog plates with a caption.
   ============================================================ */
.atelier .theme-toggle { display: none; }
.atelier .scroll-progress { display: none; }
.atelier .section-alt::before,
.atelier .section-alt::after { display: none; }
.atelier .hero-showcase-wrap { animation: none; }
.atelier .cta-band--mesh::before { display: none; animation: none; }

.catalog-kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-subtle);
}
.hero-cinema .catalog-kicker { color: rgba(248, 250, 252, 0.72); }
.catalog-kicker::after {
  content: "";
  width: 3.5rem;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

.plate {
  max-width: 920px;
  margin-inline: auto;
}
.plate-frame {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 0.7rem 0.7rem 0;
}
.plate-frame .browser-frame {
  border-radius: 0;
  border: 0;
  box-shadow: none;
}
.plate-caption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  padding: 0.85rem 0.15rem 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-subtle);
}
.plate-caption strong {
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.06em;
}

.quote-wall {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding-top: 0.5rem;
}
.quote-item {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
}
.quote-item .review-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 28ch;
}
.quote-item .review-meta {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
.quote-item .review-stars,
.quote-item .review-delivery-badge { display: none; }
@media (max-width: 800px) {
  .quote-wall { grid-template-columns: 1fr; }
}

.rate-menu {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.rate-row {
  display: grid;
  grid-template-columns: minmax(8rem, 0.9fr) minmax(0, 1.4fr) auto;
  gap: 1rem 1.5rem;
  align-items: baseline;
  padding: 1.35rem 0.15rem;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: background 0.15s, padding-left 0.2s var(--ease);
}
.rate-row:hover,
.rate-row:focus-visible {
  background: color-mix(in srgb, var(--accent) 6%, transparent);
  padding-left: 0.65rem;
  outline: none;
}
.rate-row--featured { background: color-mix(in srgb, var(--accent) 7%, transparent); }
.rate-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.rate-note { font-size: 0.92rem; color: var(--ink-muted); margin: 0; max-width: none; }
.rate-price {
  font-family: var(--font-mono);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  justify-self: end;
}
@media (max-width: 700px) {
  .rate-row {
    grid-template-columns: 1fr auto;
    grid-template-areas: "name price" "note note";
  }
  .rate-name { grid-area: name; }
  .rate-price { grid-area: price; }
  .rate-note { grid-area: note; }
}

.atelier .case-pair-card {
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.atelier .case-pair-card img {
  aspect-ratio: 16 / 10;
}
.atelier .case-feature-shot {
  border-radius: 0;
}
.atelier .showcase-stage::before { display: none; }
.atelier .showcase-stage > .hero-showcase-wrap { padding: 0; }
.atelier .showcase-badge,
.atelier .showcase-verify-note { display: none; }
.atelier .btn { border-radius: var(--radius); }

/* Planner page hero assurance row */
.planner-assurance {
  display: flex; flex-wrap: wrap; gap: 0.75rem 2rem; margin-top: 1.5rem;
  font-size: 0.88rem; color: var(--ink-muted);
}
.planner-assurance strong { color: var(--ink); margin-right: 0.35rem; }

/* ============================================================
   Mobile layout collapse — MUST stay last
   These same rules exist inside the @media (max-width: 768px) block near the
   top of the file, but every one of these grids is *defined* after it. Equal
   specificity means source order decides, so the desktop two-column rule won
   and phones got a 220px sidebar next to a 127px content column pushed off
   the right edge of the screen. Declaring them here, after the definitions,
   is what actually makes the collapse take effect.
   ============================================================ */
@media (max-width: 900px) {
  .content-grid,
  .article-shell,
  .contact-layout,
  .founder-band-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .content-grid aside,
  .article-shell aside { order: 1; }
}
@media (max-width: 768px) {
  .field-row { grid-template-columns: 1fr; }
}
/* Wide data tables scroll inside their own box rather than the whole page. */
@media (max-width: 900px) {
  .data-table,
  .compare-table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  /* display:block drops the implicit table box, so the rows need it back or
     the columns collapse to content width and stop aligning. */
  .data-table tbody,
  .data-table thead,
  .compare-table tbody,
  .compare-table thead { display: table; width: 100%; }
  .compare-table th, .compare-table td { white-space: nowrap; }
}

/* ============================================================
   Hero tech layer — grid, scanline, and a sharper grade
   The film is the light; these are the instrument panel around it.
   ============================================================ */
.hero-cinema-video {
  /* Super-bright, high-punch grade — source files are already lifted; this keeps the film vivid under the scrim */
  filter: brightness(1.22) contrast(1.14) saturate(1.2);
  image-rendering: -webkit-optimize-contrast;
}
.hero-cinema-grid {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  opacity: 0.45;
  background-image:
    linear-gradient(to right, rgba(125, 211, 252, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(125, 211, 252, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(120% 90% at 70% 40%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(120% 90% at 70% 40%, #000 20%, transparent 78%);
  animation: gridDrift 28s linear infinite;
}
@keyframes gridDrift {
  from { background-position: 0 0, 0 0; }
  to   { background-position: 80px 80px, 80px 80px; }
}
.hero-cinema-scan {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  opacity: 0.35;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.018) 0 1px,
    transparent 1px 4px
  );
  mix-blend-mode: overlay;
}
.hero-cinema-scrim, .hero-cinema-fade { z-index: 2; }

/* ============================================================
   Planner estimate capture
   ============================================================ */
.planner-capture {
  margin-top: 1.75rem; padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.planner-capture-label {
  display: block; font-weight: 600; font-size: 0.94rem; margin-bottom: 0.65rem;
}
.planner-capture-row { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.planner-capture-row input {
  flex: 1 1 14rem; min-width: 0; min-height: 46px;
  padding: 0 0.9rem; border-radius: var(--radius);
  border: 1px solid var(--line); background: var(--bg-elevated); color: var(--ink);
  font: inherit; font-size: 0.94rem;
}
.planner-capture-row input:focus-visible { outline: 2px solid var(--focus); outline-offset: 1px; }
.planner-capture-row .btn { flex: 0 0 auto; }
.planner-capture-note {
  margin-top: 0.6rem; font-size: 0.78rem; color: var(--ink-subtle);
}
@media (max-width: 520px) {
  .planner-capture-row .btn { width: 100%; }
}

/* ============================================================
   Optional contact fields — collapsed by default
   ============================================================ */
.field-optional { margin: 1.25rem 0; border-top: 1px solid var(--line); padding-top: 1rem; }
.field-optional > summary {
  cursor: pointer; font-weight: 600; font-size: 0.9rem; color: var(--ink-muted);
  list-style: none; display: flex; align-items: center; gap: 0.5rem;
  min-height: 44px;
}
.field-optional > summary::-webkit-details-marker { display: none; }
.field-optional > summary::before {
  content: "+"; font-family: var(--font-mono); font-size: 1.1rem; line-height: 1;
  color: var(--accent);
}
.field-optional[open] > summary::before { content: "–"; }
.field-optional > summary:hover { color: var(--ink); }
.field-optional-body { padding-top: 1rem; }

/* ============================================================
   Sticky mobile action bar
   ============================================================ */
.mobile-cta { display: none; }
@media (max-width: 768px) {
  body:has(.mobile-cta.is-visible) { padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px)); }
  .mobile-cta {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 9980;
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.75rem 0.9rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
    background: color-mix(in srgb, var(--bg-elevated) 96%, transparent);
    backdrop-filter: blur(16px) saturate(170%);
    border-top: 1px solid color-mix(in srgb, var(--accent) 35%, var(--line));
    box-shadow: 0 -10px 30px -18px rgba(26, 24, 20, 0.45);
    transform: translateY(110%);
    transition: transform 0.28s var(--ease);
  }
  .mobile-cta.is-visible { transform: none; }
  .mobile-cta .btn {
    flex: 1; min-height: 48px; font-size: 0.82rem; font-weight: 700;
    padding-inline: 0.55rem;
    box-shadow: 0 8px 22px -10px color-mix(in srgb, var(--accent) 70%, transparent);
  }
  .mobile-cta .mobile-cta-book {
    flex: 0 1 auto; min-width: 5.5rem;
    box-shadow: none;
  }
  .mobile-cta-call {
    display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 2px; min-width: 52px; min-height: 48px; padding: 0 0.4rem;
    border: 1px solid var(--line); border-radius: var(--radius);
    background: var(--bg); color: var(--ink); text-decoration: none;
    font-size: 0.62rem; font-family: var(--font-mono); letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  /* Keep the chat bubble clear of the bar. */
  #ll-chat-btn { bottom: 96px !important; }
}
@media (prefers-reduced-motion: reduce) {
  .mobile-cta { transition: none; }
  .hero-cinema-grid { animation: none; }
}

/* Utility the JS has always relied on but the stylesheet never defined: the
   planner toggled .is-hidden on its Back/Continue buttons and they stayed on
   screen, leaving a dead "Continue" next to the finished estimate. */
.is-hidden { display: none !important; }

/* ============================================================
   Section alignment pass
   Measured every section's content edges against the container: four of them
   sat on their own private grid. A page reads as chaotic long before anyone
   can name why, and it is almost always this — content blocks that each pick
   a different left edge.
   ============================================================ */

/* Centred CTA lines inherited the 68ch paragraph measure with no auto margins,
   so the box was pinned left and the "centred" text sat ~200px off the axis. */
.section-cta { margin-inline: auto; }

/* The portfolio wall carried its own 1080px cap inside a 1160px container, so
   its group labels and cards were inset 40px from every other section. */
.gallery-wall { max-width: none; }
.portfolio-gallery { justify-content: flex-start; }
/* Growable basis: a group of two fills the row as two halves instead of
   leaving a third-column hole, and a group of three still lands as thirds. */
.portfolio-gallery .portfolio-card { flex: 1 1 calc((100% - 2.5rem) / 3); }

/* Group labels read as a ruled section marker rather than a floating bold line. */
.portfolio-group-title {
  flex-direction: row; align-items: baseline; flex-wrap: wrap; gap: 0.5rem 0.9rem;
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-muted);
  padding-bottom: 0.8rem; margin-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
}
.portfolio-group-note {
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 400;
  letter-spacing: 0; text-transform: none; color: var(--ink-subtle);
}

/* The delivery timeline was capped at 960px — narrower than the service and
   pricing card rows directly above and below it. */
.delivery-timeline { max-width: none; }

/* The FAQ sat in a 640px strip with the heading on a different axis again.
   Two columns fills the same width the rest of the page uses. */
.faq-grid--single { grid-template-columns: 1fr 1fr; max-width: none; margin-inline: 0; }
@media (max-width: 860px) {
  .faq-grid--single { grid-template-columns: 1fr; }
}

/* The live-sites stage is deliberately narrower than the container; its
   heading and rails now share that width so the section reads as one column. */
.showcase-section .section-head,
.showcase-actions { max-width: 1000px; margin-inline: auto; }

/* Headline and lede wrapping: balance keeps a heading from dropping one word
   onto its own line, pretty stops single-word orphans in body copy. Both
   degrade to normal wrapping where unsupported. */
h1, h2, h3, .display { text-wrap: balance; }
.lede, .fact-lead, .section-head--center p { text-wrap: pretty; }
.section-head--center .lede { max-width: 58ch; }

/* On a phone a two-up portfolio row leaves ~170px cards — website screenshots
   at that size are unreadable, which defeats the point of showing them. */
@media (max-width: 560px) {
  .portfolio-gallery .portfolio-card { flex-basis: 100%; aspect-ratio: 16 / 10; }
}

/* —— Client guides (Search Console, project checklists) —— */
.note-box {
  margin: 1.1rem 0; padding: 0.9rem 1rem; border-left: 3px solid var(--accent);
  background: var(--accent-soft); border-radius: 0 8px 8px 0;
  font-size: 0.9rem; color: var(--ink-muted);
}
.note-box strong { color: var(--ink); }

.guide-summary {
  display: grid; gap: 0.85rem; margin-bottom: 2rem;
}
@media (min-width: 640px) { .guide-summary { grid-template-columns: repeat(3, 1fr); } }
.guide-summary-card {
  padding: 1.1rem 1.2rem; background: var(--bg-muted); border: 1px solid var(--line);
  border-radius: var(--radius);
}
.guide-summary-card strong {
  display: block; font-size: 0.9rem; color: var(--ink); margin-bottom: 0.25rem;
}
.guide-summary-card span { font-size: 0.86rem; color: var(--ink-muted); line-height: 1.5; }

.step-block {
  margin-bottom: 2.25rem; padding: 1.6rem 1.5rem; background: var(--bg-elevated);
  border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.step-block:last-child { margin-bottom: 0; }
.step-head {
  display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1rem;
}
.step-block .step-num {
  flex-shrink: 0; width: 2.25rem; height: 2.25rem; border-radius: 50%;
  background: var(--accent); color: #fff; font-family: var(--font-mono);
  font-weight: 700; font-size: 0.95rem; display: grid; place-items: center; margin: 0;
}
.step-head-text h2 { margin: 0 0 0.25rem; font-size: 1.25rem; }
.step-head-text p { margin: 0; font-size: 0.9rem; color: var(--ink-muted); }
.step-time {
  display: inline-block; margin-left: auto; flex-shrink: 0;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-soft); padding: 0.35rem 0.65rem; border-radius: 999px;
}
@media (max-width: 540px) { .step-time { display: none; } }

.instruction-list {
  list-style: none; margin: 0; padding: 0; counter-reset: inst;
}
.instruction-list > li {
  counter-increment: inst; position: relative;
  padding: 0.9rem 0 0.9rem 2.75rem; border-bottom: 1px solid var(--line);
  font-size: 0.94rem; color: var(--ink-muted); line-height: 1.55;
}
.instruction-list > li:last-child { border-bottom: 0; padding-bottom: 0; }
.instruction-list > li::before {
  content: counter(inst); position: absolute; left: 0; top: 0.9rem;
  width: 1.6rem; height: 1.6rem; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  font-size: 0.78rem; font-weight: 700; display: grid; place-items: center;
}
.instruction-list strong { color: var(--ink); }
.instruction-list code {
  font-family: var(--font-mono); font-size: 0.84em; background: var(--bg-muted);
  padding: 0.1em 0.4em; border-radius: 4px; color: var(--ink);
}

.guide-shot {
  margin: 1rem 0 0.25rem; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: var(--bg-muted);
}
.guide-shot img {
  display: block; width: 100%; height: auto;
}
.guide-shot figcaption {
  padding: 0.65rem 0.9rem; font-size: 0.82rem; color: var(--ink-subtle);
  border-top: 1px solid var(--line); background: var(--bg-elevated);
}

.expect-list {
  display: grid; gap: 0.65rem; margin: 0; padding: 0; list-style: none;
}
@media (min-width: 540px) { .expect-list { grid-template-columns: 1fr 1fr; } }
.expect-list li {
  padding: 0.75rem 0.9rem; background: var(--bg-muted); border-radius: var(--radius);
  border: 1px solid var(--line); font-size: 0.88rem;
}
.expect-list strong { display: block; color: var(--ink); margin-bottom: 0.15rem; font-size: 0.9rem; }
.expect-list span { color: var(--ink-muted); }

.contact-box {
  margin-top: 2rem; padding: 1.35rem 1.5rem;
  background: var(--accent-soft); border: 1px solid var(--line); border-radius: var(--radius);
}
.contact-box h2 { margin: 0 0 0.5rem; font-size: 1.1rem; }
.contact-box p { margin: 0 0 0.75rem; font-size: 0.92rem; color: var(--ink-muted); }

.client-form-card {
  margin-top: 1.75rem; padding: 1.6rem 1.5rem;
  background: var(--bg-elevated); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.client-form-card h2 { margin: 0 0 0.35rem; font-size: 1.2rem; }
.client-form-card > p { margin: 0 0 1.2rem; font-size: 0.9rem; color: var(--ink-muted); }
.client-form .submit-btn {
  width: 100%; padding: 0.85rem; margin-top: 0.25rem;
  background: var(--accent); color: #fff; border: none; border-radius: 999px;
  font-size: 0.94rem; font-weight: 700; cursor: pointer; font-family: inherit;
}
.client-form .submit-btn:hover { background: var(--accent-hover); }
.client-form-note { font-size: 0.8rem; color: var(--ink-subtle); margin-top: 0.65rem; line-height: 1.5; }
.form-success-banner {
  display: none; margin-bottom: 1.25rem; padding: 0.85rem 1rem;
  background: var(--accent-soft); border: 1px solid var(--line);
  border-radius: var(--radius); color: var(--accent); font-weight: 700; font-size: 0.9rem;
}
.form-success-banner.visible { display: block; }

/* —— Hero brand lockup (Fortune-calm first viewport) —— */
.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.1rem;
  color: inherit;
}
.hero-brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: color-mix(in srgb, var(--ink) 92%, transparent);
  color: var(--bg);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1;
}
.hero-cinema .hero-brand-mark {
  background: rgba(245, 244, 240, 0.95);
  color: #1a1814;
}
.hero-brand-name {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.brand-text {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
}

/* Meta bar below hero (not in first viewport) */
.showcase-section .hero-meta-bar {
  justify-content: center;
  margin: 1.25rem auto 0;
  max-width: 36rem;
}
.showcase-section .hero-meta-item {
  color: var(--ink-muted);
}
.showcase-section .hero-meta-item strong {
  color: var(--ink);
}

/* Editorial service rail — replaces icon card grid */
.service-rail {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.service-rail-item {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.35rem 0.15rem;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s var(--ease), padding-left 0.2s var(--ease);
}
.service-rail-item:hover {
  background: color-mix(in srgb, var(--accent) 6%, transparent);
  padding-left: 0.45rem;
}
.service-rail-num {
  font-size: 0.82rem;
  color: var(--accent);
  padding-top: 0.35rem;
}
.service-rail-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-weight: 700;
}
.service-rail-item p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--ink-muted);
  max-width: 52ch;
}
@media (min-width: 720px) {
  .service-rail {
    grid-template-columns: 1fr 1fr;
    gap: 0 2rem;
    border-top: 0;
  }
  .service-rail-item {
    border-top: 1px solid var(--line);
  }
}

/* Recurring-fee note beside a one-off add-on price in the quote tools. The
   chatbot's $349 is setup only; showing it alone under-quoted the real cost. */
.planner-check-note { font-size: 0.78rem; color: var(--ink-subtle); white-space: nowrap; }

/* Search-intent list on the industry pages: the query a customer types, then
   what it implies for the page. A <dl> because that is the shape of the data. */
.intent-list { margin: 1.25rem 0 0; }
.intent-list dt { margin-top: 1rem; font-size: 0.95rem; font-weight: 700; color: var(--ink); }
.intent-list dt:first-child { margin-top: 0; }
.intent-list dt .mono { color: var(--accent); }
.intent-list dt::before { content: "\201C"; color: var(--ink-subtle); }
.intent-list dt::after { content: "\201D"; color: var(--ink-subtle); }
.intent-list dd { margin: 0.3rem 0 0; padding-left: 1rem; border-left: 2px solid var(--line); font-size: 0.95rem; color: var(--ink-muted); }
