/* wyohost.com — Future Frontier brand
   Light, airy, modern web. Electric blue + Wyoming-sunset gradient.
   Sister brand to ai1offs (dark/orange) and docconduit (cream/serif). */

:root {
  --bg: #FBFBFD;
  --bg-tint: #F2F4F8;
  --surface: #FFFFFF;
  --ink: #0A0E27;
  --ink-soft: #2A2F4A;
  --muted: #6B7290;
  --rule: rgba(10, 14, 39, 0.08);

  --electric: #1E5BFF;
  --electric-deep: #0A3FE0;
  --sunset-1: #FF7A59;
  --sunset-2: #FF3D8A;
  --sky: #6FB7FF;

  --grad-sunset: linear-gradient(135deg, #FF7A59 0%, #FF3D8A 100%);
  --grad-aurora: linear-gradient(135deg, #1E5BFF 0%, #6FB7FF 50%, #FF7A59 100%);
  --grad-text: linear-gradient(135deg, #1E5BFF 0%, #FF3D8A 100%);

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 24px;
  --max-w: 1200px;

  --t: 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

img { max-width: 100%; display: block; }

::selection { background: var(--ink); color: var(--bg); }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--bg);
  padding: 12px 16px; z-index: 100; border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ──────────── Nav ──────────── */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(251, 251, 253, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), background var(--t);
}
nav.site-nav.scrolled {
  background: rgba(251, 251, 253, 0.92);
  border-bottom-color: var(--rule);
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav-logo .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--grad-sunset);
  box-shadow: 0 0 0 0 rgba(255, 61, 138, 0.4);
  animation: pulse 2.6s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 61, 138, 0.35); }
  50% { box-shadow: 0 0 0 8px rgba(255, 61, 138, 0); }
}
@media (prefers-reduced-motion: reduce) { .nav-logo .dot { animation: none; } }

.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  position: relative;
  transition: color var(--t);
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--grad-text);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a:focus-visible { outline: 2px solid var(--electric); outline-offset: 4px; border-radius: 2px; }

.nav-cta {
  background: var(--ink);
  color: var(--bg);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: transform var(--t), box-shadow var(--t), background var(--t);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(10, 14, 39, 0.2);
}
.nav-cta:focus-visible { outline: 2px solid var(--electric); outline-offset: 3px; }

@media (max-width: 720px) {
  nav.site-nav { padding: 14px 20px; }
  .nav-links { display: none; }
}

/* ──────────── Buttons ──────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
  cursor: pointer;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -8px rgba(10, 14, 39, 0.32);
}
.btn-gradient {
  background: var(--grad-sunset);
  color: white;
  position: relative;
  overflow: hidden;
}
.btn-gradient::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--grad-aurora);
  opacity: 0;
  transition: opacity var(--t);
}
.btn-gradient span { position: relative; z-index: 1; }
.btn-gradient:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -8px rgba(255, 61, 138, 0.4); }
.btn-gradient:hover::before { opacity: 1; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule);
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-1px); }

.btn:focus-visible { outline: 2px solid var(--electric); outline-offset: 4px; }

/* ──────────── Layout ──────────── */
section { padding: 120px 32px; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
@media (max-width: 720px) { section { padding: 80px 20px; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: ''; width: 24px; height: 1px; background: currentColor;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.section-title {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 18ch;
}
.section-lede {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--ink-soft);
  max-width: 60ch;
  margin-bottom: 56px;
  line-height: 1.55;
}

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ──────────── Hero ──────────── */
.hero {
  min-height: 100vh;
  padding: 160px 32px 80px;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.hero-grid > * { min-width: 0; }
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
}

.hero h1 {
  font-size: clamp(44px, 7vw, 84px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
}
.hero h1 .word { display: inline-block; opacity: 0; transform: translateY(24px); }
.hero h1 .word.visible { opacity: 1; transform: none; transition: opacity 0.7s, transform 0.7s; }
@media (prefers-reduced-motion: reduce) {
  .hero h1 .word { opacity: 1; transform: none; }
}

.hero-sub {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--ink-soft);
  max-width: 52ch;
  line-height: 1.6;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-meta {
  margin-top: 60px;
  display: flex;
  gap: 40px;
  font-size: 13px;
  color: var(--muted);
  font-family: var(--font-mono);
}
.hero-meta strong { color: var(--ink); display: block; font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 4px; }

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  width: min(100%, 440px);
  margin-left: auto;
}
@media (max-width: 980px) { .hero-visual { margin-left: 0; max-width: 360px; } }

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.85;
  animation: orbFloat 14s ease-in-out infinite;
}
.orb-a { width: 70%; height: 70%; top: 0; left: 0; background: var(--grad-sunset); }
.orb-b { width: 60%; height: 60%; bottom: 0; right: 0; background: linear-gradient(135deg, var(--electric), var(--sky)); animation-delay: -5s; }
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.06); }
}
@media (prefers-reduced-motion: reduce) { .orb { animation: none; } }

.hero-card {
  position: absolute; inset: 8% 6%;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px -20px rgba(10, 14, 39, 0.25);
  padding: 22px 22px;
  display: flex; flex-direction: column; justify-content: center; gap: 12px;
  border: 1px solid var(--rule);
  overflow: hidden;
}
.hero-card-row {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  min-height: 24px;
}
.hero-card-row .check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--grad-sunset); color: white;
  display: grid; place-items: center; font-size: 12px; font-weight: 700;
}
.hero-card-row .label {
  font-family: var(--font-mono);
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-card-row .val {
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
  text-align: right;
}

/* Background grid */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--rule) 1px, transparent 1px),
    linear-gradient(90deg, var(--rule) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 60% 40% at 50% 30%, black 30%, transparent 70%);
  pointer-events: none;
}

/* ──────────── Journey ribbon ──────────── */
.journey {
  background: var(--ink);
  color: var(--bg);
  padding: 100px 32px;
  position: relative;
  overflow: hidden;
}
.journey .eyebrow { color: var(--sky); }
.journey h2 { color: var(--bg); font-size: clamp(32px, 4vw, 48px); margin-bottom: 64px; max-width: 22ch; }

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 26px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--sky), var(--sunset-2), var(--sunset-1));
  opacity: 0.6;
}
.t-step {
  position: relative;
  padding-top: 56px;
}
.t-step .node {
  position: absolute; top: 18px; left: 0;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--bg);
  box-shadow: 0 0 0 4px var(--ink), 0 0 0 5px var(--sky);
}
.t-step.now .node { background: var(--grad-sunset); box-shadow: 0 0 0 4px var(--ink), 0 0 0 5px var(--sunset-2), 0 0 24px rgba(255, 61, 138, 0.5); }
.t-step .year { font-family: var(--font-mono); font-size: 12px; color: var(--sky); margin-bottom: 8px; letter-spacing: 0.1em; }
.t-step h3 { color: var(--bg); font-size: 20px; margin-bottom: 8px; }
.t-step p { color: rgba(251, 251, 253, 0.7); font-size: 14px; line-height: 1.55; }

@media (max-width: 880px) {
  .timeline { grid-template-columns: 1fr; gap: 36px; }
  .timeline::before { left: 7px; right: auto; top: 0; bottom: 0; width: 1px; height: auto; background: linear-gradient(180deg, var(--sky), var(--sunset-2), var(--sunset-1)); }
  .t-step { padding-top: 0; padding-left: 36px; }
  .t-step .node { left: 0; top: 4px; }
}

/* ── Timeline train-rides-in animation (triggered when section scrolls into view) ── */
/* The horizontal connector line draws left-to-right.
   Each step rides in from an alternating side, nodes pop after the line passes. */
.timeline { overflow: hidden; }
.timeline::before {
  /* original gradient line is decorative; we paint the animated track on top */
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 1.4s cubic-bezier(.22,.61,.36,1) .1s;
}
.journey.is-on .timeline::before { transform: scaleX(1); }

.t-step {
  opacity: 0;
  transition:
    opacity .85s ease,
    transform .9s cubic-bezier(.22,.61,.36,1);
  will-change: transform, opacity;
}
.t-step:nth-child(odd)  { transform: translateX(-60px); }
.t-step:nth-child(even) { transform: translateX(60px); }
.journey.is-on .t-step { opacity: 1; transform: translate(0,0); }
.journey.is-on .t-step:nth-child(1) { transition-delay: .35s; }
.journey.is-on .t-step:nth-child(2) { transition-delay: .55s; }
.journey.is-on .t-step:nth-child(3) { transition-delay: .75s; }
.journey.is-on .t-step:nth-child(4) { transition-delay: .95s; }

/* nodes pop in slightly after their card lands */
.t-step .node {
  transform: scale(0);
  transition: transform .55s cubic-bezier(.34, 1.56, .64, 1);
}
.journey.is-on .t-step:nth-child(1) .node { transition-delay: .65s; }
.journey.is-on .t-step:nth-child(2) .node { transition-delay: .85s; }
.journey.is-on .t-step:nth-child(3) .node { transition-delay: 1.05s; }
.journey.is-on .t-step:nth-child(4) .node { transition-delay: 1.25s; }
.journey.is-on .t-step .node { transform: scale(1); }

/* On mobile the line is vertical — animate scaleY instead */
@media (max-width: 880px) {
  .timeline::before { transform-origin: top center; transform: scaleY(0); transition: transform 1.4s cubic-bezier(.22,.61,.36,1) .1s; }
  .journey.is-on .timeline::before { transform: scaleY(1); }
  /* and on mobile we don't have horizontal real estate for the side-train, drift up instead */
  .t-step:nth-child(odd),
  .t-step:nth-child(even) { transform: translateY(24px); }
  .journey.is-on .t-step { transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .timeline::before { transform: scaleX(1); transition: none; }
  .t-step { opacity: 1; transform: none; transition: none; }
  .t-step .node { transform: scale(1); transition: none; }
}

/* ──────────── Services ──────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-sunset);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(10, 14, 39, 0.12);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  background: var(--bg-tint);
  display: grid; place-items: center;
  margin-bottom: 20px;
  font-size: 22px;
  transition: background var(--t);
}
.service-card:hover .icon { background: var(--grad-sunset); }
.service-card:hover .icon svg { stroke: white; }
.service-card .icon svg { width: 22px; height: 22px; stroke: var(--ink); stroke-width: 2; fill: none; transition: stroke var(--t); }
.service-card h3 { font-size: 20px; margin-bottom: 10px; }
.service-card p { color: var(--ink-soft); font-size: 15px; line-height: 1.55; }

/* ──────────── Why future-first ──────────── */
.future-section {
  background: var(--bg-tint);
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  margin: 0 32px;
  position: relative;
  overflow: hidden;
}
.future-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; max-width: var(--max-w); margin: 0 auto; }
@media (max-width: 880px) {
  .future-section { padding: 60px 28px; margin: 0 12px; }
  .future-grid { grid-template-columns: 1fr; gap: 40px; }
}
.future-list { list-style: none; display: grid; gap: 18px; }
.future-list li {
  display: flex; gap: 16px;
  font-size: 16px; line-height: 1.55;
  color: var(--ink-soft);
}
.future-list .check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--grad-sunset);
  color: white;
  display: grid; place-items: center;
  font-size: 14px; font-weight: 700;
}
.future-list strong { color: var(--ink); display: block; margin-bottom: 4px; }

.score-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--rule);
  box-shadow: 0 30px 60px -20px rgba(10, 14, 39, 0.12);
}
.score-card h4 { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.score-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--rule); }
.score-row:last-child { border-bottom: none; }
.score-row .lbl { font-size: 14px; color: var(--ink-soft); }
.score-row .val { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.score-row .val .badge { font-size: 11px; padding: 3px 8px; border-radius: 999px; background: var(--grad-sunset); color: white; font-weight: 600; font-family: var(--font-body); letter-spacing: 0; }

/* ──────────── Social proof ──────────── */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.quote-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
.quote-card::before {
  content: '"';
  position: absolute; top: 8px; right: 24px;
  font-family: var(--font-display);
  font-size: 96px; line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.7;
}
.quote-card blockquote { font-size: 16px; line-height: 1.6; color: var(--ink-soft); margin-bottom: 24px; position: relative; z-index: 1; }
.quote-attr { font-size: 13px; color: var(--muted); }
.quote-attr strong { display: block; color: var(--ink); font-size: 14px; }

.client-logos {
  margin-top: 60px;
  display: flex; flex-wrap: wrap; gap: 32px 56px;
  justify-content: center; align-items: center;
  opacity: 0.7;
}
.client-logos span {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ──────────── CTA band ──────────── */
.cta-band {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  margin: 0 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: -50%;
  background: radial-gradient(circle at 30% 20%, rgba(255, 61, 138, 0.25), transparent 40%),
              radial-gradient(circle at 80% 80%, rgba(30, 91, 255, 0.25), transparent 40%);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: var(--bg); font-size: clamp(32px, 5vw, 52px); line-height: 1.1; margin-bottom: 20px; max-width: 22ch; margin-inline: auto; }
.cta-band p { color: rgba(251, 251, 253, 0.7); font-size: 18px; line-height: 1.55; max-width: 50ch; margin: 0 auto 36px; }
@media (max-width: 720px) { .cta-band { padding: 60px 24px; margin: 0 12px; } }

/* ──────────── Footer ──────────── */
footer.site-footer {
  padding: 80px 32px 40px;
  background: var(--bg);
  border-top: 1px solid var(--rule);
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand p { color: var(--muted); font-size: 14px; margin-top: 12px; line-height: 1.6; max-width: 32ch; }
.footer-col h5 { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { color: var(--ink-soft); text-decoration: none; font-size: 14px; transition: color var(--t); }
.footer-col a:hover { color: var(--ink); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: var(--muted);
}

/* ──────────── Reveal helpers ──────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.8s, transform 0.8s; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ─────────────────────────────────────────
   Hero card micro-animations (A·B·C·D)
   ───────────────────────────────────────── */

/* A — stagger reveal on first paint. JS adds .hc-anim to .hero-card to start. */
.hero-card .hero-card-row {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .55s cubic-bezier(.22,.61,.36,1), transform .55s cubic-bezier(.22,.61,.36,1);
}
.hero-card.hc-anim .hero-card-row { opacity: 1; transform: none; }
.hero-card.hc-anim .hero-card-row:nth-child(1) { transition-delay: .05s; }
.hero-card.hc-anim .hero-card-row:nth-child(2) { transition-delay: .17s; }
.hero-card.hc-anim .hero-card-row:nth-child(3) { transition-delay: .29s; }
.hero-card.hc-anim .hero-card-row:nth-child(4) { transition-delay: .41s; }
.hero-card.hc-anim .hero-card-row:nth-child(5) { transition-delay: .53s; }

/* B — live status pulse loop on the .check dots. JS toggles .hc-pulse on each row in turn. */
@keyframes hcPulse {
  0%   { transform: scale(1);    box-shadow: 0 0 0 0   rgba(255,61,138,.0); }
  35%  { transform: scale(1.18); box-shadow: 0 0 0 0   rgba(255,61,138,.45); }
  70%  { transform: scale(1);    box-shadow: 0 0 0 9px rgba(255,61,138,0); }
  100% { transform: scale(1);    box-shadow: 0 0 0 0   rgba(255,61,138,0); }
}
.hero-card-row.hc-pulse .check { animation: hcPulse 1.1s cubic-bezier(.4,0,.2,1); }

/* D — hover-row highlight (always-on, pure CSS) */
.hero-card-row .check { transition: transform .22s ease, box-shadow .22s ease; }
.hero-card-row .label { transition: transform .22s ease, color .22s ease; }
.hero-card-row .val   { transition: opacity .22s ease, color .22s ease; }
.hero-card-row:hover .check {
  transform: scale(1.1);
  box-shadow: 0 0 0 4px rgba(255,61,138,.16);
}
.hero-card-row:hover .label {
  transform: translateX(4px);
  color: var(--ink-soft);
}
.hero-card-row:hover .val {
  color: var(--ink);
  opacity: 1;
}

/* C uses no special CSS; values get rewritten in place by JS. */

/* Reduced-motion: disable A and B; values jump to final immediately (handled in JS). */
@media (prefers-reduced-motion: reduce) {
  .hero-card .hero-card-row { opacity: 1; transform: none; transition: none; }
  .hero-card-row.hc-pulse .check { animation: none; }
}

/* ─────────────────────────────────────────
   Audit-pass additions (v=8): microcopy, mobile pills,
   FAQ accordion, score-card footnote, sticky bar,
   <address> footer, link-disabled.
   ───────────────────────────────────────── */

/* CTA microcopy under buttons */
.cta-microcopy {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .02em;
  color: var(--muted);
  margin-top: 14px;
  max-width: 42ch;
}
.cta-microcopy-band {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0;
  color: rgba(244,241,234,.65);
  margin: 16px auto 0;
  text-align: center;
}
.cta-band-alt {
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(244,241,234,.65);
  text-align: center;
}
.cta-band-alt a {
  color: var(--bg);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .25s;
}
.cta-band-alt a:hover { color: var(--sunset-2); }

/* Section CTA pairings (button + microcopy) */
.section-cta { margin-top: 28px; display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.section-cta-text {
  margin-top: 60px;
  text-align: center;
}
.section-cta-text > a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--sunset-2);
  padding-bottom: 4px;
  transition: color .25s;
}
.section-cta-text > a:hover { color: var(--sunset-2); }
.section-cta-text .cta-microcopy { margin: 12px auto 0; max-width: none; }

/* Hero proof pills (mobile-only) */
.hero-proof-mobile {
  display: none;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.proof-pill {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--surface);
  white-space: nowrap;
}
@media (max-width: 880px) {
  .hero-proof-mobile { display: flex; }
}

/* Score-card methodology note */
.score-note {
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--muted);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  line-height: 1.55;
}
.score-note a { color: var(--ink-soft); text-decoration: underline; }

/* FAQ section */
.section-faq { background: var(--bg-tint); padding: 100px 0; }
.section-faq .section-title { margin-bottom: 60px; max-width: 22ch; }
.faq-list {
  max-width: 880px;
  border-top: 1px solid var(--rule);
}
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 4px 0;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 22px 4px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -.005em;
  color: var(--ink);
  list-style: none;
  gap: 24px;
  transition: color .25s;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--sunset-2); }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  position: relative;
  transition: border-color .25s, transform .35s ease;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--ink);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon::before { width: 12px; height: 2px; }
.faq-icon::after  { width: 2px; height: 12px; transition: transform .25s; }
.faq-item[open] .faq-icon { border-color: var(--ink); }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-a {
  padding: 0 4px 24px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  max-width: 70ch;
}
.faq-cta {
  margin-top: 60px;
  text-align: center;
}
.faq-cta .cta-microcopy { margin: 14px auto 0; }
@media (max-width: 600px) {
  .faq-q { font-size: 16px; padding: 18px 4px; }
}

/* Address element in footer */
address.footer-bottom {
  font-style: normal;
}
address.footer-bottom a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
address.footer-bottom a:hover { color: var(--ink); }

/* Disabled legal links until those pages ship */
.link-disabled {
  pointer-events: none;
  opacity: .42;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Mobile sticky CTA bar */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 56px;
  z-index: 50;
  display: flex;
  transform: translateY(100%);
  transition: transform 220ms cubic-bezier(.22,.61,.36,1);
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -8px 28px -10px rgba(10,14,39,.18);
}
.sticky-bar[hidden] { display: flex; } /* override [hidden] when JS removes the attr; we only use display:none via media query */
.sticky-bar.is-visible { transform: translateY(0); }

.sticky-bar__call,
.sticky-bar__book {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  height: 100%;
}
.sticky-bar__call {
  background: var(--ink);
  color: var(--bg);
  border-right: 1px solid rgba(255,255,255,.08);
}
.sticky-bar__call:active { background: var(--ink-soft); }
.sticky-bar__call svg { stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.sticky-bar__book {
  background: var(--grad-sunset);
  color: #fff;
  flex: 1.2;
}
.sticky-bar__book:active { filter: brightness(.92); }

/* Hide the bar on tablet/desktop */
@media (min-width: 720px) {
  .sticky-bar { display: none !important; }
}

/* Reduced motion: no slide, just appear */
@media (prefers-reduced-motion: reduce) {
  .sticky-bar { transition: none; }
}

/* ─────────────────────────────────────────
   Contact section (Cal.com embed + custom form)
   ───────────────────────────────────────── */
.section-contact {
  padding: 100px 0 80px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-tint) 100%);
  position: relative;
  overflow: hidden;
}
.section-contact .section-inner { position: relative; z-index: 1; }
.section-contact .section-title { max-width: 22ch; margin-bottom: 16px; }
.section-contact .section-lede { max-width: 60ch; margin-bottom: 60px; }

/* decorative orbs behind the cards */
.contact-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
  pointer-events: none;
  z-index: 0;
}
.contact-orb--a {
  width: 480px; height: 480px;
  top: 5%; left: -120px;
  background: var(--grad-sunset);
}
.contact-orb--b {
  width: 520px; height: 520px;
  bottom: 0; right: -160px;
  background: linear-gradient(135deg, var(--electric), var(--sky));
}
@media (prefers-reduced-motion: no-preference) {
  .contact-orb { transition: transform 6s ease-in-out; }
  .contact-orb--a { animation: cOrbA 18s ease-in-out infinite; }
  .contact-orb--b { animation: cOrbB 22s ease-in-out infinite; }
  @keyframes cOrbA { 0%,100% { transform: translate(0,0); } 50% { transform: translate(40px, -30px); } }
  @keyframes cOrbB { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-30px, 30px); } }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 28px;
  align-items: stretch;
}
@media (max-width: 920px) { .contact-grid { grid-template-columns: 1fr; gap: 24px; } }

/* ── Cal.com side ── */
.contact-cal {
  position: relative;
  background: var(--surface);
  border-radius: 24px;
  padding: 36px;
  /* gradient outline */
  background-clip: padding-box;
  border: 1px solid transparent;
  box-shadow: 0 30px 80px -30px rgba(10,14,39,.18), 0 0 0 1px var(--rule);
  display: flex; flex-direction: column; gap: 24px;
}
.contact-cal::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--sunset-2) 0%, var(--electric) 50%, var(--sky) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: .35;
  pointer-events: none;
}

.contact-cal-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 24px; flex-wrap: wrap;
}
.ccal-meta { flex: 1; min-width: 220px; }
.ccal-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sunset-2);
  background: rgba(255, 61, 138, .08);
  border: 1px solid rgba(255, 61, 138, .25);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.ccal-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 30px);
  letter-spacing: -.02em;
  line-height: 1.1;
}
.ccal-stats {
  display: grid; grid-auto-flow: column; gap: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .04em;
}
.ccal-stats > div { display: flex; flex-direction: column; gap: 2px; text-align: right; }
.ccal-stats strong {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700;
  color: var(--ink);
  letter-spacing: -.01em;
}
@media (max-width: 600px) {
  .ccal-stats { grid-auto-flow: row; gap: 4px; }
  .ccal-stats > div { flex-direction: row; justify-content: space-between; text-align: left; gap: 8px; }
}

.ccal-agenda {
  list-style: none;
  margin: 0; padding: 0;
  display: grid; gap: 12px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 20px 0;
}
.ccal-agenda li { display: grid; grid-template-columns: 36px 1fr; gap: 14px; align-items: start; }
.ccal-agenda .ccal-step {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--bg);
  background: var(--ink);
  border-radius: 8px;
  padding: 4px 8px;
  text-align: center;
  letter-spacing: .04em;
}
.ccal-agenda li:last-child .ccal-step { background: var(--grad-sunset); }
.ccal-agenda strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 2px;
}
.ccal-agenda div + div, .ccal-agenda li > div { font-size: 13px; line-height: 1.5; color: var(--ink-soft); }

.ccal-embed-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-tint);
  border: 1px solid var(--rule);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.5);
}
#cal-inline {
  background: transparent;
  min-height: 600px;
}
#cal-inline iframe { display: block; border-radius: inherit; }

.ccal-trust {
  background: var(--bg-tint);
  border-radius: 12px;
  padding: 16px 18px;
  border-left: 3px solid var(--sunset-2);
}
.ccal-trust blockquote {
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 6px;
  font-style: italic;
}
.ccal-trust cite {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--muted);
  font-style: normal;
}
.ccal-trust cite strong { color: var(--ink); font-weight: 600; }

/* ── Form side ── */
.contact-form-wrap {
  background: var(--bg-tint);
  border: 1px solid var(--rule);
  border-radius: 24px;
  padding: 32px;
  position: relative;
}
.contact-h {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.01em;
  margin-bottom: 6px;
}
.contact-sub {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--muted);
  margin-bottom: 22px;
}

/* Contact form */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 14px;
}
.cf-field { display: flex; flex-direction: column; gap: 6px; }
.cf-field--full { grid-column: 1 / -1; }
.cf-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.cf-opt {
  text-transform: none;
  letter-spacing: .04em;
  color: var(--muted);
  font-size: 10px;
  margin-left: 4px;
  opacity: .7;
}
.cf-field input,
.cf-field select,
.cf-field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.cf-field textarea { resize: vertical; min-height: 96px; line-height: 1.5; }
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  outline: none;
  border-color: var(--ink-soft);
  box-shadow: 0 0 0 3px rgba(255,61,138,.16);
}
.cf-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.cf-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 6px;
}
.cf-actions .cta-microcopy { margin-top: 4px; }
.cf-actions[data-state="success"] .cta-microcopy { color: var(--ink); font-weight: 500; }
.cf-actions[data-state="error"]   .cta-microcopy { color: #c0432c; }

@media (max-width: 600px) {
  .contact-form { grid-template-columns: 1fr; }
  .contact-cal, .contact-form-wrap { padding: 24px; }
}

/* "A note from Doug" block — pads the form column visually */
.from-doug {
  margin-top: 32px;
  padding-top: 28px;
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  grid-template-areas:
    "photo meta"
    "quote quote";
  column-gap: 16px;
  row-gap: 18px;
  align-items: center;
}
.from-doug::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rule) 20%, var(--rule) 80%, transparent);
}
.from-doug__photo {
  grid-area: photo;
  position: relative;
  width: 64px;
  height: 64px;
}
.from-doug__photo img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background: var(--bg-tint);
  box-shadow: 0 0 0 2px var(--surface), 0 0 0 3px var(--rule);
}
.from-doug__monogram {
  display: none;
  position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--grad-sunset);
  color: #fff;
  align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -.01em;
  box-shadow: 0 0 0 2px var(--surface), 0 0 0 3px var(--rule);
}
.from-doug__photo--fallback .from-doug__monogram { display: flex; }
.from-doug__meta {
  grid-area: meta;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.from-doug__meta strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: -.005em;
}
.from-doug__meta span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--muted);
  text-transform: uppercase;
}
.from-doug__quote {
  grid-area: quote;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  position: relative;
  padding-left: 14px;
  border-left: 2px solid transparent;
  border-image: linear-gradient(180deg, var(--sunset-2), var(--electric)) 1;
}
.from-doug__quote em {
  font-style: italic;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}

/* ─────────────────────────────────────────
   Contact section — v12 overrides
   Replaces orb/glow background with a quiet
   dot-grid on --bg-tint so it reads distinct
   from the hero treatment.
   ───────────────────────────────────────── */
.section-contact {
  background:
    radial-gradient(circle, rgba(10,14,39,.065) 1px, transparent 1px),
    var(--bg-tint);
  background-size: 22px 22px, auto;
}

/* hairline sunset accent across the top of the section */
.section-contact::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-sunset);
  opacity: .55;
}

/* orb elements removed from markup; belt-and-suspenders hide if residual */
.contact-orb { display: none !important; }

@media (max-width: 720px) {
  .section-contact {
    background-size: 18px 18px, auto;
  }
}


/* ─────────────────────────────────────────
   v=13 — Subpage system (services, portfolio, about, contact, book, thank-you, legal)
   ───────────────────────────────────────── */

/* Active nav state */
.nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }

/* Subpage hero */
.subpage-hero {
  padding: 140px 32px 60px;
  position: relative;
  overflow: hidden;
}
.subpage-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--rule) 1px, transparent 1px),
    linear-gradient(90deg, var(--rule) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, black 30%, transparent 70%);
  pointer-events: none;
}
.subpage-hero .section-inner { position: relative; z-index: 1; }
.subpage-h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 22ch;
}
.subpage-lede {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--ink-soft);
  max-width: 60ch;
  margin-bottom: 28px;
  line-height: 1.6;
}
.subpage-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
@media (max-width: 720px) { .subpage-hero { padding: 120px 20px 40px; } }

/* Service rail */
.service-rail-wrap { padding: 16px 32px 0; border-bottom: 1px solid var(--rule); }
.service-rail {
  list-style: none;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 8px 0 16px;
  scrollbar-width: thin;
}
.service-rail li { flex: 0 0 auto; }
.service-rail a {
  display: inline-block;
  padding: 8px 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  border: 1px solid var(--rule);
  border-radius: 999px;
  transition: border-color var(--t), background var(--t), color var(--t);
  white-space: nowrap;
}
.service-rail a:hover { border-color: var(--ink); color: var(--ink); background: var(--surface); }

/* Service blocks */
.service-block { padding: 100px 32px; scroll-margin-top: 80px; }
.service-block--alt { background: var(--bg-tint); }
.service-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px; align-items: start; }
@media (max-width: 880px) {
  .service-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-block { padding: 70px 20px; }
}
.service-title {
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.1;
  margin-bottom: 16px;
  max-width: 22ch;
}
.service-lede {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 56ch;
  line-height: 1.6;
}
.service-sub {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 28px 0 14px;
}
.service-list { list-style: none; display: grid; gap: 12px; margin-bottom: 8px; }
.service-list li {
  padding-left: 20px;
  position: relative;
  color: var(--ink-soft);
  line-height: 1.6;
}
.service-list li::before {
  content: '';
  position: absolute; left: 0; top: 11px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--grad-sunset);
}
.service-list strong { color: var(--ink); font-weight: 600; margin-right: 4px; }
.service-body { color: var(--ink-soft); line-height: 1.65; }

/* Pricing card stack */
.service-card-stack { display: flex; flex-direction: column; gap: 14px; position: sticky; top: 100px; }
@media (max-width: 880px) { .service-card-stack { position: static; } }
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  position: relative;
  transition: transform var(--t), box-shadow var(--t);
}
.pricing-card:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -16px rgba(10,14,39,.16); }
.pricing-card--accent {
  border: 2px solid transparent;
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    var(--grad-sunset) border-box;
}
.pricing-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.pricing-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--ink);
}
.pricing-amt {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pricing-per { font-size: 14px; font-weight: 500; color: var(--muted); -webkit-text-fill-color: var(--muted); }
.pricing-meta { font-size: 13px; color: var(--ink-soft); line-height: 1.5; }
.btn-full { justify-content: center; width: 100%; }

/* Case grid */
.case-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.case-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.case-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -20px rgba(10,14,39,.18);
  border-color: transparent;
}
.case-card__head { display: flex; flex-direction: column; gap: 8px; }
.case-tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sunset-2);
  background: rgba(255, 61, 138, 0.08);
  border: 1px solid rgba(255, 61, 138, 0.22);
  padding: 4px 10px;
  border-radius: 999px;
}
.case-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.case-role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--muted);
  text-transform: uppercase;
}
.case-body { color: var(--ink-soft); font-size: 15px; line-height: 1.6; flex: 1; }
.case-meta {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.case-meta li { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; }
.case-meta span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.case-meta strong { color: var(--ink); font-weight: 600; text-align: right; }

/* Stats grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  margin-top: 40px;
  text-align: center;
}
.stat-cell strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-cell span { font-size: 14px; color: var(--ink-soft); line-height: 1.5; display: block; max-width: 28ch; margin: 0 auto; }

/* Bio grid */
.bio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
  margin-top: 40px;
}
.bio-card { background: var(--surface); border: 1px solid var(--rule); border-radius: var(--radius-lg); padding: 36px; }
.bio-photo { position: relative; width: 160px; height: 160px; margin-bottom: 20px; }
.bio-photo img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background: var(--bg-tint);
  box-shadow: 0 0 0 4px var(--surface), 0 0 0 5px var(--rule);
}
.bio-monogram {
  display: none;
  position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--grad-sunset);
  color: #fff;
  align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 56px;
  letter-spacing: -0.01em;
  box-shadow: 0 0 0 4px var(--surface), 0 0 0 5px var(--rule);
}
.bio-photo--fallback .bio-monogram { display: flex; }
.bio-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  color: var(--ink);
}
.bio-role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.bio-body { color: var(--ink-soft); font-size: 15px; line-height: 1.65; margin-bottom: 14px; }
.bio-body a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.bio-body a:hover { color: var(--sunset-2); }
.bio-creds {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.bio-creds li {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  padding-left: 18px;
  position: relative;
}
.bio-creds li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--sunset-2); font-weight: 700; }

/* Philosophy */
.philosophy-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.5;
  color: var(--ink);
  border-left: 3px solid;
  border-image: linear-gradient(180deg, var(--sunset-2), var(--electric)) 1;
  padding-left: 20px;
  margin-bottom: 24px;
  max-width: 50ch;
}
.philosophy-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 30px 60px -30px rgba(10,14,39,.14);
}
.philosophy-card h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.philosophy-list { list-style: none; display: grid; gap: 16px; }
.philosophy-list li { display: flex; gap: 14px; font-size: 14px; line-height: 1.55; color: var(--ink-soft); }
.philosophy-list .x {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--bg-tint);
  color: var(--sunset-2);
  display: grid; place-items: center;
  font-size: 14px; font-weight: 700;
}
.philosophy-list strong { color: var(--ink); display: block; margin-bottom: 2px; font-weight: 600; }

/* Sister brands */
.sister-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.sister-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.sister-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -16px rgba(10,14,39,.14);
  border-color: transparent;
}
.sister-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.sister-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sunset-2);
}
.sister-body { color: var(--ink-soft); font-size: 14px; line-height: 1.55; flex: 1; }
.sister-link {
  align-self: flex-start;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid var(--sunset-2);
  padding-bottom: 2px;
  transition: color var(--t);
}
.sister-link:hover { color: var(--sunset-2); }

/* Contact strip */
.contact-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.contact-pill {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.contact-pill:hover {
  transform: translateY(-2px);
  border-color: var(--ink);
  box-shadow: 0 10px 24px -12px rgba(10,14,39,.18);
}
.contact-pill--static { cursor: default; }
.contact-pill--static:hover { transform: none; border-color: var(--rule); box-shadow: none; }
.contact-pill__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-pill__value {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}

/* Book page */
.book-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; align-items: start; }
@media (max-width: 980px) { .book-grid { grid-template-columns: 1fr; } }
.book-frame { min-height: 720px; padding: 12px; background: var(--surface); }
.book-side { display: flex; flex-direction: column; gap: 16px; }
.book-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
}
.book-card--quote { background: var(--bg-tint); border-left: 3px solid var(--sunset-2); }
.book-card--quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 8px;
}
.book-card--quote cite {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-style: normal;
}
.book-card--quote cite strong { color: var(--ink); font-weight: 600; }
.book-card__h {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 8px 0 16px;
  color: var(--ink);
}
.book-card__h--small { font-size: 18px; margin-bottom: 12px; }
.book-list { list-style: none; display: grid; gap: 14px; }
.book-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: start;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.book-list .check {
  width: 32px; height: 28px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 8px;
  display: grid; place-items: center;
}
.book-list strong { color: var(--ink); display: block; margin-bottom: 2px; font-weight: 600; }
.book-list-mini { list-style: none; display: grid; gap: 10px; font-size: 14px; color: var(--ink-soft); line-height: 1.5; }
.book-list-mini strong { color: var(--ink); font-weight: 600; }
.book-list-mini a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.book-list-mini a:hover { color: var(--sunset-2); }

/* Thank-you */
.thanks-check {
  width: 80px; height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--grad-sunset);
  color: #fff;
  display: grid; place-items: center;
  font-size: 40px;
  font-weight: 700;
  box-shadow: 0 20px 40px -16px rgba(255,61,138,.5);
  animation: thanksPop .55s cubic-bezier(.34, 1.56, .64, 1) both;
}
@keyframes thanksPop {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) { .thanks-check { animation: none; } }

/* Legal documents */
.legal-doc { padding: 140px 32px 80px; background: var(--bg); }
.legal-inner { max-width: 760px; margin: 0 auto; }
.legal-head { margin-bottom: 40px; }
.legal-crumbs {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.legal-crumbs a {
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--t);
}
.legal-crumbs a:hover { border-bottom-color: var(--ink); color: var(--ink); }
.legal-doc h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 12px;
}
.legal-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
  line-height: 1.6;
}
.legal-callout {
  background: var(--bg-tint);
  border-left: 3px solid var(--sunset-2);
  border-radius: 12px;
  padding: 18px 20px;
  margin: 28px 0 36px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.legal-callout strong { color: var(--ink); font-weight: 600; display: block; margin-bottom: 4px; }
.legal-toc {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 48px;
}
.legal-toc h2 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin: 0 0 12px;
}
.legal-toc ol {
  margin: 0;
  padding-left: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 24px;
  font-size: 13px;
}
@media (max-width: 600px) { .legal-toc ol { grid-template-columns: 1fr; } }
.legal-toc a { color: var(--ink-soft); text-decoration: none; transition: color var(--t); }
.legal-toc a:hover { color: var(--sunset-2); }
.legal-doc section { padding: 0; margin-bottom: 32px; scroll-margin-top: 100px; }
.legal-doc h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 14px;
}
.legal-doc h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 18px 0 8px;
}
.legal-doc p, .legal-doc li { font-size: 15px; line-height: 1.7; color: var(--ink-soft); }
.legal-doc p { margin-bottom: 14px; }
.legal-doc ul { padding-left: 20px; margin-bottom: 14px; display: grid; gap: 6px; }
.legal-doc a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t);
}
.legal-doc a:hover { color: var(--sunset-2); }
.legal-doc strong { color: var(--ink); font-weight: 600; }
.legal-doc em { font-style: italic; color: var(--ink); }
.legal-address {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
  background: var(--bg-tint);
  padding: 18px 22px;
  border-radius: 12px;
  display: inline-block;
}
.legal-back {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-family: var(--font-mono);
  font-size: 13px;
}
.legal-back a { color: var(--ink-soft); text-decoration: none; }
.legal-back a:hover { color: var(--ink); }
@media (max-width: 720px) { .legal-doc { padding: 120px 20px 60px; } }

/* Mobile menu — replaces vanished nav links on <720px */
@media (max-width: 720px) {
  .nav-links {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    background: rgba(251, 251, 253, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 49;
    transform: translateY(-100%);
    transition: transform var(--t);
    padding-top: 60px;
    pointer-events: none;
  }
  body.nav-open .nav-links { transform: translateY(0); pointer-events: auto; }
  .nav-links a { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--ink); }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    margin-left: 12px;
    border: 0;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    padding: 0;
    z-index: 51;
    position: relative;
  }
  .nav-toggle span,
  .nav-toggle span::before,
  .nav-toggle span::after {
    content: '';
    display: block;
    width: 22px; height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform var(--t), opacity var(--t), background var(--t);
  }
  .nav-toggle span { position: relative; }
  .nav-toggle span::before { position: absolute; top: -7px; left: 0; }
  .nav-toggle span::after { position: absolute; top: 7px; left: 0; }
  body.nav-open .nav-toggle span { background: transparent; }
  body.nav-open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span::after  { transform: translateY(-7px) rotate(-45deg); }
}
@media (min-width: 721px) {
  .nav-toggle { display: none; }
}

/* ─────────────────────────────────────────
   v=14 — Placeholder screenshots
   ───────────────────────────────────────── */

/* Case-card screenshot (portfolio cards) — bleeds to card edges */
.case-card { padding: 0; overflow: hidden; }
.case-card .case-shot {
  aspect-ratio: 16 / 10;
  background: var(--bg-tint);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  position: relative;
  margin: 0;
}
.case-card .case-shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s cubic-bezier(.22,.61,.36,1);
}
.case-card:hover .case-shot img { transform: scale(1.04); }
.case-card .case-card__head,
.case-card .case-body,
.case-card .case-meta { padding-left: 28px; padding-right: 28px; }
.case-card .case-card__head { padding-top: 22px; }
.case-card .case-meta { padding-bottom: 24px; }
a.case-shot { display: block; text-decoration: none; color: inherit; }
a.case-shot:focus-visible { outline: 2px solid var(--sky); outline-offset: 2px; }

/* Service-page large mockup */
.service-shot {
  margin-top: 32px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-tint);
  border: 1px solid var(--rule);
  box-shadow: 0 30px 80px -30px rgba(10,14,39,.25);
  position: relative;
}
.service-shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-shot::after {
  content: "PLACEHOLDER · screenshot coming";
  position: absolute; bottom: 12px; right: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--bg);
  background: rgba(10,14,39,.7);
  padding: 5px 10px;
  border-radius: 999px;
  pointer-events: none;
}

/* Homepage "selected work" strip */
.shot-strip-wrap { padding: 80px 32px 0; }
.shot-strip-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}
.shot-strip-head h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}
.shot-strip-head a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
  transition: color var(--t), border-color var(--t);
}
.shot-strip-head a:hover { color: var(--sunset-2); border-color: var(--sunset-2); }
.shot-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 980px) { .shot-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .shot-strip { grid-template-columns: 1fr; } }
.shot-strip figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-tint);
  border: 1px solid var(--rule);
  position: relative;
  transition: transform var(--t), box-shadow var(--t);
}
.shot-strip figure:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -16px rgba(10,14,39,.18);
}
.shot-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.shot-strip figcaption {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--muted);
  padding: 10px 12px;
  border-top: 1px solid var(--rule);
  background: var(--surface);
}
.shot-strip figcaption strong { color: var(--ink); font-weight: 600; display: block; margin-bottom: 2px; font-family: var(--font-display); font-size: 13px; letter-spacing: -0.005em; text-transform: none; }

/* Sister-sites cross-link row (footer) */
.sister-sites { font-size: 12px; opacity: 0.55; margin: 0 0 10px; letter-spacing: 0.01em; }
.sister-sites a { color: inherit; text-decoration: none; border-bottom: 1px dotted currentColor; }
.sister-sites a:hover { opacity: 1; }
