/* =========================================================
  FSMUN main.css
  Fonts used: Montserrat + Manrope only.
  Palette: #0c080d, #1f1823, #382b3f, #52425c, #7a6284
========================================================== */

/* 01. Lenis compatibility */
html,
body {
  scroll-behavior: auto !important;
}

body {
  overflow-x: hidden;
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* 02. Design tokens */
:root {
  --bg: #0c080d;
  --bg-alt: #1f1823;
  --violet-deep: #382b3f;
  --violet-mid: #52425c;
  --violet-soft: #7a6284;
  --cream: #f7f2fa;
  --muted: #c8b8d0;
  --muted-2: #9d8ba8;
  --accent: #b99ac7;
  --accent-light: #efe2f6;
  --surface: rgba(31, 24, 35, 0.74);
  --surface-2: rgba(56, 43, 63, 0.58);
  --surface-3: rgba(122, 98, 132, 0.18);
  --line: rgba(122, 98, 132, 0.28);
  --line-strong: rgba(231, 214, 239, 0.18);
  --shadow-soft: 0 24px 70px rgba(0, 0, 0, 0.42);
  --shadow-premium: 0 40px 120px rgba(0, 0, 0, 0.55), 0 0 90px rgba(122, 98, 132, 0.12);
  --radius: 28px;
  --radius-sm: 16px;
  --radius-full: 999px;
  --font: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-alt: "Manrope", system-ui, sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* 03. Reset / base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background: var(--bg);
}

body {
  min-height: 100vh;
  font-family: var(--font);
  color: var(--cream);
  background:
    radial-gradient(ellipse 70% 70% at 8% 4%, rgba(122, 98, 132, 0.34), transparent 62%),
    radial-gradient(ellipse 50% 42% at 88% 18%, rgba(82, 66, 92, 0.46), transparent 58%),
    radial-gradient(ellipse 70% 42% at 50% 100%, rgba(56, 43, 63, 0.52), transparent 72%),
    linear-gradient(180deg, #0c080d 0%, #140f17 48%, #0c080d 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(rgba(231, 214, 239, .018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(231, 214, 239, .018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 72%);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

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

::selection {
  background: var(--violet-soft);
  color: #fff;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 9999;
  background: linear-gradient(90deg, var(--violet-soft), var(--accent-light));
  box-shadow: 0 0 20px rgba(185, 154, 199, 0.6);
}

/* 04. Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(12, 8, 13, 0.58);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  transition: background .3s ease, border-color .3s ease;
}

.nav.scrolled {
  background: rgba(12, 8, 13, 0.9);
  border-bottom-color: var(--line);
}

.nav-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(122, 98, 132, .2);
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  z-index: 2;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  color: var(--muted-2);
  transition: color .25s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--cream);
}

.nav-indicator {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 4px;
  width: 0;
  height: calc(100% - 8px);
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(122, 98, 132, .48), rgba(231, 214, 239, .2));
  border: 1px solid rgba(231, 214, 239, .15);
  box-shadow:
    0 10px 25px rgba(0, 0, 0, .25),
    inset 0 1px 0 rgba(255, 255, 255, .08);
  opacity: 0;
  pointer-events: none;
  transition:
    transform .5s cubic-bezier(.22, .61, .36, 1),
    width .5s cubic-bezier(.22, .61, .36, 1),
    opacity .25s ease;
}

/* 05. Buttons */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .3s var(--ease), background .3s;
}

.btn-primary {
  background: linear-gradient(135deg, #7a6284 0%, #efe2f6 100%);
  color: #120c15;
  box-shadow: 0 18px 48px rgba(122, 98, 132, .34), inset 0 1px 0 rgba(255, 255, 255, .45);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 78px rgba(122, 98, 132, .48), inset 0 1px 0 rgba(255, 255, 255, .55);
}

.btn-outline {
  background: rgba(255, 255, 255, .045);
  color: var(--cream);
  border: 1px solid var(--line-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}

.btn-outline:hover {
  transform: translateY(-2px);
  background: rgba(122, 98, 132, .15);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, .24) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: shimmer 3.2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* 06. Hero */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 154px 0 106px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(231, 214, 239, .036) 1px, transparent 1px),
    linear-gradient(90deg, rgba(231, 214, 239, .036) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(ellipse 76% 64% at 50% 24%, #000 30%, transparent 82%);
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  width: 580px;
  height: 580px;
  left: -170px;
  top: 20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 98, 132, .42), transparent 68%);
  filter: blur(90px);
  animation: breathe 8s ease-in-out infinite;
  pointer-events: none;
}

.hero-orb.two {
  width: 500px;
  height: 500px;
  left: auto;
  right: -180px;
  top: -90px;
  background: radial-gradient(circle, rgba(82, 66, 92, .48), transparent 70%);
  animation-delay: 2s;
}

@keyframes breathe {

  0%,
  100% {
    opacity: .45;
    transform: scale(1);
  }

  50% {
    opacity: .82;
    transform: scale(1.16);
  }
}

.hero-decor {
  position: absolute;
  right: -84px;
  bottom: 92px;
  font-size: clamp(120px, 24vw, 330px);
  font-weight: 900;
  line-height: .8;
  color: transparent;
  -webkit-text-stroke: 1px rgba(231, 214, 239, .05);
  user-select: none;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 58px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  border-radius: var(--radius-full);
  border: 1px solid var(--line-strong);
  background: rgba(122, 98, 132, .12);
  color: var(--accent-light);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(231, 214, 239, .72);
}

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: -.055em;
}

h1 {
  margin-top: 24px;
  margin-bottom: 24px;
  font-size: clamp(50px, 8vw, 98px);
  font-weight: 900;
}

h2 {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
}

h3 {
  font-weight: 800;
}

.gradient-text {
  background: linear-gradient(135deg, #fff, #efe2f6 52%, #7a6284);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  max-width: 640px;
  color: var(--muted);
  font-family: var(--font-alt);
  font-size: clamp(16px, 1.45vw, 19px);
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 660px;
}

.stat {
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025));
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

.stat strong {
  display: block;
  color: var(--accent-light);
  font-size: 26px;
  line-height: 1;
  margin-bottom: 8px;
  font-weight: 900;
}

.stat span {
  color: var(--muted-2);
  font-size: 13px;
}

.hero-visual {
  position: relative;
}

.hero-card {
  position: relative;
  padding: 18px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .035));
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-premium);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
}

.hero-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -80px;
  top: -80px;
  border-radius: 50%;
  background: rgba(122, 98, 132, .4);
  filter: blur(12px);
}

.image-card img {
  width: 100%;
  min-height: 470px;
  height: 64vh;
  max-height: 620px;
  object-fit: cover;
  border-radius: 26px;
  filter: saturate(.88) contrast(1.05);
}

.image-gradient {
  position: absolute;
  inset: 18px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(12, 8, 13, .04), rgba(12, 8, 13, .9));
}

.hero-card-content {
  position: absolute;
  left: 44px;
  right: 44px;
  bottom: 42px;
}

.mini-label {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent-light);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.hero-card-content h3 {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 10px;
}

.hero-card-content p {
  color: var(--muted);
  font-family: var(--font-alt);
  max-width: 380px;
}

.floating-card {
  position: absolute;
  z-index: 4;
  padding: 16px 18px;
  min-width: 150px;
  border-radius: 20px;
  background: rgba(31, 24, 35, .78);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
}

.floating-card span {
  display: block;
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 4px;
}

.floating-card strong {
  font-size: 18px;
  color: var(--accent-light);
}

.float-one {
  left: -28px;
  top: 14%;
  animation: floatOne 6s ease-in-out infinite;
}

.float-two {
  right: -22px;
  bottom: 16%;
  animation: floatOne 7s ease-in-out infinite reverse;
}

@keyframes floatOne {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* 07. Sections / cards */
.section {
  padding: 108px 0;
  position: relative;
}

.with-divider {
  border-top: 1px solid rgba(122, 98, 132, .16);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr .86fr;
  gap: 42px;
  align-items: end;
  margin-bottom: 46px;
}

.section-head p {
  color: var(--muted);
  max-width: 540px;
  font-family: var(--font-alt);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025)),
    var(--surface);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .055), 0 18px 70px rgba(0, 0, 0, .18);
  transition: transform .3s var(--ease), border-color .3s, background .3s, box-shadow .3s;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(520px circle at var(--mx, 50%) var(--my, 50%), rgba(185, 154, 199, .18), transparent 42%);
  transition: opacity .3s;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-7px);
  border-color: var(--line-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 28px 90px rgba(0, 0, 0, .28);
}

.card:hover::before {
  opacity: 1;
}

.icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: rgba(122, 98, 132, .22);
  border: 1px solid var(--line);
  color: var(--accent-light);
  font-size: 22px;
  margin-bottom: 18px;
}

.card h3 {
  font-size: 25px;
  margin-bottom: 12px;
  position: relative;
  letter-spacing: -.03em;
}

.card p {
  color: var(--muted);
  font-family: var(--font-alt);
  font-size: 15px;
  position: relative;
}

.tag {
  display: inline-flex;
  margin-top: 20px;
  padding: 7px 11px;
  border-radius: var(--radius-full);
  background: rgba(122, 98, 132, .18);
  color: var(--accent-light);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  position: relative;
}

.committee-card {
  min-height: 260px;
}

.committee-number {
  position: absolute;
  right: 24px;
  top: 18px;
  color: rgba(231, 214, 239, .13);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

/* 08. Timeline */
.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 26px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}

.timeline-item:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .22);
}

.time {
  color: var(--accent-light);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.timeline-item h3 {
  font-size: 25px;
  margin-bottom: 6px;
}

.timeline-item p {
  color: var(--muted);
  font-family: var(--font-alt);
}

/* 09. Photo split */
.photo-split {
  padding-top: 48px;
}

.split-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 46px;
  align-items: center;
}

.split-image {
  border-radius: 34px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .025));
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-soft);
}

.split-image img {
  height: 520px;
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
  filter: saturate(.88) contrast(1.04);
}

.split-copy h2 {
  margin: 18px 0;
}

.split-copy p {
  color: var(--muted);
  font-family: var(--font-alt);
  max-width: 560px;
  margin-bottom: 24px;
}

.split-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.split-points span {
  padding: 10px 13px;
  border-radius: var(--radius-full);
  background: rgba(122, 98, 132, .13);
  border: 1px solid var(--line);
  color: var(--accent-light);
  font-size: 12px;
  font-weight: 800;
}

/* 10. Secretariat */
.team-scroll {
  position: relative;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 12px 0 24px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.team-scroll::-webkit-scrollbar {
  display: none;
}

.team-carousel {
  position: relative;
  width: 100%;
}

.team-scroll {
  position: relative;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 12px 0 24px;

  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* old Edge */
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  cursor: grab;
}

.team-scroll::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Edge */
}

.team-scroll:active {
  cursor: grabbing;
}

.team-scroll::-webkit-scrollbar {
  height: 8px;
}

/* .team-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, .05);
  border-radius: 999px;
  margin: 0 24px;
} */

/* .team-scroll::-webkit-scrollbar-thumb {
  background: rgba(231, 214, 239, .28);
  border-radius: 999px;
}

.team-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(231, 214, 239, .45);
} */

.team-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 46px;
  height: 46px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(31, 24, 35, .86);
  border: 1px solid rgba(231, 214, 239, .2);
  color: var(--cream);
  font-size: 34px;
  line-height: 1;
  display: grid;
  place-items: center;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .35);
  transition: transform .25s ease, background .25s ease, opacity .25s ease;
}

.team-arrow:hover {
  transform: translateY(-50%) scale(1.06);
  background: rgba(82, 66, 92, .92);
}

.team-arrow-left {
  left: 18px;
}

.team-arrow-right {
  right: 18px;
}

.team-track {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: max-content;
  min-width: 100%;
  margin: 0 auto;
  padding: 6px 24px;
}

.team-track .person {
  flex: 0 0 240px;
  width: 240px;
  min-width: 240px;
  padding: 16px 16px 22px;
  border-radius: 28px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025)),
    rgba(31, 24, 35, .72);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .055), 0 22px 70px rgba(0, 0, 0, .28);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}

.team-track .person:hover {
  transform: translateY(-8px);
  border-color: var(--line-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 34px 90px rgba(0, 0, 0, .42);
}

.team-track .avatar-img {
  width: 100%;
  aspect-ratio: 4 / 5;

  object-fit: cover;
  object-position: center top;

  display: block;
  border-radius: 20px;
  margin-bottom: 14px;

  border: 1px solid rgba(231, 214, 239, .18);
  background:
    radial-gradient(circle at 35% 25%, rgba(239, 226, 246, .28), transparent 35%),
    linear-gradient(135deg, #382b3f, #7a6284);
}

.team-track .person h3 {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: -.03em;
  margin-bottom: 5px;
  font-weight: 900;
}

.team-track .person p {
  color: var(--muted);
  font-family: var(--font-alt);
  font-size: 13px;
  line-height: 1.35;
}


/* 10.1 Committee chairs — same style as Secretariat team track */
.chairs-carousel {
  position: relative;
  width: 100%;
}

.chairs-scroll {
  position: relative;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 12px 0 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  cursor: grab;
}

.chairs-scroll::-webkit-scrollbar {
  display: none;
}

.chairs-scroll:active {
  cursor: grabbing;
}

.chairs-track,
.chairs-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: max-content;
  min-width: 100%;
  margin: 0 auto;
  padding: 6px 24px;
}

.chairs-track .person,
.chairs-grid .person {
  flex: 0 0 240px;
  width: 240px;
  min-width: 240px;
  padding: 16px 16px 22px;
  border-radius: 28px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025)),
    rgba(31, 24, 35, .72);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .055), 0 22px 70px rgba(0, 0, 0, .28);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}

.chairs-track .person:hover,
.chairs-grid .person:hover {
  transform: translateY(-8px);
  border-color: var(--line-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 34px 90px rgba(0, 0, 0, .42);
}

.chairs-track .avatar-img,
.chairs-grid .avatar-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 20px;
  margin-bottom: 14px;
  border: 1px solid rgba(231, 214, 239, .18);
  background:
    radial-gradient(circle at 35% 25%, rgba(239, 226, 246, .28), transparent 35%),
    linear-gradient(135deg, #382b3f, #7a6284);
}

.chairs-track .person h3,
.chairs-grid .person h3 {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: -.03em;
  margin-bottom: 5px;
  font-weight: 900;
}

.chairs-track .person p,
.chairs-grid .person p {
  color: var(--muted);
  font-family: var(--font-alt);
  font-size: 13px;
  line-height: 1.35;
}


/* 11. CTA / FAQ / footer */
.cta {
  text-align: center;
  padding: 76px 38px;
  border-radius: 38px;
  background:
    radial-gradient(circle at top right, rgba(231, 214, 239, .24), transparent 30%),
    radial-gradient(circle at bottom left, rgba(122, 98, 132, .34), transparent 36%),
    linear-gradient(135deg, rgba(56, 43, 63, .92), rgba(31, 24, 35, .78));
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-premium);
}

.cta .eyebrow {
  margin-bottom: 18px;
}

.cta h2 {
  margin-bottom: 18px;
}

.cta p {
  color: var(--muted);
  font-family: var(--font-alt);
  max-width: 720px;
  margin: 0 auto 28px;
}

.faq {
  display: grid;
  gap: 12px;
}

details {
  padding: 22px 24px;
  border-radius: 22px;
  background: rgba(31, 24, 35, .74);
  border: 1px solid var(--line);
  transition: border-color .2s, background .2s;
}

details[open] {
  border-color: var(--line-strong);
  background: rgba(56, 43, 63, .48);
}

summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--cream);
}

details p {
  margin-top: 12px;
  color: var(--muted);
  font-family: var(--font-alt);
}

.footer {
  position: relative;
  padding: 76px 0 34px;
  overflow: hidden;
  border-top: 1px solid rgba(231, 214, 239, .12);
  background:
    radial-gradient(circle at 50% -20%, rgba(122, 98, 132, .28), transparent 38%),
    linear-gradient(180deg, rgba(31, 24, 35, .34), rgba(12, 8, 13, 1));
}

.footer::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(900px, 90vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(231, 214, 239, .55), transparent);
}

.footer-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr .8fr .8fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 48px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-logo-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(122, 98, 132, .9), rgba(239, 226, 246, .75));
  color: #120c15;
  box-shadow: 0 18px 44px rgba(122, 98, 132, .26);
}

.footer-brand p {
  max-width: 430px;
  color: var(--muted-2);
  font-family: var(--font-alt);
  font-size: 14px;
  line-height: 1.75;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-links a,
.footer-contact a {
  width: fit-content;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: color .25s ease, transform .25s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--accent-light);
  transform: translateX(4px);
}

.footer-dev {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 26px;
  border-top: 1px solid rgba(231, 214, 239, .1);
}

.footer-dev span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-dev strong {
  display: block;
  color: var(--cream);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 900;
  letter-spacing: -.04em;
}

.footer-dev-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-dev-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 999px;
  color: var(--cream);
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(231, 214, 239, .12);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.footer-dev-links a:hover {
  transform: translateY(-2px);
  background: rgba(122, 98, 132, .16);
  border-color: rgba(231, 214, 239, .24);
}

.footer-dev-links img {
  width: 19px;
  height: 19px;
}

/* 12. Animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

.d1 {
  transition-delay: .08s;
}

.d2 {
  transition-delay: .16s;
}

.d3 {
  transition-delay: .24s;
}

.d4 {
  transition-delay: .32s;
}

.d5 {
  transition-delay: .40s;
}

.d6 {
  transition-delay: .48s;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001s !important;
  }
}

/* 13. Responsive */
@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero-content,
  .section-head,
  .grid-3,
  .grid-4,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 122px;
  }

  .hero-card {
    transform: none;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .image-card img {
    min-height: 380px;
    height: 520px;
  }

  .split-image img {
    height: 420px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .floating-card {
    display: none;
  }

  .team-track,
  .chairs-track,
  .chairs-grid {
    justify-content: flex-start;
    min-width: max-content;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-dev {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav-inner {
    height: 70px;
  }

  .logo-text {
    display: none;
  }

  .nav-cta {
    width: auto;
    padding: 12px 17px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero {
    padding: 116px 0 72px;
  }

  h1 {
    font-size: clamp(44px, 14vw, 66px);
  }

  .image-card img {
    min-height: 340px;
    height: 430px;
  }

  .hero-card-content {
    left: 34px;
    right: 34px;
    bottom: 32px;
  }

  .section {
    padding: 78px 0;
  }

  .cta {
    padding: 46px 20px;
  }

  .split-image img {
    height: 340px;
  }

  .team-track,
  .chairs-track,
  .chairs-grid {
    gap: 16px;
    padding: 4px 18px;
  }

  .team-track .person,
  .chairs-track .person,
  .chairs-grid .person {
    flex-basis: 230px;
    width: 230px;
    min-width: 230px;
  }
}

@media (max-width: 768px) {
  .team-arrow {
    display: none;
  }

  .team-scroll {
    scrollbar-width: none;
  }

  .team-scroll::-webkit-scrollbar {
    display: none;
  }
}