/* ============================================================
   FOUNDER, a letter, then the video. Personal, not corporate.
   ============================================================ */

/* Dark chapter: the film should feel like the lights going down. */
.founder{
  position:relative;
  background:var(--ink);
  color:var(--on-dark);
}
.founder::before{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:
    radial-gradient(110% 80% at 24% 14%, rgba(199,164,114,.16), rgba(199,164,114,0) 60%),
    radial-gradient(100% 80% at 84% 82%, rgba(150,130,180,.12), rgba(150,130,180,0) 58%);
}
.founder > .container{position:relative;z-index:1}

/* Everything inside inverts */
.founder .founder__title,
.founder .founder__point-t{color:var(--on-dark)}
.founder .founder__lead,
.founder .founder__point-d{color:var(--on-dark-2)}
.founder .eyebrow,
.founder .founder__point-k{color:var(--bronze-lite)}
.founder .founder__quote{color:rgba(244,242,238,.55)}
.founder .founder__frame{
  border-color:rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
}
.founder .founder__frame::before,
.founder .founder__frame::after{border-color:rgba(255,255,255,.22)}
.founder .founder__points{border-top-color:rgba(255,255,255,.12)}
.founder .btn--primary{background:var(--paper);color:var(--ink);border-color:var(--paper)}
.founder .btn--ghost{color:var(--on-dark);border-color:rgba(255,255,255,.24)}
.founder .btn--ghost:hover{border-color:rgba(255,255,255,.5)}
.founder .plate{background:var(--ink-2);border-color:rgba(255,255,255,.14)}

.founder__head {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 780px;
  margin-inline: auto;
}
.founder__head .eyebrow::before { display: none; }
.founder__head .eyebrow { justify-content: center; }
.founder__title { max-width: 16ch; }
.founder__lead { text-align: center; max-width: 60ch; }

/* The letter opens with a signature line, framed like correspondence */
.founder__frame {
  position: relative;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: clamp(1rem, 2.4vw, 1.75rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.6);
}
/* Corner ticks, the only decoration in the section */
.founder__frame::before,
.founder__frame::after {
  content: "";
  position: absolute;
  width: 9px; height: 9px;
  border: 1px solid var(--line-strong);
}
.founder__frame::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.founder__frame::after  { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

.founder__quote {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  font-weight: 500;
  letter-spacing: var(--ls-head);
  color: var(--text-3);
  padding-block: clamp(0.75rem, 2vw, 1.4rem);
}

.founder__plate { box-shadow: var(--shadow); }
.founder__plate .plate__media { aspect-ratio: 16 / 9; }

.founder__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: clamp(2rem, 4vw, 3rem);
}

/* Three short points the founder covers, reads as chapter markers */
.founder__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
}
.founder__point-k {
  font-family: var(--font-mono);
  font-size: var(--fs-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 10px;
}
.founder__point-t { font-size: var(--fs-body); font-weight: 500; margin-bottom: 6px; }
.founder__point-d { font-size: var(--fs-sm); color: var(--text-2); line-height: 1.6; }

@media (max-width: 820px) {
  .founder__points { grid-template-columns: 1fr; gap: 1.75rem; }
}
@media (max-width: 560px) {
  .founder__actions .btn { flex: 1 1 100%; }
}
