/* ── DESIGN SYSTEM & TOKENS ────────────────────────────────────────────── */
:root {
  --bg: #f7f4ef;
  --s1: #ffffff;
  --s2: #eeebe4;
  --s3: #e4e0d8;
  --ink: #0f0e0c;
  --ink2: #3d3b36;
  --ink3: #8a8680;
  --border: rgba(0,0,0,0.08);
  --border2: rgba(0,0,0,0.14);
  --accent: #1a5c2a;
  --accent-mid: #2d8a42;
  --accent-light: #4ab85e;
  --accent-bg: #edf7ef;
  --gold: #8b6c14;
  --gold-bg: #fdf6e3;
  --danger: #c0392b;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'Outfit', system-ui, sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --r: 10px;
  --r-lg: 18px;
  --max: 1140px;
}

/* ── BASE ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--ink); font-family: var(--sans); overflow-x: hidden; }
img { max-width: 100%; height: auto; }

/* ── NAV ───────────────────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,244,239,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
}
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo { font-family: var(--serif); font-size: 22px; color: var(--ink); text-decoration: none; }
.nav-logo em { color: var(--accent-mid); font-style: italic; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--ink2); text-decoration: none; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-cta {
  background: var(--ink); color: white; border: none;
  border-radius: var(--r); padding: 10px 22px;
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  cursor: pointer; transition: background .2s; text-decoration: none;
}
.nav-cta:hover { background: var(--accent); }
.nav-back { font-size: 13px; color: var(--ink2); text-decoration: none; display: flex; align-items: center; gap: 6px; transition: color .2s; }
.nav-back:hover { color: var(--ink); }

/* ── SHARED COMPONENTS ─────────────────────────────────────────────────── */
.section { max-width: var(--max); margin: 0 auto; padding: 80px 40px; }
.section-eyebrow, .eyebrow {
  font-family: var(--mono); font-size: 11px; color: var(--accent);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  font-family: var(--serif); font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05; letter-spacing: -1px; margin-bottom: 16px;
}
.section-title em { color: var(--accent-mid); font-style: italic; }
.section-sub { font-size: 16px; color: var(--ink2); line-height: 1.65; max-width: 520px; }

@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:.3;} }

/* ── HERO ──────────────────────────────────────────────────────────────── */
.hero {
  max-width: var(--max); margin: 0 auto;
  padding: 100px 40px 80px;
  display: grid; grid-template-columns: 1fr 420px; gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-bg); border: 1px solid rgba(45,138,66,.2);
  border-radius: 100px; padding: 5px 14px;
  font-size: 12px; font-weight: 600; color: var(--accent);
  margin-bottom: 24px; font-family: var(--mono);
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-light);
  animation: pulse 2s infinite;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(44px, 5.5vw, 72px);
  line-height: 1.02; letter-spacing: -1.5px;
  margin-bottom: 24px; color: var(--ink);
}
.hero-title em { color: var(--accent-mid); font-style: italic; }
.hero-sub {
  font-size: 18px; color: var(--ink2); line-height: 1.65;
  margin-bottom: 36px; max-width: 480px;
}
.hero-btns { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.btn-hero-primary, .btn-primary {
  background: var(--ink); color: white; border: none;
  border-radius: var(--r); padding: 14px 28px;
  font-family: var(--sans); font-size: 15px; font-weight: 600;
  cursor: pointer; transition: all .2s; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-hero-primary:hover, .btn-primary:hover { background: var(--accent); transform: translateY(-1px); }
.btn-hero-secondary, .btn-secondary {
  background: transparent; color: var(--ink2);
  border: 1.5px solid var(--border2); border-radius: var(--r);
  padding: 14px 24px; font-family: var(--sans); font-size: 15px; font-weight: 500;
  cursor: pointer; transition: all .2s; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-hero-secondary:hover, .btn-secondary:hover { border-color: var(--ink); color: var(--ink); }

.hero-stats {
  display: flex; gap: 28px; margin-top: 40px;
  padding-top: 32px; border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: var(--serif); font-size: 32px;
  color: var(--ink); letter-spacing: -1px;
}
.hero-stat-label { font-size: 13px; color: var(--ink3); margin-top: 2px; }

.hero-card {
  background: var(--s1); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 4px 40px rgba(0,0,0,0.08);
  position: relative;
}
.hero-card-tag {
  position: absolute; top: 16px; right: 16px;
  background: var(--accent-bg); border: 1px solid rgba(45,138,66,.2);
  border-radius: 100px; padding: 3px 10px;
  font-size: 11px; font-weight: 600; color: var(--accent); font-family: var(--mono);
}

/* ── MARQUEE ───────────────────────────────────────────────────────────── */
.marquee-wrap {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--s2); padding: 14px 0; overflow: hidden;
  margin-bottom: 80px;
}
.marquee-track {
  display: flex; gap: 48px; width: max-content;
  animation: marquee 30s linear infinite;
}
@keyframes marquee { from{transform:translateX(0);} to{transform:translateX(-50%);} }
.marquee-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--ink3);
  white-space: nowrap;
}
.marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent-light); }

/* ── HOW IT WORKS ──────────────────────────────────────────────────────── */
.how-bg { background: var(--ink); padding: 80px 0; margin-bottom: 0; }
.how-inner { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
.how-title { font-family: var(--serif); font-size: clamp(32px, 4vw, 52px); color: white; line-height: 1.05; letter-spacing: -1px; margin-bottom: 48px; }
.how-title em { color: var(--accent-light); font-style: italic; }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.how-step {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg); padding: 32px 28px;
  position: relative; transition: background .3s;
}
.how-step:hover { background: rgba(255,255,255,0.07); }
.how-step-num {
  font-family: var(--serif); font-size: 64px; color: rgba(255,255,255,0.06);
  position: absolute; top: 16px; right: 20px; line-height: 1;
}
.how-step-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(74,184,94,.15); border: 1px solid rgba(74,184,94,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 18px;
}
.how-step-title { font-size: 18px; font-weight: 600; color: white; margin-bottom: 10px; }
.how-step-desc { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.65; }
.how-step-tag {
  display: inline-block; margin-top: 16px;
  background: rgba(74,184,94,.1); border: 1px solid rgba(74,184,94,.2);
  border-radius: 100px; padding: 3px 10px;
  font-size: 11px; color: var(--accent-light); font-family: var(--mono);
}

/* ── CATALOG & TEAMS ───────────────────────────────────────────────────── */
.catalog-section { padding: 80px 0; background: var(--bg); }
.catalog-inner { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
.catalog-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; }
.catalog-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn {
  background: var(--s1); border: 1px solid var(--border);
  border-radius: 100px; padding: 6px 16px;
  font-size: 13px; font-weight: 500; color: var(--ink2);
  cursor: pointer; transition: all .2s; font-family: var(--sans);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--ink); color: white; border-color: var(--ink);
}
.teams-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.team-card {
  background: var(--s1); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: all .25s; cursor: pointer; text-decoration: none;
  display: block; color: inherit;
}
.team-card:hover {
  border-color: var(--border2); transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.team-card-head { padding: 20px 20px 16px; }
.team-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 12px; }
.team-card-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.team-card-badge {
  background: var(--accent-bg); border: 1px solid rgba(45,138,66,.15);
  border-radius: 100px; padding: 3px 10px;
  font-size: 10px; font-weight: 600; color: var(--accent); font-family: var(--mono);
}
.team-card-name { font-family: var(--serif); font-size: 18px; margin-bottom: 5px; letter-spacing: -.3px; }
.team-card-tagline { font-size: 13px; color: var(--ink2); line-height: 1.5; }
.team-card-divider { height: 1px; background: var(--border); margin: 0 20px; }
.team-card-body { padding: 14px 20px; }
.team-card-agents { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 12px; }
.team-card-agent-tag {
  background: var(--s2); border-radius: 100px;
  padding: 3px 9px; font-size: 11px; color: var(--ink2);
}
.team-card-metrics { display: flex; gap: 6px; }
.team-card-metric {
  flex: 1; background: var(--s2); border-radius: var(--r);
  padding: 6px 8px; text-align: center;
}
.team-card-metric-val { font-size: 14px; font-weight: 700; color: var(--accent); font-family: var(--mono); }
.team-card-metric-label { font-size: 9px; color: var(--ink3); margin-top: 1px; line-height: 1.3; }
.team-card-footer {
  padding: 12px 20px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.team-card-price { font-size: 16px; font-weight: 600; color: var(--ink); }
.team-card-try {
  background: var(--ink); color: white; border: none;
  border-radius: 8px; padding: 7px 16px;
  font-size: 12px; font-weight: 600; cursor: pointer;
  transition: background .2s; font-family: var(--sans);
}
.team-card-try:hover { background: var(--accent); }

/* ── PRICING ───────────────────────────────────────────────────────────── */
.pricing-section { background: var(--s2); padding: 80px 0; }
.pricing-inner { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.pricing-card {
  background: var(--s1); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px 28px;
  position: relative; transition: all .2s;
}
.pricing-card.featured {
  background: var(--ink); border-color: var(--ink);
  transform: scale(1.03);
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}
.pricing-popular {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent-light); color: white;
  border-radius: 100px; padding: 4px 14px;
  font-size: 11px; font-weight: 700; font-family: var(--mono); white-space: nowrap;
}
.pricing-tier { font-size: 13px; font-weight: 600; color: var(--ink3); letter-spacing: 1px; text-transform: uppercase; font-family: var(--mono); margin-bottom: 8px; }
.pricing-card.featured .pricing-tier { color: rgba(255,255,255,.5); }
.pricing-price { font-family: var(--serif); font-size: 48px; letter-spacing: -2px; margin-bottom: 4px; }
.pricing-card.featured .pricing-price { color: white; }
.pricing-price-note { font-size: 13px; color: var(--ink3); margin-bottom: 24px; font-family: var(--mono); }
.pricing-card.featured .pricing-price-note { color: rgba(255,255,255,.4); }
.pricing-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-feature { display: flex; gap: 10px; font-size: 14px; color: var(--ink2); }
.pricing-card.featured .pricing-feature { color: rgba(255,255,255,.75); }
.pricing-feature::before { content: '✓'; color: var(--accent-light); flex-shrink: 0; font-weight: 700; }
.pricing-btn {
  width: 100%; border-radius: var(--r); padding: 13px;
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all .2s; border: none;
}
.pricing-btn-ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--border2);
}
.pricing-btn-ghost:hover { background: var(--ink); color: white; border-color: var(--ink); }
.pricing-btn-primary { background: white; color: var(--ink); }
.pricing-btn-primary:hover { background: var(--accent-bg); }
.pricing-btn-solid { background: var(--ink); color: white; }
.pricing-btn-solid:hover { background: var(--accent); }

/* ── CTA BAND ──────────────────────────────────────────────────────────── */
.cta-band { background: var(--accent); padding: 80px 40px; text-align: center; }
.cta-band-title { font-family: var(--serif); font-size: clamp(32px, 4vw, 52px); color: white; letter-spacing: -1px; margin-bottom: 16px; }
.cta-band-sub { font-size: 18px; color: rgba(255,255,255,.75); margin-bottom: 32px; }
.cta-band-btn {
  background: white; color: var(--accent); border: none;
  border-radius: var(--r); padding: 16px 36px;
  font-family: var(--sans); font-size: 16px; font-weight: 700;
  cursor: pointer; transition: all .2s;
}
.cta-band-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.cta-band-note { margin-top: 14px; font-size: 13px; color: rgba(255,255,255,.5); font-family: var(--mono); }

/* ── FOOTER ────────────────────────────────────────────────────────────── */
footer {
  background: var(--ink); padding: 40px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-logo { font-family: var(--serif); font-size: 20px; color: white; text-decoration: none; }
.footer-logo em { color: var(--accent-light); font-style: italic; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: rgba(255,255,255,.8); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.25); font-family: var(--mono); }

/* ── BLOG PAGE ───────────────────────────────────────────────────────── */
.blog-hero { max-width: var(--max); margin: 0 auto; padding: 72px 40px 56px; }
.blog-title { font-family: var(--serif); font-size: clamp(40px, 5vw, 64px); line-height: 1.05; letter-spacing: -1.5px; margin-bottom: 16px; }
.blog-title em { color: var(--accent-mid); font-style: italic; }
.blog-sub { font-size: 17px; color: var(--ink2); line-height: 1.65; max-width: 520px; }

.blog-filters { max-width: var(--max); margin: 0 auto; padding: 0 40px 32px; display: flex; gap: 8px; flex-wrap: wrap; border-bottom: 1px solid var(--border); }

.blog-grid-wrap { max-width: var(--max); margin: 0 auto; padding: 48px 40px 80px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.post-card { background: var(--s1); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: all .25s; cursor: pointer; text-decoration: none; color: inherit; display: block; }
.post-card:hover { border-color: var(--border2); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,.07); }
.post-card-top { padding: 24px 24px 16px; }
.post-card-cat { display: inline-flex; align-items: center; gap: 6px; background: var(--accent-bg); border: 1px solid rgba(45,138,66,.15); border-radius: 100px; padding: 3px 12px; font-size: 11px; font-weight: 600; color: var(--accent); font-family: var(--mono); margin-bottom: 14px; }
.post-card-title { font-family: var(--serif); font-size: 20px; line-height: 1.25; letter-spacing: -.3px; margin-bottom: 10px; }
.post-card-excerpt { font-size: 13px; color: var(--ink2); line-height: 1.65; }
.post-card-divider { height: 1px; background: var(--border); margin: 0 24px; }
.post-card-footer { padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; }
.post-card-meta { font-size: 12px; color: var(--ink3); font-family: var(--mono); }
.post-card-team { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--accent); font-weight: 500; }
.post-card-team-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-light); }

.newsletter-band { background: var(--ink); padding: 72px 40px; text-align: center; }
.nl-title { font-family: var(--serif); font-size: clamp(28px, 3.5vw, 44px); color: white; letter-spacing: -1px; margin-bottom: 12px; }
.nl-title em { color: var(--accent-light); font-style: italic; }
.nl-sub { font-size: 16px; color: rgba(255,255,255,0.6); margin-bottom: 32px; }
.nl-form { display: flex; gap: 10px; max-width: 440px; margin: 0 auto; }
.nl-input { flex: 1; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--r); padding: 13px 16px; color: white; font-family: var(--sans); font-size: 14px; outline: none; transition: border-color .2s; }
.nl-input:focus { border-color: var(--accent-light); }
.nl-input::placeholder { color: rgba(255,255,255,0.4); }
.nl-btn { background: var(--accent-light); color: white; border: none; border-radius: var(--r); padding: 13px 24px; font-family: var(--sans); font-size: 14px; font-weight: 600; cursor: pointer; transition: all .2s; white-space: nowrap; }
.nl-btn:hover { background: var(--accent-mid); }
.nl-note { margin-top: 12px; font-size: 12px; color: rgba(255,255,255,0.3); font-family: var(--mono); }

/* ── CONTACT PAGE ──────────────────────────────────────────────────────── */
.page-wrap { max-width: var(--max); margin: 0 auto; padding: 72px 40px 80px; }
.contact-hero { max-width: 600px; margin-bottom: 64px; }
.hero-title em { color: var(--accent-mid); font-style: italic; }
.contact-grid { display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: start; }

.contact-form { background: var(--s1); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 36px; }
.form-title { font-family: var(--serif); font-size: 24px; margin-bottom: 6px; letter-spacing: -0.3px; }
.form-sub { font-size: 14px; color: var(--ink2); margin-bottom: 28px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 12px; font-weight: 600; color: var(--ink3); font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.field input, .field textarea, .field select { width: 100%; background: var(--s2); border: 1.5px solid var(--border); border-radius: var(--r); padding: 12px 14px; color: var(--ink); font-family: var(--sans); font-size: 14px; outline: none; transition: border-color .2s, box-shadow .2s; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent-mid); box-shadow: 0 0 0 3px rgba(45,138,66,0.1); }
.field input::placeholder, .field textarea::placeholder { color: var(--ink3); }
.field textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.field select option { background: var(--s1); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-error { font-size: 12px; color: var(--danger); font-family: var(--mono); margin-top: 4px; display: none; }

.submit-btn { width: 100%; background: var(--ink); color: white; border: none; border-radius: var(--r); padding: 14px; font-family: var(--sans); font-size: 15px; font-weight: 600; cursor: pointer; transition: background .2s; }
.submit-btn:hover { background: var(--accent); }
.submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success-icon { font-size: 48px; margin-bottom: 16px; }
.form-success-title { font-family: var(--serif); font-size: 26px; margin-bottom: 8px; }
.form-success-sub { font-size: 15px; color: var(--ink2); line-height: 1.6; }

.contact-sidebar { display: flex; flex-direction: column; gap: 16px; }
.info-card { background: var(--s1); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; }
.info-card-title { font-size: 16px; font-weight: 600; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.info-card-icon { font-size: 20px; }
.info-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: 14px; color: var(--ink2); line-height: 1.55; }
.info-item:last-child { margin-bottom: 0; }
.info-item-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.info-item a { color: var(--accent-mid); text-decoration: none; }
.info-item a:hover { text-decoration: underline; }

.agency-card { background: var(--ink); border-radius: var(--r-lg); padding: 28px; }
.agency-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); font-family: var(--mono); margin-bottom: 10px; }
.agency-title { font-family: var(--serif); font-size: 22px; color: white; margin-bottom: 8px; }
.agency-title em { color: var(--accent-light); font-style: italic; }
.agency-desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 20px; }
.agency-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.agency-feature { display: flex; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.7); }
.agency-feature::before { content: '✓'; color: var(--accent-light); font-weight: 700; }
.agency-price { font-family: var(--serif); font-size: 28px; color: white; margin-bottom: 4px; }
.agency-price-note { font-size: 12px; color: rgba(255,255,255,0.4); font-family: var(--mono); margin-bottom: 16px; }
.agency-btn { width: 100%; background: white; color: var(--ink); border: none; border-radius: var(--r); padding: 12px; font-family: var(--sans); font-size: 14px; font-weight: 600; cursor: pointer; transition: all .2s; }
.agency-btn:hover { background: var(--accent-bg); }

.faq-card { background: var(--s1); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.faq-title { padding: 18px 20px; font-size: 15px; font-weight: 600; border-bottom: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border: none; }
.faq-q { padding: 14px 20px; font-size: 14px; font-weight: 500; cursor: pointer; display: flex; align-items: center; justify-content: space-between; transition: background .2s; }
.faq-q:hover { background: var(--s2); }
.faq-q-arrow { font-size: 12px; color: var(--ink3); transition: transform 0.2s; }
.faq-a { display: none; padding: 0 20px 14px; font-size: 13px; color: var(--ink2); line-height: 1.65; }
.faq-item.open .faq-q-arrow { transform: rotate(180deg); }
.faq-item.open .faq-a { display: block; }

/* ── TEAM & AGENT PAGES ────────────────────────────────────────────────── */
.team-hero { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; margin-bottom: 64px; }
.team-hero-left {}
.hero-tag, .team-hero-tag { display: inline-flex; align-items: center; gap: 8px; background: var(--accent-bg); border: 1px solid rgba(45,138,66,0.2); border-radius: 100px; padding: 4px 14px; font-size: 12px; font-weight: 600; color: var(--accent); margin-bottom: 20px; font-family: var(--mono); }
.hero-tag::before, .team-hero-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-light); animation: pulse 2s infinite; }

.team-hero-title { font-family: var(--serif); font-size: clamp(36px, 4vw, 56px); line-height: 1.05; letter-spacing: -1px; margin-bottom: 14px; }
.team-hero-tagline { font-size: 17px; color: var(--ink2); line-height: 1.65; margin-bottom: 24px; }
.team-hero-problem, .hero-problem { background: var(--accent-bg); border-left: 4px solid var(--accent-mid); border-radius: 0 var(--r) var(--r) 0; padding: 14px 18px; font-size: 14px; color: var(--ink2); line-height: 1.65; margin-bottom: 24px; }
.team-hero-problem strong, .hero-problem strong { color: var(--accent); display: block; margin-bottom: 4px; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; font-family: var(--mono); }

.agents-grid { display: flex; flex-direction: column; gap: 8px; }
.agent-row-item { display: flex; align-items: center; gap: 10px; background: var(--s1); border: 1px solid var(--border); border-radius: var(--r); padding: 10px 14px; }
.agent-row-emoji { font-size: 18px; flex-shrink: 0; }
.agent-row-name { font-size: 13px; font-weight: 500; flex: 1; }
.agent-row-desc { font-size: 12px; color: var(--ink3); line-height: 1.4; }
.agent-row-folder, .agent-folder { font-size: 10px; color: var(--ink3); font-family: var(--mono); background: var(--s2); padding: 2px 8px; border-radius: 100px; margin-left: auto; flex-shrink: 0; }

.use-case-item { display: flex; gap: 10px; font-size: 14px; color: var(--ink2); padding: 10px 14px; background: var(--s1); border: 1px solid var(--border); border-radius: var(--r); }
.use-case-arrow { color: var(--accent-mid); flex-shrink: 0; font-weight: 700; }

/* ── DEMO PANEL & CHAT ─────────────────────────────────────────────────── */
.demo-column { position: sticky; top: 80px; }
.demo-panel { background: var(--s1); border: 1.5px solid var(--border2); border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 4px 32px rgba(0,0,0,0.08); display: flex; flex-direction: column; height: calc(100vh - 88px); min-height: 680px; }
.demo-topbar { padding: 16px 20px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 12px; flex-shrink: 0; background: var(--s2); }
.demo-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-light)); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.demo-name { font-size: 15px; font-weight: 600; flex: 1; }
.demo-sub { font-size: 12px; color: var(--ink3); }
.session-pill { display: flex; align-items: center; gap: 6px; background: var(--s1); border: 1px solid var(--border); border-radius: 100px; padding: 6px 14px; font-size: 12px; font-weight: 600; font-family: var(--mono); }
.sdots { display: flex; gap: 4px; }
.sdot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent-light); transition: all 0.3s; }
.sdot.used { background: var(--s3); border: 1px solid var(--border); }

.chat-win { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 12px; min-height: 0; }
.msg { display: flex; gap: 10px; align-items: flex-start; animation: msgIn 0.2s ease; }
@keyframes msgIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }
.msg.user-msg { flex-direction: row-reverse; }
.msg-av { width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 14px; border: 1px solid var(--border); }
.msg-av.bot { background: linear-gradient(135deg, var(--accent), var(--accent-light)); border: none; }
.msg-av.usr { background: var(--s2); }
.bbl { max-width: 82%; background: var(--s2); border: 1px solid var(--border); border-radius: 14px 14px 14px 3px; padding: 13px 16px; font-size: 15px; line-height: 1.7; color: var(--ink); }
.msg.user-msg .bbl { border-radius: 14px 14px 3px 14px; background: var(--accent-bg); border-color: rgba(45,138,66,0.2); }
.bbl strong { color: var(--accent); }

.typing-dots { display: flex; gap: 4px; padding: 2px 0; }
.typing-dots span { width: 5px; height: 5px; border-radius: 50%; background: var(--accent-mid); animation: tdot 1.2s infinite; opacity: 0.2; }
@keyframes tdot { 0%, 80%, 100% { opacity: 0.2; transform: scale(0.8); } 40% { opacity: 1; transform: scale(1); } }

/* ── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media(max-width:900px) {
  .hero, .team-hero, .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-card, .side-card { display: none; }
  .how-steps, .teams-grid, .pricing-grid, .blog-grid, .field-row { grid-template-columns: 1fr; }
  .catalog-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  nav, .section, .catalog-inner, .pricing-inner, .page-wrap, footer { padding-left: 20px; padding-right: 20px; }
  .hero { padding: 60px 20px 40px; }
  .pricing-card.featured { transform: none; }
  .demo-panel { height: 75vh; min-height: 520px; }
}

/* ── HERO DARK SECTION ──────────────────────────────────────────────────── */
.hero-section {
  background: linear-gradient(160deg, #060c08 0%, #0b1610 45%, #060c08 100%);
  position: relative;
  overflow: hidden;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none;
}
.hero-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(74,184,94,.13) 0%, transparent 65%);
  top: -240px; right: -120px;
  animation: orbDrift 14s ease-in-out infinite;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,92,42,.22) 0%, transparent 65%);
  bottom: -140px; left: -70px;
  animation: orbDrift 10s ease-in-out infinite reverse;
  animation-delay: -4s;
}
.hero-orb-3 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(74,184,94,.07) 0%, transparent 65%);
  top: 35%; left: 40%;
  animation: orbDrift 18s ease-in-out infinite;
  animation-delay: -9s;
}
@keyframes orbDrift {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(22px,-32px) scale(1.05); }
  66% { transform: translate(-16px,20px) scale(.97); }
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(74,184,94,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,184,94,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 10%, transparent 80%);
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 10%, transparent 80%);
}

/* Hero content inside dark section */
.hero-section .hero { position: relative; z-index: 1; }
.hero-section .hero-eyebrow {
  background: rgba(74,184,94,.12);
  border-color: rgba(74,184,94,.35);
  color: var(--accent-light);
}
.hero-section .hero-title { color: #f5f3ee; }
.hero-section .hero-title em { color: var(--accent-light); }
.hero-section .hero-sub { color: rgba(245,243,238,.58); }
.hero-section .hero-stats { border-top-color: rgba(255,255,255,.08); margin-top: 36px; padding-top: 28px; }
.hero-section .hero-stat-num { color: white; }
.hero-section .hero-stat-label { color: rgba(255,255,255,.38); }

/* Buttons on dark hero */
.hero-section .btn-hero-primary {
  background: white; color: var(--ink);
  box-shadow: 0 4px 28px rgba(0,0,0,.22);
}
.hero-section .btn-hero-primary:hover {
  background: var(--accent-light); color: white;
  box-shadow: 0 8px 36px rgba(74,184,94,.38);
  transform: translateY(-2px);
}
.hero-section .btn-hero-secondary {
  border-color: rgba(255,255,255,.18); color: rgba(255,255,255,.62);
  background: rgba(255,255,255,.04);
}
.hero-section .btn-hero-secondary:hover {
  border-color: rgba(255,255,255,.5); color: white;
  background: rgba(255,255,255,.08);
}

/* Glass-morphism hero card */
.hero-section .hero-card {
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(255,255,255,.11);
  backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  box-shadow:
    0 28px 90px rgba(0,0,0,.55),
    0 0 0 1px rgba(255,255,255,.04),
    inset 0 1px 0 rgba(255,255,255,.1);
  animation: heroCardFloat 7s ease-in-out infinite;
}
@keyframes heroCardFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-section .hero-card-tag {
  background: rgba(74,184,94,.2); border-color: rgba(74,184,94,.4);
  color: var(--accent-light);
}
.hero-section .hero-card-name { color: white; }
.hero-section .hero-card-tagline { color: rgba(255,255,255,.5); }
.hero-section .hero-card-body { border-top: 1px solid rgba(255,255,255,.07); }
.hero-section .hero-card-agent {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.08);
}
.hero-section .hero-card-agent span:nth-child(2) { color: rgba(255,255,255,.82); }
.hero-section .hero-card-agent-role {
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.35);
}
.hero-section .hero-card-metric {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.07);
}
.hero-section .hero-card-metric-val { color: var(--accent-light); }
.hero-section .hero-card-metric-label { color: rgba(255,255,255,.32); }
.hero-section .hero-card-footer {
  border-top: 1px solid rgba(255,255,255,.07);
  background: rgba(0,0,0,.12);
}
.hero-section .hero-card-price { color: rgba(255,255,255,.9); }
.hero-section .hero-card-cta {
  background: var(--accent-mid); color: white;
}
.hero-section .hero-card-cta:hover {
  background: var(--accent-light);
  box-shadow: 0 4px 20px rgba(74,184,94,.4);
  transform: translateY(-1px);
}

/* ── HERO CARD INNER STYLES (missing in original) ───────────────────────── */
.hero-card-head { padding: 24px 22px 18px; }
.hero-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 12px;
}
.hero-card-name { font-family: var(--serif); font-size: 19px; margin-bottom: 6px; letter-spacing: -.3px; }
.hero-card-tagline { font-size: 13px; color: var(--ink2); line-height: 1.5; }
.hero-card-body { padding: 16px 22px 18px; border-top: 1px solid var(--border); }
.hero-card-agents { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.hero-card-agent {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 10px; background: var(--s2);
  border-radius: 8px; font-size: 13px;
}
.hero-card-agent-role {
  font-size: 10px; color: var(--ink3); font-family: var(--mono);
  background: var(--s3); padding: 2px 6px; border-radius: 100px; margin-left: auto;
}
.hero-card-metrics { display: flex; gap: 8px; }
.hero-card-metric { flex: 1; background: var(--s2); border-radius: var(--r); padding: 8px; text-align: center; }
.hero-card-metric-val { font-size: 15px; font-weight: 700; color: var(--accent); font-family: var(--mono); }
.hero-card-metric-label { font-size: 10px; color: var(--ink3); margin-top: 2px; line-height: 1.3; }
.hero-card-footer { padding: 14px 22px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.hero-card-price { font-size: 16px; font-weight: 600; }
.hero-card-cta {
  background: var(--ink); color: white; border: none;
  border-radius: 8px; padding: 9px 18px;
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all .2s;
}
.hero-card-cta:hover { background: var(--accent); }

/* ── MISSING SHARED COMPONENTS ──────────────────────────────────────────── */
.blog-eyebrow { font-family: var(--mono); font-size: 11px; color: var(--accent); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }

.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink3); margin-bottom: 28px; font-family: var(--mono); }
.breadcrumb a { color: var(--ink3); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--ink); }
.bc-sep, .breadcrumb-sep { opacity: .4; }

.section-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink3); font-family: var(--mono); margin-bottom: 16px; }

.spinner, .loading-spinner {
  width: 36px; height: 36px; border: 3px solid var(--border);
  border-top-color: var(--accent-mid); border-radius: 50%;
  animation: spin .7s linear infinite; margin: 0 auto 14px;
}
@keyframes spin { to { transform: rotate(360deg); } }

#loadingState { max-width: 720px; margin: 0 auto; padding: 120px 40px; text-align: center; }
#errorState { display: none; max-width: 720px; margin: 0 auto; padding: 120px 40px; text-align: center; }

.page-inner { max-width: var(--max); margin: 0 auto; padding: 40px 40px 80px; }

/* ── METRICS ─────────────────────────────────────────────────────────────── */
.metrics-row { display: flex; gap: 24px; margin-top: 24px; flex-wrap: wrap; }
.metric-box { display: flex; flex-direction: column; }
.metric-val { font-family: var(--serif); font-size: 28px; color: var(--accent); letter-spacing: -1px; line-height: 1; }
.metric-label { font-size: 12px; color: var(--ink3); margin-top: 4px; }

.metrics-section { margin-bottom: 24px; }
.metrics-grid { display: flex; gap: 12px; flex-wrap: wrap; }
.metric-item { background: var(--s2); border-radius: var(--r); padding: 10px 14px; flex: 1; min-width: 80px; }
.metric-item .metric-val { font-size: 22px; }
.metric-item .metric-label { font-size: 11px; }

/* ── SIDE CARD (team-page.html) ─────────────────────────────────────────── */
.side-card {
  background: var(--s1); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,.07);
  position: sticky; top: 80px;
}
.side-card-head { padding: 24px; text-align: center; border-bottom: 1px solid var(--border); background: var(--s2); }
.side-card-emoji { font-size: 40px; margin-bottom: 10px; }
.side-card-name { font-family: var(--serif); font-size: 18px; margin-bottom: 6px; }
.side-card-niche { font-size: 12px; color: var(--ink3); font-family: var(--mono); }
.side-card-body { padding: 20px 24px; }
.side-price { font-family: var(--serif); font-size: 36px; letter-spacing: -1px; margin-bottom: 2px; }
.side-price-note { font-size: 12px; color: var(--ink3); font-family: var(--mono); margin-bottom: 14px; }
.side-btn { width: 100%; background: var(--ink); color: white; border: none; border-radius: var(--r); padding: 13px; font-family: var(--sans); font-size: 14px; font-weight: 600; cursor: pointer; transition: background .2s; margin-bottom: 8px; display: block; }
.side-btn:hover { background: var(--accent); }
.side-btn-ghost { width: 100%; background: transparent; color: var(--ink); border: 1.5px solid var(--border2); border-radius: var(--r); padding: 12px; font-family: var(--sans); font-size: 13px; font-weight: 500; cursor: pointer; transition: all .2s; margin-bottom: 16px; display: block; }
.side-btn-ghost:hover { background: var(--ink); color: white; border-color: var(--ink); }
.side-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.side-feature { display: flex; gap: 8px; font-size: 13px; color: var(--ink2); }
.side-feature::before { content: '✓'; color: var(--accent-light); font-weight: 700; flex-shrink: 0; }
.side-note { font-size: 11px; color: var(--ink3); font-family: var(--mono); text-align: center; }

/* ── AGENT CARDS ─────────────────────────────────────────────────────────── */
.agent-card { display: flex; align-items: flex-start; gap: 12px; background: var(--s1); border: 1px solid var(--border); border-radius: var(--r); padding: 14px 16px; }
.agent-emoji { font-size: 22px; flex-shrink: 0; }
.agent-name { font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.agent-folder { font-size: 10px; color: var(--ink3); font-family: var(--mono); background: var(--s2); padding: 2px 8px; border-radius: 100px; display: inline-block; margin-bottom: 4px; }
.agent-desc { font-size: 13px; color: var(--ink2); line-height: 1.5; }

/* ── USE CASES ───────────────────────────────────────────────────────────── */
.usecases-grid { display: flex; flex-direction: column; gap: 8px; }
.usecase-card { display: flex; gap: 10px; align-items: flex-start; background: var(--s1); border: 1px solid var(--border); border-radius: var(--r); padding: 12px 14px; }
.usecase-arrow { color: var(--accent-mid); font-weight: 700; flex-shrink: 0; }
.usecase-text { font-size: 14px; color: var(--ink2); line-height: 1.5; }

.team-hero-agents { margin-bottom: 24px; }
.team-hero-agents-title { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink3); font-family: var(--mono); margin-bottom: 10px; }
.use-cases-section { margin-bottom: 24px; }
.use-cases-list { display: flex; flex-direction: column; gap: 6px; }
.use-cases-more-btn { background: none; border: none; cursor: pointer; font-size: 13px; color: var(--accent-mid); font-family: var(--mono); padding: 4px 0; }
.use-cases-more-btn:hover { color: var(--accent); }

/* ── RELATED TEAMS GRID ──────────────────────────────────────────────────── */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.related-card { background: var(--s1); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 18px; text-decoration: none; color: inherit; transition: all .2s; display: block; }
.related-card:hover { border-color: var(--border2); transform: translateY(-2px); box-shadow: 0 4px 20px rgba(0,0,0,.07); }
.related-emoji { font-size: 24px; margin-bottom: 8px; }
.related-name { font-family: var(--serif); font-size: 16px; margin-bottom: 4px; letter-spacing: -.2px; }
.related-tagline { font-size: 12px; color: var(--ink2); line-height: 1.5; margin-bottom: 10px; }
.related-cta { font-size: 12px; color: var(--accent-mid); font-weight: 600; }

/* ── PRICE BOX (team.html demo) ──────────────────────────────────────────── */
.price-box { background: var(--s1); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 20px; margin-bottom: 32px; }
.price-box-price { font-family: var(--serif); font-size: 36px; letter-spacing: -1px; margin-bottom: 2px; }
.price-box-note { font-size: 12px; color: var(--ink3); font-family: var(--mono); margin-bottom: 12px; }
.price-box-btn { width: 100%; background: var(--ink); color: white; border: none; border-radius: var(--r); padding: 13px; font-family: var(--sans); font-size: 14px; font-weight: 600; cursor: pointer; transition: background .2s; margin-bottom: 12px; }
.price-box-btn:hover { background: var(--accent); }
.price-box-features { display: flex; flex-direction: column; gap: 6px; }
.price-box-feature { font-size: 13px; color: var(--ink2); display: flex; gap: 8px; }
.price-box-feature::before { content: '✓'; color: var(--accent-light); font-weight: 700; flex-shrink: 0; }

/* ── CHAT INPUT AREA ────────────────────────────────────────────────────── */
.chat-input-area { border-top: 1px solid var(--border); padding: 12px 16px; flex-shrink: 0; background: var(--s1); }
.sessions-note { font-size: 11px; color: var(--ink3); font-family: var(--mono); margin-bottom: 8px; text-align: center; }
.sessions-note strong { color: var(--accent); }
.chat-input-row { display: flex; gap: 8px; align-items: flex-end; }
.chat-ta {
  flex: 1; background: var(--s2); border: 1.5px solid var(--border);
  border-radius: 10px; padding: 10px 14px; font-family: var(--sans);
  font-size: 14px; color: var(--ink); outline: none; resize: none;
  line-height: 1.5; transition: border-color .2s; min-height: 42px;
}
.chat-ta:focus { border-color: var(--accent-mid); }
.chat-ta::placeholder { color: var(--ink3); }
.btn-send {
  background: var(--ink); color: white; border: none;
  border-radius: 10px; padding: 10px 18px;
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  cursor: pointer; transition: background .2s; white-space: nowrap; flex-shrink: 0;
}
.btn-send:hover { background: var(--accent); }
.btn-send:disabled { opacity: .5; cursor: not-allowed; }

/* Suggestion hint buttons */
#demoHints { padding: 8px 16px; display: flex; flex-wrap: wrap; gap: 6px; border-top: 1px solid var(--border); flex-shrink: 0; }
.hint-btn {
  background: var(--s2); border: 1px solid var(--border);
  border-radius: 100px; padding: 6px 12px;
  font-family: var(--sans); font-size: 12px; color: var(--ink2);
  cursor: pointer; transition: all .2s; white-space: nowrap;
}
.hint-btn:hover { background: var(--accent-bg); border-color: rgba(45,138,66,.2); color: var(--accent); }

/* ── PAYWALL PANEL ──────────────────────────────────────────────────────── */
.paywall {
  padding: 28px 24px; text-align: center;
  display: none; flex-direction: column; align-items: center;
  background: var(--s1); border-top: 1px solid var(--border); flex-shrink: 0;
}
.paywall-icon { font-size: 36px; margin-bottom: 12px; }
.paywall-title { font-family: var(--serif); font-size: 22px; margin-bottom: 8px; letter-spacing: -.3px; }
.paywall-title em { color: var(--accent-mid); font-style: italic; }
.paywall-sub { font-size: 14px; color: var(--ink2); margin-bottom: 20px; line-height: 1.6; max-width: 280px; }
.paywall-btn { width: 100%; max-width: 300px; background: var(--ink); color: white; border: none; border-radius: var(--r); padding: 14px; font-family: var(--sans); font-size: 15px; font-weight: 600; cursor: pointer; transition: background .2s; margin-bottom: 8px; }
.paywall-btn:hover { background: var(--accent); }
.paywall-note { font-size: 11px; color: var(--ink3); font-family: var(--mono); }

/* ── MOBILE NAV HAMBURGER ───────────────────────────────────────────────── */
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 6px; color: var(--ink); flex-direction: column; gap: 5px; border-radius: 6px;
  -webkit-tap-highlight-color: transparent;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: currentColor; border-radius: 2px; transition: all .3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: rgba(247,244,239,.98); backdrop-filter: blur(16px);
  z-index: 98; padding: 20px 16px;
  flex-direction: column; gap: 4px;
  border-top: 1px solid var(--border);
  overflow-y: auto;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  display: block; padding: 12px 16px; font-size: 16px; font-weight: 500;
  color: var(--ink2); text-decoration: none; border-radius: var(--r); transition: all .2s;
}
.nav-mobile-menu a:hover { background: var(--s2); color: var(--ink); }
.nav-mobile-menu .nav-cta { text-align: center; margin-top: 12px; font-size: 15px; padding: 14px; }

/* ── CTA BAND OVERRIDE for team-page.html ────────────────────────────────── */
.page-wrap .cta-band { border-radius: var(--r-lg); margin: 0 0 64px; }

/* ── ADDITIONAL RESPONSIVE ──────────────────────────────────────────────── */
@media(max-width:900px) {
  .nav-hamburger { display: flex; }
  .nav-links { display: none; }
  .hero-section .hero-card { display: block !important; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .page-inner { padding-left: 20px; padding-right: 20px; }
  .metrics-grid { gap: 8px; }
  .hero-grid-bg { display: none; }
  .hero-orb { filter: blur(60px); }
}
@media(max-width:600px) {
  .related-grid { grid-template-columns: 1fr; }
  .metrics-row { gap: 16px; }
  .hero-card-metrics { flex-direction: column; gap: 6px; }
}
