/* ==========================================================================
   TIMPSON MARKETING — DESIGN SYSTEM
   Brand: SEO. Paid Ads. Paid Media. AI Marketing.
   ========================================================================== */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd, ul, ol { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img, picture, video, svg { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ---------- TOKENS ---------- */
:root {
  /* Color */
  --bg:        #0A0A0F;
  --bg-elev:  #101018;
  --surface:  #15151D;
  --surface-2:#1B1B26;
  --border:    rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.16);
  --text:      #F4F4F7;
  --text-muted:#A6A6B5;
  --text-dim:  #6B6B7A;

  /* Brand */
  --brand:     #FF6B35;        /* signature orange */
  --brand-2:   #FF3D7F;        /* hot pink for AI gradient */
  --brand-3:   #6B4BFF;        /* electric violet */
  --brand-glow:#FF6B3520;

  --grad-ai:   linear-gradient(135deg, #FF6B35 0%, #FF3D7F 50%, #6B4BFF 100%);
  --grad-ai-soft: linear-gradient(135deg, rgba(255,107,53,.18), rgba(107,75,255,.18));
  --grad-headline: linear-gradient(180deg, #FFFFFF 0%, #B8B8C5 100%);

  /* Type */
  --font-display: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif:   "Instrument Serif", "Iowan Old Style", Georgia, serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  /* Radius / Shadow */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --shadow-1: 0 1px 2px rgba(0,0,0,.4), 0 8px 24px rgba(0,0,0,.25);
  --shadow-glow: 0 0 0 1px rgba(255,107,53,.35), 0 24px 80px rgba(255,107,53,.18);

  /* Layout */
  --container: 1200px;
  --container-wide: 1320px;
  --gutter: clamp(20px, 4vw, 40px);
  --section-y: clamp(72px, 10vw, 140px);
}

/* ---------- BASE ---------- */
html, body { background: var(--bg); color: var(--text); }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Typographic scale */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  padding: 6px 12px;
  border: 1px solid rgba(255,107,53,.32);
  border-radius: 999px;
  background: rgba(255,107,53,.06);
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 10px var(--brand);
}
.eyebrow.neutral { color: var(--text-muted); border-color: var(--border-strong); background: rgba(255,255,255,.02); }
.eyebrow.neutral::before { background: var(--text-muted); box-shadow: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--text);
}
.display {
  font-size: clamp(40px, 7vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 800;
  background: var(--grad-headline);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
h1 { font-size: clamp(36px, 5vw, 64px); }
h2 { font-size: clamp(30px, 4vw, 52px); }
h3 { font-size: clamp(22px, 2.4vw, 30px); }
h4 { font-size: 20px; }
.serif { font-family: var(--font-serif); font-weight: 400; font-style: italic; letter-spacing: -0.01em; }
.gradient-text {
  background: var(--grad-ai);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

p { color: var(--text-muted); }
.lead { font-size: clamp(17px, 1.4vw, 21px); line-height: 1.55; color: var(--text-muted); max-width: 62ch; }

/* ---------- LAYOUT ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container-wide { width: 100%; max-width: var(--container-wide); margin-inline: auto; padding-inline: var(--gutter); }
section { padding-block: var(--section-y); position: relative; }
.section-tight { padding-block: clamp(48px, 6vw, 80px); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  padding: 14px 22px;
  border-radius: 999px;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .25s ease, border-color .2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--brand);
  color: #0A0A0F;
  box-shadow: 0 1px 0 rgba(255,255,255,.18) inset, 0 8px 24px -6px rgba(255,107,53,.45);
}
.btn-primary:hover { background: #ff8559; box-shadow: 0 1px 0 rgba(255,255,255,.22) inset, 0 12px 36px -8px rgba(255,107,53,.6); transform: translateY(-1px); }
.btn-ghost {
  background: rgba(255,255,255,.04);
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.28); }
.btn-link {
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  font-weight: 500;
}
.btn-link:hover { color: var(--brand); }
.btn-lg { padding: 16px 26px; font-size: 16px; }
.btn .arrow { transition: transform .2s ease; display: inline-block; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  background: rgba(10,10,15,.72);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.brand-mark {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 800; letter-spacing: -0.02em;
  font-size: 17px;
}
.brand-mark .glyph {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.brand-mark .glyph svg {
  width: 100%; height: 100%; display: block;
  filter: drop-shadow(0 6px 18px rgba(255,107,53,.45));
  transition: filter .25s ease, transform .25s ease;
}
.brand-mark:hover .glyph svg {
  filter: drop-shadow(0 8px 28px rgba(255,107,53,.7));
  transform: rotate(-4deg) scale(1.04);
}
.brand-wm {
  display: inline-flex; align-items: baseline; gap: 8px;
  letter-spacing: -0.025em;
}
.brand-wm .name { color: var(--text); font-weight: 800; }
.brand-wm .sep {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--brand);
  display: inline-block;
  align-self: center;
  box-shadow: 0 0 8px var(--brand);
}
.brand-wm .role {
  color: var(--text-muted); font-weight: 500; font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase;
  font-family: var(--font-mono);
}
@media (max-width: 540px) {
  .brand-wm .sep, .brand-wm .role { display: none; }
}

/* Logo gradient hue rotation */
@keyframes logo-hue { 0% { filter: hue-rotate(0deg); } 100% { filter: hue-rotate(360deg); } }
.brand-mark .glyph .gradlogo-bg { animation: logo-hue 14s linear infinite; transform-origin: center; }

/* Backwards-compatible: keep .dot working for footer / other places */
.brand-mark .dot {
  width: 32px; height: 32px; border-radius: 10px;
  background: var(--grad-ai);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px; font-weight: 800;
  box-shadow: 0 6px 18px rgba(255,107,53,.35);
  flex-shrink: 0;
}
.nav-links {
  display: flex; gap: 28px; align-items: center;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { display: inline-flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none; width: 40px; height: 40px; border-radius: 10px;
  border: 1px solid var(--border-strong);
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 20px; height: 20px; }
@media (max-width: 920px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 68px 0 0 0; z-index: 49;
  background: rgba(10,10,15,.96);
  backdrop-filter: blur(20px);
  padding: 32px var(--gutter);
  display: none;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 700;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.mobile-menu .btn { margin-top: 16px; align-self: flex-start; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(40px, 6vw, 64px);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: -10% -10% auto -10%; height: 90%;
  background:
    radial-gradient(60% 50% at 18% 20%, rgba(255,107,53,.22), transparent 60%),
    radial-gradient(50% 50% at 80% 0%, rgba(107,75,255,.18), transparent 60%);
  pointer-events: none; z-index: 0;
}
.hero-grid::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(60% 60% at 50% 30%, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(60% 60% at 50% 30%, #000 30%, transparent 70%);
}
.hero-inner { position: relative; z-index: 1; }

.hero h1 {
  font-size: clamp(44px, 7.6vw, 104px);
  line-height: .95;
  letter-spacing: -0.04em;
  font-weight: 800;
  max-width: 16ch;
}
.hero h1 .grad { background: var(--grad-ai); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero h1 .quiet { color: var(--text-muted); font-weight: 700; }
.hero h1 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--text); }
.hero .lead { margin-top: 28px; font-size: clamp(17px, 1.5vw, 22px); color: var(--text-muted); max-width: 56ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; align-items: center; }
.hero-actions .meta { font-size: 13px; color: var(--text-dim); }

.hero-rating {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 28px;
  padding: 8px 14px; border: 1px solid var(--border-strong); border-radius: 999px;
  background: rgba(255,255,255,.03);
  font-size: 13px; color: var(--text-muted);
}
.hero-rating .stars { color: #FFB400; letter-spacing: 2px; }

/* Trust bar */
.trust-bar {
  margin-top: clamp(40px, 6vw, 72px);
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.trust-bar .stat {
  display: flex; flex-direction: column; gap: 4px;
  padding: 4px 18px;
  border-right: 1px solid var(--border);
}
.trust-bar .stat:last-child { border-right: none; }
.trust-bar .num {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text);
  line-height: 1;
}
.trust-bar .num .accent { color: var(--brand); }
.trust-bar .label {
  font-size: 12px; color: var(--text-muted);
  letter-spacing: .06em; text-transform: uppercase;
  font-family: var(--font-mono); font-weight: 500;
}
@media (max-width: 720px) {
  .trust-bar { grid-template-columns: 1fr 1fr; }
  .trust-bar .stat { border-right: none; border-bottom: 1px solid var(--border); padding: 12px 4px; }
  .trust-bar .stat:nth-child(2) { border-right: none; }
  .trust-bar .stat:nth-last-child(-n+2) { border-bottom: none; }
}

/* ---------- SECTION HEADER ---------- */
.section-head { display: flex; flex-direction: column; gap: 18px; max-width: 720px; margin-bottom: 52px; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 56px); letter-spacing: -0.03em; }
.section-head h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--brand); }
.section-head .lead { font-size: 18px; }

/* ---------- SERVICE CARDS ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.service-card {
  position: relative;
  grid-column: span 6;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px;
  overflow: hidden;
  transition: border-color .25s ease, transform .25s ease, background .25s ease;
  display: flex; flex-direction: column; gap: 14px; min-height: 320px;
}
.service-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.service-card .num {
  font-family: var(--font-mono); font-size: 12px; color: var(--text-dim);
  letter-spacing: .12em;
}
.service-card h3 { font-size: clamp(24px, 2.8vw, 34px); letter-spacing: -0.025em; }
.service-card p { color: var(--text-muted); font-size: 15px; max-width: 48ch; }
.service-card .tag-row {
  margin-top: auto;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.tag {
  font-size: 12px; color: var(--text-muted);
  padding: 6px 10px; border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(255,255,255,.02);
  font-family: var(--font-mono); font-weight: 500; letter-spacing: .04em;
}
.service-card.feature {
  grid-column: span 12;
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(255,107,53,.18), transparent 50%),
    radial-gradient(80% 80% at 100% 0%, rgba(107,75,255,.18), transparent 60%),
    var(--surface);
  border: 1px solid rgba(255,107,53,.28);
}
.service-card.feature::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .15;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(50% 70% at 100% 0%, #000, transparent 70%);
  -webkit-mask-image: radial-gradient(50% 70% at 100% 0%, #000, transparent 70%);
}
.service-card.feature .badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  background: var(--grad-ai);
  color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; border-radius: 999px;
  box-shadow: 0 6px 24px rgba(255,107,53,.4);
  align-self: flex-start;
}
.service-card.feature h3 { font-size: clamp(28px, 3.6vw, 44px); }
@media (max-width: 820px) {
  .service-card { grid-column: span 12; padding: 28px; min-height: 0; }
}

.service-card .icon-bubble {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(255,107,53,.10);
  border: 1px solid rgba(255,107,53,.25);
  color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}
.service-card .icon-bubble svg { width: 26px; height: 26px; }
.service-card.feature .icon-bubble {
  background: var(--grad-ai); color: #fff; border: none;
  box-shadow: 0 12px 30px rgba(255,107,53,.35);
}
.service-card .more {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--brand); font-weight: 600; font-size: 14px;
}

/* ---------- PROOF GRID (real screenshots) ---------- */
.proof-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 32px;
  padding-block: 8px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.proof-track {
  display: flex; gap: 18px; width: max-content;
  animation: marquee 50s linear infinite;
}
.proof-marquee:hover .proof-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.proof-card {
  width: 320px;
  flex: 0 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease;
}
.proof-card:hover { transform: translateY(-3px); border-color: var(--border-strong); }
.proof-card .img-wrap {
  background: #fff;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.proof-card .img-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
}
.proof-card .meta { padding: 16px 18px; }
.proof-card .stat {
  font-family: var(--font-display); font-size: 22px; font-weight: 800;
  letter-spacing: -0.02em; color: var(--text);
}
.proof-card .stat .accent { color: var(--brand); }
.proof-card .desc { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* Static proof grid (case studies / proof page) */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.proof-grid > .proof-card { width: auto; grid-column: span 4; }
@media (max-width: 980px) { .proof-grid > .proof-card { grid-column: span 6; } }
@media (max-width: 640px) { .proof-grid > .proof-card { grid-column: span 12; } }

/* ---------- CASE STUDIES ---------- */
.case-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.case-card {
  grid-column: span 4;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  display: flex; flex-direction: column; gap: 18px;
  transition: border-color .25s ease, transform .25s ease;
}
.case-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.case-card .industry {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--brand);
}
.case-card .headline { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; }
.case-card .stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
  border-top: 1px solid var(--border); padding-top: 18px;
}
.case-card .stat .num { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--text); letter-spacing: -0.02em; }
.case-card .stat .num .accent { color: var(--brand); }
.case-card .stat .lbl { font-size: 12px; color: var(--text-muted); }
.case-card blockquote {
  font-size: 14px; color: var(--text-muted);
  font-style: italic; border-left: 2px solid var(--brand);
  padding-left: 14px;
}
.case-card .name { font-size: 12px; color: var(--text-dim); margin-top: 6px; font-style: normal; }
@media (max-width: 980px) { .case-card { grid-column: span 6; } }
@media (max-width: 700px) { .case-card { grid-column: span 12; } }

/* ---------- METHODOLOGY ---------- */
.steps {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px;
}
.step {
  grid-column: span 4;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 220px;
}
.step .n {
  font-family: var(--font-mono); font-size: 12px; color: var(--brand);
  letter-spacing: .12em;
}
.step h4 { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; }
.step p { font-size: 14px; color: var(--text-muted); }
@media (max-width: 980px) { .step { grid-column: span 6; } }
@media (max-width: 640px) { .step { grid-column: span 12; } }

/* ---------- TESTIMONIALS WALL ---------- */
.wall {
  columns: 3 320px;
  column-gap: 18px;
}
.tcard {
  break-inside: avoid;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  margin-bottom: 18px;
  display: flex; flex-direction: column; gap: 14px;
}
.tcard .stars { color: #FFB400; letter-spacing: 2px; font-size: 14px; }
.tcard p {
  color: var(--text); font-size: 15px; line-height: 1.55;
}
.tcard p strong { color: var(--text); font-weight: 700; }
.tcard .who { display: flex; align-items: center; gap: 12px; margin-top: 4px; }
.tcard .who .avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; color: #fff; font-size: 14px; flex-shrink: 0;
  background: var(--grad-ai);
}
.tcard .who .name { font-size: 13px; font-weight: 600; color: var(--text); }
.tcard .who .role { font-size: 12px; color: var(--text-dim); }

/* ---------- FOUNDER / ABOUT ---------- */
.founder {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center;
}
.founder-card {
  background:
    radial-gradient(80% 80% at 0% 0%, rgba(255,107,53,.12), transparent 50%),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 44px;
}
.founder-card .name { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -0.02em; }
.founder-card .role { font-size: 14px; color: var(--text-muted); margin-bottom: 18px; }
.founder-card p { font-size: 16px; color: var(--text-muted); margin-bottom: 12px; }
.founder-card p:last-child { margin-bottom: 0; }
.founder-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
.founder-stats .item { padding: 16px; border: 1px solid var(--border); border-radius: var(--r-md); }
.founder-stats .item .num { font-family: var(--font-display); font-weight: 800; font-size: 28px; letter-spacing: -0.02em; color: var(--brand); }
.founder-stats .item .lbl { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
@media (max-width: 980px) { .founder { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- FAQ ---------- */
.faq { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px 22px;
  transition: border-color .15s ease;
}
.faq details[open] { border-color: var(--border-strong); }
.faq summary {
  font-family: var(--font-display); font-weight: 600; font-size: 16px;
  list-style: none; cursor: pointer;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 24px; color: var(--brand);
  font-weight: 300; line-height: 1;
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { font-size: 15px; color: var(--text-muted); margin-top: 12px; line-height: 1.6; }
@media (max-width: 820px) { .faq { grid-template-columns: 1fr; } }

/* ---------- CTA BANNER ---------- */
.cta-banner {
  position: relative;
  border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 72px);
  background:
    radial-gradient(80% 100% at 0% 0%, rgba(255,107,53,.22), transparent 60%),
    radial-gradient(80% 100% at 100% 100%, rgba(107,75,255,.22), transparent 60%),
    var(--surface);
  border: 1px solid rgba(255,107,53,.28);
  overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(60% 80% at 50% 50%, #000, transparent 70%);
  -webkit-mask-image: radial-gradient(60% 80% at 50% 50%, #000, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 {
  font-size: clamp(30px, 4.6vw, 56px);
  letter-spacing: -0.03em; max-width: 18ch; margin-bottom: 16px;
  position: relative;
}
.cta-banner p { font-size: 18px; max-width: 56ch; margin-bottom: 28px; position: relative; }
.cta-banner .actions { display: flex; flex-wrap: wrap; gap: 14px; position: relative; }

/* ---------- LOGOS BAR ---------- */
.logos-bar {
  margin: 24px 0 0;
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; align-items: center;
}
.logos-bar .industry-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 13px; color: var(--text-muted);
  background: rgba(255,255,255,.02);
}
.logos-bar .industry-pill .ico { color: var(--brand); }

/* ---------- FOOTER ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
  background: var(--bg-elev);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
.footer h5 {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim);
  margin-bottom: 16px;
}
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer a { font-size: 14px; color: var(--text-muted); transition: color .15s ease; }
.footer a:hover { color: var(--text); }
.footer .tagline { color: var(--text-muted); font-size: 14px; max-width: 32ch; margin-top: 14px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: var(--text-dim);
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- ARTICLE / LONG-FORM ---------- */
.article { max-width: 760px; margin-inline: auto; }
.article p { font-size: 17px; line-height: 1.7; color: var(--text-muted); margin-bottom: 18px; }
.article p strong { color: var(--text); font-weight: 600; }
.article h2 { margin: 56px 0 18px; font-size: clamp(26px, 3vw, 38px); }
.article h3 { margin: 36px 0 14px; font-size: 22px; }
.article ul { list-style: disc inside; margin: 16px 0 22px; padding-left: 6px; }
.article ul li { margin-bottom: 8px; color: var(--text-muted); }
.article a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.article blockquote {
  border-left: 3px solid var(--brand);
  padding: 12px 18px; margin: 24px 0;
  background: rgba(255,107,53,.05);
  border-radius: 4px;
  color: var(--text);
}
.article hr { border: none; border-top: 1px solid var(--border); margin: 36px 0; }

.toc {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 22px; margin-bottom: 32px;
}
.toc h5 { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; color: var(--text-dim); text-transform: uppercase; margin-bottom: 12px; }
.toc ol { list-style: decimal inside; display: flex; flex-direction: column; gap: 6px; padding-left: 4px; }
.toc a { color: var(--text); font-size: 14px; text-decoration: none; }
.toc a:hover { color: var(--brand); }

/* ---------- FORMS ---------- */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px;
}
.form-card h3 { font-size: 24px; margin-bottom: 8px; }
.form-card p { color: var(--text-muted); margin-bottom: 24px; }
.form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-row label { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.form-row input,
.form-row textarea,
.form-row select {
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-size: 15px;
  transition: border-color .15s ease;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus { outline: none; border-color: var(--brand); }
.form-row textarea { min-height: 120px; resize: vertical; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .form-grid-2 { grid-template-columns: 1fr; } }

/* ---------- HELPERS ---------- */
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.text-muted { color: var(--text-muted); }
.text-dim { color: var(--text-dim); }
.divider { height: 1px; background: var(--border); border: 0; margin-block: 0; }
.spacer-sm { height: 24px; }
.spacer-md { height: 48px; }
.spacer-lg { height: 88px; }
.split-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
@media (max-width: 900px) { .split-2 { grid-template-columns: 1fr; gap: 32px; } }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Visually-hidden */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---------- HERO CLIENT NAME STRIP ---------- */
.hero-client-strip {
  margin-top: 14px;
  display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center;
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: .04em;
}
.hero-client-strip .lbl {
  font-size: 11px; color: var(--text-dim);
  letter-spacing: .14em; text-transform: uppercase;
  margin-right: 4px;
}
.hero-client-strip .name { color: var(--text); font-family: var(--font-display); font-weight: 600; font-size: 14px; letter-spacing: -0.01em; }
.hero-client-strip .sep { color: var(--text-dim); }
.hero-client-strip .more { color: var(--brand); font-weight: 600; }

/* ---------- "AS FEATURED IN" PRESS STRIP ---------- */
.featured-strip {
  margin-top: 32px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.featured-strip .label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-dim);
  margin-bottom: 14px;
}
.featured-strip .row {
  display: flex; flex-wrap: wrap; gap: 28px 40px; align-items: center;
}
.featured-strip .pub {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 17px;
  color: var(--text-muted); letter-spacing: -0.015em;
  opacity: .85;
  transition: opacity .2s ease, color .2s ease;
}
.featured-strip .pub:hover { opacity: 1; color: var(--text); }
.featured-strip .pub .ico {
  width: 22px; height: 22px; border-radius: 6px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border-strong);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--brand);
}

/* ---------- FOUNDER PHOTO TREATMENT ---------- */
.founder-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border-strong);
}
.founder-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(.88) brightness(.95);
}
.founder-photo::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(80% 60% at 100% 0%, rgba(255,107,53,.22), transparent 55%),
    linear-gradient(180deg, transparent 50%, rgba(10,10,15,.7) 100%);
  pointer-events: none;
}
.founder-photo .badge {
  position: absolute; bottom: 18px; left: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(10,10,15,.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.14);
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--text);
}
.founder-photo .badge::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand); box-shadow: 0 0 10px var(--brand);
}
.founder-photo.placeholder {
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(80% 80% at 0% 0%, rgba(255,107,53,.22), transparent 50%),
    linear-gradient(135deg, rgba(255,107,53,.10), rgba(107,75,255,.10)),
    var(--surface);
}
.founder-photo.placeholder .ph-content {
  text-align: center;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em;
  color: var(--text-dim); text-transform: uppercase;
}
.founder-photo.placeholder .ph-monogram {
  font-family: var(--font-display); font-weight: 800;
  font-size: 88px; letter-spacing: -0.04em;
  background: var(--grad-ai);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
  margin-bottom: 14px;
}

/* ---------- PRESS / FEATURED-IN BAR ---------- */
.press-bar {
  border-block: 1px solid var(--border);
  padding-block: 28px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.015));
}
.press-bar .label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-dim);
  margin-bottom: 16px; text-align: center;
}
.press-bar .row {
  display: flex; flex-wrap: wrap; gap: 32px 48px; justify-content: center; align-items: center;
  opacity: .7;
}
.press-bar .logo {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  letter-spacing: -0.02em; color: var(--text-muted);
  white-space: nowrap;
}
.press-bar .logo .ico { color: var(--brand); display: inline-flex; }
.press-bar .logo .ico svg { width: 18px; height: 18px; }

/* ---------- CLIENT LOGO WALL ---------- */
.logo-wall {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.logo-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px 18px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  min-height: 110px;
  transition: border-color .2s ease, transform .2s ease;
}
.logo-tile:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.logo-tile .mono {
  width: 36px; height: 36px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; color: #fff; font-size: 14px;
  background: linear-gradient(135deg, #FF6B35, #FF3D7F);
  letter-spacing: -0.01em;
}
.logo-tile .name { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--text); letter-spacing: -0.01em; }
.logo-tile .meta { font-size: 11px; color: var(--text-dim); font-family: var(--font-mono); }
@media (max-width: 980px) { .logo-wall { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px) { .logo-wall { grid-template-columns: repeat(2, 1fr); } }

/* ---------- DASHBOARD / VISUAL ---------- */
.dash {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 22px;
  overflow: hidden;
}
.dash::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(80% 80% at 100% 0%, rgba(255,107,53,.08), transparent 60%);
}
.dash-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
  position: relative;
}
.dash-head .title {
  font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: -0.01em;
}
.dash-head .pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(34, 197, 94, .14); color: #4ADE80;
  border: 1px solid rgba(34,197,94,.3);
}
.dash-head .pill .dot { width: 6px; height: 6px; border-radius: 50%; background: #4ADE80; box-shadow: 0 0 8px #4ADE80; }
.dash-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px;
  margin-bottom: 16px; position: relative;
}
.dash-stat {
  background: var(--bg-elev); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 14px;
}
.dash-stat .label { font-size: 11px; color: var(--text-dim); font-family: var(--font-mono); letter-spacing: .08em; text-transform: uppercase; }
.dash-stat .value { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -0.02em; margin-top: 4px; }
.dash-stat .delta { font-size: 11px; margin-top: 2px; }
.delta.up { color: #4ADE80; }
.delta.down { color: #F87171; }
.dash-chart {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px;
  position: relative;
}
.dash-chart svg { width: 100%; height: auto; display: block; }

/* AI Citation card */
.cite-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px 18px;
  display: flex; gap: 14px;
  align-items: flex-start;
}
.cite-card .badge-ai {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--grad-ai);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 11px; flex-shrink: 0;
  font-family: var(--font-display); letter-spacing: -0.02em;
}
.cite-card .body { font-size: 14px; color: var(--text); line-height: 1.55; }
.cite-card .body strong { color: var(--text); }
.cite-card .body .src { color: var(--brand); font-weight: 600; }
.cite-card .body small { color: var(--text-dim); display: block; margin-top: 6px; font-size: 11px; font-family: var(--font-mono); letter-spacing: .06em; }

/* Tier pricing */
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tier {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 32px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .2s ease, border-color .2s ease;
}
.tier:hover { transform: translateY(-2px); border-color: var(--border-strong); }
.tier.featured {
  background:
    radial-gradient(80% 80% at 50% 0%, rgba(255,107,53,.18), transparent 60%),
    var(--surface);
  border-color: rgba(255,107,53,.35);
  box-shadow: 0 24px 60px -20px rgba(255,107,53,.18);
}
.tier .name { font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--brand); }
.tier .price { font-family: var(--font-display); font-weight: 800; font-size: 36px; letter-spacing: -0.025em; }
.tier .price small { font-size: 14px; color: var(--text-muted); font-weight: 500; }
.tier .desc { color: var(--text-muted); font-size: 14px; }
.tier ul { display: flex; flex-direction: column; gap: 10px; padding-top: 8px; border-top: 1px solid var(--border); }
.tier ul li { font-size: 14px; color: var(--text-muted); padding-left: 24px; position: relative; }
.tier ul li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 14px; height: 14px;
  background: var(--brand); -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6L9 17l-5-5'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6L9 17l-5-5'/></svg>") no-repeat center / contain;
}
@media (max-width: 900px) { .tier-grid { grid-template-columns: 1fr; } }

/* ---------- AI ENGINES BAR ---------- */
.ai-engines {
  display: flex; gap: 14px; flex-wrap: wrap; margin-top: 22px;
}
.ai-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px; border-radius: 999px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border-strong);
  font-size: 14px; color: var(--text);
  font-family: var(--font-display); font-weight: 600;
}
.ai-pill .glyph {
  width: 22px; height: 22px; border-radius: 6px;
  background: var(--grad-ai);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 11px; font-weight: 800;
}

/* ---------- COMPARE TABLE ---------- */
.compare {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.compare-row {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.compare-row:last-child { border-bottom: none; }
.compare-row > * { padding: 18px 22px; font-size: 15px; }
.compare-row .h { font-family: var(--font-display); font-weight: 700; color: var(--text); }
.compare-row.head { background: var(--bg-elev); }
.compare-row.head > * { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); }
.compare-row .us { color: var(--text); font-weight: 600; }
.compare-row .them { color: var(--text-muted); }
.compare-row .check { color: var(--brand); }
@media (max-width: 700px) {
  .compare-row { grid-template-columns: 1fr 1fr; }
  .compare-row > *:first-child { grid-column: 1 / -1; padding-bottom: 4px; border-bottom: 1px solid var(--border); }
  .compare-row.head > *:first-child { display: none; }
}

/* ---------- TIMELINE ---------- */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: ""; position: absolute; left: 8px; top: 12px; bottom: 12px;
  width: 2px; background: linear-gradient(180deg, var(--brand), transparent);
}
.timeline .row { position: relative; padding-bottom: 32px; }
.timeline .row::before {
  content: ""; position: absolute; left: -30px; top: 6px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(255,107,53,.2);
}
.timeline .year { font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; color: var(--brand); margin-bottom: 4px; }
.timeline .title { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.01em; }
.timeline .body { color: var(--text-muted); font-size: 14px; margin-top: 4px; }

/* Page hero (subpage variant) */
.page-hero {
  padding-top: clamp(56px, 6vw, 80px);
  padding-bottom: clamp(40px, 5vw, 60px);
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(60% 60% at 50% 0%, rgba(255,107,53,.16), transparent 60%),
    radial-gradient(50% 50% at 80% 0%, rgba(107,75,255,.12), transparent 60%);
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(36px, 5.6vw, 76px); letter-spacing: -0.035em; max-width: 18ch; margin-inline: auto; }
.page-hero h1 em { font-family: var(--font-serif); font-style: italic; color: var(--brand); font-weight: 400; }
.page-hero .lead { margin-inline: auto; margin-top: 22px; }
.page-hero .actions { margin-top: 30px; display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* Process inline cards */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.feature-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.feature-card .icon-bubble {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,107,53,.1); border: 1px solid rgba(255,107,53,.25);
  display: inline-flex; align-items: center; justify-content: center; color: var(--brand);
}
.feature-card h4 { font-size: 18px; letter-spacing: -0.01em; }
.feature-card p { font-size: 14px; color: var(--text-muted); }
@media (max-width: 700px) { .feature-row { grid-template-columns: 1fr; } }

