/* =========================================================
   Lander Page Styles  —  influencerHQ expanded landing
   ========================================================= */

:root {
  --gl:    #FDD65B;
  --gl2:   #DDB554;
  --bg:    #0A0A0A;
  --bg2:   #14120D;
  --white: #FFFFFF;
  --warm:  #EAD9B0;
  --blue-acc: #2A8ED9;
  --pink-acc: #FD99D7;
  --green-acc:#53CEA4;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Be Vietnam Pro', sans-serif;
}

img { display: block; max-width: 100%; }

/* ── NAV ─────────────────────────────────────────────────── */
.ln-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: rgba(10,10,10,.85);
  backdrop-filter: blur(10px);
}

.ln-nav .logo img {
  max-height: 56px;
  width: auto;
}

/* ── HERO ────────────────────────────────────────────────── */
.ln-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #000;
  padding: 100px clamp(24px, 5vw, 80px) clamp(48px, 6vw, 80px);
}

/* Concierge row */
.ln-concierge-band {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

.ln-concierge-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(16px, 3vw, 48px);
}

.ln-concierge-left,
.ln-concierge-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ln-concierge-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.ln-concierge-img {
  width: auto;
  height: clamp(220px, 28vw, 320px);
  /* max-width: min(100%, 360px); */
  object-fit: contain;
  object-position: center top;
}

.ln-concierge-label,
.ln-concierge-ask {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: clamp(1.1rem, 2.2vw, 1.75rem);
  font-weight: 600;
  color: var(--white);
  text-align: center;
  line-height: 1.35;
}

.ln-concierge-ask {
  text-decoration: underline;
  cursor: pointer;
}

.ln-concierge-title {
  margin: 0;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-weight: 600;
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  color: var(--white);
}

.btn-arena {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gl);
  color: #000;
  font-family: 'Inter', 'Be Vietnam Pro', sans-serif;
  font-weight: 700;
  font-size: clamp(.85rem, 1.5vw, 1.15rem);
  letter-spacing: .02em;
  padding: 18px 36px;
  border-radius: 150px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}

.btn-arena:hover { background: var(--gl2); transform: translateY(-2px); }
.btn-arena.dim   { background: var(--gl2); }

/* ── SECTION SHARED ──────────────────────────────────────── */
.ln-section {
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 120px) clamp(24px, 5vw, 80px);
}

.ln-section-center {
  text-align: center;
}

.ln-section-title {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  color: var(--gl);
  text-transform: capitalize;
  line-height: 1.15;
  margin-bottom: 24px;
}

.ln-section-sub {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: var(--white);
  line-height: 1.7;
}

/* ── BELIEFS ─────────────────────────────────────────────── */
.ln-beliefs {
  background: var(--bg);
  border-top: 1px solid rgba(253,214,91,.12);
}

.ln-hero .ln-beliefs--hero {
  width: 100%;
  max-width: 1320px;
  padding-left: 0;
  padding-right: 0;
}

.ln-beliefs--hero {
  border-top: none;
  padding-top: clamp(32px, 5vw, 56px);
  padding-bottom: clamp(24px, 4vw, 48px);
  background: #000;
}

.ln-beliefs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(20px, 4vw, 48px);
  margin-top: clamp(24px, 4vw, 48px);
}

.ln-belief-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 3vw, 36px);
  text-align: center;
}

.ln-belief-item {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-weight: 600;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  color: var(--white);
  text-align: center;
  line-height: 1.45;
  max-width: 22rem;
  margin: 0;
  flex: 1;
}

.ln-belief-icon {
  width: clamp(72px, 8vw, 108px);
  height: clamp(72px, 8vw, 108px);
  object-fit: contain;
}

.ln-belief-cta {
  margin-top: auto;
  min-width: 200px;
  padding: 16px 32px;
}

.ln-hero-logged-in-cta {
  margin-top: clamp(32px, 5vw, 48px);
  text-align: center;
}

.ln-exec-label {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-weight: 600;
  font-size: clamp(.85rem, 1.3vw, 1.15rem);
  color: var(--white);
}

/* ── OWNERSHIP ───────────────────────────────────────────── */
.ln-ownership {
  background: var(--bg);
}

.ln-ownership-title {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--gl);
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 60px;
}

.ln-story {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(253,214,91,.15);
}

.ln-ownership .ln-story:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.ln-ownership-cta {
  text-align: center;
  margin-top: clamp(40px, 6vw, 64px);
}

.ln-story.reverse {
  grid-template-columns: 2fr 1fr;
}

.ln-story.reverse .ln-story-img { order: 2; }
.ln-story.reverse .ln-story-body { order: 1; }

.ln-story-img {
  width: 100%;
  /* aspect-ratio: 3 / 4; */
  object-fit: contain;
  border-radius: 12px;
}

.ln-story-name {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--gl);
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: .04em;
}

.ln-story-text {
  font-family: 'Arial', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  color: var(--white);
  line-height: 1.7;
}

/* ── INTERNATIONAL COMPETITION ───────────────────────────── */
.ln-intl {
  background: #000;
  border-top: 1px solid rgba(253,214,91,.12);
}

.ln-intl-sub {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--white);
  text-align: center;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto clamp(40px, 6vw, 64px);
}

.ln-intl-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.ln-intl-stage--triple {
  grid-template-columns: auto minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(16px, 2.5vw, 32px);
  align-items: center;
}

.ln-intl-torch {
  width: clamp(72px, 8vw, 100px);
  justify-self: center;
  object-fit: contain;
}

.ln-intl-stage-copy {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-weight: 700;
  font-size: clamp(.95rem, 1.6vw, 1.2rem);
  color: var(--white);
  line-height: 1.55;
}

.ln-intl-stage-copy p + p {
  margin-top: 1rem;
}

.ln-intl-miami {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.ln-intl-miami img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.ln-comp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 32px);
  margin-bottom: 24px;
}

.ln-comp-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.ln-comp-card {
  background: #000;
  border-radius: 20px;
  padding: clamp(24px, 3vw, 36px) clamp(18px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  min-height: 300px;
  width: 100%;
}

.ln-comp-card--world   { border: 3px solid var(--blue-acc); }
.ln-comp-card--comm    { border: 3px solid var(--pink-acc); }
.ln-comp-card--private { border: 3px solid var(--green-acc); }

.ln-rating-row--in-card {
  margin-top: auto;
}

.ln-comp-card-title {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-weight: 600;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.ln-comp-card-desc {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-weight: 600;
  font-size: clamp(.9rem, 1.5vw, 1.2rem);
  color: var(--white);
  text-align: center;
  line-height: 1.6;
  flex: 1;
}

/* Rating row */
.ln-rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.ln-rating-label {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: .8rem;
  color: var(--warm);
  margin-right: 4px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ln-rating-btn {
  width: 52px;
  height: 52px;
  border: 1px solid var(--gl);
  border-radius: 10px;
  background: transparent;
  color: var(--white);
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s, border-color .15s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ln-rating-btn:hover,
.ln-rating-btn.sel { background: rgba(253,214,91,.15); border-color: var(--gl); }

.ln-rating-note {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: clamp(.95rem, 1.6vw, 1.15rem);
  font-weight: 600;
  color: var(--white);
  text-align: center;
  margin: 0 auto clamp(32px, 5vw, 48px);
  line-height: 1.7;
  max-width: 720px;
}

.ln-intl-cta {
  text-align: center;
}

/* ── COMPETE TEASER ──────────────────────────────────────── */
.ln-compete-teaser {
  background: #000;
  border-top: none;
  padding-top: clamp(32px, 5vw, 48px);
  padding-bottom: clamp(32px, 5vw, 48px);
  text-align: center;
}

.ln-compete-headline {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(32px, 10vw, 180px);
  font-family: 'Be Vietnam Pro', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--green-acc);
  margin: 0;
  line-height: 1.15;
  text-transform: none;
}

/* ── INFLUENCE / OWNERSHIP STREAMING ─────────────────────── */
.ln-spark-fire {
  background: #000;
  border-top: 1px solid rgba(253,214,91,.12);
  text-align: center;
}

.ln-spark-fire-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  max-width: 1100px;
  margin: 0 auto clamp(40px, 6vw, 56px);
}

.ln-spark-fire-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 3vw, 28px);
}

.ln-spark-fire-title {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-weight: 800;
  font-size: clamp(1.35rem, 2.8vw, 2.2rem);
  color: var(--gl);
  text-align: center;
  line-height: 1.2;
  margin: 0;
}

.ln-compete-sub {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  color: var(--white);
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 24px;
}

.ln-stream-card {
  display: flex;
  justify-content: center;
}

.ln-stream-card img {
  width: auto;
  height: auto;
  max-width: 100%;
  display: block;
}

.ln-equity-note {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-weight: 600;
  font-size: clamp(.95rem, 1.6vw, 1.2rem);
  color: var(--white);
  text-align: center;
  line-height: 1.75;
  max-width: 900px;
  margin: 0 auto 16px;
}

.ln-streaming-note {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-weight: 600;
  font-size: clamp(.95rem, 1.6vw, 1.2rem);
  color: var(--white);
  text-align: center;
  line-height: 1.75;
  max-width: 1000px;
  margin: 0 auto;
}

/* ── FINAL BAND ──────────────────────────────────────────── */
.ln-final-band {
  padding: clamp(48px, 8vw, 120px) clamp(24px, 5vw, 80px);
  text-align: center;
  background: var(--bg);
  border-top: 1px solid rgba(253,214,91,.15);
}

.ln-final-title {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.25;
}

.ln-final-ctas {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 60px);
  flex-wrap: wrap;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.ln-footer {
  padding: 28px 24px;
  text-align: center;
  border-top: 1px solid rgba(253,214,91,.1);
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: .82rem;
  color: var(--warm);
}

/* ── MODALS (same as portal home) ───────────────────────── */
.field-error {
  box-sizing: border-box;
  border: 2px solid rgba(255,75,75,.95) !important;
  box-shadow: 0 0 0 4px rgba(255,75,75,.16);
  animation: field-error-pulse .9s ease both;
}

@keyframes field-error-pulse {
  0%,100% { transform: translateX(0); }
  15%  { transform: translateX(-4px); }
  30%  { transform: translateX( 4px); }
  45%  { transform: translateX(-2px); }
  60%  { transform: translateX( 2px); }
  75%  { transform: translateX(-1px); }
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .ln-concierge-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ln-concierge-left { order: 1; }
  .ln-concierge-center { order: 2; }
  .ln-concierge-right { order: 3; }

  .ln-beliefs-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ln-belief-cta {
    margin-top: 0;
  }

  .ln-intl-stage,
  .ln-intl-stage--triple { grid-template-columns: 1fr; }
  .ln-intl-stage-copy { text-align: center; }

  .ln-spark-fire-grid { grid-template-columns: 1fr; }

  .ln-comp-cards { grid-template-columns: 1fr; }

  .ln-story,
  .ln-story.reverse {
    grid-template-columns: 1fr;
  }
  .ln-story.reverse .ln-story-img { order: 0; }
  .ln-story.reverse .ln-story-body { order: 1; }

  .ln-stream-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .ln-comp-card { min-height: auto; }
  .ln-concierge-img { height: 220px; }
  .ln-belief-cta { width: 100%; max-width: 280px; }
}
