/* =============================================
   FOUNDER PAGE — Louis Bocknight IV
   ============================================= */

.founder-page {
  background: #000;
}

/* ---- Hero ---- */

.fd-hero {
  position: relative;
  min-height: min(92vh, 52rem);
  display: flex;
  align-items: center;
  padding-block: calc(var(--header-height) + var(--space-10)) var(--space-12);
  background: #111111;
  overflow: hidden;
}

.fd-hero__atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.fd-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform, opacity;
}

.fd-hero__glow--a {
  width: min(48vw, 26rem);
  height: min(48vw, 26rem);
  left: -8%;
  top: 20%;
  background: rgba(255, 196, 2, 0.12);
  animation: fd-glow-a 16s ease-in-out infinite alternate;
}

.fd-hero__glow--b {
  width: min(42vw, 22rem);
  height: min(42vw, 22rem);
  right: 8%;
  bottom: 10%;
  background: rgba(255, 255, 255, 0.04);
  animation: fd-glow-b 16s ease-in-out infinite alternate;
}

.fd-hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: center;
}

.fd-hero__eyebrow {
  margin-bottom: var(--space-5);
}

.fd-hero__title {
  margin: 0 0 var(--space-5);
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: var(--tracking-tight);
  color: #fff;
  /* max-width: 10ch; */
}

.fd-hero__lede {
  margin: 0 0 var(--space-8);
  font-size: clamp(1.05rem, 1.5vw, 1.15rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
  max-width: 36ch;
}

.fd-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.fd-hero__portrait {
  margin: 0;
  justify-self: center;
  width: min(100%, 26rem);
}

.fd-hero__portrait-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(255, 196, 2, 0.22);
  background: transparent;
  border-radius: 10px;
}

.fd-hero__portrait-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.04) saturate(0.92);
  transition: transform 1.2s var(--ease-out-expo);
}

.fd-hero__portrait-frame:hover img {
  transform: scale(1.03);
}

.fd-hero__portrait-edge {
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.35);
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(0, 0, 0, 0.28) 100%
  );
}

@keyframes fd-glow-a {
  from { transform: translate(0, 0) scale(1); opacity: 0.4; }
  to { transform: translate(8%, 6%) scale(1.08); opacity: 0.7; }
}

@keyframes fd-glow-b {
  from { transform: translate(0, 0) scale(1); opacity: 0.3; }
  to { transform: translate(-6%, -5%) scale(1.06); opacity: 0.55; }
}

@media (min-width: 960px) {
  .fd-hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    gap: clamp(3rem, 7vw, 6rem);
  }

  .fd-hero__portrait {
    justify-self: end;
    width: min(100%, 28rem);
  }
}

/* ---- Journey / Timeline ---- */

.fd-journey {
  background: #000;
}

.fd-journey__header {
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
  max-width: 28rem;
}

.fd-journey__title {
  margin: var(--space-4) 0 0;
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  font-weight: 600;
  line-height: 1.12;
  color: #fff;
}

.fd-timeline {
  position: relative;
  display: grid;
  gap: 0;
  max-width: 40rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fd-timeline::before {
  content: "";
  position: absolute;
  left: 0.35rem;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(255, 196, 2, 0.55),
    rgba(255, 255, 255, 0.12) 55%,
    transparent
  );
}

.fd-timeline__item {
  position: relative;
  padding: 0 0 clamp(2rem, 4vw, 2.75rem) clamp(2rem, 4vw, 2.75rem);
}

.fd-timeline__item:last-child {
  padding-bottom: 0;
}

.fd-timeline__marker {
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: #111;
  border: 1px solid rgba(255, 196, 2, 0.75);
  box-shadow: 0 0 0 4px #000;
}

.fd-timeline__label {
  margin: 0 0 var(--space-2);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: rgba(255, 196, 2, 0.75);
}

.fd-timeline__heading {
  margin: 0 0 var(--space-3);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: #fff;
}

.fd-timeline__text {
  margin: 0;
  font-size: var(--text-base);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.52);
  max-width: 42ch;
}

/* ---- Philosophy ---- */

.fd-philosophy {
  background: #111111;
}



.fd-philosophy__title {
  margin: var(--space-4) 0 var(--space-6);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 600;
  line-height: 1.12;
  color: #fff;
  max-width: 25ch;
}

.fd-philosophy__body {
  display: grid;
  gap: var(--space-5);
}

.fd-philosophy__body p {
  margin: 0;
  font-size: clamp(1.05rem, 1.4vw, 1.15rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
}

.fd-philosophy__pull {
  margin-top: var(--space-2);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255, 196, 2, 0.22);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-style: italic;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9) !important;
}

/* ---- Principles cards ---- */

.fd-principles {
  background: #000;
}

.fd-principles__header {
  margin-bottom: clamp(2.25rem, 5vw, 3.25rem);
  max-width: 28rem;
}

.fd-principles__title {
  margin: var(--space-4) 0 0;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 600;
  color: #fff;
}

.fd-principles__grid {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fd-card {
  position: relative;
  display: grid;
  gap: var(--space-3);
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    border-color var(--duration-base) var(--ease-out-expo),
    background-color var(--duration-base) var(--ease-out-expo),
    transform var(--duration-base) var(--ease-out-expo),
    box-shadow var(--duration-base) var(--ease-out-expo);
}

.fd-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(
    145deg,
    rgba(255, 196, 2, 0.06) 0%,
    transparent 48%
  );
  transition: opacity var(--duration-base) var(--ease-out-expo);
}

.fd-card:hover {
  border-color: rgba(255, 196, 2, 0.35);
  background: rgba(255, 196, 2, 0.04);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.fd-card:hover::before {
  opacity: 1;
}

.fd-card__index {
  position: relative;
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wider);
  color: rgba(255, 196, 2, 0.7);
}

.fd-card__title {
  position: relative;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.6rem);
  font-weight: 600;
  color: #fff;
}

.fd-card__text {
  position: relative;
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  max-width: 30ch;
}

@media (min-width: 700px) {
  .fd-principles__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---- Future ---- */

.fd-future {
  background: #111111;
}


.fd-future__title {
  margin: var(--space-4) 0 var(--space-5);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 600;
  line-height: 1.12;
  color: #fff;
  max-width: 18ch;
}

.fd-future__lede {
  margin: 0 0 var(--space-8);
  font-size: clamp(1.05rem, 1.45vw, 1.15rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.58);
  max-width: 44ch;
}

.fd-future__statement {
  margin: 0;
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);

}

/* ---- Responsive / motion ---- */

@media (max-width: 767px) {
  .fd-hero__actions .c-btn {
    width: 100%;
  }

  .fd-hero__portrait {
    width: min(100%, 20rem);
  }

  .fd-card:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fd-hero__glow,
  .fd-hero__portrait-frame img {
    animation: none;
    transition: none;
  }

  .fd-card:hover {
    transform: none;
  }
}
