/* Datalink Discover 2026 — conference microsite */
:root {
  --navy: #0b1426;
  --navy-mid: #132038;
  --navy-light: #1a2d4d;
  --accent: #3b82f6;
  --accent-soft: rgba(59, 130, 246, 0.15);
  --text: #e8edf5;
  --text-muted: #94a3b8;
  --border: rgba(148, 163, 184, 0.2);
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Outfit", var(--font-sans);
  --radius: 12px;
  --shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
  /* Offset in-page anchors so fixed header does not cover targets */
  scroll-padding-top: var(--site-chrome-h, 88px);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--navy);
  min-height: 100vh;
  /* Space for fixed .site-chrome-h is set by site.js (falls back below) */
  padding-top: var(--site-chrome-h, 88px);
}

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

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.wrap {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* Header — sticky only when not inside .site-sticky-head (fallback) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 20, 38, 0.97);
  border-bottom: 1px solid var(--border);
}

.site-header .inner,
.site-header .site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  flex-wrap: wrap;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
}
.logo:hover {
  text-decoration: none;
  opacity: 0.92;
}
.logo--mark img {
  display: block;
  height: 40px;
  width: auto;
  max-width: min(200px, 45vw);
}
@media (max-width: 480px) {
  .logo--mark img {
    height: 34px;
  }
}

.nav-toggle {
  display: none;
  background: var(--navy-light);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.nav-main a {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
}
.nav-main a:hover,
.nav-main a[aria-current="page"] {
  color: var(--text);
}
.nav-main .cta {
  background: var(--accent);
  color: #fff !important;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}
.nav-main .cta:hover {
  filter: brightness(1.08);
  text-decoration: none;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  .nav-main {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 0 1rem;
    border-top: 1px solid var(--border);
  }
  .nav-main.is-open {
    display: flex;
  }
}

/* Footer */
.site-footer {
  margin-top: 4rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  background: var(--navy-mid);
  font-size: 0.9rem;
  color: var(--text-muted);
}
.site-footer a {
  color: var(--text-muted);
}
.site-footer a:hover {
  color: var(--accent);
}
.site-footer .grid,
.site-footer .site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.site-footer__legal {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.site-footer h3 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text);
  margin: 0 0 0.75rem;
}

/* Hero */
.hero {
  padding: 3rem 0 4rem;
  background: linear-gradient(165deg, var(--navy-light) 0%, var(--navy) 45%, #0a0f1a 100%);
  border-bottom: 1px solid var(--border);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}
.hero .tagline {
  font-size: 1.25rem;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 0.5rem;
}
.hero .meta {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0 0 1.5rem;
}

.series-eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin: 0 0 0.75rem;
}
.hero-series-lead {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: var(--text-muted);
  max-width: 40rem;
  margin: 0 0 1.75rem;
  line-height: 1.55;
}

.next-event-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin: 0 0 1.75rem;
  box-shadow: var(--shadow);
  max-width: 36rem;
}
.next-event-card .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 0.35rem;
}
.next-event-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin: 0 0 0.35rem;
  letter-spacing: -0.02em;
}
.next-event-card .when-where {
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0 0 1rem;
}
.next-event-card .pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.inclusive-banner {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(15, 23, 42, 0.9) 100%);
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 0 0 1.75rem;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
}
.inclusive-banner strong.headline {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.inclusive-banner p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}
.inclusive-banner p strong {
  color: var(--text);
}

.hero-text-links {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-top: 1rem;
}
.hero-text-links a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hero-text-links a:hover {
  color: var(--accent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: filter 0.15s, transform 0.15s;
}
.btn:hover {
  text-decoration: none;
  filter: brightness(1.06);
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Logo bars (match Datalink Discover landing assets) */
.hero-brand {
  margin-bottom: 1.75rem;
}
.hero-brand img {
  max-width: min(280px, 85vw);
  height: auto;
}

.logo-strip {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.logo-strip h2,
.logo-strip .logo-strip-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  text-align: center;
}
.logo-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 2rem;
}
.logo-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.logo-grid a:hover {
  text-decoration: none;
  opacity: 0.9;
}
.logo-grid img {
  max-height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}
.logo-grid .logo-tile-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  border-radius: 10px;
  padding: 0.65rem 1rem;
}
.logo-grid .logo-tile-light img {
  max-height: 44px;
  max-width: 160px;
}
.logo-grid a.logo-tile-light img {
  max-height: 52px;
  max-width: min(280px, 70vw);
}
.logo-grid .logo-align img {
  max-height: 72px;
  max-width: 72px;
  border-radius: 8px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.stat {
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  text-align: center;
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--text);
}
.stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Sections */
section {
  padding: 3rem 0;
}
section.alt {
  background: var(--navy-mid);
  border-block: 1px solid var(--border);
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}
.lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 65ch;
  margin: 0 0 1.5rem;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}
.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Testimonials */
.quote-block {
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  color: var(--text-muted);
  font-style: italic;
}
.quote-block cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

/* Schedule table */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.schedule-table th,
.schedule-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.schedule-table th {
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: var(--navy-mid);
}
.schedule-table tr:hover td {
  background: rgba(59, 130, 246, 0.06);
}
.schedule-table .time {
  white-space: nowrap;
  color: var(--accent);
  font-weight: 600;
  width: 9rem;
}
.day-heading {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 2rem 0 0.75rem;
  color: var(--accent);
}
.day-heading:first-of-type {
  margin-top: 0;
}

/* Session / speaker page title band — scrolls with content (only .site-sticky-head is sticky) */
.page-hero {
  padding: 2.5rem 0;
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 55%, var(--navy) 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 0.5rem;
}
.page-hero .breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.page-hero .breadcrumb a {
  color: var(--text-muted);
}
.page-hero .meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.content-block {
  padding: 2.5rem 0;
  max-width: 720px;
}
.content-block.wide {
  max-width: 900px;
}
/* Bentonville venue — room for larger photo grids */
.content-block.wide.venue-wide {
  max-width: min(1180px, 96vw);
}

.speaker-profile {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  align-items: start;
  margin: 2rem 0;
}
@media (max-width: 600px) {
  .speaker-profile {
    grid-template-columns: 1fr;
  }
}
.speaker-profile img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  width: 100%;
  height: auto;
  display: block;
  background: var(--navy-light);
}

.tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  margin-right: 0.35rem;
  margin-bottom: 0.35rem;
}

.faq details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  background: var(--navy-light);
}
.faq summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq p {
  margin: 0.75rem 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

.venue-figure {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin: 1.5rem 0;
  box-shadow: var(--shadow);
}
.venue-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.event-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 0 0 2rem;
}
@media (max-width: 720px) {
  .event-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
.event-stat {
  text-align: center;
  padding: 1rem 0.75rem;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.event-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  color: var(--text);
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}
.event-stat span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.what-expect {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2rem;
  margin: 1rem 0 0;
}
@media (max-width: 720px) {
  .what-expect {
    grid-template-columns: 1fr;
  }
}
.what-expect h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.25rem;
}
@media (max-width: 720px) {
  .testimonials {
    grid-template-columns: 1fr;
  }
}
.testimonial {
  margin: 0;
  padding: 1.25rem;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}
.testimonial blockquote {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
}
.testimonial figcaption {
  font-size: 0.88rem;
  color: var(--text);
}
.testimonial figcaption cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  margin-top: 0.15rem;
}
.testimonial figcaption .testimonial-role {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 0.15rem;
}

.venue-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}
.venue-gallery-section {
  margin: 2.5rem 0 0;
}
.venue-gallery-section:first-of-type {
  margin-top: 1.25rem;
}
.venue-gallery-section h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--text);
  letter-spacing: -0.01em;
}
.venue-gallery-section > p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 70ch;
}
.venue-gallery figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  align-self: start;
}
.venue-gallery img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: unset;
}
.venue-gallery figcaption {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 0.5rem 0.65rem;
  background: var(--navy-light);
  border-top: 1px solid var(--border);
  line-height: 1.4;
}

/* Venue page — multi-column photo collage */
.venue-collage {
  column-count: 2;
  column-gap: 10px;
  margin: 1.25rem 0 0.5rem;
}
@media (min-width: 640px) {
  .venue-collage {
    column-count: 3;
  }
}
@media (min-width: 1100px) {
  .venue-collage {
    column-count: 4;
  }
}
.venue-collage__piece {
  break-inside: avoid;
  margin-bottom: 10px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--navy-mid);
}
.venue-collage__piece img {
  width: 100%;
  height: auto;
  display: block;
}
p.venue-collage-credit {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 2rem;
  line-height: 1.55;
  max-width: 70ch;
}

.event-ledger-strip {
  margin: 0;
  border-bottom: 1px solid var(--border);
  background: var(--navy-mid);
}
.event-ledger-strip figure {
  margin: 0;
}
.event-ledger-strip img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: unset;
  display: block;
}
.event-ledger-strip figcaption {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0.75rem clamp(1rem, 4vw, 1.75rem);
  margin: 0 auto;
  max-width: 1120px;
  width: min(1120px, 92vw);
  box-sizing: border-box;
  line-height: 1.55;
}

.speaker-teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.speaker-teaser {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.speaker-teaser img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border);
}
.speaker-teaser h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-family: var(--font-display);
}
.speaker-teaser p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-check li {
  padding: 0.35rem 0 0.35rem 1.5rem;
  position: relative;
  color: var(--text-muted);
}
.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* Responsive YouTube embed */
.video-embed {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 1.5rem auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-caption {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  max-width: 65ch;
}

/*
 * Fixed chrome: primary header + event subnav (position:sticky breaks when any
 * ancestor is a scroll container or in some embedded previews — fixed is reliable).
 */
#site-header {
  position: relative;
  z-index: 300;
  /* In-flow height is 0 while child is fixed; body padding-top reserves space */
  min-height: 0;
}

.site-sticky-head {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 300;
  display: block;
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  isolation: isolate;
}
.site-sticky-head .site-header {
  position: relative;
  top: auto;
  z-index: auto;
  background: transparent;
  border-bottom: 1px solid var(--border);
  backdrop-filter: none;
}

/* Mega-style dropdowns */
.nav-dropdown {
  position: relative;
}
.nav-dropdown__btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  padding: 0.35rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-dropdown__btn::after {
  content: "";
  border: 4px solid transparent;
  border-top-color: currentColor;
  margin-top: 0.2rem;
  opacity: 0.7;
}
.nav-dropdown__btn:hover,
.nav-dropdown.is-open .nav-dropdown__btn {
  color: var(--text);
}
.nav-dropdown__panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 14rem;
  padding: 0.5rem 0;
  margin-top: 0.35rem;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.nav-dropdown.is-open .nav-dropdown__panel {
  display: block;
}
.nav-dropdown__panel a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
}
.nav-dropdown__panel a:hover,
.nav-dropdown__panel a[aria-current="page"] {
  color: var(--text);
  background: rgba(59, 130, 246, 0.08);
}
.nav-dropdown__panel .nav-dropdown__cta {
  margin-top: 0.25rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--border);
  color: var(--accent);
}

.nav-main__apply {
  background: var(--accent);
  color: #fff !important;
  padding: 0.5rem 1rem !important;
  border-radius: 8px;
  margin-left: 0.25rem;
}
.nav-main__apply:hover {
  filter: brightness(1.08);
  text-decoration: none !important;
}

/* Event sub-navigation (scrolls as part of .site-sticky-head; not separately sticky) */
.event-subnav {
  position: relative;
  top: auto;
  z-index: auto;
  border-top: none;
  background: rgba(10, 15, 26, 0.55);
  border-bottom: none;
}
.event-subnav__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  padding: 0.55rem 0;
}
.event-subnav__badge {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.event-subnav__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1.1rem;
}
.event-subnav__links a {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
}
.event-subnav__links a:hover,
.event-subnav__links a[aria-current="page"] {
  color: var(--text);
}

@media (max-width: 768px) {
  .nav-dropdown__panel {
    position: static;
    margin-top: 0.25rem;
    border: none;
    box-shadow: none;
    background: var(--navy-light);
    border-radius: 8px;
    padding: 0.25rem 0;
  }
  .nav-dropdown.is-open .nav-dropdown__panel {
    display: block;
  }
  .event-subnav__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Event hub hero — scrolls with content */
.event-hero {
  padding: 2.75rem 0 3.25rem;
  background: linear-gradient(165deg, #152a4a 0%, var(--navy) 50%, #0a0f1a 100%);
  border-bottom: 1px solid var(--border);
}
.event-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  line-height: 1.1;
}
.event-hero__lead {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 44rem;
  margin: 0 0 0.5rem;
  line-height: 1.55;
}

.section-tight {
  padding: 2.5rem 0;
}
.section-tight--bottom {
  padding-bottom: 3.5rem;
}

.card--emphasis {
  border-color: rgba(59, 130, 246, 0.35);
  background: linear-gradient(145deg, var(--navy-light), rgba(26, 45, 77, 0.6));
}

.page-hero--compact {
  padding: 2rem 0 1.5rem;
}

/* Apply page */
.apply-layout {
  display: grid;
  grid-template-columns: 1fr min(26rem, 100%);
  gap: 2.5rem;
  align-items: start;
  padding: 2rem 0 4rem;
}
@media (max-width: 900px) {
  .apply-layout {
    grid-template-columns: 1fr;
  }
}
.apply-lead {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 1.25rem;
}
.apply-trust {
  margin-bottom: 1.5rem;
}
.apply-note {
  font-size: 0.9rem;
  line-height: 1.55;
}
.apply-note code {
  font-size: 0.82em;
  background: var(--navy-light);
  padding: 0.15rem 0.35rem;
  border-radius: 4px;
  border: 1px solid var(--border);
}
.text-muted {
  color: var(--text-muted);
}
.apply-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.apply-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.35rem;
}
.apply-fieldset {
  border: none;
  margin: 0 0 1.1rem;
  padding: 0;
}
.apply-fieldset .apply-field__label {
  padding: 0;
}
.apply-field-hint {
  font-size: 0.82rem;
  margin: 0 0 0.65rem;
  line-height: 1.45;
}
.apply-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.65rem;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text);
}
.apply-checkbox:last-of-type {
  margin-bottom: 0;
}
.apply-checkbox input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--accent);
  cursor: pointer;
}
.apply-checkbox span {
  flex: 1;
}
.apply-form-status {
  font-size: 0.92rem;
  margin-bottom: 1rem;
  min-height: 1.25rem;
}
.apply-form-status.is-error {
  color: #f87171;
  white-space: normal;
  line-height: 1.55;
  max-width: 100%;
}
.apply-field {
  display: block;
  margin-bottom: 1.1rem;
}
.apply-field__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
.apply-field input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--navy);
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
}
.apply-field input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}
.apply-field--honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.apply-consent {
  font-size: 0.82rem;
  margin: 0 0 1rem;
  line-height: 1.5;
}
.btn-block {
  width: 100%;
}

.apply-benefit-tiers {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.25rem 0 0;
}
.apply-tier {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
}
.apply-tier--secondary {
  border-color: rgba(148, 163, 184, 0.28);
  background: rgba(26, 45, 77, 0.45);
}
.apply-tier__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--text);
  letter-spacing: -0.01em;
}
.apply-tier__text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.apply-tier__text strong {
  color: var(--text);
}
