/* ============================================================
   Oxon Capital — global styles
   Palette:
     #0B1930  Prussian Blue (deep)
     #0C192B  Prussian Blue (alt)
     #162859  Space Indigo
     #FFFFFF  White
     #F5F6F8  Platinum
============================================================ */

:root {
  --c-ink: #0B1930;
  --c-ink-2: #0C192B;
  --c-indigo: #162859;
  --c-white: #FFFFFF;
  --c-platinum: #F5F6F8;
  --c-line: rgba(11, 25, 48, 0.10);
  --c-line-strong: rgba(11, 25, 48, 0.18);
  --c-line-light: rgba(255, 255, 255, 0.10);
  --c-line-light-strong: rgba(255, 255, 255, 0.20);
  --c-muted: rgba(11, 25, 48, 0.60);
  --c-muted-dark: rgba(255, 255, 255, 0.65);
  --c-accent: #4A6CF7;

  --radius-sm: 6px;
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(11, 25, 48, 0.06);
  --shadow: 0 12px 32px rgba(11, 25, 48, 0.08);
  --shadow-lg: 0 30px 80px rgba(11, 25, 48, 0.18);

  --font: 'DM Sans', system-ui, -apple-system, Segoe UI, sans-serif;

  --max: 1240px;
  --pad: clamp(28px, 4.5vw, 56px);

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  color: var(--c-ink);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  font-size: 16px;
}

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

a { color: inherit; text-decoration: none; transition: color .2s var(--ease), opacity .2s var(--ease); }

button { font-family: inherit; cursor: pointer; }

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

/* ===== Typography ===== */

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  padding: 6px 12px;
  border: 1px solid var(--c-line-light-strong);
  border-radius: 999px;
  margin-bottom: 24px;
}
.eyebrow--dark {
  color: var(--c-muted);
  border-color: var(--c-line-strong);
}

.section-title {
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 500;
  margin: 0 0 24px;
  color: var(--c-ink);
  max-width: 22ch;
}
.section-title--light { color: var(--c-white); }

/* ===== Buttons ===== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
  user-select: none;
}
.btn--sm { height: 38px; padding: 0 16px; font-size: 13.5px; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--c-white);
  color: var(--c-ink);
  border-color: var(--c-white);
}
.btn--primary:hover { transform: translateY(-1px); background: #EDEFF3; border-color: #EDEFF3; }

.btn--secondary {
  background: transparent;
  color: var(--c-ink);
  border-color: var(--c-line-strong);
}
.btn--secondary:hover { border-color: var(--c-ink); }

.btn--secondary-on-dark {
  color: var(--c-white);
  border-color: var(--c-line-light-strong);
}
.btn--secondary-on-dark:hover { border-color: var(--c-white); background: rgba(255,255,255,0.04); }

.btn--ghost {
  background: rgba(255,255,255,0.06);
  color: var(--c-white);
  border-color: var(--c-line-light-strong);
}
.btn--ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--c-white); }

/* When .btn--primary is placed on a light background section, invert it */
.who .btn--primary,
.consultation .btn--primary,
.contact .btn--primary {
  background: var(--c-ink);
  color: var(--c-white);
  border-color: var(--c-ink);
}
.who .btn--primary:hover,
.consultation .btn--primary:hover,
.contact .btn--primary:hover {
  background: var(--c-indigo);
  border-color: var(--c-indigo);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.cta-row--center { justify-content: center; }

/* ===== Nav ===== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  color: var(--c-white);
  transition: background .25s var(--ease), border-color .25s var(--ease), backdrop-filter .25s var(--ease);
}
.nav.is-scrolled {
  background: rgba(11, 25, 48, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--c-line-light);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 70px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--c-white);
}
.brand--light { color: var(--c-white); }
.brand__logo {
  display: block;
  height: 28px;
  width: auto;
}
.brand__logo--footer { height: 26px; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  justify-content: flex-end;
}
.nav__links {
  display: flex;
  gap: 28px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.78);
}
.nav__links a:hover { color: var(--c-white); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__portal i { font-size: 11px; opacity: 0.85; }

.nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  color: var(--c-white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

@media (max-width: 880px) {
  .nav__toggle { display: inline-flex; }
  .nav__menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(11, 25, 48, 0.97);
    -webkit-backdrop-filter: saturate(140%) blur(14px);
    backdrop-filter: saturate(140%) blur(14px);
    border-bottom: 1px solid var(--c-line-light);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 16px 24px 24px;
    display: none;
  }
  .nav.is-menu-open .nav__menu { display: flex; }
  .nav__links {
    flex-direction: column;
    gap: 0;
    font-size: 16px;
    color: rgba(255,255,255,0.92);
  }
  .nav__links a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav__links a:last-child { border-bottom: none; }
  .nav__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding-top: 12px;
  }
  .nav__actions .btn { width: 100%; justify-content: center; }
  .nav.is-menu-open .nav__toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.is-menu-open .nav__toggle-bar:nth-child(2) { opacity: 0; }
  .nav.is-menu-open .nav__toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ===== Hero ===== */

.hero {
  position: relative;
  background: var(--c-ink);
  color: var(--c-white);
  overflow: hidden;
  padding: calc(70px + clamp(80px, 11vw, 160px)) 0 clamp(80px, 10vw, 140px);
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.75;
  filter: saturate(0.9) contrast(1.05);
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 25, 48, 0.08) 0%, rgba(11, 25, 48, 0.28) 60%, var(--c-ink) 100%),
    linear-gradient(90deg, rgba(11, 25, 48, 0.12) 0%, transparent 55%, rgba(11, 25, 48, 0.08) 100%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 80% 0%, rgba(74, 108, 247, 0.18), transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 100%, rgba(22, 40, 89, 0.55), transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.hero__inner { position: relative; z-index: 2; }

.hero__inner { position: relative; z-index: 1; }

.hero__title {
  font-size: clamp(42px, 6.6vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 500;
  margin: 0 0 24px;
  color: var(--c-white);
}
.hero__title br { display: inline; }
@media (max-width: 640px) { .hero__title br { display: none; } }

.hero__body {
  font-size: clamp(16px, 1.5vw, 19px);
  color: rgba(255,255,255,0.75);
  max-width: 56ch;
  margin: 0 0 18px;
  line-height: 1.55;
}
.hero__body--secondary {
  font-size: clamp(15px, 1.3vw, 17px);
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
}

/* Trust feature cards below marquee */
.trust-icons {
  list-style: none;
  margin: clamp(48px, 7vw, 72px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.trust-icons li {
  padding: 36px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--c-line-light-strong);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  min-height: 380px;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.trust-icons li:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.22);
}
.trust-icons h3 {
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 14px;
  color: var(--c-white);
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.trust-icons p {
  margin: 0 0 28px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
  max-width: 42ch;
}

.trust-icons__visual {
  margin-top: auto;
  background: rgba(11, 25, 48, 0.55);
  border: 1px solid var(--c-line-light);
  border-radius: var(--radius);
  padding: 22px;
  min-height: 170px;
  display: flex;
  overflow: hidden;
}

/* Visual: timeline (25+ years) */
.vis-timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  justify-content: center;
}
.vis-timeline__top { display: flex; align-items: baseline; gap: 10px; }
.vis-timeline__num {
  font-size: 38px;
  font-weight: 500;
  color: var(--c-white);
  letter-spacing: -0.02em;
  line-height: 1;
}
.vis-timeline__label { font-size: 13px; color: rgba(255, 255, 255, 0.55); }
.vis-timeline__track { display: flex; flex-direction: column; gap: 7px; }
.vis-timeline__bar {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: #4A6CF7;
}
.vis-timeline__bar--2 { background: #6366F1; opacity: 0.9; }
.vis-timeline__bar--3 { background: #4ADE80; opacity: 0.8; }
.vis-timeline__legend {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
}
.vis-timeline__legend .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}
.dot--1 { background: #4A6CF7; }
.dot--2 { background: #6366F1; }
.dot--3 { background: #4ADE80; }

/* Visual: founded (Est. 2016) */
.vis-founded {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  justify-content: center;
}
.vis-founded__year {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.vis-founded__est {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}
.vis-founded__num {
  font-size: 38px;
  font-weight: 500;
  color: var(--c-white);
  letter-spacing: -0.02em;
  line-height: 1;
}
.vis-founded__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.founded-pill {
  font-size: 11.5px;
  padding: 5px 11px;
  background: rgba(74, 108, 247, 0.12);
  border: 1px solid rgba(74, 108, 247, 0.3);
  border-radius: 999px;
  color: #B7C5FF;
  letter-spacing: -0.005em;
}

/* Visual: bar chart (AI analytics) */
.vis-bars { display: flex; flex-direction: column; gap: 16px; width: 100%; }
.vis-bars__header { display: flex; justify-content: space-between; align-items: baseline; }
.vis-bars__title { font-size: 12.5px; color: rgba(255, 255, 255, 0.55); }
.vis-bars__count {
  font-size: 13px;
  font-weight: 500;
  color: #4ADE80;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.vis-bars__count i { font-size: 11px; }
.vis-bars__chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 96px;
}
.vis-bars__chart span {
  flex: 1;
  border-radius: 5px 5px 2px 2px;
  min-height: 10px;
}

/* Visual: source pills */
.vis-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-content: center;
  width: 100%;
}
.src-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  font-size: 12.5px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: -0.005em;
}
.src-pill i { font-size: 9px; color: rgba(255, 255, 255, 0.45); }

/* Visual: review card */
.vis-review { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.vis-review__doc {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}
.vis-review__doc-title {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
}
.vis-review__lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
}
.vis-review__lines span {
  display: block;
  height: 5px;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 999px;
}
.vis-review__lines span.short { width: 65%; }
.vis-review__stamp {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 14px;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.25);
  border-radius: 8px;
}
.vis-review__stamp i { font-size: 16px; color: #4ADE80; flex-shrink: 0; }
.vis-review__stamp strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-white);
  letter-spacing: -0.005em;
}
.vis-review__stamp small {
  display: block;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 1px;
}

@media (max-width: 880px) {
  .trust-icons { grid-template-columns: 1fr; gap: 16px; }
  .trust-icons li { min-height: 0; padding: 28px; }
}
@media (max-width: 560px) {
  .trust-icons li { padding: 24px; }
  .trust-icons__visual { padding: 18px; min-height: 150px; }
  .vis-timeline__num { font-size: 32px; }
}

/* ===== Clients marquee ===== */

.clients {
  background: var(--c-ink);
  color: rgba(255,255,255,0.7);
  padding: 36px 0 56px;
  border-bottom: 1px solid var(--c-line-light);
}
.clients__label {
  text-align: center;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 0 0 24px;
}
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  animation: scroll 38s linear infinite;
  font-size: 17px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.marquee__track .dot {
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.35);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Who we are ===== */

.who {
  background: var(--c-white);
  padding: clamp(56px, 7vw, 96px) 0;
}
.who__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: start;
}
.who__head { position: sticky; top: 100px; }
.who__body p {
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 18px;
  color: rgba(11, 25, 48, 0.78);
}
.about__photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 2;
  max-height: 320px;
  border: 1px solid var(--c-line);
  background: var(--c-platinum);
}
@media (max-width: 880px) {
  .about__photo { aspect-ratio: 16 / 10; margin-top: 24px; max-height: none; }
}
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--c-line);
}
.stats > div { display: flex; flex-direction: column; gap: 6px; }
.stats strong {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  line-height: 1;
}
.stats span {
  font-size: 13px;
  color: var(--c-muted);
  line-height: 1.4;
}

@media (max-width: 880px) {
  .who__inner { grid-template-columns: 1fr; }
  .who__head { position: static; }
  .stats { grid-template-columns: 1fr; gap: 24px; }
}

/* ===== About (single combined section) ===== */

.about {
  background: var(--c-white);
  padding: clamp(56px, 7vw, 96px) 0;
}

/* Intro: title block + 2-col body */
.about__intro-top {
  max-width: 920px;
  margin: 0 0 clamp(40px, 5vw, 70px);
}
.about__intro-top .section-title {
  max-width: 22ch;
  margin-bottom: 22px;
}
.about__tagline {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  color: var(--c-indigo);
  letter-spacing: -0.01em;
  line-height: 1.45;
  margin: 0;
  max-width: 36ch;
  padding-left: 20px;
  border-left: 3px solid var(--c-indigo);
}

.about__cols {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: start;
}
.about__cols--media-left {
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
}
@media (max-width: 880px) {
  .about__cols--media-left { grid-template-columns: 1fr; }
  .about__col--media { order: -1; }
}
.about__col p {
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 18px;
  color: rgba(11, 25, 48, 0.78);
}
.about__col .stats {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--c-line);
}

/* Expertise accordion */
.about__exp {
  margin-top: clamp(72px, 9vw, 120px);
  padding-top: clamp(56px, 7vw, 88px);
  border-top: 1px solid var(--c-line);
}
.about__exp-head {
  margin-bottom: 32px;
  max-width: 760px;
}
.about__exp-title {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0;
  line-height: 1.2;
  color: var(--c-ink);
  max-width: 26ch;
}

/* Accordion */
.acc {
  border-top: 1px solid var(--c-line-strong);
}
.acc__item {
  border-bottom: 1px solid var(--c-line-strong);
  transition: background .25s var(--ease);
}
.acc__item:hover { background: rgba(245, 246, 248, 0.5); }
.acc__item.is-open { background: var(--c-platinum); }

.acc__toggle {
  width: 100%;
  display: grid;
  grid-template-columns: 44px 1fr 32px;
  align-items: center;
  gap: 18px;
  padding: 22px 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  color: var(--c-ink);
  transition: padding .25s var(--ease);
}
.acc__item:hover .acc__toggle { padding-left: 14px; }
.acc__item.is-open .acc__toggle { padding-left: 14px; }

.acc__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(22, 40, 89, 0.10), rgba(74, 108, 247, 0.05));
  color: var(--c-indigo);
  font-size: 17px;
  flex-shrink: 0;
}
.acc__item.is-open .acc__icon {
  background: linear-gradient(135deg, rgba(22, 40, 89, 0.16), rgba(74, 108, 247, 0.10));
}

.acc__title {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.acc__chev {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--c-line-strong);
  color: var(--c-muted);
  font-size: 11px;
  transition: transform .35s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.acc__item.is-open .acc__chev {
  transform: rotate(45deg);
  background: var(--c-ink);
  color: var(--c-white);
  border-color: var(--c-ink);
}

.acc__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s var(--ease);
}
.acc__panel > p {
  overflow: hidden;
  margin: 0;
  font-size: 15px;
  color: rgba(11, 25, 48, 0.7);
  line-height: 1.55;
  max-width: 70ch;
}
.acc__item.is-open .acc__panel {
  grid-template-rows: 1fr;
}
.acc__item.is-open .acc__panel > p {
  padding: 4px 6px 24px calc(44px + 18px + 14px);
}

@media (max-width: 880px) {
  .about__cols { grid-template-columns: 1fr; }
  .acc__toggle { grid-template-columns: 36px 1fr 28px; gap: 14px; padding: 18px 6px; }
  .acc__icon { width: 36px; height: 36px; font-size: 14px; }
  .acc__title { font-size: 15px; }
  .acc__chev { width: 28px; height: 28px; font-size: 10px; }
  .acc__item.is-open .acc__panel > p { padding-left: 14px; }
}

/* ===== Expertise option label (shared) ===== */
.exp-opt-label {
  margin: clamp(48px, 6vw, 72px) 0 24px;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 500;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--c-line-strong);
}
.exp-opt-label:first-of-type { margin-top: 0; }

/* ===== Option A: Bento grid ===== */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.bento__cell {
  padding: 28px;
  background: var(--c-platinum);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.bento__cell:hover {
  transform: translateY(-3px);
  border-color: rgba(11, 25, 48, 0.18);
  box-shadow: 0 14px 36px rgba(11, 25, 48, 0.08);
}
.bento__cell--wide { grid-column: span 2; }
.bento__cell--full { grid-column: span 4; }
.bento__cell--accent {
  background: linear-gradient(135deg, rgba(74, 108, 247, 0.10), rgba(22, 40, 89, 0.04));
  border-color: rgba(74, 108, 247, 0.22);
}
.bento__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-white);
  color: var(--c-indigo);
  font-size: 16px;
  margin-bottom: 18px;
  border: 1px solid var(--c-line);
}
.bento__title {
  font-size: 17px;
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--c-ink);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.bento__desc {
  margin: 0;
  font-size: 13.5px;
  color: rgba(11, 25, 48, 0.65);
  line-height: 1.5;
  max-width: 60ch;
}
.bento__cell--accent .bento__icon { background: var(--c-white); }

@media (max-width: 980px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__cell--wide, .bento__cell--full { grid-column: span 2; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  .bento__cell--wide, .bento__cell--full { grid-column: span 1; }
}

/* ===== Option B: Sticky layered cards ===== */
.exp-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.exp-stack__card {
  position: sticky;
  top: 100px;
  background: var(--c-platinum);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 4.5vw, 56px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  box-shadow: 0 -16px 40px rgba(11, 25, 48, 0.05);
}
.exp-stack__icon {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(22, 40, 89, 0.10), rgba(74, 108, 247, 0.06));
  color: var(--c-indigo);
  font-size: 30px;
  flex-shrink: 0;
}
.exp-stack__num {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 500;
  margin-bottom: 12px;
}
.exp-stack__content h4 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
  color: var(--c-ink);
  line-height: 1.2;
  max-width: 24ch;
}
.exp-stack__content p {
  margin: 0;
  font-size: 15.5px;
  color: rgba(11, 25, 48, 0.7);
  line-height: 1.6;
  max-width: 60ch;
}

@media (max-width: 720px) {
  .exp-stack__card { grid-template-columns: 1fr; position: relative !important; top: 0 !important; }
  .exp-stack__icon { width: 56px; height: 56px; font-size: 22px; }
}

/* ===== Option C: Side-list with detail panel ===== */
.exp-side {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(32px, 4vw, 60px);
  align-items: start;
}
.exp-side__list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: sticky;
  top: 100px;
}
.exp-side__list li { margin-bottom: 6px; }
.exp-side__list li:last-child { margin-bottom: 0; }
.exp-side__item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: 12px;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--c-ink);
  text-align: left;
  cursor: pointer;
  letter-spacing: -0.005em;
  transition: background .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}
.exp-side__item:hover {
  border-color: rgba(11, 25, 48, 0.22);
  box-shadow: 0 6px 16px rgba(11, 25, 48, 0.06);
  transform: translateX(2px);
}
.exp-side__item.is-active {
  background: var(--c-ink);
  border-color: var(--c-ink);
  color: var(--c-white);
  box-shadow: 0 10px 24px rgba(11, 25, 48, 0.18);
}
.exp-side__label { flex: 1; }
.exp-side__arrow {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 25, 48, 0.04);
  color: var(--c-muted);
  font-size: 10px;
  flex-shrink: 0;
  transition: background .2s var(--ease), color .2s var(--ease), transform .25s var(--ease);
}
.exp-side__item:hover .exp-side__arrow {
  background: rgba(11, 25, 48, 0.08);
  color: var(--c-ink);
  transform: translateX(2px);
}
.exp-side__item.is-active .exp-side__arrow {
  background: rgba(255, 255, 255, 0.15);
  color: var(--c-white);
}
.exp-side__icon-sm {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(22, 40, 89, 0.06);
  color: var(--c-indigo);
  font-size: 12px;
  flex-shrink: 0;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.exp-side__item.is-active .exp-side__icon-sm {
  background: rgba(255, 255, 255, 0.18);
  color: var(--c-white);
}

.exp-side__panels {
  position: relative;
}
.exp-side__panel {
  background: var(--c-platinum);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 48px);
  animation: expSideFade .35s var(--ease);
}
.exp-side__panel[hidden] { display: none; }
.exp-side__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(22, 40, 89, 0.10), rgba(74, 108, 247, 0.06));
  color: var(--c-indigo);
  font-size: 22px;
  margin-bottom: 22px;
}
.exp-side__panel h4 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
  color: var(--c-ink);
  line-height: 1.2;
  max-width: 22ch;
}
.exp-side__panel p {
  margin: 0;
  font-size: 16px;
  color: rgba(11, 25, 48, 0.72);
  line-height: 1.6;
  max-width: 56ch;
}
@keyframes expSideFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 880px) {
  .exp-side { grid-template-columns: 1fr; }
  .exp-side__list { position: static; }
  .exp-side__panels { display: none; }
}

/* ===== Expertise modal ===== */

.exp-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}
.exp-modal.is-open { display: block; }
.exp-modal__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 25, 48, 0.78);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
.exp-modal__dialog {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--c-platinum);
  border-radius: 20px;
  padding: 32px 24px;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}
.exp-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(11, 25, 48, 0.08);
  border: 0;
  color: var(--c-ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  padding: 0;
  z-index: 1;
}
.exp-modal__content { padding: 8px 4px 0; }
.exp-modal__content .exp-side__icon { margin-bottom: 18px; }
.exp-modal__content h4 {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 12px;
  color: var(--c-ink);
}
.exp-modal__content p {
  margin: 0;
  color: rgba(11, 25, 48, 0.74);
  line-height: 1.55;
  font-size: 15.5px;
}
body.exp-modal-open { overflow: hidden; }
@media (min-width: 881px) {
  /* Desktop never shows the modal even if forced */
  .exp-modal.is-open { display: none; }
}

/* ===== Old About 3-act styles (unused, kept for backward compat) ===== */

.about {
  background: var(--c-white);
  padding: clamp(56px, 7vw, 96px) 0;
}
.about__act + .about__act {
  margin-top: clamp(60px, 8vw, 110px);
  padding-top: clamp(60px, 8vw, 110px);
  border-top: 1px solid var(--c-line);
}
.about__act--what {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.about__act--what .eyebrow { margin-bottom: 18px; }
.about__act--what .about__act-title {
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 auto 24px;
  line-height: 1.2;
  color: var(--c-ink);
  max-width: 26ch;
}
.about__act--what p {
  font-size: 17px;
  color: rgba(11, 25, 48, 0.72);
  line-height: 1.6;
  margin: 0 auto 14px;
  max-width: 64ch;
}
.about__act--what p:last-child { margin-bottom: 0; }

.about__act--areas .areas-head {
  margin-bottom: 32px;
  max-width: 760px;
}
.about__act--areas .about__act-title {
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0;
  line-height: 1.2;
  color: var(--c-ink);
  max-width: 24ch;
}

/* ===== Option label (shared) ===== */
.who-opt-label {
  margin: 0 0 28px;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 500;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--c-line-strong);
}

/* ===== Option 4: Magazine spread ===== */
.who--mag { padding: clamp(80px, 10vw, 140px) 0 clamp(40px, 5vw, 70px); }
.mag {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.mag__main p {
  font-size: 17px;
  color: rgba(11, 25, 48, 0.78);
  line-height: 1.6;
  margin: 0 0 16px;
}
.mag__main .section-title { max-width: 18ch; }
.mag__body { margin-top: 20px; margin-bottom: 32px; }

.mag__aside {
  position: sticky;
  top: 100px;
  padding: 32px;
  background: var(--c-platinum);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 36px rgba(11, 25, 48, 0.06);
}
.mag__aside .eyebrow { margin-bottom: 16px; }
.mag__aside-title {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
  line-height: 1.25;
  color: var(--c-ink);
  max-width: 22ch;
}
.mag__aside p {
  font-size: 15px;
  color: rgba(11, 25, 48, 0.72);
  line-height: 1.55;
  margin: 0 0 12px;
}
.mag__aside p:last-child { margin-bottom: 0; }

@media (max-width: 980px) {
  .mag { grid-template-columns: 1fr; }
  .mag__aside { position: static; }
}

/* ===== Option 5: Split background ===== */
.who-split-label-wrap {
  padding-top: clamp(40px, 5vw, 70px);
  background: var(--c-white);
}
.who-split {
  padding: 0;
  position: relative;
}
.who-split__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--c-white) 0%, var(--c-white) 50%, var(--c-platinum) 50%, var(--c-platinum) 100%);
  z-index: 0;
  pointer-events: none;
}
.who-split__bg::after {
  content: "";
  position: absolute;
  top: 8%;
  bottom: 8%;
  left: 50%;
  width: 1px;
  background: var(--c-line-strong);
  transform: translateX(-50%);
}
.who-split__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  padding-top: clamp(60px, 7vw, 90px);
  padding-bottom: clamp(60px, 7vw, 90px);
}
.who-split__col p {
  font-size: 16.5px;
  color: rgba(11, 25, 48, 0.75);
  line-height: 1.6;
  margin: 0 0 16px;
}
.who-split__col--left .section-title { max-width: 18ch; margin-bottom: 22px; }
.who-split__col--right { padding-top: 4px; }
.who-split__title {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 22px;
  line-height: 1.2;
  color: var(--c-ink);
  max-width: 22ch;
}

@media (max-width: 880px) {
  .who-split__bg { background: var(--c-white); }
  .who-split__bg::after { display: none; }
  .who-split__inner { grid-template-columns: 1fr; }
}

/* ===== Products ===== */

.products {
  background: var(--c-ink);
  color: var(--c-white);
  padding: clamp(56px, 7vw, 96px) 0;
  position: relative;
  overflow: clip;
}
.products::before {
  content: "";
  position: absolute;
  inset: -200px -200px auto auto;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(74,108,247,0.18), transparent 60%);
  pointer-events: none;
}

.products__head { margin-bottom: 56px; max-width: 780px; }
.products__head .section-title { max-width: 18ch; }
.products__body {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 28px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1080px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .product-grid { grid-template-columns: 1fr; } }

.card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--c-line-light-strong);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
  overflow: hidden;
}

.card__image {
  margin: -28px -28px 24px;
  height: 180px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--c-indigo) 0%, rgba(11, 25, 48, 0.85) 100%),
    radial-gradient(circle at 70% 30%, rgba(74, 108, 247, 0.25), transparent 60%);
  border-bottom: 1px solid var(--c-line-light);
}
.card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11, 25, 48, 0.55) 100%);
  pointer-events: none;
}
.card:hover .card__image img { transform: scale(1.04); }
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(74,108,247,0.12), transparent 60%);
  opacity: 0;
  transition: opacity .3s var(--ease);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.28);
}
.card:hover::after { opacity: 1; }

.card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.card__tag {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  padding: 5px 10px;
  border: 1px solid var(--c-line-light-strong);
  border-radius: 999px;
}
.card__live {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.04em;
}
.pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5); }
  70% { box-shadow: 0 0 0 9px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.card__title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
  color: var(--c-white);
}
.card__lede {
  font-size: 15.5px;
  color: rgba(255,255,255,0.85);
  margin: 0 0 14px;
  line-height: 1.5;
}
.card__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin: 0 0 16px;
  line-height: 1.55;
}
.card__best {
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  margin: 0 0 22px;
  padding-top: 16px;
  border-top: 1px solid var(--c-line-light);
  line-height: 1.5;
}
.card__best strong { color: var(--c-white); font-weight: 500; }

.card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-white);
  align-self: flex-start;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--c-line-light-strong);
}
.card__cta svg { transition: transform .25s var(--ease); }
.card__cta:hover { border-color: var(--c-white); }
.card__cta:hover svg { transform: translateX(3px); }

.card--custom {
  background: linear-gradient(180deg, rgba(74,108,247,0.10), rgba(74,108,247,0.02));
  border-color: rgba(74,108,247,0.35);
}

/* ===== Product stack (sticky scroll-stacking rows) ===== */

.product-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 16px;
}

.product-row {
  position: sticky;
  top: 92px;
  background: #131F3A;
  border: 1px solid var(--c-line-light-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 -16px 40px rgba(0, 0, 0, 0.35);
  transition: border-color .3s var(--ease);
  min-height: 480px;
}
@media (min-width: 721px) {
  .product-stack { gap: 36px; }
}
.product-row:hover { border-color: rgba(255, 255, 255, 0.22); }

.product-row__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding: clamp(36px, 4.5vw, 56px);
}

/* All cards stick at the same top so each new card fully covers the previous */
.product-stack .product-row { top: 92px; }

.product-row__text {
  display: flex;
  flex-direction: column;
}
.product-row__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.product-row__title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--c-white);
  line-height: 1.1;
}
.product-row__lede {
  font-size: clamp(16px, 1.4vw, 18px);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
  margin: 0 0 16px;
  max-width: 46ch;
}
.product-row__desc {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
  margin: 0 0 20px;
  max-width: 50ch;
}
.product-row__best {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 28px;
  padding-top: 18px;
  border-top: 1px solid var(--c-line-light);
  line-height: 1.55;
  max-width: 52ch;
}
.product-row__best strong { color: var(--c-white); font-weight: 500; }

.product-row__text .btn--primary { align-self: flex-start; }

.product-row__image {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--c-indigo) 0%, rgba(11, 25, 48, 0.9) 100%);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.product-row__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(74, 108, 247, 0.28), transparent 65%);
  pointer-events: none;
  z-index: 1;
}
.product-row__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.product-row__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11, 25, 48, 0.45) 100%);
  pointer-events: none;
}
.product-row:hover .product-row__image img { transform: scale(1.03); }

.product-row--custom {
  background: linear-gradient(180deg, rgba(74, 108, 247, 0.14), rgba(74, 108, 247, 0.03)), rgba(20, 32, 58, 0.96);
  border-color: rgba(74, 108, 247, 0.35);
}

@media (max-width: 960px) {
  .product-row__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .product-row__image {
    order: -1;
    aspect-ratio: 16 / 9;
  }
}
@media (max-width: 720px) {
  /* Let the carousel bleed past the section's overflow clip */
  .products { overflow: visible; overflow-x: clip; }

  .product-stack {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 18px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 4px 32px 24px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }
  .product-stack::-webkit-scrollbar { display: none; }
  .product-stack .product-row {
    flex: 0 0 78%;
    max-width: 300px;
    scroll-snap-align: center;
    position: relative !important;
    top: 0 !important;
  }
  .product-stack .product-row__inner { padding: 24px; gap: 20px; }
  .product-stack .product-row__image { aspect-ratio: 16 / 10; }
}

/* ===== Products page (cards grid) ===== */

.products--page { padding: clamp(96px, 10vw, 144px) 0 clamp(72px, 8vw, 112px); }
.products__head--page { margin-bottom: 64px; max-width: 820px; }
.products__head--page .section-title { max-width: 22ch; }

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

.product-card {
  display: flex;
  flex-direction: column;
  background: rgba(20, 32, 58, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
  box-shadow: 0 1px 2px rgba(11, 25, 48, 0.06);
}
.product-card:hover {
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(11, 25, 48, 0.18);
}
.product-card__image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 300ms ease;
}
.product-card:hover .product-card__image img { transform: scale(1.03); }
.product-card__live {
  position: absolute;
  top: 14px;
  left: 14px;
}
.product-card__body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.product-card__title {
  color: var(--c-white);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}
.product-card__lede {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}
.product-card__best {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13.5px;
  line-height: 1.55;
  margin: 0;
}
.product-card__best strong { color: var(--c-white); font-weight: 500; }

.product-card__desc {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}
.product-card__toggle {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--c-white);
  padding: 7px 14px;
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}
.product-card__toggle:hover { border-color: rgba(255, 255, 255, 0.36); }
.product-card__toggle-icon { font-size: 10px; }
.product-card.is-expanded .product-card__toggle-icon { transform: rotate(180deg); }

.product-row__toggle {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--c-white);
  padding: 8px 16px;
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  margin: 4px 0 22px;
}
.product-row__toggle:hover { border-color: rgba(255, 255, 255, 0.38); }
.product-row__toggle-icon { font-size: 10px; }
.product-row.is-expanded .product-row__toggle-icon { transform: rotate(180deg); }

/* Desktop: show full tracker copy, hide Read more toggle */
@media (min-width: 721px) {
  .product-row__desc[hidden],
  .product-row__best[hidden],
  .product-card__desc[hidden],
  .product-card__best[hidden] {
    display: block;
  }
  .product-row__toggle,
  .product-card__toggle {
    display: none !important;
  }
}
.product-card__actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 6px;
  flex-wrap: wrap;
}

@media (max-width: 1080px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .products-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 18px;
    /* Bleed to the screen edge while keeping first card aligned with container */
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 4px 32px 24px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }
  .products-grid::-webkit-scrollbar { display: none; }
  .products-grid > .product-card {
    flex: 0 0 78%;
    max-width: 300px;
    scroll-snap-align: center;
  }
}

/* ===== Consultation ===== */

.consultation {
  background: var(--c-platinum);
  padding: clamp(56px, 7vw, 96px) 0;
  position: relative;
  overflow: hidden;
}
.consultation::before {
  content: "";
  position: absolute;
  inset: auto -200px -200px auto;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(22, 40, 89, 0.08), transparent 60%);
  pointer-events: none;
}

.consultation__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  position: relative;
  z-index: 1;
}
.consultation__left p {
  font-size: 17px;
  color: rgba(11, 25, 48, 0.72);
  line-height: 1.6;
  margin: 0 0 16px;
  max-width: 46ch;
}
.consultation__left .consult-list p { font-size: 13.5px; margin: 0; }
.consultation__areas {
  margin-top: clamp(32px, 4vw, 48px);
  padding-top: clamp(28px, 3.5vw, 40px);
  border-top: 1px solid var(--c-line-strong);
}

.consultation__areas-title {
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin: 0 0 16px;
  font-weight: 500;
}

/* Pill cluster for consultation areas (wrapped in one card) */
.consult-box {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
}
.consult-box__head {
  padding: 10px 18px 8px;
  background: var(--c-indigo);
  border-bottom: 1px solid var(--c-indigo);
}
.consult-box .consult-box__title {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.005em;
  color: var(--c-white);
  font-weight: 500;
}
.consult-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--c-line);
}
.consult-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  background: var(--c-white);
  border: 1px solid var(--c-line-strong);
  border-radius: 999px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  color: var(--c-ink);
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.consult-pill i {
  font-size: 10px;
  color: var(--c-indigo);
  transition: color .2s var(--ease);
}
.consult-pill:hover {
  border-color: var(--c-ink);
  transform: translateY(-1px);
}
.consult-pill.is-active {
  background: var(--c-ink);
  border-color: var(--c-ink);
  color: var(--c-white);
}
.consult-pill.is-active i { color: var(--c-white); }

.consult-detail {
  font-size: 15px;
  color: rgba(11, 25, 48, 0.72);
  line-height: 1.55;
  margin: 0;
  padding: 14px 18px;
  min-height: auto;
  animation: pillFade .25s var(--ease);
}
@keyframes pillFade {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.consult-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--c-line-strong);
}
.consult-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 6px;
  border-bottom: 1px solid var(--c-line-strong);
  position: relative;
}
.consult-list__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(22, 40, 89, 0.08), rgba(74, 108, 247, 0.06));
  color: var(--c-indigo);
  font-size: 12px;
  flex-shrink: 0;
}
.consult-list__title {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--c-ink);
  letter-spacing: -0.005em;
  line-height: 1.35;
  flex: 1;
  margin: 0;
}
@media (max-width: 880px) {
  .consultation__inner { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .consult-list li { gap: 14px; padding: 18px 8px; }
  .consult-list__icon { width: 36px; height: 36px; font-size: 13px; }
  .consult-list__title { font-size: 14.5px; }
}

/* ===== Process ===== */

.process {
  background: var(--c-ink-2);
  color: var(--c-white);
  padding: clamp(56px, 7vw, 96px) 0;
  border-top: 1px solid var(--c-line-light);
  border-bottom: 1px solid var(--c-line-light);
}
.process__head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.process__head .section-title { max-width: 22ch; margin-left: auto; margin-right: auto; }
.process__body {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin: 0 auto 14px;
  max-width: 60ch;
}

.process__flow {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.stage {
  flex: 1;
  padding: 36px 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--c-line-light-strong);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.stage::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}
.stage:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-6px);
}
.stage:hover::after { opacity: 1; }

.stage__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.stage__num {
  font-size: 11.5px;
  letter-spacing: 0.12em;
  font-weight: 500;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid;
  border-radius: 999px;
}
.stage__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
  font-size: 22px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.stage:hover .stage__icon { transform: scale(1.08); }

/* Stage 1 - Blue */
.process__flow .stage:nth-child(1) .stage__num {
  background: rgba(74, 108, 247, 0.14);
  border-color: rgba(74, 108, 247, 0.35);
  color: #B7C5FF;
}
.process__flow .stage:nth-child(1) .stage__icon {
  background: linear-gradient(135deg, rgba(74, 108, 247, 0.22), rgba(74, 108, 247, 0.08));
  border-color: rgba(74, 108, 247, 0.5);
  color: #B7C5FF;
  box-shadow: 0 0 36px rgba(74, 108, 247, 0.32);
}
.process__flow .stage:nth-child(1)::after {
  background: radial-gradient(circle at 100% 0%, rgba(74, 108, 247, 0.18), transparent 60%);
}
.process__flow .stage:nth-child(1):hover { box-shadow: 0 20px 50px rgba(74, 108, 247, 0.18); }

/* Stage 2 - Violet */
.process__flow .stage:nth-child(3) .stage__num {
  background: rgba(139, 92, 246, 0.14);
  border-color: rgba(139, 92, 246, 0.35);
  color: #D9C9FF;
}
.process__flow .stage:nth-child(3) .stage__icon {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.22), rgba(139, 92, 246, 0.08));
  border-color: rgba(139, 92, 246, 0.5);
  color: #D9C9FF;
  box-shadow: 0 0 36px rgba(139, 92, 246, 0.32);
}
.process__flow .stage:nth-child(3)::after {
  background: radial-gradient(circle at 100% 0%, rgba(139, 92, 246, 0.18), transparent 60%);
}
.process__flow .stage:nth-child(3):hover { box-shadow: 0 20px 50px rgba(139, 92, 246, 0.18); }

/* Stage 3 - Green */
.process__flow .stage:nth-child(5) .stage__num {
  background: rgba(74, 222, 128, 0.14);
  border-color: rgba(74, 222, 128, 0.4);
  color: #BBF7D0;
}
.process__flow .stage:nth-child(5) .stage__icon {
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.22), rgba(74, 222, 128, 0.08));
  border-color: rgba(74, 222, 128, 0.5);
  color: #BBF7D0;
  box-shadow: 0 0 36px rgba(74, 222, 128, 0.32);
}
.process__flow .stage:nth-child(5)::after {
  background: radial-gradient(circle at 100% 0%, rgba(74, 222, 128, 0.18), transparent 60%);
}
.process__flow .stage:nth-child(5):hover { box-shadow: 0 20px 50px rgba(74, 222, 128, 0.18); }
.stage__title {
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 12px;
  color: var(--c-white);
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.stage__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
  margin: 0 0 22px;
}
.stage__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stage__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}
.stage__list li i {
  font-size: 9px;
  color: #4ADE80;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 222, 128, 0.12);
  border-radius: 50%;
  flex-shrink: 0;
}

.stage__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  font-size: 22px;
  flex-shrink: 0;
}
.process__flow .stage__connector:nth-child(2) i { color: #A3B5FF; }
.process__flow .stage__connector:nth-child(4) i { color: #BFAAFF; }

@media (max-width: 980px) {
  .process__flow { flex-direction: column; }
  .stage__connector { padding: 12px 0; }
  .stage__connector i { transform: rotate(90deg); }
}

/* ===== Trial CTA ===== */

.trial {
  background: var(--c-indigo);
  color: var(--c-white);
  padding: clamp(56px, 7vw, 90px) 0;
  position: relative;
  overflow: hidden;
}
.trial__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.trial__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.4;
  filter: saturate(0.7) contrast(1.05);
}
.trial__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22, 40, 89, 0.55) 0%, rgba(22, 40, 89, 0.8) 100%),
    linear-gradient(90deg, rgba(22, 40, 89, 0.3) 0%, transparent 50%, rgba(22, 40, 89, 0.3) 100%);
}
.trial__decor {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(74,108,247,0.38), transparent 65%),
    radial-gradient(ellipse 70% 60% at 50% 110%, rgba(11,25,48,0.55), transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.trial__inner { z-index: 2; }
.trial__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.trial__inner .section-title { margin-left: auto; margin-right: auto; max-width: 18ch; }
.trial__body {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin: 0 auto 28px;
  max-width: 60ch;
}

/* ===== Contact ===== */

.contact {
  background: var(--c-white);
  padding: clamp(56px, 7vw, 96px) 0;
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: start;
}

.consultation__form-head {
  margin-bottom: 24px;
}
.consultation__form-head .eyebrow {
  margin-bottom: 14px;
}
.consultation__form-title {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
  line-height: 1.2;
  color: var(--c-ink);
  max-width: 22ch;
}
.consultation__form-sub {
  margin: 0;
  font-size: 15px;
  color: rgba(11, 25, 48, 0.7);
  line-height: 1.55;
  max-width: 44ch;
}
.contact__copy p {
  font-size: 17px;
  color: rgba(11, 25, 48, 0.75);
  line-height: 1.6;
  margin: 0 0 16px;
  max-width: 46ch;
}
.contact__meta {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--c-line);
  display: grid;
  gap: 20px;
}
.contact__meta-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 6px;
  font-weight: 500;
}
.contact__meta a { color: var(--c-ink); font-weight: 500; border-bottom: 1px solid var(--c-line-strong); }
.contact__meta a:hover { border-color: var(--c-ink); }

.contact__form {
  background: var(--c-platinum);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 640px) { .field-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; margin-bottom: 16px; }

.field label {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--c-ink);
  letter-spacing: -0.005em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: var(--c-ink);
  background: var(--c-white);
  border: 1px solid var(--c-line-strong);
  border-radius: 10px;
  padding: 13px 14px;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
  appearance: none;
}
.field textarea { resize: vertical; min-height: 110px; line-height: 1.5; }
.field input::placeholder { color: rgba(11, 25, 48, 0.4); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--c-ink);
  box-shadow: 0 0 0 4px rgba(11, 25, 48, 0.08);
}

.select-wrap { position: relative; }
.select-wrap select { padding-right: 36px; cursor: pointer; }
.select-chev {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--c-muted);
  pointer-events: none;
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: rgba(11, 25, 48, 0.75);
  margin: 8px 0 22px;
  cursor: pointer;
  line-height: 1.4;
}
.consent input { margin-top: 3px; accent-color: var(--c-ink); }

.form-success {
  margin: 18px 0 0;
  padding: 14px 16px;
  background: rgba(74, 108, 247, 0.08);
  border: 1px solid rgba(74, 108, 247, 0.25);
  border-radius: 10px;
  font-size: 14px;
  color: var(--c-indigo);
  line-height: 1.5;
}

@media (max-width: 880px) {
  .contact__inner,
  .consultation__contact { grid-template-columns: 1fr; }
}

/* ===== Footer ===== */

.footer {
  background: var(--c-ink);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--c-line-light);
}
.footer__brand p {
  margin: 16px 0 0;
  font-size: 14.5px;
  color: rgba(255,255,255,0.55);
  max-width: 36ch;
  line-height: 1.5;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__cols h4 {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.footer__cols a {
  display: block;
  font-size: 14.5px;
  color: rgba(255,255,255,0.78);
  padding: 6px 0;
}
.footer__cols a:hover { color: var(--c-white); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 32px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.footer__legal a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}
.footer__legal a:hover { color: var(--c-white); }
.footer__legal-sep { margin: 0 8px; opacity: 0.5; }

@media (max-width: 880px) {
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .footer__cols { grid-template-columns: 1fr; }
}

/* ===== What we do ===== */

.what-we-do {
  background: var(--c-platinum);
  padding: clamp(56px, 7vw, 90px) 0;
}
.what-we-do__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.what-we-do .section-title {
  margin-left: auto;
  margin-right: auto;
  max-width: 22ch;
}
.what-we-do__body {
  margin-top: 28px;
}
.what-we-do__body p {
  font-size: 17px;
  color: rgba(11, 25, 48, 0.72);
  line-height: 1.6;
  margin: 0 auto 16px;
  max-width: 64ch;
}
.what-we-do__body p:last-child { margin-bottom: 0; }

/* ===== Areas of expertise ===== */

.areas-of-expertise {
  background: var(--c-platinum);
  padding: clamp(56px, 7vw, 96px) 0;
  position: relative;
  overflow: hidden;
}
.areas-of-expertise::before {
  content: "";
  position: absolute;
  inset: -150px auto auto -200px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(22, 40, 89, 0.07), transparent 60%);
  pointer-events: none;
}
.areas-head {
  margin-bottom: 40px;
  max-width: 720px;
  position: relative;
  z-index: 1;
}
.areas-head .section-title { max-width: 22ch; }

/* Tab strip */
.areas-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.areas-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--c-ink);
  cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.areas-tab i {
  font-size: 12px;
  color: var(--c-indigo);
  transition: color .2s var(--ease);
}
.areas-tab:hover {
  border-color: var(--c-ink);
  transform: translateY(-1px);
}
.areas-tab.is-active {
  background: var(--c-ink);
  border-color: var(--c-ink);
  color: var(--c-white);
}
.areas-tab.is-active i { color: var(--c-white); }

/* Panels */
.areas-panels {
  position: relative;
  z-index: 1;
}
.areas-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
  padding: clamp(36px, 4.5vw, 56px);
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 32px rgba(11, 25, 48, 0.06);
  position: relative;
  overflow: hidden;
  animation: areaFade .35s var(--ease);
}
.areas-panel[hidden] { display: none; }
.areas-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-indigo), #4A6CF7);
}
.areas-panel__icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(22, 40, 89, 0.10), rgba(74, 108, 247, 0.06));
  color: var(--c-indigo);
  font-size: 28px;
  flex-shrink: 0;
}
.areas-panel__content h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  margin: 0 0 14px;
  color: var(--c-ink);
  letter-spacing: -0.015em;
  line-height: 1.2;
  max-width: 22ch;
}
.areas-panel__content p {
  margin: 0;
  font-size: 16px;
  color: rgba(11, 25, 48, 0.7);
  line-height: 1.6;
  max-width: 64ch;
}

@keyframes areaFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 720px) {
  .areas-tabs { gap: 6px; }
  .areas-tab { padding: 9px 14px; font-size: 12.5px; }
  .areas-panel { grid-template-columns: 1fr; gap: 20px; }
  .areas-panel__icon { width: 56px; height: 56px; font-size: 22px; }
}

@media (max-width: 980px) {
  .areas-inner { grid-template-columns: 1fr; gap: 32px; }
  .areas-head { position: static; }
}
@media (max-width: 560px) {
  .areas-grid { grid-template-columns: 1fr; }
}

/* ===== Consultation receive ===== */

.consultation__receive {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--c-line-strong);
}
.consultation__receive-title {
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin: 0 0 12px !important;
  font-weight: 500;
}
.consultation__receive-body {
  font-size: 15px !important;
  color: rgba(11, 25, 48, 0.7) !important;
  line-height: 1.55 !important;
  margin: 0 !important;
  max-width: 46ch;
}

/* ===== Consult list with descriptions ===== */

.consult-list__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.consult-list__desc {
  margin: 0;
  font-size: 12.5px;
  color: var(--c-muted);
  line-height: 1.45;
}

/* ===== Track record ===== */

.track-record {
  background: var(--c-platinum);
  padding: clamp(56px, 7vw, 90px) 0;
}
.track-record__head {
  margin-bottom: 56px;
  max-width: 760px;
}
.track-record__head .section-title { max-width: 22ch; margin-bottom: 18px; }
.track-record__body {
  font-size: 17px;
  color: rgba(11, 25, 48, 0.7);
  line-height: 1.6;
  margin: 0;
  max-width: 56ch;
}

.track-record__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.track-card {
  padding: 28px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.track-card:hover {
  transform: translateY(-3px);
  border-color: rgba(11, 25, 48, 0.2);
  box-shadow: 0 14px 36px rgba(11, 25, 48, 0.08);
}
.track-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(22, 40, 89, 0.08), rgba(74, 108, 247, 0.06));
  color: var(--c-indigo);
  font-size: 16px;
  margin-bottom: 20px;
}
.track-card h3 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--c-ink);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.track-card p {
  margin: 0;
  font-size: 13.5px;
  color: rgba(11, 25, 48, 0.65);
  line-height: 1.5;
}

@media (max-width: 1080px) {
  .track-record__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .track-record__grid { grid-template-columns: 1fr; }
}

/* ===== Process: option label ===== */
.process__opt-label {
  margin: clamp(40px, 5vw, 64px) 0 24px;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--c-line-light-strong);
}

/* ===== Process: Option 1 — Annotated dashboard ===== */

.dash-demo {
  display: grid;
  grid-template-columns: 1fr 1.8fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
}
.dash-demo__callouts {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.dash-demo__callouts--left { align-items: flex-end; text-align: right; }
.dash-demo__callouts--right { align-items: flex-start; }

.callout {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--c-line-light-strong);
  border-radius: 12px;
  max-width: 240px;
  position: relative;
  font-size: 13px;
}
.callout i {
  color: #8AA2FF;
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}
.callout strong {
  display: block;
  color: var(--c-white);
  font-weight: 500;
  font-size: 13px;
  margin-bottom: 2px;
}
.callout span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12.5px;
  line-height: 1.45;
}
.callout--right::before,
.callout--left::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(138, 162, 255, 0.5), transparent);
}
.callout--right::before { right: -18px; }
.callout--left::before {
  left: -18px;
  background: linear-gradient(270deg, rgba(138, 162, 255, 0.5), transparent);
}

.dash-demo__board {
  background: linear-gradient(180deg, #14213D 0%, #0F1A30 100%);
  border: 1px solid var(--c-line-light-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  position: relative;
}
.dash-demo__board::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(74, 108, 247, 0.15), transparent 60%);
  pointer-events: none;
}

.dash-demo__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--c-line-light);
  background: rgba(255, 255, 255, 0.025);
  position: relative;
}
.dash-demo__title { font-size: 16px; font-weight: 500; color: var(--c-white); letter-spacing: -0.005em; display: block; }
.dash-demo__sub {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
  letter-spacing: 0.01em;
}
.dash-demo__actions { display: flex; gap: 6px; }
.dash-demo__actions button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  font-size: 11.5px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--c-line-light-strong);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: background .2s var(--ease);
}
.dash-demo__actions button:hover { background: rgba(255, 255, 255, 0.1); }
.dash-demo__actions i { font-size: 11px; color: rgba(255, 255, 255, 0.65); }

.dash-demo__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--c-line-light);
  position: relative;
}
.dash-cell {
  background: rgba(11, 25, 48, 0.55);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cell-label { font-size: 11.5px; color: rgba(255, 255, 255, 0.55); letter-spacing: 0.02em; }
.cell-value {
  font-size: 22px;
  font-weight: 500;
  color: var(--c-white);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.cell-delta {
  font-size: 12px;
  margin-left: 4px;
  font-weight: 500;
}
.cell-delta--up { color: #4ADE80; }
.cell-delta--down { color: #F87171; }
.cell-cite { font-size: 11px; color: rgba(255, 255, 255, 0.45); display: inline-flex; align-items: center; gap: 5px; margin-top: 2px; }
.cell-cite i { font-size: 9px; }

.dash-demo__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 22px;
  border-top: 1px solid var(--c-line-light);
  background: rgba(255, 255, 255, 0.02);
  position: relative;
}
.dash-stamp, .dash-flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}
.dash-stamp i { color: #4ADE80; font-size: 13px; }
.dash-stamp strong { color: var(--c-white); font-weight: 500; margin-right: 4px; }
.dash-flag { color: #FCD34D; }
.dash-flag i { font-size: 11px; }

@media (max-width: 980px) {
  .dash-demo { grid-template-columns: 1fr; }
  .dash-demo__callouts { flex-direction: row; flex-wrap: wrap; align-items: stretch; text-align: left; }
  .dash-demo__callouts--left, .dash-demo__callouts--right { align-items: stretch; }
  .callout { max-width: none; flex: 1 1 240px; }
  .callout--right::before, .callout--left::before { display: none; }
}

/* ===== Process: Option 2 — Scrollytelling blocks ===== */

.proc-scrolly {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.proc-block {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--c-line-light-strong);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  transition: border-color .3s var(--ease);
}
.proc-block:hover { border-color: rgba(255, 255, 255, 0.2); }

.proc-block__num {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  font-weight: 500;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(74, 108, 247, 0.14);
  border: 1px solid rgba(74, 108, 247, 0.35);
  color: #B7C5FF;
  margin-bottom: 18px;
}
.proc-block__title {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  margin: 0 0 12px;
  color: var(--c-white);
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.proc-block__desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
  margin: 0 0 20px;
  max-width: 44ch;
}
.proc-block__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.proc-block__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}
.proc-block__list li i {
  font-size: 10px;
  color: #4ADE80;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 222, 128, 0.12);
  border-radius: 50%;
  flex-shrink: 0;
}

.proc-block__visual {
  background: rgba(11, 25, 48, 0.55);
  border: 1px solid var(--c-line-light);
  border-radius: var(--radius);
  padding: 24px;
  min-height: 220px;
  display: flex;
  align-items: stretch;
}

.vis-block { width: 100%; display: flex; flex-direction: column; gap: 16px; }
.vis-block__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.vis-block__title { font-size: 13px; color: var(--c-white); font-weight: 500; display: inline-flex; align-items: center; gap: 8px; }
.vis-block__title i { color: #8AA2FF; }
.vis-block__meta { font-size: 11.5px; color: rgba(255, 255, 255, 0.55); display: inline-flex; align-items: center; gap: 6px; }
.vis-block__pills { display: flex; flex-wrap: wrap; gap: 6px; align-content: center; }

/* Stage 2 visual: alert + chain */
.vis-alert {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  background: rgba(252, 211, 77, 0.08);
  border: 1px solid rgba(252, 211, 77, 0.25);
  border-radius: 10px;
}
.vis-alert i { color: #FCD34D; font-size: 16px; }
.vis-alert strong { display: block; font-size: 13px; color: var(--c-white); font-weight: 500; }
.vis-alert span { font-size: 12px; color: rgba(255, 255, 255, 0.6); }

.vis-chain {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}
.vis-chain__step {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--c-line-light-strong);
  border-radius: 999px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.78);
  flex-shrink: 0;
}
.vis-chain__step i { font-size: 10px; color: #8AA2FF; }
.vis-chain__step--done { background: rgba(74, 222, 128, 0.1); border-color: rgba(74, 222, 128, 0.3); color: #BBF7D0; }
.vis-chain__step--done i { color: #4ADE80; }
.vis-chain__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(138, 162, 255, 0.4), rgba(74, 222, 128, 0.4));
  min-width: 12px;
}

/* Stage 3 visual: format chips + delivery receipt */
.vis-formats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.format-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--c-line-light-strong);
  border-radius: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}
.format-chip i { color: #8AA2FF; font-size: 13px; }
.vis-receipt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.25);
  border-radius: 8px;
  margin-top: auto;
}
.vis-receipt i { color: #4ADE80; font-size: 14px; }
.vis-receipt strong { display: block; font-size: 12.5px; color: var(--c-white); font-weight: 500; }
.vis-receipt span { font-size: 11.5px; color: rgba(255, 255, 255, 0.55); }

@media (max-width: 880px) {
  .proc-block { grid-template-columns: 1fr; }
  .proc-block__visual { order: 2; }
}

/* ===== Track record: option label ===== */
.track-opt-label {
  margin: clamp(48px, 6vw, 72px) 0 24px;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 500;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--c-line-strong);
}
.track-opt-label:first-of-type { margin-top: 0; }

/* ===== Option 1: World map ===== */
.tr-map {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 4vw, 60px);
  align-items: start;
}
.tr-map__viz {
  position: relative;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 24px;
  aspect-ratio: 1000 / 480;
}
.tr-map__svg {
  width: 100%;
  height: 100%;
  display: block;
}
.tr-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0;
  font-family: inherit;
}
.tr-pin__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--c-indigo);
  border: 2px solid var(--c-white);
  box-shadow: 0 0 0 0 rgba(74, 108, 247, 0.5);
  animation: pulse 2s ease-out infinite;
  position: relative;
  z-index: 1;
}
.tr-pin__label {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--c-ink);
  background: var(--c-white);
  border: 1px solid var(--c-line-strong);
  padding: 4px 8px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(11, 25, 48, 0.08);
}
.tr-pin:hover .tr-pin__label { background: var(--c-ink); color: var(--c-white); border-color: var(--c-ink); }

.tr-map__legend {
  padding: 24px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
}
.tr-map__legend-title {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 500;
}
.tr-map__legend ul { list-style: none; margin: 0; padding: 0; }
.tr-map__legend li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--c-line);
  font-size: 13.5px;
  color: var(--c-ink);
  line-height: 1.4;
}
.tr-map__legend li:last-child { border-bottom: none; }
.tr-chip {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(22, 40, 89, 0.08);
  color: var(--c-indigo);
  flex-shrink: 0;
}

@media (max-width: 880px) {
  .tr-map { grid-template-columns: 1fr; }
}

/* ===== Option 2: Timeline ===== */
.tr-timeline {
  position: relative;
  padding: 16px 0;
  max-width: 980px;
  margin: 0 auto;
}
.tr-timeline__line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--c-line-strong) 8%, var(--c-line-strong) 92%, transparent);
  transform: translateX(-50%);
}
.tr-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 18px 0;
}
.tr-timeline__dot {
  position: absolute;
  left: 50%;
  top: 36px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--c-white);
  border: 2px solid var(--c-indigo);
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px var(--c-platinum);
}
.tr-timeline__content {
  padding: 22px 26px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.tr-timeline__content:hover {
  transform: translateY(-2px);
  border-color: rgba(11, 25, 48, 0.18);
  box-shadow: 0 14px 32px rgba(11, 25, 48, 0.08);
}
.tr-timeline__item--left .tr-timeline__content { grid-column: 1; margin-right: 36px; }
.tr-timeline__item--right .tr-timeline__content { grid-column: 2; margin-left: 36px; }

.tr-region {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(22, 40, 89, 0.08);
  color: var(--c-indigo);
  margin-bottom: 12px;
}
.tr-timeline__content h3 {
  font-size: 17px;
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--c-ink);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.tr-timeline__content p {
  margin: 0;
  font-size: 13.5px;
  color: rgba(11, 25, 48, 0.65);
  line-height: 1.55;
}

@media (max-width: 720px) {
  .tr-timeline__line { left: 12px; }
  .tr-timeline__item { grid-template-columns: 1fr; }
  .tr-timeline__dot { left: 12px; }
  .tr-timeline__item--left .tr-timeline__content,
  .tr-timeline__item--right .tr-timeline__content {
    grid-column: 1; margin-left: 36px; margin-right: 0;
  }
}

/* ===== Option 3: Filter chips ===== */
.tr-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.tr-filter__chip {
  padding: 9px 16px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  background: var(--c-white);
  border: 1px solid var(--c-line-strong);
  border-radius: 999px;
  color: var(--c-ink);
  cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.tr-filter__chip:hover { border-color: var(--c-ink); }
.tr-filter__chip.is-active {
  background: var(--c-ink);
  border-color: var(--c-ink);
  color: var(--c-white);
}
.track-card[hidden] { display: none; }

/* ===== Team ===== */

.team {
  background: var(--c-white);
  padding: clamp(56px, 7vw, 90px) 0;
}
.team__head {
  margin-bottom: 56px;
  max-width: 720px;
}
.team__head .section-title { max-width: 22ch; margin-bottom: 18px; }
.team__body {
  font-size: 17px;
  color: rgba(11, 25, 48, 0.7);
  line-height: 1.6;
  margin: 0;
  max-width: 60ch;
}

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

.team-card {
  padding: 28px;
  background: var(--c-platinum);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 25, 48, 0.18);
  box-shadow: 0 18px 40px rgba(11, 25, 48, 0.08);
}

.team-card__avatar {
  position: relative;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-indigo), #4A6CF7);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  overflow: hidden;
  border: 1px solid var(--c-line);
}
.team-card__initials {
  font-size: 26px;
  font-weight: 500;
  color: var(--c-white);
  letter-spacing: 0.02em;
}
.team-card__avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__name {
  font-size: 17px;
  font-weight: 500;
  margin: 0 0 4px;
  color: var(--c-ink);
  letter-spacing: -0.01em;
}
.team-card__role {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-indigo);
  margin: 0 0 14px;
  letter-spacing: -0.005em;
}
.team-card__bio {
  font-size: 13.5px;
  color: rgba(11, 25, 48, 0.62);
  line-height: 1.55;
  margin: 0 0 18px;
}

.team-card__links {
  margin-top: auto;
  display: flex;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--c-line);
}
.team-card__links a {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  color: var(--c-muted);
  font-size: 13px;
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.team-card__links a:hover {
  background: var(--c-ink);
  border-color: var(--c-ink);
  color: var(--c-white);
}

@media (max-width: 1080px) {
  .team__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .team__grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* ===== Disable all animations and transitions site-wide ===== */
*, *::before, *::after {
  animation: none !important;
  transition: none !important;
}
.pulse { animation: none !important; }

/* Re-enable the clients marquee scroll */
.marquee__track {
  animation: scroll 38s linear infinite !important;
}

/* ===== Trial signup page (hero-style centered) ===== */

.trial-page {
  background: var(--c-indigo);
  color: var(--c-white);
  padding: clamp(120px, 14vw, 180px) 0 clamp(80px, 9vw, 120px);
  position: relative;
  overflow: hidden;
}
.trial-page__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.trial-page__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.4;
  filter: saturate(0.7) contrast(1.05);
}
.trial-page__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22, 40, 89, 0.55) 0%, rgba(22, 40, 89, 0.85) 100%),
    linear-gradient(90deg, rgba(22, 40, 89, 0.3) 0%, transparent 50%, rgba(22, 40, 89, 0.3) 100%);
}
.trial-page__decor {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(74,108,247,0.38), transparent 65%),
    radial-gradient(ellipse 70% 60% at 50% 110%, rgba(11,25,48,0.55), transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.trial-page__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}
.trial-page__head {
  text-align: center;
  margin-bottom: 48px;
}
.trial-page__head .section-title {
  margin-left: auto;
  margin-right: auto;
  max-width: 22ch;
}
.trial-page__lede {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  margin: 16px auto 0;
  max-width: 58ch;
}

.trial-benefits {
  list-style: none;
  margin: 28px auto 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  max-width: 640px;
}
.trial-benefits li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  line-height: 1.4;
}
.trial-benefits i {
  color: #6EE7B7;
  flex-shrink: 0;
}

.trial-page__card {
  background: #ffffff;
  color: var(--c-ink);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 24px 60px rgba(7, 14, 32, 0.35);
  border: 1px solid rgba(255,255,255,0.08);
}
.trial-page__card .field label,
.trial-page__card .consent span { color: var(--c-ink); }

@media (max-width: 720px) {
  .trial-benefits { flex-direction: column; align-items: flex-start; padding: 0 12px; }
}

/* ===== Legal pages ===== */

.legal {
  background: #ffffff;
  color: var(--c-ink);
  padding: clamp(96px, 10vw, 144px) 0 clamp(72px, 8vw, 112px);
}
.legal__inner { max-width: 780px; }
.legal__head { margin-bottom: 40px; }
.legal__head .section-title { color: var(--c-ink); margin-bottom: 12px; }
.legal__updated {
  color: rgba(11, 25, 48, 0.55);
  font-size: 14px;
  margin: 0;
}
.legal__body { color: rgba(11, 25, 48, 0.82); font-size: 16px; line-height: 1.65; }
.legal__body h2 {
  color: var(--c-ink);
  font-size: 20px;
  font-weight: 600;
  margin: 36px 0 12px;
  line-height: 1.3;
}
.legal__body h2:first-child { margin-top: 0; }
.legal__body p { margin: 0 0 14px; }
.legal__body ul {
  margin: 0 0 18px;
  padding-left: 22px;
}
.legal__body li { margin: 0 0 6px; }
.legal__body a {
  color: var(--c-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal__body a:hover { opacity: 0.7; }
.legal__body strong { color: var(--c-ink); font-weight: 600; }
