/* ===== Digital Limbo — Redesign ===== */
:root {
  /* Dark theme (default) */
  --bg: #0a0d14;
  --bg-2: #11151f;
  --bg-3: #181d2a;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.16);
  --fg: #ece8df;
  --fg-2: #b6b0a3;
  --fg-3: #75716a;
  --accent: #ff6a15;
  --accent-2: #e85400;
  --accent-soft: rgba(255, 106, 21, 0.12);

  --serif: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  --sans: "Poppins", -apple-system, system-ui, sans-serif;
  --mono: "Poppins", -apple-system, system-ui, sans-serif;
  --pixel: "Press Start 2P", "Poppins", monospace;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;

  --maxw: 1280px;
}

[data-theme="light"] {
  --bg: #f5f1e8;
  --bg-2: #ebe5d6;
  --bg-3: #e0d8c4;
  --line: rgba(0,0,0,0.10);
  --line-strong: rgba(0,0,0,0.20);
  --fg: #18161f;
  --fg-2: #4a4636;
  --fg-3: #7a7565;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.4 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* Scanline overlay (retro CRT) — page-wide overlay removed; kept only inside boxes */

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

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== Type ===== */
.display {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.02em;
}
.eyebrow {
  font-family: var(--pixel);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.6;
  text-transform: uppercase;
  color: var(--accent);
}
.label-mono {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--fg-2);
}
.italic-em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
}
.nav-logo-tile {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 0 var(--accent);
}
.nav-logo-tile img {
  width: 26px; height: 26px;
  display: block;
  image-rendering: pixelated;
}
.nav-logo-word {
  font-family: var(--pixel);
  font-size: 11px;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--fg);
}
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  color: var(--fg-2);
}
.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--fg); }
.nav-right { display: flex; align-items: center; gap: 14px; }
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-right { gap: 8px; }
  .nav-cta { white-space: nowrap; padding: 7px 13px; font-size: 12px; }
  .lang-switch a { padding: 5px 6px; }
}
.nav-cta {
  padding: 8px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--fg);
  font-size: 13px;
  transition: all 0.2s;
}
.nav-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0d14;
}
.lang-switch { display: flex; gap: 2px; align-items: center; font-family: var(--mono); font-size: 11px; font-weight: 600; }
.lang-switch a { padding: 5px 8px; border-radius: 6px; color: var(--fg-3); letter-spacing: .04em; cursor: pointer; }
.lang-switch a:hover { color: var(--fg); }
.lang-switch a.current { color: var(--accent); background: var(--accent-soft); }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 100px 0 120px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}
.hero-headline {
  font-size: clamp(56px, 8vw, 112px);
}
.hero-headline .ital { color: var(--accent); font-style: italic; }
.hero-sub {
  margin-top: 32px;
  font-size: 19px;
  line-height: 1.5;
  color: var(--fg-2);
  max-width: 480px;
}
.hero-meta {
  margin-top: 40px;
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-meta-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-meta-stat .num {
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1;
}
.hero-meta-stat .lbl {
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-3);
}
.hero-ctas {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.2s;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: #18161f;
}
.btn-primary:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: 3px 3px 0 rgba(0,0,0,0.4);
}
.btn-ghost {
  border-color: var(--line-strong);
  color: var(--fg);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 3px 3px 0 var(--accent);
}

/* ===== Waterfall viz ===== */
.waterfall {
  position: relative;
  aspect-ratio: 1 / 1.05;
  min-height: 460px;
}
.waterfall svg { width: 100%; height: 100%; }
.waterfall-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.wf-label {
  position: absolute;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-2);
  padding: 4px 8px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  white-space: nowrap;
}

/* ===== Clients / worked-on ===== */
.clients {
  padding: 72px 0 40px;
  border-top: 1px solid var(--line);
}
.clients-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.clients-sub {
  max-width: 440px;
  color: var(--fg-2);
  font-size: 15px;
  margin: 0;
  line-height: 1.5;
}

/* Orbit stage */
.orbit-stage {
  position: relative;
  width: 100%;
  max-width: 680px;
  margin: 24px auto 0;
  aspect-ratio: 1 / 1;
}
.orbit-rings {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.orbit-node {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  transition: transform 0.25s;
}
.orbit-node:hover { z-index: 5; }
.orbit-node.ring-center {
  left: 50%;
  top: 50%;
  animation: orbitBob 6s ease-in-out infinite;
}
.orbit-node.ring-inner { animation: orbitBob 7s ease-in-out infinite; }
.orbit-node.ring-outer { animation: orbitBob 8s ease-in-out infinite; }
.orbit-node:nth-of-type(2n) { animation-delay: -2s; }
.orbit-node:nth-of-type(3n) { animation-delay: -4s; }

.orbit-icon {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--bg-2);
  box-shadow: 0 12px 30px -12px rgba(0,0,0,0.55);
  transition: transform 0.25s, box-shadow 0.25s;
}
.orbit-node:hover .orbit-icon {
  transform: scale(1.08);
  box-shadow: 0 0 0 1px var(--accent), 0 16px 40px -12px rgba(0,0,0,0.7);
}
.orbit-icon image-slot { width: 100%; height: 100%; display: block; }
.ring-outer .orbit-icon { width: 62px; height: 62px; border-radius: 14px; }
.ring-inner .orbit-icon { width: 86px; height: 86px; border-radius: 20px; }
.ring-center .orbit-icon {
  width: 128px; height: 128px;
  border-radius: 28px;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent-soft), 0 0 40px -6px var(--accent-soft), 0 20px 48px -14px rgba(0,0,0,0.65);
}

.orbit-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--fg-3);
  text-align: center;
  max-width: 92px;
  line-height: 1.25;
}
.ring-center .orbit-label {
  font-family: var(--pixel);
  font-size: 10px;
  color: var(--accent);
  max-width: 150px;
  line-height: 1.5;
}
.ring-inner .orbit-label { color: var(--fg-2); font-size: 11px; }

.orbit-more {
  text-align: center;
  margin-top: 8px;
  font-family: var(--pixel);
  font-size: 10px;
  color: var(--fg-3);
  letter-spacing: 0.02em;
}
@keyframes orbitBob {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-7px); }
}
.ring-center.orbit-node { animation-name: orbitBobCenter; }
@keyframes orbitBobCenter {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-7px); }
}

@media (max-width: 680px) {
  .orbit-stage {
    position: static;
    aspect-ratio: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 26px 30px;
    max-width: none;
  }
  .orbit-rings { display: none; }
  .orbit-node {
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    animation: none !important;
  }
  .orbit-node.ring-center { order: -1; }
}

/* ===== Section header ===== */
.section {
  padding: 100px 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.section-head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  margin-bottom: 56px;
  align-items: end;
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 720px;
}
.section-head h2 .ital { font-style: italic; color: var(--accent); }
.section-head .side {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--fg-3);
  text-transform: uppercase;
  padding-bottom: 8px;
}

/* ===== Articles ===== */
.articles-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);
}
.article-card {
  background: var(--bg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
  transition: background 0.25s;
  min-height: 320px;
  position: relative;
}
.article-card:hover { background: var(--bg-2); }
.article-card.featured {
  grid-row: span 2;
  background: var(--bg-2);
  padding: 36px;
  justify-content: space-between;
}
.article-card.featured:hover { background: var(--bg-3); }
.article-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-sm);
  background: var(--bg-3);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.article-thumb.featured-thumb { aspect-ratio: 4 / 3; }
.article-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.article-card .cat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.article-card .cat::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.article-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0;
}
.article-card.featured h3 { font-size: 38px; }
.article-card p {
  font-size: 14px;
  color: var(--fg-2);
  margin: 0;
  line-height: 1.5;
}
.article-card .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--fg-3);
  margin-top: auto;
  padding-top: 8px;
}
.article-card .arrow {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}
.article-card:hover .arrow {
  background: var(--accent);
  border-color: var(--accent);
  color: #18161f;
  transform: rotate(-45deg);
}
.article-card.featured .arrow { top: 36px; right: 36px; }

.articles-foot {
  margin-top: 32px;
  display: flex;
  justify-content: flex-end;
}

/* ===== Blog full index ===== */
.blog-index { margin-top: 56px; }
.blog-index-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 20px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.blog-index-head .side {
  font-family: var(--pixel);
  font-size: 10px;
  color: var(--fg-3);
  letter-spacing: 0.02em;
}
.blog-filter { display: flex; gap: 6px; flex-wrap: wrap; }
.blog-filter button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--fg-2);
  font-size: 12.5px;
  font-weight: 500;
  transition: all 0.18s;
}
.blog-filter button span {
  font-size: 10px;
  padding: 1px 6px;
  border-radius: 999px;
  background: var(--bg-3);
  color: var(--fg-3);
}
.blog-filter button:hover { border-color: var(--fg-2); color: var(--fg); }
.blog-filter button.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #18161f;
}
.blog-filter button.active span { background: rgba(0,0,0,0.22); color: #18161f; }

.blog-rows { display: flex; flex-direction: column; }
.blog-row {
  display: grid;
  grid-template-columns: 34px 1fr auto auto 20px;
  align-items: center;
  gap: 20px;
  padding: 15px 8px;
  border-bottom: 1px solid var(--line);
  transition: background 0.16s, padding 0.16s;
}
.blog-row:hover { background: var(--bg-2); padding-left: 16px; padding-right: 16px; }
.blog-row-idx {
  font-family: var(--pixel);
  font-size: 9px;
  color: var(--fg-3);
}
.blog-row-title {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.blog-row:hover .blog-row-title { color: var(--accent); }
.blog-row-cat {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-2);
  padding: 4px 9px;
  border-radius: 4px;
  background: var(--bg-3);
  white-space: nowrap;
}
.blog-row-cat[data-cat="Ad Monetization"] { color: var(--accent); background: var(--accent-soft); }
.blog-row-date {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--fg-3);
  white-space: nowrap;
  min-width: 68px;
  text-align: right;
}
.blog-row-arrow { color: var(--fg-3); font-size: 15px; transition: transform 0.16s, color 0.16s; }
.blog-row:hover .blog-row-arrow { color: var(--accent); transform: translateX(3px); }

@media (max-width: 720px) {
  .blog-row { grid-template-columns: 1fr auto; gap: 6px 14px; }
  .blog-row-idx, .blog-row-arrow { display: none; }
  .blog-row-title { grid-column: 1 / -1; font-size: 18px; }
  .blog-row-date { text-align: left; min-width: 0; }
}

/* ===== Plans ===== */
.plans-tabs {
  display: inline-flex;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 40px;
}
.plans-tabs button {
  padding: 10px 22px;
  border-radius: 999px;
  background: transparent;
  border: none;
  color: var(--fg-2);
  font-size: 13px;
  transition: all 0.2s;
}
.plans-tabs button.active {
  background: var(--accent);
  color: #18161f;
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.plan-card {
  background: var(--bg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: background 0.25s;
}
.plan-card:hover { background: var(--bg-2); }
.plan-card.recommended { background: var(--bg-2); }
.plan-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.plan-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 34px;
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.01em;
}
.plan-card h3 .ital { font-style: italic; color: var(--accent); }
.plan-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 4px;
  background: var(--bg-3);
  color: var(--fg-2);
  white-space: nowrap;
}
.plan-tag.hot {
  background: var(--accent-soft);
  color: var(--accent);
}
.plan-desc {
  color: var(--fg-2);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 4px;
}
.plan-price .amt {
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1;
}
.plan-price .per {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-3);
}
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--fg);
  line-height: 1.5;
}
.plan-features li::before {
  content: "→";
  color: var(--accent);
  font-family: var(--mono);
  flex-shrink: 0;
}
.plan-cta {
  margin-top: auto;
  padding-top: 8px;
  display: flex;
  gap: 12px;
  align-items: center;
}

/* ===== Assessment ===== */
.assess {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 56px;
  position: relative;
  overflow: hidden;
}
.assess-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  top: -200px; right: -200px;
  pointer-events: none;
}
.assess-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}
.assess-info h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 44px;
  line-height: 1.05;
  margin: 12px 0 16px;
  letter-spacing: -0.015em;
}
.assess-info h3 .ital { font-style: italic; color: var(--accent); }
.assess-info p {
  color: var(--fg-2);
  font-size: 15px;
  line-height: 1.55;
}
.assess-q {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.assess-q-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.assess-q-text {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.15;
  margin: 0;
}
.assess-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.assess-option {
  padding: 16px 20px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  background: var(--bg);
  text-align: left;
  color: var(--fg);
  font-size: 14.5px;
  transition: all 0.18s;
  display: flex;
  align-items: center;
  gap: 14px;
}
.assess-option:hover {
  border-color: var(--accent);
  background: var(--bg-3);
}
.assess-option .key {
  font-family: var(--mono);
  font-size: 11px;
  width: 22px; height: 22px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-3);
  border: 1px solid var(--line);
  color: var(--fg-2);
}
.assess-progress {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}
.assess-progress .dot {
  flex: 1;
  height: 3px;
  background: var(--line);
  border-radius: 2px;
}
.assess-progress .dot.done { background: var(--accent); }

.assess-result {
  background: var(--bg);
  border: 1px solid var(--accent);
  border-radius: var(--r-md);
  padding: 28px;
}
.assess-result .rec-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.assess-result h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  margin: 8px 0 12px;
  letter-spacing: -0.01em;
}
.assess-result p { color: var(--fg-2); font-size: 14px; margin: 0 0 20px; }

/* ===== About ===== */
.about-section { border-top: none; padding-top: 8px; }
.about {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: start;
}
.about-titles .eyebrow { display: inline-block; }
.about-titles { max-width: 460px; }
.titles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px 16px; margin-top: 24px; }
.title-tile { display: flex; flex-direction: column; gap: 9px; text-align: center; }
.title-icon { aspect-ratio: 1; border-radius: 18px; overflow: hidden; border: 1px solid var(--accent); box-shadow: 0 0 0 1px var(--accent), 0 10px 24px -12px rgba(0,0,0,0.6); background: var(--bg-2); }
.title-icon img { display: block; width: 100%; height: 100%; object-fit: cover; }
.title-icon image-slot { display: block; width: 100%; height: 100%; }
.title-name { font-family: var(--mono); font-size: 10.5px; line-height: 1.3; color: var(--fg); }
.titles-more { font-family: var(--pixel); font-size: 9px; color: var(--fg-3); letter-spacing: 0.02em; margin-top: 22px; }
.about-portrait {
  float: right;
  width: 190px;
  aspect-ratio: 3 / 4;
  margin: 4px 0 16px 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-portrait .placeholder {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
  text-align: center;
  padding: 20px;
}
.about-portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 18px,
    rgba(255,255,255,0.03) 18px,
    rgba(255,255,255,0.03) 19px
  );
}
.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(1) contrast(1.02);
}
.about-body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 44px;
  line-height: 1.05;
  margin: 12px 0 24px;
  letter-spacing: -0.015em;
}
.about-body h3 .ital { font-style: italic; color: var(--accent); }
.about-body p {
  font-size: 16px;
  color: var(--fg-2);
  line-height: 1.6;
  max-width: 560px;
}
.about-body p + p { margin-top: 16px; }
.about-creds {
  clear: both;
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 560px;
  align-items: start;
}
.cred-col { display: flex; flex-direction: column; gap: 24px; }
.about-cred .k {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 6px;
}
.about-cred .v {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.2;
}
.about-social { margin-top: 24px; }
.about-cred .v .about-social-link { margin-top: 4px; }
.about-social-link { display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px; border: 1px solid var(--line-strong); border-radius: var(--r-sm); font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; color: var(--fg); transition: background 0.2s, border-color 0.2s, color 0.2s; }
.about-social-link svg { color: #0a66c2; }
.about-social-link:hover { background: #0a66c2; border-color: #0a66c2; color: #fff; }
.about-social-link:hover svg { color: #fff; }

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--line);
  padding: 80px 0 32px;
}
.footer-cta {
  text-align: center;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
}
.footer-cta h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}
.footer-cta h2 .ital { font-style: italic; color: var(--accent); }
.footer-cta p {
  max-width: 480px;
  margin: 0 auto 32px;
  color: var(--fg-2);
}
.footer-bot {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--fg-3);
  text-transform: uppercase;
}
.footer-bot a { color: var(--fg-2); margin-left: 16px; }
.footer-bot a:hover { color: var(--accent); }
.footer-services { display: flex; flex-wrap: wrap; gap: 10px 22px; padding-bottom: 28px; margin-bottom: 28px; border-bottom: 1px solid var(--line); }
.footer-services a { font-family: var(--mono); font-size: 12.5px; color: var(--fg-2); letter-spacing: .01em; }
.footer-services a:hover { color: var(--accent); }

/* ===== Marquee ===== */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
  background: var(--bg-2);
}
.marquee-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-2);
}
.marquee-track span { display: inline-flex; align-items: center; gap: 12px; }
.marquee-track span::before {
  content: "✦";
  color: var(--accent);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Services ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.svc-card { background: var(--bg); padding: 36px 30px; display: flex; flex-direction: column; gap: 16px; transition: background 0.25s; }
.svc-card:hover { background: var(--bg-2); }
.svc-top { display: flex; align-items: center; gap: 14px; }
.svc-idx { font-family: var(--pixel); font-size: 13px; color: var(--accent); border: 1px solid var(--line-strong); border-radius: var(--r-sm); padding: 10px 11px; line-height: 1; }
.svc-kicker { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-3); }
.svc-title { font-family: var(--serif); font-weight: 400; font-size: 27px; line-height: 1.05; letter-spacing: -0.01em; }
.svc-title .ital { font-style: italic; color: var(--accent); }
.svc-desc { font-size: 14px; color: var(--fg-2); line-height: 1.55; margin: 0; }
.svc-list { list-style: none; margin: 0; padding: 18px 0 0; display: flex; flex-direction: column; gap: 9px; margin-top: auto; border-top: 1px solid var(--line); }
.svc-list li { font-size: 13px; color: var(--fg-2); padding-left: 18px; position: relative; line-height: 1.4; }
.svc-list li::before { content: "\25B8"; position: absolute; left: 0; top: 1px; color: var(--accent); font-size: 11px; }
.svc-cta { margin-top: 28px; padding: 24px 28px; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--bg-2); display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.svc-cta-kicker { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; color: var(--fg-3); text-transform: uppercase; }
.svc-cta-title { font-family: var(--serif); font-size: 24px; margin-top: 4px; max-width: 640px; }

/* ===== Cases / proven results ===== */
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.case-card { background: var(--bg); padding: 32px 28px; display: flex; flex-direction: column; gap: 14px; transition: background 0.25s; }
.case-card:hover { background: var(--bg-2); }
.case-num { font-family: var(--pixel); font-size: 10px; letter-spacing: 0.04em; color: var(--accent); }
.case-client { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-3); }
.case-title { font-family: var(--serif); font-weight: 400; font-size: 25px; line-height: 1.1; letter-spacing: -0.01em; }
.case-desc { font-size: 14px; color: var(--fg-2); line-height: 1.55; margin: 0; }
.case-kpis { display: flex; flex-direction: column; margin-top: auto; padding-top: 6px; border-top: 1px solid var(--line); }
.case-kpi { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.case-kpi:last-child { border-bottom: none; }
.case-kpi .k { font-family: var(--mono); font-size: 12px; color: var(--fg-2); letter-spacing: 0.02em; }
.case-kpi .v { font-family: var(--mono); font-size: 16px; font-weight: 600; white-space: nowrap; }
.case-kpi .v.up { color: var(--accent); }
.case-kpi .v.down, .case-kpi .v.ctx { color: var(--fg-3); }
.cases-fine { font-family: var(--mono); font-size: 11px; line-height: 1.5; color: var(--fg-3); letter-spacing: 0.02em; margin-top: 20px; max-width: 720px; }
.case-quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.tq { margin: 0; padding: 24px; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--bg-2); display: flex; flex-direction: column; gap: 16px; }
.tq p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--fg-2); }
.tq .hi { color: var(--accent); font-weight: 600; }
.tq footer { display: flex; flex-direction: column; gap: 2px; margin-top: auto; }
.tqname { font-size: 13px; font-weight: 600; color: var(--fg); }
.tqrole { font-family: var(--mono); font-size: 11px; color: var(--fg-3); letter-spacing: 0.02em; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .cases-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .case-quotes { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .section-head { grid-template-columns: 1fr; gap: 16px; }
  .articles-grid { grid-template-columns: 1fr; }
  .article-card.featured { grid-row: auto; }
  .plans-grid { grid-template-columns: 1fr; }
  .assess-inner { grid-template-columns: 1fr; gap: 40px; }
  .about { grid-template-columns: 1fr; }
  .footer-bot { flex-direction: column; gap: 12px; }
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .hero { padding: 56px 0 80px; }
}

@media (max-width: 520px) {
  html, body { overflow-x: hidden; }
  .hero-meta { gap: 18px 22px; }
  .hero-meta-stat { min-width: 0; }
  .hero-meta-stat .num { font-size: 30px; }
  .hero-meta-stat .lbl { font-size: 9.5px; letter-spacing: 0.08em; }
  .waterfall { min-height: 340px; }
}
