:root {
  --bg: #f8f9fc;
  --surface: #ffffff;
  --ink: #1f2633;
  --muted: #5e697d;
  --line: #e4e7ee;
  --brand: #c8272d;
  --brand-dark: #981b20;
  --accent: #1e232d;
  --shadow: 0 14px 36px rgba(29, 40, 61, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--bg);
  color: var(--ink);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition:
    background-color 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    backdrop-filter 260ms ease;
  animation: headerDropIn 620ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(218, 224, 236, 0.95);
  box-shadow: 0 10px 26px rgba(22, 33, 51, 0.12);
  backdrop-filter: saturate(1.08) blur(8px);
}

.header-inner {
  width: min(1240px, 94vw);
  margin: 0 auto;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: min-height 260ms ease;
}

.site-header.is-scrolled .header-inner {
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-image {
  width: min(185px, 40vw);
  height: auto;
  display: block;
  transition: transform 260ms ease;
}

.site-header.is-scrolled .logo-image {
  transform: scale(0.96);
}

.brand-tagline {
  position: relative;
  padding-left: 0.7rem;
  max-width: 190px;
  color: #5a657b;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.25;
}

.brand-tagline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.05rem;
  bottom: 0.05rem;
  width: 1px;
  background: #d3dbea;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav a {
  font-size: 0.91rem;
  font-weight: 600;
  color: #313a4d;
  position: relative;
  transition: color 180ms ease, transform 180ms ease;
  opacity: 0;
  transform: translateY(-8px);
  animation: navLinkIn 520ms ease forwards;
}

.nav a:nth-child(1) {
  animation-delay: 90ms;
}

.nav a:nth-child(2) {
  animation-delay: 150ms;
}

.nav a:nth-child(3) {
  animation-delay: 210ms;
}

.nav a:nth-child(4) {
  animation-delay: 270ms;
}

.nav a:hover {
  color: #1f293d;
  transform: translateY(-1px);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.action-btn {
  min-height: 40px;
  padding: 0.58rem 0.95rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-8px);
  animation: navLinkIn 520ms ease forwards;
  animation-delay: 390ms;
}

.action-btn.solid {
  background: var(--brand);
  color: #fff;
}

.action-btn.solid:hover {
  background: var(--brand-dark);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #30384a;
  font-size: 1.2rem;
  cursor: pointer;
}

.menu-toggle i {
  transition: transform 220ms ease;
}

.menu-toggle[aria-expanded="true"] i {
  transform: rotate(90deg);
}

.hero {
  position: relative;
  width: 100%;
  height: calc(100svh - 85px);
  min-height: 540px;
  max-height: 900px;
  overflow: hidden;
  background: #edf1f8;
}

.hero-slider,
.hero-track,
.slide,
.slide img,
.slide video {
  width: 100%;
  height: 100%;
}

.hero-track {
  display: flex;
  will-change: transform;
}

.slide {
  flex: 0 0 100%;
  position: relative;
}

.slide.slide-dim::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.34);
  pointer-events: none;
  z-index: 1;
}

.slide img {
  object-fit: cover;
}

.slide video {
  object-fit: cover;
}

.slider-btn {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.88);
  color: #3f4a62;
  font-size: 1.1rem;
  cursor: pointer;
}

.slider-btn.prev {
  left: 1.1rem;
}

.slider-btn.next {
  right: 1.1rem;
}

.hero-card {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -50%);
  width: min(980px, 90vw);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(220, 224, 234, 0.95);
  border-radius: 12px;
  padding: 1.8rem 2rem;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.72rem;
  box-shadow: var(--shadow);
  text-align: center;
  animation: heroCardIn 720ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.62rem;
  font-weight: 700;
  color: #6a7388;
  opacity: 0;
  transform: translateY(14px);
  animation: heroTextIn 560ms ease forwards;
  animation-delay: 140ms;
}

.hero-card h1 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.8rem, 3.3vw, 3rem);
  color: var(--brand);
  line-height: 1.1;
  opacity: 0;
  transform: translateY(14px);
  animation: heroTextIn 560ms ease forwards;
  animation-delay: 230ms;
}

.hero-card p {
  margin: 0;
  color: #3f4a61;
  font-size: clamp(0.89rem, 1.05vw, 1rem);
  line-height: 1.56;
  opacity: 0;
  transform: translateY(14px);
  animation: heroTextIn 560ms ease forwards;
  animation-delay: 320ms;
}

.hero-card #heroText {
  margin-bottom: 0.48rem;
}

.hero-card .hero-intro {
  margin-bottom: 0.48rem;
}

.hero-actions {
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(14px);
  animation: heroTextIn 560ms ease forwards;
  animation-delay: 410ms;
}

.hero-btn {
  min-height: 40px;
  padding: 0.56rem 0.92rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero .hero-actions .hero-btn {
  min-height: 54px;
  padding: 0.78rem 1.75rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
}

.hero-btn.primary {
  background: var(--brand);
  color: #fff;
}

.hero-btn.primary:hover {
  background: var(--brand-dark);
}

@keyframes heroCardIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes heroTextIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes headerDropIn {
  from {
    opacity: 0;
    transform: translateY(-22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes navLinkIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-section {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(2px);
  transition:
    opacity 620ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--section-delay, 0ms);
}

.reveal-section.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

.reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms cubic-bezier(0.22, 0.8, 0.2, 1),
    transform 520ms cubic-bezier(0.22, 0.8, 0.2, 1);
  transition-delay: var(--item-delay, 0ms);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .hero {
    height: calc(100svh - 85px);
  }
}

@media (max-width: 920px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .header-actions {
    display: none;
  }

  .nav a {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .brand-tagline {
    display: none;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 0.7rem;
    padding: 1rem 1.1rem;
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    pointer-events: none;
    transition: 180ms ease;
  }

  .nav.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: all;
  }

  .hero {
    height: calc(100svh - 74px);
    min-height: 440px;
  }

  .slider-btn {
    width: 46px;
    height: 46px;
  }

  .hero-card {
    left: 1rem;
    right: 1rem;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    width: auto;
    min-height: auto;
    padding: 1.3rem 1.2rem;
    gap: 0.62rem;
  }
}

@media (max-width: 620px) {
  .header-inner {
    min-height: 74px;
  }

  .hero {
    height: calc(100svh - 74px);
    min-height: 390px;
  }

  .hero .hero-actions .hero-btn {
    min-height: 48px;
    padding: 0.66rem 1.3rem;
    font-size: 0.92rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .site-header,
  .header-inner,
  .logo-image,
  .nav a,
  .action-btn,
  .menu-toggle i,
  .hero-card,
  .hero-card .kicker,
  .hero-card h1,
  .hero-card p,
  .hero-card .hero-actions,
  .whatdo-orbit,
  .whatdo-card h3,
  .whatdo-card::after,
  .state-pin,
  .track-state-slides,
  .track-slide-btn,
  .track-slide-dot,
  .media-btn,
  .media-tile img,
  .media-tile::before,
  .media-lightbox img,
  .lightbox-btn,
  .footer-socials a,
  .reveal-section,
  .reveal-item {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

.prepoll-statement {
  background:
    radial-gradient(700px 240px at 8% 0%, rgba(200, 39, 45, 0.08), transparent 70%),
    linear-gradient(180deg, #ffffff, #f9fbff);
  border-top: 1px solid #e3e8f2;
  border-bottom: 1px solid #e3e8f2;
  padding: clamp(2.1rem, 5vw, 3.5rem) 1rem;
}

.prepoll-shell {
  width: min(1100px, 94vw);
  margin: 0 auto;
  text-align: center;
}

.prepoll-shell h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3.6vw, 2.7rem);
  line-height: 1.18;
  color: #1d2639;
  letter-spacing: -0.02em;
}

.prepoll-insight-section {
  background:
    radial-gradient(920px 300px at 8% -14%, rgba(200, 39, 45, 0.1), transparent 64%),
    linear-gradient(180deg, #ffffff, #f9fbff);
  border-top: 1px solid #e3e8f2;
  border-bottom: 1px solid #e3e8f2;
  padding: clamp(2.6rem, 5.8vw, 4.6rem) 0;
}

.prepoll-insight-shell {
  width: min(1240px, 94vw);
  margin: 0 auto;
}

.prepoll-insight-top {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.2rem, 2.9vw, 2.35rem);
  align-items: start;
}

.prepoll-insight-content {
  min-width: 0;
}

.prepoll-insight-content h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.6rem, 3.25vw, 2.45rem);
  line-height: 1.2;
  color: #1d273d;
  letter-spacing: -0.015em;
}

.prepoll-insight-media {
  margin: 0;
}

.prepoll-insight-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

.prepoll-insight-content p {
  margin: 1rem 0 0;
  color: #55627a;
  line-height: 1.78;
}

.prepoll-insight-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 0.8rem;
}

.prepoll-insight-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.58rem;
  border: 1px solid #e2e8f2;
  border-radius: 999px;
  background: #ffffff;
  padding: 0.64rem 0.9rem 0.64rem 0.56rem;
  color: #33415b;
  line-height: 1.5;
}

.prepoll-insight-list .insight-badge {
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #c8272d, #981b20);
  color: #ffffff;
  box-shadow: 0 8px 14px rgba(200, 39, 45, 0.22);
  margin-top: 0.04rem;
}

.prepoll-insight-list .insight-badge i {
  font-size: 0.84rem;
  line-height: 1;
}

.prepoll-insight-list li span:last-child {
  padding-top: 0.15rem;
}

.prepoll-insight-bottom {
  margin-top: 1.3rem;
}

.prepoll-insight-bottom > p {
  margin: 1.15rem 0 0;
  color: #55627a;
  line-height: 1.74;
}

.booth-intel-section {
  background:
    radial-gradient(860px 300px at 94% -20%, rgba(200, 39, 45, 0.09), transparent 67%),
    linear-gradient(180deg, #ffffff, #f8fbff);
  border-top: 1px solid #e3e8f2;
  border-bottom: 1px solid #e3e8f2;
  padding: clamp(2.8rem, 6vw, 4.9rem) 0;
}

.booth-intel-shell {
  width: min(1240px, 94vw);
  margin: 0 auto;
}

.booth-intel-top {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.2rem, 2.9vw, 2.35rem);
  align-items: start;
}

.booth-intel-content h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.58rem, 3.2vw, 2.45rem);
  line-height: 1.18;
  color: #1d273d;
  letter-spacing: -0.015em;
}

.booth-intel-content p {
  margin: 0.98rem 0 0;
  color: #55627a;
  line-height: 1.76;
}

.booth-intel-content {
  min-width: 0;
}

.booth-intel-bottom {
  margin-top: 1.25rem;
}

.booth-intel-list {
  margin: 0.95rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 0.8rem;
}

.booth-intel-list li {
  position: relative;
  border: 1px solid #e2e8f2;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  padding: 0.8rem 0.96rem 0.8rem 2.12rem;
  color: #33415b;
  line-height: 1.5;
  min-height: 60px;
  display: flex;
  align-items: center;
}

.booth-intel-list li::before {
  content: "";
  position: absolute;
  left: 0.82rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(200, 39, 45, 0.1);
}

.booth-intel-media {
  margin: 0;
}

.booth-intel-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

.strategy-framework-section {
  background:
    radial-gradient(820px 260px at 8% -18%, rgba(200, 39, 45, 0.08), transparent 68%),
    linear-gradient(180deg, #ffffff, #f9fbff);
  border-top: 1px solid #e3e8f2;
  border-bottom: 1px solid #e3e8f2;
  padding: clamp(2.8rem, 6vw, 4.9rem) 0;
}

.strategy-framework-shell {
  width: min(1240px, 94vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}

.strategy-framework-content {
  min-width: 0;
  text-align: center;
}

.strategy-framework-content h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.58rem, 3.2vw, 2.45rem);
  line-height: 1.18;
  color: #1d273d;
  letter-spacing: -0.015em;
}

.strategy-framework-content p {
  margin: 0.72rem 0 0;
  color: #55627a;
  line-height: 1.68;
}

.strategy-framework-label {
  color: #2a364f;
  font-weight: 700;
}

.strategy-framework-media {
  margin: 0;
  width: min(50%, 720px);
  justify-self: center;
}

.strategy-framework-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

.strategy-framework-grid {
  margin: 0.9rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 0.8rem;
}

.strategy-framework-grid article {
  border: 1px solid #e2e8f2;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  padding: 0.85rem 0.9rem;
}

.strategy-framework-grid h3 {
  margin: 0;
  color: #1f2c45;
  font-size: 1rem;
  line-height: 1.35;
  font-family: "Montserrat", sans-serif;
}

.strategy-framework-grid p {
  margin: 0.45rem 0 0;
  color: #56627b;
  line-height: 1.56;
  font-size: 0.92rem;
}

.strategy-framework-bottom {
  margin-top: 0.9rem;
  text-align: center;
}

.strategy-framework-bottom p {
  margin: 0;
  color: #55627a;
  line-height: 1.7;
}

.strategy-framework-bottom p + p {
  margin-top: 0.7rem;
}

.deliverables-section {
  background:
    radial-gradient(900px 280px at 90% -26%, rgba(200, 39, 45, 0.08), transparent 67%),
    linear-gradient(180deg, #ffffff, #f9fbff);
  border-top: 1px solid #e3e8f2;
  border-bottom: 1px solid #e3e8f2;
  padding: clamp(2.8rem, 6vw, 4.9rem) 0;
}

.deliverables-shell {
  width: min(1240px, 94vw);
  margin: 0 auto;
}

.deliverables-head {
  text-align: center;
}

.deliverables-head h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.58rem, 3.2vw, 2.45rem);
  line-height: 1.18;
  color: #1d273d;
  letter-spacing: -0.015em;
}

.deliverables-head p {
  margin: 0.72rem 0 0;
  color: #55627a;
  line-height: 1.68;
}

.deliverables-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 0.8rem;
}

.deliverable-item {
  border: 1px solid #e2e8f2;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  padding: 0.85rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.68rem;
  min-height: 78px;
}

.deliverable-icon {
  width: 2.1rem;
  height: 2.1rem;
  flex: 0 0 2.1rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #c8272d, #981b20);
  color: #ffffff;
}

.deliverable-icon i {
  font-size: 0.9rem;
  line-height: 1;
}

.deliverable-item h3 {
  margin: 0;
  color: #2a364f;
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
}

.contact-form-section {
  padding: clamp(3rem, 6.5vw, 5rem) clamp(14px, 3vw, 42px);
  background:
    radial-gradient(920px 340px at 14% -10%, rgba(200, 39, 45, 0.14), transparent 66%),
    linear-gradient(180deg, #fffefe 0%, #f7fbff 100%);
}

.contact-form-shell {
  width: min(1240px, 100%);
  margin: 0 auto;
  border: 1px solid #e3e9f3;
  border-radius: 20px;
  background: linear-gradient(165deg, #ffffff 0%, #fff8f9 58%, #f3f8ff 100%);
  box-shadow: 0 16px 34px rgba(33, 45, 67, 0.08);
  padding: clamp(1rem, 2.8vw, 1.8rem);
}

.contact-form-head h2 {
  margin: 0.3rem 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  color: var(--brand-dark);
}

.contact-form-head p {
  margin: 0.62rem 0 0;
  color: #54607a;
  font-size: 0.98rem;
  line-height: 1.62;
  max-width: 78ch;
}

.contact-form {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.contact-form label {
  display: grid;
  gap: 0.42rem;
  color: #2f3a52;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 44px;
  width: 100%;
  border: 1px solid #d6deea;
  border-radius: 12px;
  padding: 0.62rem 0.75rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  color: #2b344a;
  background: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 118px;
}

.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  outline: 0;
  border-color: #c8272d;
  box-shadow: 0 0 0 3px rgba(200, 39, 45, 0.14);
}

.contact-form-full {
  grid-column: 1 / -1;
}

.contact-form-actions {
  margin-top: 0.15rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.contact-form-btn {
  min-height: 46px;
  padding: 0.62rem 1.12rem;
  border-radius: 999px;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.contact-form-btn:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.contact-form-actions p {
  margin: 0;
  color: #55617b;
  font-size: 0.9rem;
}

.contact-form-actions a {
  color: var(--brand-dark);
  font-weight: 700;
}

.contact-form-status {
  margin: 0;
  min-height: 1.2rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #4c5872;
}

.contact-form-status[data-state="success"] {
  color: #177f4e;
}

.contact-form-status[data-state="error"] {
  color: #b5232b;
}

.foundation-section {
  background:
    radial-gradient(980px 340px at 12% -16%, rgba(200, 39, 45, 0.11), transparent 63%),
    linear-gradient(180deg, #ffffff, #f8fbff);
  border-top: 1px solid #e3e8f2;
  border-bottom: 1px solid #e3e8f2;
  padding: clamp(3rem, 6.4vw, 5rem) 0;
}

.foundation-shell {
  width: min(1240px, 94vw);
  margin: 0 auto;
  display: grid;
  gap: clamp(0.95rem, 2vw, 1.5rem);
}

.foundation-head h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.62rem, 3.2vw, 2.45rem);
  line-height: 1.2;
  color: #1c273e;
  letter-spacing: -0.014em;
}

.foundation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(1.15rem, 2.8vw, 2.4rem);
  align-items: center;
}

.foundation-content p {
  margin: 0.96rem 0 0;
  color: #55627a;
  line-height: 1.74;
  font-size: clamp(0.95rem, 1.06vw, 1.02rem);
}

.foundation-link {
  margin-top: 1.05rem;
  min-height: 46px;
  padding: 0.62rem 1.16rem;
  border-radius: 999px;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 180ms ease, transform 180ms ease;
}

.foundation-link:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.foundation-media {
  margin: 0;
}

.foundation-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  border: 1px solid #dfe7f2;
  box-shadow: 0 16px 32px rgba(23, 36, 57, 0.1);
}

.media-section {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(1100px 460px at 14% -15%, rgba(200, 39, 45, 0.18), transparent 64%),
    radial-gradient(760px 380px at 92% 8%, rgba(35, 52, 89, 0.14), transparent 68%),
    linear-gradient(180deg, #fffdfd 0%, #f7fbff 100%);
  padding: clamp(3.3rem, 7vw, 5.8rem) 0 clamp(3.8rem, 8vw, 6.2rem);
}

.media-section::before {
  content: "";
  position: absolute;
  inset: auto 5% -6% auto;
  width: clamp(240px, 24vw, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(200, 39, 45, 0.15), rgba(200, 39, 45, 0));
  filter: blur(10px);
  z-index: -1;
}

.media-stage {
  width: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.media-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.2rem;
  padding-inline: clamp(14px, 3vw, 42px);
}

.media-title-block {
  max-width: 72ch;
}

.media-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  color: var(--brand-dark);
  font-family: "Montserrat", sans-serif;
  line-height: 1.05;
}

.media-intro {
  margin: 0.65rem 0 0;
  color: #545f78;
  font-size: clamp(0.95rem, 1.1vw, 1.07rem);
  line-height: 1.58;
  max-width: 64ch;
}

.media-controls {
  display: inline-flex;
  gap: 0.62rem;
}

.media-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid #d3dde9;
  background: rgba(255, 255, 255, 0.96);
  color: #2f3e5c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.media-btn:hover {
  transform: translateY(-2px);
  background: #ffffff;
  border-color: #c0ccdc;
}

.media-track {
  margin-top: 1.4rem;
  display: grid;
  grid-auto-flow: column dense;
  grid-auto-columns: minmax(210px, 1fr);
  grid-template-rows: repeat(3, 176px);
  gap: 0.95rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  overscroll-behavior-x: contain;
  touch-action: pan-y pinch-zoom;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: #bcc7d6 transparent;
  scrollbar-width: none;
  padding: 0.2rem clamp(14px, 2.6vw, 42px) 0.48rem;
}

.media-track::-webkit-scrollbar {
  display: none;
}

.media-tile {
  border: 1px solid #dce4f0;
  padding: 0;
  margin: 0;
  background: #0c111c;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  scroll-snap-align: start;
  min-width: 210px;
}

.media-tile.is-feature {
  grid-row: span 3;
  grid-column: span 2;
}

.media-tile.is-tall {
  grid-row: span 2;
}

.media-tile.is-wide {
  grid-column: span 2;
}

.media-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 11, 20, 0.14), rgba(7, 11, 20, 0.78));
  opacity: 0.7;
  z-index: 1;
  transition: opacity 260ms ease;
}

.media-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 460ms ease, filter 460ms ease;
}

.media-tile:hover img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.04);
}

.media-tile:hover::before {
  opacity: 0.55;
}

.media-tile:focus-visible {
  outline: 3px solid rgba(200, 39, 45, 0.45);
  outline-offset: 2px;
}

.media-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6, 10, 18, 0.92);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
  padding: 1.2rem;
}

.site-footer {
  background:
    radial-gradient(860px 280px at 12% 0%, rgba(200, 39, 45, 0.08), transparent 65%),
    linear-gradient(180deg, #ffffff, #f9fbff);
  color: #2e3750;
  padding: clamp(3.2rem, 6.5vw, 5.4rem) clamp(14px, 3vw, 42px) 1.6rem;
  border-top: 1px solid #e3e8f2;
}

.footer-shell {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.85fr 1fr;
  gap: 1.8rem;
  align-items: stretch;
}

.footer-brand,
.footer-col {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.footer-logo {
  width: min(170px, 48vw);
  filter: none;
}

.footer-brand p {
  margin: 0.45rem 0 0;
  color: #5a647c;
  line-height: 1.44;
  font-size: 0.82rem;
  max-width: 45ch;
}

.footer-brand p:first-of-type {
  margin-top: 0.85rem;
  color: #2a3349;
  font-size: 0.93rem;
  font-weight: 700;
}

.footer-socials {
  margin-top: 1.1rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #d7dfec;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #3f4b66;
  line-height: 1;
  font-size: 0.95rem;
  background: #fff;
}

.footer-col h3 {
  margin: 0;
  color: #1f2a40;
  font-size: 1.04rem;
  font-family: "Montserrat", sans-serif;
  position: relative;
  padding-bottom: 0.52rem;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  background: #d4ddee;
}

.footer-col a {
  display: block;
  margin-top: 0.72rem;
  color: #5c6882;
  font-size: 0.92rem;
}

.footer-col.socials .footer-socials a {
  display: inline-flex;
  margin-top: 0;
}

.footer-col.socials {
  justify-self: stretch;
}

.footer-col.contact p {
  margin: 0.64rem 0 0;
  color: #5f6b84;
  font-size: 0.9rem;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 0.48rem;
}

.footer-col.contact i {
  color: var(--brand);
  margin-top: 0.08rem;
}

.footer-bottom {
  width: min(1240px, 100%);
  margin: 2.1rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid #dfe6f2;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #74819c;
  font-size: 0.86rem;
}

.media-lightbox.open {
  display: flex;
}

.media-lightbox img {
  width: min(1360px, 92vw);
  max-height: 84vh;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.48);
  transform: scale(0.94);
  opacity: 0;
  transition: transform 260ms ease, opacity 260ms ease;
}

.media-lightbox.open img {
  transform: scale(1);
  opacity: 1;
}

.lightbox-meta {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
}

.lightbox-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.38rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(0, 0, 0, 0.4);
  color: #f3f6ff;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.lightbox-btn {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(0, 0, 0, 0.38);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.lightbox-btn:hover {
  background: rgba(0, 0, 0, 0.55);
}

.lightbox-btn.close {
  top: 1rem;
  right: 1rem;
}

.lightbox-btn.prev {
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
}

.lightbox-btn.next {
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
}

.video-section {
  background: #eef0f4;
  padding: clamp(2.4rem, 5vw, 4rem) 0;
}

.video-shell {
  width: min(1240px, 94vw);
  margin: 0 auto;
  background: #f9fafc;
  border: 1px solid #dde2ea;
  border-radius: 18px;
  padding: clamp(0.95rem, 2.2vw, 1.35rem);
}

.video-grid {
  margin-top: 0;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.35rem;
  align-items: flex-start;
}

.video-copy p {
  margin: 0;
  color: #2f3747;
  font-size: clamp(0.88rem, 1.05vw, 0.98rem);
  line-height: 1.52;
}

.video-copy {
  align-self: center;
}

.video-copy p + p {
  margin-top: 0.62rem;
}

.video-copy ul {
  margin: 0.6rem 0 0;
  padding-left: 1.1rem;
  color: #2f3747;
  font-size: clamp(0.86rem, 1vw, 0.96rem);
  line-height: 1.5;
  display: grid;
  gap: 0.22rem;
}

.video-copy li::marker {
  color: var(--brand);
}

.video-frame-wrap {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
}

.video-frame-wrap iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}

.whatdo-section {
  background: #ffffff;
  padding: clamp(2.7rem, 6vw, 4.8rem) 0;
}

.whatdo-shell {
  width: min(1240px, 94vw);
  margin: 0 auto;
}

.whatdo-shell h2 {
  margin: 0;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  color: #1f2a3f;
  letter-spacing: -0.02em;
}

.whatdo-intro {
  margin: 0.9rem auto 0;
  max-width: 78ch;
  text-align: center;
  color: #56617a;
  line-height: 1.7;
  font-size: clamp(0.98rem, 1.2vw, 1.06rem);
}

.whatdo-label {
  margin: 1.1rem 0 0;
  text-align: center;
  color: #38445c;
  font-weight: 700;
  font-size: 0.94rem;
}

.whatdo-grid {
  margin-top: 1.65rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 2.1rem 1.2rem;
}

.whatdo-card {
  position: relative;
  --node-delay: 120ms;
  --label-delay: 240ms;
  --connector-delay: 320ms;
  padding: 0 0.8rem 0;
  display: grid;
  gap: 0.9rem;
  justify-items: center;
  text-align: center;
  align-items: start;
}

.whatdo-card:nth-child(2) {
  --node-delay: 220ms;
  --label-delay: 340ms;
  --connector-delay: 420ms;
}

.whatdo-card:nth-child(3) {
  --node-delay: 320ms;
  --label-delay: 440ms;
  --connector-delay: 520ms;
}

.whatdo-card:nth-child(4) {
  --node-delay: 420ms;
  --label-delay: 540ms;
  --connector-delay: 620ms;
}

.whatdo-card:nth-child(5) {
  --node-delay: 520ms;
  --label-delay: 640ms;
  --connector-delay: 720ms;
}

.whatdo-card:nth-child(6) {
  --node-delay: 620ms;
  --label-delay: 740ms;
  --connector-delay: 820ms;
}

.whatdo-orbit {
  width: min(180px, 36vw);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  border: 1.5px dashed #cfd7e7;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at center, #ffffff 20%, #f8fbff 100%);
  opacity: 0;
  transform: translateY(18px) scale(0.92);
  animation: whatdoNodeIn 640ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: var(--node-delay);
}

.whatdo-icon {
  width: 92px;
  height: 92px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #f4f8ff, #ecf4ff);
  border: 1px solid #dbe5f6;
}

.whatdo-icon i {
  font-size: 2rem;
  line-height: 1;
  color: var(--brand);
}

.whatdo-card h3 {
  margin: 0;
  width: min(31ch, 100%);
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  line-height: 1.42;
  color: #232f46;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  opacity: 0;
  transform: translateY(10px);
  animation: whatdoLabelIn 560ms ease forwards;
  animation-delay: var(--label-delay);
}

.whatdo-card:nth-child(1)::after,
.whatdo-card:nth-child(2)::after,
.whatdo-card:nth-child(4)::after,
.whatdo-card:nth-child(5)::after {
  content: "";
  position: absolute;
  top: 74px;
  left: calc(50% + 90px);
  width: calc(100% - 18px);
  border-top: 2px dashed #c7cfde;
  opacity: 0;
  animation: whatdoConnectorIn 460ms ease forwards;
  animation-delay: var(--connector-delay);
}

@keyframes whatdoNodeIn {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes whatdoLabelIn {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes whatdoConnectorIn {
  to {
    opacity: 0.9;
  }
}

.research-approach-section {
  background:
    radial-gradient(1020px 360px at 14% -16%, rgba(200, 39, 45, 0.09), rgba(200, 39, 45, 0) 64%),
    linear-gradient(180deg, #fffefe 0%, #f8fbff 100%);
  border-top: 1px solid #e5eaf3;
  padding: clamp(2.9rem, 6.2vw, 4.8rem) 0;
}

.research-approach-shell {
  width: min(1240px, 94vw);
  margin: 0 auto;
}

.research-approach-head {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.research-approach-head h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.7rem, 3.4vw, 2.65rem);
  line-height: 1.15;
  color: #1a2740;
  letter-spacing: -0.015em;
}

.research-approach-head p {
  margin: 0.72rem auto 0;
  color: #576279;
  line-height: 1.66;
  font-size: clamp(0.96rem, 1.12vw, 1.05rem);
}

.research-approach-grid {
  margin-top: clamp(1.1rem, 2.6vw, 1.65rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 0.8rem;
}

.research-approach-item {
  border: 1px solid #dfe6f1;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  padding: 0.78rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.68rem;
  min-height: 78px;
}

.research-approach-icon {
  width: 2.18rem;
  height: 2.18rem;
  flex: 0 0 2.18rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #c8272d, #981b20);
  color: #ffffff;
}

.research-approach-icon i {
  font-size: 0.9rem;
  line-height: 1;
}

.research-approach-item h3 {
  margin: 0;
  color: #2b364f;
  font-size: 1rem;
  line-height: 1.45;
  font-family: "Montserrat", sans-serif;
}

.methodology-section {
  background: linear-gradient(180deg, #ffffff, #fbfcff);
  border-top: 1px solid #e5eaf3;
  padding: clamp(3rem, 6.6vw, 5.2rem) 0;
}

.methodology-shell {
  width: min(1240px, 94vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2.4vw, 1.6rem);
}

.methodology-content {
  display: block;
  max-width: 960px;
  margin: 0 auto;
}

.methodology-head {
  text-align: center;
}

.methodology-head h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.6rem, 3.3vw, 2.55rem);
  line-height: 1.2;
  color: #1a263d;
  letter-spacing: -0.015em;
}

.methodology-intro {
  margin: 0.7rem auto 0;
  max-width: 62ch;
  color: #546178;
  line-height: 1.68;
  font-size: clamp(0.97rem, 1.15vw, 1.05rem);
}

.methodology-media {
  margin: 0.15rem 0 0;
  width: min(1120px, 100%);
  justify-self: center;
}

.methodology-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

.methodology-details {
  margin-top: clamp(1.2rem, 3vw, 2rem);
  width: min(1120px, 100%);
  justify-self: center;
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 1rem;
}

.methodology-item {
  border: 1px solid #e2e8f3;
  border-radius: 14px;
  background: linear-gradient(165deg, #ffffff, #f9fbff);
  padding: 0.95rem;
  box-shadow: 0 8px 22px rgba(26, 40, 63, 0.06);
}

.methodology-item h3 {
  margin: 0;
  font-size: 1.02rem;
  color: #1f2c44;
  font-family: "Montserrat", sans-serif;
}

.methodology-item p {
  margin: 0.5rem 0 0;
  color: #55627a;
  line-height: 1.62;
}

.methodology-item ul {
  margin: 0.55rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.42rem;
}

.methodology-item li {
  position: relative;
  padding-left: 1rem;
  color: #37445d;
  line-height: 1.5;
}

.methodology-item li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56rem;
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
  background: var(--brand);
}

.survey-reveals-section {
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  border-top: 1px solid #e5eaf3;
  padding: clamp(2.8rem, 6vw, 4.8rem) 0;
}

.survey-reveals-shell {
  width: min(1240px, 94vw);
  margin: 0 auto;
}

.survey-reveals-head {
  text-align: center;
}

.survey-reveals-head h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.6rem, 3.3vw, 2.55rem);
  line-height: 1.2;
  color: #1a263d;
  letter-spacing: -0.015em;
}

.survey-reveals-head p {
  margin: 0.72rem auto 0;
  max-width: 60ch;
  color: #55627a;
  line-height: 1.66;
}

.survey-reveals-grid {
  margin-top: clamp(1.1rem, 2.7vw, 1.8rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 0.8rem;
}

.survey-reveals-item {
  border: 1px solid #dfe6f1;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  padding: 0.78rem 0.86rem;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 0.66rem;
}

.survey-reveals-icon {
  width: 2.12rem;
  height: 2.12rem;
  flex: 0 0 2.12rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #c8272d, #981b20);
  color: #ffffff;
}

.survey-reveals-icon i {
  font-size: 0.86rem;
  line-height: 1;
}

.survey-reveals-item h3 {
  margin: 0;
  color: #2b364f;
  font-size: 0.99rem;
  line-height: 1.44;
  font-family: "Montserrat", sans-serif;
}

.global-academic-section {
  background:
    radial-gradient(980px 340px at 88% -16%, rgba(200, 39, 45, 0.08), rgba(200, 39, 45, 0) 62%),
    linear-gradient(180deg, #ffffff, #f8fbff);
  border-top: 1px solid #e5eaf3;
  padding: clamp(2.8rem, 6vw, 4.6rem) 0;
}

.global-academic-shell {
  width: min(1240px, 94vw);
  margin: 0 auto;
}

.global-academic-head {
  text-align: center;
}

.global-academic-head h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.58rem, 3.25vw, 2.45rem);
  line-height: 1.2;
  color: #1b2740;
  letter-spacing: -0.015em;
}

.global-academic-head p {
  margin: 0.72rem auto 0;
  max-width: 62ch;
  color: #55627a;
  line-height: 1.66;
}

.global-academic-grid {
  margin-top: clamp(1rem, 2.6vw, 1.6rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 1rem;
}

.global-academic-item {
  border: 1px solid #dde6f2;
  border-radius: 18px;
  background: #ffffff;
  padding: 1rem;
  min-height: 214px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.92rem;
  box-shadow: 0 10px 24px rgba(24, 37, 58, 0.06);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.global-academic-item:hover {
  transform: translateY(-4px);
  border-color: #d1dceb;
  box-shadow: 0 14px 28px rgba(24, 37, 58, 0.1);
}

.global-academic-icon {
  width: 100%;
  height: clamp(96px, 10vw, 136px);
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: inherit;
  padding: 0;
}

.global-academic-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.global-academic-item--bandung .global-academic-icon img {
  object-fit: cover;
  object-position: center;
}

.global-academic-item h3 {
  margin: 0;
  color: #2b364f;
  font-size: 1.03rem;
  line-height: 1.44;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  max-width: 100%;
}

.placeholder-anchor {
  min-height: 0;
}

.services-section {
  position: relative;
  background:
    radial-gradient(1200px 420px at 14% -14%, #ffe9ec 0%, rgba(255, 233, 236, 0) 62%),
    radial-gradient(900px 340px at 95% 4%, #eef4ff 0%, rgba(238, 244, 255, 0) 66%),
    #ffffff;
  padding: clamp(3rem, 7vw, 5.4rem) 0;
}

.services-shell {
  width: min(1240px, 94vw);
  margin: 0 auto;
}

.services-head {
  max-width: 860px;
}

.section-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
  font-weight: 700;
  color: #6e778d;
}

.services-shell h2 {
  margin: 0.35rem 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4.1vw, 3.3rem);
  color: var(--brand-dark);
  letter-spacing: -0.02em;
}

.services-intro {
  margin: 0.72rem 0 0;
  color: #566179;
  line-height: 1.7;
  font-size: 1.02rem;
  max-width: 78ch;
}

.impact-strip {
  margin-top: 1.45rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 0.85rem;
}

.impact-strip article {
  border: 1px solid #e3e8f1;
  background: linear-gradient(180deg, #fff 0%, #f9fbff 100%);
  border-radius: 14px;
  padding: 0.95rem;
}

.impact-strip h3 {
  margin: 0;
  font-size: 1.2rem;
  font-family: "Montserrat", sans-serif;
  color: #1d273c;
}

.impact-strip p {
  margin: 0.3rem 0 0;
  color: #5d6780;
  font-size: 0.87rem;
  line-height: 1.5;
}

.track-map-ui {
  margin-top: 1.4rem;
  border: 1px solid #e1e6f0;
  border-radius: 18px;
  background: linear-gradient(165deg, #ffffff 0%, #fff8f8 56%, #f4f8ff 100%);
  padding: clamp(0.9rem, 2vw, 1.3rem);
  box-shadow: 0 14px 30px rgba(25, 39, 64, 0.08);
}

.track-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: 0.95rem;
  align-items: start;
}

.india-map-canvas {
  margin: 0;
  position: relative;
  border: 1px solid #dce4f2;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(160deg, #f7f9fd 0%, #eef3fc 100%);
  aspect-ratio: 612 / 696;
  align-self: start;
}

.india-map-canvas img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.map-pins {
  position: absolute;
  inset: 0;
}

.state-pin {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: #8d98af;
  box-shadow: 0 5px 14px rgba(30, 38, 58, 0.28);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.state-pin::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(141, 152, 175, 0.28);
}

.state-pin:hover,
.state-pin:focus-visible {
  transform: translate(-50%, -50%) scale(1.16);
  box-shadow: 0 8px 16px rgba(30, 38, 58, 0.32);
  outline: 0;
}

.state-pin.is-active {
  transform: translate(-50%, -50%) scale(1.24);
  background: var(--brand);
}

.state-pin.is-active::after {
  border-color: rgba(200, 39, 45, 0.24);
}

.track-state-panel {
  border: 1px solid #dfe6f1;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff, #fbfcff);
  padding: clamp(1.2rem, 2.4vw, 1.65rem);
  overflow: hidden;
}

.track-state-head h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.62rem);
  color: #1f2a3f;
  font-family: "Montserrat", sans-serif;
}

.track-state-summary {
  margin: 0;
  color: #52607b;
  line-height: 1.72;
  font-size: 0.93rem;
}

.track-state-slider {
  margin-top: 0.8rem;
  overflow: hidden;
}

.track-state-slides {
  display: flex;
  transition: transform 320ms ease;
  will-change: transform;
}

.track-slide {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.track-state-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(90px, 1fr));
  gap: 0.7rem;
}

.track-state-stats article {
  border: 1px solid #e3e8f1;
  border-radius: 12px;
  background: #fff;
  padding: 0.78rem 0.72rem;
}

.track-state-stats h5 {
  margin: 0;
  color: #25314b;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
}

.track-state-stats p {
  margin: 0.26rem 0 0;
  color: #63708a;
  font-size: 0.74rem;
  line-height: 1.38;
}

.track-state-block {
  margin-top: 0;
}

.track-slide .track-state-block {
  margin-top: 0;
}

.track-state-block h4 {
  margin: 0 0 0.18rem;
  color: #2a364f;
  font-size: 0.94rem;
  font-family: "Montserrat", sans-serif;
}

.track-chip-list {
  margin-top: 0.58rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.track-chip-list span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.33rem 0.62rem;
  border-radius: 999px;
  border: 1px solid #e0e6f1;
  background: #f7fafe;
  color: #3f4f6b;
  font-size: 0.76rem;
  font-weight: 700;
}

.track-years {
  margin: 0.58rem 0 0;
  color: #52607a;
  line-height: 1.6;
  font-size: 0.9rem;
}

.track-booth-list {
  margin: 0.62rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.track-booth-list li {
  border: 1px solid #e7ecf4;
  border-radius: 10px;
  background: #fff;
  padding: 0.72rem 0.8rem;
  color: #44516d;
  line-height: 1.5;
  font-size: 0.84rem;
}

.track-slide-controls {
  margin-top: 1.12rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}

.track-slide-btn {
  width: 38px;
  height: 38px;
  border: 1px solid #d8e0ee;
  border-radius: 50%;
  background: #fff;
  color: #33415f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.track-slide-btn:hover,
.track-slide-btn:focus-visible {
  border-color: #c1cde0;
  color: #1f2a40;
  transform: translateY(-1px);
  outline: 0;
}

.track-slide-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.track-slide-dots {
  flex: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.track-slide-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: #ccd4e3;
  padding: 0;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.track-slide-dot.is-active {
  transform: scale(1.2);
  background: var(--brand);
}

@media (max-width: 1040px) {
  .impact-strip {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }

  .track-map-layout {
    grid-template-columns: 1fr;
  }

  .track-state-stats {
    grid-template-columns: repeat(3, minmax(110px, 1fr));
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .footer-shell {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 1.4rem;
  }

  .media-track {
    grid-auto-columns: minmax(200px, 1fr);
    grid-template-rows: repeat(3, 146px);
  }

  .media-stage {
    border-radius: 0;
  }

  .media-tile.is-feature {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media (max-width: 980px) {
  .prepoll-insight-top {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .prepoll-insight-media {
    width: 100%;
    margin: 0;
  }

  .prepoll-insight-list {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .booth-intel-shell {
    width: min(1240px, 94vw);
  }

  .booth-intel-top {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .booth-intel-list {
    grid-template-columns: 1fr;
  }

  .strategy-framework-shell {
    gap: 1.05rem;
  }

  .strategy-framework-media {
    width: min(70%, 640px);
  }

  .strategy-framework-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    margin-top: 0.2rem;
  }

  .deliverables-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .foundation-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .whatdo-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 1.7rem 1rem;
  }

  .research-approach-grid {
    grid-template-columns: 1fr;
  }

  .whatdo-card:nth-child(1)::after,
  .whatdo-card:nth-child(2)::after,
  .whatdo-card:nth-child(4)::after,
  .whatdo-card:nth-child(5)::after {
    display: none;
  }

  .methodology-shell {
    gap: 1rem;
  }

  .methodology-details {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .survey-reveals-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .global-academic-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

@media (max-width: 680px) {
  .prepoll-shell h2,
  .whatdo-shell h2,
  .research-approach-head h2,
  .methodology-head h2,
  .survey-reveals-head h2,
  .global-academic-head h2,
  .foundation-head h2,
  .prepoll-insight-content h2,
  .booth-intel-content h2,
  .strategy-framework-content h2,
  .services-shell h2,
  .deliverables-head h2,
  .contact-form-head h2,
  .media-head h2,
  .footer-col h3 {
    text-align: center;
  }

  .services-head,
  .research-approach-head,
  .survey-reveals-head,
  .global-academic-head,
  .foundation-content,
  .contact-form-head,
  .prepoll-insight-content,
  .booth-intel-content,
  .media-head {
    text-align: center;
  }

  .media-head {
    align-items: center;
  }

  .prepoll-insight-section {
    padding-top: 2.8rem;
    padding-bottom: 3rem;
  }

  .prepoll-insight-media img {
    border-radius: 0;
  }

  .prepoll-insight-list {
    grid-template-columns: 1fr;
  }

  .prepoll-insight-list li {
    border-radius: 16px;
    padding: 0.68rem 0.76rem 0.68rem 0.56rem;
  }

  .booth-intel-section {
    padding-top: 2.8rem;
    padding-bottom: 3rem;
  }

  .booth-intel-content h2 {
    font-size: clamp(1.42rem, 7vw, 1.9rem);
  }

  .booth-intel-list li {
    border-radius: 12px;
    padding: 0.72rem 0.8rem 0.72rem 1.86rem;
    min-height: 0;
  }

  .booth-intel-list li::before {
    left: 0.72rem;
  }

  .booth-intel-media img {
    border-radius: 0;
  }

  .strategy-framework-section {
    padding-top: 2.8rem;
    padding-bottom: 3rem;
  }

  .strategy-framework-content h2 {
    font-size: clamp(1.42rem, 7vw, 1.9rem);
  }

  .strategy-framework-media {
    width: 100%;
  }

  .strategy-framework-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .strategy-framework-grid article {
    border-radius: 12px;
    padding: 0.75rem 0.8rem;
  }

  .deliverables-section {
    padding-top: 2.8rem;
    padding-bottom: 3rem;
  }

  .deliverables-head h2 {
    font-size: clamp(1.42rem, 7vw, 1.9rem);
  }

  .deliverables-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .deliverable-item {
    border-radius: 12px;
    padding: 0.72rem 0.78rem;
    min-height: 0;
  }

  .foundation-section {
    padding-top: 2.9rem;
    padding-bottom: 3rem;
  }

  .foundation-link {
    min-height: 44px;
    padding: 0.58rem 1rem;
  }

  .foundation-media img {
    border-radius: 12px;
  }

  .contact-form-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    padding-inline: 14px;
  }

  .contact-form-shell {
    border-radius: 14px;
    padding: 0.85rem;
  }

  .contact-form-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.55rem;
  }

  .media-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    padding-inline: 0;
  }

  .site-footer {
    padding-top: 3.2rem;
    padding-bottom: 1.6rem;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .footer-col.socials {
    justify-self: start;
  }

  .footer-bottom {
    text-align: left;
  }

  .media-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.7rem;
  }

  .media-controls {
    display: none;
  }

  .media-stage {
    border-radius: 0;
    padding: 0;
  }

  .media-intro {
    font-size: 0.95rem;
  }

  .media-track {
    grid-auto-columns: minmax(78vw, 1fr);
    grid-template-rows: 250px;
    gap: 0.7rem;
    padding-inline: 14px;
  }

  .media-tile,
  .media-tile.is-feature,
  .media-tile.is-tall,
  .media-tile.is-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .lightbox-btn {
    width: 46px;
    height: 46px;
  }

  .prepoll-insight-bottom {
    margin-top: 0.85rem;
  }

  .services-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .research-approach-section {
    padding-top: 2.8rem;
    padding-bottom: 3rem;
  }

  .research-approach-item {
    border-radius: 12px;
    min-height: 0;
    padding: 0.68rem 0.74rem;
  }

  .whatdo-section {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
  }

  .whatdo-grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .whatdo-orbit {
    width: min(170px, 50vw);
  }

  .whatdo-icon {
    width: 84px;
    height: 84px;
  }

  .whatdo-icon i {
    font-size: 1.75rem;
  }

  .impact-strip,
  .track-state-stats {
    grid-template-columns: 1fr;
  }

  .track-map-ui {
    border-radius: 14px;
    padding: 0.75rem;
  }

  .state-pin {
    width: 14px;
    height: 14px;
  }

  .track-state-panel {
    padding: 0.85rem;
  }

  .track-slide-controls {
    margin-top: 0.68rem;
  }

  .methodology-section {
    padding-top: 2.8rem;
    padding-bottom: 3rem;
  }

  .methodology-details {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .methodology-media img {
    border-radius: 0;
  }

  .survey-reveals-section {
    padding-top: 2.8rem;
    padding-bottom: 3rem;
  }

  .survey-reveals-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .survey-reveals-item {
    border-radius: 12px;
    min-height: 0;
    padding: 0.68rem 0.74rem;
  }

  .global-academic-section {
    padding-top: 2.8rem;
    padding-bottom: 3rem;
  }

  .global-academic-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .global-academic-item {
    border-radius: 12px;
    min-height: 0;
    padding: 0.8rem 0.78rem;
    gap: 0.7rem;
  }

  .global-academic-icon {
    height: 112px;
  }
}
