/* Linked By Golf Homepage */
:root {
  --lbg-black: #050505;
  --lbg-panel: rgba(16, 16, 16, .82);
  --lbg-panel-strong: #101010;
  --lbg-border: rgba(255,255,255,.12);
  --lbg-green: #7dff33;
  --lbg-green-dark: #45a816;
  --lbg-white: #fff;
  --lbg-muted: rgba(255,255,255,.68);
  --lbg-soft: rgba(255,255,255,.42);
  --lbg-radius: 18px;
  --lbg-container: 1180px;
}

body:has(.lbg-page) {
  background: var(--lbg-black);
}

.lbg-page {
  background:
    radial-gradient(circle at 75% 8%, rgba(125,255,51,.12), transparent 30%),
    linear-gradient(180deg, #050505 0%, #080908 42%, #050505 100%);
  color: var(--lbg-white);
  font-family: Inter, Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  overflow: hidden;
}

.lbg-page * {
  box-sizing: border-box;
}

.lbg-container {
  width: min(var(--lbg-container), calc(100% - 48px));
  margin-inline: auto;
}

.lbg-hero {
  min-height: 760px;
  background:
    linear-gradient(90deg, rgba(5,5,5,1) 0%, rgba(5,5,5,.86) 32%, rgba(5,5,5,.35) 62%, rgba(5,5,5,.92) 100%),
    linear-gradient(180deg, rgba(5,5,5,.2), rgba(5,5,5,1) 100%),
    var(--lbg-hero-image, url(''));
  background-size: cover;
  background-position: center;
  position: relative;
}

.lbg-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(125,255,51,.09) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: .2;
  pointer-events: none;
}

.lbg-nav {
  position: relative;
  z-index: 2;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.lbg-logo {
  color: var(--lbg-white);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  line-height: .86;
  letter-spacing: -.03em;
  font-size: 22px;
}

.lbg-logo strong,
.lbg-logo span strong,
.lbg-menu a:hover,
.lbg-menu a:first-child,
.lbg-kicker,
.lbg-feature-copy h2 span,
.lbg-subscribe-card h2 span {
  color: var(--lbg-green);
}

.lbg-logo-mark {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(125,255,51,.55);
  border-radius: 999px;
  display: grid;
  place-items: center;
  box-shadow: 0 0 24px rgba(125,255,51,.2);
}

.lbg-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.lbg-menu a {
  color: var(--lbg-white);
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .04em;
  opacity: .9;
}

.lbg-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  min-height: 610px;
}

.lbg-hero-copy {
  max-width: 570px;
}

.lbg-kicker {
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .08em;
  font-size: 14px;
  margin: 0 0 14px;
}

.lbg-hero h1 {
  font-family: "Arial Narrow", Impact, Haettenschweiler, sans-serif;
  font-size: clamp(64px, 8vw, 112px);
  line-height: .86;
  letter-spacing: -.04em;
  margin: 0 0 26px;
  text-transform: uppercase;
  text-shadow: 0 10px 40px rgba(0,0,0,.55);
}

.lbg-hero h1 span {
  color: var(--lbg-green);
}

.lbg-lede {
  color: rgba(255,255,255,.88);
  font-size: 20px;
  line-height: 1.55;
  max-width: 470px;
  margin: 0 0 34px;
}

.lbg-lede strong {
  color: var(--lbg-green);
}

.lbg-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.lbg-btn {
  min-height: 48px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 5px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .03em;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.lbg-btn:hover {
  transform: translateY(-2px);
}

.lbg-btn-solid {
  background: linear-gradient(135deg, var(--lbg-green), #5cca18);
  color: #061004;
  box-shadow: 0 16px 32px rgba(125,255,51,.18);
}

.lbg-btn-outline,
.lbg-btn-ghost {
  color: var(--lbg-white);
  border-color: rgba(125,255,51,.65);
  background: rgba(5,5,5,.36);
}

.lbg-platforms {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.lbg-platforms span {
  width: 100%;
  color: var(--lbg-muted);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
}

.lbg-platforms a,
.lbg-icon-link {
  color: var(--lbg-white);
  text-decoration: none;
  font-weight: 800;
}

.lbg-platforms a:first-of-type {
  color: #1ed760;
  font-size: 24px;
}

.lbg-hero-art {
  min-height: 520px;
  position: relative;
}

.lbg-wave {
  position: absolute;
  right: 7%;
  top: 30%;
  display: flex;
  gap: 8px;
  align-items: center;
  opacity: .8;
}

.lbg-wave i {
  width: 4px;
  height: calc(42px + var(--h, 0px));
  background: linear-gradient(var(--lbg-green), rgba(125,255,51,.18));
  border-radius: 100px;
  box-shadow: 0 0 20px rgba(125,255,51,.38);
}

.lbg-wave i:nth-child(1), .lbg-wave i:nth-child(17) { --h: 0px; opacity:.3; }
.lbg-wave i:nth-child(2), .lbg-wave i:nth-child(16) { --h: 22px; opacity:.45; }
.lbg-wave i:nth-child(3), .lbg-wave i:nth-child(15) { --h: 48px; opacity:.6; }
.lbg-wave i:nth-child(4), .lbg-wave i:nth-child(14) { --h: 75px; }
.lbg-wave i:nth-child(5), .lbg-wave i:nth-child(13) { --h: 110px; }
.lbg-wave i:nth-child(6), .lbg-wave i:nth-child(12) { --h: 142px; }
.lbg-wave i:nth-child(7), .lbg-wave i:nth-child(11) { --h: 95px; }
.lbg-wave i:nth-child(8), .lbg-wave i:nth-child(10) { --h: 130px; }
.lbg-wave i:nth-child(9) { --h: 170px; }

.lbg-section {
  padding: 42px 0;
}

.lbg-feature-card,
.lbg-subscribe-card,
.lbg-social .lbg-container {
  border: 1px solid var(--lbg-border);
  background: linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
  border-radius: var(--lbg-radius);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.3);
}

.lbg-feature-card {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  min-height: 390px;
}

.lbg-feature-media {
  background:
    linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.45)),
    radial-gradient(circle at center, rgba(125,255,51,.12), rgba(255,255,255,.03));
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 340px;
}

.lbg-play {
  position: absolute;
  right: 40px;
  bottom: 40px;
  width: 76px;
  height: 76px;
  border-radius: 999px;
  border: 3px solid #fff;
  background: rgba(5,5,5,.35);
  color: var(--lbg-green);
  font-size: 28px;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.lbg-feature-copy {
  padding: clamp(32px, 5vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lbg-episode-no {
  color: var(--lbg-green);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
}

.lbg-feature-copy h2,
.lbg-journeys h2,
.lbg-subscribe-card h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -.04em;
  margin: 0 0 18px;
}

.lbg-feature-copy p,
.lbg-journeys p,
.lbg-footer p {
  color: var(--lbg-muted);
  line-height: 1.7;
}

.lbg-meta {
  display: flex;
  gap: 22px;
  color: var(--lbg-muted);
  font-size: 13px;
  font-weight: 700;
  margin: 14px 0 28px;
  flex-wrap: wrap;
}

.lbg-journeys-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 42px;
  align-items: center;
}

.lbg-mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.lbg-mini-card {
  min-height: 280px;
  border: 1px solid var(--lbg-border);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(125,255,51,.08), rgba(0,0,0,.58)),
    #111;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  text-decoration: none;
  color: #fff;
  transition: transform .2s ease, border-color .2s ease;
}

.lbg-mini-card:hover {
  transform: translateY(-4px);
  border-color: rgba(125,255,51,.7);
}

.lbg-mini-card span {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 18px;
}

.lbg-mini-card small {
  margin-top: 8px;
  color: var(--lbg-muted);
  line-height: 1.5;
}

.lbg-subscribe-card {
  padding: 34px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 32px;
  align-items: center;
}

.lbg-subscribe-card h2 {
  text-transform: uppercase;
  margin: 0;
}

.lbg-email-form {
  display: flex;
  gap: 0;
}

.lbg-email-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--lbg-border);
  border-right: 0;
  background: rgba(0,0,0,.35);
  color: #fff;
  border-radius: 6px 0 0 6px;
  padding: 0 18px;
}

.lbg-email-form button {
  border-radius: 0 6px 6px 0;
}

.lbg-social {
  padding: 18px 0 40px;
}

.lbg-social .lbg-container {
  padding: 26px 34px;
  border-color: rgba(125,255,51,.55);
}

.lbg-social a {
  color: #fff;
  text-decoration: none;
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.lbg-social strong {
  font-size: clamp(22px, 3vw, 34px);
}

.lbg-footer {
  padding: 44px 0 72px;
  color: var(--lbg-muted);
}

.lbg-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, .75fr);
  gap: 48px;
}

.lbg-footer a {
  color: var(--lbg-muted);
  display: block;
  text-decoration: none;
  margin: 10px 0;
}

.lbg-footer strong {
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
}

@media (max-width: 920px) {
  .lbg-container {
    width: min(100% - 32px, var(--lbg-container));
  }

  .lbg-menu {
    display: none;
  }

  .lbg-hero {
    min-height: auto;
  }

  .lbg-hero-grid,
  .lbg-feature-card,
  .lbg-journeys-grid,
  .lbg-subscribe-card,
  .lbg-footer-grid {
    grid-template-columns: 1fr;
  }

  .lbg-hero-copy {
    padding: 56px 0 76px;
  }

  .lbg-hero-art {
    display: none;
  }

  .lbg-mini-cards {
    grid-template-columns: 1fr;
  }

  .lbg-subscribe-card {
    padding: 26px;
  }

  .lbg-email-form {
    flex-direction: column;
    gap: 12px;
  }

  .lbg-email-form input,
  .lbg-email-form button {
    border-radius: 6px;
    border: 1px solid var(--lbg-border);
  }
}

@media (max-width: 560px) {
  .lbg-nav {
    gap: 14px;
  }

  .lbg-nav .lbg-btn {
    display: none;
  }

  .lbg-hero h1 {
    font-size: 58px;
  }

  .lbg-lede {
    font-size: 17px;
  }

  .lbg-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .lbg-btn {
    width: 100%;
  }

  .lbg-platforms a:first-of-type {
    font-size: 20px;
  }

  .lbg-feature-copy {
    padding: 26px;
  }

  .lbg-play {
    width: 62px;
    height: 62px;
    right: 24px;
    bottom: 24px;
  }
}
