/* ============================================================
   EHEA Awards — recreation
   Headings: Inter Tight · Body: Open Sans
   ============================================================ */

:root {
  --blue: #4A85C2;
  --blue-deep: #0057B8;
  --blue-navy: #003D82;
  --blue-soft: #F4F8FB;
  --blue-chip: #E3EDF7;
  --ink: #1F2733;
  --body: #4B5563;
  --muted: #6B7280;
  --bg-alt: #FAFAFA;
  --white: #fff;
  --radius-lg: 24px;
  --radius-md: 16px;
  --font-head: "Inter Tight", sans-serif;
  --font-body: "Open Sans", sans-serif;
  --container: 1440px;
  --gutter: 80px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--white);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); font-weight: 500; line-height: 1.15; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section { padding: 100px 0; background: var(--white); }
.section-alt { background: var(--bg-alt); }

/* ---------- shared bits ---------- */

.label {
  font-family: var(--font-head);
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.h-lg { font-size: clamp(34px, 4vw, 52px); font-weight: 600; letter-spacing: -0.01em; }
.h-md { font-size: clamp(30px, 3.4vw, 44px); font-weight: 600; letter-spacing: -0.01em; }
.text-blue { color: var(--blue); }

.btn {
  font-family: var(--font-head);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--ink); box-shadow: 0 2px 10px rgba(0, 30, 70, .12); }
.btn-white:hover { box-shadow: 0 8px 24px rgba(0, 30, 70, .2); }
.btn-ghost { border: 1px solid rgba(255,255,255,.6); color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,.12); }

.badge {
  font-family: var(--font-head);
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,.7);
  background: rgba(255,255,255,.18);
  color: var(--white);
}
.badge-outline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: transparent;
}

.card {
  background: var(--blue-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
}

/* ---------- reveal on scroll ---------- */

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1); }
.reveal.d-1 { transition-delay: .12s; }
.reveal.d-2 { transition-delay: .24s; }
.reveal.d-3 { transition-delay: .36s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .ring-spin, .orbit-path, .orbit-sat, .orbit-center img, .orbit-pulse { animation: none !important; }
  html { scroll-behavior: auto; }
}

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

.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 22px 0;
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}
.navbar.is-scrolled {
  background: rgba(56, 110, 168, .92);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0, 30, 70, .18);
}
.nav-inner { display: flex; align-items: center; gap: 40px; }
.nav-logo img { width: 160px; height: auto; }
.nav-links { display: flex; gap: 32px; margin-left: 24px; }
.nav-links a {
  font-family: var(--font-head);
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  opacity: .92;
  transition: opacity .2s ease;
}
.nav-links a:hover { opacity: 1; }
.nav-actions { margin-left: auto; display: flex; align-items: center; gap: 20px; }
.nav-search { background: none; border: none; color: var(--white); cursor: pointer; display: grid; place-items: center; opacity: .9; }
.nav-search:hover { opacity: 1; }
.nav-actions .btn { padding: 11px 22px; font-size: 15px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; border-radius: 2px; }

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

.hero {
  position: relative;
  background: var(--blue);
  color: var(--white);
  overflow: hidden;
  padding: 180px 0 120px;
}
/* replaces the original 1.4 MB blur webp layers */
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 700px at 82% 30%, rgba(255,255,255,.16), transparent 60%),
    radial-gradient(700px 600px at 10% 85%, rgba(0, 61, 130, .35), transparent 65%),
    radial-gradient(600px 500px at 30% 10%, rgba(255,255,255,.10), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 48px;
}

.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 {
  color: var(--white);
  font-size: clamp(52px, 6.6vw, 96px);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.015em;
  margin: 28px 0;
}
.hero-sub { font-size: 20px; max-width: 480px; color: rgba(255,255,255,.92); margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; }

/* ----- living orbit system ----- */

.hero-orbit { position: relative; height: 640px; }
.orbit-parallax {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  transition: transform .6s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}

.orbit-rings {
  position: absolute;
  width: 700px; height: 700px;
  left: 50%; top: 50%;
  translate: -50% -50%;
  animation: orbit-breathe 9s ease-in-out infinite;
}
.ring-spin { transform-origin: 350px 350px; animation: ring-rotate 60s linear infinite; }
.ring-spin.reverse { animation: ring-rotate 44s linear infinite reverse; }
.ring-spin.slower { animation-duration: 90s; }

@keyframes ring-rotate { to { transform: rotate(360deg); } }
@keyframes orbit-breathe {
  0%, 100% { scale: 1; opacity: .95; }
  50% { scale: 1.035; opacity: 1; }
}

.orbit-center {
  position: relative;
  width: 400px; height: 400px;
  border-radius: 50%;
  animation: center-float 7s ease-in-out infinite;
}
.orbit-center img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(0, 30, 70, .35);
}
.orbit-pulse {
  position: absolute; inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.45);
  animation: pulse-out 4s ease-out infinite;
}
@keyframes center-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes pulse-out {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.22); opacity: 0; }
}

/* satellites: wrapper rotates around center, photo counter-rotates */
.orbit-path {
  position: absolute;
  left: 50%; top: 50%;
  width: 0; height: 0;
}
.orbit-path .orbit-sat {
  position: absolute;
  width: 114px; height: 114px;
  margin: -57px 0 0 -57px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,.85);
  box-shadow: 0 12px 32px rgba(0, 30, 70, .3);
  background: var(--blue-soft);
}
.orbit-sat img { width: 100%; height: 100%; object-fit: cover; }

.orbit-path.p1 { animation: orbit-1 46s linear infinite; }
.orbit-path.p2 { animation: orbit-2 34s linear infinite reverse; }
.orbit-path.p3 { animation: orbit-3 58s linear infinite; }

/* each keyframe pair keeps the satellite upright while orbiting */
@keyframes orbit-1 {
  from { transform: rotate(0deg)   translateX(330px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(330px) rotate(-360deg); }
}
@keyframes orbit-2 {
  from { transform: rotate(120deg)  translateX(262px) rotate(-120deg); }
  to   { transform: rotate(480deg)  translateX(262px) rotate(-480deg); }
}
@keyframes orbit-3 {
  from { transform: rotate(240deg)  translateX(205px) rotate(-240deg); }
  to   { transform: rotate(600deg)  translateX(205px) rotate(-600deg); }
}

/* entrance */
.hero-orbit { opacity: 0; scale: .92; transition: opacity 1.1s ease .3s, scale 1.1s cubic-bezier(.22,.61,.36,1) .3s; }
.hero-orbit.is-live { opacity: 1; scale: 1; }

/* ============================================================
   ABOUT + PILLARS
   ============================================================ */

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 96px;
}
.about-copy p + p { margin-top: 20px; }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}
.pillar-canvas {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1;
  margin-bottom: 8px;
}
.pillar-canvas canvas { width: 100%; height: 100%; display: block; }
.pillar h3 { font-size: 24px; font-weight: 600; margin-bottom: 12px; }
.pillar p { font-size: 16px; }

/* ============================================================
   LEADERSHIP
   ============================================================ */

.lead-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
}
.lead-copy { max-width: 720px; margin-top: 32px; }
.lead-copy p { font-size: 16px; }
.lead-copy p + p { margin-top: 20px; }
.lead-copy strong { color: var(--ink); }

.chair-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 340px));
  gap: 24px;
  margin-top: 56px;
}
.chair-card { display: flex; flex-direction: column; gap: 18px; }
.chair-name { font-family: var(--font-head); color: var(--blue); font-size: 22px; font-weight: 600; line-height: 1.25; }
.chair-photo { width: 150px; height: 150px; border-radius: 50%; overflow: hidden; align-self: center; }
.chair-photo img { width: 100%; height: 100%; object-fit: cover; }
.chair-linkedin { color: var(--blue); width: 20px; }
.chair-role { font-size: 13px; color: var(--blue); }
.chair-role strong { display: block; }

/* ============================================================
   BENEFITS
   ============================================================ */

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.benefit-card { background: var(--white); box-shadow: 0 1px 3px rgba(15, 40, 80, .06); }
.benefit-photo { border-radius: var(--radius-md); width: 100%; aspect-ratio: 16 / 8.5; object-fit: cover; }
.icon-chip {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--blue-chip);
  display: grid; place-items: center;
  margin: 28px 0 18px;
}
.benefit-card h3 { font-size: 24px; font-weight: 600; margin-bottom: 10px; }
.benefit-card p { font-size: 16px; }

/* ============================================================
   SHOWCASE
   ============================================================ */

.showcase-card {
  margin-top: 56px;
  border-radius: 28px;
  padding: 64px;
  color: var(--white);
  background:
    linear-gradient(109deg, rgba(0, 87, 184, .9), rgba(0, 61, 130, .9)),
    url("../assets/showcase-bg.webp") center / cover no-repeat;
  overflow: hidden;
}
.showcase-intro { max-width: 460px; font-size: 17px; margin-bottom: 140px; color: rgba(255,255,255,.95); }
.showcase-sub {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.glass-card {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: background .3s ease, transform .3s ease;
}
.glass-card:hover { background: rgba(255,255,255,.18); transform: translateY(-3px); }
.glass-card h3 { color: var(--white); font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.glass-card p { font-size: 15px; color: rgba(255,255,255,.9); }

/* ============================================================
   RECOGNITION
   ============================================================ */

.recog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: stretch;
}
.recog-sub { font-size: 16px; margin: 24px 0 40px; max-width: 460px; }
.feature-list { display: flex; flex-direction: column; gap: 32px; }
.feature { display: flex; gap: 20px; align-items: flex-start; }
.feature-icon {
  flex: 0 0 48px;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--blue);
  color: var(--white);
  display: grid; place-items: center;
  box-shadow: 0 6px 16px rgba(74, 133, 194, .35);
}
.feature h3 { font-size: 20px; font-weight: 600; margin-bottom: 6px; }
.feature p { font-size: 15px; }
.recog-photo { border-radius: 28px; overflow: hidden; }
.recog-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   FAQ
   ============================================================ */

.faq-container { max-width: 980px; }
.faq-head { display: grid; grid-template-columns: 160px 1fr; align-items: baseline; margin-bottom: 48px; }
.faq-head h2 { text-align: left; }

.faq-item {
  background: var(--blue-soft);
  border-radius: 14px;
  margin-bottom: 16px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 28px;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--ink);
  text-align: left;
}
.faq-q .chev { color: var(--blue); flex: 0 0 auto; transition: transform .35s cubic-bezier(.22,.61,.36,1); }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.22,.61,.36,1);
}
.faq-a p { padding: 0 28px 26px; font-size: 16px; }

/* ============================================================
   CTA + FOOTER
   ============================================================ */

.cta-footer {
  color: var(--white);
  background:
    radial-gradient(1000px 600px at 15% 20%, rgba(255,255,255,.14), transparent 60%),
    radial-gradient(800px 600px at 90% 80%, rgba(0, 61, 130, .45), transparent 65%),
    linear-gradient(160deg, #5B90C8, #40699E);
}
.cta { padding: 140px 0 120px; text-align: center; }
.cta h2 { color: var(--white); font-size: clamp(36px, 4.4vw, 56px); font-weight: 600; margin: 26px 0 14px; }
.cta p { color: rgba(255,255,255,.92); margin-bottom: 36px; }

footer { padding: 24px 0 40px; }
.footer-top {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 32px 0;
  flex-wrap: wrap;
}
.footer-links { display: flex; gap: 32px; }
.footer-links a { font-size: 15px; color: rgba(255,255,255,.92); }
.footer-links a:hover { color: var(--white); }
.footer-divider { height: 1px; background: rgba(255,255,255,.3); margin: 24px 0; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  color: rgba(255,255,255,.85);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a:hover { color: var(--white); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  :root { --gutter: 40px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-orbit { height: 560px; }
  .orbit-rings { width: 560px; height: 560px; }
  .about-grid, .recog-grid { grid-template-columns: 1fr; gap: 40px; }
  .lead-grid { grid-template-columns: 1fr; gap: 8px; }
  .pillars { grid-template-columns: 1fr; gap: 48px; }
  .showcase-intro { margin-bottom: 80px; }
}

@media (max-width: 760px) {
  :root { --gutter: 20px; }
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .navbar.menu-open { background: var(--blue); }
  .navbar.menu-open .nav-inner { flex-wrap: wrap; }
  .navbar.menu-open .nav-links,
  .navbar.menu-open .nav-actions {
    display: flex; flex-direction: column; align-items: flex-start;
    width: 100%; gap: 18px; padding: 18px 0 6px; margin: 0;
  }
  .hero { padding: 140px 0 80px; }
  .section { padding: 64px 0; }
  .hero-orbit { height: 400px; }
  .orbit-rings { width: 400px; height: 400px; }
  .orbit-center { width: 250px; height: 250px; }
  .orbit-path .orbit-sat { width: 80px; height: 80px; margin: -40px 0 0 -40px; }
  @keyframes orbit-1 { from { transform: rotate(0deg) translateX(190px) rotate(0deg); } to { transform: rotate(360deg) translateX(190px) rotate(-360deg); } }
  @keyframes orbit-2 { from { transform: rotate(120deg) translateX(150px) rotate(-120deg); } to { transform: rotate(480deg) translateX(150px) rotate(-480deg); } }
  @keyframes orbit-3 { from { transform: rotate(240deg) translateX(118px) rotate(-240deg); } to { transform: rotate(600deg) translateX(118px) rotate(-600deg); } }
  .benefit-grid, .showcase-sub { grid-template-columns: 1fr; }
  .chair-cards { grid-template-columns: 1fr; }
  .showcase-card { padding: 32px; }
  .faq-head { grid-template-columns: 1fr; gap: 8px; }
  .cta { padding: 100px 0 80px; }
}
