/* ═══════════════════════════════════════════════════════════════
   LEADER UPP — SHARED DESIGN SYSTEM STYLESHEET
   Upload this file to: wp-content/uploads/css/leaderupp-styles.css
   Linked once from the Header Elementor template (leaderupp_header_elementor.html)
   via <link rel="stylesheet">, so the browser downloads and caches it
   ONCE and reuses it across every page on the site, instead of resending
   this CSS inline inside every single page's HTML.
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   LEADER UPP — SHARED DESIGN SYSTEM (loads once, via the Header)
   ═══════════════════════════════════════════════════════════════ */

:root {
  --navy:        #003365;
  --navy-deep:   #001f3f;
  --navy-mid:    #002548;
  --blue:        #1360FA;
  --sky:         #00B0F0;
  --gold:        #C9A84C;
  --gold-lite:   #E8D5A3;
  --gold-dark:   #A8872E;

  --offwhite:    #F5F9FF;
  --white:       #FFFFFF;
  --ink:         #0D1B2A;
  --ink-soft:    #3a4a5c;
  --muted:       #6B7A8D;
  --rule:        rgba(255,255,255,0.10);
  --rule-light:  rgba(0,51,101,0.10);

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;

  --fs-h1:    clamp(2.5rem, 4.6vw, 4.5rem);
  --fs-h2:    clamp(1.9rem, 3.3vw, 2.9rem);
  --fs-h3:    clamp(1.25rem, 1.8vw, 1.55rem);
  --fs-stat:  clamp(2.3rem, 4.5vw, 3.4rem);
  --fs-lead:  clamp(1.05rem, 1.3vw, 1.22rem);
  --fs-body:  1rem;
  --fs-small: 0.9rem;
  --fs-label: 0.72rem;

  --max:      1440px;
  --max-narrow: 760px;
  --pad:      clamp(1.5rem, 4vw, 3rem);
  --sec-pad:  clamp(4.5rem, 9vw, 7.5rem);

  --ease: 0.25s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--ink);
  font-size: var(--fs-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
svg { display: block; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::as { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.container--narrow { max-width: var(--max-narrow); }
.section { padding: var(--sec-pad) 0; position: relative; }
.bg-paper { background: var(--offwhite); }
.bg-white { background: var(--white); }
.bg-navy  { background: var(--navy-deep); color: var(--offwhite); }
.bg-navy .ink-soft-on-dark { color: rgba(255,255,255,0.68); }

.kicker { display: flex; align-items: baseline; gap: 0.6rem; margin-bottom: 1.4rem; }
.kicker-label { font-family: var(--sans); font-size: var(--fs-label); font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue); }
.bg-navy .kicker-label { color: var(--sky); }

.display { font-family: var(--serif); font-weight: 800; line-height: 1.06; letter-spacing: -0.01em; color: var(--navy); }
.bg-navy .display { color: var(--white); }
.display em { font-style: italic; font-weight: 700; color: var(--gold-dark); }
.bg-navy .display em { color: var(--gold); }

.h1 { font-size: var(--fs-h1); }
.h2 { font-size: var(--fs-h2); }
.h3 { font-family: var(--serif); font-weight: 700; font-size: var(--fs-h3); color: var(--navy); }
.bg-navy .h3 { color: var(--white); }

.lead { font-size: var(--fs-lead); font-weight: 300; line-height: 1.65; color: var(--ink-soft); max-width: 46em; }
.bg-navy .lead { color: rgba(255,255,255,0.72); }

.body-text { font-size: var(--fs-body); line-height: 1.75; color: var(--ink-soft); max-width: 42em; }
.body-text + .body-text { margin-top: 1rem; }
.bg-navy .body-text { color: rgba(255,255,255,0.65); }

.stat-num { font-family: var(--serif); font-weight: 800; font-size: var(--fs-stat); color: var(--navy); line-height: 1; }
.bg-navy .stat-num { color: var(--gold); }

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--sans); font-size: var(--fs-label); font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.9rem 1.9rem; border-radius: 2px;
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--navy-deep); box-shadow: 0 4px 20px rgba(201,168,76,0.28); }
.btn-gold:hover { background: var(--gold-lite); box-shadow: 0 8px 28px rgba(201,168,76,0.4); }
.btn-navy { background: var(--navy); color: var(--white); box-shadow: 0 4px 20px rgba(0,31,63,0.2); }
.btn-navy:hover { background: var(--navy-mid); }
.btn-outline { background: transparent; border: 1.5px solid var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.bg-navy .btn-outline { border-color: rgba(255,255,255,0.35); color: var(--white); }
.bg-navy .btn-outline:hover { background: rgba(255,255,255,0.06); border-color: var(--white); }

.btn-text {
  font-family: var(--sans); font-size: var(--fs-small); font-weight: 600; letter-spacing: 0.02em;
  color: var(--navy); border-bottom: 1px solid var(--gold-dark); padding-bottom: 0.15rem;
  transition: color var(--ease), border-color var(--ease);
}
.btn-text:hover { color: var(--gold-dark); }
.bg-navy .btn-text { color: var(--white); border-color: var(--gold); }
.bg-navy .btn-text:hover { color: var(--gold); }

.site-nav { position: sticky; top: 0; z-index: 200; height: 78px; background: var(--navy-deep); border-bottom: 1px solid var(--rule); }
.nav-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.nav-logo img { height: 38px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2rem; margin-left: auto; font-family: var(--sans); font-size: 0.86rem; font-weight: 500; }
.nav-links a { color: rgba(255,255,255,0.68); transition: color var(--ease); position: relative; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--white); }
.nav-links a[aria-current="page"]::after { content: ''; position: absolute; left: 0; right: 0; bottom: -22px; height: 2px; background: var(--gold); }
.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-cta .btn-outline { border-color: rgba(255,255,255,0.35); color: var(--white); }
.nav-cta .btn-outline:hover { background: rgba(255,255,255,0.06); border-color: var(--white); }
.nav-toggle { display: none; align-items: center; justify-content: center; gap: 9px; width: auto; height: 26px; color: var(--white); }
.nav-toggle-icon { flex-shrink: 0; transition: transform var(--ease); }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon { transform: rotate(180deg); }
.nav-toggle-burger { display: flex; flex-direction: column; justify-content: space-between; width: 20px; height: 14px; flex-shrink: 0; }
.nav-toggle-burger span { display: block; height: 2px; width: 100%; background: var(--white); border-radius: 1px; }

/* ── NAV VARIANT: spaced (floating, gap before hero) ─────────── */
.site-nav--spaced { border-bottom: 1px solid rgba(255,255,255,0.14); margin-bottom: 10px; }

@media (max-width: 880px) {
  .nav-links { position: fixed; inset: 78px 0 0 50%; background: var(--navy-deep); box-shadow: -12px 0 32px rgba(0,15,30,0.35); flex-direction: column; justify-content: flex-start; align-items: flex-start; padding: 2.2rem 1.4rem 2rem; gap: 1.6rem; font-size: 1.05rem; transform: translateX(100%); transition: transform var(--ease); }
  .nav-links.open { transform: translateX(0); }
  .nav-toggle { display: flex; }
  .nav-cta .btn-outline { display: none; }
}

.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.7); padding: 5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr 1.1fr; gap: 3rem; padding-bottom: 3.5rem; border-bottom: 1px solid var(--rule); }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo img { height: 40px; width: auto; margin-bottom: 1.2rem; }
.footer-tagline { font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: var(--white); max-width: 26em; line-height: 1.5; margin-bottom: 1.5rem; }
.footer-contact { font-size: 0.88rem; line-height: 2; }
.footer-contact a { transition: color var(--ease); }
.footer-contact a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.4rem; }
.footer-social a { width: 36px; height: 36px; background: var(--sky); color: var(--navy-deep); border-radius: 6px; display: flex; align-items: center; justify-content: center; transition: background var(--ease), transform var(--ease); }
.footer-social a:hover { background: var(--gold); transform: translateY(-2px); }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }
.footer-col h4 { font-family: var(--sans); font-weight: 700; font-size: var(--fs-label); letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.9rem; }
.footer-col a { transition: color var(--ease); }
.footer-col a:hover { color: var(--white); }
.footer-newsletter p { font-size: 0.88rem; line-height: 1.6; margin-bottom: 1rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 1.6rem 0; font-size: 0.8rem; color: rgba(255,255,255,0.45); flex-wrap: wrap; gap: 0.6rem; }
.footer-bottom a:hover { color: var(--gold); }

.hero { padding: clamp(3.5rem,7vw,6rem) 0 clamp(4rem,7vw,6rem); overflow: hidden; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2.5rem,5vw,4rem); align-items: start; position: relative; z-index: 1; }
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; } }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.4rem; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 1.6rem 2.2rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--rule-light); }
.hero-meta div { font-family: var(--sans); font-size: 0.8rem; color: var(--muted); max-width: 11em; }
.hero-meta strong { display: block; font-family: var(--serif); font-size: 1.5rem; color: var(--navy); font-weight: 800; margin-bottom: 0.15rem; }
@media (max-width: 500px) { .hero-meta { gap: 1.4rem 1.8rem; } .hero-meta div { max-width: 9em; } }
.bg-navy .hero-meta { border-top-color: var(--rule); }
.bg-navy .hero-meta div { color: rgba(255,255,255,0.5); }
.bg-navy .hero-meta strong { color: var(--gold); }

.hero-shape { position: absolute; z-index: 0; pointer-events: none; top: -8%; left: 12%; width: min(56vw, 760px); height: min(56vw, 760px); clip-path: polygon(0 0, 100% 100%, 0 100%); background: linear-gradient(135deg, var(--blue) 0%, var(--sky) 60%, transparent 100%); opacity: 0.16; filter: blur(2px); }
.hero-shape--2 { top: auto; bottom: -20%; left: auto; right: -6%; width: min(34vw, 460px); height: min(34vw, 460px); clip-path: polygon(100% 0, 100% 100%, 0 100%); background: linear-gradient(315deg, var(--gold) 0%, var(--gold-lite) 70%, transparent 100%); opacity: 0.1; }

.hero-mosaic { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hero-mosaic svg { display: block; width: 100%; height: 100%; }
.hero-mosaic::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,31,63,0.65) 0%, rgba(0,31,63,0.25) 42%, rgba(0,31,63,0) 62%); }
@media (max-width: 940px) { .hero-mosaic::after { background: rgba(0,31,63,0.6); } }

.section-shapes { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.section-shapes svg { display: block; width: 100%; height: 100%; }

.hero-visual { position: relative; }
.hero-visual::before { content: ''; position: absolute; inset: 18px -18px -18px 18px; border: 1.5px solid var(--gold); z-index: 0; }
.hero-visual-frame { position: relative; z-index: 1; overflow: hidden; aspect-ratio: 4/5; }
.hero-visual-frame img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.94) contrast(1.02); }
.hero-visual-frame::after { content: ''; position: absolute; inset: 0; background: linear-gradient(178deg, rgba(0,31,63,0.05) 0%, rgba(0,31,63,0.55) 100%); }

.hero-side-actions { position: fixed; right: 0; top: 50%; transform: translateY(-50%); z-index: 150; display: flex; flex-direction: column; }
.hero-side-actions .btn { writing-mode: vertical-rl; text-orientation: mixed; border-radius: 0; padding: 1rem 0.6rem; justify-content: center; letter-spacing: 0.14em; font-size: 0.62rem; box-shadow: none; }
.hero-side-actions .btn-side-fill { background: var(--blue); color: var(--white); }
.hero-side-actions .btn-side-fill:hover { background: var(--navy-mid); }
.hero-side-actions .btn-side-outline { background: var(--navy-deep); border: 1px solid var(--sky); color: var(--sky); border-top: none; }
.hero-side-actions .btn-side-outline:hover { background: rgba(0,176,240,0.1); }
@media (max-width: 700px) { .hero-side-actions { display: none; } }

.cat-marquee { background: var(--navy-deep); border-top: 1px solid var(--rule); overflow: hidden; }
.cat-marquee-inner { display: flex; align-items: center; }
.cat-marquee-label { flex-shrink: 0; font-family: var(--sans); font-weight: 700; font-size: var(--fs-label); letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); padding: 1.3rem var(--pad); border-right: 1px solid var(--rule); }
.cat-marquee-viewport { overflow: hidden; flex: 1; }
.cat-marquee-track { display: flex; width: max-content; gap: 2.6rem; padding: 1.3rem 2.6rem; animation: scroll-left 28s linear infinite; }
.cat-marquee:hover .cat-marquee-track { animation-play-state: paused; }
.cat-marquee-track span { font-family: var(--sans); font-weight: 600; font-size: 0.95rem; color: rgba(255,255,255,0.78); white-space: nowrap; }
.cat-marquee-track span.dot { color: var(--gold); }

.logo-strip { padding: 2.6rem 0; border-top: 1px solid var(--rule-light); border-bottom: 1px solid var(--rule-light); }
.logo-strip-inner { display: flex; align-items: center; gap: clamp(2rem,5vw,4rem); flex-wrap: wrap; }
.logo-strip-label { font-family: var(--sans); font-weight: 700; font-size: var(--fs-label); letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.logo-strip-logos { display: flex; align-items: center; gap: clamp(2rem,4vw,3.2rem); flex-wrap: wrap; }
.logo-strip-logos img { height: 34px; width: auto; object-fit: contain; transition: transform var(--ease); }
.logo-strip-logos img.logo--lg { height: 50px; }
.logo-strip-logos img:hover { transform: scale(1.15); }

.quote-block { display: grid; grid-template-columns: auto 1fr; gap: 2.2rem; align-items: center; }
@media (max-width: 700px) { .quote-block { grid-template-columns: 1fr; } }
.quote-portrait { width: 108px; height: 108px; border-radius: 50%; overflow: hidden; border: 2px solid var(--gold); flex-shrink: 0; }
.quote-portrait img { width: 100%; height: 100%; object-fit: cover; }
.quote-mark { font-family: var(--serif); font-size: 3.4rem; color: var(--gold); line-height: 0.6; display: block; margin-bottom: 0.6rem; }
.quote-text { font-family: var(--serif); font-size: clamp(1.2rem,2vw,1.55rem); font-weight: 700; line-height: 1.45; color: var(--navy); font-style: italic; }
.quote-attrib { margin-top: 1.1rem; font-family: var(--sans); font-size: 0.85rem; color: var(--muted); }
.quote-attrib strong { color: var(--navy); font-style: normal; }

.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--rule-light); border: 1px solid var(--rule-light); margin-top: 3rem; }
@media (max-width: 880px) { .stats-grid { grid-template-columns: repeat(2,1fr); } }
.stat-cell { background: var(--offwhite); padding: 2rem 1.6rem; }
.bg-navy .stat-cell { background: var(--navy-deep); }
.bg-navy .stats-grid { background: var(--rule); border-color: var(--rule); }
.stat-cell p { font-size: 0.86rem; color: var(--ink-soft); margin-top: 0.6rem; line-height: 1.5; }
.bg-navy .stat-cell p { color: rgba(255,255,255,0.6); }
.stat-cell small { display: block; margin-top: 0.6rem; font-family: var(--sans); font-size: 0.76rem; color: var(--muted); }

.two-col { display: grid; grid-template-columns: var(--tc-ratio, 0.85fr 1.15fr); gap: clamp(2.5rem,5vw,5rem); align-items: start; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr !important; } }

.card-grid { display: grid; gap: 1px; background: var(--rule-light); border: 1px solid var(--rule-light); margin-top: 3rem; }
.bg-navy .card-grid { background: var(--rule); border-color: var(--rule); }
.card-grid--3 { grid-template-columns: repeat(3,1fr); }
.card-grid--2 { grid-template-columns: repeat(2,1fr); }
@media (max-width: 880px) { .card-grid--3, .card-grid--2 { grid-template-columns: 1fr; } }
.card { background: var(--offwhite); padding: 2.4rem 2.2rem; transition: background var(--ease); }
.bg-navy .card { background: var(--navy-deep); }
.bg-white .card, .bg-white .card-grid { background: var(--white); }
.bg-white .card-grid { border-color: var(--rule-light); background: var(--rule-light); }
.card:hover { background: var(--white); }
.bg-white .card:hover { background: var(--offwhite); }
.bg-navy .card:hover { background: var(--navy-mid); }
.card h4 { font-family: var(--serif); font-weight: 700; font-size: 1.15rem; color: var(--navy); margin-bottom: 0.7rem; line-height: 1.3; }
.bg-navy .card h4 { color: var(--white); }
.card p { font-size: 0.92rem; line-height: 1.65; color: var(--ink-soft); }
.bg-navy .card p { color: rgba(255,255,255,0.62); }

.program-card { display: flex; flex-direction: column; gap: 0.9rem; }
.program-tag { font-family: var(--sans); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.06em; color: var(--gold-dark); text-transform: uppercase; }
.bg-navy .program-tag { color: var(--gold); }
.program-card .btn-text { margin-top: 0.5rem; align-self: flex-start; }

.framework-card { border: 1px solid var(--rule-light); padding: 2.4rem 2rem; transition: border-color var(--ease), transform var(--ease); }
.framework-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.framework-card h4 { font-family: var(--serif); font-size: 1.2rem; color: var(--navy); margin-bottom: 0.7rem; }
.framework-card p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.6; margin-bottom: 1.2rem; }

.gallery { overflow: hidden; position: relative; }
.gallery::before, .gallery::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
.gallery::before { left: 0; background: linear-gradient(90deg, var(--navy-deep), transparent); }
.gallery::after { right: 0; background: linear-gradient(270deg, var(--navy-deep), transparent); }
.gallery-track { display: flex; gap: 1rem; width: max-content; animation: scroll-left 42s linear infinite; }
.gallery:hover .gallery-track { animation-play-state: paused; }
.gallery-track img { height: 220px; width: 300px; object-fit: cover; filter: saturate(0.9); }
.gallery-track--rev { animation-name: scroll-right; }
.gallery + .gallery { margin-top: 1rem; }
@keyframes scroll-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scroll-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.img-band { width: 100%; height: clamp(300px, 40vw, 560px); overflow: hidden; position: relative; }
.img-band img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.95) contrast(1.02); }
.img-band::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,24,46,0.28), rgba(0,24,46,0) 40%); }

.case-study { position: relative; }
.case-media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.case-media img { width: 100%; height: 100%; object-fit: cover; }
.case-media::after { content:''; position:absolute; inset:0; background: linear-gradient(0deg, rgba(0,31,63,0.35), rgba(0,31,63,0.05) 55%); }

.cta-banner { text-align: left; }
.cta-banner-grid { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; }

.diag-card { background: var(--white); border-top: 3px solid var(--sky); padding: 2.6rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; box-shadow: 0 10px 40px rgba(0,51,101,0.06); }
.spotlight-tag { font-family: var(--sans); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sky); margin-bottom: 0.8rem; display: block; }
.diag-card h3, .practice-spotlight h3 { font-family: var(--serif); font-size: 1.5rem; color: var(--navy); margin-bottom: 0.6rem; }
.diag-card p { font-size: 0.95rem; color: var(--ink-soft); max-width: 34em; }

.practice-spotlight { background: radial-gradient(120% 140% at 85% 10%, #0a3d6e 0%, var(--navy-deep) 55%, #00111f 100%); padding: 3rem; color: var(--white); margin-top: 3rem; }
.practice-spotlight .spotlight-tag { color: var(--gold); }
.practice-spotlight h3 { color: var(--white); }
.practice-spotlight p { font-size: 0.95rem; color: rgba(255,255,255,0.68); max-width: 34em; margin-bottom: 1.6rem; }

.ghost-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.4rem; margin-top: 1.4rem; }
@media (max-width: 700px) { .ghost-grid { grid-template-columns: 1fr; } }
.ghost-card { border: 1.5px dashed var(--rule-light); padding: 1.8rem; }
.ghost-card .spotlight-tag { color: var(--muted); }
.ghost-card h4 { font-family: var(--serif); font-size: 1.1rem; color: var(--muted); }

.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--rule-light); border: 1px solid var(--rule-light); margin-top: 3rem; }
@media (max-width: 800px) { .fit-grid { grid-template-columns: 1fr; } }
.fit-col { background: var(--white); padding: 2.4rem 2.2rem; }
.fit-col h3 { font-family: var(--serif); font-size: 1.2rem; margin-bottom: 1.4rem; }
.fit-col--yes h3 { color: var(--navy); }
.fit-col--no h3 { color: var(--muted); }
.fit-chip { display: flex; align-items: flex-start; gap: 0.7rem; padding: 0.75rem 0; border-top: 1px solid var(--rule-light); font-size: 0.9rem; line-height: 1.5; color: var(--ink-soft); }
.fit-chip:first-of-type { border-top: none; }
.fit-mark { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.68rem; font-weight: 700; margin-top: 0.1rem; }
.fit-col--yes .fit-mark { background: var(--gold); color: var(--navy-deep); }
.fit-col--no .fit-mark { background: var(--rule-light); color: var(--muted); }

.agenda-list { margin-top: 3rem; border-top: 1px solid var(--rule); }
.agenda-row { display: grid; grid-template-columns: 150px 1fr; gap: 2rem; padding: 1.6rem 0; border-bottom: 1px solid var(--rule); }
@media (max-width: 640px) { .agenda-row { grid-template-columns: 1fr; gap: 0.4rem; } }
.agenda-time { font-family: var(--serif); font-weight: 700; font-size: 1.1rem; color: var(--gold); }
.agenda-row h4 { font-family: var(--serif); font-size: 1.1rem; color: var(--white); margin-bottom: 0.4rem; }
.agenda-row p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.6; max-width: 40em; }

.event-details-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--rule-light); border: 1px solid var(--rule-light); margin-top: 2.4rem; }
@media (max-width: 800px) { .event-details-grid { grid-template-columns: repeat(2,1fr); } }
.event-detail { background: var(--white); padding: 1.6rem 1.4rem; border-top: 3px solid var(--sky); }
.event-detail .spotlight-tag { color: var(--sky); margin-bottom: 0.6rem; }
.event-detail strong { display: block; font-family: var(--serif); font-size: 1.25rem; color: var(--navy); font-weight: 800; }
.event-detail span { display: block; font-size: 0.8rem; color: var(--muted); margin-top: 0.25rem; }

.theme-block { background: var(--navy-deep); color: var(--white); padding: 2.6rem; margin-top: 1rem; }
.theme-block .spotlight-tag { color: var(--gold); }
.theme-block h3 { font-family: var(--serif); font-size: 1.6rem; margin-bottom: 0.8rem; }
.theme-block p { color: rgba(255,255,255,0.68); font-size: 0.96rem; max-width: 40em; margin-bottom: 1.6rem; }

.host-grid { display: grid; grid-template-columns: 280px 1fr; gap: 3rem; align-items: start; }
@media (max-width: 700px) { .host-grid { grid-template-columns: 1fr; } }
.host-photo { aspect-ratio: 4/5; overflow: hidden; border: 1.5px solid var(--gold); }
.host-photo img { width: 100%; height: 100%; object-fit: cover; }
.credential-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.6rem; }
.credential-tag { font-family: var(--sans); font-size: 0.76rem; font-weight: 600; padding: 0.45rem 0.9rem; border: 1px solid var(--rule); color: rgba(255,255,255,0.7); border-radius: 2px; }

.faq-list { margin-top: 2.5rem; border-top: 1px solid var(--rule-light); }
.faq-item { border-bottom: 1px solid var(--rule-light); }
.faq-question { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.5rem 0; font-family: var(--serif); font-weight: 700; font-size: 1.05rem; color: var(--navy); }
.faq-question::after { content: '+'; font-family: var(--sans); font-size: 1.4rem; font-weight: 400; color: var(--gold-dark); flex-shrink: 0; transition: transform var(--ease); }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.7; padding-bottom: 1.5rem; max-width: 44em; }

.countdown { display: flex; gap: 1.6rem; margin-top: 2rem; }
.countdown-block { text-align: center; }
.countdown-block strong { display: block; font-family: var(--serif); font-size: 2rem; font-weight: 800; color: var(--gold); line-height: 1; }
.countdown-block span { display: block; font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 0.4rem; }

.register-band { background: var(--blue); color: var(--white); text-align: center; padding: var(--sec-pad) 0; }
.register-band h2 { color: var(--white); }
.register-band p { color: rgba(255,255,255,0.8); margin-top: 0.6rem; margin-bottom: 2rem; }
.modal-overlay { position: fixed; inset: 0; z-index: 500; background: rgba(0,15,30,0.75); display: none; align-items: center; justify-content: center; padding: 2rem; }
.modal-overlay.open { display: flex; }
.modal-box { background: var(--white); width: min(560px, 100%); max-height: 88vh; position: relative; box-shadow: 0 30px 80px rgba(0,0,0,0.4); }
.modal-close { position: absolute; top: 0.8rem; right: 0.8rem; width: 34px; height: 34px; background: var(--navy-deep); color: var(--white); font-size: 1.1rem; z-index: 2; }
.modal-box iframe { width: 100%; height: 88vh; max-height: 700px; border: none; display: block; }

.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2.5rem,5vw,4rem); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-form { display: flex; flex-direction: column; gap: 1.3rem; margin-top: 2rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.field-label { display: block; font-family: var(--sans); font-weight: 600; font-size: 0.85rem; color: var(--navy); margin-bottom: 0.5rem; }
.field-input, .field-textarea, .field-select { width: 100%; font-family: var(--sans); font-size: 0.95rem; color: var(--ink); background: var(--offwhite); border: 1px solid var(--rule-light); padding: 0.85rem 1rem; border-radius: 3px; transition: border-color var(--ease), background var(--ease); }
.field-input:focus, .field-textarea:focus, .field-select:focus { outline: none; border-color: var(--sky); background: var(--white); }
.field-textarea { min-height: 130px; resize: vertical; }
.field-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%236B7A8D'%3E%3Cpath d='M5.5 7.5l4.5 4.5 4.5-4.5h-9z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; background-size: 16px; }
.form-note { font-size: 0.85rem; color: var(--ink-soft); border-left: 2px solid var(--gold); padding-left: 0.8rem; }
.contact-info-card { background: var(--navy-deep); color: rgba(255,255,255,0.75); padding: 2.4rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.1rem 0; }
.contact-info-divider { height: 1px; background: var(--rule); }
.contact-info-icon { flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; }
.contact-info-icon svg { width: 16px; height: 16px; fill: var(--sky); }
.contact-info-label { font-family: var(--sans); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.3rem; }
.contact-info-value { font-family: var(--sans); font-size: 0.95rem; color: var(--white); }
.contact-info-value a:hover { color: var(--sky); }

.legal-wrap { max-width: 760px; }
.legal-wrap h2 { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; color: var(--navy); margin: 2.4rem 0 0.9rem; }
.legal-wrap h2:first-child { margin-top: 0; }
.legal-wrap p { font-size: var(--fs-body); line-height: 1.8; color: var(--ink-soft); margin-bottom: 0.8rem; }
.legal-wrap ul { margin: 0.6rem 0 1rem 1.2rem; padding: 0; list-style: disc; }
.legal-wrap li { font-size: var(--fs-body); line-height: 1.8; color: var(--ink-soft); margin-bottom: 0.4rem; }
.legal-meta { font-size: 0.88rem; color: var(--muted); margin-bottom: 2rem; }
.legal-hero { padding: clamp(2.5rem,5vw,3.5rem) 0; }

.dev-steps { margin-top: 2.5rem; }
.dev-step { display: grid; grid-template-columns: 70px 1fr; gap: 1.6rem; padding: 1.8rem 0; border-top: 1px solid var(--rule-light); }
.dev-step:first-child { border-top: none; padding-top: 0; }
.dev-step-num { font-family: var(--serif); font-weight: 800; font-size: 2.2rem; color: var(--gold-dark); line-height: 1; }
.dev-step-title { font-family: var(--serif); font-weight: 700; font-size: 1.15rem; color: var(--navy); margin-bottom: 0.5rem; }
.dev-step-desc { font-size: 0.94rem; color: var(--ink-soft); line-height: 1.7; max-width: 42em; }
.arch-tag { font-family: var(--sans); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 1rem; display: block; }
.bg-navy .arch-tag { color: var(--gold); }

.kpi-card { background: var(--white); padding: 2.2rem; text-align: center; }
.kpi-ring { width: 128px; height: 128px; margin: 0 auto 1.2rem; position: relative; }
.kpi-ring svg { transform: rotate(-90deg); }
.kpi-ring-track { fill: none; stroke: var(--rule-light); stroke-width: 8; }
.kpi-ring-fill { fill: none; stroke: var(--sky); stroke-width: 8; stroke-linecap: round; }
.kpi-ring-value { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 800; font-size: 1.6rem; color: var(--navy); }
.kpi-card h4 { font-family: var(--serif); font-weight: 700; font-size: 1.05rem; color: var(--navy); margin-bottom: 0.4rem; }
.kpi-card p { font-size: 0.82rem; color: var(--muted); }

.rating-row, .topic-row { margin-bottom: 1.5rem; }
.rating-row-head, .topic-row-head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-bottom: 0.5rem; }
.rating-row-head h4, .topic-row-head h4 { font-family: var(--sans); font-weight: 600; font-size: 0.92rem; color: var(--navy); }
.rating-row-head span, .topic-row-head span { font-family: var(--serif); font-weight: 800; color: var(--gold-dark); flex-shrink: 0; }
.rating-track { display: flex; height: 10px; border-radius: 6px; overflow: hidden; background: var(--rule-light); }
.rating-seg--excellent { background: var(--sky); }
.rating-seg--good2 { background: var(--gold); }
.rating-seg--good { background: #C9D3DE; }
.rating-legend { display: flex; gap: 1.4rem; margin-top: 1.6rem; font-size: 0.8rem; color: var(--muted); }
.rating-legend span { display: inline-flex; align-items: center; gap: 0.4rem; }
.rating-legend i { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.topic-track { height: 8px; border-radius: 5px; background: var(--rule-light); overflow: hidden; }
.topic-track-fill { height: 100%; background: linear-gradient(90deg, var(--navy), var(--sky)); border-radius: 5px; }

.tag-cloud-card { background: var(--white); padding: 2.2rem; }
.tag-cloud-card h4 { font-family: var(--serif); font-size: 1.1rem; color: var(--navy); margin-bottom: 1.4rem; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 0.6rem 0.9rem; align-items: baseline; }
.tag-cloud span { font-family: var(--sans); font-weight: 600; color: var(--navy); }
.tag-xl { font-size: 1.7rem; color: var(--gold-dark); }
.tag-lg { font-size: 1.35rem; }
.tag-md { font-size: 1.1rem; color: var(--ink-soft); }
.tag-sm { font-size: 0.92rem; color: var(--muted); }
.tag-xs { font-size: 0.8rem; color: var(--muted); font-weight: 500; }

.article-tags-row { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; margin-bottom: 2.8rem; }
.article-tag-pill { display: inline-flex; align-items: center; font-family: var(--sans); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue); background: rgba(19,96,250,0.08); border: 1px solid rgba(19,96,250,0.18); padding: 0.6rem 1.15rem; border-radius: 999px; cursor: pointer; transition: background var(--ease), color var(--ease), border-color var(--ease); }
.article-tag-pill:hover { background: rgba(19,96,250,0.16); }
.article-tag-pill--active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.article-tag-pill--active:hover { background: var(--navy-mid); }
.article-card.is-hidden { display: none; }
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
@media (max-width: 900px) { .articles-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .articles-grid { grid-template-columns: 1fr; } }
.article-card { background: var(--white); overflow: hidden; box-shadow: 0 6px 20px rgba(15,35,60,0.08); display: flex; flex-direction: column; transition: box-shadow var(--ease), transform var(--ease); }
.article-card:hover { box-shadow: 0 14px 34px rgba(0,51,101,0.14); transform: translateY(-3px); }
.article-card-image { aspect-ratio: 16/10; position: relative; overflow: hidden; }
.article-card-image--1 { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); }
.article-card-image--2 { background: linear-gradient(145deg, var(--navy-deep) 0%, var(--blue) 100%); }
.article-card-image--3 { background: linear-gradient(125deg, var(--navy) 10%, var(--sky) 100%); }
.article-card-image--4 { background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 45%, var(--blue) 100%); }
.article-card-image--5 { background: linear-gradient(150deg, var(--navy) 0%, var(--gold-dark) 130%); }
.article-card-image--6 { background: linear-gradient(120deg, var(--blue) 0%, var(--navy) 100%); }
.article-card-tag { position: absolute; top: 1rem; left: 1rem; z-index: 2; font-family: var(--sans); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); background: var(--white); padding: 0.4rem 0.85rem; border-radius: 999px; }
.article-card-body { padding: 1.6rem 1.7rem 1.8rem; display: flex; flex-direction: column; gap: 0.6rem; flex-grow: 1; }
.article-card-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--navy); line-height: 1.35; }
.article-card-excerpt { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.65; flex-grow: 1; }
.article-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 0.4rem; padding-top: 1rem; border-top: 1px solid var(--rule-light); }
.article-card-meta { font-family: var(--sans); font-size: 0.74rem; color: var(--muted); }
.article-card-link { font-family: var(--sans); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue); }
.article-card--soon .article-card-link { color: var(--muted); }

.ml-embedded, .ml-embedded * { box-sizing: border-box !important; }
.ml-embedded { width: 100% !important; max-width: 100% !important; margin: 0 !important; }
.ml-embedded .ml-form-embedContainer, .ml-embedded .ml-form-embedWrapper, .ml-embedded .ml-form-align-center, .ml-embedded .ml-form-embedBody, .ml-embedded .ml-form-embedBodyDefault, .ml-embedded .ml-form-embedContent, .ml-embedded form, .ml-embedded .ml-form-formContent { padding: 0 !important; margin: 0 !important; width: 100% !important; max-width: 100% !important; text-align: left !important; }
.ml-embedded .ml-form-fieldRow { width: 100% !important; margin: 0 0 0.7rem !important; }
.ml-embedded .ml-field-group { width: 100% !important; padding: 0 !important; }
.ml-embedded input.form-control, .ml-embedded input[type="text"], .ml-embedded input[type="email"] { width: 100% !important; max-width: 100% !important; margin: 0 !important; }
.ml-embedded .ml-form-embedSubmit, .ml-embedded .ml-form-embedSubmit button { width: 100% !important; margin: 0 !important; }

.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.nowrap-above-mobile { white-space: nowrap; max-width: none; }
@media (max-width: 700px) { .nowrap-above-mobile { white-space: normal; } }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head { max-width: 640px; margin-bottom: 1.5rem; }
.section-head.wide { max-width: 760px; }
.hairline { height: 1px; background: var(--rule-light); border: none; margin: 0; }
.bg-navy .hairline { background: var(--rule); }
