/* Creative Transformations Edition — Refined scale, Awwwards-inspired polish */
:root {
  --gray-bg: #e8e4f8;
  --brand-gray: #e8e4f8;
  --purple: #a070dd;
  --navy: #6c6bb5;
  --navy-hover: #5a59a0;
  --teal: #68b7ef;
  --gold: #cea04d;
  --lavender: #e8e4f8;
  --ink: #2d2d3f;
  --muted: #7b7b94;
  --white: #fff;
  --cream: #faf9fc;
  --display: "DM Sans", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header: 64px;
  --radius: 12px;
  --max: 1120px;
  --text-base: 1rem;
  --text-sm: 0.875rem;
  --text-xs: 0.75rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  padding-bottom: 4.5rem;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(160, 112, 221, 0.08), transparent 50%),
    radial-gradient(ellipse 50% 30% at 0% 100%, rgba(104, 183, 239, 0.06), transparent 45%);
}
h1, h2, h3, h4 {
  font-family: var(--display);
  line-height: 1.2;
  margin-top: 0;
  letter-spacing: -0.02em;
  font-weight: 700;
}
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--purple); }
img, video { max-width: 100%; display: block; }
.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

.skip-link {
  position: absolute; left: -9999px; z-index: 9999;
  padding: 0.5rem 0.75rem; background: var(--navy); color: #fff;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 120;
  height: var(--header);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(108, 107, 181, 0.08);
  transition: box-shadow 0.25s;
}
.site-header.is-scrolled { box-shadow: 0 4px 24px rgba(108, 107, 181, 0.08); }
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo img { height: 44px; width: auto; max-width: 200px; object-fit: contain; }
.nav-desktop { display: none; list-style: none; margin: 0; padding: 0; gap: 1.5rem; }
@media (min-width: 860px) { .nav-desktop { display: flex; } }
.nav-desktop a {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink);
  transition: color 0.2s;
}
.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] { color: var(--purple); }
.nav-cta {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--purple); color: #fff; transform: translateY(-1px); }
.nav-toggle {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px; cursor: pointer;
}
@media (min-width: 860px) { .nav-toggle { display: none; } }
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); }
.nav-mobile-wrap {
  position: fixed; inset: 0; top: var(--header);
  background: var(--white);
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  z-index: 110;
}
.nav-mobile-wrap.is-open { transform: translateX(0); }
.nav-mobile { list-style: none; margin: 0; padding: 0; }
.nav-mobile a { font-size: 1.1rem; font-weight: 600; display: block; padding: 0.6rem 0; }

/* Hero — compact */
.hero {
  position: relative;
  min-height: min(72vh, 620px);
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header) + 2rem) 0 2.5rem;
  color: #fff;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; background: var(--navy); }
.hero__media video {
  width: 100%; height: 100%; object-fit: cover;
  min-height: 100%; min-width: 100%;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(45,45,63,0.9) 0%, rgba(45,45,63,0.6) 50%, rgba(108,107,181,0.45) 100%),
    linear-gradient(0deg, rgba(45,45,63,0.5), transparent 40%);
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid;
  gap: 1.5rem;
  align-items: end;
}
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.2fr 0.8fr; gap: 2rem; }
}
.hero__eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.hero h1 {
  font-size: clamp(1.75rem, 4.2vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.85rem;
  max-width: 18ch;
}
.hero__lead {
  font-size: var(--text-sm);
  line-height: 1.55;
  opacity: 0.92;
  max-width: 38ch;
  margin-bottom: 1.25rem;
}
.hero__panel {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}
.hero__panel h2 {
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: #fff;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}
.hero__stat strong {
  display: block;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}
.hero__stat span { font-size: 0.65rem; opacity: 0.8; line-height: 1.3; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-family: var(--display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn--gold {
  background: var(--gold);
  color: var(--ink);
}
.btn--gold:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(206, 160, 77, 0.4); color: var(--ink); }
.btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn--outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); color: #fff; }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--purple); color: #fff; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.65rem; }

/* Trust bar */
.trust-bar {
  padding: 1rem 0;
  background: var(--lavender);
  border-bottom: 1px solid rgba(108, 107, 181, 0.08);
  overflow: hidden;
}
.trust-bar__track {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  width: max-content;
  animation: trustScroll 35s linear infinite;
}
.trust-bar img { height: 28px; width: auto; object-fit: contain; opacity: 0.85; }
@keyframes trustScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections — compact */
.section { padding: 3.25rem 0; scroll-margin-top: var(--header); }
.section--soft {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}
.section--dark {
  background: linear-gradient(160deg, var(--ink), var(--navy-hover));
  color: #fff;
}
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: rgba(255,255,255,0.82); }
.label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.label::after {
  content: "";
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.section--dark .label { color: var(--gold); }
.section h2 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  margin-bottom: 0.65rem;
  max-width: 22ch;
}
.section__lead {
  font-size: var(--text-sm);
  color: var(--muted);
  max-width: 42rem;
  margin-bottom: 1.75rem;
}
.section__lead strong { color: var(--ink); }

/* Services grid */
.services {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .services { grid-template-columns: repeat(4, 1fr); } }
.service-card:not(.service-card--img) {
  background: linear-gradient(145deg, #fff, var(--cream));
}
.service-card {
  display: block;
  padding: 1.15rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(108, 107, 181, 0.1);
  color: inherit;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.service-card:hover {
  border-color: var(--purple);
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(160, 112, 221, 0.15);
  box-shadow: 0 12px 32px rgba(108, 107, 181, 0.1);
  color: inherit;
}
.service-card__num {
  font-size: var(--text-xs);
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.service-card h3 { font-size: 0.95rem; margin-bottom: 0.35rem; color: var(--ink); }
.service-card p { margin: 0; font-size: var(--text-xs); color: var(--muted); line-height: 1.45; }
.service-card--img {
  grid-column: span 1;
  padding: 0;
  overflow: hidden;
  min-height: 200px;
  position: relative;
  display: block;
}
@media (min-width: 900px) {
  .services { grid-auto-rows: minmax(120px, auto); }
  .service-card--img {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 280px;
  }
}
.service-card--img > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  z-index: 0;
}
.service-card--img .service-card__content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.15rem;
  background: linear-gradient(0deg, rgba(45,45,63,0.85), transparent 55%);
  color: #fff;
}
.service-card--img h3, .service-card--img p { color: #fff; }
.service-card--img p { opacity: 0.9; }

/* Team — compact grid */
.team-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}
@media (min-width: 900px) { .team-grid { grid-template-columns: repeat(5, 1fr); } }
.team-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(108, 107, 181, 0.1);
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  color: inherit;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(108, 107, 181, 0.14);
  border-color: rgba(160, 112, 221, 0.35);
  color: inherit;
}
.team-card--lead { border: 2px solid var(--gold); }
.team-card__img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--lavender);
}
.team-card__img img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center top;
}
.team-card__body { padding: 0.85rem; }
.team-card__role {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 0.2rem;
}
.team-card h3 { font-size: 0.82rem; margin-bottom: 0.2rem; line-height: 1.25; }
.team-card p { margin: 0; font-size: 0.7rem; color: var(--muted); line-height: 1.4; display: none; }
@media (min-width: 600px) { .team-card p { display: block; } }

/* Split before/after */
.split-row {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) { .split-row { grid-template-columns: 1fr 1fr; } }
.split-box {
  padding: 1.35rem;
  border-radius: var(--radius);
  font-size: var(--text-sm);
}
.split-box--before {
  background: #fff;
  border: 1px solid #e8b4b4;
  box-shadow: 0 8px 24px rgba(232, 180, 180, 0.15);
}
.split-box--after {
  background: linear-gradient(145deg, #fff, #f8fdf9);
  border: 1px solid #9fd4b8;
  box-shadow: 0 8px 24px rgba(159, 212, 184, 0.2);
}
.split-box h3 {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.split-box ul { margin: 0; padding: 0; list-style: none; }
.split-box li {
  padding: 0.35rem 0;
  font-size: var(--text-sm);
  border-bottom: 1px solid rgba(45,45,63,0.06);
}
.split-box li:last-child { border-bottom: none; }

/* Section polish */
.section--glow {
  position: relative;
}
.section--glow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(90%, 600px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(160, 112, 221, 0.35), transparent);
}
.section__hint {
  font-size: var(--text-sm);
  color: var(--muted);
  margin: -0.5rem 0 1.25rem;
  max-width: 40ch;
}
.info-cards__hint {
  font-size: var(--text-xs);
  color: var(--muted);
  margin: 0 0 0.65rem;
  letter-spacing: 0.02em;
}

/* Information cards — interactive */
.info-cards {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .info-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .info-cards--transform { grid-template-columns: repeat(4, 1fr); }
  .info-cards--inline { grid-template-columns: repeat(3, 1fr); }
  .founder-profile .info-cards { grid-template-columns: repeat(3, 1fr); }
}
.info-cards--stagger .info-card {
  opacity: 0;
  transform: translateY(12px);
}
.info-cards--stagger.is-visible .info-card,
.reveal.is-visible .info-cards--stagger .info-card {
  animation: cardStagger 0.55s var(--ease) forwards;
}
.info-cards--stagger .info-card:nth-child(1) { animation-delay: 0.05s; }
.info-cards--stagger .info-card:nth-child(2) { animation-delay: 0.12s; }
.info-cards--stagger .info-card:nth-child(3) { animation-delay: 0.19s; }
.info-cards--stagger .info-card:nth-child(4) { animation-delay: 0.26s; }
.info-cards--stagger .info-card:nth-child(5) { animation-delay: 0.33s; }
.info-cards--stagger .info-card:nth-child(6) { animation-delay: 0.4s; }
@keyframes cardStagger {
  to { opacity: 1; transform: translateY(0); }
}

button.info-card {
  font: inherit;
  text-align: left;
  width: 100%;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.info-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(108, 107, 181, 0.14);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.15rem 1.2rem 1rem;
  box-shadow: 0 4px 16px rgba(108, 107, 181, 0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s, background 0.3s;
  overflow: hidden;
}
.info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(160, 112, 221, 0.4), rgba(104, 183, 239, 0.2), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.info-card:hover,
.info-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(108, 107, 181, 0.14);
  border-color: rgba(160, 112, 221, 0.4);
  outline: none;
}
.info-card:hover::before,
.info-card:focus-visible::before,
.info-card.is-active::before { opacity: 1; }
.info-card.is-active {
  border-color: var(--purple);
  box-shadow: 0 0 0 2px rgba(160, 112, 221, 0.2), 0 12px 36px rgba(108, 107, 181, 0.12);
}
.info-card--before {
  border-left: 4px solid #e8a0a0;
  background: linear-gradient(155deg, #fff 0%, #fff9f9 100%);
}
.info-card--after {
  border-left: 4px solid #7bc9a0;
  background: linear-gradient(155deg, #fff 0%, #f6fcf9 100%);
}
.info-card--stat {
  background: linear-gradient(160deg, #fff 0%, var(--lavender) 120%);
}
.info-card__tag {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 0.35rem;
}
.info-card--before .info-card__tag { color: #c45c5c; }
.info-card--after .info-card__tag { color: #2d7a55; }
.info-card h3, .info-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  color: var(--ink);
}
.info-card__teaser {
  display: block;
  margin: 0;
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.5;
}
.info-card strong {
  display: block;
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.info-card__icon {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  display: block;
  margin-bottom: 0.4rem;
}
.info-card__action {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  transition: gap 0.2s, color 0.2s;
}
.info-card:hover .info-card__action { gap: 0.5rem; color: var(--navy); }
.info-card--wide {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(232, 228, 248, 0.9), #fff 50%);
  border-color: rgba(160, 112, 221, 0.3);
  margin-top: 0.5rem;
}

/* Info detail panel */
body.info-panel-open { overflow: hidden; }
.info-panel {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  pointer-events: none;
}
@media (min-width: 640px) {
  .info-panel { align-items: center; padding: 1.5rem; }
}
.info-panel[hidden] { display: none !important; }
.info-panel__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(45, 45, 63, 0.55);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: auto;
}
.info-panel.is-open .info-panel__backdrop { opacity: 1; }
.info-panel__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  max-height: min(85vh, 640px);
  overflow-y: auto;
  background: #fff;
  border-radius: calc(var(--radius) + 8px) calc(var(--radius) + 8px) 0 0;
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: 0 -8px 48px rgba(45, 45, 63, 0.2), 0 0 0 1px rgba(108, 107, 181, 0.1);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
  pointer-events: auto;
}
@media (min-width: 640px) {
  .info-panel__dialog {
    border-radius: calc(var(--radius) + 8px);
    transform: translateY(24px) scale(0.96);
    opacity: 0;
    transition: transform 0.4s var(--ease), opacity 0.35s;
  }
}
.info-panel.is-open .info-panel__dialog {
  transform: translateY(0);
  opacity: 1;
}
.info-panel.is-before .info-panel__dialog { border-top: 4px solid #e8a0a0; }
.info-panel.is-after .info-panel__dialog { border-top: 4px solid #7bc9a0; }
.info-panel.is-stat .info-panel__dialog {
  border-top: 4px solid var(--gold);
  background: linear-gradient(180deg, #fff 0%, var(--lavender) 200%);
}
.info-panel__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--lavender);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.info-panel__close:hover {
  background: var(--purple);
  color: #fff;
  transform: rotate(90deg);
}
.info-panel__tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 0.5rem;
}
.info-panel__title {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  margin: 0 2rem 1rem 0;
  padding-right: 1rem;
  line-height: 1.25;
  max-width: none;
}
.info-panel__body {
  font-size: var(--text-sm);
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.info-panel__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(108, 107, 181, 0.1);
}
.info-panel__back {
  font-family: var(--display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 0.5rem 0;
  transition: color 0.2s;
}
.info-panel__back:hover { color: var(--purple); }

/* Founder spotlight (home) */
.founder-spotlight {
  display: grid;
  gap: 0;
  align-items: stretch;
  background: #fff;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(108, 107, 181, 0.1);
  box-shadow:
    0 4px 6px rgba(108, 107, 181, 0.04),
    0 24px 64px rgba(108, 107, 181, 0.12);
  overflow: hidden;
  position: relative;
}
.founder-spotlight::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(160, 112, 221, 0.08), transparent 70%);
  pointer-events: none;
}
@media (min-width: 768px) {
  .founder-spotlight { grid-template-columns: 260px 1fr; }
}
@media (min-width: 900px) {
  .founder-spotlight { grid-template-columns: 300px 1fr; }
}
.founder-spotlight__photo {
  position: relative;
  background: linear-gradient(160deg, var(--lavender), var(--navy));
  overflow: hidden;
  min-height: 300px;
}
.founder-spotlight__frame {
  position: absolute;
  inset: 12px;
  border: 2px solid rgba(206, 160, 77, 0.5);
  border-radius: calc(var(--radius) - 2px);
  z-index: 2;
  pointer-events: none;
}
.founder-spotlight__photo img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s var(--ease);
}
.founder-spotlight:hover .founder-spotlight__photo img {
  transform: scale(1.03);
}
.founder-spotlight__content {
  padding: 1.75rem 1.5rem 2rem;
  position: relative;
  z-index: 1;
}
.founder-spotlight h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  margin-bottom: 0.25rem;
  max-width: none;
}
.founder-spotlight__role {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 0.75rem;
}
.founder-spotlight__content > p:not(.info-cards__hint) {
  font-size: var(--text-sm);
  color: var(--muted);
  margin-bottom: 1rem;
  max-width: 52ch;
}
.founder-spotlight .info-cards { margin-bottom: 1.25rem; }
.founder-spotlight .info-card { padding: 0.9rem 1rem; }
.founder-spotlight .info-card strong { font-size: 1.15rem; }

/* Founder profile (about) */
.founder-profile {
  background: #fff;
  border-radius: calc(var(--radius) + 4px);
  border: 2px solid var(--gold);
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 16px 48px rgba(206, 160, 77, 0.12);
}
.founder-profile__header {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 700px) {
  .founder-profile__header { grid-template-columns: 220px 1fr; align-items: start; }
}
.founder-profile__photo {
  width: 100%;
  max-width: 280px;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4/5;
  border: 3px solid var(--lavender);
  box-shadow: 0 8px 24px rgba(108, 107, 181, 0.15);
}
.founder-profile__intro h2 { font-size: 1.5rem; max-width: none; }
.founder-profile__intro .role {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 0.75rem;
}
.founder-profile__intro p {
  font-size: var(--text-sm);
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.founder-profile__heading {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--navy);
}

/* Results row */
.results-row {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 768px) { .results-row { grid-template-columns: 1.2fr 1fr 1fr; } }
.result-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  background: var(--navy);
}
.result-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.result-card__body {
  position: relative;
  z-index: 1;
  padding: 1.15rem;
  margin-top: auto;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(0deg, rgba(45,45,63,0.92) 0%, rgba(45,45,63,0.4) 55%, transparent 100%);
  color: #fff;
}
.result-card h3 { font-size: 0.95rem; margin-bottom: 0.2rem; color: #fff; }
.result-card p { margin: 0; font-size: var(--text-xs); opacity: 0.85; }
.result-card--stat {
  background: linear-gradient(145deg, var(--purple), var(--navy));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  color: #fff;
}
.result-card--stat strong {
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
}
.result-card--stat span { font-size: var(--text-xs); opacity: 0.9; margin-top: 0.35rem; }

/* Testimonials — compact */
.testimonials {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 768px) { .testimonials { grid-template-columns: repeat(2, 1fr); } }
.testimonial {
  padding: 1.25rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(108, 107, 181, 0.1);
  font-size: var(--text-sm);
  box-shadow: 0 8px 28px rgba(108, 107, 181, 0.06);
  transition: box-shadow 0.25s, transform 0.25s;
}
.testimonial:hover {
  box-shadow: 0 14px 40px rgba(108, 107, 181, 0.1);
  transform: translateY(-2px);
}
.testimonial img { height: 32px; margin-bottom: 0.65rem; object-fit: contain; }
.testimonial blockquote {
  margin: 0 0 0.75rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
}
.testimonial footer strong { display: block; font-size: var(--text-xs); }
.testimonial footer span { font-size: 0.7rem; color: var(--muted); }

/* CTA */
.cta {
  text-align: center;
  padding: 2.75rem 0;
  background:
    linear-gradient(135deg, var(--lavender) 0%, rgba(160, 112, 221, 0.15) 50%, var(--lavender) 100%);
  border-top: 1px solid rgba(108, 107, 181, 0.1);
}
.cta h2 { font-size: clamp(1.25rem, 3vw, 1.65rem); max-width: none; margin-bottom: 0.5rem; }
.cta p { font-size: var(--text-sm); color: var(--muted); margin-bottom: 1.25rem; }
.cta__links { font-size: var(--text-sm); margin-top: 1.25rem; }
.cta__links a { color: var(--navy); font-weight: 600; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  padding: 2.5rem 0 1.5rem;
  font-size: var(--text-sm);
}
.footer-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer img,
.footer-logo {
  max-width: 200px;
  width: auto;
  height: auto;
  margin-bottom: 0.75rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.site-footer a { color: var(--teal); }
.footer-bottom {
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: var(--text-xs);
  opacity: 0.7;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}

/* Reveal */
.reveal { opacity: 1; transform: none; }
.js-ready .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.js-ready .reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Inner pages */
.page-hero {
  padding: calc(var(--header) + 2rem) 0 1.75rem;
  background: var(--cream);
}
.page-hero h1 { font-size: clamp(1.5rem, 3.5vw, 2rem); }
.page-hero .lead { font-size: var(--text-sm); color: var(--muted); max-width: 40rem; }
.content-section { padding: 2rem 0 3rem; }
.card, .solution-block, .team-detail, .ai-card {
  background: #fff;
  border: 1px solid rgba(108, 107, 181, 0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
}
.team-photo-lg {
  width: 88px; height: 88px;
  border-radius: 50%;
  object-fit: cover;
  float: left;
  margin: 0 1rem 0.5rem 0;
  border: 2px solid var(--lavender);
}
.eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
}
.section-heading { font-size: clamp(1.25rem, 2.5vw, 1.65rem); }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }

/* About page compat */
.logo-link img { height: 42px; }
.header-inner { height: var(--header); display: flex; align-items: center; justify-content: space-between; }
.nav-desktop a { font-size: var(--text-sm); font-weight: 600; }
.btn-primary, .nav-cta-desktop {
  font-size: var(--text-xs); font-weight: 700; text-transform: uppercase;
  padding: 0.55rem 1rem; border-radius: 999px; background: var(--ink); color: #fff;
}
.experts-grid {
  display: grid; gap: 0.85rem;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
@media (min-width: 900px) { .experts-grid { grid-template-columns: repeat(5, 1fr); } }
.expert-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(108,107,181,0.1);
}
.expert-card__visual { aspect-ratio: 1; position: relative; overflow: hidden; }
.expert-card__visual img { width: 100%; height: 100%; object-fit: cover; }
.expert-card__badge {
  position: absolute; bottom: 0.5rem; left: 0.5rem;
  font-size: 0.58rem; font-weight: 700; padding: 0.2rem 0.45rem;
  background: var(--gold); color: #fff; border-radius: 999px;
}
.expert-card__badge--teal { background: var(--teal); }
.expert-card__badge--gold { background: var(--purple); }
.expert-card__content { padding: 0.75rem; text-align: center; }
.expert-card__content h3 { font-size: 0.8rem; margin-bottom: 0.15rem; }
.expert-card__role { font-size: 0.65rem; color: var(--purple); font-weight: 700; margin: 0 0 0.35rem; }
.expert-card__link { font-size: 0.7rem; font-weight: 700; }
.team-photo { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; margin: 0 auto 0.5rem; }
.vision-mission { display: grid; gap: 1rem; }
@media (min-width: 768px) { .vision-mission { grid-template-columns: 1fr 1fr; } }
.ai-cards { display: grid; gap: 1rem; }
@media (min-width: 768px) { .ai-cards { grid-template-columns: 1fr 1fr; } }
.solutions-nav { display: none; }

/* Chatbot — from atelier, scaled */
.ct-chat {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 200;
  display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem;
}
.ct-chat__toggle {
  width: 52px; height: 52px; border-radius: 50%; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--navy), var(--purple));
  color: #fff; font-size: 1.2rem;
  box-shadow: 0 8px 28px rgba(108, 107, 181, 0.35);
  display: flex; align-items: center; justify-content: center;
}
.ct-chat__toggle-icon { pointer-events: none; }
.ct-chat__pulse {
  position: absolute; inset: -3px; border-radius: 50%;
  border: 2px solid var(--gold);
  animation: pulse 2.5s ease-out infinite;
  pointer-events: none;
}
.ct-chat.is-open .ct-chat__pulse { display: none; }
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.3); opacity: 0; }
}
.ct-chat__panel {
  display: none;
  width: min(360px, calc(100vw - 1.5rem));
  height: min(480px, calc(100dvh - 6rem));
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(45, 45, 63, 0.18);
  border: 1px solid rgba(108, 107, 181, 0.12);
  flex-direction: column;
  overflow: hidden;
  order: -1;
}
.ct-chat__panel.is-open { display: flex; }
.ct-chat__head {
  padding: 0.75rem 0.85rem;
  background: linear-gradient(135deg, var(--ink), var(--navy-hover));
  color: #fff;
  display: flex; align-items: center; gap: 0.5rem;
}
.ct-chat__avatar {
  width: 34px; height: 34px; border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--purple));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 800; font-family: var(--display);
}
.ct-chat__head-text { flex: 1; }
.ct-chat__head-text h3 { font-size: 0.85rem; margin: 0; color: #fff; display: flex; align-items: center; gap: 0.35rem; }
.ct-chat__status { font-size: 0.55rem; color: #7dffa8; font-family: var(--body); font-weight: 600; }
.ct-chat__head-text p { margin: 0; font-size: 0.65rem; opacity: 0.85; }
.ct-chat__head-actions { display: flex; gap: 0.25rem; }
.ct-chat__clear, .ct-chat__close {
  min-width: 28px; min-height: 28px; border-radius: 6px;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
  color: #fff; font-size: 0.65rem; cursor: pointer;
}
.ct-chat__close { font-size: 0.9rem; }
.ct-chat__quick {
  display: flex; gap: 0.35rem; padding: 0.5rem;
  background: var(--lavender);
}
.ct-chat__quick-btn {
  flex: 1; text-align: center; font-size: 0.62rem; font-weight: 700;
  padding: 0.35rem; border-radius: 6px; background: #fff;
  border: 1px solid rgba(108,107,181,0.12); color: var(--navy); text-decoration: none;
}
.ct-chat__quick-btn--gold { background: var(--gold); border-color: transparent; }
.ct-chat__topics {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.3rem;
  padding: 0.5rem; border-bottom: 1px solid rgba(108,107,181,0.08);
}
.ct-chat__topics.is-hidden { display: none; }
.ct-chat__topic {
  font-size: 0.62rem; font-weight: 600; padding: 0.4rem;
  border-radius: 6px; border: 1px solid rgba(108,107,181,0.12);
  background: var(--cream); cursor: pointer; text-align: left;
}
.ct-chat__messages {
  flex: 1; overflow-y: auto; padding: 0.75rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  background: var(--cream); font-size: 0.82rem;
}
.ct-chat__msg { max-width: 90%; padding: 0.55rem 0.75rem; border-radius: 10px; }
.ct-chat__msg p { margin: 0; white-space: pre-line; line-height: 1.45; }
.ct-chat__msg--bot { align-self: flex-start; background: #fff; border: 1px solid rgba(108,107,181,0.1); }
.ct-chat__msg--user { align-self: flex-end; background: var(--navy); color: #fff; }
.ct-chat__time { display: block; font-size: 0.58rem; opacity: 0.5; margin-top: 0.2rem; }
.ct-chat__link { display: block; margin-top: 0.35rem; font-weight: 700; font-size: 0.75rem; }
.ct-chat__typing { display: flex; gap: 3px; padding: 0.5rem 0.75rem; background: #fff; border-radius: 10px; align-self: flex-start; }
.ct-chat__typing[hidden] { display: none; }
.ct-chat__typing span { width: 5px; height: 5px; border-radius: 50%; background: var(--purple); animation: dot 1.2s infinite; }
.ct-chat__typing span:nth-child(2) { animation-delay: 0.15s; }
.ct-chat__typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes dot {
  0%, 80%, 100% { opacity: 0.4; transform: scale(0.8); }
  40% { opacity: 1; transform: scale(1); }
}
.ct-chat__chips { display: flex; flex-wrap: wrap; gap: 0.3rem; padding: 0.4rem 0.65rem; }
.ct-chat__chip {
  font-size: 0.62rem; padding: 0.3rem 0.55rem; border-radius: 999px;
  border: 1px solid var(--navy); background: #fff; cursor: pointer; font-weight: 600;
}
.ct-chat__form { display: flex; gap: 0.4rem; padding: 0.55rem; border-top: 1px solid rgba(108,107,181,0.1); }
.ct-chat__input {
  flex: 1; border: 1px solid rgba(108,107,181,0.2); border-radius: 999px;
  padding: 0.5rem 0.85rem; font-size: 0.82rem;
}
.ct-chat__send {
  border: none; background: var(--gold); color: var(--ink);
  border-radius: 999px; padding: 0.5rem 0.75rem; font-weight: 700; cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  .trust-bar__track { animation: none; }
  .reveal { opacity: 1; transform: none; }
  .info-cards--stagger .info-card,
  .reveal.is-visible .info-cards--stagger .info-card {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .info-panel__dialog,
  .info-panel__backdrop { transition: none; }
  .founder-spotlight:hover .founder-spotlight__photo img { transform: none; }
}
