/* Scoped tokens + components where light/dark needs descendant rules (parity with long-island-masterclass.html) */

.li-shell {
  --text: #f4f7fb;
  --muted: #bdd0de;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #8fe8ff;
  --accent-strong: #56d3f5;
  --gold: #f5d488;
  --danger: #ff9e9e;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --max: 1180px;
  --radius: 28px;
  /* Primary CTA — Spiking AI Summit / Figma (Link 2832:11965) */
  --li-btn-gradient: linear-gradient(90deg, #00b8db 0%, #00d3f3 100%);
  --li-btn-shadow: 0 18px 42px rgba(14, 165, 198, 0.25);
  /* Sticky header clearance for #section / #join / #register hash navigation */
  --li-anchor-offset: 6.5rem;

  color: var(--text);
  line-height: 1.6;
  font-family: inherit;
  background:
    radial-gradient(circle at top right, rgba(143, 232, 255, 0.14), transparent 28%),
    radial-gradient(circle at top left, rgba(245, 212, 136, 0.12), transparent 24%),
    linear-gradient(180deg, #071018 0%, #0b1823 45%, #0f2333 100%);
}

.li-shell.li-light {
  --text: #102235;
  --muted: #526879;
  --line: rgba(10, 30, 50, 0.12);
  --accent: #0ea5c6;
  --accent-strong: #0f7ea1;
  --gold: #b8860b;
  --shadow: 0 24px 80px rgba(7, 16, 24, 0.08);
  background:
    radial-gradient(circle at top right, rgba(14, 165, 198, 0.08), transparent 28%),
    radial-gradient(circle at top left, rgba(184, 134, 11, 0.06), transparent 24%),
    linear-gradient(180deg, #f9fcff 0%, #f3f7fb 50%, #edf3f8 100%);
}

/*
 * Typography — public/long-island-masterclass.html
 * Static HTML does not reset heading weight; UA uses bold (~700) on h1–h3.
 * Tailwind Preflight sets h1–h6 font-weight: inherit → body 400, which is wrong here.
 *
 * Pages that use their own Tailwind heading utilities (e.g. Insights library):
 * add class `li-tailwind-typography` on <main> so these rules do not override
 * font-size / line-height / color after Tailwind utilities.
 */
.li-shell main:not(.li-tailwind-typography) :where(h1, h2, h3, h4) {
  font-weight: 700;
}

.li-shell p {
  font-weight: 400;
}

.li-shell main:not(.li-tailwind-typography) h1 {
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 13ch;
  color: var(--text);
}

.li-shell main:not(.li-tailwind-typography) h2 {
  font-size: clamp(1.95rem, 3vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  color: var(--text);
}

.li-shell .li-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.li-shell .li-card-title--tight {
  margin-bottom: 8px;
}

.li-shell .li-section-kicker,
.li-shell .li-number {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 12px;
}

/* Framework pillars — numeral + lucide icon row */
.li-shell .li-framework-step-index {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  color: var(--gold);
  letter-spacing: 0;
  text-transform: none;
}

.li-shell .li-framework-step-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--accent-strong);
}

.li-shell.li-light .li-framework-step-icon {
  color: #0ea5c6;
}

/* Problem column — belief CTA box (Figma ~2832-12087) */
.li-shell .li-belief-callout {
  margin-top: 0;
  width: fit-content;
  max-width: min(40rem, 100%);
  border-radius: 22px;
  padding: 1.35rem 1.6rem;
  border: 1px solid rgba(103, 232, 249, 0.5);
  background: linear-gradient(100deg,
      rgba(207, 250, 254, 0.35) 0%,
      rgba(255, 251, 235, 0.2) 52%,
      rgba(255, 255, 255, 0.12) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 0.55rem;
}

.li-shell.li-light .li-belief-callout {
  border-color: rgba(14, 165, 198, 0.28);
  background: linear-gradient(100deg, #ecfeff 0%, #fffdf5 48%, #ffffff 100%);
  box-shadow:
    0 1px 2px rgba(14, 165, 198, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.li-shell .li-belief-callout-line {
  margin: 0;
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: -0.02em;
  color: var(--text);
}

/* Solution section — stacked insight cards */
.li-shell .li-solution-pillar {
  border-radius: 16px;
  border: 1px solid rgba(15, 45, 60, 0.1);
  background: #f8f9fa;
  padding: 1.25rem 1.35rem;
  display: grid;
  gap: 0.85rem;
}

.li-shell.li-light .li-solution-pillar {
  background: #f8f9fa;
  border-color: rgba(10, 30, 50, 0.1);
  box-shadow: 0 1px 2px rgba(10, 30, 50, 0.04);
}

.li-shell:not(.li-light) .li-solution-pillar {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.li-shell .li-solution-pillar-icon-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.li-shell .li-solution-pillar-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, #22c55e 0%, #0ea5e9 100%);
}

.li-shell .li-solution-pillar-lucide {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #38bdf8;
}

.li-shell.li-light .li-solution-pillar-lucide {
  color: #0284c7;
}

.li-shell .li-solution-pillar-text {
  margin: 0;
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--muted);
}

.li-shell .li-lead,
.li-shell .li-section-copy {
  color: var(--muted);
  font-size: 1.04rem;
  font-weight: 400;
}

.li-shell .li-section-copy.li-differentiation-tagline {
  font-weight: 700;
  color: var(--accent-strong);
}

.li-shell .li-lead {
  margin-top: 18px;
  max-width: 62ch;
}

.li-shell .li-stack {
  display: grid;
  gap: 18px;
}

.li-shell .li-stack p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  font-weight: 400;
}

.li-shell .li-card-body {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 400;
}

.li-shell .li-micro {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 400;
}

.li-shell .li-label {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 400;
}

.li-shell .li-anchor-price {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: 400;
}

.li-shell .li-price-display {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 6px 0 4px;
  color: var(--text);
}

.li-shell .li-price-caption {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 400;
}

.li-shell .li-check-row {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 400;
}

.li-shell .li-form-error {
  color: var(--danger);
  min-height: 1.2em;
  font-size: 0.92rem;
  font-weight: 400;
}

.li-shell .li-form-success {
  color: #7ee787;
  min-height: 1.2em;
  font-size: 0.92rem;
  font-weight: 400;
}

.li-shell.li-light .li-form-success {
  color: #15803d;
}

/* Stripe CardElement — light strip so iframe has readable contrast */
.li-shell .li-stripe-card-wrap {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  padding: 12px 14px;
  min-height: 48px;
  color: #102235;
  color-scheme: light;
}

.li-shell .li-stripe-card-wrap .li-hero-pill-label {
  color: #102235;
}

.li-shell .li-stripe-card-wrap .li-hero-pill-desc {
  color: #526879;
}

.li-shell.li-light .li-stripe-card-wrap {
  background: #fff;
}

.li-shell .li-hero-pill-label {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-weight: 700;
}

.li-shell .li-hero-pill-desc {
  font-size: 1.04rem;
  color: var(--muted);
  font-weight: 400;
}

/* Masterclass hero — tagline + feature cards (icons) */
.li-shell .li-masterclass-hero-tagline {
  margin-top: 12px;
  max-width: 62ch;
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--accent-strong);
}

.li-shell .li-masterclass-hero-card {
  border-radius: 16px;
  border: 1px solid rgba(10, 30, 50, 0.1);
  background: #ffffff;
  padding: 1.25rem 1.35rem;
  display: grid;
  gap: 0.55rem;
  box-shadow: 0 1px 2px rgba(10, 30, 50, 0.04);
}

.li-shell:not(.li-light) .li-masterclass-hero-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.li-shell .li-masterclass-hero-card .li-hero-pill-label {
  margin-bottom: 0;
}

.li-shell .li-masterclass-hero-card-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: #0284c7;
}

.li-shell:not(.li-light) .li-masterclass-hero-card-icon {
  color: var(--accent-strong);
}

.li-shell .li-placeholder strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 700;
}

@media (max-width: 760px) {
  .li-shell main:not(.li-tailwind-typography) h1 {
    max-width: none;
  }
}

/* Header brand — .brand in masterclass HTML */
.li-shell .li-brand {
  font-weight: 800;
  letter-spacing: 0.04em;
}

.li-site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(16px);
  background: rgba(8, 19, 29, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.li-shell.li-light .li-site-header {
  background: rgba(255, 255, 255, 0.82);
  border-bottom-color: rgba(10, 30, 50, 0.08);
}

@media (min-width: 761px) {
  .li-shell {
    --li-anchor-offset: 7rem;
  }
}

/* Hash links scroll under sticky header — scroll-padding also helps Lenis/native scroll */
.li-shell main[id],
.li-shell main section[id],
.li-shell main [id="join"],
.li-shell main [id="register"] {
  scroll-margin-top: var(--li-anchor-offset);
}

.li-header-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 16px;
  row-gap: 12px;
  padding: 16px 0;
}

@media (min-width: 761px) {
  .li-header-inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .li-header-nav {
    justify-self: center;
  }

  .li-header-actions {
    justify-self: end;
  }
}

.li-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
  font-family: inherit;
  text-decoration: none;
}

.li-button:hover {
  transform: translateY(-1px);
}

@media (max-width: 760px) {
  .li-shell .li-button {
    min-height: 48px;
    padding: 0 20px;
    font-size: 0.9375rem;
  }
}

.li-button-primary {
  background: var(--li-btn-gradient);
  color: #ffffff;
  box-shadow: var(--li-btn-shadow);
  border-color: transparent;
}

.li-shell.li-light .li-button-primary {
  background: var(--li-btn-gradient);
  color: #ffffff;
  box-shadow: var(--li-btn-shadow);
}

.li-button-secondary {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.li-button-secondary:hover {
  border-color: rgba(0, 211, 243, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

.li-shell.li-light .li-button-secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(0, 184, 219, 0.42);
  color: var(--text);
}

.li-shell.li-light .li-button-secondary:hover {
  border-color: rgba(0, 184, 219, 0.65);
  background: rgba(255, 255, 255, 0.88);
}

.li-card-surface {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.li-shell.li-light .li-card-surface {
  background: rgba(255, 255, 255, 0.72);
}

/*
 * Solid/near-white surfaces inside dark .li-shell: inherit would use light --text.
 * Use on embeds, bg-white bands, Stripe-adjacent copy, Tailwind bg-white cards, etc.
 */
.li-shell .li-on-light-surface {
  color: #102235;
  color-scheme: light;
}

.li-input,
.li-select {
  width: 100%;
  min-height: 54px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0 16px;
  outline: none;
  font: inherit;
}

.li-input::placeholder {
  color: #8ea7ba;
}

.li-shell .li-phone-field {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 54px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0 10px 0 14px;
}

.li-shell .li-phone-field input[type="tel"],
.li-shell .li-phone-field input:not([type]) {
  flex: 1;
  min-width: 0;
  min-height: 48px;
  border: 0;
  background: transparent;
  color: inherit;
  outline: none;
  font: inherit;
}

.li-shell .li-phone-field input::placeholder {
  color: #8ea7ba;
}

.li-shell .li-phone-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 100;
  margin-top: 6px;
  max-height: 300px;
  overflow-y: auto;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(12, 28, 42, 0.98);
  box-shadow: var(--shadow);
  padding: 6px;
}

.li-shell.li-light .li-phone-dropdown {
  background: rgba(255, 255, 255, 0.98);
}

.li-shell .li-phone-country-row {
  display: flex;
  align-items: center;
  cursor: pointer;
  border-radius: 8px;
  padding: 6px 8px;
  color: var(--text);
  font-size: 0.875rem;
}

.li-shell .li-phone-country-row:hover {
  background: rgba(255, 255, 255, 0.08);
}

.li-shell.li-light .li-phone-country-row:hover {
  background: rgba(10, 30, 50, 0.06);
}

.li-shell .li-phone-search {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  margin-bottom: 6px;
}

.li-shell .li-phone-search input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 0.875rem;
}

.li-shell .li-phone-search input::placeholder {
  color: var(--muted);
}

.li-checkout-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(201, 21, 43, .08);
  border: 1px solid rgba(143, 232, 255, 0.24);
  color: #c9152b;
  font-weight: 700;
  font-size: 0.9rem;
}

.li-save-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(245, 212, 136, 0.14);
  border: 1px solid rgba(245, 212, 136, 0.24);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
}

.li-bonus-box {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(143, 232, 255, 0.22);
  background: linear-gradient(135deg,
      rgba(143, 232, 255, 0.08),
      rgba(245, 212, 136, 0.06));
}

/* Masterclass — “Included in your seat” checklist (cyan gradient + check chips) */
.li-masterclass-included-box {
  padding: 1.35rem 1.5rem;
  border-radius: 20px;
  border: 1px solid rgba(14, 165, 198, 0.32);
  background: linear-gradient(100deg,
      rgba(207, 250, 254, 0.72) 0%,
      rgba(255, 252, 240, 0.75) 52%,
      #ffffff 100%);
  box-shadow:
    0 1px 2px rgba(14, 165, 198, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.li-shell:not(.li-light) .li-masterclass-included-box {
  border-color: rgba(103, 232, 249, 0.45);
  background: linear-gradient(100deg,
      rgba(207, 250, 254, 0.14) 0%,
      rgba(255, 251, 235, 0.1) 50%,
      rgba(255, 255, 255, 0.07) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.li-masterclass-included-list {
  display: grid;
  gap: 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.li-masterclass-included-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--text);
}

.li-masterclass-included-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(145deg, #7dd3fc 0%, #22d3ee 100%);
  color: #ffffff;
}

/* Masterclass — value trio cards (icon chip + white tile) */
.li-masterclass-value-card {
  border-radius: 16px;
  border: 1px solid rgba(10, 30, 50, 0.09);
  background: #ffffff;
  padding: 1.25rem 1.35rem;
  display: grid;
  gap: 0.85rem;
  box-shadow: 0 1px 2px rgba(10, 30, 50, 0.04);
}

.li-shell:not(.li-light) .li-masterclass-value-card {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.li-masterclass-value-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
      rgba(207, 250, 254, 0.92) 0%,
      rgba(255, 251, 235, 0.88) 100%);
  border: 1px solid rgba(14, 165, 198, 0.18);
}

.li-shell:not(.li-light) .li-masterclass-value-icon-wrap {
  background: linear-gradient(135deg,
      rgba(103, 232, 249, 0.22) 0%,
      rgba(245, 212, 136, 0.16) 100%);
  border-color: rgba(255, 255, 255, 0.14);
}

.li-masterclass-value-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #0f7ea1;
}

.li-shell:not(.li-light) .li-masterclass-value-icon {
  color: var(--accent-strong);
}

.li-masterclass-value-card .li-card-title {
  margin-bottom: 0;
}

.li-masterclass-value-card .li-card-body {
  margin: 0;
}

/* Masterclass — session parts (Delivery) "Part 1" label */
.li-masterclass-session-part {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--gold);
  text-transform: none;
}

.li-masterclass-value-card .li-masterclass-audience-kicker {
  margin-bottom: 0;
}

.li-cta-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: linear-gradient(135deg,
      rgba(143, 232, 255, 0.12),
      rgba(245, 212, 136, 0.08));
}

.li-shell.li-light .li-cta-band {
  background: linear-gradient(135deg,
      rgba(14, 165, 198, 0.08),
      rgba(184, 134, 11, 0.05));
}

@media (max-width: 1100px) {
  .li-cta-band {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .li-cta-band {
    grid-template-columns: 1fr;
    padding: 24px;
  }
}

.li-eyebrow {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.li-shell.li-light .li-eyebrow {
  border-color: rgba(10, 30, 50, 0.12);
  background: rgba(10, 30, 50, 0.03);
}

.li-dot {
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  flex: 0 0 10px;
}

/* Negative / exclusion lists — distinct from positive accent bullets */
.li-dot--negative {
  background: linear-gradient(135deg, #f25555, #c41e3a);
}

@media (max-width: 1100px) {
  .li-checkout-sticky {
    position: static;
  }
}

.li-placeholder {
  min-height: 220px;
  border-radius: 22px;
  border: 2px dashed rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  color: var(--muted);
  font-weight: 600;
}

.li-shell.li-light .li-placeholder {
  border-color: rgba(10, 30, 50, 0.16);
  background: linear-gradient(135deg, rgba(10, 30, 50, 0.03), rgba(10, 30, 50, 0.01));
}

.li-footer {
  padding: 28px 0 48px;
  color: #9fb3c2;
  font-size: 0.94rem;
}

.li-shell.li-light .li-footer {
  color: #667a89;
}

.li-footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.li-shell.li-light .li-footer-wrap {
  border-top-color: rgba(10, 30, 50, 0.08);
}

.li-sticky-mobile {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 70;
  padding: 10px;
  border-radius: 20px;
  backdrop-filter: blur(16px);
  background: rgba(8, 19, 29, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.li-shell.li-light .li-sticky-mobile {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(10, 30, 50, 0.08);
}

@media (max-width: 760px) {
  .li-sticky-mobile {
    display: block;
  }

  /* Only shells that actually render the fixed bottom bar need body clearance */
  .li-shell:has(.li-sticky-mobile) {
    padding-bottom: 92px;
  }
}

@media (max-width: 760px) {
  .li-footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Homepage trust grid — Figma Spiking AI Summit 2832:11969 (2×2 light cards, outline icons) */
.li-shell .li-home-trust-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.li-shell .li-home-trust-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 56px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(15, 45, 60, 0.1);
  background: #f8f9fa;
  color: #2c5260;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.li-shell.li-light .li-home-trust-pill {
  background: #f8f9fa;
  border-color: rgba(10, 30, 50, 0.12);
  color: #2c5260;
  box-shadow: 0 1px 2px rgba(10, 30, 50, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.li-shell .li-home-trust-pill-icon-svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #2c5260;
}

.li-shell .li-home-trust-pill-label {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: inherit;
}

.li-shell .li-home-hero-card {
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 28px;
  box-shadow: var(--shadow);
  min-height: 560px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 18px;
}

.li-shell.li-light .li-home-hero-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82));
  border-color: rgba(10, 30, 50, 0.08);
}

.li-shell .li-home-card-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
}

.li-shell .li-home-dashboard {
  display: grid;
  gap: 16px;
  align-content: end;
}

.li-shell .li-home-dashboard-card h3 {
  font-size: 1rem;
  margin-bottom: 0;
}

.li-shell .li-home-dashboard-card {
  border-radius: 22px;
  background: rgba(4, 15, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
}

.li-shell.li-light .li-home-dashboard-card {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(10, 30, 50, 0.08);
}

.li-shell .li-home-score {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.li-shell .li-home-score-tag {
  padding: 8px 12px;
  background: rgba(143, 232, 255, 0.14);
  border: 1px solid rgba(143, 232, 255, 0.24);
  border-radius: 999px;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
}

.li-shell .li-home-bar-track {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.li-shell.li-light .li-home-bar-track {
  background: rgba(10, 30, 50, 0.08);
}

.li-shell .li-home-bar-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--accent));
}

.li-shell .li-home-cta-panel {
  padding: 22px;
  border-radius: 22px;
  background: rgba(6, 16, 24, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.li-shell.li-light .li-home-cta-panel {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(10, 30, 50, 0.08);
}

.li-shell .li-home-quote {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.3rem;
  line-height: 1.4;
  color: var(--text);
}

.li-shell .li-home-quote-icon {
  margin-top: 0.12em;
  width: 1.65rem;
  height: 1.65rem;
  flex-shrink: 0;
  color: var(--accent-strong);
  opacity: 0.92;
}

.li-shell .li-home-disclaimer {
  font-size: 0.86rem;
  color: #8ea5b6;
  margin-top: 14px;
  max-width: 72ch;
}

.li-shell.li-light .li-home-disclaimer {
  color: #6f8595;
}

.li-shell .li-home-mini-input {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  outline: none;
  font: inherit;
}

.li-shell.li-light .li-home-mini-input {
  background: rgba(10, 30, 50, 0.03);
}

.li-shell .li-home-mini-input::placeholder {
  color: #97acbc;
}

/* Home hero mini form — match .li-home-mini-input height & radius */
.li-shell .li-home-mini-phone .li-phone-field {
  min-height: 50px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.li-shell.li-light .li-home-mini-phone .li-phone-field {
  background: rgba(10, 30, 50, 0.03);
}

.li-shell .li-home-mini-phone .li-phone-field input[type="tel"]::placeholder {
  color: #97acbc;
}