:root {
  --seic-navy: #041e3a;
  --seic-ink: #131923;
  --seic-blue: #00a3e8;
  --seic-yellow: #ffd100;
  --seic-accent: #ff8a3d;
  --seic-red: #e30613;
  --seic-panel: #f2f2f2;
  --seic-muted: #e9eaed;
  --font-sans: "Open Sans", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-heading: "Montserrat", ui-sans-serif, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--seic-panel);
  color: var(--seic-ink);
  line-height: 1.5;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, h5, h6, .font-display {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  font-weight: 400;
  line-height: 1.05;
  margin: 0;
  color: inherit;
}

.font-heading { font-family: var(--font-heading); }

.wrap {
  width: min(1280px, calc(100% - 2.5rem));
  margin-inline: auto;
}
.wrap-wide {
  width: min(1400px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.seic-btn-primary,
.seic-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
}

.seic-btn-primary {
  background: var(--seic-accent);
  color: var(--seic-ink);
  padding: 0.95rem 1.75rem;
}
.seic-btn-primary:hover { background: var(--seic-yellow); }

.seic-btn-secondary {
  border: 1.5px solid currentColor;
  background: transparent;
  padding: 0.9rem 1.75rem;
}
.seic-btn-secondary:hover { background: #fff; color: var(--seic-navy); }

.seic-section-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--seic-blue);
  display: block;
  margin-bottom: 0.75rem;
}

.seic-card {
  background: #fff;
  border: 1px solid rgba(19, 25, 35, 0.08);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.seic-card:hover {
  border-color: rgba(0, 163, 232, 0.45);
  box-shadow: 0 18px 40px -24px rgba(4, 30, 58, 0.35);
  transform: translateY(-2px);
}

/* Header inner */
.site-header-inner {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 8px rgba(4, 30, 58, 0.06);
}

.site-nav {
  position: relative;
  z-index: 30;
}
.site-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 72px;
}
.site-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.site-brand img.logo-seic { height: 44px; width: auto; }
.site-brand img.logo-praxis { height: 36px; width: auto; }
.site-brand .divider {
  width: 1px;
  height: 36px;
  background: rgba(0, 0, 0, 0.15);
}

.menu-desktop {
  display: none;
  align-items: center;
  gap: 2px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  list-style: none;
  margin: 0;
}
.menu-desktop li { position: relative; list-style: none; }
@media (min-width: 1024px) {
  .menu-desktop { display: flex; }
  .menu-toggle { display: none !important; }
}

.menu-desktop a,
.menu-desktop button.has-children {
  padding: 0.5rem 0.65rem;
  color: rgba(19, 25, 35, 0.75);
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.menu-desktop a:hover,
.menu-desktop button.has-children:hover,
.menu-desktop a.current-menu-item,
.menu-desktop .current-menu-item > a { color: var(--seic-blue); }

.menu-item-has-children { position: relative; }
.site-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 8px 0 0;
  z-index: 50;
  min-width: 220px;
  list-style: none;
  margin: 0;
}
.site-nav .menu-item-has-children:hover > .sub-menu { display: block; }
.site-nav .sub-menu {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 40px -20px rgba(4, 30, 58, 0.3);
}
.site-nav .sub-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 12px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  color: var(--seic-ink) !important;
}
.site-nav .sub-menu a:hover { background: var(--seic-panel); color: var(--seic-blue) !important; }

.nav-cta { display: none; }
@media (min-width: 640px) { .nav-cta { display: inline-flex; padding: 0.65rem 1.25rem !important; font-size: 11px !important; } }

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: transparent;
  color: var(--seic-navy);
  cursor: pointer;
}

.mobile-panel {
  display: none;
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 100%;
  margin-top: 8px;
  z-index: 50;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 20px 40px rgba(4, 30, 58, 0.15);
  padding: 1.25rem;
  flex-direction: column;
  font-family: var(--font-heading);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.mobile-panel.is-open { display: flex; }
.mobile-panel a { padding: 0.65rem 0; }

/* Hero home */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: 100svh;
}
.hero h1,
.hero h2,
.hero h3,
.hero p,
.hero a:not(.seic-btn-primary) {
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 11, 28, 0.35);
}
.hero-inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
}
.hero .site-brand .divider { background: rgba(255, 255, 255, 0.25); }
.hero .menu-desktop a,
.hero .menu-desktop button.has-children { color: rgba(255, 255, 255, 0.9); }
.hero .menu-desktop a:hover,
.hero .menu-desktop button.has-children:hover,
.hero .menu-desktop .current-menu-item > a { color: var(--seic-blue); }
.hero .menu-toggle { border-color: rgba(255, 255, 255, 0.25); color: #fff; }
.hero .mobile-panel {
  background: rgba(4, 30, 58, 0.95);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.hero-body {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 1rem 0 3.5rem;
}
.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
}
.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--seic-yellow) !important;
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  margin-bottom: 0.75rem;
}
.hero-subtitle {
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.1rem, 2.4vw, 1.85rem);
  line-height: 1.25;
  margin-bottom: 1.75rem;
}
.hero-infos { max-width: 36rem; margin-bottom: 1.75rem; filter: drop-shadow(0 8px 16px rgba(0,0,0,.25)); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-meta {
  margin-top: 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}
.hero-map {
  display: flex;
  justify-content: center;
}
.hero-map img {
  width: 100%;
  max-width: 560px;
  mix-blend-mode: screen;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.4));
}

.page-hero {
  background: var(--seic-navy);
  color: #fff;
  padding: 3.5rem 0;
}
.page-hero h1,
.page-hero h2,
.page-hero h3 {
  color: #fff !important;
}
.page-hero .kicker {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--seic-yellow);
  margin-bottom: 0.75rem;
}
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 4rem); }
.page-hero p {
  margin-top: 0.75rem;
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-heading);
}

.section { padding: 4rem 0; }
.section-lg { padding: 5.5rem 0; }
.bg-white { background: #fff; }
.bg-panel { background: var(--seic-panel); }
.bg-navy { background: var(--seic-navy); color: #fff; }
.bg-navy h1,
.bg-navy h2,
.bg-navy h3,
.bg-navy h4,
.bg-navy .font-display,
.bg-navy p,
.bg-navy a:not(.seic-btn-primary) {
  color: #fff;
}
.bg-navy .seic-section-label { color: var(--seic-yellow); }
.bg-accent { background: var(--seic-accent); color: var(--seic-ink); }
.bg-accent h1,
.bg-accent h2,
.bg-accent h3,
.bg-accent p {
  color: var(--seic-ink);
}

.grid-3 { display: grid; gap: 1.25rem; }
.grid-4 { display: grid; gap: 1rem; }
.grid-2 { display: grid; gap: 1.25rem; }
@media (min-width: 640px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.teaser, .speaker-card, .pass-card, .partner-card, .article-card, .session-card {
  display: flex;
  flex-direction: column;
}
.teaser { padding: 1.75rem 2rem; }
.teaser h3 { font-size: 1.85rem; color: var(--seic-navy); margin-bottom: 0.75rem; }
.teaser p { font-size: 0.9rem; color: rgba(19, 25, 35, 0.7); flex: 1; margin-bottom: 1.5rem; font-family: var(--font-heading); }
.link-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--seic-blue);
}

.speaker-card .photo {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--seic-muted);
}
.speaker-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.speaker-card .meta { padding: 0.85rem 1rem 1.1rem; }
.speaker-card h3 { font-family: var(--font-heading); font-weight: 800; font-size: 0.95rem; color: var(--seic-navy); }
.speaker-card .role { font-size: 11px; color: var(--seic-blue); font-weight: 600; margin-top: 4px; }
.speaker-card .org { font-size: 11px; color: rgba(19, 25, 35, 0.55); }

.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-identity { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) {
  .about-identity { grid-template-columns: 1.1fr 0.9fr; }
}
.stat-box { border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.05); padding: 1.5rem; }
.stat-box .num { font-family: var(--font-display); font-size: 2.4rem; color: var(--seic-yellow); }
.stat-box .lbl { font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; font-family: var(--font-heading); opacity: 0.7; }

.cta-band { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; }
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 0.4rem; }
.bg-accent .cta-band h2 { color: var(--seic-ink); }
.bg-navy .cta-band h2 { color: #fff; }

.session-card { padding: 1.25rem 1.4rem; }
.session-card .time { font-family: var(--font-heading); font-size: 12px; font-weight: 700; color: var(--seic-blue); letter-spacing: 0.08em; }
.session-card h3 { font-family: var(--font-heading); font-weight: 800; font-size: 1.05rem; color: var(--seic-navy); margin: 0.35rem 0; }
.session-card .track {
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  background: var(--seic-panel);
  padding: 2px 8px;
  margin-bottom: 0.4rem;
}
.session-card.is-highlight { border-left: 4px solid var(--seic-accent); }
.day-tabs { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.day-tabs button {
  border: 1px solid rgba(0,0,0,.1);
  background: #fff;
  padding: 0.7rem 1.1rem;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
}
.day-tabs button.is-active { background: var(--seic-navy); color: #fff; border-color: var(--seic-navy); }
.sessions-day { display: none; }
.sessions-day.is-active { display: grid; gap: 0.85rem; }

.pass-card { padding: 1.6rem; }
.pass-card.is-popular { outline: 2px solid var(--seic-blue); }
.pass-card .badge { font-size: 10px; font-weight: 700; color: var(--seic-blue); letter-spacing: 0.14em; text-transform: uppercase; }
.pass-card h3 { font-family: var(--font-heading); font-weight: 800; text-transform: uppercase; font-size: 1.15rem; color: var(--seic-navy); margin: 0.4rem 0; }
.pass-card .price { font-family: var(--font-display); font-size: 2.4rem; color: var(--seic-navy); }
.pass-card ul { margin: 1rem 0 1.5rem; }
.pass-card li { font-size: 12px; color: rgba(19,25,35,.75); padding: 0.3rem 0 0.3rem 1.1rem; position: relative; }
.pass-card .audience {
  font-size: 11px;
  color: rgba(19, 25, 35, 0.6);
  line-height: 1.45;
  margin: 0 0 1.25rem;
}

.partner-card { padding: 1.25rem; align-items: center; text-align: center; min-height: 160px; justify-content: center; }
.partner-card img { max-height: 64px; width: auto; margin: 0 auto 0.75rem; object-fit: contain; }
.partner-card h3 { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700; }

.article-card .cover { aspect-ratio: 16/10; overflow: hidden; background: var(--seic-muted); }
.article-card .cover img { width: 100%; height: 100%; object-fit: cover; }
.article-card .meta { padding: 1.1rem 1.2rem 1.3rem; }
.article-card .tag { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--seic-blue); }
.article-card h3 { font-family: var(--font-heading); font-weight: 800; font-size: 1.05rem; color: var(--seic-navy); margin: 0.4rem 0; }

.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.filters button {
  border: 1px solid rgba(0,0,0,.1);
  background: #fff;
  padding: 0.4rem 0.75rem;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-family: var(--font-heading);
  cursor: pointer;
}
.filters button.is-active { background: var(--seic-navy); color: #fff; border-color: var(--seic-navy); }

.form-card { background: #fff; border: 1px solid rgba(0,0,0,.08); padding: 1.75rem; }
.form-card label { display: block; font-size: 12px; font-weight: 700; font-family: var(--font-heading); margin: 0.85rem 0 0.3rem; }
.form-card input,
.form-card textarea,
.form-card select {
  width: 100%;
  border: 1px solid rgba(0,0,0,.12);
  padding: 0.7rem 0.8rem;
  background: #fff;
}
.form-notice { padding: 0.85rem 1rem; margin-bottom: 1rem; font-size: 0.9rem; }
.form-notice.ok { background: #e8f8ee; color: #0b5c2e; }
.form-notice.err { background: #fdecea; color: #8a1f11; }

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(4, 30, 58, 0.55);
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.modal.is-open { display: flex; }
.modal-box { background: #fff; width: min(560px, 100%); max-height: 90vh; overflow: auto; padding: 1.75rem; }
.modal-box h2 { font-size: 2rem; color: var(--seic-navy); margin-bottom: 0.5rem; }

.logo-marquee { background: #fff; padding: 2rem 0; border-top: 1px solid rgba(0,0,0,.06); }
.logo-marquee h2 {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(19,25,35,.5);
  margin-bottom: 1rem;
}
.seic-logo3-mask { overflow: hidden; mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent); }
.seic-logo3-component { display: flex; width: max-content; will-change: transform; }
.seic-logo3-list { display: flex; align-items: center; gap: 3.5rem; padding-inline: 1.75rem; }
.seic-logo3-wrapper { flex-shrink: 0; height: 4.5rem; width: 9.5rem; display: flex; align-items: center; justify-content: center; }
.seic-logo3-logo { max-height: 3.25rem; max-width: 100%; object-fit: contain; }

.site-footer { background: var(--seic-ink); color: rgba(255,255,255,.7); padding: 4rem 0 2.5rem; font-family: var(--font-heading); font-size: 0.9rem; }
.site-footer h4 { color: #fff; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 0.85rem; }
.site-footer p { margin: 0 0 0.55rem; line-height: 1.55; }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 500;
}
.footer-links a:hover { color: #fff; }
.footer-grid { display: grid; gap: 2.5rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.2fr 1fr 0.8fr; } }
.footer-copy { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,.55); }
.footer-logos { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.footer-logos img:first-child { height: 72px; }
.footer-logos img:last-child { height: 52px; }

.split-cta { display: grid; gap: 1.25rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .split-cta { grid-template-columns: 1fr 1fr; } }
.split-cta > div { padding: 2rem; }
.split-cta h3 { font-size: 2rem; margin-bottom: 0.75rem; }
.split-cta .bg-navy h3,
.split-cta .bg-navy p { color: #fff; }
.split-cta .bg-navy p { color: rgba(255, 255, 255, 0.75); }

.entry-content { font-size: 1rem; line-height: 1.7; max-width: 48rem; }
.entry-content p { margin: 0 0 1rem; }

.admin-bar .site-header-inner { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header-inner { top: 46px; } }

/* WordPress global styles (Gutenberg) force often black headings — lock contrast */
.bg-navy .cta-band h2 { color: #fff !important; }
.hero .hero-subtitle { color: #fff !important; }
.page-hero p { color: rgba(255, 255, 255, 0.75) !important; }
.hero .seic-btn-primary,
.page-hero .seic-btn-primary,
.bg-navy .seic-btn-primary {
  color: var(--seic-ink) !important;
}
.hero .seic-btn-secondary,
.page-hero .seic-btn-secondary {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.7);
}
.stat-box .num { color: var(--seic-yellow) !important; }
.stat-box .lbl { color: rgba(255, 255, 255, 0.7) !important; }

