/* FluxFront — founder · sliced verbatim from the original sections.css block (render-identical). See docs/marketing-site-architecture.md for the selector map. */
/* ===================== FOUNDER ===================== */
.founder-sec { background: var(--surface); }
.founder-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
@media (max-width: 860px) { .founder-grid { grid-template-columns: 1fr; } }
.founder-img { aspect-ratio: 4/5; border-radius: var(--r-lg); border: 1px solid var(--hairline-2);
  background: linear-gradient(160deg, var(--surface-2), #E9E4D8); display: grid; place-items: center;
  box-shadow: var(--sh-md); position: relative; overflow: hidden; }
.founder-img::after { content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, transparent 0 22px, rgb(30 34 41 / 0.02) 22px 23px); }
.founder-img-note { font-size: 0.68rem; color: var(--ink-3); text-align: center; letter-spacing: 0.04em; line-height: 1.6; }
.founder-lede { font-family: var(--font-display); font-size: clamp(1.3rem, 1rem + 1.3vw, 1.7rem); font-weight: 600;
  letter-spacing: -0.02em; line-height: 1.3; margin: 16px 0 18px; text-wrap: balance; }
.founder-body { font-size: var(--t-body); color: var(--ink-2); line-height: 1.65; margin-bottom: 14px; max-width: 56ch; }
.founder-contact { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.founder-link { display: inline-flex; align-items: center; gap: 9px; padding: 11px 17px; border-radius: var(--r-pill);
  border: 1px solid var(--hairline-2); background: var(--cream); font-size: var(--t-sm); font-weight: 500;
  font-family: var(--font-mono); transition: border-color var(--d-2), color var(--d-2); }
.founder-link svg { width: 17px; height: 17px; color: var(--teal-700); }
.founder-link:hover { border-color: var(--teal-600); color: var(--teal-800); }

