/* ECU New Team — site styles */
:root {
  --navy: #1a2378;
  --navy-deep: #0e1456;
  --navy-soft: #2c389a;
  --paper: #f5f8fc;
  --paper-2: #e7eef8;
  --paper-3: #d2dff0;
  --ink: #0e1456;
  --ink-2: #2a3470;
  --ink-3: #5a6492;
  --blue: #1e7ae8;
  --blue-deep: #1a5fc4;
  --blue-soft: #6fb0f5;
  --line: rgba(26,35,120,0.14);
  --rule: rgba(26,35,120,0.4);
  --serif: 'Newsreader', 'Source Serif Pro', Georgia, serif;
  --sans: 'Geist', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  background: #ffffff;
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "kern";
}
img { max-width: 100%; display: block; }
a { color: var(--blue-deep); text-decoration: none; transition: color .2s; }
a:hover { color: var(--navy); }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}
.container-tight { max-width: 920px; margin: 0 auto; padding: 0 40px; }

/* ============== TYPE ============== */
.eyebrow {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-deep);
  font-weight: 500;
}
.eyebrow.on-dark { color: var(--blue-soft); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 0;
}
h1 {
  font-weight: 600;
  font-size: clamp(56px, 7vw, 112px);
  line-height: 0.98;
}
h1 em { font-style: italic; font-weight: 500; color: var(--blue-deep); }
h2 {
  font-weight: 600;
  font-size: clamp(40px, 4.4vw, 68px);
  line-height: 1.05;
}
h2 em { font-style: italic; font-weight: 500; color: var(--blue-deep); }
h3 {
  font-weight: 600;
  font-size: 30px;
  line-height: 1.15;
}
h4 {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
}

p { margin: 0 0 1em; }
p.lead {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.45;
  color: var(--ink-2);
}
p.lead em { font-style: italic; color: var(--ink); }

.rule { height: 1px; background: var(--rule); border: 0; margin: 28px 0; opacity: 0.6; }
.rule.short { width: 80px; margin: 28px 0; opacity: 1; background: var(--blue); height: 2px; }

/* ============== NAV ============== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.9);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--ink);
}
.brand .mark {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--navy);
  color: #fff;
  font-family: var(--serif);
  font-size: 22px; line-height: 1;
  border-radius: 4px;
  font-weight: 600;
}
.brand .name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.brand .name em { font-style: italic; color: var(--blue-deep); font-weight: 500; }

.nav-links {
  display: flex; gap: 36px; align-items: center;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--blue-deep); }
.nav-links a.active {
  color: var(--ink);
  position: relative;
}
.nav-links a.active::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -22px;
  height: 2px; background: var(--blue);
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  background: var(--navy);
  color: #fff;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid var(--navy);
  cursor: pointer;
  transition: all .2s;
}
.btn:hover { background: var(--navy-deep); color: #fff; }
.btn.ghost {
  background: transparent; color: var(--ink);
  border-color: var(--rule);
}
.btn.ghost:hover { background: var(--paper-2); color: var(--ink); }
.btn.blue { background: var(--blue); border-color: var(--blue); }
.btn.blue:hover { background: var(--blue-deep); border-color: var(--blue-deep); }

/* ============== HERO (light, matches team page) ============== */
.hero {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #eaf1fb 60%, #d8e6f7 100%);
  color: var(--ink);
  overflow: hidden;
  border-bottom: 1px solid rgba(26,95,196,0.18);
}
.hero .container { position: relative; z-index: 2; padding-top: 24px; padding-bottom: 80px; }
.hero h1 { color: var(--ink); }
.hero h1 em { color: var(--blue-deep); }
.hero p.lead { color: var(--ink-2); max-width: 720px; }
.hero p.lead em { color: var(--ink); }
.hero .eyebrow { color: var(--blue-deep); }

/* Decorative chess piece(s) drifting in the hero corner */
.hero-pieces {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1;
}
.hero-pieces .pc {
  position: absolute;
  font-family: var(--serif);
  color: rgba(111,176,245,0.45);
  filter: drop-shadow(0 8px 22px rgba(26,95,196,0.18));
}
.hero-pieces .king { right: 4%; top: 22%; font-size: 240px; line-height: 1; color: rgba(111,176,245,0.55); }
.hero-pieces .pawn { right: -2%; bottom: 6%; font-size: 150px; line-height: 1; color: rgba(168,198,240,0.6); }

/* Soft dotted backdrop */
.checker-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 8% 12%, rgba(30,122,232,0.18) 0 1.2px, transparent 1.6px),
    linear-gradient(110deg, transparent 60%, rgba(111,176,245,0.20) 70%, transparent 90%);
  background-size: 16px 16px, 100% 100%;
  background-repeat: repeat, no-repeat;
  mask-image: radial-gradient(ellipse at 6% 10%, black 0 220px, transparent 360px), linear-gradient(black, black);
  -webkit-mask-image: radial-gradient(ellipse at 6% 10%, black 0 220px, transparent 360px), linear-gradient(black, black);
  mask-composite: source-over;
  opacity: 0.85;
}

/* ============== SECTIONS ============== */
section { padding: 100px 0; }
section.tight { padding: 70px 0; }
section.alt { background: var(--paper); }
section.navy { background: var(--navy); color: #fff; }
section.navy h2, section.navy h3, section.navy h4 { color: #fff; }
section.navy h2 em { color: var(--blue-soft); }
section.navy p { color: rgba(255,255,255,0.82); }

.section-head { margin-bottom: 56px; }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head p.lead { margin-top: 18px; max-width: 760px; }

/* ============== GRID OF COMMITMENTS ============== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.grid-3 .cell {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 32px;
  background: #fff;
  display: flex; flex-direction: column; gap: 14px;
}
.grid-3 .cell .num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 38px;
  color: var(--blue-deep);
  line-height: 1;
}
.grid-3 .cell h4 { color: var(--ink); }
.grid-3 .cell p { font-size: 15px; color: var(--ink-3); margin: 0; line-height: 1.5; }

/* ============== PILLAR CARD ============== */
.pillar {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
}
.pillar:last-child { border-bottom: 1px solid var(--line); }
.pillar .num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 64px;
  color: var(--blue-deep);
  line-height: 0.9;
}
.pillar h3 { margin-bottom: 14px; }
.pillar .meta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.pillar .body p { font-size: 17px; line-height: 1.6; max-width: 760px; color: var(--ink-2); }

/* compare strip inside pillar */
.compare {
  display: grid; grid-template-columns: 1fr 1fr;
  margin: 24px 0 0;
  border: 1px solid var(--line);
  background: #fff;
}
.compare > div { padding: 24px 28px; }
.compare > div + div { border-left: 1px solid var(--line); background: rgba(30,122,232,0.05); }
.compare .label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.compare > div + div .label { color: var(--blue-deep); }
.compare p { font-size: 16px; margin: 0; color: var(--ink-2); line-height: 1.5; }
.compare > div + div p { color: var(--ink); font-family: var(--serif); font-weight: 500; font-size: 18px; }

/* football analogy block inside a pillar */
.analogy {
  margin-top: 28px;
  border: 1px solid var(--rule);
  background: #fff;
}
.analogy-head {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 24px;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--blue-deep);
}
.analogy-cols { display: grid; grid-template-columns: 1fr 1fr; }
.analogy-cols > div { padding: 22px 28px; }
.analogy-cols > div.hl { background: rgba(30,122,232,0.06); border-left: 1px solid var(--line); }
.analogy-cols .label {
  font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 10px;
}
.analogy-cols > div.hl .label { color: var(--blue-deep); }
.analogy-cols .big { margin: 0; font-family: var(--serif); font-weight: 600; font-size: 22px; line-height: 1.15; color: var(--ink); }
.analogy-cols .small { margin: 8px 0 0; font-size: 15px; color: var(--ink-3); line-height: 1.4; }
.analogy-foot {
  padding: 16px 24px;
  border-top: 1px solid var(--line);
  background: var(--navy);
  color: #fff;
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 18px; line-height: 1.4;
}

/* small bullet list */
ul.bullets { padding: 0; margin: 18px 0 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
ul.bullets li {
  position: relative; padding-left: 22px;
  font-size: 16px; line-height: 1.55; color: var(--ink-2);
}
ul.bullets li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 8px; height: 8px; background: var(--blue); transform: rotate(45deg);
}

/* ============== STATS ============== */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat-row .stat {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
}
.stat-row .stat:last-child { border-right: 0; }
.stat .label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 16px;
}
.stat .value {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 72px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.stat.accent .value { color: var(--blue-deep); }
.stat .sub { margin-top: 12px; font-size: 14px; color: var(--ink-3); }

/* ============== BUDGET TABLE ============== */
table.budget {
  width: 100%; border-collapse: collapse;
  font-family: var(--sans);
}
table.budget thead th {
  text-align: left;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
  padding: 18px 16px;
  border-bottom: 2px solid var(--rule);
}
table.budget tbody td {
  padding: 22px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 17px;
  color: var(--ink-2);
  vertical-align: baseline;
}
table.budget td.item {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  color: var(--ink);
}
table.budget td.num { font-family: var(--mono); font-variant-numeric: tabular-nums; }
table.budget td.accent { color: var(--blue-deep); font-weight: 500; }

/* ============== CTA ============== */
.cta-block {
  background: var(--navy);
  color: #fff;
  padding: 80px 56px;
  position: relative;
  overflow: hidden;
}
.cta-block .checker-bg { opacity: 0.4; }
.cta-block h2 { color: #fff; max-width: 760px; }
.cta-block h2 em { color: var(--blue-soft); }
.cta-block p { color: rgba(255,255,255,0.78); max-width: 600px; margin-bottom: 32px; }

/* ============== FOOTER ============== */
.site-footer {
  background: var(--navy-deep); color: rgba(255,255,255,0.72);
  padding: 56px 0 36px;
  font-size: 14px;
}
.site-footer .row {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
.site-footer h5 {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  margin: 0 0 16px;
}
.site-footer a { color: rgba(255,255,255,0.85); display: block; margin-bottom: 8px; font-size: 14px; }
.site-footer a:hover { color: #fff; }
.site-footer .bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ============== UTILS ============== */
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.row-side { display: grid; grid-template-columns: 360px 1fr; gap: 80px; align-items: start; }

.three-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.three-pillars .pp {
  border: 1px solid rgba(26,95,196,0.20);
  padding: 28px 28px 32px;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(2px);
}
.three-pillars .pp .ico {
  width: 40px; height: 40px;
  border: 1.5px solid var(--blue-deep);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--blue-deep);
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: 20px;
  background: rgba(255,255,255,0.6);
}
.three-pillars .pp h4 { color: var(--ink); margin-bottom: 8px; }
.three-pillars .pp p { color: var(--ink-3); font-size: 15px; margin: 0; }

.fund-chips { display:flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.fund-chips .chip {
  padding: 8px 14px; border: 1px solid var(--line);
  font-family: var(--sans); font-weight: 500; font-size: 14px;
  color: var(--ink-2); background: #fff;
  border-radius: 4px;
}
.fund-chips .chip.now {
  background: var(--blue); color: #fff; border-color: var(--blue); font-weight: 600;
}

/* ============== POSTER HERO (Team page) ============== */
.poster-hero {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #eaf1fb 60%, #d8e6f7 100%);
  overflow: hidden;
  padding: 0;
}
.poster-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 8% 12%, rgba(30,122,232,0.18) 0 1.2px, transparent 1.6px),
    linear-gradient(110deg, transparent 60%, rgba(111,176,245,0.18) 70%, transparent 90%),
    linear-gradient(110deg, transparent 70%, rgba(111,176,245,0.12) 78%, transparent 92%);
  background-size: 16px 16px, 100% 100%, 100% 100%;
  background-repeat: repeat, no-repeat, no-repeat;
  mask-image: radial-gradient(ellipse at 6% 10%, black 0 200px, transparent 320px), linear-gradient(black, black);
  -webkit-mask-image: radial-gradient(ellipse at 6% 10%, black 0 200px, transparent 320px), linear-gradient(black, black);
  mask-composite: source-over;
}
.poster-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
  padding-top: 24px; padding-bottom: 80px;
  min-height: 0;
}
.brand-block {
  display: inline-block; line-height: 0.95;
  margin-bottom: 28px;
}
.bb-logo {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 88px;
  letter-spacing: -0.04em;
  color: var(--ink);
  background: linear-gradient(180deg, #1a2378 0%, #1a5fc4 110%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bb-sub {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.4em;
  color: var(--ink);
  margin-top: 6px;
}
.poster-name {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 1.0;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin: 0;
}
.poster-name .role {
  display: inline-block;
  font-weight: 800;
  color: var(--blue-deep);
  letter-spacing: -0.01em;
  margin-top: 6px;
}
.lead-blue {
  font-family: var(--sans);
  font-weight: 600;
  color: var(--blue-deep);
  font-size: 24px;
  margin: 22px 0 14px;
  letter-spacing: -0.005em;
}
.poster-tag {
  font-family: var(--sans);
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.5;
  margin: 0 0 28px;
  max-width: 480px;
}
.poster-pills {
  display: inline-flex; gap: 0;
  border: 1px solid rgba(26,95,196,0.25);
  border-radius: 4px;
  background: rgba(255,255,255,0.5);
  padding: 4px;
}
.poster-pills .pill {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 16px 28px;
  border-right: 1px solid rgba(26,95,196,0.18);
  font-family: var(--sans);
  font-weight: 600; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blue-deep);
}
.poster-pills .pill:last-child { border-right: 0; }
.poster-pills .pill .ico {
  width: 38px; height: 38px;
  border: 1.5px solid var(--blue-deep);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 20px;
  color: var(--blue-deep);
  background: rgba(255,255,255,0.7);
}

/* Right column — medallion */
.poster-art {
  position: relative;
  height: 560px;
  display: flex; align-items: center; justify-content: center;
}
.poster-pieces {
  position: absolute; inset: 0; pointer-events: none;
}
.poster-pieces .pc {
  position: absolute;
  font-family: var(--serif);
  color: rgba(111,176,245,0.55);
  filter: drop-shadow(0 8px 22px rgba(26,95,196,0.18));
}
.poster-pieces .king { right: 4%; top: 18%; font-size: 220px; line-height: 1; color: rgba(111,176,245,0.6); }
.poster-pieces .pawn { right: 0; top: 38%; font-size: 130px; line-height: 1; color: rgba(168,198,240,0.7); }

.medallion {
  position: relative;
  width: 460px; height: 460px;
}
.medal-rim {
  position: absolute; inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.95) 0 67%, transparent 68%),
    conic-gradient(from -90deg, #1a5fc4 0deg 360deg);
  padding: 6px;
  box-shadow:
    0 0 0 2px rgba(26,95,196,0.25),
    0 30px 60px -20px rgba(26,95,196,0.45);
}
.medal-rim::after {
  /* dashed inner ring */
  content: "";
  position: absolute; inset: 22px;
  border-radius: 50%;
  border: 2px dashed rgba(26,95,196,0.35);
}
.medal-arc {
  position: absolute; left: 0; right: 0; top: 24px;
  text-align: center;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--ink);
  text-transform: capitalize;
}
.medal-photo {
  position: absolute; left: 50%; top: 50%;
  width: 320px; height: 320px;
  transform: translate(-50%, -54%);
  border-radius: 50%;
  background-size: cover;
  background-position: center top;
  box-shadow: 0 10px 30px rgba(26,95,196,0.18);
  overflow: hidden;
}
.medal-plate {
  position: absolute; left: 50%; bottom: 36px;
  transform: translateX(-50%);
  width: 78%;
  text-align: center;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(2px);
  padding: 12px 14px 14px;
  border-radius: 6px;
}
.mp-logo {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.mp-logo em {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--ink);
  margin-top: 4px;
}
.mp-star { color: var(--blue); font-size: 14px; margin: 6px 0 4px; line-height: 1; }
.mp-name {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--ink);
  border-top: 2px solid var(--blue);
  padding-top: 6px;
  display: inline-block;
}
.mp-role {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  color: var(--blue-deep);
  letter-spacing: 0.22em;
  margin-top: 4px;
}
.medal-base {
  position: absolute; left: 50%; bottom: -20px;
  transform: translateX(-50%);
  width: 380px; height: 60px;
  background:
    radial-gradient(ellipse at center, rgba(26,95,196,0.45) 0 50%, transparent 65%),
    linear-gradient(180deg, #c7dcf6 0%, #6fb0f5 100%);
  border-radius: 50%;
  box-shadow: 0 14px 26px -8px rgba(26,95,196,0.55);
  z-index: -1;
}

.poster-strip {
  background: var(--blue-deep);
  color: #fff;
  padding: 18px 0;
  display: flex; justify-content: center; align-items: center; gap: 22px;
  font-family: var(--sans);
  font-size: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.poster-strip .ks { font-family: var(--serif); font-size: 28px; line-height: 1; color: rgba(255,255,255,0.9); }
.poster-strip .kt strong { font-weight: 700; }
.poster-strip .kt-em { font-weight: 700; color: var(--blue-soft); }

/* ============== TEAM GRID ============== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.lcard {
  background: #fff;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.lcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -30px rgba(26,95,196,0.35);
  border-color: rgba(26,95,196,0.35);
}
.lc-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  background-color: var(--paper-2);
  background-size: cover;
  background-position: center top;
  overflow: hidden;
}
.lc-portrait.has-photo::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(14,20,86,0.4) 100%);
}
.lc-portrait.placeholder svg {
  width: 100%; height: 100%; display: block;
}
.lc-portrait.placeholder.pl-1 { background: linear-gradient(180deg, #e8f0fb, #b9d0ee); }
.lc-portrait.placeholder.pl-2 { background: linear-gradient(180deg, #ecf3fc, #c1d6f0); }
.lc-portrait.placeholder.pl-3 { background: linear-gradient(180deg, #e8f0fb, #b9d0ee); }
.lc-portrait.placeholder.pl-4 { background: linear-gradient(180deg, #ecf3fc, #c1d6f0); }

.lc-ribbon {
  position: absolute; left: 0; bottom: 0;
  background: var(--blue-deep);
  color: #fff;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 10px 18px;
}
.lc-body {
  padding: 24px 26px 28px;
  display: flex; flex-direction: column; gap: 8px;
}
.lc-role {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-deep);
}
.lc-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 28px;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0;
}
.lc-bio {
  margin: 6px 0 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-3);
}

/* ============== CONTACT FORM ============== */
.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  border: 1px solid var(--line);
  background: #fff;
}
.form-side {
  padding: 56px 48px;
  background: var(--navy);
  color: #fff;
  display: flex; flex-direction: column; gap: 24px;
}
.form-side h2 { color: #fff; font-size: clamp(36px, 3.6vw, 56px); }
.form-side h2 em { color: var(--blue-soft); }
.form-side p { color: rgba(255,255,255,0.78); font-size: 17px; line-height: 1.55; margin: 0; }
.form-side .ctx {
  display: flex; flex-direction: column; gap: 18px;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.16);
}
.form-side .ctx-row { display: flex; flex-direction: column; gap: 4px; }
.form-side .ctx-row .lbl {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.form-side .ctx-row .val {
  font-family: var(--serif); font-size: 20px; color: #fff;
}
.form-side .ctx-row a.val { color: var(--blue-soft); }

.form-body { padding: 48px 48px 52px; }
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.form-grid .field.full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  border: 1px solid var(--line);
  background: #fff;
  padding: 14px 14px;
  border-radius: 4px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
}
.field textarea { min-height: 140px; resize: vertical; line-height: 1.5; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue-deep);
  box-shadow: 0 0 0 3px rgba(30,122,232,0.12);
}
.form-actions {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
  margin-top: 28px; padding-top: 24px;
  border-top: 1px solid var(--line);
}
.form-actions .note {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-3);
}
.form-status {
  margin-top: 16px;
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue-deep);
  display: none;
}
.form-status.show { display: block; }

@media (max-width: 880px) {
  .form-wrap { grid-template-columns: 1fr; }
  .form-side, .form-body { padding: 36px 24px; }
  .form-grid { grid-template-columns: 1fr; }
}

/* ============== PLAYERS CALL-TO-ACTION ============== */
.players-band {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(234,241,251,0.92) 100%),
    linear-gradient(110deg, transparent 60%, rgba(111,176,245,0.22) 70%, transparent 90%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.players-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.players-grid h2 { font-size: clamp(40px, 4.6vw, 72px); }
.steps {
  display: grid; grid-template-columns: 1fr; gap: 0;
  border-top: 1px solid var(--line);
  margin-top: 8px;
}
.steps .step {
  display: grid; grid-template-columns: 64px 1fr; gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.steps .step .n {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 38px;
  color: var(--blue-deep);
  line-height: 1;
}
.steps .step h4 { color: var(--ink); margin: 0 0 6px; font-size: 20px; }
.steps .step p { margin: 0; font-size: 15px; color: var(--ink-3); line-height: 1.55; }

.script-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 30px 32px 32px;
  position: relative;
}
.script-card .stamp {
  position: absolute; top: 22px; right: 24px;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-deep);
}
.script-card .quote {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}
.script-card .quote em { color: var(--ink); font-style: italic; }
.script-card .quote + .quote { margin-top: 14px; }
.script-card .sig {
  margin-top: 22px; padding-top: 18px;
  border-top: 1px dashed var(--line);
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}

@media (max-width: 880px) {
  .players-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============== NEWS LIST ============== */
.news-list {
  border-top: 1px solid var(--line);
}
.news-item {
  display: grid;
  grid-template-columns: 160px 120px 1fr auto;
  gap: 36px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: background .2s ease;
}
.news-item:hover { background: rgba(30,122,232,0.03); }
.news-item .date {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-variant-numeric: tabular-nums;
}
.news-item .tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-deep);
  border: 1px solid rgba(30,122,232,0.35);
  padding: 4px 10px;
  border-radius: 2px;
  justify-self: start;
}
.news-item .title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.news-item .title a { color: var(--ink); }
.news-item:hover .title a { color: var(--blue-deep); }
.news-item .more {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-deep);
  white-space: nowrap;
}

@media (max-width: 880px) {
  .news-item { grid-template-columns: 1fr; gap: 8px; padding: 22px 0; }
  .news-item .more { justify-self: start; }
}

/* ============== HOME PILLARS / SPLIT HERO ============== */
.home-hero {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #eef4fc 60%, #dde9f7 100%);
  border-bottom: 1px solid rgba(26,95,196,0.18);
  overflow: hidden;
}
.home-hero .container { position: relative; z-index: 2; }
.home-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 24px 0 90px;
}
.home-hero h1 {
  font-size: clamp(56px, 6.6vw, 104px);
  line-height: 0.96;
}
.home-hero .lead { margin-top: 28px; max-width: 540px; }
.home-hero .cta-row {
  display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px;
}
.home-hero .stamps {
  display: flex; gap: 26px; margin-top: 56px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.home-hero .stamps strong { color: var(--blue-deep); font-weight: 500; }

.duo-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.duo-card .person {
  background: #fff;
  border: 1px solid rgba(26,95,196,0.18);
  box-shadow: 0 30px 60px -30px rgba(26,95,196,0.35);
  display: flex; flex-direction: column;
}
.duo-card .person:nth-child(2) { transform: translateY(40px); }
.duo-card .photo {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center top;
  background-color: var(--paper-2);
}
.duo-card .meta {
  padding: 18px 20px 22px;
  border-top: 1px solid var(--line);
}
.duo-card .role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 6px;
}
.duo-card .name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

/* ============== COUNTDOWN STRIP ============== */
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.countdown .cd {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 8px;
}
.countdown .cd:last-child { border-right: 0; }
.countdown .cd .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.countdown .cd .val {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 44px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.countdown .cd.accent .val { color: var(--blue-deep); font-style: italic; }

@media (max-width: 880px) {
  .home-hero-grid { grid-template-columns: 1fr; gap: 48px; padding: 24px 0 64px; }
  .duo-card .person:nth-child(2) { transform: none; }
  .countdown { grid-template-columns: repeat(2, 1fr); }
  .countdown .cd:nth-child(2) { border-right: 0; }
  .countdown .cd:nth-child(1), .countdown .cd:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* ============== VALUES THREE-UP ============== */
.three-up {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border: 1px solid var(--line);
  background: #fff;
}
.three-up .tu {
  padding: 36px 32px 40px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px;
}
.three-up .tu:last-child { border-right: 0; }
.three-up .tu-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 38px;
  color: var(--blue-deep);
  line-height: 1;
}
.three-up .tu h4 { color: var(--ink); }
.three-up .tu p { font-size: 16px; line-height: 1.55; color: var(--ink-3); margin: 0; }

/* responsive */
@media (max-width: 880px) {
  .poster-grid { grid-template-columns: 1fr; min-height: 0; padding-top: 24px; padding-bottom: 50px; }
  .poster-art { height: 380px; }
  .medallion { width: 320px; height: 320px; }
  .medal-photo { width: 220px; height: 220px; }
  .medal-base { width: 280px; }
  .poster-pieces .king { font-size: 140px; right: 0; }
  .poster-pieces .pawn { font-size: 80px; }
  .team-grid { grid-template-columns: 1fr; }
  .three-up { grid-template-columns: 1fr; }
  .three-up .tu { border-right: 0; border-bottom: 1px solid var(--line); }
  .poster-strip { font-size: 12px; padding: 14px 16px; gap: 10px; flex-wrap: wrap; text-align: center; }
}
@media (min-width: 881px) and (max-width: 1100px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  .row-2, .row-side { grid-template-columns: 1fr; gap: 32px; }
  .grid-3, .three-pillars { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  .stat-row .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .nav-links { display: none; }
  .pillar { grid-template-columns: 1fr; gap: 12px; padding: 32px 0; }
  .compare { grid-template-columns: 1fr; }
  .compare > div + div { border-left: 0; border-top: 1px solid var(--line); }
  .analogy-cols { grid-template-columns: 1fr; }
  .analogy-cols > div.hl { border-left: 0; border-top: 1px solid var(--line); }
  .site-footer .row { grid-template-columns: 1fr; }
  .container, .container-tight { padding: 0 24px; }
  section { padding: 60px 0; }
  .hero .container { padding-top: 24px; padding-bottom: 64px; }
}
