/* ==========================================================================
   Pixel Bridge LLC — Site Stylesheet
   Palette: Midnight Navy #111827 · Electric Purple #7C3AED · Coral #FF5C5C
            Aqua #21D4C2 · Yellow #FBBF24 · Off-White #F8FAFC · Slate #475569
   Type:    Space Grotesk (display) · Inter (body)
   ========================================================================== */

:root {
  --navy: #111827;
  --navy-800: #1B2436;
  --navy-700: #253049;
  --purple: #7C3AED;
  --purple-600: #6D28D9;
  --purple-soft: #EDE6FB;
  --coral: #FF5C5C;
  --coral-soft: #FFEAEA;
  --aqua: #21D4C2;
  --aqua-soft: #DFF8F5;
  --yellow: #FBBF24;
  --yellow-soft: #FEF3D7;
  --bg: #F8FAFC;
  --white: #FFFFFF;
  --slate: #475569;
  --slate-light: #7C8BA1;
  --line: #E5EAF1;
  --line-dark: rgba(255, 255, 255, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(17, 24, 39, 0.05);
  --shadow-md: 0 6px 24px -6px rgba(17, 24, 39, 0.10);
  --shadow-lg: 0 18px 48px -12px rgba(17, 24, 39, 0.18);
  --font-display: "Space Grotesk", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --nav-h: 76px;
  --wrap: 1180px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--slate);
  background: var(--bg);
  overflow-x: hidden;
}
img, svg, canvas { max-width: 100%; display: block; }
a { color: var(--purple); text-decoration: none; }
a:hover { text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 3.9rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.32rem; }
h4 { font-size: 1.08rem; }
p { margin: 0 0 1.1em; max-width: 68ch; }
ul, ol { padding-left: 1.25em; margin: 0 0 1.2em; }
li { margin-bottom: 0.45em; }
strong { color: var(--navy); }
:focus-visible { outline: 3px solid var(--aqua); outline-offset: 2px; border-radius: 4px; }
::selection { background: var(--purple); color: #fff; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--navy); color: #fff; padding: 10px 18px; border-radius: 0 0 10px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: 92px 0; }
.section--tight { padding: 64px 0; }
.section--ink { background: var(--navy); }
.section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }
.section--ink p, .section--ink li { color: #B9C2D4; }
.section--ink strong { color: #fff; }
.section--ink a:not(.btn) { color: #C4B5FD; text-decoration: underline; text-underline-offset: 3px; }
.section--white { background: var(--white); }

.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--purple);
  margin-bottom: 14px;
}
.kicker::before { content: ""; width: 22px; height: 3px; border-radius: 2px; background: linear-gradient(90deg, var(--purple), var(--aqua)); }
.section--ink .kicker { color: var(--aqua); }
.section-head { max-width: 780px; margin-bottom: 48px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center p { margin-left: auto; margin-right: auto; }
.lead { font-size: 1.16rem; }

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 120;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(17, 24, 39, 0.88);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: height 0.25s ease, background 0.25s ease;
}
.site-header.is-scrolled { height: 62px; background: rgba(17, 24, 39, 0.97); box-shadow: var(--shadow-md); }
.nav-bar { display: flex; align-items: center; gap: 28px; width: 100%; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; color: #fff; letter-spacing: -0.01em; }
.brand:hover { color: #fff; }
.brand .brand-llc { color: var(--slate-light); font-weight: 500; font-size: 0.78em; margin-left: 2px; }
.brand svg { width: 34px; height: 34px; }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0 0 0 auto; padding: 0; }
.nav-links li { margin: 0; }
.nav-links a {
  color: #C7CEDC; font-size: 0.95rem; font-weight: 500; position: relative; padding: 6px 2px;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: linear-gradient(90deg, var(--aqua), var(--purple)); transition: right 0.25s ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: #fff; }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { right: 0; }
.nav-cta { margin-left: 8px; }
.nav-toggle {
  display: none; margin-left: auto; background: none; border: 0; cursor: pointer; padding: 10px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 110;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--navy); border-bottom: 1px solid var(--line-dark);
    padding: 10px 24px 24px; margin: 0;
    transform: translateY(-8px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
  }
  .site-header.is-scrolled .nav-links { top: 62px; }
  .nav-links.is-open { transform: none; opacity: 1; visibility: visible; pointer-events: auto; }
  .nav-links a { display: block; padding: 13px 4px; font-size: 1.05rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .nav-links a::after { display: none; }
  .nav-cta { margin: 16px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  text-decoration: none; line-height: 1.2;
}
.btn:active { transform: translateY(1px) scale(0.98); }
.btn svg { width: 18px; height: 18px; flex: none; transition: transform 0.18s ease; }
.btn:hover svg { transform: translateX(3px); }
.btn--primary { background: linear-gradient(135deg, var(--purple), var(--purple-600)); color: #fff; box-shadow: 0 8px 22px -8px rgba(124, 58, 237, 0.55); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(124, 58, 237, 0.65); color: #fff; }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.35); }
.btn--ghost:hover { border-color: var(--aqua); color: var(--aqua); transform: translateY(-2px); }
.btn--ghost-dark { background: transparent; color: var(--navy); border-color: #CBD5E1; }
.btn--ghost-dark:hover { border-color: var(--purple); color: var(--purple); transform: translateY(-2px); }
.btn--coral { background: var(--coral); color: #fff; box-shadow: 0 8px 22px -8px rgba(255, 92, 92, 0.55); }
.btn--coral:hover { transform: translateY(-2px); background: #F04B4B; color: #fff; }
.btn--aqua { background: var(--aqua); color: var(--navy); box-shadow: 0 8px 22px -8px rgba(33, 212, 194, 0.5); }
.btn--aqua:hover { transform: translateY(-2px); background: #1BC0AF; color: var(--navy); }
.btn--sm { padding: 10px 20px; font-size: 0.92rem; }
.btn--lg { padding: 17px 34px; font-size: 1.08rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 7px; font-weight: 600;
  font-family: var(--font-display); color: var(--purple); font-size: 0.98rem;
}
.link-arrow svg { width: 17px; height: 17px; transition: transform 0.2s ease; }
.link-arrow:hover svg { transform: translateX(4px); }
.link-arrow--aqua { color: var(--aqua); }

/* ---------- Hero ---------- */
.hero {
  position: relative; background: var(--navy); color: #fff;
  padding: calc(var(--nav-h) + 72px) 0 0; overflow: hidden;
}
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.35; pointer-events: none;
}
.hero::before { width: 520px; height: 520px; background: var(--purple); top: -180px; left: -140px; animation: drift 16s ease-in-out infinite alternate; }
.hero::after { width: 420px; height: 420px; background: var(--aqua); bottom: -200px; right: -120px; opacity: 0.22; animation: drift 20s ease-in-out infinite alternate-reverse; }
@keyframes drift { from { transform: translate(0, 0); } to { transform: translate(60px, 40px); } }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; padding-bottom: 72px; }
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 .hl-purple { color: #A78BFA; }
.hero h1 .hl-aqua { color: var(--aqua); }
.hero p.lead { color: #C3CBDA; font-size: 1.18rem; margin-bottom: 30px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 8px; }
.hero-visual { position: relative; min-height: 420px; }
.hero-visual canvas { width: 100%; height: 100%; position: absolute; inset: 0; }
.hero-visual .bridge-label {
  position: absolute; z-index: 3; font-family: var(--font-display); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: #9AA5B8;
  background: rgba(17, 24, 39, 0.72); border: 1px solid var(--line-dark);
  padding: 6px 12px; border-radius: 999px;
}
.bridge-label--brand { left: 0; bottom: 18%; }
.bridge-label--customer { right: 0; top: 14%; }
.hero-trust { position: relative; z-index: 2; border-top: 1px solid var(--line-dark); padding: 26px 0 30px; }
.hero-trust ul { display: flex; flex-wrap: wrap; gap: 14px 38px; list-style: none; margin: 0; padding: 0; }
.hero-trust li { display: inline-flex; align-items: center; gap: 10px; color: #AEB8C9; font-size: 0.94rem; margin: 0; }
.hero-trust li svg { width: 18px; height: 18px; color: var(--aqua); flex: none; }
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-visual { min-height: 320px; }
}

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 26px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: #D8DFEA; }
.card h3 { margin-top: 18px; }
.card p:last-child { margin-bottom: 0; }
.icon-chip {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
}
.icon-chip svg { width: 26px; height: 26px; }
.icon-chip--purple { background: var(--purple-soft); color: var(--purple); }
.icon-chip--coral { background: var(--coral-soft); color: var(--coral); }
.icon-chip--aqua { background: var(--aqua-soft); color: #0E9488; }
.icon-chip--yellow { background: var(--yellow-soft); color: #B45309; }
.icon-chip--navy { background: #E7EAF2; color: var(--navy); }

.card--service { display: flex; flex-direction: column; }
.card--service .link-arrow { margin-top: auto; padding-top: 14px; }
.card--tinted-top { border-top: 4px solid var(--purple); }
.card--tinted-top.t-coral { border-top-color: var(--coral); }
.card--tinted-top.t-aqua { border-top-color: var(--aqua); }
.card--tinted-top.t-yellow { border-top-color: var(--yellow); }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split--rev > :first-child { order: 2; }
@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split--rev > :first-child { order: 0; }
}
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { display: flex; gap: 13px; align-items: flex-start; margin-bottom: 14px; }
.check-list svg { width: 21px; height: 21px; color: var(--aqua); flex: none; margin-top: 3px; }
.check-list strong { display: block; }
.section--ink .check-list svg { color: var(--aqua); }

/* ---------- Process timeline ---------- */
.timeline { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; position: relative; counter-reset: step; }
.timeline::before {
  content: ""; position: absolute; top: 26px; left: 4%; right: 4%; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--purple), var(--aqua), var(--yellow));
  opacity: 0.35;
}
.step { position: relative; padding-top: 66px; }
.step .step-dot {
  position: absolute; top: 0; left: 0;
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--purple-600));
  box-shadow: 0 6px 16px -6px rgba(124, 58, 237, 0.6);
}
.step:nth-child(2) .step-dot { background: linear-gradient(135deg, #8B5CF6, var(--purple)); }
.step:nth-child(3) .step-dot { background: linear-gradient(135deg, var(--coral), #F04B4B); }
.step:nth-child(4) .step-dot { background: linear-gradient(135deg, #1BC0AF, var(--aqua)); color: var(--navy); }
.step:nth-child(5) .step-dot { background: linear-gradient(135deg, var(--yellow), #F59E0B); color: var(--navy); }
.step:nth-child(6) .step-dot { background: linear-gradient(135deg, var(--navy-700), var(--navy)); }
.step h3 { font-size: 1.06rem; margin-bottom: 6px; }
.step p { font-size: 0.92rem; margin: 0; }
@media (max-width: 980px) {
  .timeline { grid-template-columns: 1fr; gap: 0; }
  .timeline::before { top: 8px; bottom: 8px; left: 25px; right: auto; width: 3px; height: auto; background: linear-gradient(180deg, var(--purple), var(--aqua), var(--yellow)); }
  .step { padding: 0 0 34px 84px; }
  .step:last-child { padding-bottom: 0; }
}

/* ---------- Platforms ---------- */
.platform-card { text-align: center; padding: 26px 18px; }
.platform-card .icon-chip { margin: 0 auto 6px; }
.platform-card h3 { font-size: 1rem; margin: 12px 0 4px; }
.platform-card p { font-size: 0.86rem; margin: 0; }
.grid--platforms { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 1080px) { .grid--platforms { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .grid--platforms { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Metrics / dashboard ---------- */
.dash {
  background: var(--navy-800); border: 1px solid var(--line-dark); border-radius: 22px;
  padding: 38px; box-shadow: var(--shadow-lg);
}
.dash-note { display: inline-flex; align-items: center; gap: 8px; font-size: 0.82rem; color: #93A0B5; background: rgba(255,255,255,0.06); border: 1px solid var(--line-dark); border-radius: 999px; padding: 5px 14px; margin-bottom: 26px; }
.dash-note svg { width: 15px; height: 15px; color: var(--yellow); }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .metric-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .metric-grid { grid-template-columns: 1fr; } }
.metric { background: rgba(255,255,255,0.045); border: 1px solid var(--line-dark); border-radius: 14px; padding: 22px 22px 18px; }
.metric .m-label { display: block; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: #8E9AB0; font-family: var(--font-display); font-weight: 600; }
.metric .m-value { display: block; font-family: var(--font-display); font-weight: 700; font-size: 2rem; color: #fff; margin: 6px 0 2px; }
.metric .m-value .unit { font-size: 1.1rem; color: #A9B4C7; }
.metric .m-trend { font-size: 0.85rem; display: inline-flex; align-items: center; gap: 6px; }
.metric .m-trend svg { width: 14px; height: 14px; }
.m-trend--up { color: var(--aqua); }
.m-trend--down { color: var(--yellow); }
.metric .m-bar { display: block; height: 6px; border-radius: 3px; background: rgba(255,255,255,0.08); margin-top: 14px; overflow: hidden; }
.metric .m-bar i { display: block; height: 100%; border-radius: 3px; width: 0; transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1); }
.metric.is-in .m-bar i { width: var(--w, 60%); }
.m-bar .fill-purple { background: linear-gradient(90deg, var(--purple), #A78BFA); }
.m-bar .fill-aqua { background: linear-gradient(90deg, #1BC0AF, var(--aqua)); }
.m-bar .fill-coral { background: linear-gradient(90deg, var(--coral), #FF8A8A); }
.m-bar .fill-yellow { background: linear-gradient(90deg, #F59E0B, var(--yellow)); }

/* ---------- Chips (industries) ---------- */
.chip-grid { display: flex; flex-wrap: wrap; gap: 14px; }
.chip {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--white); border: 1px solid var(--line); border-radius: 999px;
  padding: 11px 20px; font-weight: 600; color: var(--navy); font-family: var(--font-display); font-size: 0.95rem;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.chip:hover { transform: translateY(-3px); border-color: var(--purple); box-shadow: var(--shadow-md); color: var(--purple); }
.chip svg { width: 17px; height: 17px; color: var(--purple); }

/* ---------- Case studies ---------- */
.case-card { overflow: hidden; padding: 0; display: flex; flex-direction: column; }
.case-cover { height: 150px; position: relative; display: flex; align-items: flex-end; padding: 18px; }
.case-cover--purple { background: linear-gradient(135deg, var(--purple) 0%, #4C1D95 100%); }
.case-cover--coral { background: linear-gradient(135deg, var(--coral) 0%, #C2410C 100%); }
.case-cover--aqua { background: linear-gradient(135deg, var(--aqua) 0%, #0F766E 100%); }
.case-cover .pixel-deco { position: absolute; inset: 0; opacity: 0.5; }
.case-tag { position: relative; z-index: 1; background: rgba(17,24,39,0.55); color: #fff; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; font-family: var(--font-display); }
.case-body { padding: 26px 28px 28px; display: flex; flex-direction: column; flex: 1; }
.case-body dl { margin: 0 0 16px; }
.case-body dt { font-family: var(--font-display); font-weight: 600; color: var(--navy); font-size: 0.86rem; text-transform: uppercase; letter-spacing: 0.07em; margin-top: 12px; }
.case-body dd { margin: 2px 0 0; font-size: 0.95rem; }
.badge-placeholder {
  display: inline-flex; align-items: center; gap: 7px; align-self: flex-start;
  background: var(--yellow-soft); color: #92400E; font-size: 0.78rem; font-weight: 600;
  border-radius: 999px; padding: 5px 12px; margin-bottom: 4px;
}
.badge-placeholder svg { width: 14px; height: 14px; }

/* Filters */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 38px; }
.filter-btn {
  font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; cursor: pointer;
  background: var(--white); color: var(--slate); border: 1.5px solid var(--line); border-radius: 999px; padding: 9px 18px;
  transition: all 0.18s ease;
}
.filter-btn:hover { border-color: var(--purple); color: var(--purple); }
.filter-btn.is-active { background: var(--navy); border-color: var(--navy); color: #fff; }

/* ---------- Testimonials ---------- */
.carousel { position: relative; max-width: 820px; margin: 0 auto; }
.carousel-track { overflow: hidden; }
.carousel-slides { display: flex; transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1); }
.t-slide { flex: 0 0 100%; padding: 6px; }
.t-card { background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 40px 44px; box-shadow: var(--shadow-md); text-align: center; }
.t-card .quote-mark { font-family: var(--font-display); font-size: 3rem; line-height: 1; color: var(--purple); }
.t-card blockquote { margin: 8px 0 20px; font-size: 1.12rem; color: var(--navy); font-style: italic; }
.t-card cite { font-style: normal; font-family: var(--font-display); font-weight: 600; color: var(--slate); font-size: 0.95rem; }
.carousel-nav { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 24px; }
.carousel-btn {
  width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--line); background: var(--white);
  display: grid; place-items: center; cursor: pointer; color: var(--navy); transition: all 0.18s ease;
}
.carousel-btn:hover { border-color: var(--purple); color: var(--purple); transform: translateY(-2px); }
.carousel-btn svg { width: 18px; height: 18px; }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dots button { width: 10px; height: 10px; border-radius: 50%; border: 0; background: #CBD5E1; cursor: pointer; padding: 0; transition: all 0.2s ease; }
.carousel-dots button.is-active { background: var(--purple); transform: scale(1.25); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; border-radius: 26px;
  background: linear-gradient(120deg, var(--purple) 0%, var(--purple-600) 55%, #5B21B6 100%);
  padding: 68px 56px; color: #fff; text-align: center;
}
.cta-band::before {
  content: ""; position: absolute; width: 380px; height: 380px; border-radius: 50%;
  background: var(--coral); filter: blur(110px); opacity: 0.5; top: -140px; right: -80px;
  animation: drift 14s ease-in-out infinite alternate;
}
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: #E4DAFB; max-width: 620px; margin: 0 auto 30px; position: relative; }
.cta-band .btn { position: relative; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 22px; }
.form-grid .form-field--full { grid-column: 1 / -1; }
@media (max-width: 720px) { .form-grid { grid-template-columns: 1fr; } }
.form-field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; color: var(--navy); margin-bottom: 7px; }
.form-field label .req { color: var(--coral); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--navy);
  background: var(--white); border: 1.5px solid #D6DEE9; border-radius: var(--radius-sm);
  padding: 13px 15px; transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--purple); box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.14);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field .field-error { display: none; color: #C0392B; font-size: 0.85rem; margin-top: 6px; }
.form-field.has-error input, .form-field.has-error select, .form-field.has-error textarea { border-color: var(--coral); }
.form-field.has-error .field-error { display: block; }
.form-consent { display: flex; gap: 12px; align-items: flex-start; font-size: 0.92rem; }
.form-consent input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--purple); }
.form-note { font-size: 0.85rem; color: var(--slate-light); }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-success {
  display: none; background: var(--aqua-soft); border: 1.5px solid var(--aqua); color: #0F5F58;
  border-radius: var(--radius); padding: 26px 30px; font-weight: 500;
}
.form-success.is-visible { display: block; }
.form-success h3 { color: #0B4F49; }

/* ---------- Newsletter ---------- */
.newsletter-form { display: flex; gap: 12px; max-width: 460px; }
.newsletter-form input {
  flex: 1; font-size: 0.98rem; padding: 13px 16px; border-radius: 999px; border: 1.5px solid #D6DEE9;
}
.newsletter-form input:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 4px rgba(124,58,237,0.14); }
.section--ink .newsletter-form input, footer .newsletter-form input { background: rgba(255,255,255,0.07); border-color: var(--line-dark); color: #fff; }
.section--ink .newsletter-form input::placeholder, footer .newsletter-form input::placeholder { color: #8E9AB0; }
@media (max-width: 560px) { .newsletter-form { flex-direction: column; } }

/* ---------- Insights ---------- */
.insight-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.insight-cover { height: 130px; position: relative; }
.insight-body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.insight-body .cat { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; font-family: var(--font-display); color: var(--purple); margin-bottom: 8px; }
.insight-body h3 { font-size: 1.12rem; }
.insight-body .read { margin-top: auto; padding-top: 12px; }
.search-bar { position: relative; max-width: 420px; }
.search-bar input { width: 100%; padding: 13px 16px 13px 46px; border-radius: 999px; border: 1.5px solid #D6DEE9; font-size: 0.98rem; }
.search-bar input:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 4px rgba(124,58,237,0.14); }
.search-bar svg { position: absolute; left: 17px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--slate-light); }

/* ---------- Tables (legal, industries) ---------- */
.info-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.info-table th, .info-table td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
.info-table th { font-family: var(--font-display); color: var(--navy); background: #F1F5F9; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: var(--navy); color: #fff; position: relative; overflow: hidden;
  padding: calc(var(--nav-h) + 64px) 0 64px;
}
.page-hero::before {
  content: ""; position: absolute; width: 460px; height: 460px; border-radius: 50%;
  background: var(--purple); filter: blur(110px); opacity: 0.3; top: -160px; right: -80px;
}
.page-hero h1 { color: #fff; max-width: 800px; }
.page-hero p { color: #C3CBDA; font-size: 1.14rem; max-width: 680px; }
.page-hero .kicker { color: var(--aqua); }
.breadcrumbs { position: relative; z-index: 1; font-size: 0.88rem; color: #8E9AB0; margin-bottom: 22px; }
.breadcrumbs a { color: #B9C2D4; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span[aria-hidden] { margin: 0 8px; }

/* ---------- Accordion ---------- */
.accordion { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); overflow: hidden; }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion details:last-child { border-bottom: 0; }
.accordion summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 26px; font-family: var(--font-display); font-weight: 600; color: var(--navy); font-size: 1.02rem;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; font-size: 1.4rem; color: var(--purple); transition: transform 0.2s ease; flex: none; }
.accordion details[open] summary::after { transform: rotate(45deg); }
.accordion .acc-body { padding: 0 26px 22px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #AEB8C9; padding: 72px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 44px; margin-bottom: 48px; }
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: 0.95rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a { color: #AEB8C9; font-size: 0.95rem; }
.site-footer a:hover { color: var(--aqua); }
.footer-brand p { font-size: 0.95rem; max-width: 34ch; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(255,255,255,0.07); border: 1px solid var(--line-dark); color: #C7CEDC;
  transition: all 0.18s ease;
}
.footer-social a:hover { background: var(--purple); color: #fff; transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.93rem; }
.footer-contact svg { width: 17px; height: 17px; color: var(--aqua); flex: none; margin-top: 4px; }
.footer-legal { border-top: 1px solid var(--line-dark); padding-top: 28px; display: flex; flex-wrap: wrap; gap: 14px 28px; justify-content: space-between; align-items: flex-start; font-size: 0.86rem; }
.footer-legal ul { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer-legal ul li { margin: 0; }
.footer-disclaimer { font-size: 0.8rem; color: #7C8BA1; max-width: 900px; margin-top: 18px; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; z-index: 200; left: 20px; right: 20px; bottom: 20px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 22px 26px; max-width: 640px; margin: 0 auto;
  display: none;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { font-size: 0.92rem; margin-bottom: 16px; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-modal { position: fixed; inset: 0; z-index: 210; display: none; align-items: center; justify-content: center; background: rgba(17,24,39,0.6); padding: 20px; }
.cookie-modal.is-visible { display: flex; }
.cookie-modal-box { background: var(--white); border-radius: var(--radius); max-width: 520px; width: 100%; padding: 32px; max-height: 85vh; overflow: auto; }
.cookie-pref { display: flex; justify-content: space-between; gap: 18px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cookie-pref:last-of-type { border-bottom: 0; }
.cookie-pref h4 { margin: 0 0 4px; }
.cookie-pref p { font-size: 0.87rem; margin: 0; }
.switch { position: relative; width: 46px; height: 26px; flex: none; }
.switch input { opacity: 0; width: 100%; height: 100%; position: absolute; margin: 0; cursor: pointer; }
.switch .track { position: absolute; inset: 0; background: #CBD5E1; border-radius: 999px; transition: background 0.2s ease; pointer-events: none; }
.switch .track::after { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; transition: transform 0.2s ease; }
.switch input:checked + .track { background: var(--purple); }
.switch input:checked + .track::after { transform: translateX(20px); }
.switch input:disabled + .track { background: var(--aqua); opacity: 0.55; }

/* ---------- Floating mobile CTA ---------- */
.floating-cta {
  display: none; position: fixed; z-index: 130; right: 16px; bottom: 16px;
}
@media (max-width: 760px) {
  .floating-cta { display: block; }
  .floating-cta .btn { box-shadow: 0 12px 30px -8px rgba(124, 58, 237, 0.7); }
  body { padding-bottom: 84px; }
}

/* ---------- Reveal animations ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.js .reveal.is-in { opacity: 1; transform: none; }
.js .reveal-stagger > * { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.js .reveal-stagger.is-in > * { opacity: 1; transform: none; }
.js .reveal-stagger.is-in > :nth-child(2) { transition-delay: 0.08s; }
.js .reveal-stagger.is-in > :nth-child(3) { transition-delay: 0.16s; }
.js .reveal-stagger.is-in > :nth-child(4) { transition-delay: 0.24s; }
.js .reveal-stagger.is-in > :nth-child(5) { transition-delay: 0.32s; }
.js .reveal-stagger.is-in > :nth-child(6) { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; transition-duration: 0.001s !important; }
  .js .reveal, .js .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
  .metric .m-bar i { width: var(--w, 60%); }
}

/* ---------- Misc ---------- */
.eyebrow-note { font-size: 0.85rem; color: var(--slate-light); }
.center { text-align: center; }
.mt-0 { margin-top: 0; } .mt-24 { margin-top: 24px; } .mt-40 { margin-top: 40px; } .mt-56 { margin-top: 56px; }
.mb-0 { margin-bottom: 0; } .mb-24 { margin-bottom: 24px; } .mb-40 { margin-bottom: 40px; }
.divider { border: 0; border-top: 1px solid var(--line); margin: 56px 0; }
.anchor-offset { scroll-margin-top: 110px; }
.error-page { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 140px 24px 80px; }
.error-code { font-family: var(--font-display); font-weight: 700; font-size: clamp(5rem, 16vw, 9rem); line-height: 1; background: linear-gradient(120deg, var(--purple), var(--coral), var(--aqua)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.legal-body h2 { font-size: 1.5rem; margin-top: 2.2em; }
.legal-body h3 { font-size: 1.15rem; margin-top: 1.6em; }
.legal-updated { font-size: 0.88rem; color: var(--slate-light); }
.toc { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 26px; margin-bottom: 40px; }
.toc h2 { font-size: 1.05rem; margin-bottom: 10px; }
.toc ul { margin: 0; columns: 2; column-gap: 30px; }
@media (max-width: 640px) { .toc ul { columns: 1; } }
