/* MedInDepth public landing — light hybrid theme (Phase 1)
   Content structure mirrors MEDIND-1; soft live background; no WebGL. */

:root {
  /* Premium marketing palette — brand-adjacent, not admin-clone mint wash */
  --primary: #14564f;
  --primary-dark: #0c3b36;
  --primary-deep: #051614;
  --secondary: #10b981;
  --secondary-bright: #14d4aa;
  --secondary-light: #5eead4;
  --accent-blue: #0ea5e9;
  --accent-blue-deep: #0369a1;
  --ink: #0a1c19;
  --ink-soft: #1e3330;
  --bg: #f7faf9;
  --bg-alt: #eef3f1;
  --bg-section: #f2f6f5;
  --bg-elevated: #ffffff;
  --dark: var(--ink-soft);
  --dark-deep: var(--primary-deep);
  --gray: #d5dedb;
  --gray-soft: #e8eeec;
  --success: #16a34a;
  --muted: #647875;
  --white: #ffffff;
  --brand-gradient: linear-gradient(128deg, var(--primary-dark) 0%, var(--secondary) 52%, var(--accent-blue) 100%);
  --brand-gradient-h: linear-gradient(
    102deg,
    var(--primary-dark) 0%,
    var(--secondary) 38%,
    var(--secondary-bright) 62%,
    var(--accent-blue) 100%
  );
  --brand-gradient-text: linear-gradient(
    112deg,
    var(--primary-deep) 0%,
    var(--primary) 24%,
    var(--secondary) 46%,
    var(--secondary-light) 62%,
    var(--accent-blue) 82%,
    var(--accent-blue-deep) 100%
  );
  --brand-gradient-soft: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  --brand-gradient-dark: linear-gradient(
    125deg,
    #041210 0%,
    var(--primary-dark) 42%,
    #0f766e 72%,
    var(--accent-blue-deep) 100%
  );
  --brand-gradient-panel: linear-gradient(140deg, #062220 0%, var(--primary-dark) 100%);
  --primary-a06: rgba(20, 86, 79, 0.06);
  --primary-a08: rgba(20, 86, 79, 0.08);
  --primary-a10: rgba(20, 86, 79, 0.1);
  --primary-a12: rgba(20, 86, 79, 0.12);
  --primary-a22: rgba(20, 86, 79, 0.2);
  --primary-a28: rgba(20, 86, 79, 0.26);
  --secondary-a10: rgba(16, 185, 129, 0.1);
  --secondary-a22: rgba(16, 185, 129, 0.2);
  --shadow-sm: 0 1px 2px rgba(5, 22, 20, 0.04);
  --shadow-md: 0 8px 24px rgba(5, 22, 20, 0.07);
  --shadow-lg: 0 24px 48px rgba(5, 22, 20, 0.1);
  --shadow-brand: 0 14px 34px rgba(14, 116, 106, 0.22);
  --shadow-card: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 18px 40px rgba(5, 22, 20, 0.07);
  --radius: 20px;
  --radius-sm: 14px;
  --focus: 0 0 0 3px rgba(14, 165, 233, 0.28);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(ellipse 120% 80% at 50% -30%, rgba(14, 165, 233, 0.05), transparent 55%),
    radial-gradient(ellipse 90% 60% at 100% 0%, rgba(16, 185, 129, 0.04), transparent 50%),
    linear-gradient(180deg, #fbfcfc 0%, var(--bg) 38%, var(--bg-alt) 100%);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.35;
  background-image: radial-gradient(rgba(10, 28, 25, 0.045) 0.6px, transparent 0.6px);
  background-size: 24px 24px;
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
}

button,
input,
select {
  font: inherit;
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  background: var(--white);
  color: var(--dark);
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 700;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.muted {
  color: var(--muted);
  font-weight: 600;
}

/* ----- Soft live background ----- */

.bg-layers {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.bg-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 45% at 12% -8%, rgba(14, 165, 233, 0.07), transparent 58%),
    radial-gradient(ellipse 60% 40% at 88% 4%, rgba(16, 185, 129, 0.06), transparent 52%),
    radial-gradient(ellipse 55% 35% at 50% 100%, rgba(20, 86, 79, 0.04), transparent 55%);
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.45;
  will-change: transform;
}

.bg-orb--a {
  width: 420px;
  height: 420px;
  top: -80px;
  left: -60px;
  background: var(--primary-a28);
  animation: drift-a 28s ease-in-out infinite alternate;
}

.bg-orb--b {
  width: 360px;
  height: 360px;
  top: 35%;
  right: -100px;
  background: var(--secondary-a22);
  animation: drift-b 34s ease-in-out infinite alternate;
}

.bg-orb--c {
  width: 300px;
  height: 300px;
  bottom: 5%;
  left: 30%;
  background: rgba(91, 185, 166, 0.16);
  animation: drift-c 40s ease-in-out infinite alternate;
}

.bg-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.42;
}

@keyframes drift-a {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(40px, 50px);
  }
}

@keyframes drift-b {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(-50px, 30px);
  }
}

@keyframes drift-c {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(30px, -40px);
  }
}

/* ----- Utilities ----- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 86, 79, 0.14);
  padding: 8px 16px;
  border-radius: 999px;
  margin: 0;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.eyebrow--hero {
  color: var(--primary-dark);
  border-color: var(--primary-a12);
  background: rgba(255, 255, 255, 0.82);
}

.eyebrow--on-dark {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0;
  line-height: 1.12;
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  font-weight: 500;
  max-width: 640px;
  margin: 14px 0 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section-head.center .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.grad-text {
  display: inline-block;
  background: var(--brand-gradient-text);
  background-size: 280% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: grad-text-fluid 7s ease-in-out infinite;
  padding-bottom: 0.06em;
}

@keyframes grad-text-fluid {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.logo-accent {
  color: var(--secondary);
}

.logo--footer .logo-accent {
  color: var(--secondary-light);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  transition:
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand-gradient-h);
  color: #fff;
  box-shadow: var(--shadow-brand);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--dark);
  border: 1.5px solid var(--gray);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.btn-secondary:hover {
  border-color: var(--primary-a22);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.28) 50%,
    transparent 65%
  );
  transform: translateX(-130%);
  animation: btn-shine 4.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes btn-shine {
  0%,
  68%,
  100% {
    transform: translateX(-130%);
  }
  78% {
    transform: translateX(130%);
  }
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-brand);
}

.btn-block {
  width: 100%;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ----- Staggered scroll text ----- */

.scroll-stagger {
  opacity: 1;
  transform: none;
}

.scroll-stagger__unit {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.95em) rotateX(12deg);
  transform-origin: 50% 100%;
  filter: blur(5px);
  transition:
    opacity 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.62s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--stagger-i, 0) * 48ms + var(--stagger-base, 0ms));
  will-change: opacity, transform, filter;
}

.scroll-stagger__unit--line {
  display: block;
}

.scroll-stagger.in .scroll-stagger__unit {
  opacity: 1;
  transform: translateY(0) rotateX(0deg);
  filter: blur(0);
}

.scroll-stagger-group {
  opacity: 1;
  transform: none;
}

.scroll-stagger-group__item {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(4px);
  transition:
    opacity 0.58s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.58s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.58s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--stagger-i, 0) * 90ms + var(--stagger-base, 0ms));
}

.scroll-stagger-group.in .scroll-stagger-group__item {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.scroll-stagger-group.in .scroll-stagger-group__item .scroll-stagger__unit {
  transition-delay: calc(var(--stagger-i, 0) * 42ms + (var(--stagger-i-parent, 0) * 90ms + 120ms));
}

.hero .scroll-stagger__unit--line + .scroll-stagger__unit--line {
  margin-top: 0.06em;
}

.section-title.scroll-stagger {
  line-height: 1.15;
}

.stat-value.scroll-stagger .scroll-stagger__unit {
  font-variant-numeric: tabular-nums;
}

/* ----- Dev banner ----- */

.dev-banner {
  background: rgba(255, 255, 255, 0.55);
  border-bottom: 1px solid var(--gray-soft);
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 500;
}

.dev-banner p {
  margin: 0;
  padding: 8px 0;
}

.dev-banner a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ----- Header ----- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid rgba(213, 222, 219, 0.85);
  transition:
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: rgba(213, 222, 219, 0.65);
  box-shadow: 0 12px 32px rgba(5, 22, 20, 0.06);
}

.site-header .nav {
  position: relative;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  color: var(--dark);
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(3, 18, 14, 0.03);
  border: 1px solid rgba(3, 18, 14, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.logo--footer .logo-mark {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.2);
  color: #f7fffd;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 600;
  font-size: 14.5px;
}

.nav-links a {
  opacity: 0.85;
  transition:
    opacity 0.2s,
    color 0.2s;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--primary);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-btn-outline {
  font-weight: 700;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--gray);
  color: var(--dark);
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.2s;
}

.nav-btn-outline:hover {
  border-color: var(--primary-a22);
  color: var(--primary-dark);
}

.nav-btn-primary {
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 999px;
  color: #fff;
  background: var(--brand-gradient-h);
  box-shadow: var(--shadow-brand);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1.5px solid var(--gray);
  background: #fff;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ----- Hero ----- */

.hero {
  padding: 72px 0 56px;
}

.hero--centered {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(4rem, 8vw, 6rem);
  text-align: center;
  overflow: hidden;
}

.hero-spotlight {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1040px, 120%);
  height: min(560px, 70vh);
  background:
    radial-gradient(ellipse 85% 58% at 50% 0%, rgba(14, 165, 233, 0.09), transparent 62%),
    radial-gradient(ellipse 72% 48% at 50% 22%, rgba(16, 185, 129, 0.11), transparent 66%),
    radial-gradient(ellipse 50% 35% at 50% 45%, rgba(255, 255, 255, 0.65), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero--centered .container {
  position: relative;
  z-index: 1;
}

.hero-focus {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.75rem, 4.5vw, 3rem);
  max-width: 900px;
  margin: 0 auto clamp(3.25rem, 7vw, 5.5rem);
  padding-top: clamp(0.5rem, 2vw, 1.25rem);
}

.hero-focus__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  width: 100%;
}

.hero-focus__body {
  max-width: 38rem;
  width: 100%;
}

.hero-focus__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.hero-focus .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.hero-focus h1 {
  font-size: clamp(2.35rem, 6.8vw, 4.35rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin: 0;
  color: var(--ink);
}

.hero-focus h1 .scroll-stagger__unit--line {
  color: var(--ink);
}

.hero-focus .hero-sub {
  margin: 0;
  max-width: none;
  font-size: clamp(1rem, 2.1vw, 1.125rem);
  line-height: 1.75;
  color: var(--muted);
}

.hero-focus .hero-ctas {
  justify-content: center;
  margin: 0;
  gap: 14px;
}

.hero-focus .hero-note {
  text-align: center;
  margin: 0;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: rgba(100, 120, 117, 0.92);
}

.hero-stage {
  position: relative;
  max-width: min(840px, 92vw);
  margin: 0 auto;
  padding-top: 0.5rem;
}

.hero-stage::before {
  content: "";
  position: absolute;
  top: -72px;
  left: 8%;
  right: 8%;
  height: 96px;
  background: linear-gradient(to bottom, rgba(247, 250, 249, 0.98), transparent);
  pointer-events: none;
  z-index: 3;
}

.hero-stage .dash-wrap {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  transform: perspective(1400px) rotateX(2.5deg);
  transform-origin: center top;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-stage:hover .dash-wrap {
  transform: perspective(1400px) rotateX(0deg) translateY(-4px);
}

.hero--ready .hero-focus h1 .scroll-stagger__unit--line {
  animation: hero-line-rise 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--stagger-i, 0) * 120ms + 80ms);
}

@keyframes hero-line-rise {
  from {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.hero-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.22fr;
  gap: 44px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 18px;
}

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  font-weight: 500;
  max-width: 540px;
  margin: 0 0 28px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-note {
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 600;
  margin: 0;
}

.dash-wrap {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin-left: auto;
}

.floaty {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--gray);
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  animation: floaty 5.5s ease-in-out infinite;
}

.floaty--a {
  top: -5%;
  left: -6%;
}

.floaty--b {
  bottom: -7%;
  right: -4%;
  animation-delay: 1.4s;
}

.floaty-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

.floaty-value {
  font-weight: 800;
  font-size: 15px;
}

.icon-badge {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f7fffd;
}

.icon-badge svg {
  width: 20px;
  height: 20px;
}

.icon-badge--green {
  background: linear-gradient(135deg, #22c55e, var(--secondary));
}

.icon-badge--blue {
  background: var(--brand-gradient);
}

.dash {
  background: var(--bg-elevated);
  border: 1px solid rgba(213, 222, 219, 0.95);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow-card);
}

.dash--hero {
  padding: 24px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 32px 64px rgba(5, 22, 20, 0.12),
    0 0 0 1px rgba(14, 165, 233, 0.06);
}

.dash--compact {
  box-shadow: var(--shadow-md);
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.dash-topbar {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot--red {
  background: #ef4444;
}

.dot--amber {
  background: #f59e0b;
}

.dot--green {
  background: #22c55e;
}

.dash-title {
  margin-left: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.dash-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}

.dash-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.kpi-card {
  background: var(--bg-section);
  border: 1px solid var(--gray-soft);
  border-radius: 16px;
  padding: 16px;
}

.kpi-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.dash-icon {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #f7fffd;
}

.dash-icon svg {
  width: 18px;
  height: 18px;
}

.dash-icon--brand {
  background: var(--brand-gradient);
}

.dash-icon--mint {
  background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
}

.dash-icon--success {
  background: linear-gradient(135deg, #22c55e, var(--secondary-bright));
}

.kpi-label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.25;
}

.kpi-value {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 2px;
}

.kpi-trend {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  margin-top: 6px;
}

.kpi-trend__icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.kpi-trend.up {
  color: var(--success);
}

.kpi-trend.flat {
  color: var(--muted);
}

.dash-chart-row {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 14px;
}

.chart-card {
  background: var(--bg);
  border: 1px solid var(--gray);
  border-radius: 16px;
  padding: 16px;
}

.chart-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.chart-title__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.chart-title__icon {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

.bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 112px;
}

.bar {
  flex: 1;
  height: var(--h, 50%);
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, var(--primary-dark), var(--secondary));
  opacity: 0.85;
}

.task-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray);
}

.task-row__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.task-row__icon {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

.task-row:last-child {
  border-bottom: none;
}

.tag {
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 999px;
}

.tag-high {
  background: rgba(239, 68, 68, 0.12);
  color: #dc2626;
}

.tag-med {
  background: rgba(245, 158, 11, 0.14);
  color: #d97706;
}

.tag-low {
  background: rgba(34, 197, 94, 0.14);
  color: #16a34a;
}

/* ----- Trusted ----- */

.trusted {
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem, 6vw, 4.5rem);
}

.preview {
  padding: clamp(4.5rem, 8vw, 6rem) 0;
  background: var(--bg-section);
}

.trusted-label {
  text-align: center;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin: 0 0 18px;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.logo-pill {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--gray);
  border-radius: 999px;
  padding: 10px 16px;
  box-shadow: var(--shadow-sm);
}

.logo-pill--image {
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-pill__img {
  max-height: 28px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.site-logo__img {
  max-height: 36px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ----- Features ----- */

.features {
  padding: clamp(4.5rem, 8vw, 6rem) 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--gray-soft);
  border-bottom: 1px solid var(--gray-soft);
}

.features .container {
  position: relative;
}

.blueprint-connectors {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  z-index: 0;
}

.blueprint-connectors line,
.blueprint-connectors path {
  fill: none;
  stroke: rgba(53, 119, 111, 0.48);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.blueprint-connectors circle {
  fill: var(--bg);
  stroke: rgba(15, 168, 131, 0.72);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.blueprint-connectors .blueprint-hub {
  fill: rgba(15, 168, 131, 0.22);
  stroke: rgba(53, 119, 111, 0.58);
  stroke-width: 2;
}

.features .section-head,
.features .feature-grid,
.features .platform-stats-inline,
.features .features-subhead,
.features .features-photo-banner {
  position: relative;
  z-index: 1;
}

.blueprint-connectors .blueprint-spine {
  stroke: rgba(53, 119, 111, 0.35);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.feature-card {
  background: var(--bg-elevated);
  border: 1px solid var(--gray-soft);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: rgba(14, 165, 233, 0.22);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--primary-dark), var(--secondary) 55%, var(--accent-blue) 120%);
  color: #f8fffe;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 10px 22px rgba(14, 116, 106, 0.22);
  transition: transform 0.28s ease;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card:hover .feature-icon {
  transform: scale(1.06) rotate(-2deg);
}

.feature-card--wide {
  grid-column: 1 / -1;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
}

.feature-card .desc {
  margin: 0 0 14px;
  color: var(--muted);
  font-weight: 500;
  font-size: 14.5px;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 8px;
}

.feature-list--cols {
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-gradient);
}

/* ----- Preview ----- */

.preview-widgets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.widget {
  background: var(--bg-elevated);
  border: 1px solid var(--gray-soft);
  border-radius: var(--radius-sm);
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.widget:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15, 168, 131, 0.32);
}

.widget-value {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
  display: inline-block;
  transition: transform 0.25s ease;
}

.is-counting.widget-value,
.is-counting.kpi-value,
.is-counting.stat-value,
.is-counting.floaty-value {
  transform: scale(1.05);
}

.widget-label {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

/* ----- Workflow ----- */

.workflow {
  padding: 72px 0;
}

.flow-track {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 8px;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 110px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.flow-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  background: var(--brand-gradient);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.22);
}

/* ----- Benefits ----- */

.benefits {
  padding: clamp(4.5rem, 8vw, 6rem) 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, rgba(238, 243, 241, 0.85) 100%);
}

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

.benefit-card {
  background: #fff;
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15, 168, 131, 0.32);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: var(--brand-gradient);
  color: #f7fffd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: var(--shadow-brand);
}

.benefit-icon svg {
  width: 22px;
  height: 22px;
}

.benefit-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.benefit-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 800;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 500;
}

/* ----- Highlights ----- */

.highlights {
  padding: 88px 0;
}

.highlights-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--muted);
}

.check-mark {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: var(--primary-a10);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-mark svg {
  width: 14px;
  height: 14px;
}

/* ----- Testimonials ----- */

.testimonials {
  padding: 72px 0;
  background: rgba(255, 255, 255, 0.55);
}

.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.testi-card {
  margin: 0;
  background: #fff;
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.testi-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15, 168, 131, 0.28);
}

.stars {
  color: #f59e0b;
  letter-spacing: 2px;
  margin: 0 0 14px;
  font-size: 14px;
}

.testi-quote {
  margin: 0 0 20px;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--muted);
}

.testi-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--brand-gradient);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-name {
  font-weight: 800;
  font-size: 14.5px;
}

.testi-role {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.avatar--photo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(15, 168, 131, 0.2);
}

/* ----- Landing photography (whitelist-only static assets) ----- */

.landing-photo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.photo-mosaic {
  padding: 0 0 72px;
}

.photo-mosaic__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 16px;
}

.photo-mosaic__item {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--gray);
  box-shadow: var(--shadow-sm);
  background: #fff;
}

.photo-mosaic__item--wide {
  grid-row: span 2;
}

.photo-mosaic__img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.photo-mosaic__item:hover .photo-mosaic__img {
  transform: scale(1.03);
}

.photo-mosaic__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.72), transparent);
}

.features-photo-banner {
  margin: 0 0 28px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray);
  box-shadow: var(--shadow-sm);
}

.features-photo-banner__img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
}

.workflow-photo-band {
  margin: 0 0 28px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray);
}

.workflow-photo-band__img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
}

.highlight-photo-stack {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray);
  box-shadow: var(--shadow-md);
  min-height: 320px;
}

.highlight-photo-stack__img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.highlight-mock--overlay {
  position: absolute;
  inset: auto 16px 16px 16px;
  z-index: 1;
}

.highlight-mock--overlay .dash {
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.92);
}

/* ----- Stats ----- */

.stats {
  padding: 72px 0;
  background: var(--brand-gradient-dark);
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-value {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.85;
  margin-top: 6px;
}

/* ----- Security ----- */

.security {
  padding: 88px 0;
}

.security-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.security-list {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.security-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.security-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary-a12), var(--secondary-a10));
  border: 1px solid rgba(15, 168, 131, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.security-icon svg {
  width: 22px;
  height: 22px;
}

.shield-big svg {
  color: #fff;
}

.security-item h3 {
  font-size: 15.5px;
  font-weight: 700;
  margin: 0 0 2px;
}

.security-item p {
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 500;
  margin: 0;
}

.security-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 360px;
  color: #fff;
}

.security-visual__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.security-visual__content {
  position: relative;
  z-index: 1;
  padding: 52px 32px;
  text-align: center;
  background: var(--brand-gradient-panel);
}

.shield-big {
  width: 110px;
  height: 110px;
  margin: 0 auto 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.security-visual h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 8px;
}

.security-visual p {
  font-size: 14.5px;
  opacity: 0.85;
  font-weight: 500;
  margin: 0;
}

/* ----- Demo ----- */

.demo {
  padding: 88px 0;
  background: linear-gradient(120deg, var(--primary-dark), var(--secondary));
  color: #fff;
}

.demo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.demo-aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.demo-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.demo-photo__img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  display: block;
}

.demo-copy h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  line-height: 1.15;
}

.demo-copy > p {
  font-size: 16.5px;
  font-weight: 500;
  opacity: 0.95;
  margin: 0 0 20px;
  max-width: 480px;
}

.demo-points {
  list-style: none;
  display: grid;
  gap: 10px;
}

.demo-points li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  font-weight: 600;
}

.demo-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 800;
}

.form {
  background: #fff;
  color: var(--dark);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
}

.form__grid {
  display: grid;
  gap: 14px;
}

.field__label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--muted);
}

.input {
  width: 100%;
  border: 1.5px solid var(--gray);
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
  color: var(--dark);
  transition: border-color 0.2s;
}

.input:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: var(--focus);
}

.honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.form__status {
  margin: 0;
  min-height: 1.25em;
  font-size: 14px;
  font-weight: 600;
}

.form__status.is-success {
  color: #15803d;
}

.form__status.is-error {
  color: #dc2626;
}

.form__legal {
  margin: 0;
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.45;
}

/* ----- Footer ----- */

.site-footer {
  background: var(--primary-deep);
  color: #d9f5ef;
  padding: 70px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo--footer {
  color: #fff;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(247, 255, 253, 0.72);
  font-weight: 500;
  margin: 14px 0 0;
  max-width: 300px;
}

.footer-col h3 {
  color: #fff;
  font-size: 13.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(247, 255, 253, 0.72);
  font-weight: 500;
  margin-bottom: 11px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: rgba(247, 255, 253, 0.62);
  font-weight: 500;
}

.legal-notice {
  margin-top: 28px;
  padding: 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-notice__title {
  margin: 0 0 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.legal-notice p {
  margin: 0 0 10px;
  font-size: 12.5px;
  color: rgba(247, 255, 253, 0.62);
  font-weight: 500;
  line-height: 1.55;
}

.legal-notice p:last-child {
  margin-bottom: 0;
}

/* ----- Responsive ----- */

@media (max-width: 980px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--gray);
    box-shadow: var(--shadow-md);
    padding: 8px 0;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 24px;
  }

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

  .nav-btn-outline {
    display: none;
  }

  .hero-focus {
    gap: 1.5rem;
    margin-bottom: 2.75rem;
  }

  .hero-focus h1 {
    font-size: clamp(2rem, 8vw, 2.75rem);
    line-height: 1.06;
  }

  .hero-stage .dash-wrap {
    transform: none;
  }

  .hero-inner,
  .highlights-inner,
  .security-inner,
  .demo-inner,
  .photo-mosaic__grid {
    grid-template-columns: 1fr;
  }

  .photo-mosaic__item--wide {
    grid-row: auto;
  }

  .dash-wrap {
    max-width: 100%;
    margin-left: 0;
  }

  .dash-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dash-chart-row,
  .preview-widgets,
  .benefit-grid,
  .testi-grid,
  .stats-grid,
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .feature-list--cols {
    grid-template-columns: 1fr;
  }

  .floaty {
    display: none;
  }

  .hero {
    padding-top: 48px;
  }
}

@media (max-width: 560px) {
  .preview-widgets,
  .benefit-grid,
  .testi-grid,
  .stats-grid,
  .footer-top,
  .check-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card--wide {
    grid-column: auto;
  }

  .nav-btn-primary {
    display: none;
  }

  .flow-step {
    width: 46%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .scroll-stagger__unit,
  .scroll-stagger-group__item {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  .bg-orb,
  .floaty,
  .bar {
    animation: none !important;
  }

  .bg-canvas {
    display: none;
  }

  .grad-text {
    animation: none;
    background: var(--brand-gradient-h);
    background-size: 100% 100%;
  }

  .blueprint-connectors {
    display: none;
  }

  .btn:hover,
  .btn-primary:hover,
  .btn-secondary:hover,
  .feature-card:hover,
  .widget:hover,
  .benefit-card:hover,
  .testi-card:hover {
    transform: none;
  }

  .btn-primary::after {
    animation: none;
    display: none;
  }

  .hero--ready .hero-focus h1 .scroll-stagger__unit--line {
    animation: none;
  }

  .hero-stage .dash-wrap,
  .hero-stage:hover .dash-wrap {
    transform: none;
  }

  body::before {
    display: none;
  }

  .is-counting.widget-value,
  .is-counting.kpi-value,
  .is-counting.stat-value,
  .is-counting.floaty-value {
    transform: none;
  }
}

/* Site Builder cookie consent banner */
.sb-cookie-consent {
  position: fixed;
  z-index: 80;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  max-width: 36rem;
  margin: 0 auto;
  padding: 1rem 1.15rem;
  background: var(--primary-deep);
  color: var(--bg);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(3, 18, 14, 0.35);
}
.sb-cookie-consent p {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  line-height: 1.45;
}
.sb-cookie-consent__actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* Marketing store cards */
.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.store-card {
  border: 1px solid rgba(47, 93, 87, 0.12);
  border-radius: 12px;
  padding: 1.25rem;
  background: #fff;
}
.store-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 0.75rem;
}
.store-card__price {
  font-weight: 700;
  margin: 0.75rem 0;
}

.collection-grid {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.collection-card {
  border: 1px solid rgba(47, 93, 87, 0.12);
  border-radius: 12px;
  padding: 1.1rem;
  background: #fff;
}
.collection-field {
  margin: 1.25rem 0;
}
.collection-field__label {
  font-size: 0.95rem;
  color: var(--muted, #5a7a72);
  margin: 0 0 0.35rem;
}

.marketing-subpage {
  padding: 3rem 1rem 4rem;
  position: relative;
  z-index: 1;
}

.marketing-subpage--narrow {
  max-width: 48rem;
}

/* ----- Compact landing layout (shorter page, same content) ----- */

.section-head--compact {
  margin-bottom: 1.25rem;
}

.section-title--sm {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.platform-stats-inline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0 0 28px;
}

.platform-stat-pill {
  text-align: center;
  padding: 14px 10px;
  background: #fff;
  border: 1px solid var(--gray-soft);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.platform-stat-pill__value {
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--primary-dark);
}

.platform-stat-pill__label {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

.features-subhead {
  margin: 28px 0 18px;
  text-align: center;
}

.features-subhead__title {
  margin: 0 0 6px;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.features-subhead__sub {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.features--compact {
  padding: clamp(2.25rem, 4.5vw, 3.25rem) 0;
}

.features--compact .feature-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.features--compact .feature-card {
  padding: 18px;
}

.features--compact .feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  margin-bottom: 10px;
}

.features--compact .feature-icon svg {
  width: 18px;
  height: 18px;
}

.features--compact .feature-card h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.features--compact .feature-card .desc {
  font-size: 13px;
  margin-bottom: 10px;
  line-height: 1.45;
}

.features--compact .feature-list {
  gap: 4px;
}

.features--compact .feature-list li {
  font-size: 12.5px;
  padding-left: 14px;
}

.benefits--compact {
  padding: clamp(2.25rem, 4.5vw, 3.25rem) 0;
}

.benefits--compact .benefit-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.benefits--compact .benefit-card {
  padding: 18px;
}

.benefits--compact .benefit-card h3 {
  font-size: 15px;
}

.benefits--compact .benefit-card p {
  font-size: 13px;
  line-height: 1.45;
}

.benefit-group--spaced {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-soft);
}

.workflow--combined {
  padding: clamp(2.25rem, 4.5vw, 3.25rem) 0;
}

.workflow-secondary {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-soft);
}

.highlights--compact {
  padding: clamp(2.25rem, 4.5vw, 3.25rem) 0;
}

.highlights--compact .highlights-inner {
  gap: 32px;
}

.check-grid--dense {
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
}

.check-grid--dense .check-item {
  font-size: 13px;
}

.preview {
  padding: clamp(2.25rem, 4.5vw, 3.25rem) 0;
}

.features {
  padding: clamp(2.75rem, 5vw, 4rem) 0;
}

.benefits {
  padding: clamp(2.25rem, 4.5vw, 3.25rem) 0;
}

.workflow {
  padding: clamp(2.25rem, 4.5vw, 3.25rem) 0;
}

.highlights {
  padding: clamp(2.25rem, 4.5vw, 3.25rem) 0;
}

.testimonials {
  padding: clamp(2.25rem, 4.5vw, 3.25rem) 0;
}

.stats {
  padding: clamp(2.25rem, 4.5vw, 3.25rem) 0;
}

.security {
  padding: clamp(2.25rem, 4.5vw, 3.25rem) 0;
}

@media (max-width: 900px) {
  .features--compact .feature-grid,
  .benefits--compact .benefit-grid,
  .check-grid--dense {
    grid-template-columns: repeat(2, 1fr);
  }

  .platform-stats-inline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features--compact .feature-grid,
  .benefits--compact .benefit-grid,
  .check-grid--dense,
  .platform-stats-inline {
    grid-template-columns: 1fr;
  }
}
