/* ============================================================================
   Seminar landing page styles. Loaded ALONGSIDE seminar-kit.css (for the shared
   :root tokens and component classes). Overrides the deck's fixed-stage body so
   the landing page scrolls normally.
   ============================================================================ */

html, body { height: auto; background: var(--bg); overflow: visible; }
body { color: var(--ink); }

.lp { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

/* Sticky co-branded top bar */
.lp-bar {
  position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--line);
}
.lp-bar .lp { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 10px 20px; }
.lp-bar .brands { display: flex; align-items: center; gap: 14px; }
.lp-bar .brand-card .b-name { font-size: 14px; }
.lp-bar .brand-card .b-role, .lp-bar .brand-card .b-meta { display: none; }
.lp-bar .brand-card img.headshot, .lp-bar .brand-card .headshot { width: 38px; height: 38px; }
.lp-bar .divider { width: 1px; height: 32px; background: var(--line); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 800; font-size: 15px; padding: 12px 22px; border-radius: 10px; border: none; cursor: pointer; text-decoration: none; transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease; }
.btn-primary { background: var(--teal-dark); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { transform: translateY(-2px); background: #007e97; box-shadow: var(--shadow-lg); }
.btn-ghost { background: transparent; color: var(--navy); border: 1px solid var(--line); }
.btn-block { width: 100%; }

/* Hero */
.hero { background: linear-gradient(150deg, #0f1b52 0%, #16225f 55%, #0b1338 100%); color: #fff; position: relative; overflow: hidden; }
.hero .mesh { position: absolute; inset: 0; opacity: 0.5; pointer-events: none; }
.hero .mesh::before { content:""; position:absolute; width:52vw; height:52vw; right:-14vw; top:-18vw; background: radial-gradient(circle, rgba(0,180,216,0.5), transparent 62%); }
.hero .mesh::after { content:""; position:absolute; width:40vw; height:40vw; left:-12vw; bottom:-18vw; background: radial-gradient(circle, rgba(250,185,91,0.25), transparent 60%); }
.hero .lp { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 42px; align-items: center; padding: 54px 20px 64px; }
.hero .eyebrow { color: var(--teal); }
.hero h1 { font-size: clamp(32px, 4.6vw, 52px); line-height: 1.05; font-weight: 800; letter-spacing: -0.02em; margin: 10px 0 14px; color: #fff; }
.hero p.sub { font-size: clamp(16px, 1.9vw, 20px); line-height: 1.5; color: #c7d0f2; margin: 0 0 20px; max-width: 52ch; }
.hero .meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.hero .meta .chip { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); color: #eaf0ff; padding: 7px 13px; border-radius: 999px; font-size: 13px; font-weight: 600; }

/* Signup card */
.signup-card { background: #fff; color: var(--ink); border-radius: 16px; padding: 24px; box-shadow: var(--shadow-lg); }
.signup-card h3 { font-size: 20px; color: var(--navy); margin: 0 0 4px; }
.signup-card p.small { font-size: 13px; color: var(--muted); margin: 0 0 16px; }
.field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.field label { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }
.field input[type="text"], .field input[type="email"], .field input[type="tel"] {
  font: inherit; font-size: 15px; padding: 11px 13px; border: 1px solid var(--border, #B8AD8C); border-radius: 10px; background: #FAFAEF; color: var(--ink);
}
.field input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,180,216,0.15); }
.consent { display: flex; gap: 9px; align-items: flex-start; font-size: 12px; color: var(--muted); line-height: 1.4; margin: 6px 0 14px; }
.consent input { margin-top: 2px; }
.form-msg { font-size: 14px; padding: 10px 12px; border-radius: 8px; margin-top: 10px; display: none; }
.form-msg.ok { display: block; background: #e7f9f1; color: #067a54; border: 1px solid #b6ecd7; }
.form-msg.err { display: block; background: #fdecec; color: #b42318; border: 1px solid #f6c9c4; }
.form-msg.info { display: block; background: #eef6fa; color: #0b4f66; border: 1px solid #cfeaf3; }
.signup-success { text-align: center; padding: 10px 0; }
.signup-success .check { width: 56px; height: 56px; border-radius: 999px; background: #e7f9f1; color: #067a54; display: grid; place-items: center; margin: 0 auto 12px; }

/* Sections */
section.block { padding: 56px 0; }
section.block.tint { background: var(--bg-tint); }
section.block.cream { background: var(--bg-subtle); }
.section-head { text-align: center; max-width: 60ch; margin: 0 auto 34px; }
.section-head .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 40px); font-weight: 800; color: var(--navy); letter-spacing: -0.015em; margin: 8px 0 10px; }
.section-head p { font-size: 17px; color: #4b5163; margin: 0; }

.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.benefit { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 22px; box-shadow: var(--shadow); }
.benefit .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--bg-tint); color: var(--teal-dark); display: grid; place-items: center; margin-bottom: 12px; font-size: 22px; font-weight: 800; }
.benefit h3 { font-size: 18px; color: var(--navy); margin: 0 0 6px; }
.benefit p { font-size: 14.5px; color: var(--muted); margin: 0; line-height: 1.5; }

.teaser-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.teaser-stat { text-align: center; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 26px 18px; box-shadow: var(--shadow); }
.teaser-stat .v { font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: var(--navy); font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }
.teaser-stat .v.good { color: var(--good); }
.teaser-stat .l { font-size: 13px; color: var(--muted); margin-top: 4px; }
.teaser-note { text-align: center; font-size: 12.5px; color: var(--muted); margin-top: 16px; }

.agenda { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.agenda .item { display: grid; grid-template-columns: 30px 1fr; gap: 14px; align-items: start; }
.agenda .dot { width: 22px; height: 22px; border-radius: 999px; background: var(--teal); margin-top: 3px; }
.agenda h4 { margin: 0; font-size: 16px; color: var(--navy); }
.agenda p { margin: 2px 0 0; font-size: 14px; color: var(--muted); }

.presenters { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.presenter { display: flex; gap: 16px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 20px; box-shadow: var(--shadow); }
.presenter .headshot { width: 72px; height: 72px; border-radius: 999px; object-fit: cover; background: #dbe3ff; display: grid; place-items: center; font-weight: 800; color: var(--navy); font-size: 22px; }
.presenter h4 { margin: 0; font-size: 17px; color: var(--navy); }
.presenter .role { font-size: 13px; color: var(--teal-dark); font-weight: 700; }
.presenter .meta { font-size: 12.5px; color: var(--muted); margin-top: 3px; }

/* Single-branded mode (no co-brand partner - e.g. the root, non-cobranded site).
   The kit adds .ls-solo to <body>; hide partner chrome and center the LO. */
.ls-solo .lp-bar .divider,
.ls-solo .lp-bar .partner-mini { display: none !important; }
.ls-solo .presenters { grid-template-columns: 1fr !important; max-width: 480px; margin-left: auto; margin-right: auto; }
.ls-solo .presenters .presenter:last-child { display: none !important; }

.faq { max-width: 760px; margin: 0 auto; }
.faq details { border: 1px solid var(--line); border-radius: 12px; padding: 14px 18px; margin-bottom: 12px; background: #fff; }
.faq summary { font-weight: 700; color: var(--navy); cursor: pointer; font-size: 16px; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq details[open] summary { margin-bottom: 8px; }
.faq p { margin: 0; color: #4b5163; font-size: 14.5px; line-height: 1.55; }

.cta-final { background: linear-gradient(150deg, #0f1b52, #0b1338); color: #fff; text-align: center; }
.cta-final h2 { color: #fff; }
.cta-final .signup-card { max-width: 460px; margin: 22px auto 0; text-align: left; }

.lp-foot { background: var(--navy); color: #aebbe6; font-size: 11.5px; line-height: 1.6; padding: 26px 0; }
.lp-foot .pending { color: var(--gold); font-weight: 700; }
.lp-foot a { color: #cdd6f5; }

@media (max-width: 820px) {
  .hero .lp { grid-template-columns: 1fr; gap: 26px; padding: 36px 20px 44px; }
  .benefits, .teaser-stats, .presenters { grid-template-columns: 1fr; }
  /* Keep both host + partner in the sticky bar on mobile, just more compact. */
  .lp-bar .lp { padding: 8px 14px; gap: 10px; }
  .lp-bar .brands { gap: 9px; }
  .lp-bar .brand-card .b-name { font-size: 12px; }
  .lp-bar .brand-card img.headshot, .lp-bar .brand-card .headshot { width: 30px; height: 30px; font-size: 13px; }
  .lp-bar .divider { height: 26px; }
  .lp-bar .btn { padding: 8px 12px; font-size: 13px; }
}
@media (max-width: 460px) {
  /* Very narrow: drop the partner from the bar to avoid crowding the CTA. */
  .lp-bar .brands .partner-mini, .lp-bar .brands .divider { display: none; }
}
