/* Creative Transformations Atelier — Awwwards-inspired editorial experience */
:root {
  --purple: #a070dd;
  --navy: #6c6bb5;
  --navy-deep: #4a4988;
  --teal: #68b7ef;
  --gold: #cea04d;
  --lavender: #e8e4f8;
  --ink: #2d2d3f;
  --muted: #7b7b94;
  --white: #fff;
  --cream: #faf9fc;
  --display: "Syne", system-ui, sans-serif;
  --body: "Outfit", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header: 72px;
  --radius: 16px;
  --max: 1280px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.lenis { scroll-behavior: auto; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  padding-bottom: 5.5rem;
}
body.is-loading { overflow: hidden; }
body.menu-open { overflow: hidden; }
body.cursor-on { cursor: none; }
body.cursor-on .ct-chat,
body.cursor-on .ct-chat * { cursor: auto; }
h1, h2, h3, h4 { font-family: var(--display); line-height: 1.05; margin-top: 0; letter-spacing: -0.04em; }
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
.container { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }

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

/* Preloader */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1.5rem;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}
.preloader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__logo { height: 56px; width: auto; filter: brightness(0) invert(1); opacity: 0; animation: preloaderIn 0.8s var(--ease-out) 0.2s forwards; }
.preloader__bar {
  width: 120px; height: 2px; background: rgba(255,255,255,0.15); border-radius: 2px; overflow: hidden;
}
.preloader__fill {
  height: 100%; width: 0; background: linear-gradient(90deg, var(--purple), var(--gold));
  animation: preloaderBar 1.4s var(--ease-out) 0.3s forwards;
}
@keyframes preloaderIn { to { opacity: 1; } }
@keyframes preloaderBar { to { width: 100%; } }

/* Scroll progress */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 200;
  background: transparent; pointer-events: none;
}
.scroll-progress__bar {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  transform-origin: left;
}

/* Custom cursor */
.cursor {
  position: fixed; width: 12px; height: 12px; border-radius: 50%;
  background: var(--purple); pointer-events: none; z-index: 9998;
  mix-blend-mode: difference; transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s, background 0.25s;
  display: none;
}
.cursor.is-hover { width: 48px; height: 48px; background: var(--gold); }
@media (hover: hover) and (pointer: fine) {
  body.cursor-on .cursor { display: block; }
}

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 150;
  height: var(--header);
  display: flex; align-items: center;
  transition: background 0.4s, backdrop-filter 0.4s;
}
.site-header.is-scrolled,
.site-header--solid {
  background: rgba(250, 249, 252, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(108, 107, 181, 0.1);
}
.site-header--dark:not(.is-scrolled):not(.site-header--solid) .nav-link { color: rgba(255,255,255,0.9); }
.site-header--dark:not(.is-scrolled):not(.site-header--solid) .nav-link:hover { color: var(--gold); }
.site-header--dark:not(.is-scrolled):not(.site-header--solid) .logo img { filter: brightness(0) invert(1); }
.site-header--dark.site-header--solid .logo img,
.site-header--dark.is-scrolled .logo img { filter: none; }
.site-header--dark:not(.is-scrolled):not(.site-header--solid) .nav-cta { background: #fff; color: var(--ink); }
.site-header--dark:not(.is-scrolled):not(.site-header--solid) .nav-toggle span { background: #fff; }
.header-inner {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; width: 100%;
}
.logo img { height: 48px; width: auto; transition: filter 0.3s; }
.nav-desktop { display: none; list-style: none; margin: 0; padding: 0; gap: 2rem; }
@media (min-width: 900px) { .nav-desktop { display: flex; } }
.nav-link {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink);
  transition: color 0.2s;
}
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--purple); }
.nav-cta {
  font-family: var(--display);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  background: var(--ink); color: #fff;
  transition: transform 0.25s, background 0.25s;
}
.site-header--dark:not(.is-scrolled) .nav-cta { background: #fff; color: var(--ink); }
.nav-cta:hover { transform: scale(1.04); background: var(--purple); color: #fff; }
.nav-toggle {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 8px; cursor: pointer;
}
@media (min-width: 900px) { .nav-toggle { display: none; } }
.nav-toggle span { width: 22px; height: 2px; background: currentColor; transition: 0.3s; }
.site-header--dark:not(.is-scrolled) .nav-toggle span { background: #fff; }
.nav-mobile-wrap {
  position: fixed; inset: 0; top: var(--header);
  background: var(--cream);
  padding: 2rem;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s var(--ease-out);
  z-index: 140;
}
.nav-mobile-wrap.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
.nav-mobile { list-style: none; margin: 0; padding: 0; }
.nav-mobile li { margin-bottom: 1rem; }
.nav-mobile a { font-family: var(--display); font-size: 1.5rem; font-weight: 700; }

/* Hero */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: calc(var(--header) + 2rem) 0 3rem;
  color: #fff; overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0; z-index: 0;
}
.hero__media video {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(45,45,63,0.35) 0%, rgba(45,45,63,0.75) 55%, rgba(45,45,63,0.92) 100%),
    radial-gradient(ellipse 80% 50% at 80% 20%, rgba(160,112,221,0.35), transparent 60%);
}
.hero__grain {
  position: absolute; inset: 0; opacity: 0.04; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
  animation: orbFloat 12s ease-in-out infinite;
}
.hero__orb--1 {
  width: 420px; height: 420px;
  background: rgba(160, 112, 221, 0.45);
  top: 10%; right: -10%;
}
.hero__orb--2 {
  width: 320px; height: 320px;
  background: rgba(104, 183, 239, 0.35);
  bottom: 20%; left: -5%;
  animation-delay: -4s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 15px) scale(1.08); }
}
.hero__media video { transition: transform 0.1s linear; will-change: transform; }
.hero__content {
  position: relative; z-index: 2;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}
.hero__eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.5rem; display: block;
}
.hero__title {
  font-size: clamp(2.8rem, 11vw, 7.5rem);
  font-weight: 800;
  line-height: 0.92;
  margin-bottom: 1.5rem;
}
.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__title .line-inner {
  display: block;
  transform: translateY(110%);
  animation: lineUp 1s var(--ease-out) forwards;
}
.hero__title .line:nth-child(2) .line-inner { animation-delay: 0.12s; }
.hero__title .line:nth-child(3) .line-inner { animation-delay: 0.24s; }
.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--teal), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@keyframes lineUp { to { transform: translateY(0); } }
.hero__lead {
  max-width: 32rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: 0.9;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.5s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 0.9; transform: translateY(0); }
}
.hero__row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem 2rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.65s forwards;
}
.hero__scroll {
  margin-left: auto;
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; opacity: 0.7;
}
.hero__scroll-line {
  width: 48px; height: 1px; background: currentColor;
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute; left: 0; top: 0; width: 100%; height: 100%;
  background: var(--gold);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  font-family: var(--display);
  font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 1rem 1.75rem;
  border-radius: 999px;
  border: none; cursor: pointer;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.btn-magnetic { position: relative; }
.btn--gold {
  background: linear-gradient(135deg, var(--gold), #e8c06a);
  color: var(--ink);
  box-shadow: 0 8px 32px rgba(206, 160, 77, 0.4);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(206, 160, 77, 0.5); }
.btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--purple); }

/* Marquee */
.marquee-section { padding: 1.25rem 0; border-block: 1px solid rgba(108,107,181,0.12); overflow: hidden; }
.marquee {
  display: flex; gap: 4rem; width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee img { height: 36px; width: auto; object-fit: contain; opacity: 0.85; filter: grayscale(0.3); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Section common */
.section { padding: clamp(5rem, 12vw, 9rem) 0; position: relative; }
.section--dark { background: var(--ink); color: #fff; }
.section--lavender { background: var(--lavender); }
.section__label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--purple);
  margin-bottom: 1rem; display: block;
}
.section--dark .section__label { color: var(--gold); }
.section__title {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 800;
  max-width: 14ch;
  margin-bottom: 1.5rem;
}
.section__lead { color: var(--muted); max-width: 36rem; font-size: 1.1rem; }
.section--dark .section__lead { color: rgba(255,255,255,0.75); }

/* Reveal animations */
.reveal {
  opacity: 1;
  transform: none;
}
.js-ready .reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.split-text .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.split-text .word-inner {
  display: inline-block;
  transform: translateY(100%);
  transition: transform 0.7s var(--ease-out);
}
.split-text.is-visible .word-inner { transform: translateY(0); }
.no-split .split-text .word-inner { transform: none; }

/* Challenge grid — bento Awwwards style */
.challenge-grid {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .challenge-grid { grid-template-columns: repeat(12, 1fr); grid-auto-rows: minmax(180px, auto); }
}
.challenge-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  min-height: 200px;
  box-shadow: 0 16px 48px rgba(45, 45, 63, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.5s var(--ease-out);
}
.challenge-card:hover { transform: scale(0.98); }
.challenge-card__bg {
  position: absolute; inset: 0;
  object-fit: cover; width: 100%; height: 100%;
  transition: transform 0.8s var(--ease-out);
}
.challenge-card:hover .challenge-card__bg { transform: scale(1.06); }
.challenge-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(45,45,63,0.85) 0%, transparent 60%);
}
.challenge-card__num {
  position: absolute; top: 1.25rem; right: 1.25rem;
  font-family: var(--display);
  font-size: 3rem; font-weight: 800;
  color: rgba(255,255,255,0.15);
  line-height: 1;
}
.challenge-card__content { position: relative; z-index: 1; color: #fff; }
.challenge-card h3 { font-size: 1.25rem; margin-bottom: 0.35rem; }
.challenge-card p { margin: 0; font-size: 0.88rem; opacity: 0.85; }
.challenge-card--1 { grid-column: span 12; min-height: 320px; }
@media (min-width: 768px) {
  .challenge-card--1 { grid-column: span 7; grid-row: span 2; min-height: 400px; }
  .challenge-card--2 { grid-column: span 5; }
  .challenge-card--3 { grid-column: span 4; }
  .challenge-card--4 { grid-column: span 8; }
}

/* Horizontal scroll team — Awwwards pattern */
.h-scroll {
  height: 220vh;
  position: relative;
}
.h-scroll--native {
  height: auto !important;
}
.h-scroll__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ink);
  color: #fff;
}
.h-scroll--native .h-scroll__sticky {
  position: relative;
  height: auto;
  min-height: 0;
  padding: clamp(4rem, 10vw, 6rem) 0;
  overflow: visible;
}
.h-scroll__head {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto 2rem;
  padding-top: var(--header);
}
.h-scroll__track-wrap {
  overflow: hidden;
  padding-left: max(1.25rem, calc((100vw - var(--max)) / 2 + 1.25rem));
}
.h-scroll--native .h-scroll__track-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
  padding-bottom: 0.5rem;
}
.h-scroll__track {
  display: flex;
  gap: 1.5rem;
  will-change: transform;
}
.h-scroll--native .h-scroll__track {
  transform: none !important;
  will-change: auto;
  padding-right: 1.25rem;
}
.h-scroll--native .talent-card {
  scroll-snap-align: start;
}
.talent-card {
  flex: 0 0 clamp(260px, 32vw, 340px);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.talent-card:hover {
  border-color: rgba(206, 160, 77, 0.5);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.25);
}
.talent-card__img {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.talent-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center top;
  transition: transform 0.6s var(--ease-out);
}
.talent-card:hover .talent-card__img img { transform: scale(1.05); }
.talent-card__body { padding: 1.25rem 1.35rem 1.5rem; }
.talent-card__body h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.talent-card__role {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 0.5rem;
}
.talent-card__body p { margin: 0; font-size: 0.85rem; opacity: 0.75; line-height: 1.5; }
.talent-card--lead {
  flex-basis: clamp(300px, 38vw, 400px);
  border: 2px solid var(--gold);
}
.h-scroll__progress {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  width: min(200px, 40vw); height: 2px;
  background: rgba(255,255,255,0.15); border-radius: 2px;
}
.h-scroll__progress-fill {
  height: 100%; width: 0; background: var(--gold);
  border-radius: 2px;
  transition: width 0.1s linear;
}

/* Transform pinned */
.transform-pin {
  min-height: 100vh;
  display: grid;
  align-items: center;
}
.transform-stages {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}
@media (min-width: 900px) {
  .transform-stages { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
.transform-stage {
  padding: 2.5rem;
  border-radius: var(--radius);
  transition: opacity 0.4s, transform 0.4s;
}
.transform-stage--before {
  background: #fff;
  border: 2px solid #e8b4b4;
}
.transform-stage--after {
  background: linear-gradient(145deg, #fff, #f0faf5);
  border: 2px solid #9fd4b8;
}
.transform-stage h3 {
  font-size: 0.75rem; letter-spacing: 0.15em;
  text-transform: uppercase; margin-bottom: 1.25rem;
}
.transform-stage ul { margin: 0; padding: 0; list-style: none; }
.transform-stage li {
  padding: 0.5rem 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(45,45,63,0.08);
}
.transform-stage li:last-child { border-bottom: none; }

/* Solutions list — editorial numbered */
.solutions-list { margin-top: 3rem; }
.solution-row {
  display: grid;
  gap: 1.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(108,107,181,0.15);
  align-items: center;
  transition: background 0.3s;
}
@media (min-width: 768px) {
  .solution-row { grid-template-columns: 80px 1fr 280px; gap: 2rem; }
}
.solution-row:hover { background: rgba(232,228,248,0.4); margin-inline: -1.5rem; padding-inline: 1.5rem; border-radius: var(--radius); }
.solution-row__num {
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--lavender);
  line-height: 1;
  -webkit-text-stroke: 1px var(--purple);
  color: transparent;
}
.solution-row h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.solution-row p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.solution-row__img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/10;
  display: none;
}
@media (min-width: 768px) { .solution-row__img { display: block; } }
.solution-row__img img { width: 100%; height: 100%; object-fit: cover; }

/* Results showcase */
.results-showcase {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
}
@media (min-width: 900px) {
  .results-showcase { grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: auto auto; }
  .results-showcase__hero { grid-row: span 2; }
}
.results-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.results-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.results-card:hover img { transform: scale(1.05); }
.results-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(45,45,63,0.9), transparent 50%);
}
.results-card__body {
  position: relative; z-index: 1;
  padding: 1.75rem; color: #fff;
}
.results-card__body h3 { font-size: 1.2rem; margin-bottom: 0.25rem; }
.results-card__body p { margin: 0; opacity: 0.8; font-size: 0.9rem; }
.results-card--stat {
  background: linear-gradient(145deg, var(--purple), var(--navy));
  min-height: 200px;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.results-card--stat strong {
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 5rem);
  display: block;
  line-height: 1;
}
.results-card--stat span { opacity: 0.9; font-size: 0.95rem; max-width: 16rem; }

/* Testimonials */
.testimonial-slider {
  margin-top: 3rem;
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) { .testimonial-slider { grid-template-columns: repeat(2, 1fr); } }
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(108,107,181,0.12);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(108,107,181,0.15);
}
.testimonial-card img { height: 40px; margin-bottom: 1rem; object-fit: contain; }
.testimonial-card blockquote {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  line-height: 1.65;
  font-style: italic;
  color: var(--ink);
}
.testimonial-card footer strong { display: block; font-size: 0.9rem; }
.testimonial-card footer span { font-size: 0.8rem; color: var(--muted); }

/* CTA band */
.cta-band {
  padding: clamp(4rem, 10vw, 7rem) 0;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 80% at 50% 100%, rgba(160,112,221,0.2), transparent),
    var(--ink);
  color: #fff;
}
.cta-band h2 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  max-width: 16ch;
  margin: 0 auto 1rem;
}
.cta-band p { opacity: 0.8; max-width: 28rem; margin: 0 auto 2rem; }

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.85);
  padding: 3rem 0 2rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; } }
.site-footer img { filter: brightness(0) invert(1); max-width: 220px; margin-bottom: 1rem; }
.site-footer a { color: var(--teal); }
.site-footer a:hover { color: #fff; }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  opacity: 0.7;
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between;
}

/* Inner pages */
body.inner-page { background: var(--cream); }
.page-hero {
  padding: calc(var(--header) + 4rem) 0 3rem;
  background: var(--ink);
  color: #fff;
}
.page-hero .section__label { color: var(--gold); }
.page-hero h1 { font-size: clamp(2rem, 6vw, 3.5rem); }
.page-hero .lead { opacity: 0.85; max-width: 40rem; margin: 0; }
.content-section { padding: 3rem 0; }
.vision-mission { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .vision-mission { grid-template-columns: 1fr 1fr; } }
.card {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(108,107,181,0.1);
  box-shadow: 0 12px 40px rgba(108,107,181,0.08);
}
.card h2 { font-size: 1.25rem; color: var(--navy); margin-bottom: 0.75rem; }
.team-detail {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(108,107,181,0.1);
  overflow: hidden;
}
.team-detail img {
  width: 120px; height: 120px;
  border-radius: 50%;
  object-fit: cover;
  float: left;
  margin: 0 1.5rem 0.75rem 0;
  border: 3px solid var(--lavender);
}
.team-detail h2 { font-size: 1.35rem; color: var(--navy); }
.team-detail .role { color: var(--purple); font-weight: 700; font-size: 0.85rem; margin-bottom: 1rem; }
.team-detail p { color: var(--muted); }
.content-block {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(108,107,181,0.12);
}
.content-block h2 { color: var(--navy); margin-bottom: 1rem; }
.content-block p { color: var(--muted); }
.ai-cards { display: grid; gap: 1.25rem; }
@media (min-width: 768px) { .ai-cards { grid-template-columns: repeat(2, 1fr); } }
.ai-card {
  background: #fff;
  padding: 1.75rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--purple);
  box-shadow: 0 8px 32px rgba(108,107,181,0.1);
}
.ai-card h3 { color: var(--navy); font-size: 1.1rem; }
.ai-card p { color: var(--muted); margin: 0 0 0.5rem; }
.privacy-content h2 { font-size: 1.1rem; color: var(--navy); margin-top: 2rem; }
.privacy-content p, .privacy-content li { color: var(--muted); }

/* Studio-compat (inner pages copied from studio) */
.header-inner {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; height: var(--header);
}
.logo-link img { height: 48px; width: auto; }
.nav-desktop a {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink);
}
.nav-desktop a:hover, .nav-desktop a[aria-current="page"] { color: var(--purple); }
.btn-primary, .nav-cta-desktop {
  font-family: var(--display);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  background: var(--ink); color: #fff;
  text-decoration: none;
  display: inline-flex;
}
.btn-primary:hover { background: var(--purple); }
.eyebrow {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--purple);
}
.section-heading {
  font-family: var(--display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
}
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.experts-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}
.experts-grid .expert-card { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(108,107,181,0.1); }
.experts-grid .expert-card__visual { aspect-ratio: 1; overflow: hidden; position: relative; }
.experts-grid .expert-card__visual img { width: 100%; height: 100%; object-fit: cover; }
.experts-grid .expert-card__badge {
  position: absolute; bottom: 0.75rem; left: 0.75rem;
  font-size: 0.6rem; font-weight: 700; padding: 0.25rem 0.5rem;
  background: var(--gold); color: #fff; border-radius: 999px;
}
.experts-grid .expert-card__content { padding: 1rem; text-align: center; }
.experts-grid .expert-card__role { font-size: 0.7rem; color: var(--purple); font-weight: 700; }
.experts-grid .expert-card__link { font-size: 0.75rem; font-weight: 700; color: var(--navy); }
.solutions-nav { display: none; }
.solution-block { background: #fff; padding: 2rem; border-radius: var(--radius); margin-bottom: 1.5rem; border: 1px solid rgba(108,107,181,0.1); }
.solution-block h2 { color: var(--navy); }
.site-footer.studio-footer, footer.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.85); padding: 3rem 0; }
body.inner-page .site-header, body.studio .site-header {
  background: rgba(250, 249, 252, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(108, 107, 181, 0.1);
}
body.inner-page .site-header.is-scrolled, body.studio .site-header.is-scrolled { box-shadow: 0 8px 32px rgba(108,107,181,0.12); }

/* Counter */
.stat-counter {
  font-family: var(--display);
  font-variant-numeric: tabular-nums;
}

/* Chapter nav */
.chapter-nav {
  position: fixed;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 130;
  display: none;
  flex-direction: column;
  gap: 0.35rem;
}
@media (min-width: 1100px) { .chapter-nav { display: flex; } }
.chapter-nav a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(108, 107, 181, 0.15);
  backdrop-filter: blur(8px);
  transition: all 0.25s var(--ease-out);
  position: relative;
}
.chapter-nav a::after {
  content: attr(data-label);
  position: absolute;
  left: calc(100% + 10px);
  white-space: nowrap;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  background: #fff;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-6px);
  transition: 0.2s var(--ease-out);
}
.chapter-nav a:hover::after,
.chapter-nav a.is-active::after {
  opacity: 1;
  transform: translateX(0);
}
.chapter-nav a:hover,
.chapter-nav a.is-active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: scale(1.08);
}

/* Impact strip */
.impact-strip {
  padding: 2.5rem 0;
  background: #fff;
  border-bottom: 1px solid rgba(108, 107, 181, 0.1);
  box-shadow: 0 12px 40px rgba(108, 107, 181, 0.06);
}
.impact-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) { .impact-strip__grid { grid-template-columns: repeat(4, 1fr); } }
.impact-stat {
  text-align: center;
  padding: 1rem;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--lavender), #fff);
  border: 1px solid rgba(108, 107, 181, 0.08);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.impact-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(108, 107, 181, 0.12);
}
.impact-stat strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
}
.impact-stat span {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Stagger reveals */
.reveal-stagger > * {
  opacity: 1;
  transform: none;
}
.js-ready .reveal-stagger > * {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.js-ready .reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.js-ready .reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.12s; }
.js-ready .reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.19s; }
.js-ready .reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.26s; }
.js-ready .reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.33s; }
.js-ready .reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.4s; }
.js-ready .reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }

/* Process grid */
.section--process {
  background:
    radial-gradient(ellipse 60% 50% at 0% 50%, rgba(160, 112, 221, 0.08), transparent),
    var(--cream);
}
.process-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 900px) { .process-grid { grid-template-columns: repeat(3, 1fr); } }
.process-card {
  background: #fff;
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(108, 107, 181, 0.1);
  box-shadow: 0 12px 40px rgba(108, 107, 181, 0.08);
  transition: transform 0.35s var(--ease-out), border-color 0.35s;
  position: relative;
  overflow: hidden;
}
.process-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.process-card:hover {
  transform: translateY(-6px);
  border-color: var(--purple);
}
.process-card:hover::before { transform: scaleX(1); }
.process-card__num {
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--lavender);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.process-card h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 0.5rem; }
.process-card p { margin: 0; font-size: 0.92rem; color: var(--muted); line-height: 1.55; }

/* Explore strip */
.explore-strip {
  padding: clamp(4rem, 10vw, 6rem) 0;
  background: linear-gradient(160deg, var(--ink), var(--navy-deep));
  color: #fff;
}
.explore-strip .section__label { color: var(--gold); }
.explore-strip .section__title { color: #fff; max-width: none; }
.explore-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 768px) { .explore-grid { grid-template-columns: repeat(3, 1fr); } }
.explore-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
  transition: transform 0.35s var(--ease-out), background 0.35s, border-color 0.35s;
  position: relative;
}
.explore-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold);
  color: #fff;
}
.explore-card--accent { border-color: rgba(206, 160, 77, 0.5); }
.explore-card__icon {
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.explore-card h3 { font-size: 1.1rem; margin-bottom: 0.35rem; }
.explore-card p { margin: 0 0 1rem; font-size: 0.88rem; opacity: 0.8; flex: 1; }
.explore-card__arrow {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--gold);
  transition: transform 0.25s;
}
.explore-card:hover .explore-card__arrow { transform: translateX(6px); }

/* Featured quote */
.quote-feature {
  margin: 0 0 2.5rem;
  padding: 2.5rem 2rem;
  transition: opacity 0.35s var(--ease-out);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--lavender), #fff);
  border-left: 5px solid var(--gold);
  box-shadow: 0 20px 56px rgba(108, 107, 181, 0.12);
  border: 1px solid rgba(108, 107, 181, 0.1);
  border-left: 5px solid var(--gold);
  transition: opacity 0.4s;
}
.quote-feature p {
  font-family: var(--display);
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 1.25rem;
  font-style: italic;
}
.quote-feature footer strong { display: block; color: var(--navy); }
.quote-feature footer span { font-size: 0.85rem; color: var(--muted); }
.testimonial-card {
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.testimonial-card.is-active {
  border-color: var(--purple);
  box-shadow: 0 0 0 2px rgba(160, 112, 221, 0.25), 0 20px 48px rgba(108, 107, 181, 0.15);
  transform: translateY(-2px);
}

/* Back to top */
.back-top {
  position: fixed;
  right: 1.25rem;
  bottom: 6.5rem;
  z-index: 190;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 8px 28px rgba(108, 107, 181, 0.25);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s var(--ease-out), background 0.2s;
}
.back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-top:hover {
  background: var(--purple);
  color: #fff;
}
.ct-chat.is-open ~ .back-top,
body:has(.ct-chat.is-open) .back-top { bottom: 7.5rem; }

/* CT Guide chatbot */
.ct-chat {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 250;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}
.ct-chat__toggle {
  position: relative;
  z-index: 3;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--navy), var(--purple));
  color: #fff;
  font-size: 1.45rem;
  box-shadow: 0 12px 40px rgba(74, 73, 136, 0.45);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ct-chat__toggle-icon { line-height: 1; pointer-events: none; }
.ct-chat__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  animation: chatPulse 2.5s ease-out infinite;
  pointer-events: none;
}
.ct-chat.is-open .ct-chat__pulse { display: none; }
@keyframes chatPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.35); opacity: 0; }
}
.ct-chat__toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 16px 48px rgba(160, 112, 221, 0.5);
}
.ct-chat.is-open .ct-chat__toggle {
  background: var(--ink);
}
.ct-chat__panel {
  display: none;
  width: min(400px, calc(100vw - 2rem));
  height: min(580px, calc(100dvh - 6rem));
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 28px 80px rgba(45, 45, 63, 0.22);
  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: 1rem 1.1rem;
  background: linear-gradient(135deg, var(--ink), var(--navy-deep));
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.ct-chat__avatar {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  color: #fff;
}
.ct-chat__head-text { flex: 1; min-width: 0; }
.ct-chat__head-text h3 {
  font-family: var(--display);
  font-size: 0.95rem;
  margin: 0 0 0.15rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.ct-chat__status {
  font-size: 0.6rem;
  font-weight: 600;
  font-family: var(--body);
  color: #7dffa8;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ct-chat__status::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
  margin-right: 4px;
  vertical-align: middle;
  animation: statusBlink 2s ease-in-out infinite;
}
@keyframes statusBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.ct-chat__head-text p { margin: 0; font-size: 0.7rem; opacity: 0.85; }
.ct-chat__quick {
  display: flex;
  gap: 0.4rem;
  padding: 0.6rem 0.75rem;
  background: var(--lavender);
  border-bottom: 1px solid rgba(108, 107, 181, 0.08);
  flex-shrink: 0;
}
.ct-chat__quick-btn {
  flex: 1;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.45rem 0.35rem;
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  text-decoration: none;
  border: 1px solid rgba(108, 107, 181, 0.15);
  transition: background 0.2s, color 0.2s;
}
.ct-chat__quick-btn:hover {
  background: var(--navy);
  color: #fff;
}
.ct-chat__quick-btn--gold {
  background: linear-gradient(135deg, var(--gold), #e8c06a);
  color: var(--ink);
  border-color: transparent;
}
.ct-chat__quick-btn--gold:hover {
  filter: brightness(1.05);
  color: var(--ink);
}
.ct-chat__topics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem;
  padding: 0.65rem 0.75rem;
  background: #fff;
  border-bottom: 1px solid rgba(108, 107, 181, 0.08);
  flex-shrink: 0;
  transition: max-height 0.3s, opacity 0.3s, padding 0.3s;
}
.ct-chat__topics.is-hidden {
  display: none;
}
.ct-chat__topic {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.5rem 0.6rem;
  border-radius: 8px;
  border: 1px solid rgba(108, 107, 181, 0.15);
  background: var(--lavender);
  color: var(--navy);
  cursor: pointer;
  font-family: var(--body);
  text-align: left;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.ct-chat__topic:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}
.ct-chat__head-actions {
  display: flex;
  gap: 0.35rem;
  flex-shrink: 0;
}
.ct-chat__clear,
.ct-chat__close {
  min-width: 34px;
  min-height: 34px;
  padding: 0;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
  font-family: var(--body);
}
.ct-chat__close { font-size: 1.1rem; }
.ct-chat__clear:hover,
.ct-chat__close:hover { background: rgba(255, 255, 255, 0.3); }
.ct-chat__messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--lavender);
  scroll-behavior: smooth;
}
.ct-chat__msg {
  max-width: 90%;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  font-size: 0.88rem;
  animation: chatIn 0.35s var(--ease-out);
}
@keyframes chatIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.ct-chat__msg p { margin: 0; white-space: pre-line; line-height: 1.5; }
.ct-chat__msg--bot {
  align-self: flex-start;
  background: #fff;
  border: 1px solid rgba(108, 107, 181, 0.12);
  box-shadow: 0 4px 16px rgba(108, 107, 181, 0.08);
}
.ct-chat__msg--user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--navy), var(--purple));
  color: #fff;
}
.ct-chat__time {
  display: block;
  font-size: 0.62rem;
  opacity: 0.55;
  margin-top: 0.35rem;
}
.ct-chat__msg--user .ct-chat__time { opacity: 0.75; }
.ct-chat__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.55rem;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--purple);
}
.ct-chat__msg--user .ct-chat__link { color: var(--gold); }
.ct-chat__typing {
  align-self: flex-start;
  padding: 0.65rem 1rem;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(108, 107, 181, 0.1);
  display: flex;
  gap: 4px;
}
.ct-chat__typing[hidden] { display: none; }
.ct-chat__typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  animation: typingDot 1.2s ease-in-out infinite;
}
.ct-chat__typing span:nth-child(2) { animation-delay: 0.15s; }
.ct-chat__typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typingDot {
  0%, 80%, 100% { transform: scale(0.7); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}
.ct-chat__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.5rem 1rem 0.65rem;
  background: #fff;
  border-top: 1px solid rgba(108, 107, 181, 0.08);
  max-height: 88px;
  overflow-y: auto;
}
.ct-chat__chip {
  font-size: 0.7rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--navy);
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  font-weight: 600;
  font-family: var(--body);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.ct-chat__chip:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.ct-chat__form {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem;
  border-top: 1px solid rgba(108, 107, 181, 0.1);
  background: #fff;
  flex-shrink: 0;
}
.ct-chat__input {
  flex: 1;
  border: 1px solid rgba(108, 107, 181, 0.2);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  font-family: var(--body);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ct-chat__input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(160, 112, 221, 0.2);
}
.ct-chat__send {
  border: none;
  background: linear-gradient(135deg, var(--gold), #e8c06a);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.65rem 1.1rem;
  font-weight: 700;
  font-family: var(--display);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s;
}
.ct-chat__send:hover { transform: scale(1.04); }
.ct-chat__send {
  min-width: 44px;
  padding: 0.65rem;
  font-size: 1.1rem;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .h-scroll { height: auto; }
  .h-scroll__sticky { position: relative; height: auto; padding: 4rem 0; }
  .h-scroll__track { transform: none !important; }
  body.cursor-on { cursor: auto; }
  .cursor { display: none !important; }
}
@media (max-width: 899px) {
  .h-scroll { height: auto; }
  .h-scroll__progress { display: none; }
}
