/* ============================================================
   Developable v3 — Main stylesheet (Fleet-aligned)
   ============================================================ */

@import url('tokens.css');
@import url('fonts.css');

/* ---------- View Transitions: keep the typeset, fade page bodies ---------- */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: 220ms ease-in both vt-fade-out; }
::view-transition-new(root) { animation: 320ms cubic-bezier(.22,1,.36,1) both vt-fade-in; }
@keyframes vt-fade-out { to { opacity: 0; } }
@keyframes vt-fade-in  { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--t-base);
  font-feature-settings: "ss01","cv11";
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  background-image:
    radial-gradient(rgba(22,36,71,.014) 1px, transparent 1px);
  background-size: 6px 6px;
  background-position: 0 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
hr { border: 0; height: 1px; background: var(--paper-edge); margin: var(--s-8) 0; }
::selection { background: var(--indigo); color: #fff; }

/* ---------- Type ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(46px, 7vw, var(--t-5xl)); line-height: 1.02; font-variation-settings: "opsz" 144, "SOFT" 30; }
h2 { font-size: clamp(34px, 5vw, var(--t-3xl)); line-height: 1.08; font-variation-settings: "opsz" 110, "SOFT" 30; }
h3 { font-size: clamp(22px, 2.5vw, var(--t-xl)); line-height: 1.18; font-variation-settings: "opsz" 48, "SOFT" 50; }
h4 { font-size: var(--t-md); line-height: 1.3; }

p { margin: 0 0 1em; max-width: 64ch; }
strong { font-weight: 600; color: var(--ink); }
em { font-style: italic; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
}
.eyebrow::before {
  content: '';
  width: 18px;
  height: 1px;
  background: currentColor;
  opacity: .6;
}
.section-no {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  color: var(--indigo);
  text-transform: uppercase;
}

.accent { color: var(--indigo); font-style: italic; font-family: var(--font-serif); }
.mark   { background: linear-gradient(transparent 62%, rgba(74,87,224,.22) 62%); padding: 0 .08em; }
em.product, .product { color: var(--indigo); font-style: italic; font-family: var(--font-serif); }

a.link-arrow {
  font-family: var(--font-mono);
  font-size: var(--t-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--paper-edge);
  padding-bottom: 6px;
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  transition: color var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out), gap var(--dur) var(--ease-out);
}
a.link-arrow::after {
  content: '→';
  display: inline-block;
  transition: transform var(--dur) var(--ease-out);
}
a.link-arrow:hover { color: var(--indigo); border-color: var(--indigo); gap: var(--s-4); }
a.link-arrow:hover::after { transform: translateX(4px); }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--wrap-max); margin-inline: auto; padding-inline: clamp(20px, 4vw, 40px); }
.column { max-width: var(--column); }
.flex-row { display: flex; flex-wrap: wrap; gap: var(--s-4) var(--s-5); align-items: center; }
.mt-4 { margin-top: var(--s-4); }
.mt-5 { margin-top: var(--s-5); }
.mt-6 { margin-top: var(--s-6); }
.mt-7 { margin-top: var(--s-7); }
.mt-8 { margin-top: var(--s-8); }
.pt-6 { padding-top: var(--s-6); }
.pb-6 { padding-bottom: var(--s-6); }
.nowrap { white-space: nowrap; }
.measure-60 { max-width: 60ch; }
.product-comma { color: var(--ink); font-style: normal; }
.about-h1 { font-size: clamp(40px, 5.4vw, 80px); max-width: 18ch; }
.lede-display { font-family: var(--font-display); font-weight: 300; max-width: 50ch; }
.fleet-points.fleet-points--single { grid-template-columns: 1fr; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
/* Keyboard focus: explicit high-contrast indicator (site commits to WCAG 2.1 AA) */
:focus-visible { outline: 3px solid var(--indigo); outline-offset: 2px; }
/* Skip link: clipped until focused, then pinned on-screen */
.visually-hidden:focus { position: fixed; top: 12px; left: 12px; width: auto; height: auto; margin: 0; padding: 10px 16px; overflow: visible; clip: auto; white-space: nowrap; background: var(--ink); color: var(--paper); border-radius: 8px; z-index: 1000; }

section { padding-block: clamp(72px, 10vw, var(--s-10)); }
section + section { border-top: 1px solid var(--paper-edge); }
.section-paper-deep { background: var(--paper-deep); }
.section-ink { background: var(--ink); color: var(--paper); }
.section-ink h1, .section-ink h2, .section-ink h3 { color: var(--paper); }
.section-ink .eyebrow, .section-ink .section-no { color: rgba(247,248,252,.55); }

.section-header { display: flex; flex-direction: column; gap: var(--s-3); margin-bottom: var(--s-8); }
.section-header .head-line { display: flex; align-items: baseline; gap: var(--s-5); }

/* ---------- Cloud-mark section divider ---------- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-4);
  margin-block: var(--s-4);
  color: var(--indigo);
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--paper-edge) 30%, var(--paper-edge) 70%, transparent);
  max-width: 240px;
}
.divider svg { width: 26px; height: auto; }

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(247,248,252,0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease-out), background var(--dur) var(--ease-out);
}
.site-nav.is-scrolled { border-bottom-color: var(--paper-edge); }
.nav-inner {
  display: flex;
  align-items: center;
  gap: var(--s-6);
  padding-block: var(--s-4);
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Stack Sans Notch', var(--font-display);
  font-size: var(--t-md);
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ink);
  line-height: 1;
  flex-shrink: 0;
  transition: color var(--dur) var(--ease-out);
}
.nav-brand .mark-glyph {
  width: 24px;
  height: 24px;
  color: var(--indigo);
  transition: transform var(--dur-slow) var(--ease-out);
}
.nav-brand:hover .mark-glyph { transform: rotate(-6deg) scale(1.04); }
.nav-brand .brand-dot { color: #5864ff; } /* vivid blue logo accent (logo text is AA-exempt) */
.nav-brand small {
  display: none;
  font-family: var(--font-mono);
  font-size: inherit;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--ink-quiet);
  margin-left: 1px;
}
@media (min-width: 720px) { .nav-brand small { display: inline; } }

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: var(--s-6);
  margin: 0 auto 0 var(--s-5);
  padding: 0;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  padding: 6px 2px;
  position: relative;
  transition: color var(--dur) var(--ease-out);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--indigo); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--indigo);
  border-radius: 1px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 10px 18px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.nav-cta::after { content: '→'; transition: transform var(--dur) var(--ease-out); }
.nav-cta:hover { background: var(--indigo); }
.nav-cta:hover::after { transform: translateX(3px); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 42px;
  height: 42px;
  position: relative;
  cursor: pointer;
}
.nav-toggle span {
  position: absolute;
  left: 10px;
  height: 1.5px;
  width: 22px;
  background: var(--ink);
  transition: transform var(--dur) var(--ease-out), opacity var(--dur) var(--ease-out);
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--t-sm);
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--dur) var(--ease-out), color var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out), transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.btn-primary { background: var(--indigo); color: #fff; }
.btn-primary:hover { background: var(--indigo-deep); box-shadow: var(--shadow-glow); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-paper { background: var(--paper); color: var(--ink); }
.btn-paper:hover { background: #fff; }
.btn svg { width: 14px; height: 14px; transition: transform var(--dur) var(--ease-out); }
.btn:hover svg { transform: translateX(3px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-block: clamp(80px, 12vw, 160px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  pointer-events: none;
  top: -30%;
  right: -10%;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(74,87,224,.08), transparent 60%);
  filter: blur(40px);
  z-index: 0;
}
.hero > .wrap { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
}
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero h1 .word { display: inline-block; opacity: 0; transform: translateY(28px); filter: blur(6px); }
.hero h1 .word.is-in { animation: word-rise 800ms var(--ease-out) forwards; }
@keyframes word-rise { to { opacity: 1; transform: none; filter: none; } }

.hero-sub {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(20px, 2.2vw, 26px);
  font-variation-settings: "opsz" 36, "SOFT" 50;
  line-height: 1.35;
  color: var(--ink-soft);
  max-width: 38ch;
  margin-top: var(--s-6);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  margin-top: var(--s-7);
}
.hero-credentials {
  margin-top: var(--s-7);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--s-5) var(--s-6);
  padding-top: var(--s-6);
  border-top: 1px solid var(--paper-edge);
}
.cred-item { display: flex; flex-direction: column; gap: 4px; }
.cred-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-quiet);
}
.cred-value { font-size: var(--t-sm); color: var(--ink); }

/* hero panel right: stylised Fleet card */
.hero-panel {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 32px);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transform: rotate(-1.2deg);
  transition: transform var(--dur-slow) var(--ease-out);
}
.hero-panel:hover { transform: rotate(0); }
.hero-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(74,87,224,.22), transparent 45%);
  pointer-events: none;
}
.hero-panel .panel-tag {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,248,252,.55);
  display: flex;
  align-items: center;
  gap: var(--s-2);
}
.hero-panel .panel-tag .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--indigo); box-shadow: 0 0 0 4px rgba(74,87,224,.18);
}
.hero-panel h3 {
  font-size: var(--t-2xl);
  color: var(--paper);
  margin-top: var(--s-3);
  line-height: 1.1;
  font-variation-settings: "opsz" 60, "SOFT" 30;
}
.hero-panel .tenants {
  margin-top: var(--s-6);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.hero-panel .tenant {
  border: 1px solid rgba(247,248,252,.12);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(247,248,252,.78);
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(255,255,255,.02);
}
.hero-panel .tenant .row1 { display: flex; justify-content: space-between; gap: 8px; }
.hero-panel .tenant .bar { height: 3px; border-radius: 2px; background: linear-gradient(90deg, var(--indigo), #8b97ff); width: 70%; }
.hero-panel .tenant:nth-child(2) .bar { width: 92%; background: linear-gradient(90deg, var(--indigo-deep), var(--indigo)); }
.hero-panel .tenant:nth-child(3) .bar { width: 44%; }
.hero-panel .tenant:nth-child(5) .bar { width: 81%; }
.hero-panel .tenant:nth-child(6) .bar { width: 38%; }

.hero-panel .panel-foot {
  margin-top: var(--s-6);
  padding-top: var(--s-4);
  border-top: 1px solid rgba(247,248,252,.10);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,248,252,.6);
}

/* ============================================================
   FLEET FEATURE SECTION
   ============================================================ */
.fleet-feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 920px) { .fleet-feature { grid-template-columns: 1fr; } }
.fleet-feature .fleet-meta {
  position: sticky;
  top: 96px;
}
.fleet-feature h2 .underline { background: linear-gradient(transparent 64%, rgba(74,87,224,.30) 64%); padding: 0 .08em; }
.fleet-feature .lede {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--t-xl);
  line-height: 1.32;
  color: var(--ink-soft);
  margin-top: var(--s-5);
  max-width: 36ch;
}
.fleet-points { list-style: none; padding: 0; margin: var(--s-6) 0; display: grid; gap: var(--s-5); }
.fleet-points li {
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: baseline;
  gap: var(--s-4);
  padding-bottom: var(--s-5);
  border-bottom: 1px solid var(--paper-edge);
}
.fleet-points li:last-child { border-bottom: 0; }
.fleet-points .num {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  color: var(--indigo);
}
.fleet-points h4 {
  font-family: var(--font-display);
  font-size: var(--t-lg);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 4px;
}
.fleet-points p { font-size: var(--t-sm); color: var(--ink-soft); margin: 0; max-width: 50ch; }

/* ============================================================
   SERVICES (homepage preview + services page)
   ============================================================ */
.services-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--ink);
}
.service-block {
  display: grid;
  grid-template-columns: 0.7fr 1.4fr;
  gap: clamp(20px, 4vw, 80px);
  padding-block: clamp(40px, 5vw, 56px);
  border-bottom: 1px solid var(--paper-edge);
  align-items: start;
  transition: background var(--dur) var(--ease-out);
  position: relative;
}
.service-block:hover { background: rgba(255,255,255,.4); }
@media (max-width: 760px) { .service-block { grid-template-columns: 1fr; gap: var(--s-4); } }
.service-block .num {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  color: var(--indigo);
  text-transform: uppercase;
}
.service-block h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.1;
  margin-top: var(--s-3);
  font-variation-settings: "opsz" 64, "SOFT" 40;
}
.service-block p { color: var(--ink-soft); max-width: 60ch; }
.service-block ul {
  list-style: none;
  padding: 0;
  margin: var(--s-5) 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s-2) var(--s-5);
}
.service-block ul li {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.04em;
  color: var(--ink-quiet);
  padding-left: 14px;
  position: relative;
}
.service-block ul li::before { content: '·'; position: absolute; left: 4px; color: var(--indigo); }

/* ============================================================
   WORK
   ============================================================ */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--s-6);
}
.work-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,.4);
  border: 1px solid var(--paper-edge);
  border-radius: var(--radius);
  padding: clamp(20px, 2.5vw, 32px);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.work-card::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, transparent 70%, var(--indigo) 130%);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease-out);
}
.work-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: var(--indigo); }
.work-card:hover::after { opacity: .08; }
.work-card .work-meta {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  display: flex;
  gap: var(--s-5);
  margin-bottom: var(--s-5);
}
.work-card h3 {
  font-size: var(--t-2xl);
  line-height: 1.05;
  font-weight: 400;
  font-variation-settings: "opsz" 60, "SOFT" 30;
}
.work-card p { color: var(--ink-soft); margin: var(--s-3) 0 var(--s-5); }
.work-thumb {
  margin-top: auto;
  padding: var(--s-5);
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.work-thumb::after { content: '↗'; opacity: .6; }
/* Non-clickable card (prototype / no live URL) */
.work-card--static { cursor: default; }
.work-card--static:hover { transform: none; box-shadow: none; border-color: var(--paper-edge); }
.work-card--static:hover::after { opacity: 0; }
.work-card--static .work-thumb { background: var(--paper-deep); color: var(--ink-quiet); }
.work-card--static .work-thumb::after { content: ''; }

/* ============================================================
   ABOUT - founder bio with sticky credential rail
   ============================================================ */
.about-intro {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 920px) {
  .about-intro { grid-template-columns: 1fr; }
  .about-intro .portrait { max-width: 280px; }
}
.portrait img {
  width: 100%;
  height: auto;
  border-radius: 2px;
  filter: grayscale(.18) contrast(1.04);
  box-shadow: var(--shadow-card);
}
.bio {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(40px, 6vw, 96px);
}
@media (max-width: 920px) { .bio { grid-template-columns: 1fr; } }
.bio aside {
  position: sticky;
  top: 96px;
  align-self: start;
  font-size: var(--t-sm);
  border-left: 1px solid var(--paper-edge);
  padding-left: var(--s-5);
}
.bio aside h4 {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  font-weight: 500;
}
.bio aside ul { list-style: none; padding: 0; margin: var(--s-3) 0 0; display: grid; gap: 8px; }
.bio aside li { color: var(--ink-soft); }
.bio aside a { border-bottom: 1px solid var(--paper-edge); transition: color var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out); }
.bio aside a:hover { color: var(--indigo); border-color: var(--indigo); }
.bio article h3 {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 400;
  margin-top: var(--s-7);
  font-variation-settings: "opsz" 60, "SOFT" 40;
}
.bio article h3:first-child { margin-top: 0; }
.bio article p { color: var(--ink-soft); line-height: 1.65; }
.bio article p.drop-cap::first-letter {
  font-family: var(--font-display);
  font-size: 5em;
  float: left;
  line-height: 0.84;
  padding: 6px 10px 0 0;
  color: var(--indigo);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.pull-quote {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--t-2xl);
  line-height: 1.2;
  color: var(--ink);
  border-left: 3px solid var(--indigo);
  padding: var(--s-3) 0 var(--s-3) var(--s-5);
  margin: var(--s-6) 0;
  font-variation-settings: "opsz" 96, "SOFT" 50;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(74,87,224,.28), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(74,87,224,.16), transparent 60%);
  pointer-events: none;
}
.cta-band > .wrap { position: relative; z-index: 1; max-width: 920px; }
.cta-band h2 { color: var(--paper); font-size: clamp(34px, 5vw, 58px); line-height: 1.06; font-variation-settings: "opsz" 110, "SOFT" 30; }
.cta-band h2 em { color: var(--indigo); }
.cta-band p { color: rgba(247,248,252,.7); max-width: 60ch; margin-top: var(--s-5); font-size: var(--t-md); }
.cta-band .eyebrow { color: rgba(247,248,252,.55); }
.cta-band .eyebrow::before { background: currentColor; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding-block: var(--s-9) var(--s-7);
  background: var(--paper);
  border-top: 1px solid var(--paper-edge);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: var(--s-7);
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid.footer-grid--wide { grid-template-columns: 1.4fr repeat(4, 1fr); }
@media (max-width: 760px) { .footer-grid.footer-grid--wide { grid-template-columns: 1fr 1fr; } }
.footer-brand .nav-brand { font-size: var(--t-lg); margin-bottom: var(--s-4); }
.footer-brand p { color: var(--ink-quiet); font-size: var(--t-sm); max-width: 36ch; }
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  margin: 0 0 var(--s-4);
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-col a { color: var(--ink-soft); font-size: var(--t-sm); transition: color var(--dur) var(--ease-out); }
.footer-col a:hover { color: var(--indigo); }

.footer-bottom {
  margin-top: var(--s-9);
  padding-top: var(--s-5);
  border-top: 1px solid var(--paper-edge);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4) var(--s-6);
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.08em;
  color: var(--ink-quiet);
  text-transform: uppercase;
}
.footer-reg {
  flex-basis: 100%;
  text-transform: none;
  letter-spacing: 0.01em;
  color: var(--ink-quiet);
}

/* Legal / long-form content pages (privacy, terms, accessibility) */
.legal { max-width: 74ch; }
.legal > :first-child { margin-top: 0; }
.legal h2 { margin-top: var(--s-7); }
.legal h3 { margin-top: var(--s-6); }
.legal p { margin-top: var(--s-4); color: var(--ink-soft); }
.legal ul { margin-top: var(--s-4); padding-left: 1.2em; display: grid; gap: 8px; color: var(--ink-soft); }
.legal a { color: var(--indigo); text-decoration: underline; }
.legal .muted { color: var(--ink-quiet); font-size: var(--t-sm); }
.footer-mark {
  font-size: clamp(80px, 14vw, 180px);
  font-family: "Stack Sans Notch", var(--font-display);
  font-weight: 600;
  line-height: .85;
  color: transparent;
  -webkit-text-stroke: 1px var(--paper-edge);
  margin: var(--s-9) 0 var(--s-7);
  letter-spacing: -0.04em;
  text-align: left;
}

/* ============================================================
   REVEAL ANIMATIONS (intersection observer applies .is-in)
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero h1 .word { opacity: 1; transform: none; filter: none; animation: none; }
  ::view-transition-old(root), ::view-transition-new(root) { animation: none; }
}

/* ============================================================
   PRINCIPLES + "BACKED BY" SLIDESHOW (services.html)
   Static logo grid by default / no-JS / reduced-motion;
   site.js upgrades to a crossfade slideshow when motion is allowed.
   ============================================================ */
.principles-layout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: var(--s-8); align-items: start; }
.principles-layout .trustedby { align-self: center; }
@media (max-width: 860px) { .principles-layout { grid-template-columns: 1fr; } }

.trustedby-label { font-size: var(--t-sm); margin: 0 0 var(--s-4); }
.trustedby-track { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-4); }
.trustedby-slide { display: flex; align-items: center; justify-content: center; padding: var(--s-4); min-height: 96px; background: #fff; border: 1px solid var(--paper-edge); border-radius: var(--radius); }
.trustedby-slide img { max-width: 100%; max-height: 64px; width: auto; height: auto; object-fit: contain; }
.trustedby-slide--dark { background: var(--ink); }

.trustedby.is-slideshow .trustedby-track { display: block; position: relative; min-height: 240px; }
.trustedby.is-slideshow .trustedby-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 300ms linear; }
.trustedby.is-slideshow .trustedby-slide.is-active { opacity: 1; transition: opacity 300ms var(--ease-out) 300ms; }
.trustedby.is-slideshow .trustedby-slide img { max-height: 185px; }
.trustedby-slide a { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.trustedby-slide a img { transition: opacity .2s var(--ease-out); }
.trustedby-slide a:hover img { opacity: .65; }
.trustedby.is-slideshow .trustedby-slide { pointer-events: none; }
.trustedby.is-slideshow .trustedby-slide.is-active { pointer-events: auto; }

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 64px 0 0;
    background: var(--paper);
    margin: 0;
    padding: var(--s-7) var(--s-5);
    gap: var(--s-4);
    align-items: flex-start;
    z-index: 50;
  }
  .nav-links.is-open a {
    font-family: var(--font-display);
    font-size: var(--t-2xl);
    text-transform: none;
    letter-spacing: -0.01em;
    color: var(--ink);
  }
  .nav-links.is-open .nav-cta-mobile {
    display: inline-flex;
    margin-top: var(--s-6);
  }
}

/* ============================================================
   PAGE HEAD (interior pages)
   ============================================================ */
.page-head {
  padding-block: clamp(64px, 10vw, 130px) clamp(40px, 6vw, 80px);
  background: linear-gradient(to bottom, var(--paper-deep), var(--paper));
  border-bottom: 1px solid var(--paper-edge);
}
.page-head h1 { font-size: clamp(44px, 7vw, 96px); line-height: 1; font-variation-settings: "opsz" 144, "SOFT" 30; }
.page-head .lede {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.3;
  color: var(--ink-soft);
  max-width: 40ch;
  margin-top: var(--s-5);
  font-variation-settings: "opsz" 36, "SOFT" 50;
}

.footer-mark .brand-dot { color: #5864ff; -webkit-text-stroke: 0; }

/* Offer / feature cards (york landing) */
.offer-card { background: rgba(255,255,255,.4); border: 1px solid var(--paper-edge); border-radius: var(--radius); padding: clamp(20px, 2.5vw, 28px); }
.offer-card h3 { font-size: var(--t-xl); line-height: 1.12; font-weight: 400; font-variation-settings: "opsz" 48, "SOFT" 30; color: var(--indigo); }
.offer-card p { color: var(--ink-soft); margin-top: var(--s-3); }

/* FAQ (homepage) - open Q&A, hairline-separated */
.faq-list { display: flex; flex-direction: column; }
.faq-item { padding: var(--s-6) 0; border-top: 1px solid var(--paper-edge); }
.faq-item:first-child { border-top: none; padding-top: 0; }
.faq-item h2, .faq-item h3 { font-weight: 500; }
.faq-item p { color: var(--ink-quiet); max-width: 64ch; margin-top: var(--s-4); }
