/* ============================================================
   SYNTHESIS CAPITAL — style.css v5
   Exact 1:1 design tokens, cursor, hero grid, opportunity parallax & responsive layout
   ============================================================ */

/* ---- FONTS ---- */
@font-face {
  font-family: 'SyntheSans';
  src: url('/fonts/SyntheSans_Slim.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SyntheSans';
  src: url('/fonts/SyntheSans_Neutral.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SyntheSans';
  src: url('/fonts/SyntheSans_Neutral.woff2') format('woff2');
  font-weight: 500 700;
  font-style: normal;
  font-display: swap;
}

/* ---- DESIGN TOKENS ---- */
:root {
  --navy: #120A59;
  --lime: #D2FF51;
  --white: #ffffff;
  --off-white: #f5f5f5;
  --muted: #8884AC;
  --pink: #E90055;
  --yellow: #FFEC44;
  --blue-tile: #A5D7FF;
  --gray-tile: #EBEBEB;
  --pink-tile: #FFC9FD;
  --container-max: 1650px;
  --pad: 40px;
  --header-h: 72px;
}

/* ---- RESET ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: auto;
}
body {
  font-family: 'SyntheSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--navy);
  cursor: none;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a, button, input, textarea, select {
  cursor: none;
}
img, video {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  background: none;
  border: none;
  font-family: inherit;
  color: inherit;
}
ul, ol {
  list-style: none;
}
address {
  font-style: normal;
}

/* ---- LOADER ---- */
.loader {
  position: fixed;
  inset: 0;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-inner {
  animation: loaderPulse 1s ease-in-out infinite alternate;
}
.loader-logo {
  width: 220px;
  height: auto;
}
@keyframes loaderPulse {
  from { opacity: 0.5; transform: scale(0.97); }
  to   { opacity: 1;   transform: scale(1);    }
}

/* ---- CUSTOM CURSOR ---- */
#cursor-outer {
  position: fixed;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  z-index: 999999;
  pointer-events: none;
  will-change: transform;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#cursor-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease;
  transform-origin: center;
}
#cursor-outer.is-hovering #cursor-svg {
  width: 70px;
  height: 70px;
}
#cursor-label {
  position: absolute;
  top: 24px;
  left: 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--navy);
  white-space: nowrap;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
#cursor-outer.has-label #cursor-label {
  opacity: 1;
}

/* ---- HEADER ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--pad);
  height: var(--header-h);
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}
.header.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(18,10,89,0.08);
}
.header-logo svg {
  display: block;
}
.menu-button {
  display: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 0;
}
.header-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.header-nav a {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--navy);
  opacity: 0.75;
  transition: opacity 0.2s;
  position: relative;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.header-nav a:hover {
  opacity: 1;
}
.header-nav a:hover::after {
  transform: scaleX(1);
}

/* ---- SHARED TYPOGRAPHY & BUTTONS ---- */
.label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.label-light {
  color: rgba(255,255,255,0.6);
}

.btn-text-arrow {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}
.btn-text-arrow:hover {
  opacity: 0.65;
}

.btn-octa {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}
.btn-octa:hover {
  opacity: 0.7;
}
.btn-octa-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 39px;
  flex-shrink: 0;
}
.btn-octa-icon svg {
  width: 39px;
  height: 39px;
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- HERO SECTION ---- */
.hero-section {
  min-height: 2500px;
  padding-top: var(--header-h);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 150px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--pad);
  min-height: 2500px;
  position: relative;
}

/* Hero Col 1 */
.hero-main {
  position: relative;
}
.hero-sticky {
  position: sticky;
  top: calc(var(--header-h) + 40px);
  height: calc(100vh - var(--header-h) - 80px);
  display: flex;
  flex-direction: column;
}
.hero-h1 {
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  color: var(--navy);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.hero-sticky .btn-text-arrow {
  font-size: 16px;
  margin-bottom: auto;
}
.hero-copy {
  font-size: 15px;
  line-height: 1.6;
  color: var(--navy);
  opacity: 0.7;
  max-width: 400px;
  margin-top: auto;
  padding-bottom: 40px;
}

/* Hero Col 2 (Portfolio Cards Column) */
.hero-portfolio-list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  padding: 40px 0 100px;
}
.portfolio-card {
  display: block;
  width: 189px;
  height: 252px;
  flex-shrink: 0;
  will-change: transform;
  transition: opacity 0.3s;
}
.portfolio-card:hover {
  opacity: 0.9;
}
.portfolio-img-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 5px;
}
.portfolio-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.portfolio-card:hover .portfolio-img-wrap img {
  transform: scale(1.04);
}

/* Hero Col 3 (Company Names Strip) */
.hero-company {
  width: 150px;
  position: sticky;
  top: calc(var(--header-h) + 40px);
  height: fit-content;
  padding-top: 40px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}
.company-name {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
  opacity: 0;
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.company-name.active {
  opacity: 0.5;
}

/* ---- MARQUEE TICKER ---- */
.marquee-section {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--navy);
  border-bottom: 1px solid var(--navy);
  padding: 14px 0;
}
.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marqueeScroll 40s linear infinite;
}
.marquee-track span {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0 40px;
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- OPPORTUNITY SECTION ---- */
.opportunity-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 100px var(--pad);
  max-width: var(--container-max);
  margin: 0 auto;
  gap: 60px;
  align-items: start;
}
.opportunity-left h2 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 32px;
  max-width: 480px;
}
.opportunity-left .btn-octa {
  margin-bottom: 48px;
}
.opportunity-bullet {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 40px;
}
.bullet-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  margin-top: 7px;
  border: 1px solid var(--navy);
}
.opportunity-bullet p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--navy);
  opacity: 0.7;
  max-width: 340px;
}
.opportunity-right {
  display: flex;
  justify-content: center;
}
.opportunity-visual-wrap {
  display: block;
  width: 100%;
  max-width: 500px;
}
.opp-oval {
  border: 1px solid var(--navy);
  border-radius: 100%;
  width: 100%;
  max-width: 471px;
  height: 570px;
  opacity: 0.85;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}
.opp-photo {
  position: absolute;
  width: 236px;
  height: 314px;
  border-radius: 5px;
  overflow: hidden;
  will-change: transform;
  transition: transform 0.2s ease-out;
}
.opp-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.opp-photo-back {
  top: 10%;
  left: 10%;
}
.opp-photo-front {
  top: 35%;
  left: 45%;
}
.opportunity-visual-wrap:hover .opp-photo img {
  transform: scale(1.04);
}
.opportunity-below-oval {
  padding: 32px 16px 0;
}
.opportunity-below-oval p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--navy);
  opacity: 0.7;
  margin-bottom: 20px;
  max-width: 400px;
}

/* ---- FEATURE SECTION ---- */
.feature-section {
  padding: 0 var(--pad);
  overflow: hidden;
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 80px;
}
.feature-left {
  padding: 80px 60px 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.feature-left p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--navy);
  opacity: 0.8;
  max-width: 360px;
}
.feature-right {
  background: var(--off-white);
  overflow: hidden;
  border-radius: 8px;
}
.feature-header {
  padding: 40px 40px 0;
}
.feature-company-list {
  margin-top: 20px;
}
.feature-company-list li {
  border-top: 1px solid rgba(18,10,89,0.12);
  position: relative;
}
.feature-company-list li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  border: 1px solid var(--navy);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-company-list li.active::before {
  opacity: 1;
}
.feature-company-btn {
  width: 100%;
  text-align: left;
  padding: 14px 0 14px 20px;
  font-size: 15px;
  font-weight: 400;
  color: var(--navy);
  opacity: 0.45;
  transition: opacity 0.25s;
}
.feature-company-list li.active .feature-company-btn {
  opacity: 1;
  font-weight: 600;
}
.feature-company-btn:hover {
  opacity: 0.85;
}
.feature-slides-wrap {
  position: relative;
  height: 480px;
  margin-top: 24px;
}
.feature-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  pointer-events: none;
}
.feature-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.feature-slide-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.feature-slide-media {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.feature-slide-media img,
.feature-slide-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-slide-svg {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 120px;
  height: auto;
  z-index: 2;
}
.feature-slide-svg img {
  width: 100%;
  height: auto;
}
.feature-slide-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(18,10,89,0.6);
  padding: 6px 12px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  z-index: 2;
  max-width: 280px;
  line-height: 1.4;
}

/* ---- TEAM SECTION ---- */
.team-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 80px var(--pad);
  max-width: var(--container-max);
  margin: 0 auto;
  gap: 60px;
  align-items: center;
}
.team-left h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy);
  max-width: 440px;
}
.team-right {
  display: flex;
  justify-content: flex-end;
}
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
  max-width: 520px;
}
.team-member {
  width: 146px;
  height: 146px;
  display: grid;
  place-items: center;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  overflow: hidden;
  transition: transform 0.35s ease, filter 0.35s ease;
}
.team-member:hover {
  transform: scale(1.06);
  filter: brightness(1.05);
}
.team-member img {
  width: 117px;
  height: 122px;
  object-fit: cover;
  display: block;
}

/* ---- QUOTE SECTION ---- */
.quote-section {
  padding: 100px var(--pad);
  max-width: var(--container-max);
  margin: 0 auto;
}
.quote-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  max-width: 900px;
}
.quote-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.quote-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.quote-content blockquote {
  font-size: 32px;
  line-height: 1.3;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.quote-attribution {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---- FOCUS SECTION ---- */
.focus-section {
  padding: 0 var(--pad) 100px;
  max-width: var(--container-max);
  margin: 0 auto;
}
.focus-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: start;
}
.focus-header-left h4 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 32px;
  max-width: 480px;
}
.focus-header-left .label {
  margin-bottom: 16px;
}
.stats-tiles {
  display: flex;
  gap: 15px;
}
.stat-tile {
  flex: 1;
  border-radius: 8px;
  padding: 32px 28px;
  height: 508px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.stat-tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(18,10,89,0.08);
}
.stat-tile-blue { background: var(--blue-tile); }
.stat-tile-gray { background: var(--gray-tile); }
.stat-tile-pink { background: var(--pink-tile); }
.stat-tile h4 {
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-tile-icon {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}
.stat-tile:hover .stat-tile-icon {
  transform: scale(1.08) rotate(3deg);
}
.stat-tile-icon svg {
  width: 100px;
  height: 100px;
  opacity: 0.65;
}
.stat-tile p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--navy);
  opacity: 0.75;
}

/* ---- INSIGHTS SECTION ---- */
.insights-section {
  padding: 80px var(--pad) 100px;
  max-width: var(--container-max);
  margin: 0 auto;
}
.insights-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 40px;
}
.insights-header-left h4 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--navy);
  max-width: 460px;
}
.insights-header-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.insight-card {
  display: block;
  text-decoration: none;
  color: var(--navy);
  transition: opacity 0.25s;
}
.insight-card:hover {
  opacity: 0.88;
}
.insight-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
  position: relative;
  margin-bottom: 16px;
}
.insight-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.insight-card:hover .insight-card-img img {
  transform: scale(1.05);
}
.insight-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,0.92);
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  color: var(--navy);
  z-index: 1;
}
.insight-card h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--navy);
  letter-spacing: -0.01em;
}

/* ---- NEWSLETTER SECTION ---- */
.newsletter-section {
  padding: 0 var(--pad);
  margin-bottom: 40px;
}
.newsletter-wrap {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.newsletter-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.newsletter-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 120px 40px;
  width: 100%;
}
.newsletter-content h3 {
  font-size: 40px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 40px;
  max-width: 540px;
}
.newsletter-form {
  width: 100%;
  max-width: 500px;
}
.newsletter-input-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--navy);
  padding-bottom: 8px;
}
.newsletter-input-wrap input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 0;
  font-size: 16px;
  color: var(--navy);
  font-family: inherit;
  outline: none;
}
.newsletter-input-wrap input::placeholder {
  color: rgba(18,10,89,0.5);
}
.newsletter-submit {
  flex-shrink: 0;
  width: 39px;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.newsletter-submit:hover {
  opacity: 0.75;
}
.newsletter-submit svg {
  width: 39px;
  height: 39px;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: var(--pad);
}
.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  align-items: start;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer-logo {
  width: 200px;
  height: auto;
  margin-bottom: 24px;
}
.footer-address-col address {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}
.footer-contact-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-contact-links a:hover {
  color: var(--white);
}
.footer-disclosure p {
  font-size: 11px;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
}
.footer-nav,
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a,
.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-nav a:hover,
.footer-legal a:hover {
  color: var(--white);
}

/* ---- COOKIE BANNER ---- */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: var(--white);
  border: 1px solid rgba(18,10,89,0.15);
  border-radius: 12px;
  padding: 24px 28px;
  z-index: 9000;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  transform: translateY(0);
  transition: transform 0.4s ease, opacity 0.4s ease;
  max-width: 900px;
  margin: 0 auto;
}
.cookie-banner.hidden {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-text p {
  font-size: 12px;
  line-height: 1.6;
  color: var(--navy);
  opacity: 0.7;
  margin-bottom: 6px;
}
.cookie-text p:last-child {
  margin-bottom: 0;
}
.cookie-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 9px 18px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.cookie-btn-outline {
  border: 1px solid var(--navy);
  background: transparent;
  color: var(--navy);
}
.cookie-btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.cookie-btn-accent {
  background: var(--lime);
  color: var(--navy);
  border: 1px solid var(--lime);
}
.cookie-btn-accent:hover {
  background: var(--navy);
  color: var(--lime);
  border-color: var(--navy);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1200px) {
  .hero-h1 {
    font-size: 60px;
  }
  .portfolio-card {
    width: 160px;
    height: 210px;
  }
  .footer-top {
    grid-template-columns: 2fr 1fr 2fr 1fr;
  }
  .footer-legal {
    display: none;
  }
}

@media (max-width: 900px) {
  :root {
    --pad: 24px;
  }
  body, a, button, input, textarea, select {
    cursor: auto;
  }
  #cursor-outer {
    display: none !important;
  }

  .menu-button {
    display: block;
  }
  .header-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px var(--pad);
    gap: 20px;
    border-top: 1px solid rgba(18,10,89,0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-110%);
    transition: transform 0.35s ease;
    z-index: 999;
  }
  .header-nav.open {
    transform: translateY(0);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-section {
    min-height: auto;
  }
  .hero-company {
    display: none;
  }
  .hero-sticky {
    position: relative;
    top: auto;
    height: auto;
    padding-top: 40px;
    padding-bottom: 20px;
  }
  .hero-h1 {
    font-size: 44px;
    margin-bottom: 20px;
  }
  .hero-copy {
    padding-bottom: 0;
    margin-top: 24px;
  }
  .hero-portfolio-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    padding: 20px 0 60px;
  }
  .portfolio-card {
    width: 130px;
    height: 173px;
  }

  .opportunity-section {
    grid-template-columns: 1fr;
    padding: 60px var(--pad);
  }
  .opportunity-left h2 {
    font-size: 32px;
  }
  .opp-oval {
    height: 380px;
    max-width: 320px;
  }
  .opp-photo {
    width: 150px;
    height: 200px;
  }

  .feature-section {
    grid-template-columns: 1fr;
  }
  .feature-left {
    padding: 60px 0 0;
  }
  .feature-slides-wrap {
    height: 300px;
  }

  .team-section {
    grid-template-columns: 1fr;
    padding: 60px var(--pad);
  }
  .team-list {
    justify-content: center;
  }
  .team-member {
    width: 110px;
    height: 110px;
  }
  .team-member img {
    width: 90px;
    height: 94px;
  }

  .quote-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .quote-content blockquote {
    font-size: 22px;
  }

  .focus-header {
    grid-template-columns: 1fr;
  }
  .stats-tiles {
    flex-direction: column;
  }
  .stat-tile {
    height: auto;
    padding: 28px 24px;
    min-height: 220px;
  }
  .stat-tile-icon {
    padding: 20px 0;
  }

  .insights-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .insights-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-content h3 {
    font-size: 28px;
  }
  .newsletter-wrap {
    min-height: 360px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-disclosure {
    grid-column: 1 / -1;
  }
  .footer-logo {
    width: 160px;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cookie-buttons {
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .hero-h1 {
    font-size: 36px;
  }
  .portfolio-card {
    width: 110px;
    height: 147px;
  }
  .quote-content blockquote {
    font-size: 18px;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .newsletter-section {
    padding: 0;
  }
  .newsletter-wrap {
    border-radius: 0;
  }
}
