/* Ethixera Advisory: site styles */
:root {
  --purple: #553a91;
  --purple-deep: #3d2a6e;
  --purple-darker: #2a1c52;
  --purple-light: #6b4ba6;
  --indigo: #2a1c52;
  --teal: #67f0ff;
  --teal-dark: #006e82;
  --pink: #f069a4;
  --pink-deep: #c44d82;
  --white: #ffffff;
  --off-white: #fafaf7;
  --cream: #f5f2ec;
  --gray-100: #f0eee9;
  --gray-200: #e0ddd5;
  --gray-400: #8b8680;
  --gray-500: #5a564f;
  --gray-700: #2e2b27;
  --text-dark: #1e1538;
  --text-body: #3d3a35;
  --gradient-hero: linear-gradient(160deg, var(--purple-darker) 0%, var(--purple-deep) 45%, var(--purple) 100%);
  --gradient-signature: linear-gradient(135deg, var(--teal) 0%, var(--pink) 100%);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 12px;
  --radius-sm: 6px;
  --shadow: 0 1px 3px rgba(30, 21, 56, 0.04), 0 4px 16px rgba(30, 21, 56, 0.06);
  --shadow-lg: 0 4px 8px rgba(30, 21, 56, 0.06), 0 20px 40px rgba(30, 21, 56, 0.08);
  --header-h: 84px;
  --max: 1200px;
  --t: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--purple); text-decoration-thickness: 1px; text-underline-offset: 3px; transition: color var(--t); }
a:hover { color: var(--pink-deep); }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--text-dark); line-height: 1.15; margin: 0 0 0.55em; font-weight: 500; letter-spacing: -0.01em; font-variation-settings: "opsz" 24; }
h3, h4 { font-weight: 600; }
h1 { font-size: clamp(38px, 5.5vw, 68px); }
h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: clamp(20px, 2.5vw, 24px); }
h4 { font-size: 18px; }
.h3 { font-size: clamp(22px, 2.4vw, 28px); }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.25em; }
strong { color: var(--text-dark); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); border: 0; }
.skip-link { position: absolute; left: -9999px; top: 8px; z-index: 2000; background: var(--white); color: var(--purple); padding: 8px 14px; border-radius: 6px; }
.skip-link:focus { left: 12px; }
:focus-visible { outline: 3px solid var(--teal-dark); outline-offset: 2px; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 clamp(16px, 4vw, 40px); }
.container.narrow, .narrow { max-width: 820px; }
.container.narrow { padding: 0 clamp(16px, 4vw, 40px); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 30px; border-radius: var(--radius-sm); font-family: var(--font-body); font-weight: 500; letter-spacing: 0.01em; font-size: 15px; line-height: 1.2; text-decoration: none; border: 2px solid transparent; cursor: pointer; transition: transform var(--t), background var(--t), color var(--t), border-color var(--t), box-shadow var(--t); }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--purple); color: var(--white); }
.btn-primary:hover { background: var(--purple-deep); color: var(--white); }
.hero .btn-primary, .section-dark .btn-primary, .cta-band .btn-primary { background: var(--white); color: var(--purple-deep); }
.hero .btn-primary:hover, .section-dark .btn-primary:hover, .cta-band .btn-primary:hover { background: var(--cream); color: var(--purple-deep); }
.btn-primary::after, .btn-arrow::after { content: "\2192"; font-size: 16px; transition: transform var(--t); }
.btn-primary:hover::after, .btn-arrow:hover::after { transform: translateX(4px); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.3); }
.btn-outline-white:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.6); color: var(--white); }
.btn-outline { background: transparent; color: var(--purple); border-color: var(--purple); }
.btn-outline:hover { background: var(--purple); color: var(--white); }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 1000; background: var(--purple-deep); border-bottom: 1px solid rgba(255, 255, 255, 0.08); transition: box-shadow var(--t); }
.site-header.is-scrolled { box-shadow: 0 4px 24px rgba(43, 29, 94, 0.25); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: var(--header-h); }
.brand img { height: 44px; width: auto; background: var(--white); border-radius: 10px; padding: 5px 12px; box-sizing: content-box; display: block; }
.site-nav ul { list-style: none; margin: 0; padding: 0; }
.site-nav > ul { display: flex; align-items: center; gap: 2px; }
.nav-top, .site-nav button.nav-top { display: inline-flex; align-items: center; gap: 6px; padding: 9px 12px; border-radius: 8px; color: var(--text-body); font: 500 15px/1.2 var(--font-body); text-decoration: none; background: none; border: 0; cursor: pointer; white-space: nowrap; }
.site-header .nav-top, .site-header .site-nav button.nav-top, .site-header .nav-caret { color: rgba(255, 255, 255, 0.85); }
.site-header .nav-top:hover, .site-header .nav-top.is-active, .site-header .site-nav button.nav-top:hover { color: var(--white); background: rgba(255, 255, 255, 0.08); }
.has-menu { position: relative; display: flex; align-items: center; }
.has-menu > button.nav-top::after, .nav-caret::after { content: ""; width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); opacity: 0.7; }
.nav-caret { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 34px; margin-left: -8px; background: none; border: 0; color: var(--text-body); cursor: pointer; border-radius: 6px; }
.menu { position: absolute; top: calc(100% + 6px); left: 0; min-width: 260px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity var(--t), transform var(--t), visibility var(--t); }
.menu::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.menu a { display: block; padding: 9px 12px; border-radius: 8px; color: var(--text-body); text-decoration: none; font-size: 15px; }
.menu a:hover, .menu a[aria-current="page"] { background: var(--cream); color: var(--purple); }
.has-menu:hover > .menu, .has-menu:focus-within > .menu, .has-menu.is-open > .menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-cta-item { margin-left: 10px; }
.nav-cta::after { content: none !important; }
.site-nav .nav-cta { background: var(--gradient-signature); color: var(--purple-darker); border: 0; font-weight: 600; }
.site-nav .nav-cta:hover { background: var(--gradient-signature); color: var(--purple-darker); filter: brightness(1.08); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: none; cursor: pointer; padding: 10px; border-radius: 8px; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; background: var(--white); margin: 5px 0; transition: transform var(--t), opacity var(--t); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1080px) {
  .menu-toggle { display: block; }
  .brand img { height: 38px; }
  .site-nav { position: fixed; top: var(--header-h); left: 0; right: 0; height: calc(100vh - var(--header-h)); height: calc(100dvh - var(--header-h)); background: var(--purple-deep); overflow-y: auto; padding: 16px 20px 40px; display: none; border-top: 1px solid rgba(255, 255, 255, 0.08); }
  .site-nav > ul > li { border-bottom-color: rgba(255, 255, 255, 0.08) !important; }
  .site-nav .nav-top, .site-nav button.nav-top, .site-nav .nav-caret { color: rgba(255, 255, 255, 0.85); }
  .site-nav .nav-top:hover, .site-nav .nav-top.is-active { color: var(--white); background: rgba(255, 255, 255, 0.06); }
  .site-nav .menu { background: transparent; }
  .site-nav .menu a { color: rgba(255, 255, 255, 0.72); }
  .site-nav .menu a:hover, .site-nav .menu a[aria-current="page"] { background: rgba(255, 255, 255, 0.08); color: var(--white); }
  .site-nav .nav-cta { background: var(--gradient-signature); color: var(--purple-darker); border: 0; font-weight: 600; }
  .site-nav.is-open { display: block; }
  .site-nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav > ul > li { border-bottom: 1px solid var(--gray-100); }
  .has-menu { flex-wrap: wrap; }
  .has-menu > .nav-top { flex: 1; }
  .nav-top, .site-nav button.nav-top { padding: 14px 8px; font-size: 17px; width: 100%; justify-content: space-between; }
  .nav-caret { width: 48px; height: 48px; margin: 0; }
  .menu { position: static; width: 100%; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 10px 12px; display: none; min-width: 0; }
  .has-menu:hover > .menu, .has-menu:focus-within > .menu { display: none; }
  .has-menu.is-open > .menu { display: block; }
  .nav-cta-item { margin: 18px 0 0; border: 0 !important; }
  .nav-cta-item .btn { width: 100%; padding: 14px; font-size: 16px; }
  body.nav-open { overflow: hidden; }
  .site-nav .nav-top.is-active { background: none; font-weight: 600; }
  .site-nav > ul > li:has(> .nav-top.is-active) { background: rgba(255, 255, 255, 0.06); border-radius: 8px; }
  .has-menu > a.nav-top { width: auto; }
  .nav-caret { justify-content: flex-end; padding: 0 8px 0 0; }
  .site-nav .menu { border-left: 2px solid rgba(255, 255, 255, 0.12); border-radius: 0; margin: 0 8px 12px 8px; padding: 2px 0 2px 10px; }
  .site-nav .menu a { padding: 10px 12px; font-size: 15px; }
}

/* Breadcrumbs */
.breadcrumbs { background: var(--cream); border-bottom: 1px solid var(--gray-200); font-size: 14px; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 4px 0; margin: 0; padding: 10px 0; }
.breadcrumbs li { color: var(--gray-500); }
.breadcrumbs li + li::before { content: "/"; margin: 0 8px; color: var(--gray-400); }
.breadcrumbs a { color: var(--gray-500); text-decoration: none; }
.breadcrumbs a:hover { color: var(--purple); text-decoration: underline; }

/* Hero */
.hero { position: relative; overflow: hidden; background: var(--gradient-hero); color: var(--white); padding: clamp(64px, 9vw, 112px) 0 clamp(72px, 10vw, 120px); }
.hero::before { content: ""; position: absolute; top: -20%; right: -10%; width: 55%; height: 130%; background: radial-gradient(circle, rgba(103, 240, 255, 0.12) 0%, transparent 60%); pointer-events: none; }
.hero::after { content: ""; position: absolute; bottom: -35%; left: -10%; width: 45%; height: 90%; background: radial-gradient(circle, rgba(240, 105, 164, 0.1) 0%, transparent 62%); pointer-events: none; }
.hero .container { position: relative; z-index: 1; }
.hero h1 { color: var(--white); max-width: 920px; margin-bottom: 20px; }
.hero h1 em { font-style: normal; font-weight: 500; background: linear-gradient(135deg, var(--teal), var(--pink)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-label { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--teal); margin-bottom: 24px; padding-bottom: 8px; border-bottom: 1px solid rgba(103, 240, 255, 0.3); }
.hero .lead { color: rgba(255, 255, 255, 0.84); font-size: clamp(17px, 1.6vw, 20px); max-width: 720px; margin: 0; }
.hero .eyebrow { color: var(--teal); }
.hero-badge { display: inline-block; background: var(--pink-deep); color: var(--white); font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 5px 10px; border-radius: 6px; margin-bottom: 14px; }
.hero-compact { padding: clamp(48px, 7vw, 80px) 0 clamp(52px, 7vw, 84px); }

.eyebrow { display: inline-block; font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--pink-deep); margin-bottom: 14px; }
.pillars { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 48px; margin-top: 24px; }
.pillar-number { display: block; font-family: var(--font-display); font-size: 56px; font-weight: 300; font-style: italic; color: var(--purple); line-height: 1; margin-bottom: 16px; }
.pillar h3 { margin-bottom: 12px; }
.pillar p { color: var(--gray-500); font-size: 16px; line-height: 1.7; }
@media (max-width: 768px) { .pillars { grid-template-columns: 1fr; gap: 40px; } }
.section-dark .eyebrow, .cta-band .eyebrow { color: var(--teal); }

/* Sections */
.section { padding: clamp(60px, 8vw, 104px) 0; }
.section-white { background: var(--white); }
.section-cream { background: var(--cream); }
.section-dark { background: var(--gradient-hero); color: rgba(255, 255, 255, 0.86); }
.section-dark h2, .section-dark h3, .section-dark h4, .section-dark strong { color: var(--white); }
.section-dark a:not(.btn) { color: var(--teal); }
.section-intro { font-size: 18px; max-width: 760px; margin-bottom: 36px; }
.section h2 + .section-intro { margin-top: -4px; }
.center { text-align: center; }
.center .section-intro { margin-left: auto; margin-right: auto; }

.page-divider { display: flex; align-items: center; justify-content: center; background: var(--gradient-signature); padding: 18px; color: var(--purple-darker); font-family: var(--font-body); font-size: 13px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; text-align: center; }
.page-divider::before, .page-divider::after { content: "\2014"; margin: 0 14px; opacity: 0.6; }

/* Grids and cards */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card { position: relative; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 28px; transition: transform var(--t), box-shadow var(--t), border-color var(--t); }
.section-white .card { background: var(--white); }
.section-cream .card { background: var(--white); }
.card h3 { margin-bottom: 10px; }
.card p:last-child { margin-bottom: 0; }
.card-linked { display: block; text-decoration: none; color: inherit; }
.card-linked:hover, .card:has(.card-link):hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(85, 58, 145, 0.35); color: inherit; }
.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-weight: 600; font-size: 15px; text-decoration: none; }
.card-link::after { content: "\2192"; transition: transform var(--t); }
.card-link:hover::after { transform: translateX(3px); }
.card-num { display: block; font-family: var(--font-display); font-style: italic; font-weight: 300; font-size: 56px; line-height: 1; color: var(--purple); margin-bottom: 16px; }
.card-top { border-top: 0; }
.card-top::before { content: ""; position: absolute; top: -1px; left: -1px; right: -1px; height: 4px; border-radius: var(--radius) var(--radius) 0 0; background: var(--gradient-signature); }
.badge { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--pink-deep); background: rgba(196, 77, 130, 0.09); border-radius: 6px; padding: 4px 9px; margin-bottom: 14px; }
.card ul, .panel ul { padding-left: 1.1em; }
.card li, .panel li { margin-bottom: 6px; }

.two-col { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 64px); align-items: start; }
.two-col.even { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 860px) { .two-col, .two-col.even { grid-template-columns: 1fr; } }
.panel { background: var(--cream); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 28px; }
.section-cream .panel { background: var(--white); }
.panel h3 { font-size: 20px; }
.check-list { list-style: none; padding: 0 !important; margin: 0; }
.check-list li { position: relative; padding-left: 28px; margin-bottom: 10px; }
.check-list li::before { content: ""; position: absolute; left: 2px; top: 9px; width: 12px; height: 7px; border-left: 2px solid var(--teal-dark); border-bottom: 2px solid var(--teal-dark); transform: rotate(-45deg); }

.stat-card { background: var(--gradient-hero); color: rgba(255, 255, 255, 0.85); border-radius: var(--radius); padding: 30px; }
.stat-card .stat-num { display: block; font-family: var(--font-display); font-size: 56px; line-height: 1; color: var(--white); margin-bottom: 10px; }
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.stats-bar { border-bottom: 1px solid var(--gray-200); padding: 44px 0; background: var(--white); }
.stat { text-align: center; }
.stat .stat-num { display: block; font-family: var(--font-display); font-size: clamp(34px, 4vw, 46px); color: var(--purple); line-height: 1.05; }
.stat .stat-label { display: block; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--gray-500); margin-top: 6px; }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; } }

/* Where clients start */
.start-card { border-left: 4px solid var(--pink-deep); }
.start-card h3 { font-size: 19px; }

/* Lifecycle steps */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; counter-reset: step; }
.step { position: relative; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 26px 24px; }
.section-white .step { background: var(--cream); }
.step-num { display: block; font-family: var(--font-display); font-style: italic; font-weight: 300; font-size: 48px; color: var(--purple); line-height: 1; margin-bottom: 14px; }
.step h3 { font-size: 20px; margin-bottom: 8px; }
.step p:last-child { margin-bottom: 0; }

/* Proof cards */
.proof-card { position: relative; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 28px; overflow: hidden; }
.proof-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gradient-signature); }
.section-white .proof-card { background: var(--cream); }
.proof-card h3 { font-size: 20px; }
.proof-meta { margin: 16px 0 0; padding-top: 14px; border-top: 1px solid var(--gray-200); font-size: 13px; font-weight: 600; letter-spacing: 0.4px; color: var(--gray-500); }

/* Quotes */
.quote { margin: 40px 0 0; padding: 26px 30px; border-left: 4px solid var(--teal-dark); background: var(--white); border-radius: 0 var(--radius) var(--radius) 0; }
.section-white .quote { background: var(--cream); }
.quote p { font-family: var(--font-display); font-style: italic; font-size: clamp(19px, 2vw, 23px); line-height: 1.5; color: var(--text-dark); }
.quote footer { display: flex; flex-direction: column; gap: 2px; font-size: 14px; }
.quote-name { font-weight: 700; color: var(--purple); }
.quote-role { color: var(--gray-500); }

.callout { background: rgba(10, 99, 120, 0.07); border: 1px solid rgba(10, 99, 120, 0.2); border-radius: var(--radius-sm); padding: 18px 22px; margin: 24px 0; }
.callout p:last-child { margin-bottom: 0; }

/* FAQ */
.faq-list { display: grid; gap: 12px; margin-top: 12px; }
.faq-item { background: var(--cream); border: 1px solid var(--gray-200); border-radius: var(--radius-sm); }
.section-cream .faq-item { background: var(--white); }
.faq-item summary { list-style: none; cursor: pointer; padding: 18px 52px 18px 22px; position: relative; font-weight: 600; color: var(--text-dark); font-size: 17px; line-height: 1.45; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: ""; position: absolute; right: 22px; top: 50%; width: 10px; height: 10px; border-right: 2px solid var(--purple); border-bottom: 2px solid var(--purple); transform: translateY(-70%) rotate(45deg); transition: transform var(--t); }
.faq-item[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq-answer { padding: 0 22px 18px; }
.faq-answer p:last-child { margin-bottom: 0; }

/* Related band and CTA */
.related-band { padding: clamp(48px, 6vw, 72px) 0; border-top: 1px solid var(--gray-200); }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-top: 8px; }
.related-card { display: flex; flex-direction: column; gap: 6px; padding: 20px 22px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); text-decoration: none; color: var(--text-body); transition: transform var(--t), box-shadow var(--t), border-color var(--t); }
.related-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: rgba(85, 58, 145, 0.35); color: var(--text-body); }
.related-title { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--text-dark); }
.related-title::after { content: " \2192"; color: var(--pink-deep); }
.related-blurb { font-size: 15px; line-height: 1.55; }
.cta-band { position: relative; overflow: hidden; background: var(--gradient-hero); color: rgba(255, 255, 255, 0.84); text-align: center; }
.cta-band::before { content: ""; position: absolute; top: -40%; right: -10%; width: 50%; height: 160%; background: radial-gradient(circle, rgba(103, 240, 255, 0.1) 0%, transparent 60%); }
.cta-inner { position: relative; max-width: 760px; }
.cta-band h2 { color: var(--white); }
.cta-band p { font-size: 18px; }
.cta-band .btn-row { justify-content: center; }

/* Media */
.video-facade { position: relative; display: block; width: 100%; aspect-ratio: 16 / 9; border: 0; padding: 0; border-radius: var(--radius); overflow: hidden; cursor: pointer; background: #111 center / cover no-repeat; box-shadow: var(--shadow-lg); }
.video-facade::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(43, 29, 94, 0.05), rgba(43, 29, 94, 0.45)); }
.video-facade::after { content: ""; position: absolute; left: 50%; top: 50%; width: 76px; height: 76px; margin: -38px 0 0 -38px; border-radius: 50%; background: rgba(255, 255, 255, 0.94) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23553A91' d='M8 5v14l11-7z'/%3E%3C/svg%3E") 56% 50% / 34px no-repeat; transition: transform var(--t); }
.video-facade:hover::after { transform: scale(1.06); }
.video-frame { width: 100%; aspect-ratio: 16 / 9; border: 0; border-radius: var(--radius); display: block; }
.video-caption { font-size: 14px; color: var(--gray-500); margin-top: 10px; }
.media-meta { font-size: 13px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--pink-deep); }

/* Team */
.team-card { transition: box-shadow var(--t), border-color var(--t); display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: clamp(24px, 4vw, 48px); background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: clamp(24px, 4vw, 44px); margin-bottom: 28px; }
.team-photo { width: 240px; height: 240px; border-radius: 50%; object-fit: cover; background: var(--gradient-hero); padding: 5px; background-image: var(--gradient-signature); box-shadow: var(--shadow); }
.team-role { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--pink-deep); margin-bottom: 8px; }
.team-sub { color: var(--gray-500); font-size: 15px; margin-bottom: 18px; }
.team-sig { height: 4px; width: 80px; border-radius: 2px; background: var(--gradient-signature); margin-bottom: 20px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; padding: 0; list-style: none; }
.tags li { font-size: 13px; background: var(--cream); border: 1px solid var(--gray-200); border-radius: 999px; padding: 5px 12px; }
.team-photo-col { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.team-linkedin { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--purple); color: var(--white); transition: transform var(--t), background var(--t); }
.team-linkedin:hover { background: var(--purple-deep); color: var(--white); transform: translateY(-2px); }
.profile-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 32px; margin: 26px 0 8px; padding-top: 22px; border-top: 1px solid var(--gray-200); }
.fact-group h4, .tags-label { font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--pink-deep); margin: 0 0 10px; font-variation-settings: normal; }
.tags-label { margin-top: 22px; }
.fact-group ul { list-style: none; margin: 0; padding: 0; }
.fact-group li { position: relative; padding-left: 16px; margin-bottom: 8px; font-size: 15px; line-height: 1.5; color: var(--gray-500); }
.fact-group li::before { content: ""; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; border-radius: 50%; background: var(--gradient-signature); }
@media (max-width: 640px) { .profile-facts { grid-template-columns: 1fr; } }
.profile-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; margin-top: 16px; }
@media (max-width: 800px) { .team-card { grid-template-columns: 1fr; text-align: left; } .team-photo { width: 220px; height: 220px; margin: 0 auto; } }

/* Articles */
.prose { font-size: 18px; line-height: 1.8; }
.prose h2 { font-size: clamp(26px, 3vw, 32px); margin-top: 1.6em; }
.prose h3 { font-size: 22px; margin-top: 1.4em; }
.prose blockquote { margin: 1.6em 0; padding: 4px 0 4px 22px; border-left: 4px solid var(--teal-dark); font-family: var(--font-display); font-style: italic; font-size: 21px; color: var(--text-dark); }
.prose ul, .prose ol { margin-bottom: 1.2em; }
.prose li { margin-bottom: 0.5em; }
.article-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; color: rgba(255, 255, 255, 0.78); font-size: 14px; margin-top: 18px; }
.article-meta span + span::before { content: "\00B7"; margin-right: 18px; }
.article-footer { margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--gray-200); }
.author-box { display: grid; grid-template-columns: 72px 1fr; gap: 18px; align-items: center; background: var(--cream); border-radius: var(--radius); padding: 20px; }
.author-box img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; padding: 3px; background: var(--gradient-signature); }
.author-box p { margin: 0; font-size: 15px; }
.back-link { display: inline-block; color: rgba(255, 255, 255, 0.8); font-size: 14px; text-decoration: none; margin-bottom: 22px; }
.back-link:hover { color: var(--white); }

/* Insight cards */
.insight-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: var(--text-body); transition: transform var(--t), box-shadow var(--t); }
.insight-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: var(--text-body); }
.insight-art { aspect-ratio: 16 / 7; background: var(--gradient-hero); }
.insight-art.v2 { background: linear-gradient(135deg, var(--teal-dark), var(--purple)); }
.insight-art.v3 { background: linear-gradient(135deg, var(--purple-deep), var(--pink-deep)); }
.insight-art.v4 { background: linear-gradient(135deg, var(--purple), var(--teal-dark)); }
.insight-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.insight-body h3 { font-size: 21px; }
.insight-meta { font-size: 12px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--gray-500); margin-bottom: 10px; }
.insight-meta .badge { margin: 0 8px 0 0; }
.insight-read { margin-top: auto; font-weight: 600; color: var(--purple); }
.insight-featured { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); }
.insight-featured .insight-art { aspect-ratio: auto; min-height: 260px; }
@media (max-width: 800px) { .insight-featured { grid-template-columns: 1fr; } .insight-featured .insight-art { min-height: 160px; } }

/* Tables */
.table-wrap { overflow-x: auto; border: 1px solid var(--gray-200); border-radius: var(--radius); background: var(--white); }
.matrix { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 720px; }
.matrix th, .matrix td { text-align: left; vertical-align: top; padding: 14px 16px; border-bottom: 1px solid var(--gray-200); }
.matrix thead th { background: var(--indigo); color: var(--white); font-weight: 600; font-size: 14px; }
.matrix tbody th { color: var(--text-dark); font-weight: 600; background: var(--cream); }
.matrix tr:last-child td, .matrix tr:last-child th { border-bottom: 0; }
.matrix .muted { color: var(--gray-500); }

/* Engage form */
.inquiry-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
@media (max-width: 1000px) { .inquiry-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 620px) { .inquiry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.inquiry { text-align: left; background: var(--white); border: 2px solid var(--gray-200); border-radius: var(--radius); padding: 18px; cursor: pointer; font: inherit; color: inherit; transition: transform var(--t), border-color var(--t), box-shadow var(--t); }
.inquiry:hover { border-color: rgba(85, 58, 145, 0.4); }
.inquiry.is-active { border-color: var(--purple); background: var(--cream); transform: translateY(-2px); box-shadow: var(--shadow); }
.inquiry-title { display: block; font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--text-dark); margin-bottom: 4px; }
.inquiry-desc { display: block; font-size: 14px; line-height: 1.5; }
.form-layout { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 48px); align-items: start; }
@media (max-width: 900px) { .form-layout { grid-template-columns: 1fr; } }
.form-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: clamp(22px, 4vw, 40px); }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--gray-500); margin-bottom: 6px; }
.field .req { color: var(--pink-deep); }
.field input, .field select, .field textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--gray-200); border-radius: var(--radius-sm); background: var(--cream); font: 16px/1.4 var(--font-body); color: var(--text-dark); }
.field textarea { resize: vertical; min-height: 150px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--purple); outline-offset: 1px; background: var(--white); }
.form-note { font-size: 14px; color: var(--gray-500); margin-top: 16px; }
.form-status { margin-top: 14px; padding: 12px 14px; border-radius: var(--radius-sm); background: rgba(10, 99, 120, 0.08); color: var(--text-dark); font-size: 15px; }
.contact-panel { position: sticky; top: calc(var(--header-h) + 20px); }
.contact-panel dl { margin: 0; }
.contact-panel dt { font-size: 12px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--gray-500); margin-top: 16px; }
.contact-panel dd { margin: 4px 0 0; }
.success { text-align: center; }
.success-mark { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 16px; background: var(--gradient-signature); display: grid; place-items: center; }

/* Footer */
.site-footer { background: var(--purple-darker); color: rgba(255, 255, 255, 0.72); font-size: 15px; }
.site-footer::before { content: ""; display: block; height: 4px; background: var(--gradient-signature); }
.footer-tagline-block { border-bottom: 1px solid rgba(255, 255, 255, 0.08); padding: 44px 0; }
.footer-tagline { font-family: var(--font-display); font-size: clamp(24px, 3vw, 34px); color: var(--white); margin: 0 0 6px; }
.footer-tagline em { color: var(--teal); }
.footer-tagline-sub { margin: 0; font-size: 15px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 36px; padding-top: 52px; padding-bottom: 40px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo img { height: 56px; width: auto; background: var(--white); border-radius: 10px; padding: 8px 14px; box-sizing: content-box; margin-bottom: 18px; }
.footer-brand p { max-width: 360px; }
.footer-brand address { font-style: normal; line-height: 1.8; margin: 14px 0; }
.site-footer a { color: rgba(255, 255, 255, 0.78); text-decoration: none; }
.site-footer a:hover { color: var(--teal); }
.footer-col h2 { font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.social-links { display: flex; gap: 10px; }
.social-links a { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.2); font-weight: 700; font-size: 14px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; border-top: 1px solid rgba(255, 255, 255, 0.08); padding-top: 22px; padding-bottom: 30px; font-size: 13px; }
.footer-bottom p { margin: 0; }
.disclaimer { color: rgba(255, 255, 255, 0.6); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; scroll-behavior: auto !important; }
}
