/* ─── Hepha Works — light + dark themes, editorial rebrand ───────── */

:root {
  /* Default = LIGHT */
  --bg: #FAF5F1;
  --bg-elev: #ffffff;
  --bg-soft: rgba(30, 30, 30, 0.04);
  --bg-card: #ffffff;
  --ink: #1E1E1E;
  --ink-soft: #3a3a3a;
  --gray: #8D8D8D;
  --gray-strong: #5a5a5a;
  --orange: #FF620B;
  --orange-hover: #ff7529;
  --line: rgba(30, 30, 30, 0.14);
  --line-strong: rgba(30, 30, 30, 0.28);
  --line-soft: rgba(30, 30, 30, 0.08);
  --shadow-card: 0 12px 32px rgba(30, 30, 30, 0.06);
  --shadow-card-hover: 0 20px 48px rgba(30, 30, 30, 0.10);
  --glow-1: rgba(255, 98, 11, 0.18);
  --paper-tex: rgba(30, 30, 30, 0.02);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --space-section: clamp(72px, 10vw, 128px);
  --container: 1180px;
}

[data-theme="dark"] {
  --bg: #0F0F0F;
  --bg-elev: #181818;
  --bg-soft: rgba(255, 255, 255, 0.04);
  --bg-card: #1A1A1A;
  --ink: #FAF5F1;
  --ink-soft: #d4d4d4;
  --gray: #909090;
  --gray-strong: #b4b4b4;
  --orange: #FF7A2E;
  --orange-hover: #ff8e4a;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.28);
  --line-soft: rgba(255, 255, 255, 0.08);
  --shadow-card: 0 12px 32px rgba(0, 0, 0, 0.45);
  --shadow-card-hover: 0 20px 48px rgba(0, 0, 0, 0.6);
  --glow-1: rgba(255, 122, 46, 0.20);
  --paper-tex: rgba(255, 255, 255, 0.02);
  color-scheme: dark;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 96px; }
html, body { height: 100%; }

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.55;
  transition: background 0.3s ease, color 0.3s ease;
}

/* ─── Skip link / focus ─────────────────────────────────────────── */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--bg);
  padding: 10px 14px; border-radius: 8px; font-size: 13px; z-index: 100;
  text-decoration: none;
}
.skip-link:focus { left: 16px; top: 16px; }

/* Spam honeypot — visually hidden, screen-reader hidden, never tabbable */
.hp-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0;
  pointer-events: none;
}
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

/* ─── Scroll progress ───────────────────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--orange) 0%, #ff8a3a 100%);
  z-index: 1000; pointer-events: none;
  transition: width 0.05s linear;
  box-shadow: 0 0 12px var(--glow-1);
}

/* ─── Custom scrollbar — matches top progress bar ───────────────── */
* { scrollbar-width: thin; scrollbar-color: var(--orange) transparent; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 100px;
  border: 2px solid transparent;
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover { background: var(--orange-hover); background-clip: padding-box; }
::-webkit-scrollbar-corner { background: transparent; }

/* ─── Reveal ────────────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal-stagger] > * {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: var(--stagger, 0ms);
}
[data-reveal-stagger].is-visible > * { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal], [data-reveal].is-visible,
  [data-reveal-stagger] > *, [data-reveal-stagger].is-visible > * {
    opacity: 1; transform: none; transition: none;
  }
  .status-dot, .scroll-progress, body { transition: none !important; animation: none !important; }
}

/* ─── Layout ────────────────────────────────────────────────────── */
.page {
  max-width: var(--container);
  margin: 0 auto;
  padding: 28px 64px 0;
  position: relative;
  z-index: 1;
}

/* Ambient glow */
.glow {
  position: fixed;
  right: -260px;
  top: 30%;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow-1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ─── Top header (sticky) ───────────────────────────────────────── */
.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
  flex-wrap: wrap;
  gap: 16px;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  margin: -28px -64px 64px;
  padding: 18px 64px;
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.mark {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.mark .dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  transform: translateY(-1px);
  box-shadow: 0 0 0 0 var(--orange);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--orange) 60%, transparent); }
  100% { box-shadow: 0 0 0 12px color-mix(in srgb, var(--orange) 0%, transparent); }
}
.brand-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.brand-name em { font-style: italic; color: var(--orange); }
.brand-tag {
  font-size: 11px;
  color: var(--gray);
  font-weight: 400;
  font-family: 'JetBrains Mono', monospace;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--orange); }
.nav-links .nav-cta {
  background: var(--orange);
  color: #fff;
  padding: 7px 14px;
  border-radius: 100px;
  font-weight: 500;
}
.nav-links .nav-cta:hover { background: var(--orange-hover); color: #fff; }

/* WhatsApp nav button */
.nav-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 100px;
  background: var(--bg-soft);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  font-weight: 500;
  text-decoration: none;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
}
.nav-whatsapp svg { width: 16px; height: 16px; color: #25D366; flex-shrink: 0; }
.nav-whatsapp:hover {
  background: color-mix(in srgb, #25D366 12%, var(--bg-soft));
  border-color: color-mix(in srgb, #25D366 50%, var(--line-strong));
  color: var(--ink);
}
@media (max-width: 920px) {
  .nav-whatsapp span { display: none; }
  .nav-whatsapp { padding: 7px; width: 36px; height: 36px; justify-content: center; }
  .nav-whatsapp svg { width: 18px; height: 18px; }
}

/* Theme toggle */
.theme-toggle {
  width: 36px; height: 36px;
  background: var(--bg-soft);
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s;
}
.theme-toggle:hover { border-color: var(--ink); background: var(--bg-elev); }
.theme-toggle svg { width: 16px; height: 16px; }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle:hover { border-color: var(--ink); background: var(--bg-soft); }
.nav-toggle-bar {
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out), opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ─── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.18s var(--ease-out), background 0.2s, box-shadow 0.3s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover:not(:disabled) {
  background: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px var(--glow-1);
}
.btn-primary:disabled { opacity: 0.6; cursor: wait; }
.btn-ghost {
  background: var(--bg-soft);
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--ink); background: var(--bg-elev); }
.btn:active:not(:disabled) { transform: translateY(0) scale(0.97); }
.btn svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease-out); }
.btn:hover svg { transform: translateX(3px); }

/* ─── Hero (split layout) ───────────────────────────────────────── */
.hero {
  padding: 16px 0 var(--space-section);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}
.hero-left { max-width: 720px; }
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid color-mix(in srgb, var(--orange) 30%, transparent);
  background: color-mix(in srgb, var(--orange) 8%, transparent);
  border-radius: 100px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 36px;
  font-family: 'JetBrains Mono', monospace;
}
.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2.4s ease-out infinite;
}

h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(56px, 11vw, 144px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  font-variation-settings: "opsz" 144;
}
h1 em { font-style: italic; color: var(--orange); }
.lede {
  font-size: 19px;
  color: var(--gray-strong);
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.55;
}
.lede strong { color: var(--ink); font-weight: 500; }

.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--gray);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.trust-row strong { color: var(--ink); font-weight: 600; }
.trust-row .mono { font-family: 'JetBrains Mono', monospace; color: var(--orange); font-weight: 500; }
.trust-row .dot-sep { color: var(--line-strong); }

/* Spec sheet (right of hero) */
.spec-sheet {
  background: var(--bg-card);
  background-image:
    linear-gradient(var(--paper-tex), var(--paper-tex));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  position: relative;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.spec-sheet::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
}
.spec-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 1px dashed var(--line-strong);
}
.spec-title {
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.14em;
}
.spec-version { color: var(--gray); }
.spec-rows { display: flex; flex-direction: column; gap: 10px; }
.spec-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  align-items: baseline;
  font-size: 12px;
  line-height: 1.5;
}
.spec-row dt {
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10px;
}
.spec-row dd { color: var(--ink-soft); }
.spec-foot {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px dashed var(--line-strong);
  text-align: right;
}
.spec-stamp {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--gray);
  font-size: 13px;
}

/* ─── Section shell ─────────────────────────────────────────────── */
section { padding: var(--space-section) 0; border-top: 1px solid var(--line); }
section.no-border { border-top: none; padding-top: 0; }
.section-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 24px;
}
.section-num {
  font-family: 'JetBrains Mono', monospace;
  color: var(--orange);
  font-size: 14px;
  font-weight: 500;
}
.section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 72;
}
.section-title em { font-style: italic; color: var(--orange); }
.section-lede {
  font-size: 17px;
  color: var(--gray-strong);
  max-width: 720px;
  margin-bottom: 56px;
  line-height: 1.55;
}
.section-lede strong { color: var(--ink); font-weight: 500; }

/* ─── Services — full-bleed strips ──────────────────────────────── */
.service-strips {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.service-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
  padding: 72px 0;
  border-top: 1px solid var(--line-soft);
  min-height: 280px;
}
.service-strip:first-child { border-top: none; padding-top: 32px; }
.service-strip.reverse { grid-template-columns: minmax(0, 1fr) minmax(0, 0.4fr); }
.service-strip.reverse .service-strip-icon { order: 2; justify-self: end; }
.service-strip.reverse .service-strip-body { text-align: right; }
.service-strip.reverse .service-strip-body .chip-list { justify-content: flex-end; }

.service-strip-icon {
  width: 128px; height: 128px;
  border-radius: 24px;
  background: color-mix(in srgb, var(--cat) 14%, var(--bg-card));
  border: 1.5px solid color-mix(in srgb, var(--cat) 50%, var(--line));
  display: grid;
  place-items: center;
  color: var(--ink);
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s ease;
  position: relative;
}
.service-strip-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: color-mix(in srgb, var(--cat) 18%, transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  pointer-events: none;
}
.service-strip:hover .service-strip-icon {
  transform: translateY(-4px) rotate(-2deg);
  box-shadow: 0 16px 32px color-mix(in srgb, var(--cat) 22%, transparent);
  border-color: var(--cat);
}
.service-strip:hover .service-strip-icon::after { opacity: 1; }
.service-strip-icon svg {
  width: 52px;
  height: 52px;
  position: relative;
  z-index: 1;
  stroke-width: 2;
}

.service-strip-body { max-width: 600px; }
.service-strip-num {
  font-family: 'JetBrains Mono', monospace;
  color: var(--gray);
  font-size: 12px;
  letter-spacing: 0.16em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.service-strip-num::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--cat, var(--gray));
  opacity: 0.7;
}
.service-strip-body h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 12px;
}
.service-strip-body p {
  color: var(--gray-strong);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.chip-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.chip-list li {
  font-size: 11px;
  color: var(--ink);
  background: color-mix(in srgb, var(--orange) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--orange) 22%, transparent);
  padding: 5px 12px;
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
}

/* ─── Hire section ──────────────────────────────────────────────── */
.hire-controls {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
}
.currency-toggle {
  display: inline-flex;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 4px;
}
.currency-opt {
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 18px;
  min-height: 40px;
  border-radius: 100px;
  cursor: pointer;
  color: var(--gray);
  transition: background 0.2s, color 0.2s;
}
.currency-opt:hover { color: var(--ink); }
.currency-opt.is-active { background: var(--ink); color: var(--bg); }

/* Tabs */
.hire-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(20px);
  z-index: 5;
  flex-wrap: wrap;
}
.hire-tab {
  background: transparent;
  border: none;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--gray);
  cursor: pointer;
  padding: 10px 4px;
  position: relative;
  transition: color 0.2s;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-right: 24px;
}
.hire-tab .tab-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  background: var(--bg-soft);
  color: var(--gray);
  padding: 3px 7px;
  border-radius: 100px;
  font-weight: 500;
}
.hire-tab:hover { color: var(--ink); }
.hire-tab.is-active { color: var(--ink); }
.hire-tab.is-active::after {
  content: '';
  position: absolute;
  bottom: -13px;
  left: 0; right: 0;
  height: 2px;
  background: var(--orange);
}
.hire-tab.is-active .tab-count { background: var(--orange); color: #fff; }

.hire-panel { display: none; }
.hire-panel.is-active { display: block; margin-top: 56px; scroll-margin-top: 88px; animation: fadeIn 0.4s var(--ease-out); }
.hire-panel-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 32px;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.hire-panel-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  font-style: normal;
  color: var(--orange);
  font-weight: 500;
}
.hire-toc {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 24px 0 40px;
  padding: 16px 0 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hire-toc-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--gray-strong);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 220ms ease, border-color 220ms ease, transform 220ms ease;
}
.hire-toc-link:hover {
  color: var(--ink);
  border-color: var(--orange);
  transform: translateY(-1px);
}
.hire-toc-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-style: normal;
  color: var(--orange);
}
.hire-toc-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--gray);
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Bundles */
.bundles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.bundle {
  background: var(--ink);
  color: var(--bg);
  border-radius: 22px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
}
.bundle:hover { transform: translateY(-3px); box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18); }
.bundle.featured {
  background: linear-gradient(135deg, var(--orange) 0%, #ff8a3a 100%);
  color: #fff;
  grid-column: span 2;
  padding: 48px 44px;
}
.bundle.featured::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.18) 0%, transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.12) 0%, transparent 40%);
  pointer-events: none;
}
.bundle.featured > * { position: relative; }
.bundle.featured h3 { font-size: 38px; max-width: 520px; }
.bundle.featured .bundle-desc { max-width: 560px; font-size: 15px; }
.bundle.featured .bundle-includes { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; }
.bundle.featured .bundle-price-row { max-width: 360px; }
.bundle.featured:hover { box-shadow: 0 24px 48px rgba(255, 98, 11, 0.35); }

.bundle-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  opacity: 0.7;
  margin-bottom: 8px;
  font-family: 'JetBrains Mono', monospace;
}
.bundle h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.1;
}
.bundle-desc { font-size: 14px; opacity: 0.78; line-height: 1.6; margin-bottom: 22px; }
.bundle-includes {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}
.bundle-includes li { display: flex; align-items: flex-start; gap: 10px; opacity: 0.92; }
.bundle-includes li::before { content: '+'; opacity: 0.5; flex-shrink: 0; font-family: 'JetBrains Mono', monospace; }
.bundle-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.bundle-price { font-size: 28px; font-weight: 600; letter-spacing: -0.02em; font-family: 'JetBrains Mono', monospace; }
.bundle-price-note {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-strong);
  letter-spacing: 0.01em;
}
.bundle.featured .bundle-price-note { color: rgba(255, 255, 255, 0.85); }
.gig-price-note {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-strong);
  letter-spacing: 0.02em;
}
.bundle-save {
  font-size: 11px;
  background: rgba(255, 255, 255, 0.18);
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 500;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.08em;
}
.bundle-actions { display: flex; gap: 8px; margin-top: auto; }
.bundle-actions .btn { font-size: 13px; padding: 10px 16px; flex: 1; justify-content: center; }
.bundle .btn-primary { background: #fff; color: var(--ink); }
.bundle .btn-primary:hover:not(:disabled) { background: var(--bg); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2); }
.bundle.featured .btn-primary { color: var(--orange); }
.bundle .btn-ghost {
  background: transparent;
  color: inherit;
  border-color: rgba(255, 255, 255, 0.25);
}
.bundle .btn-ghost:hover { border-color: rgba(255, 255, 255, 0.5); background: rgba(255, 255, 255, 0.08); }

/* Gigs grid */
.gigs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gig {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.gig::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--cat-color, var(--orange));
  opacity: 0.85;
}
.gig:hover {
  border-color: rgba(255, 98, 11, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.gig-head { margin-bottom: 4px; }
.gig-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cat-color, var(--orange));
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.gig-tag::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.gig.cat-brand     { --cat-color: #853EF4; }
.gig.cat-web       { --cat-color: #FF620B; }
.gig.cat-mobile    { --cat-color: #FF98E1; }
.gig.cat-ai        { --cat-color: #C7A3FF; }
.gig.cat-data      { --cat-color: #FFDF58; }
.gig.cat-marketing { --cat-color: #FFCEAB; }
.gig.cat-hiring    { --cat-color: #22C55E; }
.gig.cat-consulting { --cat-color: var(--ink); }
.gig h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin: 8px 0 8px;
  line-height: 1.15;
}
.gig p {
  color: var(--gray-strong);
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 14px;
  flex: 1;
}
.gig-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
}
.gig-price { font-weight: 500; color: var(--ink); font-size: 15px; }
.gig-time { color: var(--gray); }
.gig-actions { display: flex; gap: 6px; }
.gig-actions .btn { font-size: 11px; padding: 8px 12px; flex: 1; justify-content: center; }

/* Customs */
.customs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.custom {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-out), border-color 0.3s ease;
}
.custom:hover { transform: translateY(-3px); border-color: rgba(255, 98, 11, 0.35); }
.custom h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.custom-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange);
  font-weight: 500;
  margin-bottom: 10px;
}
.custom-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 14px;
}
.custom p { font-size: 14px; color: var(--gray-strong); line-height: 1.6; margin-bottom: 22px; flex: 1; }
.custom-actions { display: flex; gap: 8px; }
.custom-actions .btn { font-size: 12px; padding: 9px 14px; flex: 1; justify-content: center; }

/* Payments note */
.payments-note {
  background: color-mix(in srgb, var(--orange) 5%, var(--bg-card));
  border: 1px solid color-mix(in srgb, var(--orange) 18%, var(--line));
  border-radius: 18px;
  padding: 32px;
  margin-top: 56px;
}
.payments-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange);
  font-weight: 500;
}
.payments-head h4 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.01em;
  margin: 8px 0 28px;
}
.payments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.payments-col h5 { font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.payments-col p { font-size: 13px; color: var(--gray-strong); line-height: 1.6; }

/* ─── Process — pinned timeline ─────────────────────────────────── */
.process-pin {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
  align-items: start;
}
.process-rail {
  position: sticky;
  top: 80px;
  align-self: start;
}
.process-rail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.process-rail-list::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: var(--line);
}
.process-rail-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  font-family: 'Fraunces', serif;
  font-size: 18px;
  color: var(--gray);
  transition: color 0.3s ease;
}
.process-rail-list li::before {
  content: '';
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--line);
  flex-shrink: 0;
  z-index: 1;
  transition: all 0.3s var(--ease-out);
}
.process-rail-list li.is-active { color: var(--ink); }
.process-rail-list li.is-active::before {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--orange) 15%, transparent);
}
.process-rail-list .rail-num {
  font-style: italic;
  color: var(--orange);
  font-size: 16px;
  position: absolute;
  left: 4px;
  z-index: 2;
  font-weight: 400;
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  font-style: normal;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 96px;
}
.process-step-card {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ps-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--orange);
  font-size: 48px;
  margin-bottom: 8px;
  font-variation-settings: "opsz" 48;
}
.process-step-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 18px;
}
.process-step-card p {
  font-size: 17px;
  color: var(--gray-strong);
  line-height: 1.6;
  max-width: 580px;
  margin-bottom: 24px;
}
.ps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ps-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 15px;
}
.ps-list li::before {
  content: '+';
  color: var(--orange);
  font-family: 'JetBrains Mono', monospace;
  flex-shrink: 0;
}

/* ─── FAQ ───────────────────────────────────────────────────────── */
.faq { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 24px 0; }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  transition: color 0.2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq .faq-cat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange);
  font-weight: 500;
  flex-shrink: 0;
  width: 110px;
}
.faq .faq-q {
  flex: 1;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: var(--ink);
}
.faq summary::after {
  content: '+';
  color: var(--orange);
  font-size: 24px;
  font-weight: 300;
  font-family: 'JetBrains Mono', monospace;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover .faq-q { color: var(--orange); }
.faq details p {
  color: var(--gray-strong);
  font-size: 15px;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 760px;
  margin-left: 134px;
}
.faq details strong { color: var(--ink); }

/* ─── Contact ───────────────────────────────────────────────────── */
.contact-wrap { max-width: 760px; }
.contact-wrap > h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.contact-wrap > h2 em { font-style: italic; color: var(--orange); }
.contact-wrap > p {
  color: var(--gray-strong);
  font-size: 17px;
  margin-bottom: 32px;
  max-width: 540px;
}

.contact-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-elev);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}
.contact-channel:hover,
.contact-channel:focus-visible {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--orange) 45%, var(--line-strong));
  box-shadow: 0 12px 28px -20px color-mix(in srgb, var(--orange) 40%, transparent);
  outline: none;
}
.contact-channel svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--ink);
}
.contact-channel:first-child svg { color: #25D366; }
.contact-channel div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-channel-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contact-channel-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
@media (max-width: 600px) {
  .contact-channels { grid-template-columns: 1fr; }
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
  max-width: 720px;
  margin-bottom: 16px;
}
.contact-form .field { display: flex; flex-direction: column; }
.contact-form .field.full { grid-column: 1 / -1; }
.contact-form label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 22px 0 6px;
  display: flex;
  align-items: center;
}
.char-count {
  font-size: 11px;
  color: var(--gray);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 8px;
  font-variant-numeric: tabular-nums;
}
.optional-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--gray);
  text-transform: lowercase;
  letter-spacing: 0;
  margin-left: 8px;
  padding: 2px 8px;
  border: 1px solid var(--line);
  border-radius: 100px;
}
.contact-form select optgroup {
  font-family: inherit;
  font-weight: 600;
  color: var(--gray);
  background: var(--bg-elev);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  padding: 6px 0 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
  resize: vertical;
  width: 100%;
}
.contact-form textarea { min-height: 120px; }
.contact-form select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238D8D8D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}
[data-theme="dark"] .contact-form select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23d4d4d4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
}
.contact-form select option {
  background: var(--bg-elev);
  color: var(--ink);
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--gray); }
.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  outline: none;
  border-bottom-color: var(--orange);
  box-shadow: 0 1px 0 0 var(--orange);
}

.form-row { display: flex; align-items: center; gap: 24px; margin-top: 32px; flex-wrap: wrap; }
.form-note { font-size: 13px; color: var(--gray); min-height: 18px; transition: color 0.2s; }
.form-note.ok { color: var(--orange); }
.form-note.err { color: #c53d0b; }

.alt-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.alt-card { display: flex; flex-direction: column; }
.alt-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
.alt-link {
  font-size: 16px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 6px;
  transition: color 0.2s;
}
.alt-link:hover { color: var(--orange); }
.alt-help { font-size: 13px; color: var(--gray); line-height: 1.5; }

/* ─── Footer ────────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--line);
  margin-top: 60px;
  padding: 64px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  margin-bottom: 6px;
}
.footer-col a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--orange); }
.footer-mark {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.footer-mark .dot {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  margin-right: 8px;
  transform: translateY(-1px);
}
.footer-line {
  font-size: 13px;
  color: var(--gray-strong);
  max-width: 320px;
  line-height: 1.55;
}
.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink);
  margin-top: 4px;
}
.footer-status .dot {
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2.4s ease-out infinite;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--line-soft);
  font-size: 12px;
  color: var(--gray);
}
.footer-bottom a { color: var(--gray); text-decoration: none; }
.footer-bottom a:hover { color: var(--orange); }

/* ─── Back to top ───────────────────────────────────────────────── */
.to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--ink);
  color: var(--bg);
  border: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, background 0.2s;
  pointer-events: none;
  z-index: 60;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  text-decoration: none;
}
.to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.to-top:hover { background: var(--orange); color: #fff; }
.to-top svg { width: 18px; height: 18px; }

/* ─── Legal pages ───────────────────────────────────────────────── */
.legal-content { padding: 56px 0 96px; }
.legal-content .legal-container { max-width: 780px; }
.legal-content h1 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 12px;
}
.legal-content h1 em { font-style: italic; color: var(--orange); }
.legal-meta {
  font-family: 'JetBrains Mono', monospace;
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.legal-content h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.01em;
  margin-top: 48px;
  margin-bottom: 16px;
}
.legal-content h3 { font-size: 17px; font-weight: 600; margin-top: 28px; margin-bottom: 12px; }
.legal-content p { color: var(--gray-strong); font-size: 15px; line-height: 1.75; margin-bottom: 16px; }
.legal-content ul, .legal-content ol {
  color: var(--gray-strong); font-size: 15px; line-height: 1.75;
  margin-bottom: 16px; padding-left: 22px;
}
.legal-content li { margin-bottom: 6px; }
.legal-content li strong, .legal-content strong { color: var(--ink); font-weight: 600; }
.legal-content em { font-style: italic; color: var(--ink); }
.legal-content a {
  color: var(--orange);
  text-decoration: underline;
  text-decoration-color: rgba(255, 98, 11, 0.3);
  text-underline-offset: 2px;
}
.legal-content a:hover { text-decoration-color: var(--orange); }
.legal-content hr { border: none; height: 1px; background: var(--line); margin: 36px 0; }
.legal-content .callout {
  background: color-mix(in srgb, var(--orange) 5%, var(--bg-card));
  border: 1px solid color-mix(in srgb, var(--orange) 18%, var(--line));
  border-radius: 14px;
  padding: 18px 22px;
  margin: 20px 0;
  font-size: 14px;
}
.legal-content .callout p { font-size: 14px; margin-bottom: 8px; }
.legal-content .callout p:last-child { margin-bottom: 0; }
.legal-content table { width: 100%; border-collapse: collapse; font-size: 14px; margin: 16px 0; }
.legal-content th, .legal-content td { text-align: left; padding: 10px 14px; border-bottom: 1px solid var(--line); }
.legal-content th { color: var(--ink); font-weight: 600; background: var(--bg-soft); }
.legal-content td { color: var(--gray-strong); }

/* Legacy inline TOC (kept for fallback) */
.legal-toc {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 26px;
  margin-bottom: 36px;
}
.legal-toc h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gray);
  font-weight: 600;
  margin-bottom: 14px;
}
.legal-toc ol { columns: 2; column-gap: 24px; padding-left: 18px; margin-bottom: 0; font-size: 14px; }
.legal-toc ol li { margin-bottom: 6px; break-inside: avoid; }
.legal-toc ol a { color: var(--ink); text-decoration: none; }
.legal-toc ol a:hover { color: var(--orange); }

/* New side-by-side legal layout — sticky sidebar TOC */
.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 64px;
  align-items: start;
  margin-top: 16px;
}
.legal-sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  scrollbar-width: thin;
  padding-right: 8px;
}
.legal-toc-side h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gray);
  font-weight: 600;
  margin-bottom: 14px;
}
.legal-toc-side ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
}
.legal-toc-side ol li {
  margin: 0;
}
.legal-toc-side ol a {
  display: block;
  padding: 7px 0 7px 16px;
  margin-left: -1px;
  border-left: 1px solid transparent;
  font-size: 13px;
  color: var(--gray);
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.2s, border-color 0.2s, padding-left 0.2s;
}
.legal-toc-side ol a:hover {
  color: var(--ink);
  padding-left: 20px;
}
.legal-toc-side ol a.is-active {
  color: var(--orange);
  border-left-color: var(--orange);
  font-weight: 500;
}
.legal-body { min-width: 0; }
.legal-body h2 { scroll-margin-top: 100px; }

@media (max-width: 880px) {
  .legal-layout { grid-template-columns: 1fr; gap: 0; }
  .legal-sidebar {
    position: static;
    max-height: none;
    overflow: visible;
    margin-bottom: 32px;
    padding: 22px 26px;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 14px;
  }
  .legal-toc-side ol {
    border-left: none;
    columns: 2;
    column-gap: 20px;
  }
  .legal-toc-side ol a {
    padding: 4px 0;
    border-left: none;
  }
  .legal-toc-side ol a:hover { padding-left: 0; }
  .legal-toc-side ol a.is-active { border-left: none; padding-left: 0; }
}

@media (max-width: 640px) {
  .legal-toc-side ol { columns: 1; }
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gray);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}
.back-link:hover { color: var(--orange); }
.back-link svg { width: 16px; height: 16px; }

/* ─── Responsive ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .spec-sheet { max-width: 480px; }
  .gigs { grid-template-columns: repeat(3, 1fr); }
  .process-pin { grid-template-columns: 200px 1fr; gap: 40px; }
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .bundles, .customs { grid-template-columns: 1fr; }
  .bundle.featured { grid-column: span 1; padding: 36px 28px; }
  .bundle.featured h3 { font-size: 28px; }
  .bundle.featured .bundle-includes { grid-template-columns: 1fr; }
  .alt-contact-grid { grid-template-columns: 1fr; }
  .top { margin-bottom: 40px; padding: 14px 64px; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: color-mix(in srgb, var(--bg) 96%, transparent);
    backdrop-filter: blur(20px);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 8px;
    margin-top: 8px;
    box-shadow: var(--shadow-card);
    opacity: 0;
    transform: translateY(-12px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
    z-index: 40;
  }
  .nav-links.is-open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
  .nav-links a, .nav-links button {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    text-align: left;
  }
  .nav-links .theme-toggle { width: 100%; height: auto; justify-content: flex-start; padding: 12px 16px; border-radius: 10px; border: none; }
  .nav-links a:hover { background: color-mix(in srgb, var(--orange) 8%, transparent); color: var(--orange); }
  .nav-links .nav-cta { margin-top: 4px; text-align: center; padding: 12px 16px; }
  .gigs { grid-template-columns: repeat(2, 1fr); }
  .service-strip,
  .service-strip.reverse { grid-template-columns: 1fr; gap: 24px; }
  .service-strip.reverse .service-strip-icon { order: 0; justify-self: start; }
  .service-strip.reverse .service-strip-body { text-align: left; }
  .service-strip.reverse .service-strip-body .chip-list { justify-content: flex-start; }
  .service-strip-icon { width: 88px; height: 88px; }
  .service-strip-icon svg { width: 36px; height: 36px; }
  .process-pin { grid-template-columns: 1fr; gap: 32px; }
  .process-rail { position: static; }
  .process-rail-list { flex-direction: row; flex-wrap: wrap; gap: 12px; }
  .process-rail-list::before { display: none; }
  .process-rail-list li { font-size: 14px; }
  .process-step-card { min-height: auto; }
  .process-steps { gap: 48px; }
  .faq summary { flex-wrap: wrap; }
  .faq .faq-cat { width: auto; margin-bottom: 4px; }
  .faq details p { margin-left: 0; }
}

@media (max-width: 720px) {
  section { padding: 56px 0; }
  .gigs { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; gap: 0; }
  .payments-grid { grid-template-columns: 1fr; gap: 24px; }
  .legal-toc ol { columns: 1; }
  .hire-tabs { gap: 4px; padding-bottom: 8px; margin-bottom: 24px; }
  .hire-tab { font-size: 18px; margin-right: 16px; }
}

@media (max-width: 640px) {
  .page { padding: 20px 18px 0; }
  .top { margin: -20px -18px 32px; padding: 12px 18px; }
  h1 { font-size: clamp(48px, 13vw, 88px); margin-bottom: 24px; }
  .lede { font-size: 17px; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }
  .spec-sheet { padding: 20px 22px; font-size: 11px; }
  .spec-row { grid-template-columns: 84px 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
  .currency-toggle { width: 100%; }
  .currency-opt { flex: 1; padding: 10px 12px; font-size: 12px; }
  .alt-card { padding: 16px 0; border-bottom: 1px solid var(--line); }
  .alt-card:last-child { border-bottom: none; }
  .to-top { width: 40px; height: 40px; bottom: 16px; right: 16px; }
  .scroll-progress { height: 2px; }
  .legal-content h1 { font-size: 36px; }
}

/* ────────────────────────────────────────────────────────────────────
   POLISH PASS — visual rhythm, micro-interactions, new sections
   ──────────────────────────────────────────────────────────────────── */

/* All sections share the same canvas — visual rhythm comes from hairline borders + section ornaments */
section { position: relative; }

/* Section ornament (tiny italic asterisk between sections) */
section + section::before {
  content: '✶';
  display: block;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--orange);
  opacity: 0.5;
  background: var(--bg);
  padding: 0 12px;
  z-index: 2;
}

/* Hero spec-sheet row hover */
.spec-row {
  padding: 4px 8px;
  margin: -4px -8px;
  border-radius: 6px;
  border-left: 2px solid transparent;
  transition: background 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}
.spec-row:hover {
  background: var(--bg-soft);
  border-left-color: var(--orange);
}

/* Hero trust row underline on strong */
.trust-row strong {
  position: relative;
  display: inline-block;
}
.trust-row strong::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.trust-row:hover strong::after { transform: scaleX(1); transform-origin: left; }

/* Service strip — 4px accent bar on icon side */
.service-strip-icon {
  position: relative;
}
.service-strip-icon::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 12%;
  bottom: 12%;
  width: 4px;
  border-radius: 2px;
  background: var(--cat);
  opacity: 0.6;
}
.service-strip.reverse .service-strip-icon::before {
  left: auto;
  right: -16px;
}

/* ─── Selected work placeholder ──────────────────────────────────── */
/* ─── Recent ships (formerly Selected work) ──────────────────────── */
.recent-ships {
  border-top: 1px solid var(--line);
  padding: var(--space-section) 0;
}
.ships-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.ship-card {
  background: var(--bg-elev);
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.ship-card:hover,
.ship-card:focus-visible {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--orange) 45%, var(--line-strong));
  box-shadow: 0 18px 40px -28px color-mix(in srgb, var(--orange) 40%, transparent);
  outline: none;
}
.ship-arrow {
  display: inline-block;
  transition: transform 220ms ease;
  margin-left: 4px;
}
.ship-card:hover .ship-arrow,
.ship-card:focus-visible .ship-arrow {
  transform: translateX(4px);
  color: var(--orange);
}
.ship-thumb {
  position: relative;
  height: 168px;
  background:
    repeating-linear-gradient(
      135deg,
      transparent 0 14px,
      color-mix(in srgb, var(--orange) 5%, transparent) 14px 15px
    ),
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--orange) 8%, var(--bg)),
      color-mix(in srgb, var(--ink) 6%, var(--bg-elev))
    );
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 16px;
  gap: 12px;
}
.ship-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line-strong);
  padding: 5px 10px;
  border-radius: 999px;
}
.ship-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-strong);
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 5px 10px;
  border-radius: 999px;
}
.ship-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--orange) 50%, transparent);
  animation: ship-pulse 2.4s ease-in-out infinite;
}
@keyframes ship-pulse {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--orange) 50%, transparent); }
  50% { box-shadow: 0 0 0 6px transparent; }
}
@media (prefers-reduced-motion: reduce) {
  .ship-dot { animation: none; }
}
.ship-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 22px 22px 10px;
  color: var(--ink);
}
.ship-outcome {
  color: var(--gray-strong);
  font-size: 14px;
  line-height: 1.55;
  margin: 0 22px 14px;
}
.ship-meta {
  list-style: none;
  margin: 0 22px 18px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ship-meta li {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--gray-strong);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 4px 8px;
}
.ship-coming {
  margin: auto 22px 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--gray);
  text-transform: uppercase;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.ships-footnote {
  margin-top: 28px;
  font-size: 14px;
  color: var(--gray-strong);
  font-style: italic;
}
.ships-footnote a {
  color: var(--orange);
  font-style: normal;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--orange) 40%, transparent);
  text-underline-offset: 3px;
}

/* ─── Case study pages ───────────────────────────────────────────── */
.case-content { padding: 80px 0 120px; }
.case-container { max-width: 1080px; margin: 0 auto; }
.case-eyebrow {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.case-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 4.6vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 14px;
  color: var(--ink);
}
.case-title em { font-style: normal; color: var(--ink); }
/* Case hero — two-column with large illustration */
.case-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
  margin-bottom: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.case-hero-text { display: flex; flex-direction: column; gap: 0; }
.case-summary {
  font-size: 17px;
  line-height: 1.6;
  color: var(--gray-strong);
  margin: 18px 0 0;
  max-width: 540px;
}
.case-hero-figure {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.case-hero-figure img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 560px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--bg-card);
}
.case-preface {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 36px;
  margin-bottom: 32px;
}
.case-preface h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 28px);
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 14px;
}
.case-preface p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-strong);
  margin: 0 0 12px;
}
.case-preface p:last-child { margin-bottom: 0; }
@media (max-width: 860px) {
  .case-hero { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; margin-bottom: 40px; }
  .case-hero-figure img { max-width: 100%; }
  .case-preface { padding: 24px; }
}
.case-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--gray-strong);
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 56px;
}
.case-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 72px;
  align-items: start;
}
.case-sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-right: 8px;
  border-right: 1px solid var(--line);
}
.case-fact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.case-fact-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gray);
  text-transform: uppercase;
}
.case-fact-value {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}
.case-fact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.case-fact ul li {
  font-size: 14px;
  color: var(--gray-strong);
  line-height: 1.5;
}
.case-link {
  color: var(--orange);
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--orange) 40%, transparent);
  text-underline-offset: 3px;
}
.case-body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.case-pending {
  background: var(--bg-elev);
  border: 1px dashed var(--line-strong);
  border-radius: 22px;
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
}
.case-pending::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0 12px,
    color-mix(in srgb, var(--orange) 4%, transparent) 12px 13px
  );
  pointer-events: none;
}
.case-pending > * { position: relative; }
.case-pending-num {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.case-pending h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 18px;
  color: var(--ink);
}
.case-pending p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-strong);
  margin: 0 0 14px;
  max-width: 600px;
}
.case-pending p:last-child { margin-bottom: 0; }
.case-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 860px) {
  .case-layout { grid-template-columns: 1fr; gap: 40px; }
  .case-sidebar {
    position: static;
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding-right: 0;
    padding-bottom: 28px;
    flex-direction: column;
  }
  .case-pending { padding: 32px 24px; }
}

/* ─── How we price (pre-tabs explainer) ──────────────────────────── */
.how-we-price {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  padding: 24px 0 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.how-we-price-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.how-we-price-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--orange);
  font-weight: 500;
}
.how-we-price-row p {
  font-size: 13px;
  color: var(--gray-strong);
  line-height: 1.5;
  margin: 0;
}

/* ─── Hire tab slide transition ──────────────────────────────────── */
.hire-panel { display: none; position: relative; }
.hire-panel.is-active { display: block; }
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
.hire-panel.slide-in-right { animation: slideInRight 0.32s var(--ease-out); }
.hire-panel.slide-in-left { animation: slideInLeft 0.32s var(--ease-out); }
@media (prefers-reduced-motion: reduce) {
  .hire-panel.slide-in-right, .hire-panel.slide-in-left { animation: none; }
}

/* Currency toggle pulse on first scroll-into-view */
.currency-toggle.is-pulsing {
  animation: ctPulse 1.4s ease-out 1;
}
@keyframes ctPulse {
  0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--orange) 50%, transparent); }
  100% { box-shadow: 0 0 0 16px color-mix(in srgb, var(--orange) 0%, transparent); }
}

/* Featured bundle "Most picked" shimmer */
.bundle.featured .bundle-eyebrow {
  background: linear-gradient(90deg,
    rgba(255, 255, 255, 0.7) 0%,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 255, 0.7) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
  display: inline-block;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .bundle.featured .bundle-eyebrow { animation: none; -webkit-text-fill-color: rgba(255,255,255,0.85); }
}

/* ─── Process timeline visual upgrade ────────────────────────────── */
.ps-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.ps-icon {
  width: 32px; height: 32px;
  color: var(--gray);
  transition: color 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.process-step-card.is-active .ps-icon {
  color: var(--orange);
  transform: scale(1.1);
}
.process-step-card .ps-num {
  margin-bottom: 0;
}
.process-step-card h3 {
  color: var(--gray);
  transition: color 0.4s var(--ease-out);
}
.process-step-card.is-active h3 { color: var(--ink); }

/* Rail thread — gradient fill that follows scroll */
.process-rail-list {
  --rail-progress: 0;
}
.process-rail-list::before {
  background: linear-gradient(
    to bottom,
    var(--orange) 0,
    var(--orange) calc(var(--rail-progress) * 100%),
    var(--line) calc(var(--rail-progress) * 100%),
    var(--line) 100%
  );
}
.process-rail-list li.is-active::before {
  animation: railPulse 2s ease-in-out infinite;
}
@keyframes railPulse {
  0%, 100% { box-shadow: 0 0 0 4px color-mix(in srgb, var(--orange) 15%, transparent); }
  50% { box-shadow: 0 0 0 8px color-mix(in srgb, var(--orange) 8%, transparent); }
}
@media (prefers-reduced-motion: reduce) {
  .process-rail-list li.is-active::before { animation: none; }
}

/* Mobile process scroll-snap */
@media (max-width: 880px) {
  .process-rail-list {
    display: flex;
    flex-direction: row !important;
    gap: 8px !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }
  .process-rail-list::before { display: none !important; }
  .process-rail-list li {
    scroll-snap-align: start;
    flex-shrink: 0;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 10px 18px;
  }
  .process-rail-list li::before { display: none; }
  .process-rail-list li.is-active {
    background: color-mix(in srgb, var(--orange) 12%, var(--bg-card));
    border-color: var(--orange);
  }
}

/* ─── Boundaries (What we don't do) ──────────────────────────────── */
.boundaries-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--line);
  margin-top: 16px;
}
.boundaries-list li {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  align-items: baseline;
  padding: 32px 16px;
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s var(--ease-out), background 0.3s var(--ease-out);
}
.boundaries-list li:hover {
  padding-left: 28px;
  background: var(--bg-soft);
}
.bnd-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--orange);
  font-weight: 500;
}
.bnd-text {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.bnd-text em {
  color: var(--gray-strong);
  font-style: italic;
}

/* ─── How to brief us ────────────────────────────────────────────── */
.brief-guide {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 40px 44px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-card);
}
.brief-guide-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--orange);
  font-weight: 500;
  margin-bottom: 24px;
}
.brief-guide-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--orange);
  opacity: 0.6;
}
.brief-guide ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 40px;
}
.brief-guide li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.bg-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--orange);
  font-weight: 500;
  flex-shrink: 0;
  padding: 4px 8px;
  border: 1px solid color-mix(in srgb, var(--orange) 25%, var(--line));
  border-radius: 6px;
  background: color-mix(in srgb, var(--orange) 5%, transparent);
  letter-spacing: 0.08em;
}

/* ─── Form micro-interactions ────────────────────────────────────── */
.field-with-check { position: relative; }
.field-check {
  position: absolute;
  right: 0;
  bottom: 14px;
  width: 18px; height: 18px;
  color: #22C55E;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  pointer-events: none;
}
.field-with-check.is-valid .field-check {
  opacity: 1;
  transform: scale(1);
}

.char-count.is-warn { color: var(--orange); }
.char-count.is-danger { color: #c53d0b; }

/* Submit button states */
.btn .btn-spinner { display: none; width: 14px; height: 14px; animation: spin 0.7s linear infinite; }
.btn.is-loading .btn-label { opacity: 0.6; }
.btn.is-loading .btn-arrow { display: none; }
.btn.is-loading .btn-spinner { display: inline-block; }
@keyframes spin {
  to { transform: rotate(360deg); }
}

.reply-indicator {
  font-size: 13px;
  color: var(--gray);
  margin-top: 16px;
  font-family: 'JetBrains Mono', monospace;
}
.reply-indicator strong { color: var(--ink); font-weight: 500; }

/* ─── Responsive for new sections ────────────────────────────────── */
@media (max-width: 980px) {
  .ships-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .ships-grid { grid-template-columns: 1fr; gap: 16px; }
  .ship-thumb { height: 132px; }
  .ship-title { font-size: 20px; margin: 18px 18px 8px; }
  .ship-outcome, .ship-meta, .ship-coming { margin-left: 18px; margin-right: 18px; }
  .how-we-price { grid-template-columns: 1fr; gap: 20px; }
  .boundaries-list li { grid-template-columns: 1fr; gap: 6px; padding: 18px 0; }
  .brief-guide ul { grid-template-columns: 1fr; gap: 12px; }
  .brief-guide { padding: 22px 24px; }
}

/* ─── Narrow-mobile sweep (320–420px) ────────────────────────────── */
@media (max-width: 420px) {
  .page { padding-left: 20px; padding-right: 20px; }
  .top { margin-left: -20px; margin-right: -20px; padding-left: 20px; padding-right: 20px; }
  .nav-links { gap: 8px; }
  .nav-whatsapp { padding: 6px; width: 32px; height: 32px; }
  .hero h1 { font-size: clamp(40px, 11vw, 56px); }
  .lede { font-size: 15px; }
  .spec-sheet { padding: 22px 18px; }
  .spec-row { grid-template-columns: 80px 1fr; gap: 12px; padding: 9px 0; }
  .spec-row dt { font-size: 11px; }
  .spec-row dd { font-size: 12px; }
  .status-pill { font-size: 11px; padding: 6px 12px; }
  .section-head { gap: 10px; }
  .section-num { font-size: 13px; }
  .section-title { font-size: clamp(28px, 9vw, 40px); }
  .service-strip { padding: 36px 22px; gap: 28px; min-height: auto; }
  .service-strip-icon { width: 72px; height: 72px; border-radius: 18px; }
  .service-strip-icon svg { width: 32px; height: 32px; }
  .service-strip h3 { font-size: 22px; }
  .service-strip-body p { font-size: 14px; }
  .chip-list { gap: 5px; }
  .chip-list li { font-size: 11px; padding: 5px 9px; }
  .hire-tabs { gap: 4px; flex-wrap: wrap; }
  .hire-tab { font-size: 12px; padding: 8px 10px; }
  .tab-count { font-size: 10px; padding: 1px 6px; }
  .bundle, .gig, .custom { padding: 22px 20px; }
  .bundle h3, .gig h3, .custom h3 { font-size: 19px; }
  .bundle-actions, .gig-actions, .custom-actions { flex-direction: column; gap: 8px; }
  .bundle-actions .btn, .gig-actions .btn, .custom-actions .btn { width: 100%; justify-content: center; }
  .ship-thumb { height: 110px; padding: 12px; }
  .ship-title { font-size: 18px; margin: 16px 16px 6px; }
  .ship-outcome { font-size: 13px; }
  .ship-meta li { font-size: 10px; padding: 3px 6px; }
  .ship-coming { font-size: 10px; margin: auto 16px 16px; }
  .contact-channel { padding: 12px 14px; gap: 12px; }
  .contact-channel svg { width: 24px; height: 24px; }
  .contact-channel-value { font-size: 14px; }
  .contact-form { grid-template-columns: 1fr; gap: 16px; }
  .field input, .field select, .field textarea { font-size: 16px; padding: 10px 12px; }
  .alt-contact-grid { grid-template-columns: 1fr; gap: 12px; }
  .payments-grid { grid-template-columns: 1fr; gap: 16px; }
  .pillar { padding: 24px 20px; }
  .faq summary { padding: 18px 0; gap: 10px; }
  .faq-cat { width: auto; min-width: 0; font-size: 10px; padding: 3px 7px; }
  .faq-q { font-size: 14px; }
  .faq details p { font-size: 14px; padding-bottom: 18px; }
  .case-content { padding: 56px 0 80px; }
  .case-title { font-size: clamp(28px, 8vw, 40px); }
  .case-pending { padding: 24px 18px; }
  .case-pending h2 { font-size: 22px; }
  .case-cta .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ─── Print ─────────────────────────────────────────────────────── */
@media print {
  .glow, .skip-link, .to-top, .top, footer, [data-reveal], .scroll-progress { display: none !important; }
  body { background: #fff; color: #000; }
  .legal-content { padding: 0; }
}

/* ===================================================================
   Storytelling pass — editorial UI upgrade
   =================================================================== */

/* Hero: eyebrow + colophon + illustration */
.hero-eyebrow {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gray);
  text-transform: none;
  margin-bottom: 14px;
}
.hero h1 em {
  font-style: italic;
  color: var(--orange);
}
.colophon {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 32px;
  max-width: 480px;
}
.colophon > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-left: 1px solid var(--line-strong);
  padding-left: 14px;
}
.colophon dt {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}
.colophon dd {
  font-size: 13px;
  color: var(--ink);
  margin: 0;
  font-weight: 500;
}

.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-art picture, .hero-art img {
  width: 100%;
  height: auto;
  max-width: 580px;
  border-radius: 18px;
  filter: drop-shadow(0 24px 48px rgba(30, 30, 30, 0.12));
  display: block;
}
[data-theme="dark"] .hero-art img {
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.4));
}
@media (max-width: 860px) {
  .hero-art { margin-top: 32px; }
  .hero-art picture, .hero-art img { max-width: 100%; }
  .colophon { grid-template-columns: 1fr 1fr; gap: 12px 20px; }
}

/* Chapter rule — small ✶ ornament between sections */
.chapter-rule {
  margin: var(--space-section, 96px) auto 0;
  max-width: 1080px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 24px;
}
.chapter-rule::before,
.chapter-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
  max-width: 240px;
}
.chapter-rule span {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--orange);
  opacity: 0.5;
  padding: 0 18px;
}

/* Capabilities marquee */
.cap-marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 64px -64px 0;
  overflow: hidden;
  padding: 22px 0;
  background: var(--bg-soft);
  position: relative;
}
.cap-marquee::before,
.cap-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.cap-marquee::before { left: 0; background: linear-gradient(90deg, var(--bg-soft), transparent); }
.cap-marquee::after { right: 0; background: linear-gradient(-90deg, var(--bg-soft), transparent); }
.cap-marquee-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  width: max-content;
  animation: cap-marquee-scroll 60s linear infinite;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-strong);
  letter-spacing: 0.01em;
}
.cap-marquee-track span { display: inline-block; }
.cap-marquee:hover .cap-marquee-track { animation-play-state: paused; }
@keyframes cap-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .cap-marquee-track { animation: none; }
}

/* Section-hero illustration band — full-bleed banner between chapters */
.section-hero {
  display: block;
  margin: var(--space-section, 96px) -64px 0;
  overflow: hidden;
  position: relative;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  height: 240px;
}
.section-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
  filter: saturate(1.05);
}
[data-theme="dark"] .section-hero img {
  filter: saturate(1.05) brightness(0.85);
}
@media (max-width: 720px) {
  .section-hero {
    margin-left: -20px;
    margin-right: -20px;
    height: 160px;
  }
  .cap-marquee {
    margin-left: -20px;
    margin-right: -20px;
  }
}

/* FAQ end-notes layout — 2-column, all open, smaller type, appendix feel */
.faq--endnotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 40px;
  margin-top: 24px;
}
.faq--endnotes details {
  border-top: 1px solid var(--line);
  border-bottom: none;
  padding: 14px 0;
}
.faq--endnotes details[open] { background: transparent; }
.faq--endnotes summary {
  list-style: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-size: 13px;
}
.faq--endnotes summary::-webkit-details-marker { display: none; }
.faq--endnotes summary::after { content: '+'; margin-left: auto; color: var(--gray); transition: transform 200ms ease; }
.faq--endnotes details[open] summary::after { transform: rotate(45deg); }
.faq--endnotes .faq-cat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--orange);
  background: transparent;
  padding: 0;
  border: none;
  text-transform: uppercase;
  width: auto;
  flex-shrink: 0;
}
.faq--endnotes .faq-q {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
  flex: 1;
}
.faq--endnotes details p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-strong);
  margin: 10px 0 4px;
  padding-left: 0;
}
@media (max-width: 760px) {
  .faq--endnotes { grid-template-columns: 1fr; gap: 0; }
}

/* Ship thumb — replace gradient placeholder with the real raster image */
.ship-thumb {
  position: relative;
  overflow: hidden;
}
.ship-thumb .ship-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1), filter 380ms ease;
}
.ship-card:hover .ship-thumb .ship-art {
  transform: scale(1.04) rotate(-1deg);
  filter: saturate(1.1);
}
.ship-thumb .ship-tag,
.ship-thumb .ship-status {
  position: relative;
  z-index: 1;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
[data-theme="dark"] .ship-thumb .ship-tag,
[data-theme="dark"] .ship-thumb .ship-status {
  background: color-mix(in srgb, var(--bg) 78%, transparent);
}
@media (prefers-reduced-motion: reduce) {
  .ship-card:hover .ship-thumb .ship-art { transform: none; filter: none; }
}

/* Process — narrative arc */
.process-section--arc { padding-bottom: 0; }
.arc-chapters {
  list-style: none;
  padding: 0;
  margin: 48px auto 0;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.arc-chapter {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 64px;
  padding: 72px 0;
  border-top: 1px solid var(--line);
  position: relative;
  opacity: 0.55;
  transform: translateY(8px);
  transition: opacity 600ms cubic-bezier(0.22, 1, 0.36, 1), transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
.arc-chapter.is-read { opacity: 1; transform: translateY(0); }
.arc-chapter:first-child { border-top: none; }
.arc-chapter:last-child { padding-bottom: var(--space-section, 96px); }
.arc-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(64px, 8vw, 112px);
  line-height: 0.85;
  color: var(--orange);
  opacity: 0.35;
  letter-spacing: -0.04em;
  display: block;
}
.arc-chapter.is-read .arc-num { opacity: 0.8; }
.arc-body { max-width: 640px; }
.arc-body h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 42px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 18px;
  color: var(--ink);
}
.arc-body > p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--gray-strong);
  margin-bottom: 18px;
}
.arc-side {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.arc-side li {
  position: relative;
  padding-left: 22px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--gray-strong);
  line-height: 1.6;
}
.arc-side li::before {
  content: '·';
  position: absolute;
  left: 8px;
  color: var(--orange);
  font-size: 18px;
  line-height: 1.2;
}
@media (max-width: 760px) {
  .arc-chapter { grid-template-columns: 1fr; gap: 14px; padding: 48px 0; }
  .arc-num { font-size: 56px; }
}
@media (prefers-reduced-motion: reduce) {
  .arc-chapter { opacity: 1; transform: none; transition: none; }
}

/* Margin notes (boundaries refresh) */
.boundaries--margin .margin-notes {
  list-style: none;
  padding: 0;
  margin: 48px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 56px;
  counter-reset: mnote;
}
.boundaries--margin .margin-notes li {
  position: relative;
  padding-left: 32px;
  counter-increment: mnote;
}
.boundaries--margin .mn-asterisk {
  position: absolute;
  left: 0;
  top: 2px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--orange);
  font-size: 22px;
  line-height: 1;
  opacity: 0.7;
}
.boundaries--margin .margin-notes p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-strong);
  margin: 0;
}
.boundaries--margin .margin-notes p strong {
  color: var(--ink);
  font-weight: 600;
}
@media (max-width: 760px) {
  .boundaries--margin .margin-notes { grid-template-columns: 1fr; gap: 20px; }
}

/* Splash overlay — first-paint */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: grid;
  place-items: center;
  pointer-events: none;
  animation: splash-out 700ms cubic-bezier(0.22, 1, 0.36, 1) 200ms forwards;
}
.splash-mark {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 64px;
  color: var(--orange);
  letter-spacing: -0.04em;
  animation: splash-mark-in 500ms cubic-bezier(0.22, 1, 0.36, 1) backwards;
}
@keyframes splash-mark-in {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes splash-out {
  from { opacity: 1; }
  to { opacity: 0; visibility: hidden; }
}
.splash.is-done { display: none; }
@media (prefers-reduced-motion: reduce) {
  .splash { animation: none; opacity: 0; visibility: hidden; }
}

/* Page-exit fade — applied via JS class when navigating away */
main.is-leaving { opacity: 0; transition: opacity 180ms ease; }
@media (prefers-reduced-motion: reduce) {
  main.is-leaving { opacity: 1; transition: none; }
}

/* ===================================================================
   Professional re-tone — Upwork-class layouts, our palette
   =================================================================== */

/* Hero — bold sans H1, no italic flourish */
.hero h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5.2vw, 64px);
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin: 18px 0 22px;
  color: var(--ink);
}
.hero h1 em, .hero h1 .h1-accent {
  font-style: normal;
  color: var(--ink);
  font-weight: 800;
}
.hero h1 .h1-accent {
  display: inline;
  background: linear-gradient(180deg, transparent 62%, color-mix(in srgb, var(--orange) 22%, transparent) 62%);
}
.hero .lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--gray-strong);
  max-width: 560px;
  margin-bottom: 28px;
}
.hero .lede strong { color: var(--ink); font-weight: 600; }

.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-lg { padding: 14px 26px; font-size: 16px; }
.hero .btn-primary { box-shadow: 0 6px 20px -6px color-mix(in srgb, var(--orange) 60%, transparent); }
.hero .btn-primary:hover { box-shadow: 0 12px 32px -10px color-mix(in srgb, var(--orange) 70%, transparent); }

.hero-figure { margin: 0; position: relative; }
.hero-figure img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 580px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--bg-card);
}
.hero-figure-cap {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.04em;
  margin-top: 10px;
  text-align: center;
}

/* Trust strip — stats + stack */
.trust-strip {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 56px;
}
.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.trust-stat { display: flex; flex-direction: column; gap: 4px; }
.trust-num {
  font-family: 'JetBrains Mono', 'Inter', monospace;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.trust-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0.02em;
}
.trust-stack {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
}
.trust-stack-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}
.trust-stack-list {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--gray-strong);
  line-height: 1.7;
}
@media (max-width: 720px) {
  .trust-stats { grid-template-columns: 1fr 1fr; gap: 20px; }
  .trust-num { font-size: 26px; }
}

/* Services — category browse grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}
.service-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  text-decoration: none;
  color: inherit;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), border-color 220ms ease, box-shadow 220ms ease;
  position: relative;
}
.service-card:hover, .service-card:focus-visible {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--orange) 40%, var(--line-strong));
  box-shadow: 0 18px 40px -22px color-mix(in srgb, var(--orange) 35%, transparent);
  outline: none;
}
.service-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--orange) 12%, var(--bg));
  border: 1px solid color-mix(in srgb, var(--orange) 22%, var(--line));
  display: grid;
  place-items: center;
  color: var(--orange);
  margin-bottom: 6px;
  transition: transform 220ms ease;
}
.service-card:hover .service-card-icon { transform: scale(1.05); }
.service-card-icon svg { width: 24px; height: 24px; }
.service-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.service-card-desc {
  font-size: 13.5px;
  color: var(--gray-strong);
  line-height: 1.55;
  margin: 0;
}
.service-card-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 0;
  margin: 4px 0 0;
}
.service-card-chips li {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 3px 7px;
  color: var(--gray-strong);
}
.service-card-cta {
  margin-top: auto;
  padding-top: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--orange);
  text-transform: uppercase;
}
@media (max-width: 1000px) {
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* Process — horizontal 4-step row */
.steps-row {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0;
  margin: 40px 0 0;
}
.step {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.step::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 24px;
  right: 24px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  opacity: 0.75;
}
.step-num {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  color: var(--orange);
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}
.step-title {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.step-desc {
  font-size: 13.5px;
  color: var(--gray-strong);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 1000px) {
  .steps-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .steps-row { grid-template-columns: 1fr; }
}

/* Principles — 5 cards (3+2) */
.principles { padding: var(--space-section) 0; }
.principles-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0;
  margin: 36px 0 0;
}
.principles-grid .principle:nth-child(4),
.principles-grid .principle:nth-child(5) {
  grid-column: span 1;
}
.principles-grid .principle:nth-child(4) { grid-column: 1 / span 1; }
.principle {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 220ms ease, transform 220ms ease;
}
.principle:hover {
  border-color: color-mix(in srgb, var(--orange) 35%, var(--line-strong));
  transform: translateY(-2px);
}
.principle-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--orange);
}
.principle-icon svg { width: 20px; height: 20px; }
.principle-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}
.principle-desc {
  font-size: 14px;
  color: var(--gray-strong);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 860px) {
  .principles-grid { grid-template-columns: 1fr 1fr; }
  .principles-grid .principle:nth-child(4) { grid-column: auto; }
}
@media (max-width: 520px) {
  .principles-grid { grid-template-columns: 1fr; }
}

/* Testimonial — single elegant pull-quote card */
.testimonial { padding: 56px 0; }
.testimonial-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 56px 56px 48px;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.testimonial-mark {
  position: absolute;
  top: 24px;
  left: 32px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 96px;
  line-height: 0.6;
  color: var(--orange);
  opacity: 0.45;
}
.testimonial-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 24px;
  padding-left: 56px;
}
.testimonial-attrib {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 56px;
}
.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  display: grid;
  place-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.testimonial-name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--gray-strong);
}
@media (max-width: 640px) {
  .testimonial-card { padding: 40px 24px 32px; }
  .testimonial-mark { font-size: 64px; top: 16px; left: 20px; }
  .testimonial-quote, .testimonial-attrib { padding-left: 28px; }
}

/* FAQ — clean accordion (revert from end-notes) */
.faq { margin-top: 28px; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.faq details[open] summary .faq-q { color: var(--ink); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 4px 0;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  margin-left: auto;
  color: var(--gray);
  font-size: 18px;
  transition: transform 200ms ease;
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); color: var(--orange); }
.faq .faq-cat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--orange);
  text-transform: uppercase;
  background: transparent;
  border: none;
  padding: 0;
  width: auto;
  flex-shrink: 0;
}
.faq .faq-q {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-strong);
  flex: 1;
  line-height: 1.4;
}
.faq details p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-strong);
  margin: 14px 0 4px;
  padding-left: 0;
  max-width: 760px;
}

/* Section title weight + italic restraint */
.section-title em {
  font-style: normal;
  color: var(--ink);
  font-weight: inherit;
  background: linear-gradient(180deg, transparent 64%, color-mix(in srgb, var(--orange) 18%, transparent) 64%);
}

/* ═══════════════════════════════════════════════════════════════════
   HW — Hepha Works rebuild (Upwork-inspired, cream/orange/ink theme)
   ─────────────────────────────────────────────────────────────────── */

.hw-section {
  padding: clamp(64px, 9vw, 112px) 0;
  border-top: none;
}
section.hw-hero,
section.hw-trust { border-top: none; }

.hw-section-head {
  max-width: 780px;
  margin-bottom: clamp(40px, 5vw, 56px);
}
.hw-section-num {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.hw-section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 16px;
}
.hw-section-lede {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.6;
  color: var(--gray-strong);
  max-width: 680px;
}
.hw-section-lede strong { color: var(--ink); font-weight: 600; }

/* ─── Hero ────────────────────────────────────────────────────────── */
.hw-hero {
  padding: clamp(48px, 7vw, 80px) 0 clamp(32px, 5vw, 56px);
}
.hw-hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hw-hero-text { min-width: 0; max-width: 640px; }
.hw-eyebrow {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-strong);
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.hw-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-elev);
  font-size: 12.5px;
  color: var(--gray-strong);
  margin-bottom: 22px;
}
.hw-status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px color-mix(in srgb, #10b981 22%, transparent);
}
.hw-h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(38px, 5.6vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.028em;
  color: var(--ink);
  margin-bottom: 22px;
}
.hw-hero-sub {
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.55;
  color: var(--gray-strong);
  margin-bottom: 32px;
  max-width: 580px;
}
.hw-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.hw-hero-figure {
  margin: 0;
  position: relative;
}
.hw-hero-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--bg-elev);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.hw-hero-figure figcaption {
  margin-top: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: var(--gray);
  letter-spacing: 0.04em;
  text-align: right;
}

@media (max-width: 860px) {
  .hw-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hw-hero-figure { order: -1; }
}

/* ─── Buttons ─────────────────────────────────────────────────────── */
.hw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s var(--ease-out), background 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
  line-height: 1;
}
.hw-btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--orange) 28%, transparent);
}
.hw-btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px color-mix(in srgb, var(--orange) 36%, transparent);
}
.hw-btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.hw-btn-ghost:hover {
  background: var(--bg-soft);
  border-color: var(--ink);
}
.hw-btn-lg { padding: 16px 28px; font-size: 16px; }
.hw-btn-sm { padding: 10px 16px; font-size: 13.5px; }

/* ─── Trust strip ─────────────────────────────────────────────────── */
.hw-trust {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.hw-trust-stats {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  flex-wrap: wrap;
}
.hw-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hw-stat-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
}
.hw-stat-label {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.02em;
}
.hw-stack {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: clamp(20px, 3vw, 40px);
  border-left: 1px solid var(--line);
}
.hw-stack-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hw-stack-list {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px;
  color: var(--gray-strong);
  letter-spacing: 0.01em;
  line-height: 1.6;
}
@media (max-width: 760px) {
  .hw-trust { grid-template-columns: 1fr; gap: 20px; }
  .hw-stack { border-left: none; padding-left: 0; border-top: 1px solid var(--line); padding-top: 18px; }
}

/* ─── Services grid (browse) ──────────────────────────────────────── */
.hw-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.hw-service {
  text-align: left;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.18s var(--ease-out), border-color 0.18s, box-shadow 0.18s;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--ink);
}
.hw-service:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
  box-shadow: var(--shadow-card-hover);
}
.hw-service-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--orange) 12%, transparent);
  color: var(--orange);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.hw-service-icon svg { width: 22px; height: 22px; }
.hw-service h3 {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.hw-service p {
  font-size: 13.5px;
  color: var(--gray-strong);
  line-height: 1.55;
  flex: 1;
}
.hw-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.hw-chips span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 6px;
  background: var(--bg-soft);
  color: var(--gray-strong);
  letter-spacing: 0.02em;
}

@media (max-width: 1024px) { .hw-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .hw-services-grid { grid-template-columns: 1fr; } }

/* ─── Selected work / ships ──────────────────────────────────────── */
.hw-ships {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hw-ship {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  transition: transform 0.18s var(--ease-out), border-color 0.18s, box-shadow 0.18s;
}
.hw-ship:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: var(--shadow-card-hover);
}
.hw-ship-figure {
  margin: 0;
  aspect-ratio: 5 / 3;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hw-ship-figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hw-ship-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 8px; }
.hw-ship-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: var(--orange);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hw-ship h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.hw-ship p {
  font-size: 14px;
  color: var(--gray-strong);
  line-height: 1.55;
  flex: 1;
}
.hw-ship-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}
.hw-ship-arrow { color: var(--orange); font-family: 'Inter', sans-serif; font-weight: 600; transition: transform 0.2s; }
.hw-ship:hover .hw-ship-arrow { transform: translateX(3px); }
.hw-ship-foot {
  margin-top: 24px;
  font-size: 14px;
  color: var(--gray);
  font-style: italic;
}

@media (max-width: 900px) { .hw-ships { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .hw-ships { grid-template-columns: 1fr; } }

/* ─── Testimonial ─────────────────────────────────────────────────── */
.hw-quote-section { padding-top: clamp(32px, 5vw, 56px); padding-bottom: clamp(32px, 5vw, 56px); }
.hw-quote {
  max-width: 820px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  border-radius: 14px;
  padding: clamp(28px, 4vw, 48px);
  text-align: left;
}
.hw-quote blockquote {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 24px;
}
.hw-quote figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hw-quote-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.hw-quote-meta { display: flex; flex-direction: column; gap: 2px; }
.hw-quote-meta strong { font-size: 14.5px; font-weight: 600; color: var(--ink); }
.hw-quote-meta span { font-size: 12.5px; color: var(--gray); }

/* ─── Engagements ─────────────────────────────────────────────────── */
.hw-how-price {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px clamp(20px, 3vw, 32px);
  margin-bottom: 40px;
  display: grid;
  gap: 16px;
}
.hw-how-price-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: baseline;
}
.hw-how-price-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--orange);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hw-how-price-row p {
  font-size: 14.5px;
  color: var(--gray-strong);
  line-height: 1.6;
}
@media (max-width: 700px) { .hw-how-price-row { grid-template-columns: 1fr; gap: 6px; } }

.hw-eng-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.hw-eng-toc-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-elev);
  text-decoration: none;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 500;
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}
.hw-eng-toc-link:hover { border-color: var(--orange); transform: translateY(-1px); }
.hw-eng-toc-num { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--orange); }
.hw-eng-toc-meta { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--gray); padding-left: 6px; border-left: 1px solid var(--line); }

.hw-eng-panel { margin-bottom: 56px; }
.hw-eng-panel-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.hw-eng-panel-num { font-family: 'JetBrains Mono', monospace; font-size: 14px; color: var(--orange); font-weight: 500; }

/* Bundles */
.hw-bundles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.hw-bundle {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}
.hw-bundle:hover { border-color: var(--orange); box-shadow: var(--shadow-card); transform: translateY(-2px); }
.hw-bundle-featured { border-color: var(--orange); box-shadow: 0 16px 36px color-mix(in srgb, var(--orange) 14%, transparent); }
.hw-bundle-ribbon {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--orange);
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hw-bundle-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: var(--orange);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hw-bundle h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.012em;
  color: var(--ink);
  line-height: 1.25;
}
.hw-bundle-desc { font-size: 14px; color: var(--gray-strong); line-height: 1.55; }
.hw-bundle-includes {
  list-style: none;
  padding: 0;
  margin: 4px 0 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hw-bundle-includes li {
  font-size: 13.5px;
  color: var(--ink-soft);
  padding-left: 18px;
  position: relative;
}
.hw-bundle-includes li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
}
.hw-bundle-price-row { margin-top: auto; padding-top: 8px; border-top: 1px solid var(--line); }
.hw-bundle-price-note { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--gray-strong); }
.hw-bundle-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }

@media (max-width: 760px) { .hw-bundles { grid-template-columns: 1fr; } }

/* Gigs */
.hw-gigs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.hw-gig {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.hw-gig:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: var(--shadow-card); }
a.hw-gig-link { text-decoration: none; color: inherit; }
.hw-gig-cta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 0.04em;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s var(--ease-out);
}
.hw-gig-link:hover .hw-gig-cta { gap: 10px; }
.hw-gig-head { margin-bottom: 2px; }
.hw-gig-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  color: var(--orange);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 6px;
  background: color-mix(in srgb, var(--orange) 10%, transparent);
}
.hw-gig h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.hw-gig p { font-size: 13px; color: var(--gray-strong); line-height: 1.55; flex: 1; }
.hw-gig-meta {
  display: flex;
  justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: var(--gray);
  letter-spacing: 0.02em;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  margin-top: 4px;
}
.hw-gig .hw-btn { margin-top: 10px; align-self: flex-start; }

@media (max-width: 900px) { .hw-gigs { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .hw-gigs { grid-template-columns: 1fr; } }

/* Customs */
.hw-customs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.hw-custom {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.hw-custom:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.hw-custom-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: var(--orange);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hw-custom h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.012em;
}
.hw-custom-meta { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--gray); }
.hw-custom p:not(.hw-custom-meta) { font-size: 14px; color: var(--gray-strong); line-height: 1.6; flex: 1; }
.hw-custom-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }

@media (max-width: 760px) { .hw-customs { grid-template-columns: 1fr; } }

/* Payments */
.hw-payments {
  margin-top: 48px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(24px, 3.5vw, 36px);
}
.hw-payments header { margin-bottom: 22px; }
.hw-payments-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--orange);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hw-payments h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 24px);
  color: var(--ink);
  margin-top: 6px;
  letter-spacing: -0.012em;
}
.hw-payments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.hw-payments-grid h5 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 6px;
}
.hw-payments-grid p { font-size: 13.5px; color: var(--gray-strong); line-height: 1.6; }

@media (max-width: 760px) { .hw-payments-grid { grid-template-columns: 1fr; } }

/* ─── Process steps ───────────────────────────────────────────────── */
.hw-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.hw-step {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hw-step-num {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  color: var(--orange);
  letter-spacing: -0.03em;
}
.hw-step h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
  letter-spacing: -0.012em;
}
.hw-step p { font-size: 14px; color: var(--gray-strong); line-height: 1.6; }

@media (max-width: 900px) { .hw-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .hw-steps { grid-template-columns: 1fr; } }

/* ─── Principles ──────────────────────────────────────────────────── */
.hw-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.hw-principle {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hw-principle-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--orange) 12%, transparent);
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.hw-principle-icon svg { width: 20px; height: 20px; }
.hw-principle h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.hw-principle p { font-size: 14px; color: var(--gray-strong); line-height: 1.6; }

@media (max-width: 900px) { .hw-principles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .hw-principles { grid-template-columns: 1fr; } }

/* ─── FAQ ─────────────────────────────────────────────────────────── */
.hw-faq {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.hw-faq-item {
  border-bottom: 1px solid var(--line);
}
.hw-faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 40px 22px 0;
  font-family: 'Inter', sans-serif;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  transition: color 0.15s;
}
.hw-faq-item > summary::-webkit-details-marker { display: none; }
.hw-faq-item > summary::after {
  content: "";
  position: absolute;
  right: 4px; top: 50%;
  width: 12px; height: 12px;
  border-right: 2px solid var(--gray-strong);
  border-bottom: 2px solid var(--gray-strong);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s var(--ease-out), border-color 0.15s;
}
.hw-faq-item[open] > summary::after { transform: translateY(-30%) rotate(-135deg); border-color: var(--orange); }
.hw-faq-item > summary:hover { color: var(--orange); }
.hw-faq-body { padding: 0 40px 24px 0; }
.hw-faq-body p { font-size: 15px; line-height: 1.7; color: var(--gray-strong); }

/* ─── Contact ─────────────────────────────────────────────────────── */
.hw-contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
}
.hw-form {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(24px, 3.2vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hw-form-aside {
  font-size: 13.5px;
  color: var(--gray-strong);
  line-height: 1.55;
  padding: 12px 14px;
  background: var(--bg-soft);
  border-radius: 8px;
  border-left: 2px solid var(--orange);
}
.hw-form-aside strong { color: var(--ink); }
.hw-form-row { display: flex; flex-direction: column; gap: 16px; }
.hw-form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px) { .hw-form-row-2 { grid-template-columns: 1fr; } }

.hw-field { display: flex; flex-direction: column; gap: 6px; }
.hw-field-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.hw-field-optional { font-size: 11.5px; color: var(--gray); font-weight: 400; }
.hw-field input,
.hw-field textarea,
.hw-field select {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--bg);
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}
.hw-field textarea { resize: vertical; min-height: 130px; line-height: 1.55; }
.hw-field input:focus,
.hw-field textarea:focus,
.hw-field select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--orange) 18%, transparent);
}
.hw-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0; }
.hw-form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.hw-form-meta { font-size: 12.5px; color: var(--gray); }

.hw-channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hw-channels h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.hw-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.hw-channel:hover { border-color: var(--orange); transform: translateY(-1px); box-shadow: var(--shadow-card); }
.hw-channel-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--orange) 12%, transparent);
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hw-channel-icon svg { width: 18px; height: 18px; }
.hw-channel > div { display: flex; flex-direction: column; gap: 2px; }
.hw-channel strong { font-size: 14.5px; font-weight: 600; color: var(--ink); }
.hw-channel span { font-size: 12.5px; color: var(--gray); }
.hw-channels-note {
  padding: 14px 16px;
  border-radius: 10px;
  background: var(--bg-soft);
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
}
.hw-channels-note strong { font-size: 13.5px; color: var(--ink); }
.hw-channels-note span { font-size: 12.5px; color: var(--gray-strong); line-height: 1.5; }

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

/* ─── Footer (new) ────────────────────────────────────────────────── */
.hw-footer {
  margin-top: clamp(64px, 8vw, 96px);
  padding: clamp(56px, 7vw, 80px) 0 28px;
  border-top: 1px solid var(--line);
}
.hw-footer-top {
  display: grid;
  grid-template-columns: 1.3fr 2.4fr;
  gap: clamp(32px, 4vw, 56px);
  padding-bottom: clamp(40px, 5vw, 56px);
}
.hw-footer-lead { max-width: 360px; }
.hw-footer-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.hw-footer-mark .dot {
  width: 9px; height: 9px;
  background: var(--orange);
  border-radius: 50%;
  display: inline-block;
}
.hw-footer-mark em { font-style: italic; color: var(--orange); }
.hw-footer-pitch {
  font-size: 14px;
  color: var(--gray-strong);
  line-height: 1.6;
  margin-bottom: 18px;
}
.hw-footer-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-elev);
  font-size: 12.5px;
  color: var(--gray-strong);
  margin-bottom: 18px;
}
.hw-footer-cta {
  margin-top: 4px;
  width: fit-content;
}
.hw-footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.6vw, 36px);
}
.hw-footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.hw-footer-col h6 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 6px;
}
.hw-footer-col a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 13.5px;
  line-height: 1.5;
  transition: color 0.15s, transform 0.15s;
  width: fit-content;
}
.hw-footer-col a:hover { color: var(--orange); transform: translateX(2px); }
.hw-footer-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: var(--gray);
  letter-spacing: 0.04em;
  margin-top: 4px;
}
.hw-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  font-size: 12.5px;
  color: var(--gray);
}
.hw-footer-bottom a { color: var(--gray); text-decoration: none; transition: color 0.15s; }
.hw-footer-bottom a:hover { color: var(--orange); }
.hw-footer-legal { display: inline-flex; gap: 10px; align-items: center; }
.hw-footer-legal span[aria-hidden] { color: var(--line-strong); }

@media (max-width: 900px) {
  .hw-footer-top { grid-template-columns: 1fr; }
  .hw-footer-cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hw-footer-cols { grid-template-columns: 1fr; gap: 28px; }
  .hw-footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════════════════════
   HW — Polish pass: bands, hover affordances, process icons,
   signal strip, hero floating stat card, footer signature
   ─────────────────────────────────────────────────────────────────── */

/* Full-bleed alternating surface for section bands */
.hw-section.is-band {
  position: relative;
  background: var(--bg-elev);
  box-shadow: 0 0 0 100vmax var(--bg-elev);
  clip-path: inset(0 -100vmax);
}

/* ─── Hero floating stat card ────────────────────────────────────── */
.hw-hero-figure { position: relative; }
.hw-hero-stat {
  position: absolute;
  left: -16px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 14px 32px rgba(30, 30, 30, 0.10);
  min-width: 200px;
}
.hw-hero-stat-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--orange) 14%, transparent);
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hw-hero-stat-icon svg { width: 18px; height: 18px; }
.hw-hero-stat-body { display: flex; flex-direction: column; gap: 1px; line-height: 1.25; }
.hw-hero-stat-body strong { font-size: 14px; font-weight: 700; color: var(--ink); letter-spacing: -0.005em; }
.hw-hero-stat-body span { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--gray); letter-spacing: 0.02em; }
@media (max-width: 860px) {
  .hw-hero-stat { left: 12px; bottom: 12px; }
}
@media (max-width: 480px) {
  .hw-hero-stat { padding: 10px 12px; min-width: 0; }
  .hw-hero-stat-body span { display: none; }
}

/* ─── Service card hover arrow ───────────────────────────────────── */
.hw-service { position: relative; padding-right: 38px; }
.hw-service-arrow {
  position: absolute;
  right: 16px;
  top: 24px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--gray-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out), background 0.2s, color 0.2s;
}
.hw-service:hover .hw-service-arrow {
  opacity: 1;
  transform: translateX(0);
  background: var(--orange);
  color: #fff;
}

/* ─── Process step icons + connector ─────────────────────────────── */
.hw-steps { position: relative; }
.hw-steps::before {
  content: "";
  position: absolute;
  top: 56px;
  left: 7%;
  right: 7%;
  height: 1px;
  background-image: linear-gradient(90deg, var(--line-strong) 50%, transparent 50%);
  background-size: 12px 1px;
  background-repeat: repeat-x;
  z-index: 0;
}
@media (max-width: 900px) { .hw-steps::before { display: none; } }

.hw-step { position: relative; z-index: 1; }
.hw-step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.hw-step-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: color-mix(in srgb, var(--orange) 12%, transparent);
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hw-step-icon svg { width: 18px; height: 18px; }

/* ─── Signal band ────────────────────────────────────────────────── */
.hw-signal {
  padding: clamp(28px, 4vw, 40px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
}
.hw-signal-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray);
  flex-shrink: 0;
}
.hw-signal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 2.4vw, 28px);
}
.hw-signal-list li {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-strong);
  letter-spacing: -0.005em;
  position: relative;
}
.hw-signal-list li + li::before {
  content: "·";
  color: var(--line-strong);
  margin-right: clamp(14px, 2.4vw, 28px);
  margin-left: calc(-1 * clamp(14px, 2.4vw, 28px));
  position: absolute;
  left: 0;
  transform: translateX(-50%);
}

/* ─── Footer signature ───────────────────────────────────────────── */
.hw-footer-signature {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink-soft);
  letter-spacing: -0.005em;
  padding: 16px 0 24px;
  text-align: center;
  border-top: 1px dashed var(--line);
}

/* Reset margin-top on Engagements section that follows the signal band */
.hw-signal + .hw-section { padding-top: clamp(48px, 7vw, 80px); }

/* Dark theme nuance for the band */
[data-theme="dark"] .hw-section.is-band { background: var(--bg-elev); box-shadow: 0 0 0 100vmax var(--bg-elev); }

/* ─── Marginalia pull quote (italic Fraunces line) ────────────────── */
.hw-marginalia {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 22px);
  letter-spacing: -0.01em;
  color: var(--ink-soft);
  margin-top: 18px;
  padding-left: 14px;
  border-left: 2px solid var(--orange);
  max-width: 580px;
  line-height: 1.4;
}

/* ─── Field-label char counter ────────────────────────────────────── */
.hw-field-label { display: flex; justify-content: space-between; align-items: baseline; }
.hw-field-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  color: var(--gray);
  letter-spacing: 0.02em;
  transition: color 0.15s;
}
.hw-field-count.is-warn { color: var(--orange); }
.hw-field-count.is-danger { color: #d23030; font-weight: 500; }

/* ═══════════════════════════════════════════════════════════════════
   HW Gig detail page (works/gigs/*.html)
   ─────────────────────────────────────────────────────────────────── */
.hw-gp { padding: clamp(40px, 6vw, 72px) 0 0; }
.hw-gp-crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 28px;
}
.hw-gp-crumbs a { color: var(--gray-strong); text-decoration: none; }
.hw-gp-crumbs a:hover { color: var(--orange); }
.hw-gp-crumbs span[aria-hidden] { color: var(--line-strong); }

.hw-gp-hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  padding-bottom: clamp(40px, 5vw, 56px);
  border-bottom: 1px solid var(--line);
}
.hw-gp-hero-text { max-width: 640px; }
.hw-gp-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: var(--orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  background: color-mix(in srgb, var(--orange) 10%, transparent);
  margin-bottom: 18px;
}
.hw-gp-h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.026em;
  color: var(--ink);
  margin-bottom: 20px;
}
.hw-gp-summary {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.6;
  color: var(--gray-strong);
  margin-bottom: 28px;
}
.hw-gp-summary strong { color: var(--ink); font-weight: 600; }

.hw-gp-hero-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 90px;
}

.hw-gp-summary-quiet { font-size: 14.5px; color: var(--gray); font-style: italic; margin-bottom: 24px; }

.hw-gp-hero-figure {
  margin: 0;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  position: relative;
}
.hw-gp-hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.hw-gp-hero-figure:hover img { transform: scale(1.02); }

.hw-gp-brief-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: clamp(28px, 4vw, 40px) 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.hw-gp-brief-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 18px;
  border-right: 1px solid var(--line-soft);
}
.hw-gp-brief-cell:last-child { border-right: none; }
.hw-gp-brief-cell:first-child { padding-left: 0; }
.hw-gp-brief-cell span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
}
.hw-gp-brief-cell strong { font-size: 14.5px; font-weight: 600; color: var(--ink); letter-spacing: -0.005em; }

@media (max-width: 900px) {
  .hw-gp-brief-bar { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 18px 0; }
  .hw-gp-brief-cell { border-right: none; padding: 0; }
  .hw-gp-brief-cell:first-child { padding-left: 0; }
}
@media (max-width: 480px) {
  .hw-gp-brief-bar { grid-template-columns: 1fr 1fr; }
}
.hw-gp-hero-card-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 13.5px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line);
}
.hw-gp-hero-card-row:last-of-type { border-bottom: none; padding-bottom: 0; }
.hw-gp-hero-card-row dt {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
}
.hw-gp-hero-card-row dd { color: var(--ink); font-weight: 500; text-align: right; margin: 0; }
.hw-gp-hero-card .hw-btn { width: 100%; margin-top: 6px; }

@media (max-width: 900px) {
  .hw-gp-hero { grid-template-columns: 1fr; }
  .hw-gp-hero-card { position: static; }
}

.hw-gp-section {
  padding: clamp(56px, 7vw, 80px) 0;
  border-bottom: 1px solid var(--line);
}
.hw-gp-section h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 32px);
  letter-spacing: -0.018em;
  color: var(--ink);
  margin-bottom: 12px;
}
.hw-gp-section > p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--gray-strong);
  max-width: 640px;
  margin-bottom: 24px;
}

.hw-gp-deliverables {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
}
.hw-gp-deliverable {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
}
.hw-gp-deliverable-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--orange) 14%, transparent);
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hw-gp-deliverable-check svg { width: 13px; height: 13px; }
.hw-gp-deliverable strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.hw-gp-deliverable span { font-size: 13.5px; color: var(--gray-strong); line-height: 1.55; }
@media (max-width: 600px) { .hw-gp-deliverables { grid-template-columns: 1fr; } }

.hw-gp-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 20px;
}
.hw-gp-process-step {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
}
.hw-gp-process-step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--orange);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  display: block;
}
.hw-gp-process-step h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 6px;
}
.hw-gp-process-step p { font-size: 13.5px; color: var(--gray-strong); line-height: 1.55; }
@media (max-width: 880px) { .hw-gp-process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .hw-gp-process { grid-template-columns: 1fr; } }

.hw-gp-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.hw-gp-stack span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px;
  padding: 6px 12px;
  border-radius: 8px;
  background: var(--bg-soft);
  color: var(--ink);
  letter-spacing: 0.01em;
}

.hw-gp-related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.hw-gp-related a {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
}
.hw-gp-related a:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.hw-gp-related span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hw-gp-related strong { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 16px; }
.hw-gp-related p { font-size: 13px; color: var(--gray-strong); line-height: 1.55; }
@media (max-width: 760px) { .hw-gp-related { grid-template-columns: 1fr; } }

.hw-gp-cta-section {
  padding: clamp(48px, 6vw, 72px) 0 clamp(56px, 7vw, 80px);
  text-align: center;
}
.hw-gp-cta-section h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -0.024em;
  color: var(--ink);
  margin-bottom: 14px;
}
.hw-gp-cta-section p { font-size: 16px; color: var(--gray-strong); margin-bottom: 22px; max-width: 540px; margin-left: auto; margin-right: auto; }
.hw-gp-cta-actions { display: inline-flex; gap: 10px; flex-wrap: wrap; justify-content: center; }

.hw-gp-why {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}
.hw-gp-why-item {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-card);
}
.hw-gp-why-item h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 6px;
}
.hw-gp-why-item p { font-size: 13.5px; color: var(--gray-strong); line-height: 1.55; }
@media (max-width: 760px) { .hw-gp-why { grid-template-columns: 1fr; } }

