/* Qapsule — QARA PULSE brand */
:root {
  --navy: #002850;
  --navy-deep: #001a36;
  --navy-mid: #003366;
  --teal: #00c2cb;
  --teal-bright: #0bcaca;
  --lavender: #b2aaff;
  --ice: #f6fbff;
  --white: #ffffff;
  --text: #0a1f33;
  --text-muted: #5a6f85;
  --border: rgba(0, 40, 80, 0.1);
  --glass: rgba(246, 251, 255, 0.08);
  --radius: 16px;
  --radius-pill: 100px;
  --shadow: 0 24px 64px rgba(0, 26, 54, 0.18);
  --font: "General Sans", "Satoshi", system-ui, -apple-system, sans-serif;
  --font-display: "Satoshi", "General Sans", system-ui, sans-serif;
  --max: 1120px;
  --booking: https://bookings.cloud.microsoft/book/QARAPULSE1@qarapulse.com/?ismsaljsauthenabled;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--teal);
  margin-bottom: 0.85rem;
}

.eyebrow::before {
  content: "";
  display: block;
  width: 1.15rem;
  height: 2px;
  border-radius: 1px;
  background: var(--teal);
  flex-shrink: 0;
}

.eyebrow--light {
  color: rgba(246, 251, 255, 0.7);
}

.eyebrow--light::before {
  background: rgba(0, 194, 203, 0.65);
}

.eyebrow--pill {
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(0, 194, 203, 0.12);
  border: 1px solid rgba(0, 194, 203, 0.25);
  color: var(--teal);
}

.eyebrow--pill::before {
  display: none;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
}

h3 {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.lead {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 36rem;
}

.lead--light {
  color: rgba(246, 251, 255, 0.78);
}

.accent {
  color: var(--teal);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--teal);
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(0, 194, 203, 0.28);
}

.btn-primary:hover {
  background: #1ad0d8;
}

.btn-white {
  background: var(--white);
  color: var(--navy);
}

.btn-ghost {
  background: transparent;
  color: var(--ice);
  border: 1px solid rgba(246, 251, 255, 0.28);
}

.btn-ghost:hover {
  background: rgba(246, 251, 255, 0.08);
}

.btn-navy {
  background: var(--navy);
  color: var(--ice);
}

.btn-navy:hover {
  background: var(--navy-mid);
}

.btn-sm {
  padding: 0.65rem 1.1rem;
  font-size: 0.875rem;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 1rem 0;
  transition: background 0.2s ease, backdrop-filter 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(0, 26, 54, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(246, 251, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

/* Official white lockup (orb + QARAPULSE) — for dark navy header/footer only */
.logo img {
  display: block;
  height: 32px;
  width: auto;
  max-width: min(168px, 42vw);
}

.site-footer .logo img {
  height: 40px;
  max-width: min(200px, 70vw);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem 0.45rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(246, 251, 255, 0.18);
  background: rgba(246, 251, 255, 0.05);
  backdrop-filter: blur(12px);
}

.nav a {
  color: rgba(246, 251, 255, 0.85);
  font-size: 0.875rem;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-pill);
  transition: background 0.15s ease, color 0.15s ease;
}

.nav a:hover {
  color: var(--ice);
  background: rgba(246, 251, 255, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.3rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(246, 251, 255, 0.18);
  background: rgba(246, 251, 255, 0.05);
}

.lang-switch a {
  padding: 0.35rem 0.55rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(246, 251, 255, 0.55);
}

.lang-switch a.is-active {
  background: var(--teal);
  color: var(--navy);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(246, 251, 255, 0.2);
  color: var(--ice);
  align-items: center;
  justify-content: center;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 8.5rem 0 4.5rem;
  background:
    radial-gradient(ellipse 70% 55% at 15% 20%, rgba(178, 170, 255, 0.22), transparent 55%),
    radial-gradient(ellipse 55% 45% at 85% 75%, rgba(0, 194, 203, 0.18), transparent 50%),
    linear-gradient(165deg, var(--navy-deep) 0%, var(--navy) 45%, #003a5c 100%);
  color: var(--ice);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -10%;
  width: 55%;
  height: 70%;
  background: radial-gradient(circle, rgba(0, 194, 203, 0.12), transparent 65%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.hero-copy .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(246, 251, 255, 0.08);
  border: 1px solid rgba(246, 251, 255, 0.14);
  font-size: 0.8125rem;
  color: rgba(246, 251, 255, 0.85);
  margin-bottom: 1.25rem;
}

.hero-copy h1 {
  margin-bottom: 1.15rem;
}

.hero-copy .lead {
  margin-bottom: 0.85rem;
}

.hero-copy .lead + .lead {
  margin-bottom: 1.75rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-note {
  font-size: 0.8125rem;
  color: rgba(246, 251, 255, 0.55);
}

/* Original Qapsule hero product mock */
.product-mock {
  background: rgba(246, 251, 255, 0.06);
  border: 1px solid rgba(246, 251, 255, 0.14);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero .product-mock {
  transform: scale(0.91);
  transform-origin: top right;
}

.mock-topbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(246, 251, 255, 0.1);
  background: rgba(0, 26, 54, 0.35);
}

.mock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(246, 251, 255, 0.25);
}

.mock-dot:nth-child(1) { background: #ff5f57; }
.mock-dot:nth-child(2) { background: #febc2e; }
.mock-dot:nth-child(3) { background: #28c840; }

.mock-title {
  margin-left: 0.5rem;
  font-size: 0.75rem;
  color: rgba(246, 251, 255, 0.55);
}

.mock-body {
  display: grid;
  grid-template-columns: 140px 1fr;
  min-height: 340px;
}

.mock-sidebar {
  padding: 1rem 0.75rem;
  border-right: 1px solid rgba(246, 251, 255, 0.1);
  background: rgba(0, 26, 54, 0.25);
}

.mock-nav-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  font-size: 0.72rem;
  color: rgba(246, 251, 255, 0.55);
  margin-bottom: 0.2rem;
}

.mock-nav-item.is-active {
  background: rgba(0, 194, 203, 0.15);
  color: var(--teal);
}

.mock-main { padding: 1rem; }

.mock-main h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--ice);
}

.mock-filters {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.mock-chip {
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-pill);
  font-size: 0.65rem;
  background: rgba(246, 251, 255, 0.08);
  color: rgba(246, 251, 255, 0.65);
  border: 1px solid rgba(246, 251, 255, 0.1);
}

.mock-chip.is-active {
  background: var(--teal);
  color: var(--navy);
  border-color: transparent;
  font-weight: 600;
}

.mock-counts {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.7rem;
  color: rgba(246, 251, 255, 0.5);
}

.mock-counts b { color: var(--ice); }

.task {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 0.75rem;
  border-radius: 10px;
  background: rgba(246, 251, 255, 0.05);
  border: 1px solid rgba(246, 251, 255, 0.08);
  margin-bottom: 0.45rem;
}

.task-info { min-width: 0; }

.task-info strong {
  display: block;
  font-size: 0.75rem;
  color: var(--ice);
  font-weight: 500;
  margin-bottom: 0.15rem;
}

.task-info span {
  font-size: 0.65rem;
  color: rgba(246, 251, 255, 0.45);
}

.task-status {
  flex-shrink: 0;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.62rem;
  font-weight: 600;
}

.task-status.done {
  background: rgba(40, 200, 64, 0.18);
  color: #7dff95;
}

.task-status.progress {
  background: rgba(0, 194, 203, 0.18);
  color: var(--teal);
}

.task-status.todo {
  background: rgba(178, 170, 255, 0.18);
  color: var(--lavender);
}

/* Logos strip */
.logos {
  padding: 2.75rem 0 2.75rem;
  background: var(--ice);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.logos-label {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0 auto 2rem;
  max-width: 36rem;
  padding-inline: 1.25rem;
  line-height: 1.45;
}

.logo-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.logo-marquee-track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  width: max-content;
  animation: logo-marquee 40s linear infinite;
}

.logo-marquee:hover .logo-marquee-track {
  animation-play-state: paused;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  flex: 0 0 auto;
}

.logo-item img {
  max-height: 40px;
  max-width: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
}

.logo-item img[src*="tilak"] {
  max-height: 58px;
  max-width: 56px;
}

.logo-item:has(img[src*="tilak"]) {
  height: 58px;
}

@keyframes logo-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .logo-marquee-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: min(100% - 2.5rem, var(--max));
    margin-inline: auto;
    gap: 1.5rem 2.5rem;
  }
}

/* Sections */
.section {
  padding: 5.5rem 0;
}

.section-header {
  max-width: 40rem;
  margin-bottom: 3rem;
  text-align: left;
}

.section-header .lead {
  margin-top: 0.85rem;
}

.section--ice {
  background: var(--ice);
}

.section--navy {
  background: var(--navy);
  color: var(--ice);
}

.section--navy .lead {
  color: rgba(246, 251, 255, 0.72);
}

/* Feature cards */
.features-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 0 8px 28px rgba(0, 40, 80, 0.04);
}

.feature-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(0, 194, 203, 0.14), rgba(0, 40, 80, 0.06));
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.feature-card .icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--teal);
}

.feature-card h3 {
  margin-bottom: 0.55rem;
  color: var(--navy);
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

#solution .feature-card {
  display: flex;
  flex-direction: column;
}

#solution .feature-card .icon {
  flex-shrink: 0;
}

#solution .feature-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

#solution .feature-card > p {
  margin: 0;
  line-height: 1.55;
  flex: 1;
}

#solution .pain-visual {
  margin-top: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(0, 40, 80, 0.1);
  border-radius: 12px;
  background: var(--ice);
  box-shadow: 0 6px 18px rgba(0, 40, 80, 0.06);
}

#solution .pain-visual-chrome {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.7rem;
  border-bottom: 1px solid rgba(0, 40, 80, 0.08);
  background: rgba(0, 40, 80, 0.05);
}

#solution .pain-visual-chrome span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(0, 40, 80, 0.18);
}

#solution .pain-visual-chrome span:nth-child(1) { background: #ff6b6b; opacity: 0.7; }
#solution .pain-visual-chrome span:nth-child(2) { background: #ffd166; opacity: 0.75; }
#solution .pain-visual-chrome span:nth-child(3) { background: #06d6a0; opacity: 0.7; }

#solution .pain-visual-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.55rem;
  min-height: 7.5rem;
  margin: 0.65rem;
  padding: 1rem 0.9rem;
  border: 1.5px dashed rgba(0, 40, 80, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 194, 203, 0.07), transparent 55%),
    rgba(255, 255, 255, 0.7);
}

#solution .pv-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

#solution .pv-dot {
  width: 0.55rem;
  height: 0.55rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--teal);
}

#solution .pv-dot--muted { background: rgba(0, 40, 80, 0.22); }

#solution .pv-bar {
  height: 0.45rem;
  flex: 1;
  border-radius: 4px;
  background: rgba(0, 40, 80, 0.12);
}

#solution .pv-bar--short { flex: 0.45; }
#solution .pv-bar--mid { flex: 0.7; }

#solution .pv-tag {
  padding: 0.2rem 0.45rem;
  border-radius: var(--radius-pill);
  background: rgba(0, 194, 203, 0.18);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

#solution .pv-pile {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
}

#solution .pv-pile span {
  width: 2.1rem;
  height: 2.1rem;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(0, 194, 203, 0.35), rgba(0, 40, 80, 0.15));
  box-shadow: 0 4px 12px rgba(0, 40, 80, 0.08);
}

#solution .pv-pile span:nth-child(2) {
  transform: translateY(-0.35rem);
  background: linear-gradient(145deg, rgba(178, 170, 255, 0.45), rgba(0, 40, 80, 0.12));
}

#solution .pv-caption {
  margin: 0.35rem 0 0;
  color: rgba(0, 40, 80, 0.55);
  font-size: 0.72rem;
  font-weight: 600;
  text-align: center;
}

#solution .pv-gauge {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  width: 100%;
}

#solution .pv-gauge-track {
  height: 0.55rem;
  overflow: hidden;
  border-radius: var(--radius-pill);
  background: rgba(0, 40, 80, 0.1);
}

#solution .pv-gauge-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), rgba(0, 40, 80, 0.55));
}

#solution .pv-gauge-label {
  color: rgba(0, 40, 80, 0.55);
  font-size: 0.72rem;
  font-weight: 600;
}

/* Automation / connected tools */
.solution-story {
  display: grid;
  grid-template-columns: minmax(15rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.solution-story__copy .section-header {
  margin-bottom: 1.75rem;
}

.solution-story__points {
  display: grid;
  gap: 0;
  counter-reset: solution-point;
}

.solution-story__point {
  position: relative;
  padding: 1rem 0 1rem 3rem;
  border-top: 1px solid var(--border);
  counter-increment: solution-point;
}

.solution-story__point:last-child {
  border-bottom: 1px solid var(--border);
}

.solution-story__point::before {
  content: "0" counter(solution-point);
  position: absolute;
  top: 1.15rem;
  left: 0;
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.solution-story__point h3 {
  margin-bottom: 0.3rem;
  color: var(--navy);
  font-size: 1rem;
}

.solution-story__point p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.qapsule-system {
  position: relative;
  isolation: isolate;
  min-height: 34rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  overflow: hidden;
  border: 1px solid rgba(0, 194, 203, 0.22);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 46%, rgba(0, 194, 203, 0.22), transparent 28%),
    radial-gradient(circle at 92% 10%, rgba(178, 170, 255, 0.15), transparent 30%),
    linear-gradient(145deg, var(--navy-deep), var(--navy) 62%, #00385d);
  box-shadow: 0 32px 70px -38px rgba(0, 26, 54, 0.9);
  color: var(--ice);
}

.qapsule-system::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(246, 251, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 251, 255, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
}

.qapsule-system__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  color: rgba(246, 251, 255, 0.56);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.qapsule-system__live {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--teal);
}

.qapsule-system__live::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0.3rem rgba(0, 194, 203, 0.12);
}

.qapsule-system__flow {
  display: grid;
  grid-template-columns: minmax(7rem, 0.78fr) minmax(10rem, 1fr) minmax(8rem, 0.9fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  min-height: 20rem;
}

.qapsule-system__sources,
.qapsule-system__outputs {
  display: grid;
  gap: 0.65rem;
}

.qapsule-source,
.qapsule-output {
  position: relative;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(246, 251, 255, 0.12);
  border-radius: 12px;
  background: rgba(246, 251, 255, 0.07);
  backdrop-filter: blur(10px);
}

.qapsule-source::after,
.qapsule-output::before {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(1rem, 3vw, 2rem);
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 194, 203, 0.25), var(--teal));
}

.qapsule-source::after { left: 100%; }
.qapsule-output::before { right: 100%; }

.qapsule-source strong,
.qapsule-output strong {
  display: block;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
}

.qapsule-source span,
.qapsule-output span {
  display: block;
  margin-top: 0.15rem;
  color: rgba(246, 251, 255, 0.52);
  font-size: 0.64rem;
}

.qapsule-core {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  max-width: 13.5rem;
  margin-inline: auto;
  border: 1px solid rgba(0, 194, 203, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 32%, rgba(255, 255, 255, 0.18), transparent 18%),
    linear-gradient(145deg, rgba(0, 194, 203, 0.3), rgba(0, 40, 80, 0.72));
  box-shadow:
    0 0 0 1rem rgba(0, 194, 203, 0.04),
    0 0 0 2.2rem rgba(0, 194, 203, 0.025),
    0 24px 50px rgba(0, 0, 0, 0.28);
  text-align: center;
}

.qapsule-core::before,
.qapsule-core::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(0, 194, 203, 0.22);
}

.qapsule-core::before { inset: -1rem; }
.qapsule-core::after { inset: 1rem; }

.qapsule-core__label {
  position: relative;
  z-index: 1;
}

.qapsule-core__label strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.qapsule-core__label span {
  display: block;
  margin-top: 0.25rem;
  color: var(--teal);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.qapsule-system__signal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(246, 251, 255, 0.1);
}

.qapsule-signal {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(246, 251, 255, 0.62);
  font-size: 0.65rem;
}

.qapsule-signal::before {
  content: "✓";
  display: grid;
  place-items: center;
  flex: 0 0 1.2rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: rgba(0, 194, 203, 0.14);
  color: var(--teal);
  font-size: 0.65rem;
  font-weight: 700;
}

.steps-horizontal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.step-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  border-radius: var(--radius);
  background: rgba(246, 251, 255, 0.06);
  border: 1px solid rgba(246, 251, 255, 0.12);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--teal);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.step-card h3 {
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.9375rem;
  color: rgba(246, 251, 255, 0.68);
}

.action-product-visual {
  aspect-ratio: 3 / 2;
  margin-top: auto;
  position: relative;
  top: 1.25rem;
  margin-bottom: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(246, 251, 255, 0.22);
  border-radius: 12px;
  background: var(--ice);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.action-product-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-shot {
  margin-top: 1.25rem;
  border-radius: 12px;
  overflow: hidden;
  background: var(--ice);
  border: 1px solid rgba(246, 251, 255, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.step-shot-chrome {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.7rem;
  background: rgba(0, 40, 80, 0.06);
  border-bottom: 1px solid rgba(0, 40, 80, 0.08);
}

.step-shot-chrome span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(0, 40, 80, 0.18);
}

.step-shot-chrome span:nth-child(1) { background: #ff6b6b; opacity: 0.7; }
.step-shot-chrome span:nth-child(2) { background: #ffd166; opacity: 0.75; }
.step-shot-chrome span:nth-child(3) { background: #06d6a0; opacity: 0.7; }

.step-shot-placeholder {
  display: grid;
  place-items: center;
  min-height: 7.5rem;
  margin: 0.65rem;
  padding: 1rem 0.75rem;
  border-radius: 8px;
  border: 1.5px dashed rgba(0, 40, 80, 0.22);
  background:
    linear-gradient(135deg, rgba(0, 194, 203, 0.06), transparent 55%),
    rgba(255, 255, 255, 0.65);
  text-align: center;
}

.step-shot-placeholder span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(0, 40, 80, 0.55);
  line-height: 1.35;
  max-width: 12rem;
}

/* Branded Qapsule micro-visuals — generated product illustrations */
.qv {
  position: relative;
  min-height: 8.5rem;
  margin: 0.65rem;
  overflow: hidden;
  border-radius: 9px;
  border: 1px solid rgba(0, 40, 80, 0.08);
  background:
    linear-gradient(rgba(0, 40, 80, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 40, 80, 0.035) 1px, transparent 1px),
    linear-gradient(145deg, #fff, #f3fbfd);
  background-size: 18px 18px, 18px 18px, auto;
  color: var(--navy);
}

.qv-label {
  display: block;
  color: rgba(0, 40, 80, 0.48);
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-transform: uppercase;
}

.qv-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.42rem;
  border: 1px solid rgba(0, 40, 80, 0.1);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--navy);
  font-size: 0.5rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 40, 80, 0.05);
}

.qv-dot {
  width: 0.32rem;
  height: 0.32rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--teal);
}

/* Evidence map */
.qv-evidence {
  display: grid;
  place-items: center;
}

.qv-evidence__core {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border: 1px solid rgba(0, 194, 203, 0.4);
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  box-shadow:
    0 0 0 0.5rem rgba(0, 194, 203, 0.08),
    0 10px 24px rgba(0, 40, 80, 0.2);
  font-size: 0.58rem;
  font-weight: 700;
  text-align: center;
}

.qv-evidence__core span {
  display: block;
  color: var(--teal);
  font-size: 0.42rem;
  font-weight: 600;
}

.qv-evidence__node {
  position: absolute;
  z-index: 1;
}

.qv-evidence__node::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  width: 2.2rem;
  height: 1px;
  background: rgba(0, 194, 203, 0.48);
}

.qv-evidence__node--tl { top: 1rem; left: 0.75rem; }
.qv-evidence__node--tr { top: 1rem; right: 0.75rem; }
.qv-evidence__node--bl { bottom: 1rem; left: 0.75rem; }
.qv-evidence__node--br { right: 0.75rem; bottom: 1rem; }
.qv-evidence__node--tl::after,
.qv-evidence__node--bl::after { left: 100%; transform: rotate(16deg); transform-origin: left; }
.qv-evidence__node--tr::after,
.qv-evidence__node--br::after { right: 100%; transform: rotate(-16deg); transform-origin: right; }
.qv-evidence__node--bl::after,
.qv-evidence__node--br::after { transform: rotate(-16deg); }
.qv-evidence__node--br::after { transform: rotate(16deg); }

/* Compliance dashboard */
.qv-dashboard {
  display: grid;
  grid-template-columns: 4.6rem 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 0.9rem;
}

.qv-progress {
  position: relative;
  display: grid;
  place-items: center;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  background: conic-gradient(var(--teal) 0 78%, rgba(0, 40, 80, 0.1) 78% 100%);
}

.qv-progress::before {
  content: "";
  position: absolute;
  inset: 0.5rem;
  border-radius: 50%;
  background: var(--white);
}

.qv-progress strong {
  position: relative;
  z-index: 1;
  color: var(--navy);
  font-size: 0.9rem;
}

.qv-progress span {
  position: absolute;
  z-index: 1;
  margin-top: 1.35rem;
  color: var(--text-muted);
  font-size: 0.4rem;
}

.qv-bars {
  display: grid;
  gap: 0.55rem;
}

.qv-bar {
  display: grid;
  grid-template-columns: 2.4rem 1fr auto;
  gap: 0.35rem;
  align-items: center;
  color: var(--navy);
  font-size: 0.46rem;
  font-weight: 600;
}

.qv-bar i {
  display: block;
  height: 0.32rem;
  overflow: hidden;
  border-radius: 100px;
  background: rgba(0, 40, 80, 0.09);
}

.qv-bar i::after {
  content: "";
  display: block;
  width: var(--qv-value);
  height: 100%;
  border-radius: inherit;
  background: var(--teal);
}

.qv-bar em {
  color: var(--text-muted);
  font-size: 0.42rem;
  font-style: normal;
}

/* Expert review */
.qv-expert {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 0.65rem;
  align-items: center;
  padding: 0.85rem;
}

.qv-expert__profile,
.qv-expert__review {
  border: 1px solid rgba(0, 40, 80, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 18px rgba(0, 40, 80, 0.06);
}

.qv-expert__profile {
  padding: 0.75rem 0.55rem;
  text-align: center;
}

.qv-avatar {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  margin: 0 auto 0.45rem;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--teal), #007f91);
  box-shadow: 0 0 0 2px rgba(0, 194, 203, 0.18);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
}

.qv-expert__profile strong {
  display: block;
  font-size: 0.52rem;
}

.qv-expert__profile span {
  color: var(--text-muted);
  font-size: 0.42rem;
}

.qv-expert__review {
  padding: 0.65rem;
}

.qv-review-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(0, 40, 80, 0.07);
  color: var(--navy);
  font-size: 0.46rem;
  font-weight: 600;
}

.qv-review-row:last-child {
  border-bottom: 0;
}

.qv-review-row::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 0.9rem;
  height: 0.9rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(0, 194, 203, 0.12);
  color: #008f97;
  font-size: 0.46rem;
}

/* Tool connection pipeline */
.qv-connect {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.75rem;
  align-items: center;
  padding: 0.85rem;
}

.qv-tools {
  display: grid;
  gap: 0.4rem;
}

.qv-tool {
  padding: 0.35rem 0.45rem;
  border: 1px solid rgba(0, 40, 80, 0.09);
  border-radius: 6px;
  background: var(--white);
  color: var(--navy);
  font-size: 0.47rem;
  font-weight: 700;
}

.qv-connect__pulse {
  position: relative;
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 0.52rem;
  font-weight: 700;
  box-shadow: 0 0 0 0.45rem rgba(0, 194, 203, 0.1);
}

.qv-connect__pulse::before,
.qv-connect__pulse::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0.9rem;
  height: 1px;
  background: var(--teal);
}

.qv-connect__pulse::before { right: 100%; }
.qv-connect__pulse::after { left: 100%; }

.qv-connect__result {
  padding: 0.65rem 0.5rem;
  border-left: 2px solid var(--teal);
  border-radius: 0 7px 7px 0;
  background: rgba(0, 194, 203, 0.09);
}

.qv-connect__result strong {
  display: block;
  font-size: 0.56rem;
}

.qv-connect__result span {
  display: block;
  margin-top: 0.2rem;
  color: var(--text-muted);
  font-size: 0.43rem;
}

/* Actionable alert */
.qv-alert {
  display: grid;
  place-items: center;
  padding: 0.8rem;
}

.qv-alert__card {
  width: min(100%, 13rem);
  overflow: hidden;
  border: 1px solid rgba(0, 40, 80, 0.1);
  border-radius: 9px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(0, 40, 80, 0.1);
}

.qv-alert__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.48rem 0.6rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.48rem;
  font-weight: 700;
}

.qv-severity {
  padding: 0.18rem 0.35rem;
  border-radius: 100px;
  background: rgba(0, 194, 203, 0.18);
  color: var(--teal);
  font-size: 0.38rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.qv-alert__body {
  padding: 0.62rem;
}

.qv-alert__body strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.54rem;
}

.qv-alert__meta {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 0.5rem;
}

.qv-alert__action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.45rem;
  border-top: 1px solid rgba(0, 40, 80, 0.07);
  color: var(--text-muted);
  font-size: 0.43rem;
}

.qv-alert__action b {
  color: #008f97;
}

/* Fix and sync */
.qv-fix {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.55rem;
  align-items: center;
  padding: 0.75rem;
}

.qv-ticket,
.qv-sync-result {
  padding: 0.65rem;
  border: 1px solid rgba(0, 40, 80, 0.09);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 7px 16px rgba(0, 40, 80, 0.06);
}

.qv-ticket strong,
.qv-sync-result strong {
  display: block;
  margin: 0.25rem 0;
  font-size: 0.51rem;
  line-height: 1.25;
}

.qv-ticket small,
.qv-sync-result small {
  display: block;
  color: var(--text-muted);
  font-size: 0.4rem;
}

.qv-ticket__status {
  display: inline-flex;
  padding: 0.18rem 0.32rem;
  border-radius: 100px;
  background: rgba(0, 194, 203, 0.12);
  color: #008f97;
  font-size: 0.38rem;
  font-weight: 700;
}

.qv-sync-arrow {
  position: relative;
  width: 1.2rem;
  height: 1px;
  background: var(--teal);
}

.qv-sync-arrow::after {
  content: "";
  position: absolute;
  top: -0.16rem;
  right: 0;
  width: 0.32rem;
  height: 0.32rem;
  border-top: 1px solid var(--teal);
  border-right: 1px solid var(--teal);
  transform: rotate(45deg);
}

.qv-sync-result {
  border-color: rgba(0, 194, 203, 0.28);
  background: linear-gradient(145deg, #fff, rgba(0, 194, 203, 0.08));
}

@media (max-width: 900px) {
  .step-shot-placeholder {
    min-height: 6.25rem;
  }
}

/* Timeline (How it works) — centered alternating chronology */
.timeline {
  list-style: none;
  position: relative;
  max-width: 56rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.25rem 0 0.5rem;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 1.5rem;
}

.timeline-mid {
  grid-column: 2;
  grid-row: 1;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
}

.timeline-body {
  padding: 0.35rem 0;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) .timeline-body {
  grid-column: 1;
  justify-content: flex-end;
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-body {
  grid-column: 3;
  justify-content: flex-start;
  text-align: left;
}

.timeline-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  width: 100%;
  max-width: 26rem;
  box-shadow: 0 14px 30px -24px rgba(0, 40, 80, 0.4);
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.timeline-card:hover {
  transform: translateY(-0.35rem);
  border-color: rgba(0, 194, 203, 0.45);
  box-shadow: 0 26px 46px -26px rgba(0, 40, 80, 0.45);
}

.timeline-card h3 {
  color: var(--navy);
  margin-bottom: 0.45rem;
  font-size: 1.125rem;
  line-height: 1.25;
}

.timeline-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
}

.timeline-points {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.timeline-points li {
  position: relative;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--text-muted);
  padding-left: 0.9rem;
}

.timeline-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--teal);
}

.timeline-item:nth-child(odd) .timeline-points li {
  padding-left: 0;
  padding-right: 0.9rem;
}

.timeline-item:nth-child(odd) .timeline-points li::before {
  left: auto;
  right: 0;
}

.timeline-node {
  display: grid;
  place-items: center;
  flex: none;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 14px;
  background: var(--navy);
  color: var(--teal);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 0 0 4px var(--ice);
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease;
}

.timeline-item:nth-child(even) .timeline-node {
  background: var(--teal);
  color: var(--navy);
}

.timeline-item:hover .timeline-node {
  transform: scale(1.08);
  box-shadow:
    0 0 0 4px var(--ice),
    0 10px 22px -8px rgba(0, 194, 203, 0.55);
}

.timeline-rail {
  flex: 1;
  width: 2px;
  min-height: 1.75rem;
  margin: 0.4rem 0 0;
  background: rgba(0, 40, 80, 0.12);
  position: relative;
  overflow: hidden;
}

.timeline-rail::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--teal), rgba(0, 194, 203, 0.35));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.6s ease;
}

.timeline-item.is-visible .timeline-rail::after {
  transform: scaleY(1);
}

.timeline-item:nth-child(1).is-visible .timeline-rail::after { transition-delay: 0.12s; }
.timeline-item:nth-child(2).is-visible .timeline-rail::after { transition-delay: 0.2s; }
.timeline-item:nth-child(3).is-visible .timeline-rail::after { transition-delay: 0.28s; }

.timeline-item:last-child .timeline-rail {
  display: none;
}

.js .timeline-item {
  opacity: 0;
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.js .timeline-item:nth-child(odd) {
  transform: translateX(-1.1rem);
}

.js .timeline-item:nth-child(even) {
  transform: translateX(1.1rem);
}

.js .timeline-item.is-visible {
  opacity: 1;
  transform: none;
}

.js .timeline-item:nth-child(1) { transition-delay: 0ms; }
.js .timeline-item:nth-child(2) { transition-delay: 90ms; }
.js .timeline-item:nth-child(3) { transition-delay: 180ms; }
.js .timeline-item:nth-child(4) { transition-delay: 270ms; }

@media (min-width: 768px) {
  .timeline-item {
    gap: 1.75rem;
  }

  .timeline-card h3 {
    font-size: 1.2rem;
  }

  .timeline-card p {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .timeline {
    max-width: 40rem;
  }

  .timeline-item {
    grid-template-columns: auto 1fr;
    gap: 1.1rem;
  }

  .timeline-mid {
    grid-column: 1;
  }

  .timeline-item:nth-child(odd) .timeline-body,
  .timeline-item:nth-child(even) .timeline-body {
    grid-column: 2;
    justify-content: flex-start;
    text-align: left;
  }

  .timeline-item:nth-child(odd) .timeline-points li {
    padding-left: 0.9rem;
    padding-right: 0;
  }

  .timeline-item:nth-child(odd) .timeline-points li::before {
    left: 0;
    right: auto;
  }

  .timeline-card {
    max-width: none;
  }

  .timeline-node {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 0.72rem;
  }

  .js .timeline-item:nth-child(odd),
  .js .timeline-item:nth-child(even) {
    transform: translateY(1.25rem);
  }

  .js .timeline-item.is-visible {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js .timeline-item,
  .js .timeline-item:nth-child(odd),
  .js .timeline-item:nth-child(even) {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .timeline-card,
  .timeline-node,
  .timeline-rail::after {
    transition: none;
  }

  .timeline-card:hover,
  .timeline-item:hover .timeline-node {
    transform: none;
  }

  .timeline-rail::after {
    transform: scaleY(1);
  }
}

/* Why grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.why-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--ice);
  border: 1px solid var(--border);
}

.why-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.why-card-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: grid;
  place-items: center;
  background: transparent;
  color: var(--teal);
}

.why-card-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
}

.why-card h3 {
  color: var(--navy);
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.25;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* Impact */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.impact-card {
  padding: 1.5rem;
  border: 1px solid rgba(246, 251, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(246, 251, 255, 0.06);
}

.impact-card h3 {
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
}

.impact-card p {
  color: rgba(246, 251, 255, 0.68);
  font-size: 0.875rem;
}

/* Results */
.results-section .section-header {
  margin-bottom: 1.5rem;
}

.credibility-stats--embedded {
  margin: 1.75rem 0 0;
  padding: 1.75rem 0 0;
  border-top: 1px solid var(--border);
  border-bottom: none;
  background: transparent;
}

.results-section .results-proof {
  margin: 0;
}

.credibility-stats .proof-grid--3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 1rem;
  max-width: 52rem;
  margin-inline: auto;
}

.credibility-stats .proof-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  min-width: 0;
  min-height: 8.5rem;
  padding: 1.5rem 1.15rem 1.35rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0, 40, 80, 0.04);
  text-align: center;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.credibility-stats .proof-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 194, 203, 0.4);
  box-shadow: 0 14px 36px rgba(0, 40, 80, 0.08);
}

.credibility-stats .proof-card strong {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.credibility-stats .proof-card > span {
  display: block;
  max-width: 11rem;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.35;
}

@media (prefers-reduced-motion: reduce) {
  .credibility-stats .proof-card:hover {
    transform: none;
  }
}

/* Sovereignty */
.sovereignty-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 55% at 12% 15%, rgba(0, 194, 203, 0.1), transparent 55%),
    radial-gradient(ellipse 45% 50% at 90% 85%, rgba(0, 40, 80, 0.05), transparent 50%),
    var(--ice);
}

.sovereignty-section .section-header {
  max-width: 40rem;
  margin-bottom: 2.25rem;
}

.sovereignty-cartouches {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sovereignty-cartouche {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 12rem;
  max-width: 100%;
  min-height: 6.5rem;
  padding: 1.5rem 1.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(165deg, rgba(178, 170, 255, 0.08), transparent 55%),
    var(--white);
  box-shadow: 0 18px 40px -28px rgba(0, 40, 80, 0.45);
}

.trust-logo {
  display: block;
  width: auto;
  object-fit: contain;
}

.trust-logo--ovh {
  height: 1.75rem;
  max-width: 11rem;
}

.trust-logo--ft {
  width: auto;
  height: 4.5rem;
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 22rem);
  gap: 2.5rem 3.5rem;
  align-items: start;
}

.faq-main .section-header {
  margin-bottom: 1.75rem;
  max-width: none;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.35rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--teal);
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item .faq-body {
  padding: 0 1.35rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.faq-item .faq-body p + p {
  margin-top: 0.75rem;
}

.faq-item .faq-body ul {
  margin: 0.75rem 0 0;
  padding-left: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.faq-item .faq-body li {
  line-height: 1.45;
}

.faq-item .faq-body li strong {
  color: var(--navy);
  font-weight: 600;
}

.faq-item .faq-body a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.faq-item .faq-body a:hover {
  color: var(--teal);
}

.faq-contact {
  position: sticky;
  top: 6.5rem;
  padding: 2rem 1.75rem;
  border-radius: calc(var(--radius) + 4px);
  background:
    radial-gradient(ellipse 80% 70% at 100% 0%, rgba(0, 194, 203, 0.22), transparent 55%),
    linear-gradient(160deg, var(--navy-deep), var(--navy-mid));
  color: var(--ice);
  box-shadow: var(--shadow);
}

.faq-contact h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.faq-contact > p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(246, 251, 255, 0.78);
  margin-bottom: 1.5rem;
}

.faq-contact .btn {
  width: 100%;
}

.faq-contact-note {
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: 0.8125rem;
  text-align: center;
  color: rgba(246, 251, 255, 0.55);
}

/* Ecosystem / integrations logos */
.ecosystem {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 60% at 85% 20%, rgba(0, 194, 203, 0.1), transparent 55%),
    radial-gradient(ellipse 45% 50% at 10% 90%, rgba(0, 40, 80, 0.05), transparent 50%),
    var(--ice);
}

.ecosystem-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 1rem;
  max-width: 56rem;
  margin-inline: auto;
  padding: 0.5rem 0 0.25rem;
}

.ecosystem-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex: 1 1 6.5rem;
  min-width: 6.5rem;
  max-width: 9rem;
  padding: 1.15rem 0.85rem 1rem;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 14px 30px -24px rgba(0, 40, 80, 0.4);
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.ecosystem-logo:hover {
  transform: translateY(-0.35rem);
  border-color: rgba(0, 194, 203, 0.45);
  box-shadow: 0 26px 46px -26px rgba(0, 40, 80, 0.45);
}

.ecosystem-logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
}

.ecosystem-logo-mark img {
  width: 2.75rem;
  height: 2.75rem;
  object-fit: contain;
}

.ecosystem-logo-name {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

@media (prefers-reduced-motion: reduce) {
  .ecosystem-logo {
    transition: none;
  }

  .ecosystem-logo:hover {
    transform: none;
  }
}

/* Final CTA */
.final-cta {
  padding: 5rem 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0, 194, 203, 0.18), transparent 55%),
    linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
  color: var(--ice);
  text-align: center;
}

.final-cta .container {
  max-width: 40rem;
}

.final-cta h2 {
  margin-bottom: 0.85rem;
}

.final-cta .lead {
  margin-inline: auto;
  margin-bottom: 1.75rem;
}

.final-cta .hero-ctas {
  justify-content: center;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  z-index: 10000;
  padding: 0.65rem 1.1rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 26, 54, 0.28);
  transform: translateY(-150%);
  transition: transform 0.15s ease;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(246, 251, 255, 0.65);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  margin-top: 0.75rem;
  max-width: 18rem;
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  gap: 2.5rem;
}

.footer-col h4 {
  color: var(--ice);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.45rem;
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: var(--teal);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(246, 251, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8rem;
}

/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  z-index: 1000;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  max-width: 40rem;
  margin-inline: auto;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(0, 26, 54, 0.97);
  border: 1px solid rgba(246, 251, 255, 0.14);
  box-shadow: var(--shadow);
  color: var(--ice);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
}

.cookie-banner__copy {
  flex: 1 1 14rem;
  min-width: 0;
}

.cookie-banner__title {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.cookie-banner__text {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: rgba(246, 251, 255, 0.72);
}

.cookie-banner__text a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.cookie-banner__text a:hover {
  color: #1ad0d8;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-banner .btn-ghost {
  border-color: rgba(246, 251, 255, 0.28);
  color: var(--ice);
}

.cookie-banner .btn-ghost:hover {
  background: rgba(246, 251, 255, 0.08);
}

.standards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.5rem;
}

.standard-chip {
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(0, 194, 203, 0.12);
  color: var(--teal);
  border: 1px solid rgba(0, 194, 203, 0.2);
}

.hero .standards {
  margin-top: 0;
  margin-bottom: 1.25rem;
}

.hero .standard-chip {
  background: rgba(246, 251, 255, 0.08);
  color: rgba(246, 251, 255, 0.8);
  border-color: rgba(246, 251, 255, 0.14);
}

/* Mobile */
@media (max-width: 960px) {
  .nav {
    display: none;
  }

  .nav.is-open {
    display: flex;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1.25rem;
    right: 1.25rem;
    flex-direction: column;
    padding: 0.75rem;
    border-radius: 16px;
    background: rgba(0, 26, 54, 0.96);
    border: 1px solid rgba(246, 251, 255, 0.14);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-grid,
  .solution-story,
  .features-3,
  .steps-horizontal,
  .why-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero .product-mock {
    transform: none;
  }

  .faq-layout {
    gap: 2rem;
  }

  .faq-contact {
    position: static;
  }

  .ecosystem-logos {
    gap: 0.75rem;
  }

  .ecosystem-logo {
    flex: 1 1 6rem;
    min-width: 5.75rem;
    gap: 0.7rem;
    padding: 1rem 0.65rem 0.85rem;
  }

  .ecosystem-logo-mark {
    width: 2.6rem;
    height: 2.6rem;
  }

  .ecosystem-logo-mark img {
    width: 2.4rem;
    height: 2.4rem;
  }

  .ecosystem-logo-name {
    font-size: 0.8125rem;
  }

  .impact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mock-body {
    grid-template-columns: 1fr;
  }

  .mock-sidebar {
    display: none;
  }

  .solution-story {
    gap: 2.5rem;
  }

}

@media (max-width: 640px) {
  .credibility-stats .proof-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .credibility-stats .proof-card {
    min-width: 0;
    min-height: 0;
    padding: 1rem 0.45rem 0.9rem;
  }

  .credibility-stats .proof-card strong {
    font-size: clamp(1.35rem, 6.5vw, 1.85rem);
    margin-bottom: 0.45rem;
  }

  .credibility-stats .proof-card > span {
    font-size: 0.72rem;
    line-height: 1.3;
    max-width: none;
  }

  .sovereignty-cartouches {
    flex-direction: column;
  }

  .sovereignty-cartouche {
    flex: 1 1 auto;
    width: 100%;
    min-height: 5.75rem;
    padding: 1.35rem 1.25rem;
  }

  .qapsule-system {
    min-height: 0;
    border-radius: 20px;
  }

  .qapsule-system__flow {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .qapsule-system__sources,
  .qapsule-system__outputs {
    grid-template-columns: repeat(3, 1fr);
  }

  .qapsule-source,
  .qapsule-output {
    padding: 0.7rem 0.55rem;
  }

  .qapsule-source::after,
  .qapsule-output::before {
    display: none;
  }

  .qapsule-core {
    width: 10rem;
  }

  .qapsule-system__signal {
    grid-template-columns: 1fr;
  }

  .impact-grid {
    grid-template-columns: 1fr;
  }

  .header-actions .btn {
    display: none;
  }

  .footer-links {
    flex-direction: column;
    gap: 1.5rem;
  }
}
