/* ============ HERO ============ */
.hero {
  background: var(--navy-base);
  color: var(--text-inverse);
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--accent);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(36,54,80,0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36,54,80,0.4) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: center center;
  opacity: 0.4;
  pointer-events: none;
}
.hero-grid {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  min-height: 560px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
.hero-content {
  padding: 72px 64px 72px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--accent);
}
.hero-title {
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  color: var(--text-inverse);
}
.hero-title .hl {
  color: var(--accent);
  border-bottom: 3px solid var(--accent);
  padding-bottom: 2px;
}
.hero-title-sub {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-inverse-muted);
  letter-spacing: 0.05em;
  margin-bottom: 28px;
  padding-left: 16px;
  border-left: 2px solid var(--navy-border);
}
.hero-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-inverse-dim);
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-desc strong { color: var(--text-inverse); font-weight: 600; }
.hero-cta-group { display: flex; gap: 12px; flex-wrap: wrap; align-items: stretch; }
.btn-outline {
  background: transparent;
  color: var(--text-inverse);
  padding: 14px 22px;
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(236,240,243,0.25);
  transition: all 0.15s;
}
.btn-outline:hover { background: rgba(236,240,243,0.06); border-color: var(--text-inverse); }
/* HERO IMAGE */
.hero-image {
  position: relative;
  margin: 32px -32px 32px 0;
  background: var(--navy-darker);
  overflow: hidden;
  border: 1px solid var(--navy-border);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.08) brightness(0.85) saturate(0.7);
  display: block;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,24,40,0.55) 0%, rgba(10,24,40,0.15) 50%, rgba(232,82,28,0.06) 100%);
  pointer-events: none;
}
.hero-image-overlay {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(5,11,20,0.85);
  backdrop-filter: blur(4px);
  padding: 12px 16px;
  border-left: 2px solid var(--accent);
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-inverse-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}
.hero-image-overlay .val {
  font-size: 11px;
  color: var(--accent);
  font-weight: 700;
  margin-top: 4px;
  letter-spacing: 0.05em;
}
.hero-image-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--text-inverse);
  background: var(--accent);
  padding: 5px 10px;
  letter-spacing: 0.12em;
  font-weight: 700;
  z-index: 2;
}
/* HERO DATABAR */
.hero-databar {
  background: var(--navy-darker);
  border-bottom: 1px solid var(--navy-border);
}
.databar-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.databar-cell {
  padding: 24px 24px;
  border-left: 1px solid var(--navy-border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.databar-cell:first-child { border-left: none; }
.databar-cell .num {
  font-family: var(--mono);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-inverse);
  letter-spacing: -0.015em;
  line-height: 1;
}
.databar-cell .num .unit {
  font-size: 13px;
  color: var(--accent);
  margin-left: 4px;
  font-weight: 600;
}
.databar-cell .lbl {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-inverse-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
/* ============ SECTION COMMON ============ */
.section-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
  align-items: end;
}
.section.dark .section-head, .section.darker .section-head { border-bottom-color: var(--navy-border); }
.section-head .tag {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-head .tag::before { content: ''; width: 22px; height: 2px; background: var(--accent); }
.section-head h2 {
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.section-head h2 .hl { color: var(--accent); }
.section-head p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-secondary);
}
.section.dark .section-head p, .section.darker .section-head p { color: var(--text-inverse-dim); }
/* ============ PRODUCT CATEGORIES BAND ============ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--border);
}
.product-cat {
  background: var(--bg-white);
  padding: 22px 20px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-right: 1px solid var(--border);
  transition: all 0.12s;
  position: relative;
}
.product-cat:last-child { border-right: none; }
.product-cat:hover {
  background: var(--navy-base);
  color: var(--text-inverse);
}
.product-cat:hover .num, .product-cat:hover .en { color: var(--text-inverse-dim); }
.product-cat:hover .arr { opacity: 1; color: var(--accent); }
.product-cat .num {
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--text-muted);
  letter-spacing: 0.12em;
}
.product-cat .name {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.3;
}
.product-cat .en {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-tertiary);
}
.product-cat .arr {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent);
  margin-top: 2px;
  opacity: 0.3;
  transition: opacity 0.12s;
}
/* ============ TIER SECTION ============ */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  background: var(--bg-white);
}
.tier-card {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.15s;
}
.tier-card:last-child { border-right: none; }
.tier-card:hover { background: #FAFBFC; }
.tier-strategy {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--text-tertiary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tier-num {
  display: inline-block;
  width: 26px;
  height: 26px;
  background: var(--navy-base);
  color: white;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tier-card h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 18px;
  line-height: 1.25;
  color: var(--text-primary);
}
.tier-save {
  font-family: var(--mono);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  line-height: 1;
}
.tier-save-lbl {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--text-tertiary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.tier-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 20px;
  flex: 1;
}
.tier-when {
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--text-tertiary);
  letter-spacing: 0.04em;
  line-height: 1.55;
}
.tier-when strong { color: var(--text-primary); display: block; margin-bottom: 4px; }
.tier-strip {
  background: var(--navy-darker);
  color: var(--text-inverse);
  padding: 20px 28px;
  margin-top: -1px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  border: 1px solid var(--navy-darker);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
}
.tier-strip span { display: flex; align-items: center; gap: 8px; color: var(--text-inverse-dim); }
.tier-strip span::before { content: '✓'; color: var(--accent); font-weight: 700; }
/* ============ HOW WE HELP ============ */
.help-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--navy-border);
}
.help-item {
  background: var(--navy-base);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-right: 1px solid var(--navy-border);
  transition: background 0.15s;
}
.help-item:last-child { border-right: none; }
.help-item:hover { background: var(--navy-mid); }
.help-num {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--accent);
  letter-spacing: 0.15em;
  font-weight: 700;
}
.help-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-inverse);
  letter-spacing: -0.005em;
  line-height: 1.25;
}
.help-item p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-inverse-dim);
}
.help-item p strong { color: var(--accent); font-weight: 600; }
/* ============ FOUNDER STRIP ============ */
.founder-strip {
  background: var(--navy-darker);
  color: var(--text-inverse);
  padding: 22px 0;
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
}
.strip-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.strip-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
}
.strip-text {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-inverse-dim);
  flex: 1;
}
.strip-text strong { color: var(--text-inverse); font-weight: 600; }
.strip-link {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.strip-link:hover { text-decoration: underline; }
/* ============ SERVICES ============ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  transition: all 0.2s;
  position: relative;
}
.service-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,24,40,0.06); }
.service-card.featured {
  background: var(--navy-base);
  color: var(--text-inverse);
  border-color: var(--navy-base);
}
.service-card.featured h3 { color: var(--text-inverse); }
.service-card.featured .for-lbl { color: var(--text-inverse-muted); }
.service-card.featured .for-text { color: var(--text-inverse-dim); }
.service-card.featured .service-list li { color: var(--text-inverse-dim); border-color: var(--navy-border); }
.service-card.featured .service-divider { background: var(--navy-border); }
.service-card.featured .meta-line { color: var(--text-inverse-muted); border-color: var(--navy-border); }
.service-card.featured .service-for-block { background: var(--navy-mid); }
.service-tag {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--accent);
  color: white;
  padding: 5px 11px;
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.service-num {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.18em;
  font-weight: 700;
  margin-bottom: 14px;
}
.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 4px;
  line-height: 1.2;
}
.service-en {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 22px;
}
.service-for-block {
  padding: 14px 16px;
  background: var(--bg-light);
  border-left: 2px solid var(--accent);
  margin-bottom: 22px;
}
.for-lbl {
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--text-tertiary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 600;
}
.for-text { font-size: 12.5px; line-height: 1.55; color: var(--text-secondary); }
.service-list { list-style: none; flex: 1; margin-bottom: 22px; }
.service-list li {
  font-size: 12.5px;
  color: var(--text-primary);
  line-height: 1.55;
  padding: 9px 0 9px 20px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before { content: '–'; color: var(--accent); position: absolute; left: 0; font-weight: 700; }
.service-divider { height: 1px; background: var(--border); margin-bottom: 14px; }
.meta-line {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-tertiary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-top: 10px;
  border-top: 1px dashed var(--border);
  margin-top: 10px;
}
.sample-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 7px 12px;
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid var(--accent);
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.15s;
}
.sample-link:hover { background: var(--accent); color: white; }
.detail-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.service-card.featured .detail-link { color: var(--text-inverse); }
.detail-link:hover { color: var(--accent); }
.detail-link::after { content: '→'; font-family: var(--mono); color: var(--accent); }
/* ============ ROLES ============ */
.role-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--border);
  background: var(--bg-white);
}
.role-card {
  background: var(--bg-white);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-right: 1px solid var(--border);
  transition: all 0.15s;
  position: relative;
}
.role-card:last-child { border-right: none; }
.role-card:hover { background: var(--navy-base); color: var(--text-inverse); }
.role-card:hover .role-num, .role-card:hover .role-pain, .role-card:hover .role-promise, .role-card:hover .role-q { color: var(--text-inverse-dim); }
.role-card:hover .role-title { color: var(--text-inverse); }
.role-card:hover .role-promise-lbl, .role-card:hover .role-q-lbl, .role-card:hover .role-cta { color: var(--accent); }
.role-card:hover .role-q-lbl, .role-card:hover .role-cta { border-color: var(--navy-border); }
.role-card:hover .role-icon { background: var(--accent); }
.role-num {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  margin-bottom: 14px;
  font-weight: 600;
}
.role-icon {
  width: 36px;
  height: 36px;
  background: var(--navy-base);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  transition: background 0.15s;
}
.role-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.25;
  margin-bottom: 12px;
}
.role-pain {
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin-bottom: 14px;
}
.role-promise-lbl {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-weight: 700;
}
.role-promise {
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 14px;
  flex: 1;
}
.role-q-lbl {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--border);
  font-weight: 700;
}
.role-q {
  font-family: var(--mono);
  font-size: 10.5px;
  line-height: 1.5;
  color: var(--text-secondary);
  margin-top: 4px;
}
.role-cta {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--accent);
  margin-top: 12px;
  letter-spacing: 0.04em;
}
/* ============ LIBRARY ============ */
.lib-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.lib-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: all 0.2s;
}
.lib-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(10,24,40,0.06); }
.lib-card-img {
  height: 200px;
  background: var(--navy-darker);
  position: relative;
  overflow: hidden;
}
.lib-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.08) brightness(0.85) saturate(0.65);
}
.lib-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,24,40,0.3) 0%, transparent 40%, rgba(10,24,40,0.5) 100%);
}
.lib-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: white;
  padding: 5px 11px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
}
.lib-meta {
  position: absolute;
  bottom: 14px;
  right: 14px;
  font-family: var(--mono);
  font-size: 10px;
  color: white;
  letter-spacing: 0.06em;
  background: rgba(5,11,20,0.6);
  padding: 4px 8px;
  z-index: 2;
}
.lib-card-body { padding: 24px 26px; flex: 1; display: flex; flex-direction: column; }
.lib-question {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.005em;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.lib-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px;
  background: var(--bg-light);
  margin-bottom: 14px;
  border: 1px solid var(--border);
}
.lib-compare-item { text-align: center; }
.lib-compare-item .brand { font-size: 12.5px; font-weight: 700; line-height: 1.2; color: var(--text-primary); }
.lib-compare-item .lbl {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--text-tertiary);
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.lib-compare-arrow { color: var(--accent); font-size: 16px; font-family: var(--mono); font-weight: 700; }
.lib-answer { font-size: 12.5px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 14px; }
.lib-points { list-style: none; border-top: 1px solid var(--border); padding-top: 12px; flex: 1; }
.lib-points li {
  font-size: 12px;
  color: var(--text-primary);
  padding: 5px 0 5px 16px;
  position: relative;
  line-height: 1.5;
}
.lib-points li::before { content: '–'; color: var(--accent); position: absolute; left: 0; font-weight: 700; }
.lib-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 9px 14px;
  background: var(--navy-base);
  color: var(--text-inverse);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 0.15s;
  align-self: flex-start;
}
.lib-link::after { content: '→'; color: var(--accent); }
.lib-link:hover { background: var(--accent); }
.lib-link:hover::after { color: white; }
/* ============ INSIGHTS ============ */
.insights-tabs { display: flex; gap: 0; margin-bottom: 28px; border-bottom: 1px solid var(--border); }
.insight-tab {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 22px;
  color: var(--text-tertiary);
  border-bottom: 2px solid transparent;
  cursor: pointer;
  margin-bottom: -1px;
}
.insight-tab.active { color: var(--accent); border-bottom-color: var(--accent); }
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.insight-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  padding: 24px 24px 20px;
  text-decoration: none;
  color: inherit;
  transition: all 0.15s;
  display: flex;
  flex-direction: column;
}
.insight-card { cursor:default; }
.insight-cat {
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.insight-card h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.005em;
  margin-bottom: 10px;
  flex: 1;
  color: var(--text-primary);
}
.insight-excerpt { font-size: 12.5px; color: var(--text-secondary); line-height: 1.55; margin-bottom: 18px; }
.insight-foot {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-tertiary);
  letter-spacing: 0.05em;
}
.insight-foot .read { color: var(--text-primary); font-weight: 700; }
.insight-foot .read::after { content: ' →'; color: var(--accent); }
.insight-foot .read.soon { color: var(--text-muted); font-weight: 500; }
.insight-foot .read.soon::after { content: none; }
/* ============ FOUNDER ============ */
.founder { background: var(--bg-white); padding: 80px 0; border-bottom: 1px solid var(--border); }
.founder-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.founder-portrait { position: sticky; top: 88px; }
.founder-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--bg-light);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
}
.founder-img img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.08) saturate(0.85); }
.founder-img-overlay {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-family: var(--mono);
  font-size: 9.5px;
  color: white;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(5,11,20,0.85);
  padding: 5px 9px;
  border-left: 2px solid var(--accent);
}
.founder-name { font-size: 20px; font-weight: 700; letter-spacing: -0.005em; }
.founder-role {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 3px;
}
.founder-body .label-accent {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: block;
}
.founder-body h2 {
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: var(--text-primary);
}
.founder-body h2 .hl { color: var(--accent); }
.founder-body p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.founder-body p strong { color: var(--text-primary); font-weight: 600; }
.founder-quote {
  padding: 20px 24px;
  margin: 24px 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-primary);
  font-weight: 500;
  background: var(--bg-light);
  border-left: 3px solid var(--accent);
}
.founder-sign {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.founder-sign-text { font-size: 17px; font-weight: 700; letter-spacing: -0.005em; }
.founder-sign-meta {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--text-tertiary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}
.cta-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; text-align: left; max-width: 1100px; margin: 0 auto; }
.cta-option {
  background: var(--bg-white);
  border: 1px solid var(--border);
  padding: 28px 24px;
  transition: all 0.15s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.cta-option:hover { border-color: var(--accent); transform: translateY(-3px); }
.cta-option.featured { border-color: var(--accent); border-width: 2px; }
.cta-option-num {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--text-tertiary);
  letter-spacing: 0.2em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.cta-option.featured .cta-option-num { color: var(--accent); }
.cta-option h4 { font-size: 16px; font-weight: 700; letter-spacing: -0.005em; margin-bottom: 10px; line-height: 1.3; }
.cta-option p { font-size: 12.5px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 18px; flex: 1; }
.cta-option-action {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-primary);
  padding-top: 12px;
  border-top: 1px solid var(--border);
  letter-spacing: 0.04em;
}
.cta-option-action::after { content: '  →'; color: var(--accent); }
@media (max-width: 768px) {
  .nav-links > a, .nav-item, .nav-cta { display: none; }
  .nav-cta { display: flex; }
  .tier-grid, .services-grid, .lib-grid, .insights-grid, .cta-options { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .help-grid { grid-template-columns: 1fr; }
  .role-grid { grid-template-columns: 1fr; }
  .founder-grid { grid-template-columns: 1fr; gap: 40px; }
  .founder-portrait { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .utility-left .item:not(:first-child) { display: none; }
}