/* ============================================================
   WorkGaming Marketing — site styles
   Imports the canonical color/type tokens; uses semantic vars
   so theming via [data-theme="dark"|"light"] just works.
   ============================================================ */
@import url('/styles/colors_and_type.css');

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; min-height: 100vh; background: var(--bg-page); color: var(--fg-primary); }
body { overflow-x: hidden; }

@keyframes wg-rise {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.wg-rise { opacity: 0; animation: wg-rise 400ms cubic-bezier(0.2,0.8,0.2,1) forwards; }

.wg-container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .wg-container { padding: 0 16px; } }

.wg-section { padding: 96px 0; }
@media (max-width: 720px) { .wg-section { padding: 64px 0; } }

/* hero atmosphere — gradient + grid */
.wg-hero { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--hero-bg-from), var(--hero-bg-to)); }
.wg-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, var(--ink-primary) 1px, transparent 1px),
    linear-gradient(to bottom, var(--ink-primary) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.05;
  pointer-events: none;
}
.wg-hero::after {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, var(--hero-glow), transparent 70%);
  pointer-events: none;
}

/* buttons */
.wg-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 500; font-size: 14px;
  padding: 12px 24px; border-radius: 2px; border: none;
  cursor: pointer; text-decoration: none;
  transition: background 150ms var(--ease-out), color 150ms var(--ease-out), border-color 150ms var(--ease-out);
}
.wg-btn-primary { background: var(--action-primary); color: #F8FAFC; }
.wg-btn-primary:hover { background: var(--action-hover); color: #F8FAFC; }
.wg-btn-secondary { background: transparent; border: 1px solid var(--border-strong); color: var(--ink-primary); }
.wg-btn-secondary:hover { background: var(--bg-surface); }
.wg-btn-ghost { background: transparent; color: var(--ink-primary); padding: 8px 0; }
.wg-btn-ghost:hover { color: var(--action-hover); }

/* status pill */
.wg-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: var(--pill-bg);
  border: 1px solid var(--pill-border);
  border-radius: 999px;
  font-family: var(--font-mono); font-weight: 500; font-size: 12px;
  color: var(--ink-primary);
}
.wg-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--pill-dot); }

/* card */
.wg-card {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: 4px;
  padding: 24px;
  transition: border-color 150ms var(--ease-out);
}
.wg-card.with-corner::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 24px; height: 1px; background: var(--accent);
}
.wg-card.with-corner::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 1px; height: 24px; background: var(--accent);
}
.wg-card:hover { border-color: var(--border-strong); }

/* micro label + section header */
.wg-micro {
  font-family: var(--font-mono); font-weight: 500; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 12px;
}
.wg-micro::before {
  content: ''; width: 24px; height: 1px; background: var(--accent);
}

/* paper breakout — flips to navy on light, paper on dark */
[data-theme="dark"] .wg-paper { background: var(--paper); color: #0F172A; }
[data-theme="dark"] .wg-paper .wg-micro { color: #059669; }
[data-theme="dark"] .wg-paper .wg-micro::before { background: #059669; }
[data-theme="dark"] .wg-paper h1, [data-theme="dark"] .wg-paper h2, [data-theme="dark"] .wg-paper h3 { color: #0F172A; }
[data-theme="dark"] .wg-paper p { color: #0F172A; opacity: 0.78; }

[data-theme="light"] .wg-paper { background: #0F172A; color: #F8FAFC; }
[data-theme="light"] .wg-paper .wg-micro { color: #10B981; }
[data-theme="light"] .wg-paper .wg-micro::before { background: #10B981; }
[data-theme="light"] .wg-paper h1, [data-theme="light"] .wg-paper h2, [data-theme="light"] .wg-paper h3 { color: #F8FAFC; }
[data-theme="light"] .wg-paper p { color: #CBD5E1; }

/* nav */
.wg-nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg-page) 92%, transparent);
  border-bottom: 1px solid var(--border-subtle);
  backdrop-filter: blur(0);
}
.wg-nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.wg-nav-links { display: flex; gap: 20px; align-items: center; }
@media (max-width: 720px) { .wg-nav-links { display: none; } }

.wg-link {
  font-family: var(--font-body); font-weight: 500; font-size: 13px;
  color: var(--ink-secondary); text-decoration: none;
  transition: color 150ms var(--ease-out);
  cursor: pointer;
  background: none; border: none; padding: 0;
}
.wg-link:hover, .wg-link.active { color: var(--ink-primary); }
.wg-link.active::after {
  content: ''; display: block; height: 1px; background: var(--accent);
  width: 100%; margin-top: 2px;
}

/* theme toggle */
.wg-theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 2px;
  color: var(--ink-primary);
  cursor: pointer;
  font-family: var(--font-mono); font-weight: 600; font-size: 13px;
  transition: background 150ms var(--ease-out), border-color 150ms var(--ease-out);
}
.wg-theme-toggle:hover { background: var(--bg-surface); border-color: var(--accent); }

/* footer */
.wg-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-subtle);
  padding: 64px 0 32px;
  color: var(--ink-muted);
}
.wg-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-subtle);
}
@media (max-width: 720px) {
  .wg-footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
.wg-footer-mark {
  width: 48px; height: 48px; background: var(--accent); color: var(--bg-page);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace; font-weight: 600; font-size: 18px;
}
.wg-footer-blurb {
  margin-top: 20px; font-family: 'Geist', sans-serif; font-size: 13px;
  line-height: 1.55; color: var(--ink-muted); max-width: 280px;
}
.wg-footer-upwork {
  margin-top: 20px; display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px; border: 1px solid var(--border-strong); border-radius: 2px;
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  color: var(--ink-primary); letter-spacing: 0.04em; text-decoration: none;
  transition: border-color 150ms var(--ease-out);
}
.wg-footer-upwork:hover { border-color: var(--accent); }
.wg-footer-upwork .dot {
  width: 6px; height: 6px; background: var(--accent); border-radius: 50%;
  display: inline-block;
}
.wg-footer-col-h {
  font-family: 'JetBrains Mono', monospace; font-weight: 500; font-size: 11px;
  color: var(--accent); letter-spacing: 0.10em; text-transform: uppercase;
}
.wg-footer-list {
  list-style: none; padding: 0; margin-top: 16px;
  display: flex; flex-direction: column; gap: 10px;
}
.wg-footer-list a {
  font-family: 'Geist', sans-serif; font-size: 13px;
  color: var(--ink-secondary); text-decoration: none;
}
.wg-footer-list a:hover { color: var(--ink-primary); }
.wg-footer-bottom {
  padding-top: 24px; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
}
.wg-footer-copy, .wg-footer-tag {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--ink-muted); letter-spacing: 0.05em;
}

/* copy-on-click email button */
.wg-copy {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 14px;
  background: transparent;
  border: 1px solid var(--border-strong); border-radius: 2px;
  font-family: 'JetBrains Mono', monospace; font-size: 13px;
  color: var(--ink-primary);
  cursor: pointer;
  transition: border-color 150ms var(--ease-out);
}
.wg-copy:hover { border-color: var(--accent); }
.wg-copy .state {
  font-size: 10px; color: var(--ink-muted); letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* form */
.wg-field { display: block; margin-bottom: 20px; }
.wg-field label {
  display: block; font-family: var(--font-body); font-weight: 500;
  font-size: 13px; color: var(--ink-primary); margin-bottom: 8px;
}
.wg-field input, .wg-field textarea, .wg-field select {
  width: 100%; background: var(--bg-page);
  border: 1px solid var(--border-subtle); border-radius: 4px;
  padding: 12px 14px;
  font-family: var(--font-body); font-size: 14px; color: var(--ink-primary);
  transition: border-color 150ms var(--ease-out), box-shadow 150ms var(--ease-out);
}
.wg-field input:focus, .wg-field textarea:focus, .wg-field select:focus {
  outline: none; border-color: var(--action-primary); box-shadow: var(--ring);
}
.wg-field textarea { min-height: 120px; resize: vertical; font-family: var(--font-body); }
.wg-help { font-family: var(--font-mono); font-size: 11px; color: var(--ink-muted); margin-top: 6px; }

/* terminal mock — keeps dark aesthetic in both modes (intentional, code lives in dark) */
.wg-term {
  background: #0B1220;
  border: 1px solid #1E293B;
  border-radius: 4px;
  padding: 20px;
  font-family: var(--font-mono); font-size: 13px; line-height: 1.7;
  color: #CBD5E1;
}
.wg-term .prompt { color: #10B981; }
.wg-term .caret  { color: #60A5FA; }
.wg-term .out    { color: #94A3B8; }
.wg-term .ok     { color: #F8FAFC; }
.wg-term .cursor { display: inline-block; width: 8px; height: 14px; background: #F8FAFC; vertical-align: -2px; animation: wg-blink 1s steps(2) infinite; }
@keyframes wg-blink { 50% { opacity: 0; } }

/* marquee */
.wg-marquee { overflow: hidden; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); padding: 18px 0; }
.wg-marquee-track { display: flex; gap: 48px; white-space: nowrap; animation: wg-scroll 40s linear infinite; }
.wg-marquee-item {
  font-family: var(--font-mono); font-weight: 500; font-size: 13px;
  color: var(--ink-secondary); display: inline-flex; align-items: center; gap: 12px;
}
.wg-marquee-item::after { content: '·'; color: var(--accent); margin-left: 48px; }
@keyframes wg-scroll { to { transform: translateX(-50%); } }

/* === FROM: home/styles.css === */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; min-height: 100vh; }
body { background: var(--bg-page); color: var(--fg-primary); overflow-x: hidden; }

/* ---------- page-load animation (one orchestrated run) ---------- */
@keyframes wg-rise { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }
.wg-rise { opacity: 0; animation: wg-rise 400ms cubic-bezier(0.2,0.8,0.2,1) forwards; }

/* ---------- layout primitives ---------- */
.wg-container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .wg-container { padding: 0 16px; } }

.wg-section { padding: 96px 0; }
@media (max-width: 720px) { .wg-section { padding: 64px 0; } }

/* ---------- micro label ---------- */
.wg-micro {
  font-family: var(--font-mono); font-weight: 500; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 12px;
}
.wg-micro::before { content: ''; width: 24px; height: 1px; background: var(--accent); }

/* ---------- buttons ---------- */
.wg-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 500; font-size: 14px;
  padding: 12px 24px; border-radius: 2px; border: none;
  cursor: pointer; text-decoration: none; line-height: 1;
  transition: background 150ms var(--ease-out), color 150ms var(--ease-out), border-color 150ms var(--ease-out);
}
.wg-btn-primary { background: var(--action-primary); color: #F8FAFC; }
.wg-btn-primary:hover { background: var(--action-hover); }
.wg-btn-secondary { background: transparent; border: 1px solid var(--border-strong); color: var(--ink-primary); }
.wg-btn-secondary:hover { background: var(--bg-surface); }

/* ---------- pill ---------- */
.wg-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: var(--pill-bg);
  border: 1px solid var(--pill-border);
  border-radius: 999px;
  font-family: var(--font-mono); font-weight: 500; font-size: 12px;
  color: var(--ink-primary);
  letter-spacing: 0.06em;
}
.wg-pill .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--pill-dot);
  box-shadow: 0 0 0 0 var(--pill-dot);
  animation: wg-pulse 2.4s ease-out infinite;
}
@keyframes wg-pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--pill-dot); }
  50% { box-shadow: 0 0 0 6px transparent; }
}

/* ---------- card ---------- */
.wg-card {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: 4px;
  padding: 24px;
  transition: border-color 150ms var(--ease-out);
}
.wg-card.with-corner::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 24px; height: 1px; background: var(--accent);
}
.wg-card.with-corner::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 1px; height: 24px; background: var(--accent);
}
.wg-card:hover { border-color: var(--border-strong); }

/* ============================================================
   NAV
   ============================================================ */
.wg-nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--bg-page);
  border-bottom: 1px solid var(--border-subtle);
}
.wg-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; gap: 16px;
}
.wg-mark {
  display: inline-flex; align-items: center; gap: 0;
  font-family: var(--font-mono); font-weight: 600; font-size: 15px;
  color: var(--ink-primary);
  background: none; border: none; padding: 0; cursor: pointer;
  letter-spacing: -0.01em;
  text-decoration: none;
}
.wg-mark .dot { color: var(--accent); }
.wg-nav-links {
  display: flex; gap: 28px; align-items: center;
}
.wg-nav-link {
  font-family: var(--font-body); font-weight: 500; font-size: 13px;
  color: var(--ink-secondary); text-decoration: none;
  transition: color 150ms var(--ease-out);
  background: none; border: none; padding: 4px 0; cursor: pointer;
}
.wg-nav-link:hover { color: var(--ink-primary); }
.wg-nav-actions { display: flex; align-items: center; gap: 12px; }

@media (max-width: 760px) {
  .wg-nav-links { display: none; }
}

/* theme toggle */
.wg-theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 2px;
  color: var(--ink-primary);
  cursor: pointer;
  transition: background 150ms var(--ease-out), border-color 150ms var(--ease-out);
}
.wg-theme-toggle:hover { background: var(--bg-surface); border-color: var(--accent); }

/* hamburger (mobile) */
.wg-hamburger {
  display: none;
  width: 32px; height: 32px;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 2px;
  color: var(--ink-primary);
  cursor: pointer;
  align-items: center; justify-content: center;
}
@media (max-width: 760px) {
  .wg-hamburger { display: inline-flex; }
  .wg-nav-cta-desktop { display: none; }
}
.wg-mobile-menu {
  display: none;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-page);
}
.wg-mobile-menu.open { display: block; }
.wg-mobile-menu-inner {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 0;
}
.wg-mobile-menu .wg-nav-link { padding: 12px 0; font-size: 15px; }
.wg-mobile-menu .wg-btn { margin-top: 8px; align-self: flex-start; }

/* ============================================================
   HERO
   ============================================================ */
.wg-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--hero-bg-from), var(--hero-bg-to));
}
.wg-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, var(--ink-primary) 1px, transparent 1px),
    linear-gradient(to bottom, var(--ink-primary) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: -1px -1px;
  opacity: 0.05;
  pointer-events: none;
}
.wg-hero::after {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, var(--hero-glow), transparent 70%);
  pointer-events: none;
}
.wg-hero-inner { padding: 120px 32px 96px; position: relative; }
.wg-hero-grid {
  display: grid; grid-template-columns: 7fr 5fr; gap: 48px; align-items: end;
}
.wg-hero-h1 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(44px, 6.4vw, 84px); line-height: 1.02;
  letter-spacing: -0.02em; color: var(--ink-primary);
  font-variation-settings: "opsz" 144;
  margin: 24px 0 0;
}
.wg-hero-h1 .accent { color: var(--action-primary); font-weight: 700; }
.wg-hero-sub {
  font-family: var(--font-body); font-size: 18px; line-height: 1.55;
  color: var(--ink-secondary); max-width: 560px; margin: 24px 0 0;
}
.wg-hero-ctas { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.wg-hero-stamp {
  position: absolute; bottom: 24px; right: 32px;
  font-family: var(--font-mono); font-size: 11px; color: var(--ink-muted);
  letter-spacing: 0.08em;
}
@media (max-width: 860px) {
  .wg-hero-inner { padding: 64px 16px 80px; }
  .wg-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .wg-hero-stamp { right: 16px; }
}

/* terminal mock */
.wg-term {
  background: #0B1220;
  border: 1px solid #1E293B;
  border-radius: 4px;
  padding: 0;
  font-family: var(--font-mono); font-size: 13px; line-height: 1.7;
  color: #CBD5E1;
  overflow: hidden;
}
.wg-term-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid #1E293B;
  background: #0F172A;
}
.wg-term-bar .lamp { width: 8px; height: 8px; border-radius: 50%; background: #334155; }
.wg-term-bar .label {
  margin-left: auto;
  font-family: var(--font-mono); font-size: 11px; color: #64748B;
  letter-spacing: 0.05em;
}
.wg-term-body { padding: 18px 20px 20px; }
.wg-term .prompt { color: #10B981; }
.wg-term .caret  { color: #60A5FA; }
.wg-term .out    { color: #94A3B8; }
.wg-term .ok     { color: #F8FAFC; }
.wg-term .dim    { color: #64748B; }
.wg-term .blue   { color: #60A5FA; }
.wg-term .cursor {
  display: inline-block; width: 8px; height: 14px; background: #F8FAFC;
  vertical-align: -2px; animation: wg-blink 1s steps(2) infinite;
}
@keyframes wg-blink { 50% { opacity: 0; } }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.wg-sec-head { margin-bottom: 48px; max-width: 760px; }
.wg-sec-head h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(32px, 4.2vw, 48px); line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 16px 0 0; color: var(--ink-primary);
  font-variation-settings: "opsz" 96;
}

/* ============================================================
   VIDEO POSTER
   ============================================================ */
.wg-video-poster {
  position: relative; display: block;
  width: 100%; aspect-ratio: 16/9;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 150ms var(--ease-out);
}
.wg-video-poster:hover { border-color: var(--accent); }
.wg-video-poster::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(59,130,246,0.18), transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(16,185,129,0.12), transparent 55%),
    linear-gradient(135deg, #0B1220 0%, #1E293B 100%);
}
[data-theme="light"] .wg-video-poster::before {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(37,99,235,0.10), transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(5,150,105,0.10), transparent 55%),
    linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
}
.wg-video-poster-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(248,250,252,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(248,250,252,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}
.wg-video-poster-darken {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.25);
  transition: background 150ms var(--ease-out);
}
.wg-video-poster:hover .wg-video-poster-darken { background: rgba(0,0,0,0.10); }
.wg-video-poster-meta {
  position: absolute; left: 24px; bottom: 24px; right: 24px;
  display: flex; justify-content: space-between; align-items: end;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em;
  color: rgba(248,250,252,0.85);
}
.wg-play {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--action-primary);
  display: flex; align-items: center; justify-content: center;
  border: none;
  transition: transform 150ms var(--ease-out), background 150ms var(--ease-out);
  box-shadow: 0 0 0 8px rgba(59,130,246,0.18);
}
.wg-video-poster:hover .wg-play { background: var(--action-hover); }
.wg-play svg { display: block; }

/* ============================================================
   VIDEO MODAL
   ============================================================ */
.wg-modal {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,0.85);
  display: none; align-items: center; justify-content: center;
  padding: 32px;
}
.wg-modal.open { display: flex; }
.wg-modal-frame {
  width: 100%; max-width: 1100px; aspect-ratio: 16/9;
  background: #000;
  border: 1px solid #1E293B;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  position: relative;
}
.wg-modal-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.wg-modal-close {
  position: absolute; top: -40px; right: 0;
  background: transparent; border: none;
  color: #F8FAFC; cursor: pointer;
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.08em;
  display: inline-flex; align-items: center; gap: 8px;
}
.wg-modal-close:hover { color: var(--accent); }

/* ============================================================
   SERVICES GRID (5 cards)
   ============================================================ */
.wg-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.wg-services-grid > .wg-card { padding: 28px; }
.wg-service-num {
  font-family: var(--font-mono); font-weight: 500; font-size: 12px;
  letter-spacing: 0.10em; color: var(--ink-muted);
  text-transform: uppercase;
}
.wg-service-num strong { color: var(--accent); font-weight: 500; }
.wg-service-h {
  font-family: var(--font-body); font-weight: 600;
  font-size: 22px; line-height: 1.2; color: var(--ink-primary);
  margin: 12px 0 12px;
}
.wg-service-body {
  font-family: var(--font-body); font-size: 14.5px; line-height: 1.6;
  color: var(--ink-secondary); margin: 0 0 20px;
}
.wg-service-bullets {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
}
.wg-service-bullets li {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--ink-secondary);
  display: flex; align-items: center; gap: 10px;
  letter-spacing: 0.01em;
}
.wg-service-bullets li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}
@media (max-width: 980px) {
  .wg-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .wg-services-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PROCESS TIMELINE
   ============================================================ */
.wg-process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.wg-step {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: 4px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color 150ms var(--ease-out);
}
.wg-step:hover { border-color: var(--border-strong); }
.wg-step-num {
  font-family: var(--font-mono); font-weight: 500; font-size: 13px;
  color: var(--action-primary);
  letter-spacing: 0.05em;
}
.wg-step-title {
  font-family: var(--font-body); font-weight: 600; font-size: 18px;
  color: var(--ink-primary); margin: 0;
}
.wg-step-body {
  font-family: var(--font-body); font-size: 14px; line-height: 1.55;
  color: var(--ink-secondary); margin: 0;
}
.wg-step-day {
  margin-top: auto;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--ink-muted);
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}
@media (max-width: 980px) {
  .wg-process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .wg-process-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   TRUST PANEL (2x2)
   ============================================================ */
.wg-trust-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.wg-trust-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: 4px;
  padding: 32px;
  position: relative;
}
.wg-trust-card h3 {
  font-family: var(--font-body); font-weight: 600; font-size: 20px;
  color: var(--ink-primary); margin: 0 0 12px;
  line-height: 1.3;
}
.wg-trust-card p {
  font-family: var(--font-body); font-size: 14.5px; line-height: 1.6;
  color: var(--ink-secondary); margin: 0;
}
.wg-trust-card .hint {
  display: block;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.10em; text-transform: uppercase;
  margin-bottom: 16px;
}
@media (max-width: 720px) {
  .wg-trust-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   WORK CARDS
   ============================================================ */
.wg-work-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.wg-work-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: 4px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color 150ms var(--ease-out);
}
.wg-work-card:hover { border-color: var(--border-strong); }
.wg-work-tag {
  font-family: var(--font-mono); font-weight: 500; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--accent);
}
.wg-work-h {
  font-family: var(--font-body); font-weight: 600; font-size: 22px;
  line-height: 1.2; color: var(--ink-primary);
  margin: 0;
}
.wg-work-body {
  font-family: var(--font-body); font-size: 14.5px; line-height: 1.6;
  color: var(--ink-secondary); margin: 0;
}
.wg-work-foot {
  margin-top: auto; padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  display: flex; align-items: center; justify-content: space-between;
}
.wg-work-foot .meta {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--ink-muted);
}
.wg-work-foot .arrow {
  font-family: var(--font-mono); color: var(--ink-muted);
}
.wg-work-card.cta {
  border-style: dashed;
  background: transparent;
}
.wg-work-card.cta:hover {
  border-color: var(--accent);
  background: var(--bg-surface);
}
.wg-work-card.cta .wg-work-tag { color: var(--ink-muted); }
@media (max-width: 980px) {
  .wg-work-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FOUNDERS
   ============================================================ */
.wg-founders-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.wg-founder {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: 4px;
  padding: 28px;
  display: flex; align-items: center; gap: 24px;
}
.wg-monogram {
  width: 64px; height: 64px; flex-shrink: 0;
  background: var(--accent);
  color: var(--bg-page);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
  font-size: 32px; line-height: 1;
  font-variation-settings: "opsz" 144;
}
.wg-founder h3 {
  font-family: var(--font-body); font-weight: 600;
  font-size: 22px; color: var(--ink-primary); margin: 0 0 4px;
}
.wg-founder .role {
  font-family: var(--font-body); font-weight: 400;
  font-size: 14px; color: var(--ink-secondary); margin: 0;
}
@media (max-width: 720px) {
  .wg-founders-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT CTA
   ============================================================ */
.wg-cta-section {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 96px 0;
  text-align: center;
}
.wg-cta-section h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(36px, 4.6vw, 56px); line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink-primary); margin: 16px 0 24px;
  font-variation-settings: "opsz" 144;
}
.wg-cta-section .lede {
  max-width: 580px; margin: 0 auto 32px;
  font-family: var(--font-body); font-size: 17px; line-height: 1.55;
  color: var(--ink-secondary);
}
.wg-cta-actions {
  display: flex; justify-content: center; gap: 12px; flex-wrap: wrap;
}
.wg-copy-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 14px;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--ink-primary);
  padding: 12px 20px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 150ms var(--ease-out), border-color 150ms var(--ease-out), color 150ms var(--ease-out);
  text-decoration: none;
}
.wg-copy-btn:hover { background: var(--bg-surface); border-color: var(--accent); }
.wg-copy-btn .copy-hint {
  font-size: 11px; color: var(--ink-muted);
  letter-spacing: 0.10em; text-transform: uppercase;
}
.wg-copy-btn.copied { border-color: var(--accent); color: var(--accent); }
.wg-copy-btn.copied .copy-hint { color: var(--accent); }

/* ============================================================
   FOOTER
   ============================================================ */
.wg-footer {
  background: var(--bg-deep);
  padding: 64px 0 32px;
  color: var(--ink-muted);
}
.wg-footer-grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 48px;
}
.wg-footer-mark {
  font-family: var(--font-mono); font-weight: 600; font-size: 18px;
  color: var(--ink-primary); margin-bottom: 14px;
}
.wg-footer-mark .dot { color: var(--accent); }
.wg-footer-meta {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--ink-muted); line-height: 1.7;
  letter-spacing: 0.02em;
}
.wg-footer-col-h {
  font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--ink-muted); margin: 0 0 16px;
}
.wg-footer-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.wg-footer-list a {
  font-family: var(--font-body); font-size: 14px;
  color: var(--ink-secondary);
  text-decoration: none;
  transition: color 150ms var(--ease-out);
}
.wg-footer-list a:hover { color: var(--ink-primary); }
.wg-footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  flex-wrap: wrap; gap: 12px;
}
@media (max-width: 720px) {
  .wg-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .wg-footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   FOCUS RINGS
   ============================================================ */
*:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--action-primary);
  border-radius: 2px;
}

/* ============================================================
   PREFERS REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .wg-rise { animation: none; opacity: 1; transform: none; }
  .wg-pill .dot { animation: none; }
  .wg-term .cursor { animation: none; }
}

/* === FROM: about/about.css === */
/* ============================================================
   About page — additions on top of site.css
   ============================================================ */

/* Stagger fade for the hero only */
@keyframes wg-rise-stagger {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.wg-stagger > * {
  opacity: 0;
  animation: wg-rise-stagger 400ms cubic-bezier(0.2,0.8,0.2,1) forwards;
}
.wg-stagger > *:nth-child(1) { animation-delay:   0ms; }
.wg-stagger > *:nth-child(2) { animation-delay:  60ms; }
.wg-stagger > *:nth-child(3) { animation-delay: 120ms; }
.wg-stagger > *:nth-child(4) { animation-delay: 180ms; }
.wg-stagger > *:nth-child(5) { animation-delay: 240ms; }
.wg-stagger > *:nth-child(6) { animation-delay: 300ms; }

@media (prefers-reduced-motion: reduce) {
  .wg-stagger > * { opacity: 1; animation: none; }
}

/* Narrow editorial column (origin story) */
.wg-narrow { max-width: 64ch; margin: 0 auto; }
.wg-narrow p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-primary);
  margin: 0;
}
.wg-narrow p + p { margin-top: 24px; }

/* Founders strip */
.wg-founder-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: start;
  padding: 32px;
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: 4px;
  position: relative;
  transition: border-color 150ms var(--ease-out);
}
.wg-founder-card:hover { border-color: var(--border-strong); }
.wg-founder-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 24px; height: 1px; background: var(--accent);
  opacity: 0; transition: opacity 150ms var(--ease-out);
}
.wg-founder-card:hover::before { opacity: 1; }

.wg-monogram {
  width: 64px; height: 64px;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 36px;
  color: var(--bg-page);
  letter-spacing: -0.02em;
  font-variation-settings: "'opsz' 144";
}

.wg-founder-name {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--ink-primary);
  line-height: 1.1;
}
.wg-founder-role {
  margin-top: 6px;
  font-family: 'Geist', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--ink-muted);
}

@media (max-width: 720px) {
  .wg-founders-grid { grid-template-columns: 1fr !important; }
  .wg-values-grid   { grid-template-columns: 1fr !important; }
}
@media (min-width: 721px) and (max-width: 960px) {
  .wg-values-grid   { grid-template-columns: repeat(2, 1fr) !important; }
}

/* Video frame */
.wg-video-frame {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  max-width: 720px;
  margin: 0 auto;
  padding: 8px;
  position: relative;
}
.wg-video-frame::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 24px; height: 1px; background: var(--accent);
}
.wg-video-frame::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 1px; height: 24px; background: var(--accent);
}
.wg-video-aspect {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
}
.wg-video-aspect iframe,
.wg-video-aspect video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0; display: block;
  object-fit: cover;
}

/* Values grid */
.wg-value-item {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
}
.wg-value-num {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.10em;
}
.wg-value-name {
  margin-top: 12px;
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--ink-primary);
  line-height: 1.2;
}
.wg-value-body {
  margin-top: 8px;
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-secondary);
}

/* Company details key/value */
.wg-kv {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px 32px;
  font-size: 14px;
}
.wg-kv dt {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-top: 2px;
}
.wg-kv dd {
  margin: 0;
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-primary);
}
.wg-kv dd a {
  color: var(--ink-primary);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
  transition: color 150ms var(--ease-out), border-color 150ms var(--ease-out);
}
.wg-kv dd a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent-hover);
}
.wg-kv dd .mono {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 14px;
}
@media (max-width: 720px) {
  .wg-kv { grid-template-columns: 1fr; gap: 4px 0; }
  .wg-kv dt { padding-top: 16px; }
  .wg-kv dt:first-of-type { padding-top: 0; }
}

/* Copy button */
.wg-copy-btn {
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 2px;
  padding: 12px 20px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 14px;
  color: var(--ink-primary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 150ms var(--ease-out), border-color 150ms var(--ease-out), color 150ms var(--ease-out);
}
.wg-copy-btn:hover { background: var(--bg-surface); border-color: var(--accent); }
.wg-copy-btn .copied { color: var(--accent); }

/* === FROM: contact/contact.css === */
/* ============================================================
   /contact — page-specific layout.
   Loaded after site.css; assumes design tokens are present.
   ============================================================ */

/* 60/40 form + sidebar split */
.wg-contact-grid {
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 32px;
  align-items: start;
}
.wg-contact-col-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 88px; /* nav height + 24 */
}

@media (max-width: 960px) {
  .wg-contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .wg-contact-col-side {
    position: static;
  }
}

/* Form internals */
.wg-contact-form {
  width: 100%;
}
.wg-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.wg-field-block {
  margin-bottom: 20px;
}
.wg-form-row .wg-field-block {
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .wg-form-row { grid-template-columns: 1fr; gap: 0; }
}

/* Inputs — focus state via tokens (overrides inline border on focus) */
.wg-contact-form input:focus,
.wg-contact-form textarea:focus,
.wg-contact-form select:focus {
  border-color: var(--action-primary) !important;
  box-shadow: 0 0 0 2px var(--action-primary);
}
.wg-contact-form input::placeholder,
.wg-contact-form textarea::placeholder {
  color: var(--ink-muted);
  opacity: 1;
}

/* Native select arrow — keep simple, brand-flavored */
.wg-contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='%2394A3B8' stroke-width='1.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
[data-theme="light"] .wg-contact-form select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='%2364748B' stroke-width='1.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

/* Submit row */
.wg-submit-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}
.wg-submit { padding: 14px 24px; font-size: 14px; }

@media (max-width: 600px) {
  .wg-submit-row { display: block; }
  .wg-submit { width: 100%; justify-content: center; }
}

/* Reassurance band 3-col */
.wg-reassure-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: left;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.wg-reassure-step {
  border-top: 1px solid var(--border-subtle);
  padding-top: 20px;
}
@media (max-width: 800px) {
  .wg-reassure-grid { grid-template-columns: 1fr; gap: 8px; max-width: 480px; }
}

/* Padding override on the form card — design system default is 24, spec is 32 */
.wg-card.wg-contact-form { padding: 32px; }
@media (max-width: 600px) {
  .wg-card.wg-contact-form { padding: 24px; }
}

/* === FROM: service-verticals/verticals.css === */
/* ============================================================
   Verticals page — additions on top of site.css
   ============================================================ */

/* Anchor offset so sticky nav doesn't cover targets */
:target { scroll-margin-top: 88px; }
.wg-anchor { scroll-margin-top: 88px; }

/* Smooth scroll for in-page jumps */
html { scroll-behavior: smooth; }

/* Page-load hero rise — single orchestrated animation */
.wg-rise-stagger > * {
  opacity: 0;
  transform: translateY(4px);
  animation: wg-rise 400ms var(--ease-out) forwards;
}
.wg-rise-stagger > *:nth-child(1) { animation-delay: 0ms; }
.wg-rise-stagger > *:nth-child(2) { animation-delay: 60ms; }
.wg-rise-stagger > *:nth-child(3) { animation-delay: 120ms; }
.wg-rise-stagger > *:nth-child(4) { animation-delay: 180ms; }
.wg-rise-stagger > *:nth-child(5) { animation-delay: 240ms; }

/* Subtle scroll-in for vertical sections */
.wg-scrollin {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
  will-change: opacity, transform;
}
.wg-scrollin.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* Anchor jump strip */
.wg-jumpstrip {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 18px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.wg-jumpstrip a {
  font-family: var(--font-mono); font-weight: 500; font-size: 13px;
  color: var(--ink-muted); letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 150ms var(--ease-out);
  display: inline-flex; align-items: center; gap: 10px;
}
.wg-jumpstrip a::before {
  content: ''; width: 16px; height: 1px; background: currentColor; opacity: 0.5;
  transition: width 200ms var(--ease-out), background 150ms var(--ease-out), opacity 150ms var(--ease-out);
}
.wg-jumpstrip a:hover { color: var(--ink-primary); }
.wg-jumpstrip a:hover::before { opacity: 1; }
.wg-jumpstrip a.active { color: var(--accent); }
.wg-jumpstrip a.active::before { width: 28px; background: var(--accent); opacity: 1; }

/* Vertical section spacing override — extra rhythm between verticals */
.wg-vertical { padding: 120px 0; border-top: 1px solid var(--border-subtle); }
.wg-vertical:first-of-type { border-top: 0; }
@media (max-width: 720px) { .wg-vertical { padding: 72px 0; } }

/* Bullet rows — mono dot + body text */
.wg-bullets {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.wg-bullets li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 12px;
  align-items: baseline;
  font-family: var(--font-body); font-size: 15px; line-height: 1.55;
  color: var(--ink-primary);
}
.wg-bullets li::before {
  content: '·';
  font-family: var(--font-mono); font-weight: 700; font-size: 18px;
  line-height: 1;
  text-align: center;
}
.wg-bullets.is-positive li::before { color: var(--accent); }
.wg-bullets.is-negative li::before { color: var(--ink-muted); }

/* Engagement step strip */
.wg-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.wg-steps > .step {
  padding: 28px 28px;
  border-right: 1px solid var(--border-subtle);
}
.wg-steps > .step:last-child { border-right: 0; }
@media (max-width: 860px) {
  .wg-steps { grid-template-columns: 1fr; }
  .wg-steps > .step { border-right: 0; border-bottom: 1px solid var(--border-subtle); }
  .wg-steps > .step:last-child { border-bottom: 0; }
}
.wg-steps .step .num {
  font-family: var(--font-mono); font-weight: 600; font-size: 14px;
  color: var(--accent); letter-spacing: 0.05em;
  display: block; margin-bottom: 10px;
}
.wg-steps .step .title {
  font-family: var(--font-body); font-weight: 500; font-size: 17px;
  color: var(--ink-primary); margin-bottom: 8px;
}
.wg-steps .step .body {
  font-family: var(--font-body); font-size: 14px; line-height: 1.55;
  color: var(--ink-primary);
}

/* Tools chips */
.wg-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.wg-chip {
  font-family: var(--font-mono); font-weight: 500; font-size: 12px;
  color: var(--ink-secondary);
  padding: 6px 12px;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  background: transparent;
  letter-spacing: 0.02em;
}

/* "card" — used for Built for / Not for blocks */
.wg-card-bare {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: 4px;
  padding: 28px;
}
.wg-card-bare h3 {
  font-family: var(--font-body); font-weight: 500; font-size: 18px;
  color: var(--ink-primary); margin: 0 0 18px;
  display: flex; align-items: center; gap: 10px;
}
.wg-card-bare h3 .tag {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.10em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}
.wg-card-bare.is-positive h3 .tag {
  color: var(--accent);
  background: var(--pill-bg);
  border: 1px solid var(--pill-border);
}
.wg-card-bare.is-negative h3 .tag {
  color: var(--ink-muted);
  background: transparent;
  border: 1px solid var(--border-strong);
}
.wg-card-bare.is-positive::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 24px; height: 1px; background: var(--accent);
}
.wg-card-bare.is-positive::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 1px; height: 24px; background: var(--accent);
}

/* Two-column built-for / not-for grid */
.wg-fitgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 860px) { .wg-fitgrid { grid-template-columns: 1fr; } }

/* Vertical section header layout */
.wg-vhead {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
@media (max-width: 860px) {
  .wg-vhead { grid-template-columns: 1fr; gap: 24px; align-items: start; }
}

/* Footer row in each vertical: tools + meta + CTA */
.wg-vmeta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
}
@media (max-width: 720px) {
  .wg-vmeta { grid-template-columns: 1fr; }
}
.wg-vmeta .meta {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--ink-muted); letter-spacing: 0.05em;
  margin-top: 8px;
}

/* Inline copy-button for email */
.wg-copy {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-weight: 500; font-size: 14px;
  color: var(--ink-primary);
  padding: 12px 18px;
  border: 1px solid var(--border-strong);
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
  transition: background 150ms var(--ease-out), border-color 150ms var(--ease-out);
}
.wg-copy:hover { background: var(--bg-surface); border-color: var(--accent); }
.wg-copy .state {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--accent); letter-spacing: 0.10em; text-transform: uppercase;
}

/* Bottom CTA — full-bleed deep bg */
.wg-bottom-cta {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 120px 0;
  text-align: center;
}
@media (max-width: 720px) { .wg-bottom-cta { padding: 80px 0; } }

/* Hero override — keep vertical rhythm reasonable for a sub-page */
.wg-page-hero {
  padding: 96px 0 0;
}
@media (max-width: 720px) { .wg-page-hero { padding: 64px 0 0; } }

/* === FROM: legal/site.css (additions) === */
/* ============================================================
   Legal page — long-form editorial column, anchor strip,
   subtle subsection reveal-on-scroll.
   ============================================================ */
.wg-legal-anchors {
  display: inline-flex; flex-wrap: wrap; gap: 8px;
  padding: 8px;
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  background: var(--bg-surface);
}
.wg-legal-anchor {
  display: inline-flex; align-items: baseline; gap: 10px;
  padding: 10px 16px;
  font-family: var(--font-mono); font-weight: 500; font-size: 13px;
  color: var(--ink-secondary);
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: color 150ms var(--ease-out), border-color 150ms var(--ease-out), background 150ms var(--ease-out);
  letter-spacing: 0.02em;
}
.wg-legal-anchor .num    { color: var(--ink-muted); }
.wg-legal-anchor .sep    { color: var(--ink-muted); }
.wg-legal-anchor .label  { letter-spacing: 0.04em; }
.wg-legal-anchor:hover {
  color: var(--ink-primary);
  border-color: var(--border-strong);
}
.wg-legal-anchor.is-active {
  color: var(--ink-primary);
  border-color: var(--accent);
  background: var(--pill-bg);
}
.wg-legal-anchor.is-active .num,
.wg-legal-anchor.is-active .sep { color: var(--accent); }

.wg-legal-section { scroll-margin-top: 80px; }

.wg-legal-sub {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
}
.wg-legal-sub.is-in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .wg-legal-sub { opacity: 1; transform: none; transition: none; }
}

.wg-legal-body a {
  color: var(--action-primary);
  border-bottom: 1px solid color-mix(in srgb, var(--action-primary) 35%, transparent);
  text-decoration: none;
  transition: color 150ms var(--ease-out), border-color 150ms var(--ease-out);
}
.wg-legal-body a:hover {
  color: var(--action-hover);
  border-bottom-color: var(--action-hover);
}
.wg-legal-body strong { font-weight: 500; color: var(--ink-primary); }
.wg-legal-body code {
  font-family: var(--font-mono);
  font-size: 0.92em;
  padding: 1px 5px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  color: var(--ink-primary);
}


/* === FROM: services/site.css (additions) === */
@import url('colors_and_type.css');
/* ============================================================
   Services page — anchor strip, pillar layout, chips
   ============================================================ */

/* Anchor jump strip (sticky-ish under nav) */
.wg-anchorstrip {
  display: flex; gap: 28px; flex-wrap: wrap;
  padding: 16px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-top: 48px;
}
.wg-anchorlink {
  font-family: var(--font-mono); font-weight: 500; font-size: 12px;
  color: var(--ink-muted); text-decoration: none; letter-spacing: 0.04em;
  text-transform: uppercase;
  background: none; border: none; padding: 0; cursor: pointer;
  transition: color 150ms var(--ease-out);
}
.wg-anchorlink:hover { color: var(--ink-primary); }
.wg-anchorlink.active { color: var(--accent); }
.wg-anchorlink.active::before {
  content: '— '; color: var(--accent);
}

/* Pillar */
.wg-pillar { padding: 96px 0; border-top: 1px solid var(--border-subtle); scroll-margin-top: 96px; }
@media (max-width: 720px) { .wg-pillar { padding: 64px 0; scroll-margin-top: 80px; } }
.wg-pillar:first-of-type { border-top: none; }

.wg-pillar-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}
@media (max-width: 860px) { .wg-pillar-grid { grid-template-columns: 1fr; gap: 24px; } }

.wg-fitgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 720px) { .wg-fitgrid { grid-template-columns: 1fr; } }

.wg-fitcard h3 {
  font-family: var(--font-body); font-weight: 500; font-size: 14px;
  color: var(--ink-muted); letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.wg-fitcard ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.wg-fitcard li {
  display: grid; grid-template-columns: 18px 1fr; gap: 12px;
  font-family: var(--font-body); font-size: 15px; line-height: 1.55;
  color: var(--ink-secondary); align-items: baseline;
}
.wg-fitcard li::before {
  content: '·'; color: var(--accent);
  font-family: var(--font-mono); font-size: 22px; line-height: 1;
  text-align: center;
}
.wg-fitcard.is-not li {
  color: var(--ink-muted);
}
.wg-fitcard.is-not li::before {
  content: '×'; color: var(--ink-muted); font-size: 14px;
}

/* tools row */
.wg-tools {
  margin-top: 32px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.wg-chip {
  font-family: var(--font-mono); font-weight: 500; font-size: 12px;
  color: var(--ink-secondary);
  padding: 6px 12px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  border-radius: 2px;
  letter-spacing: 0.02em;
}

/* engagement line */
.wg-engagement {
  margin-top: 24px;
  font-family: var(--font-mono); font-size: 12px;
  color: var(--ink-muted); letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 12px;
}
.wg-engagement::before {
  content: ''; display: inline-block; width: 24px; height: 1px;
  background: var(--accent);
}
.wg-engagement strong { color: var(--ink-primary); font-weight: 500; }

/* Reveal on scroll for pillars */
.wg-reveal { opacity: 0; transform: translateY(8px); transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out); }
.wg-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Copy-on-click feedback */
.wg-copyable {
  cursor: pointer;
  font-family: var(--font-mono);
  position: relative;
}
.wg-copyable::after {
  content: 'copy';
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-left: 12px;
  opacity: 0; transition: opacity 150ms var(--ease-out);
}
.wg-copyable:hover::after { opacity: 1; }
.wg-copyable.is-copied::after { content: 'copied ✓'; color: var(--accent); opacity: 1; }

