@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..700;1,9..144,300..700&family=Inter+Tight:wght@300;400;500;600&display=swap');

:root {
  --ink: #0a0a0a;
  --ink-soft: #0f1628;
  --paper: #f5f7fc;
  --bone: #e3eaf5;
  --accent: #1a5fd4;
  --accent-bright: #6eb5ff;
  --accent-deep: #0d2d6b;
  --text-inverse: #f5f7fc;
  --text-muted: #9a9a9a;
  --text-soft: #6b6b6b;
  --line: rgba(245, 247, 252, 0.12);
  --line-paper: rgba(15, 15, 15, 0.1);

  --font-display: 'Fraunces', serif;
  --font-body: 'Inter Tight', system-ui, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.25, 1, 0.5, 1);

  --container: 1320px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(1200px 700px at 15% -10%, rgba(110, 181, 255, 0.16), transparent 60%),
    radial-gradient(900px 600px at 85% 0%, rgba(26, 95, 212, 0.14), transparent 55%),
    linear-gradient(180deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: var(--text-inverse);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: none;
}

body.is-menu-open {
  overflow: hidden;
}

button {
  background: none;
  border: none;
  font-family: inherit;
  cursor: none;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: none;
}

/* ─── CUSTOM CURSOR ─── */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

.cursor-dot {
  width: 5px;
  height: 5px;
  background: var(--paper);
  transition: width 0.2s var(--ease-smooth), height 0.2s var(--ease-smooth);
}

.cursor-ring {
  width: 28px;
  height: 28px;
  border: 1px solid var(--paper);
  transition: width 0.4s var(--ease), height 0.4s var(--ease), transform 0.1s var(--ease-smooth);
}

.cursor-ring.is-hover {
  width: 52px;
  height: 52px;
  border-color: var(--accent);
}

.cursor-dot.is-hover {
  width: 0;
  height: 0;
}

@media (max-width: 968px) {
  .cursor-dot, .cursor-ring { display: none; }
  body, button, a { cursor: auto; }
}

/* ─── GRAIN ─── */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.eyebrow .dash {
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.section--paper .eyebrow { color: var(--text-soft); }

.italic {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.accent { color: var(--accent); }

/* ─── LAYOUT ─── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

section {
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.section--ink { background: var(--ink); color: var(--text-inverse); }
.section--paper { background: var(--paper); color: var(--ink); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: color 0.4s var(--ease-smooth);
  white-space: nowrap;
}

.btn::before, .btn::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  transition: transform 0.5s var(--ease);
}

.btn::before { background: var(--paper); transform: translateY(0); }
.btn::after { background: var(--accent); transform: translateY(101%); }

.btn:hover::before { transform: translateY(-101%); }
.btn:hover::after { transform: translateY(0); }

.btn--primary::before,
.btn--primary::after,
.btn--ghost::before,
.btn--ghost::after {
  display: none;
}

.btn--primary {
  background: #1a5fd4;
  color: #fff;
  border-color: transparent;
  transition: background 0.35s var(--ease-smooth), color 0.35s var(--ease-smooth);
}

.btn--primary:hover {
  background: #6eb5ff;
  color: #fff;
}

.btn--ghost {
  border: 1px solid #1a5fd4;
  color: #1a5fd4;
  background: transparent;
  transition: border-color 0.35s var(--ease-smooth), color 0.35s var(--ease-smooth);
}

.btn--ghost:hover {
  border-color: #6eb5ff;
  color: #6eb5ff;
}

.btn .arrow {
  display: inline-block;
  transition: transform 0.4s var(--ease-smooth);
}

.btn:hover .arrow { transform: translateX(3px); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.25rem;
  transition: color 0.3s, gap 0.3s var(--ease-smooth);
}

.text-link:hover { color: var(--accent); gap: 0.875rem; }

/* ─── NAV ─── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.4rem clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s var(--ease-smooth), backdrop-filter 0.5s, padding 0.4s var(--ease-smooth), border-color 0.5s;
  border-bottom: 1px solid transparent;
}

.site-nav.is-scrolled {
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  padding: 0.85rem clamp(1.5rem, 4vw, 3rem);
  border-bottom-color: var(--line);
}

.nav-wordmark {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-mark {
  display: block;
  height: 32px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a:not(.btn) {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s;
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.4s var(--ease-smooth);
}

.nav-links a:not(.btn):hover { color: var(--paper); }
.nav-links a:not(.btn):hover::after { width: 100%; }

.nav-cta { padding: 0.7rem 1.1rem; font-size: 0.7rem; }

.nav-hamburger {
  display: none;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 1100;
}

.nav-hamburger span {
  position: absolute;
  left: 6px;
  right: 6px;
  height: 1px;
  background: var(--paper);
  transition: transform 0.4s var(--ease), opacity 0.3s;
}

.nav-hamburger span:nth-child(1) { top: 12px; }
.nav-hamburger span:nth-child(2) { top: 20px; }

body.is-menu-open .nav-hamburger span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}
body.is-menu-open .nav-hamburger span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 6vw, 4rem);
  transform: translateY(-100%);
  transition: transform 0.7s var(--ease);
}

body.is-menu-open .mobile-menu { transform: translateY(0); }

.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-menu-links a {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 9vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--paper);
  transition: color 0.4s;
}

.mobile-menu-links a:hover { color: var(--accent); }

.mobile-menu-footer {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 868px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
}

/* ════════════════════════════════════════════════
   HERO — small, precise, institutional
   ════════════════════════════════════════════════ */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: clamp(8rem, 14vw, 12rem) 0 clamp(4rem, 8vw, 8rem);
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(26, 95, 212, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(110, 181, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
}

.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.hero-meta {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-meta .dot {
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2.4s var(--ease) infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.5rem, 7.5vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin-bottom: clamp(2rem, 3.5vw, 3rem);
  max-width: 20ch;
}

.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line-inner {
  display: block;
  transform: translateY(110%);
  animation: rise 1.1s var(--ease) forwards;
}

.hero h1 .line:nth-child(1) .line-inner { animation-delay: 0.1s; }
.hero h1 .line:nth-child(2) .line-inner { animation-delay: 0.22s; }

@keyframes rise {
  to { transform: translateY(0); }
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  margin-top: clamp(2rem, 3vw, 3rem);
  opacity: 0;
  animation: fadeIn 1s var(--ease-smooth) 0.6s forwards;
}

@keyframes fadeIn { to { opacity: 1; } }

.hero-lede {
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 44ch;
  font-weight: 300;
}

@media (max-width: 768px) {
  .hero-bottom { grid-template-columns: 1fr; }
}

.hero-side {
  position: absolute;
  right: clamp(1rem, 3vw, 2rem);
  bottom: 2rem;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-soft);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

@media (max-width: 968px) {
  .hero-side { display: none; }
}

/* ════════════════════════════════════════════════
   CLIENT STRIP (Marquee of real names)
   ════════════════════════════════════════════════ */
.client-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
  overflow: hidden;
  background: var(--ink);
}

.client-strip-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding-left: 4rem;
}

.client-strip-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-soft);
  white-space: nowrap;
  flex-shrink: 0;
}

.client-marquee {
  overflow: hidden;
  flex: 1;
}

.client-marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: scroll 45s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  letter-spacing: -0.01em;
  color: var(--text-muted);
}

.client-marquee-track .item {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
}

.client-marquee-track .sep {
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════
   PROOF — 3 stat tiles
   ════════════════════════════════════════════════ */
.proof {
  padding: clamp(5rem, 9vw, 9rem) 0;
}

.proof-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.proof-head h2 {
  font-size: clamp(2rem, 4.5vw, 4rem);
  max-width: 18ch;
  line-height: 1;
}

.proof-head h2 em {
  font-style: italic;
  color: var(--accent);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-tile {
  background: var(--ink);
  padding: clamp(2rem, 3vw, 2.75rem);
  position: relative;
  overflow: hidden;
  transition: background 0.5s var(--ease-smooth);
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.proof-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 0%, rgba(26, 95, 212, 0.06) 100%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-smooth);
}

.proof-tile:hover::before { opacity: 1; }

.proof-tile-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.proof-tile-eyebrow .num {
  color: var(--accent);
  margin-right: 0.5rem;
}

.proof-stat {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin-bottom: 0.5rem;
  font-weight: 400;
  font-variation-settings: "opsz" 144;
}

.proof-stat em {
  font-style: italic;
  color: var(--accent);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.proof-stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: auto;
  padding-bottom: 2rem;
}

.proof-tile-meta {
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.proof-tile-meta strong {
  display: block;
  color: var(--paper);
  font-weight: 500;
  margin-bottom: 0.15rem;
}

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

/* ════════════════════════════════════════════════
   PRINCIPLES (Why us — 3 bullets)
   ════════════════════════════════════════════════ */
.principles {
  padding: clamp(5rem, 9vw, 9rem) 0;
}

.principles-head {
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.principles-head h2 {
  font-size: clamp(2rem, 4.5vw, 4rem);
  max-width: 22ch;
  margin-top: 1.5rem;
  color: var(--ink);
}

.principles-head h2 em {
  font-style: italic;
  color: var(--accent);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
}

.principle {
  border-top: 1px solid var(--line-paper);
  padding-top: 1.75rem;
  position: relative;
}

.principle-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.principle h3 {
  font-size: clamp(1.25rem, 1.7vw, 1.6rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  color: var(--ink);
}

.principle p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-soft);
}

@media (max-width: 868px) {
  .principles-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ════════════════════════════════════════════════
   CAPABILITIES (Services — 6 items)
   ════════════════════════════════════════════════ */
.capabilities {
  padding: clamp(5rem, 9vw, 9rem) 0;
}

.cap-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.cap-head h2 {
  font-size: clamp(2rem, 4.5vw, 4rem);
  max-width: 18ch;
}

.cap-head h2 em {
  font-style: italic;
  color: var(--accent);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.cap-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cap-row {
  background: var(--ink);
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 2.5vw, 2.25rem);
  align-items: start;
  transition: background 0.5s var(--ease-smooth);
}

.cap-row:hover { background: var(--ink-soft); }

.cap-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--accent);
  padding-top: 0.4rem;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.cap-content h3 {
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  line-height: 1.1;
  margin-bottom: 0.6rem;
}

.cap-content p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 38ch;
}

@media (max-width: 768px) {
  .cap-list { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════
   CLOSING CTA
   ════════════════════════════════════════════════ */
.closing {
  padding: clamp(6rem, 11vw, 11rem) 0;
  text-align: center;
  border-top: 1px solid var(--line);
}

.closing-eyebrow {
  margin-bottom: 2rem;
}

.closing h2 {
  font-size: clamp(2.25rem, 6vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 1.75rem;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.closing h2 em {
  font-style: italic;
  color: var(--accent);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.closing p {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 44ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
  font-weight: 300;
}

.closing-meta {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--text-soft);
  letter-spacing: 0.05em;
}

.closing-meta a {
  color: var(--text-muted);
  border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}

.closing-meta a:hover { color: var(--accent); border-color: var(--accent); }

/* ════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════ */
.site-footer {
  background: var(--ink);
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 5vw, 4.5rem) 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

.footer-col a, .footer-col p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.5;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--accent); }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.footer-logo-mark {
  height: 36px;
  width: auto;
  flex-shrink: 0;
}

.footer-name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.footer-name .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin: 0 0.2rem 0 0.15rem;
}

.footer-tag {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-top: 0;
  max-width: 30ch;
  line-height: 1.5;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  font-size: 0.75rem;
  color: var(--text-soft);
  align-items: center;
}

.footer-bottom .right {
  text-align: right;
  font-style: italic;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

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

@media (max-width: 580px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { grid-template-columns: 1fr; }
  .footer-bottom .right { text-align: left; }
}

/* ─── REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s var(--ease-smooth), transform 1s var(--ease-smooth);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.55s; }

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

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

/* ════════════════════════════════════════════════
   CAPABILITIES — PAPER VARIANT
   ════════════════════════════════════════════════ */
.cap-list-paper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-paper);
  border-top: 1px solid var(--line-paper);
  border-bottom: 1px solid var(--line-paper);
}

.cap-row-paper {
  background: var(--paper);
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 2.5vw, 2.25rem);
  align-items: start;
  transition: background 0.5s var(--ease-smooth);
}

.cap-row-paper:hover { background: var(--bone); }

.cap-num-paper {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--accent);
  padding-top: 0.4rem;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.cap-content-paper h3 {
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  line-height: 1.1;
  margin-bottom: 0.6rem;
  color: var(--ink);
}

.cap-content-paper p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 38ch;
}

@media (max-width: 768px) {
  .cap-list-paper { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════
   PROCESS
   ════════════════════════════════════════════════ */
.process { padding: clamp(5rem, 9vw, 9rem) 0; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(2rem, 3vw, 3rem);
}

.process-step {
  border-top: 1px solid var(--line);
  padding-top: 1.75rem;
}

.process-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
  display: block;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.process-step h3 {
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--text-inverse);
}

.process-step p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
}

@media (max-width: 968px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
}
@media (max-width: 580px) {
  .process-grid { grid-template-columns: 1fr; }
}
