/* ============================================================
   DTU Management Council — Visual Identity
   Colors:  #171749 navy (main) · #A40F4C magenta · #CB986C tan
            #FFFDEC cream · #FFFFFF white
   Font:    Neo Sans (DTU identity), graceful sans-serif fallback
   ============================================================ */

/* Premium web fonts — Neo Sans stays first for DTU-brand machines,
   high-quality web fonts upgrade every other visitor. */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --navy:    #171749;
  --navy-80: rgba(23, 23, 73, 0.80);
  --magenta: #A40F4C;
  --tan:     #CB986C;
  --cream:   #FFFDEC;
  --white:   #FFFFFF;
  --ink:     #171749;
  --muted:   #5b5b78;
  --line:    rgba(23, 23, 73, 0.12);
  --shadow:  0 10px 40px rgba(23, 23, 73, 0.12);
  --radius:  16px;
  --maxw:    1180px;
  --font:    "Neo Sans", "Plus Jakarta Sans", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Sora", "Neo Sans", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.12; letter-spacing: -0.02em; font-weight: 800; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.25rem; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section { padding: 92px 0; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--navy  { background: var(--navy); color: var(--cream); }
.section--navy h2, .section--navy h3 { color: var(--white); }

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 14px;
}
.section--navy .eyebrow { color: var(--tan); }

.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head p { color: var(--muted); font-size: 1.1rem; margin-top: 14px; }
.section--navy .section-head p { color: rgba(255,253,236,0.78); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 700; font-size: 0.98rem; cursor: pointer;
  border: 2px solid transparent; position: relative; overflow: hidden;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 5px 14px rgba(23,23,73,.14); }
.btn:active { transform: translateY(0) scale(.97); transition-duration: .08s; }
.btn:focus-visible { outline: 3px solid var(--tan); outline-offset: 2px; }
/* click ripple (added by animations.js) */
.ripple { position: absolute; border-radius: 50%; transform: scale(0); pointer-events: none;
  background: rgba(255,255,255,0.45); animation: ripple .6s ease-out forwards; }
.btn--primary .ripple { background: rgba(255,255,255,0.5); }
@keyframes ripple { to { transform: scale(2.6); opacity: 0; } }
.btn--primary { background: var(--magenta); color: var(--white); }
.btn--primary:hover { background: #87093d; }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn--ghost:hover { background: rgba(255,255,255,0.12); }
.btn--dark { background: var(--navy); color: var(--white); }
.btn--dark:hover { background: #0e0e30; }

/* ---------- Logo ---------- */
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo__img { height: 140px; width: auto; display: block; }
.logo { transition: transform .25s ease; }
.logo:hover { transform: scale(1.015); }
.footer .logo__img { height: 150px; }
.logo__mark { width: 40px; height: auto; flex: none; }
.logo__text { font-weight: 800; line-height: 1; letter-spacing: 0.02em; }
.logo__text span { display: block; }
.logo__text .l1 { font-size: 0.78rem; }
.logo__text .l2 { font-size: 1.02rem; }

/* ---------- Header (rounded floating pill: logo left · links centered · CTA right) ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: transparent; border: none;
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}
.header.hide { transform: translateY(-180%); }   /* hidden when scrolling down */
.header .container { padding: 18px 24px; }
/* The pill itself: a 3-zone grid so the links sit dead-centre */
.nav-pill {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px;
  max-width: 1120px; margin: 0 auto;
  padding: 6px 16px 6px 24px; border-radius: 999px;
  background: rgba(23, 23, 73, 0.42);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  transition: background .3s ease, box-shadow .3s ease;
}
.header.scrolled .nav-pill { background: rgba(23, 23, 73, 0.85); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.32); }

.nav-pill .logo { grid-column: 1; justify-self: start; }
/* Logo is bigger than the slim pill and overflows it; nudged downward */
.nav-pill .logo__img { height: 108px; margin: -33px 0; display: block; transform: translateY(34px); }

/* .nav itself is invisible to layout so its children drop into the pill grid */
.nav { display: contents; }
.nav-links { grid-column: 2; justify-self: center; display: flex; align-items: center; gap: 32px; }
.nav .btn { grid-column: 3; justify-self: end; padding: 9px 20px; font-size: 0.92rem; }
.nav .btn.is-active::after { display: none; }
.nav a { color: rgba(255,253,236,0.88); font-weight: 600; font-size: 0.96rem; transition: color .2s; position: relative; }
.nav a:hover { color: var(--white); }
.nav a.is-active { color: #fff; }
.nav a.is-active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 2px; background: var(--tan); border-radius: 2px; }
.nav-toggle { display: none; grid-column: 3; justify-self: end; background: none; border: 0; color: var(--white); font-size: 1.6rem; cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(164,15,76,0.45), transparent 60%),
    radial-gradient(700px 500px at 5% 110%, rgba(203,152,108,0.30), transparent 55%),
    var(--navy);
  color: var(--cream);
  padding: 150px 0 110px;
  position: relative; overflow: hidden;
}
.hero .container { text-align: center; }
.hero__logo { height: 170px; width: auto; margin: 0 auto 28px; display: block; }
.hero h1 { color: var(--white); max-width: 18ch; margin: 0 auto; }
.hero p.lead { font-size: 1.25rem; max-width: 52ch; margin: 22px auto 34px; color: rgba(255,253,236,0.88); }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero__rank {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
  padding: 8px 16px; border-radius: 999px; font-size: 0.9rem; margin-bottom: 26px;
}
.hero__rank b { color: var(--tan); }

/* ---------- Inner-page hero (sub-pages) ---------- */
.page-hero {
  background:
    radial-gradient(700px 400px at 50% -30%, rgba(164,15,76,0.40), transparent 60%),
    var(--navy);
  color: var(--cream); padding: 150px 0 72px; text-align: center;
}
.page-hero h1 { color: #fff; max-width: 22ch; margin: 0 auto; }
.page-hero p { color: rgba(255,253,236,0.85); font-size: 1.15rem; max-width: 60ch; margin: 16px auto 0; }
.page-hero .eyebrow { color: var(--tan); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 26px 18px; text-align: center;
}
.stat__num { font-size: 2.1rem; font-weight: 800; color: var(--tan); }
.stat__label { font-size: 0.86rem; color: rgba(255,253,236,0.8); margin-top: 6px; }

/* ---------- Cards / value ---------- */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px; border: 1px solid var(--line); box-shadow: var(--shadow);
  transition: transform .2s ease;
}
.card:hover { transform: translateY(-2px); }
.card__icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--cream); color: var(--magenta); margin-bottom: 18px; font-size: 1.4rem;
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); }

.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.pill { background: var(--cream); border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; font-size: 0.9rem; font-weight: 600; }

/* ---------- Process / steps ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.step { position: relative; padding-top: 16px; }
.step__no {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: var(--magenta); color: #fff; font-weight: 800; margin-bottom: 16px;
}
.step h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 8px; }
.step p { color: rgba(255,253,236,0.75); font-size: 0.95rem; }

/* ---------- Events ---------- */
.event-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); display: flex; flex-direction: column; }
.event-card__img { aspect-ratio: 16/10; object-fit: cover; width: 100%; background: var(--cream); }
.event-card__body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.event-card__meta { display: flex; gap: 10px; align-items: center; font-size: 0.82rem; color: var(--magenta); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.tag { background: var(--cream); color: var(--navy); border-radius: 999px; padding: 4px 12px; font-size: 0.78rem; font-weight: 700; }
.event-card h3 { font-size: 1.15rem; }
.event-card p { color: var(--muted); font-size: 0.96rem; }

/* ---------- Members ---------- */
.member-card { text-align: center; }
.member-card__photo {
  aspect-ratio: 1; object-fit: cover; width: 100%; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy), var(--magenta)); margin-bottom: 14px;
}
.member-card__photo--ph { display: grid; place-items: center; color: #fff; font-size: 2.4rem; font-weight: 800; }
.member-card h3 { font-size: 1.05rem; }
.member-card .role { color: var(--magenta); font-weight: 700; font-size: 0.9rem; }
.member-card .linkedin { display: inline-block; margin-top: 6px; color: var(--muted); font-size: 0.85rem; }
.member-card .linkedin:hover { color: var(--navy); }

.team-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 56px; }

/* ---------- Partners ---------- */
.partner-group + .partner-group { margin-top: 48px; }
.partner-group h3 { text-align: center; margin-bottom: 26px; color: var(--navy); }
.partner-wall { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.partner-tile {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  height: 120px; display: grid; place-items: center; padding: 22px; transition: transform .2s, box-shadow .2s;
}
.partner-tile:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(23,23,73,.10); }
.partner-tile img { max-height: 56px; width: auto; object-fit: contain; }
.partner-tile--dark { background: var(--navy); border-color: var(--navy); }

/* ---------- Contact / CTA ---------- */
.cta-band { background: linear-gradient(120deg, var(--magenta), #6f0734); color: #fff; border-radius: 28px; padding: 56px; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { max-width: 56ch; margin: 14px auto 28px; color: rgba(255,255,255,0.9); font-size: 1.12rem; }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: rgba(255,253,236,0.7); padding: 56px 0 30px; }
.footer__top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 36px; }
.footer .logo__text { color: #fff; }
.footer__col h4 { color: #fff; font-size: 0.95rem; margin-bottom: 14px; }
.footer__col a { display: block; color: rgba(255,253,236,0.7); padding: 4px 0; }
.footer__col a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 22px; font-size: 0.85rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.socials { display: flex; gap: 14px; }
.socials a { color: rgba(255,253,236,0.7); }
.socials a:hover { color: #fff; }

/* ---------- Loading / empty states ---------- */
.placeholder { color: var(--muted); text-align: center; padding: 40px; grid-column: 1 / -1; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .stats { grid-template-columns: repeat(3, 1fr); }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .partner-wall { grid-template-columns: repeat(3, 1fr); }
}

/* Floating pill collapses to a hamburger + dropdown */
@media (max-width: 880px) {
  .nav-pill { gap: 10px; padding: 5px 12px 5px 18px; }
  .nav-pill .logo__img { height: 90px; margin: -27px 0; transform: translateY(26px); }
  .nav-toggle { display: block; }
  .nav { display: none; }                 /* overrides display:contents while closed */
  .nav.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: fixed; inset: 96px 16px auto 16px;
    background: rgba(23,23,73,0.97); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.14); border-radius: 18px;
    padding: 10px 18px 18px; box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  }
  .nav-links { grid-column: auto; justify-self: auto; flex-direction: column; align-items: stretch; gap: 0; }
  .nav .btn { grid-column: auto; justify-self: auto; margin-top: 12px; justify-content: center; }
  .nav a { padding: 14px 2px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav a.is-active::after, .nav a:not(.btn)::before { display: none; }
}

@media (max-width: 680px) {
  .section { padding: 64px 0; }
  .hero__logo { height: 120px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .grid--2, .grid--3, .grid--4, .steps, .partner-wall { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 36px 24px; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

/* Hover lifts (cards already lift; refine the easing) */
.card, .event-card, .member-card__photo, .partner-tile, .stat {
  transition: transform .25s ease, box-shadow .25s ease;
}
.event-card:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(23,23,73,.12); }
.member-card:hover .member-card__photo { transform: translateY(-2px); box-shadow: var(--shadow); }
.stat:hover { transform: translateY(-2px); }

/* Nav link hover underline */
.nav a:not(.btn)::before {
  content: ""; position: absolute; left: 0; bottom: -8px; height: 2px; width: 0;
  background: var(--tan); border-radius: 2px; transition: width .25s ease;
}
.nav a:not(.btn):hover::before { width: 100%; }

/* Hero entrance (plays on load) */
.hero__logo,
.hero .hero__rank,
.hero h1,
.hero p.lead,
.hero__cta { opacity: 0; transform: translateY(24px); animation: heroIn .7s cubic-bezier(.22,1,.36,1) forwards; }
.hero__rank     { animation-delay: .10s; }
.hero h1        { animation-delay: .20s; }
.hero p.lead    { animation-delay: .32s; }
.hero__cta      { animation-delay: .44s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* Scroll reveal — only active when JS adds .js-anim to <html> */
html.js-anim .reveal { opacity: 0; transform: translateY(28px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.22,1,.36,1); will-change: opacity, transform; }
html.js-anim .reveal.in { opacity: 1; transform: none; }

/* Respect users who prefer less motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-delay: 0s !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important; }
  html.js-anim .reveal { opacity: 1; transform: none; }
  .hero__logo, .hero .hero__rank, .hero h1, .hero p.lead, .hero__cta { opacity: 1; transform: none; }
}

/* ============================================================
   ✦ VISUAL POLISH LAYER
   Premium depth, gradients & refined motion — additive, on top
   of the base styles above. Applies to every page.
   ============================================================ */

/* Brand text-selection + custom scrollbar */
::selection { background: var(--magenta); color: #fff; }
* { scrollbar-color: var(--magenta) var(--cream); }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--magenta), var(--navy));
  border-radius: 999px; border: 3px solid var(--cream);
}
body { text-rendering: optimizeLegibility; }

/* ---------- Hero: aurora glow + fine grain ---------- */
.hero { isolation: isolate; }
.hero::before {
  content: ""; position: absolute; inset: -20%; z-index: -1; pointer-events: none;
  background:
    radial-gradient(40% 50% at 20% 22%, rgba(164,15,76,0.55), transparent 60%),
    radial-gradient(45% 55% at 82% 30%, rgba(203,152,108,0.40), transparent 60%),
    radial-gradient(50% 50% at 62% 95%, rgba(120,40,90,0.45), transparent 60%);
  filter: blur(22px); opacity: .9;
  animation: auroraDrift 18s ease-in-out infinite alternate;
}
@keyframes auroraDrift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(2%, -2%, 0) scale(1.08); }
  100% { transform: translate3d(-2%, 1%, 0) scale(1.04); }
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Gradient hero headline */
.hero h1 {
  background: linear-gradient(180deg, #ffffff 0%, #fff7ec 55%, var(--tan) 135%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero__rank {
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  box-shadow: 0 0 0 1px rgba(255,255,255,.05), 0 8px 30px rgba(0,0,0,.25);
}

/* Inner-page hero gets a subtle matching aurora */
.page-hero { position: relative; overflow: hidden; isolation: isolate; }
.page-hero::before {
  content: ""; position: absolute; inset: -30%; z-index: -1; pointer-events: none;
  background: radial-gradient(40% 60% at 72% 8%, rgba(203,152,108,.32), transparent 60%);
  animation: auroraDrift 22s ease-in-out infinite alternate;
}

/* ---------- Eyebrow gets a leading rule ---------- */
.eyebrow::before {
  content: ""; display: inline-block; width: 26px; height: 2px; vertical-align: middle;
  margin-right: 10px; background: currentColor; border-radius: 2px;
}

/* ---------- Buttons: gradient fills + glow ---------- */
.btn--primary {
  background: linear-gradient(135deg, #c01457 0%, var(--magenta) 45%, #7e0a3a 100%);
  box-shadow: 0 8px 22px rgba(164,15,76,.30);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #d11a60, #8b0a40);
  box-shadow: 0 12px 30px rgba(164,15,76,.42);
}
.btn--dark { background: linear-gradient(135deg, #20204f, var(--navy)); }

/* ---------- Cards: gradient edge + deeper lift ---------- */
.card { position: relative; overflow: hidden; }
.card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(135deg, rgba(164,15,76,.5), rgba(203,152,108,.5));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .25s ease; pointer-events: none;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(23,23,73,.16); }
.card:hover::after { opacity: 1; }
.card__icon {
  background: linear-gradient(135deg, var(--magenta), var(--tan)); color: #fff;
  box-shadow: 0 8px 20px rgba(164,15,76,.25);
}

/* ---------- Stats: gradient numerals + glow ---------- */
.stat { -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.stat__num {
  background: linear-gradient(135deg, var(--tan), #f2c79c);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat:hover { transform: translateY(-4px); border-color: rgba(203,152,108,.5); box-shadow: 0 14px 30px rgba(0,0,0,.25); }

/* ---------- Event cards: image zoom + lift ---------- */
.event-card { overflow: hidden; transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s; }
.event-card__img { transition: transform .5s cubic-bezier(.22,1,.36,1); }
.event-card:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(23,23,73,.18); }
.event-card:hover .event-card__img { transform: scale(1.06); }

/* ---------- Member cards ---------- */
.member-card__photo { transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s; }
.member-card:hover .member-card__photo { transform: translateY(-6px) scale(1.02); box-shadow: 0 20px 40px rgba(23,23,73,.22); }

/* ---------- Partner tiles ---------- */
.partner-tile:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(23,23,73,.14); }

/* ---------- CTA band: inner glow ---------- */
.cta-band { position: relative; overflow: hidden; box-shadow: 0 20px 50px rgba(164,15,76,.28); }
.cta-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 120% at 50% -20%, rgba(255,255,255,.22), transparent 60%);
}
.cta-band > * { position: relative; }

/* ---------- Footer subtle gradient ---------- */
.footer { background: linear-gradient(180deg, #1c1c54, var(--navy)); }

/* Honour reduced-motion for the new animated layers */
@media (prefers-reduced-motion: reduce) {
  .hero::before, .page-hero::before { animation: none !important; }
}
