/* ============================================================
   ACCENT INDIRECT TAX — Landing styles
   Palette derived from PPTX master theme.
   ============================================================ */

:root {
  /* brand colors */
  --cyan: #0CAADC;
  --cyan-deep: #1481BA;
  --navy: #061A40;
  --navy-2: #0B2454;
  --burgundy: #89043D;
  --mint: #BAF2BB;
  --red: #C52233;
  /* neutrals */
  --ink: #1A1A1F;
  --gray-1: #676565;
  --gray-2: #A6A4A4;
  --gray-3: #CECCCC;
  --paper: #F6F4EE;        /* warm off-white */
  --paper-2: #ECE9E0;
  --white: #FFFFFF;

  --font-sans: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  --font-serif: 'IBM Plex Serif', Georgia, serif;
  --font-display: 'Roboto Slab', 'IBM Plex Serif', Georgia, serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

  --radius: 4px;
  --max: 1320px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

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

/* ============================================================
   Reusable bits
   ============================================================ */

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--cyan);
}
.eyebrow.on-dark { color: var(--cyan); }
.eyebrow.on-dark::before { background: var(--cyan); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border: 1px solid currentColor;
  background: transparent;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--ink);
  border-radius: 999px;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.btn:hover { background: var(--ink); color: var(--paper); transform: translateY(-1px); }
.btn .arrow { width: 14px; height: 14px; transition: transform 0.18s ease; }
.btn:hover .arrow { transform: translate(2px, -2px); }

.btn.primary {
  background: var(--cyan);
  color: var(--navy);
  border-color: var(--cyan);
}
.btn.primary:hover { background: var(--navy); color: var(--cyan); border-color: var(--navy); }

.btn.ghost-light { color: var(--paper); }
.btn.ghost-light:hover { background: var(--paper); color: var(--navy); }

/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 244, 238, 0.65);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(6, 26, 64, 0.08);
}

/* So anchor-jumping to a section (nav/footer links, deep links) doesn't
   land with its heading tucked under the sticky nav bar. */
[id] {
  scroll-margin-top: 96px;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: var(--max);
  margin: 0 auto;
}
.nav__brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav__brand img { height: 30px; width: auto; }
.nav__brand, .nav__brand * { white-space: nowrap; }

.nav__links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1.5px; background: var(--cyan);
  transition: right 0.22s ease;
}
.nav__links a:hover::after { right: 0; }

.nav__right { display: flex; align-items: center; gap: 18px; }

.lang-toggle {
  display: inline-flex;
  border: 1px solid rgba(6, 26, 64, 0.16);
  border-radius: 999px;
  padding: 3px;
  background: var(--white);
}
.lang-toggle button {
  border: 0;
  background: transparent;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gray-1);
  border-radius: 999px;
}
.lang-toggle button.is-on {
  background: var(--navy);
  color: var(--paper);
}

/* Hamburger toggle — hidden until nav links/lang no longer fit */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(6, 26, 64, 0.16);
  border-radius: 8px;
  background: var(--white);
  flex-shrink: 0;
}
.nav__burger span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav panel — links + language toggle stacked, shown below the collapse breakpoint */
.nav__mobile {
  display: none;
  flex-direction: column;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px 20px;
}
.nav__mobile-links {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(6, 26, 64, 0.08);
}
.nav__mobile-links a {
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid rgba(6, 26, 64, 0.08);
}
.nav__mobile .lang-toggle {
  align-self: flex-start;
  margin-top: 16px;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  color: var(--paper);
  overflow: hidden;
  padding: 96px 0 120px;
}
.hero--mesh {
  background:
    radial-gradient(at 12% 18%, #0CAADC 0%, transparent 42%),
    radial-gradient(at 88% 14%, #89043D 0%, transparent 38%),
    radial-gradient(at 76% 86%, #1481BA 0%, transparent 50%),
    radial-gradient(at 20% 80%, #061A40 0%, transparent 48%),
    #050B26;
}
.hero--solid { background: var(--navy); }
.hero--spotlight {
  background:
    radial-gradient(circle at 78% 50%, #0CAADC 0%, #1481BA 14%, #0B2454 38%, #050B26 70%);
}
.hero--diagonal {
  background: linear-gradient(135deg, #0CAADC 0%, #1481BA 35%, #0B2454 72%, #061A40 100%);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,11,38,0) 60%, rgba(5,11,38,0.55) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero::after {
  /* film grain via SVG turbulence */
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScyMDAnIGhlaWdodD0nMjAwJz48ZmlsdGVyIGlkPSduJz48ZmVUdXJidWxlbmNlIHR5cGU9J2ZyYWN0YWxOb2lzZScgYmFzZUZyZXF1ZW5jeT0nMC44NScgbnVtT2N0YXZlcz0nMicvPjxmZUNvbG9yTWF0cml4IHZhbHVlcz0nMCAwIDAgMCAxICAgMCAwIDAgMCAxICAgMCAwIDAgMCAxICAgMCAwIDAgMC41IDAnLz48L2ZpbHRlcj48cmVjdCB3aWR0aD0nMTAwJScgaGVpZ2h0PScxMDAlJyBmaWx0ZXI9J3VybCglMjNuKScvPjwvc3ZnPg==");
  opacity: 0.16;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}
.hero__inner { position: relative; z-index: 2; }

.hero__mark {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 780px;
  height: 780px;
  opacity: 0.18;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  align-items: end;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(56px, 7.2vw, 116px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin: 22px 0 0;
  color: var(--paper);
}
.hero h1 .it { font-style: italic; color: var(--cyan); }
.hero h1 .sub-line {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 300;
  font-size: clamp(20px, 1.4vw, 26px);
  line-height: 1.35;
  letter-spacing: 0;
  color: var(--gray-3);
  margin-top: 36px;
  max-width: 680px;
}

.hero__meta {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero__meta-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-3);
}
.hero__meta-row:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.16); }
.hero__meta-row span:last-child { color: var(--paper); font-weight: 500; }

.hero__cta {
  display: flex;
  gap: 14px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gray-3);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}
.scroll-cue::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--cyan);
  animation: scrollPulse 2.4s ease-in-out infinite;
  transform-origin: left;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleX(0.4); opacity: 0.5; }
  50%      { transform: scaleX(1);   opacity: 1; }
}

.ticker {
  background: var(--cyan);
  color: var(--navy);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker__track {
  display: inline-flex;
  gap: 56px;
  padding-left: 56px;
  animation: tick 38s linear infinite;
}
.ticker__track span { display: inline-flex; align-items: center; gap: 56px; }
.ticker__track span::after {
  content: "◉";
  font-size: 10px;
}
@keyframes tick {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   PATHS — Students / Professionals
   ============================================================ */

.section { padding: 120px 0; }
.section--paper { background: var(--paper); }
.section--paper-2 { background: var(--paper-2); }
.section--navy { background: var(--navy); color: var(--paper); }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  margin-bottom: 56px;
  align-items: end;
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 4.6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 14px 0 0;
}
.section-head h2 .it { font-style: italic; color: var(--cyan-deep); }
.section-head p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--gray-1);
  max-width: 540px;
  margin: 0;
}
.section--navy .section-head p { color: var(--gray-3); }
.section--navy .section-head h2 .it { color: var(--cyan); }

.paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.path {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 44px 44px 36px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--paper);
  isolation: isolate;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
}
.path:hover { transform: translateY(-4px); }

.path--students { background: var(--cyan); color: var(--navy); }
.path--pros { background: var(--navy); color: var(--paper); }

.path__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
}
.path__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 12px 0 0;
}
.path__title .it { font-style: italic; }
.path__lede {
  font-size: 17px;
  line-height: 1.5;
  max-width: 380px;
  margin: 18px 0 0;
  opacity: 0.9;
}

.path__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.path__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid currentColor;
  font-size: 15px;
  font-weight: 500;
  border-top-color: rgba(6,26,64,0.18);
  transition: padding 0.2s ease;
  cursor: pointer;
}
.path--pros .path__list li { border-top-color: rgba(255,255,255,0.18); }
.path__list li:last-child { border-bottom: 1px solid rgba(6,26,64,0.18); }
.path--pros .path__list li:last-child { border-bottom-color: rgba(255,255,255,0.18); }
.path__list li:hover { padding-left: 8px; }
.path__list .arrow { opacity: 0.4; transition: opacity 0.18s ease, transform 0.18s ease; }
.path__list li:hover .arrow { opacity: 1; transform: translate(2px, -2px); }

.path__cta { display: flex; align-items: center; gap: 14px; margin-top: 28px; }
.path--students .path__cta .btn:hover { background: var(--paper); color: var(--navy); }

.path__bg-mark {
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 460px;
  height: 460px;
  opacity: 0.16;
  z-index: -1;
}
.path--students .path__bg-mark { opacity: 0.22; }

/* ============================================================
   KNOWLEDGE CENTER
   ============================================================ */

.kc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
}
.kc-card {
  background: var(--navy);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 360px;
  transition: background 0.3s ease;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  color: inherit;
}
.kc-card:hover { background: var(--navy-2); }
.kc-card__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
}
.kc-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--paper);
}
.kc-card h3 .it { font-style: italic; }
.kc-card p {
  font-size: 14px;
  color: var(--gray-3);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.kc-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-3);
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.kc-card__foot .arrow {
  width: 14px; height: 14px;
  transition: transform 0.2s ease;
}
.kc-card:hover .arrow { transform: translate(3px, -3px); }

/* ============================================================
   EVENTS
   ============================================================ */

.events {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.event {
  grid-column: span 6;
  background: var(--white);
  border: 1px solid rgba(6,26,64,0.08);
  padding: 28px;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 24px;
  align-items: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}
.event:hover { border-color: var(--cyan); transform: translateY(-2px); }
.event__date {
  font-family: var(--font-display);
  text-align: center;
}
.event__date .d {
  display: block;
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.event__date .m {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-1);
  margin-top: 6px;
}
.event__body h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 6px;
  letter-spacing: -0.005em;
}
.event__body .meta {
  display: flex;
  gap: 14px;
  font-size: 13px;
  color: var(--gray-1);
}
.event__body .meta .dot { color: var(--cyan); }
.event__arrow {
  width: 18px; height: 18px;
  color: var(--gray-2);
  transition: color 0.2s ease, transform 0.2s ease;
}
.event:hover .event__arrow { color: var(--navy); transform: translate(2px, -2px); }

/* ============================================================
   FUND / UNIVERSITIES
   ============================================================ */

.fund {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.fund__copy h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(38px, 4.2vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 14px 0 24px;
}
.fund__copy h2 .it { font-style: italic; color: var(--cyan-deep); }
.fund__copy p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--gray-1);
  max-width: 540px;
}
.fund__copy p + p { margin-top: 18px; }

.unis {
  display: grid;
  gap: 12px;
}
.uni {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: center;
  gap: 28px;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid rgba(6,26,64,0.08);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.uni:hover { border-color: var(--cyan); background: #fff; }
.uni__logo {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.uni__logo img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}
.uni__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.005em;
  color: var(--navy);
}
.uni__faculty {
  font-size: 13px;
  color: var(--gray-1);
  margin-top: 3px;
}
.uni__role {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-1);
}

/* ============================================================
   TEAM — horizontally scrolling carousel of ~20 cards
   ============================================================ */

.team-scroller {
  margin-top: 56px;
  overflow-x: auto;
  overflow-y: hidden;
  /* fade edges so the scroll continues visually */
  mask-image: linear-gradient(90deg, transparent 0, #000 32px, #000 calc(100% - 80px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 32px, #000 calc(100% - 80px), transparent 100%);
  scrollbar-width: thin;
  scrollbar-color: rgba(6,26,64,0.25) transparent;
  scroll-snap-type: x mandatory;
  scroll-padding-left: max(32px, calc((100vw - var(--max)) / 2 + 32px));
}
.team-scroller::-webkit-scrollbar { height: 6px; }
.team-scroller::-webkit-scrollbar-track { background: transparent; }
.team-scroller::-webkit-scrollbar-thumb { background: rgba(6,26,64,0.18); border-radius: 999px; }
.team-scroller::-webkit-scrollbar-thumb:hover { background: rgba(6,26,64,0.4); }

.team-scroller__rail {
  display: flex;
  gap: 16px;
  /* align the rail to the page wrap on both sides */
  padding: 4px max(32px, calc((100vw - var(--max)) / 2 + 32px)) 16px;
  width: max-content;
}

.tm {
  flex: 0 0 240px;
  width: 240px;
  background: var(--white);
  border: 1px solid rgba(6,26,64,0.08);
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.2s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
}
.tm:hover { transform: translateY(-4px); border-color: var(--cyan); }

.tm__photo {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy) 0%, var(--cyan-deep) 100%);
  position: relative;
  overflow: hidden;
}
.tm__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tm__photo::after {
  content: attr(data-label);
  position: absolute;
  inset: auto 12px 10px 12px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.tm__photo img + ::after,  /* hide label when there's a real image */
.tm:has(img) .tm__photo::after { display: none; }

.tm__photo svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0.18;
}

.tm__body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}
.tm__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  color: var(--navy);
  line-height: 1.2;
}
.tm__role {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-1);
  margin-top: 2px;
  line-height: 1.4;
}
.tm__employer {
  font-size: 12px;
  color: var(--cyan-deep);
  font-weight: 500;
  margin-top: 6px;
}
.tm__linkedin {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-deep);
  background: rgba(12,170,220,0.08);
  border-radius: 50%;
  transition: background 0.15s ease, color 0.15s ease;
}
.tm:hover .tm__linkedin { background: var(--cyan); color: var(--white); }

/* CTA card at the end of the rail */
.tm--cta {
  background: var(--navy);
  color: var(--paper);
  border-color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.tm--cta__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  padding: 32px;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--paper);
}
.tm--cta__inner svg { color: var(--cyan); }
.tm--cta:hover { background: var(--cyan-deep); border-color: var(--cyan-deep); }

/* ============================================================
   PARTNERS
   ============================================================ */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  margin-top: 56px;
  background: rgba(6,26,64,0.10);
  border: 1px solid rgba(6,26,64,0.10);
}
.partner {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  padding: 28px 24px;
  transition: background 0.25s ease;
  cursor: default;
}
.partner:hover { background: #FBF9F2; }
.partner img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: opacity 0.25s ease, filter 0.25s ease;
}

@media (max-width: 1100px) {
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .partner { min-height: 120px; }
}

.footer {
  background: var(--navy);
  color: var(--paper);
  padding: 80px 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer__brand img { height: 34px; width: auto; filter: brightness(0) invert(1); }
.footer__brand p {
  font-size: 14px;
  color: var(--gray-3);
  line-height: 1.55;
  margin: 18px 0 0;
  max-width: 320px;
}
.footer__col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer__col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.footer__col a {
  color: var(--gray-3);
  font-size: 14px;
  transition: color 0.15s ease;
}
.footer__col a:hover { color: var(--cyan); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-2);
}

/* ============================================================
   PHOTO PLACEHOLDER (editorial)
   ============================================================ */
.ph {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  border-radius: var(--radius);
}
.ph::before, .ph::after {
  content: ""; position: absolute; inset: 0;
}
.ph::before {
  background:
    repeating-linear-gradient( 135deg,
      rgba(255,255,255,0.04) 0 2px,
      transparent 2px 14px );
}
.ph__label {
  position: absolute;
  left: 16px; bottom: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-3);
  z-index: 2;
}

/* utility icons */
.svg-arrow { display: inline-block; vertical-align: middle; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .nav__links,
  .nav__right .lang-toggle {
    display: none;
  }
  .nav__burger { display: flex; }
  .nav__mobile.is-open { display: flex; }
}
@media (max-width: 1100px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .paths { grid-template-columns: 1fr; }
  .kc-grid { grid-template-columns: 1fr; }
  .event { grid-column: span 12; }
  .fund { grid-template-columns: 1fr; gap: 56px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .nav__inner { padding: 14px 20px; }
  .nav__mobile { padding: 0 20px 20px; }
  .hero { padding: 64px 0 80px; }
  .section { padding: 80px 0; }
  .path { padding: 32px 28px; min-height: 440px; }
  .path__title { font-size: 42px; }
  .footer__top { grid-template-columns: 1fr; }
}
