/* =========================================================
   FOUNDER WORLD PAGE
========================================================= */

.founder-world-page {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  /* fixed header safe space */
  padding: 132px 24px 86px !important;

  background:
    repeating-linear-gradient(
      90deg,
      rgba(142,108,45,.045) 0,
      rgba(142,108,45,.045) 1px,
      transparent 1px,
      transparent 28px
    ),
    radial-gradient(circle at 22% 14%, rgba(255,255,255,.72), transparent 34%),
    radial-gradient(circle at 78% 58%, rgba(247,210,122,.18), transparent 32%),
    radial-gradient(circle at 72% 50%, rgba(157,84,21,.09), transparent 38%),
    linear-gradient(180deg, #fff 0%, #fff 8%, #fbf7ef 24%, #f6ecd8 100%);
  color: #2d261d;
}

.founder-world-page::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 30%, rgba(247,210,122,.12), transparent 28%),
    radial-gradient(circle at 82% 68%, rgba(255,255,255,.30), transparent 30%);
  opacity: .70;
  animation: founderWorldBgFloat 18s ease-in-out infinite alternate;
}

@keyframes founderWorldBgFloat {
  from {
    transform: translate3d(-18px, -10px, 0) scale(1);
  }
  to {
    transform: translate3d(22px, 16px, 0) scale(1.04);
  }
}

.founder-world-container {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
}

.founder-world-hero {
  max-width: 720px;
  margin-bottom: 28px;
}

.founder-world-hero .section-kicker {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(142,108,45,.14);
  color: #8e5f17;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .10em;
}

.founder-world-hero h1 {
  margin: 12px 0 10px !important;
  font-size: clamp(2rem, 3.2vw, 3.25rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -.04em !important;
  font-weight: 900 !important;
  color: #2d261d;
}

.founder-world-hero p {
  margin: 0;
  max-width: 620px;
  color: rgba(45,38,29,.66);
  font-size: .98rem;
  line-height: 1.65;
}

.founder-world-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.founder-world-card {
  scroll-margin-top: 125px;
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,250,240,.66));
  border: 1px solid rgba(142,108,45,.13);
  box-shadow:
    0 16px 42px rgba(45,38,29,.10),
    inset 0 1px 0 rgba(255,255,255,.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.founder-world-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 14%, rgba(247,210,122,.12), transparent 32%);
  opacity: .9;
}

.founder-world-card h2,
.founder-world-card p,
.founder-world-card ul {
  position: relative;
  z-index: 2;
}

.founder-world-card h2 {
  margin: 0 0 8px;
  font-size: 1.18rem;
  line-height: 1.15;
  letter-spacing: -.02em;
  font-weight: 900;
  color: #2d261d;
}

.founder-world-card p {
  margin: 0 0 15px;
  color: rgba(45,38,29,.64);
  font-size: .92rem;
  line-height: 1.58;
}

.founder-world-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.founder-world-card li {
  margin: 0;
}

.founder-world-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  padding: 8px 9px 8px 12px;
  border-radius: 14px;

  background:
    linear-gradient(135deg, rgba(255,255,255,.74), rgba(246,236,216,.70)) !important;
  border: 1px solid rgba(142,108,45,.14) !important;

  color: #3f3323 !important;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 850;

  box-shadow: 0 8px 18px rgba(45,38,29,.055);
  transition:
    transform .2s ease,
    background .2s ease,
    border-color .2s ease,
    box-shadow .2s ease;
}

.founder-world-card a::after {
  content: "\2192";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin-left: 10px;
  border-radius: 999px;

  background: #5c4a2f;
  color: #fff8e8 !important;
  font-weight: 900;
  flex: 0 0 auto;

  transition: transform .2s ease, background .2s ease;
}

.founder-world-card a:hover {
  transform: translateX(3px);
  background:
    linear-gradient(135deg, rgba(255,255,255,.88), rgba(247,210,122,.22)) !important;
  border-color: rgba(157,84,21,.24) !important;
  box-shadow: 0 12px 24px rgba(45,38,29,.09);
}

.founder-world-card a:hover::after {
  transform: translateX(2px);
  background: #8e5f17;
}

.founder-world-empty {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(142,108,45,.13);
  color: rgba(45,38,29,.68);
  font-weight: 800;
}

@media (max-width: 760px) {
  .founder-world-page {
    padding: 112px 16px 78px !important;
  }

  .founder-world-grid {
    grid-template-columns: 1fr;
  }

  .founder-world-card {
    padding: 20px;
  }

  .founder-world-hero h1 {
    font-size: clamp(1.9rem, 9vw, 2.6rem) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .founder-world-page::before {
    animation: none;
  }
}
