/* ============================================================
   CONSIG SITE · marketing surface styles
   Light grey + white + navy with bold gradient accents
   ============================================================ */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--color-paper);
  color: var(--color-ink);
  overflow-x: hidden;
}

/* ---- Layout ---- */
.shell { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.shell-wide { max-width: 1440px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 720px) { .shell, .shell-wide { padding: 0 20px; } }

/* Section breathing */
.section { padding: 120px 0; position: relative; }
.section-tight { padding: 80px 0; }
.section-loose { padding: 160px 0; }
@media (max-width: 720px) {
  .section { padding: 80px 0; }
  .section-loose { padding: 100px 0; }
}

/* Surfaces — the brand kit's "light grey background on some sections" */
.surface-paper { background: var(--color-paper); }
.surface-mist  { background: #F4F5F7; }
.surface-bone  { background: var(--color-bone); }
.surface-navy  { background: var(--color-navy); color: #fff; }
.surface-deep  { background: var(--navy-900); color: #fff; }

/* ---- Eyebrow ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--color-gray);
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1.5px;
  background: var(--color-cyan);
}
.eyebrow.on-dark { color: var(--cyan-300); }
.eyebrow.on-dark::before { background: var(--color-cyan); }

/* ---- Section header ---- */
.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -1px;
  margin: 18px 0 20px;
  color: var(--color-navy);
}
.section-head h2 em { font-style: normal; color: var(--color-cyan); }
.prob-hot {
  font-style: normal;
  background: var(--gradient-edge);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.prob-cool {
  font-style: normal;
  background: var(--gradient-trust);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.desk .section-head { max-width: none; }
.desk .section-head h2 {
  max-width: none;
}
.desk .section-head p { max-width: none; }
.desk .section-head h2 em {
  font-style: normal;
  background-image: linear-gradient(110deg, #003057 0%, #00AEC7 45%, #F0B323 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.surface-navy .section-head h2,
.surface-deep .section-head h2 { color: #fff; }
.surface-navy .section-head h2 em,
.surface-deep .section-head h2 em {
  background: var(--gradient-velocity);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-head p {
  font-size: 18px; line-height: 1.55;
  color: var(--color-gray); margin: 0; max-width: 60ch;
}
.surface-navy .section-head p,
.surface-deep .section-head p { color: rgba(255,255,255,0.72); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,48,87,0.08);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 88px;
}
.nav-brand img { height: 40px; display: block; }
.nav-links {
  display: flex; gap: 40px; align-items: center;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 500; font-size: 14px;
  color: var(--color-gray); text-decoration: none;
  letter-spacing: 0.2px;
  transition: color var(--dur-fast) var(--ease-snap);
}
.nav-links a:hover { color: var(--color-navy); }
.nav-cta {
  font-family: var(--font-body);
  font-weight: 700; font-size: 13px;
  background: var(--gradient-trust);
  background-size: 200% 100%;
  background-position: 0% 50%;
  color: #fff;
  padding: 11px 18px; border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,48,87,0.18);
  transition: background-position var(--dur-base) var(--ease-snap), transform var(--dur-fast) var(--ease-snap), box-shadow var(--dur-fast) var(--ease-snap);
}
.nav-cta:hover { background-position: 100% 50%; transform: translateY(-1px); box-shadow: 0 10px 26px rgba(0,48,87,0.26); }
@media (max-width: 880px) { .nav-links { display: none; } }

/* Nav right wrapper + burger */
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-burger {
  display: none; flex-direction: column; justify-content: space-between;
  width: 24px; height: 18px;
  background: none; border: none; cursor: pointer; padding: 0; flex-shrink: 0;
}
.nav-burger span {
  display: block; width: 100%; height: 2px;
  background: var(--color-navy); border-radius: 2px;
  transition: transform 220ms ease, opacity 220ms ease;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
@media (max-width: 880px) { .nav-burger { display: flex; } }
@media (max-width: 540px)  { .nav-cta { display: none; } }

/* Mobile drawer */
.nav-mobile {
  display: none; position: fixed;
  top: 89px; left: 0; right: 0; bottom: 0;
  background: #fff; z-index: 99;
  padding: 24px 20px 40px;
  overflow-y: auto;
  border-top: 1px solid rgba(0,48,87,0.08);
}
.nav-mobile.is-open { display: flex; flex-direction: column; }
.nav-mobile ul { list-style: none; margin: 0; padding: 0; flex: 1; }
.nav-mobile ul li { border-bottom: 1px solid rgba(0,48,87,0.07); }
.nav-mobile ul li a {
  display: block; padding: 20px 4px;
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  color: var(--color-navy); text-decoration: none;
  transition: color 150ms ease;
}
.nav-mobile ul li a:hover { color: #00AEC7; }
.nav-mobile-cta {
  display: inline-block; margin-top: 32px;
  background: var(--gradient-trust); color: #fff;
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  padding: 14px 28px; border-radius: 4px; text-decoration: none;
  text-align: center;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 48px 0 100px;
  overflow: hidden;
  background: var(--color-paper);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body);
  font-weight: 700; font-size: 11px;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--color-navy);
  background: rgba(0,174,199,0.1);
  padding: 8px 14px; border-radius: 100px;
  border: 1px solid rgba(0,174,199,0.25);
}
.hero-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--color-cyan);
  box-shadow: 0 0 0 4px rgba(0,174,199,0.2);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(0,174,199,0.2); }
  50%     { box-shadow: 0 0 0 8px rgba(0,174,199,0); }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 0.98;
  letter-spacing: -2.5px;
  margin: 28px 0 24px;
  color: var(--color-navy);
}
.hero h1 .grad {
  background: var(--gradient-trust);
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: inline;
  font-weight: 600;
}
.hero h1 .grad-velocity {
  background: var(--gradient-velocity);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
h2 .grad-trust, h3 .grad-trust, .grad-trust {
  background: var(--gradient-trust);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-style: normal;
}
.hero h1 .grad-edge {
  background: var(--gradient-edge);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lede {
  font-size: 19px; line-height: 1.55;
  color: var(--color-navy);
  max-width: 52ch; margin: 0 0 36px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-grad {
  font-family: var(--font-body);
  font-weight: 700; font-size: 14px;
  letter-spacing: 0.4px;
  padding: 16px 24px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  color: #fff;
  background: var(--color-navy);
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none;
  transition: transform var(--dur-fast) var(--ease-snap), box-shadow var(--dur-base) var(--ease-snap);
  box-shadow: 0 8px 24px rgba(0,48,87,0.2);
}
.btn-grad:hover { transform: translateY(-1px); box-shadow: 0 12px 32px rgba(0,48,87,0.28); }
.btn-grad.gradient {
  background: var(--gradient-trust);
}
.btn-ghost {
  font-family: var(--font-body);
  font-weight: 700; font-size: 14px;
  color: var(--color-navy);
  padding: 16px 22px; border-radius: 4px;
  border: 1.5px solid rgba(0,48,87,0.18);
  background: transparent;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all var(--dur-fast) var(--ease-snap);
}
.btn-ghost:hover { border-color: var(--color-navy); background: rgba(0,48,87,0.04); }
.btn-arrow::after { content: "→"; transition: transform var(--dur-fast) var(--ease-snap); }
.btn-arrow:hover::after { transform: translateX(4px); }

.btn-pill {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 8px 8px 8px 22px;
  background: #fff; border-radius: 100px;
  box-shadow: 0 2px 14px rgba(0,48,87,0.09);
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  color: var(--color-navy); text-decoration: none;
  transition: box-shadow 180ms ease, transform 180ms ease;
  cursor: pointer; border: none;
}
.btn-pill:hover { box-shadow: 0 6px 24px rgba(0,48,87,0.14); transform: translateY(-1px); }
.btn-pill .pill-icon {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient-trust); color: #fff; flex-shrink: 0;
  transition: transform 180ms ease;
}
.btn-pill:hover .pill-icon { transform: translateX(2px); }

.hero-wave-icon {
  position: absolute;
  top: 18%; left: -34px;
  width: 84px; height: 84px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--color-cyan, #00AEC7);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 18px 40px -12px rgba(14,47,90,0.22), 0 4px 12px rgba(14,47,90,0.10);
  z-index: 4;
  animation: wavePulse 2.6s ease-in-out infinite;
}
.hero-wave-icon svg { width: 40px; height: 40px; }
@keyframes wavePulse {
  0%,100% { transform: scale(1); box-shadow: 0 18px 40px -12px rgba(14,47,90,0.22), 0 4px 12px rgba(14,47,90,0.10); }
  50%     { transform: scale(1.04); box-shadow: 0 22px 48px -10px rgba(0,174,199,0.32), 0 6px 14px rgba(14,47,90,0.12); }
}
.hero-trust {
  display: flex; gap: 20px; align-items: center;
  margin-top: 56px; padding-top: 28px;
  border-top: 1px solid rgba(0,48,87,0.1);
}
.hero-trust-label {
  font-family: var(--font-body);
  font-weight: 600; font-size: 11px;
  letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--color-gray);
}
.trust-logo-hipaa { height: 64px; width: auto; flex-shrink: 0; }
.hero-trust-body { display: flex; flex-direction: column; gap: 6px; }
.hero-trust-text {
  font-family: var(--font-display);
  font-weight: 700; font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-navy);
  line-height: 1;
}
.hero-trust-copy {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-gray);
  max-width: 56ch;
}
.hero-trust-pills .trust-logo {
  height: 28px; width: auto;
  opacity: 0.55;
  filter: grayscale(1) brightness(0.4);
  transition: opacity var(--dur-base) var(--ease-snap), filter var(--dur-base) var(--ease-snap);
}
.hero-trust-pills .trust-logo:hover { opacity: 1; filter: none; }
.hero-trust-pills .trust-logo-color {
  height: 36px;
  filter: none;
  opacity: 1;
}

/* Hero visual: animated voice waveform on gradient mesh */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  background: var(--gradient-trust);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,48,87,0.25), 0 12px 32px rgba(0,48,87,0.18);
}
.hero-visual::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.18), transparent 60%),
              radial-gradient(circle at 80% 80%, rgba(240,179,35,0.25), transparent 55%);
}
.hero-visual::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("img/hero-home.jpg");
  background-size: cover; background-position: center;
  opacity: 0; /* hidden, we use programmatic image — see hero.jsx if needed */
}

.hero-call-card {
  position: absolute; left: 28px; right: 28px; top: 28px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 14px 30px rgba(0,26,51,0.25);
}
.hero-call-card .avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gradient-edge);
  display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 14px;
  flex-shrink: 0;
}
.hero-call-card .meta { flex: 1; min-width: 0; }
.hero-call-card .meta .name {
  font-weight: 700; font-size: 13px;
  color: var(--color-navy);
}
.hero-call-card .meta .status {
  font-size: 11px; color: var(--color-gray);
  display: flex; align-items: center; gap: 6px;
}
.hero-call-card .meta .status::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: #2BB673;
  box-shadow: 0 0 0 3px rgba(43,182,115,0.2);
  animation: pulse-green 1.6s ease-in-out infinite;
}
@keyframes pulse-green {
  0%,100% { box-shadow: 0 0 0 3px rgba(43,182,115,0.2); }
  50% { box-shadow: 0 0 0 6px rgba(43,182,115,0); }
}
.hero-call-card .timer {
  font-family: var(--font-mono);
  font-size: 12px; color: var(--color-gray);
  font-variant-numeric: tabular-nums;
}

.hero-waveform {
  position: absolute; left: 0; right: 0; bottom: 110px;
  height: 120px;
  display: flex; align-items: center; justify-content: center;
  gap: 4px;
  padding: 0 32px;
}
.hero-waveform .bar {
  width: 5px; border-radius: 4px;
  background: rgba(255,255,255,0.85);
  animation: wave 1.2s ease-in-out infinite;
}
@keyframes wave {
  0%,100% { height: 12%; }
  50%     { height: 100%; }
}

.hero-transcript {
  position: absolute; left: 28px; right: 28px; bottom: 28px;
  background: rgba(0,26,51,0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 16px 18px;
  color: #fff;
}
.hero-transcript .label {
  font-size: 10px; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--cyan-300); font-weight: 700; margin-bottom: 6px;
}
.hero-transcript .line {
  font-size: 14px; line-height: 1.45;
  font-weight: 500;
  min-height: 40px;
}
.hero-transcript .line .caret {
  display: inline-block; width: 8px; height: 16px;
  background: var(--color-cyan); margin-left: 2px; vertical-align: -2px;
  animation: blink 0.9s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* Hero — photo variant with floating stat callouts */
.hero-visual-photo {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  aspect-ratio: 1 / 1.05;
  overflow: visible;
}
.hero-visual-photo::before,
.hero-visual-photo::after { display: none; }
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.hero-call-ribbon {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 48, 87, 0.08);
  border-radius: 999px;
  padding: 8px 16px 8px 14px;
  box-shadow: 0 12px 28px rgba(0,26,51,0.18);
  z-index: 3;
  white-space: nowrap;
}
.hero-call-ribbon .live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2BB673;
  box-shadow: 0 0 0 0 rgba(43,182,115,0.5);
  animation: hero-pulse-dot 2s infinite;
}
@keyframes hero-pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(43,182,115,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(43,182,115,0); }
}
.hero-call-ribbon .rname { font-weight: 700; font-size: 12px; color: var(--color-navy); line-height: 1.2; }
.hero-call-ribbon .rstatus { font-size: 11px; color: var(--color-gray); font-family: var(--font-mono); line-height: 1.2; margin-top: 2px; }

.hero-stat-card {
  position: absolute;
  display: flex; align-items: center; gap: 12px;
  background: #fff;
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: 0 18px 44px rgba(0, 26, 51, 0.18), 0 4px 12px rgba(0, 26, 51, 0.08);
  z-index: 2;
  min-width: 168px;
  animation: hero-stat-float 4.5s ease-in-out infinite;
}
.hero-stat-card .stat-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hero-stat-card .stat-icon svg { width: 18px; height: 18px; stroke-linecap: round; stroke-linejoin: round; }
.hero-stat-card.pain  .stat-icon { background: rgba(217, 88, 42, 0.12); color: var(--color-orange); }
.hero-stat-card.win   .stat-icon { background: rgba(0, 174, 199, 0.14); color: var(--color-cyan); }
.hero-stat-card .stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--color-navy);
  line-height: 1;
}
.hero-stat-card.pain .stat-num { color: var(--color-orange); }
.hero-stat-card.win  .stat-num { color: var(--color-cyan); }
.hero-stat-card .stat-label {
  font-size: 11px; color: var(--color-gray);
  margin-top: 4px;
  max-width: 18ch;
  line-height: 1.3;
}

.hero-stat-card.top-right    { top: 6%;  right: -6%; animation-delay: -0.4s; }
.hero-stat-card.left-mid     { top: 38%; left: -8%;  animation-delay: -1.6s; }
.hero-stat-card.bottom-right { bottom: 14%; right: -10%; animation-delay: -2.8s; }
.hero-stat-card.bottom-left  { bottom: 4%;  left: -4%; animation-delay: -3.6s; }

@keyframes hero-stat-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

@media (max-width: 980px) {
  .hero-visual-photo { max-width: 540px; margin: 0 auto; }
  .hero-stat-card.top-right    { right: 0; }
  .hero-stat-card.left-mid     { left: 0; }
  .hero-stat-card.bottom-right { right: 0; }
  .hero-stat-card.bottom-left  { left: 0; }
}

/* Hero — type-driven variant (no big visual block) */
.hero.type-driven .hero-grid { grid-template-columns: 1fr; gap: 0; text-align: left; }
.hero.type-driven .hero-visual { display: none; }
.hero.type-driven h1 { font-size: clamp(56px, 8.5vw, 132px); max-width: 16ch; }

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 980px) {
  .problem-grid { grid-template-columns: 1fr; gap: 48px; }
}
.problem-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--navy-100);
}
.problem-image img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
.problem-image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,26,51,0) 50%, rgba(0,26,51,0.92) 100%);
  pointer-events: none;
}
.problem-image .overlay {
  position: absolute; left: 28px; right: 28px; bottom: 28px;
  color: #fff;
  display: flex; align-items: flex-end; gap: 18px;
  z-index: 2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.problem-image .overlay .stat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 5.4vw, 68px);
  line-height: 0.9;
  letter-spacing: -1.5px;
  color: #fff;
  flex-shrink: 0;
}
.problem-image .overlay .label {
  font-size: 15px; line-height: 1.4;
  color: rgba(255,255,255,0.94);
  max-width: 28ch;
  padding-bottom: 6px;
}

.problem-stats {
  display: flex; flex-direction: column;
  gap: 4px;
}
.problem-stat {
  padding: 32px 0;
  border-bottom: 1px solid rgba(0,48,87,0.1);
  display: grid;
  grid-template-columns: minmax(180px, max-content) 1fr;
  column-gap: 40px;
  align-items: center;
}
.problem-stat:first-child { padding-top: 0; }
.problem-stat:last-child { border-bottom: none; }
.problem-stat .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 4.8vw, 64px);
  line-height: 1;
  letter-spacing: -2px;
  background: var(--gradient-edge);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  padding-right: 4px;
}
.problem-stat .num.grad {
  background: var(--gradient-edge);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.problem-stat .num.grad-trust {
  background: var(--gradient-trust);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.problem-stat .num.grad-velocity {
  background: var(--gradient-velocity);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.problem-stat .body { color: var(--color-ink); }
.problem-stat .body .label {
  font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase;
  font-weight: 700; color: var(--color-navy);
  margin-bottom: 6px;
}
.problem-stat .body .desc {
  font-size: 17px; line-height: 1.5;
  color: var(--color-ink);
}
@media (max-width: 720px) {
  .problem-stat { grid-template-columns: 1fr; gap: 8px; }
}

.section-head p.problem-lede {
  color: var(--color-navy);
  font-size: 20px;
  line-height: 1.5;
  max-width: 64ch;
  text-wrap: pretty;
  margin-top: 20px;
}

.problem-source {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,48,87,0.12);
  font-size: 12px; line-height: 1.6;
  color: var(--color-gray);
  font-style: italic;
  max-width: none;
}

/* ============================================================
   ICP SOLUTIONS
   ============================================================ */
.icp-tabs {
  display: flex; gap: 8px;
  background: rgba(255,255,255,0.06);
  padding: 6px; border-radius: 100px;
  margin-bottom: 56px;
  width: fit-content;
  border: 1px solid rgba(255,255,255,0.12);
}
.surface-paper .icp-tabs,
.surface-mist .icp-tabs {
  background: #fff;
  border: 1px solid rgba(0,48,87,0.1);
  box-shadow: var(--shadow-sm);
}
.icp-tab {
  font-family: var(--font-body);
  font-weight: 600; font-size: 13px;
  letter-spacing: 0.2px;
  padding: 10px 20px;
  border-radius: 100px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.7);
  transition: all var(--dur-fast) var(--ease-snap);
  white-space: nowrap;
}
.surface-paper .icp-tab,
.surface-mist .icp-tab { color: var(--color-gray); }
.icp-tab:hover { color: #fff; }
.surface-paper .icp-tab:hover,
.surface-mist .icp-tab:hover { color: var(--color-navy); }
.icp-tab.active {
  background: #fff; color: var(--color-navy);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.surface-paper .icp-tab.active,
.surface-mist .icp-tab.active {
  background: var(--color-navy); color: #fff;
}

.icp-stage {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: stretch;
  min-height: 480px;
}
@media (max-width: 980px) { .icp-stage { grid-template-columns: 1fr; gap: 48px; min-height: 0; } }

.icp-content { transition: opacity 0.3s ease; }
.icp-content .icp-eyebrow {
  font-family: var(--font-body);
  font-weight: 700; font-size: 11px;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--cyan-300);
  margin-bottom: 16px;
}
.surface-paper .icp-content .icp-eyebrow,
.surface-mist .icp-content .icp-eyebrow { color: var(--cyan-700); }

.icp-content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.05;
  letter-spacing: -1px;
  margin: 0 0 20px;
  color: #fff;
}
.surface-paper .icp-content h3,
.surface-mist .icp-content h3 { color: var(--color-navy); }
.icp-content h3 em {
  font-style: normal;
  background: var(--gradient-velocity);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.icp-content .quote {
  font-size: 19px; line-height: 1.5;
  color: rgba(255,255,255,0.85);
  margin: 0 0 32px;
  max-width: 56ch;
}
.surface-paper .icp-content .quote,
.surface-mist .icp-content .quote { color: var(--color-gray); }

.icp-bullets {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: flex; flex-direction: column; gap: 14px;
}
.icp-bullets li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 15px; line-height: 1.45;
  color: rgba(255,255,255,0.92);
}
.surface-paper .icp-bullets li,
.surface-mist .icp-bullets li { color: var(--color-ink); }
.icp-bullets li::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-cyan);
  margin-top: 8px; flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(0,174,199,0.18);
}

.icp-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0));
  border: 1px solid rgba(255,255,255,0.1);
  padding: 32px;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 480px;
}
.surface-paper .icp-visual,
.surface-mist .icp-visual {
  background: #fff;
  border: 1px solid rgba(0,48,87,0.1);
  box-shadow: var(--shadow-md);
}

.icp-visual .visual-tag {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--cyan-300);
}
.surface-paper .icp-visual .visual-tag,
.surface-mist .icp-visual .visual-tag { color: var(--cyan-700); }

.icp-visual .visual-stat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(64px, 9vw, 132px);
  line-height: 0.9;
  letter-spacing: -3px;
  background: var(--gradient-velocity);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin: 24px 0 12px;
}
.icp-visual .visual-stat-label {
  font-size: 14px; line-height: 1.4;
  color: rgba(255,255,255,0.7);
  max-width: 30ch;
}
.surface-paper .icp-visual .visual-stat-label,
.surface-mist .icp-visual .visual-stat-label { color: var(--color-gray); }

.icp-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}
.icp-mini {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; padding: 14px;
  background: rgba(255,255,255,0.02);
}
.surface-paper .icp-mini,
.surface-mist .icp-mini { background: #F4F5F7; border-color: rgba(0,48,87,0.08); }

.icp-mini .k {
  font-family: var(--font-display);
  font-weight: 700; font-size: 28px;
  color: var(--color-cyan);
  line-height: 1;
}
.icp-mini .v {
  font-size: 11px; line-height: 1.4;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
  text-transform: uppercase; letter-spacing: 1.2px; font-weight: 600;
}
.surface-paper .icp-mini .v,
.surface-mist .icp-mini .v { color: var(--color-gray); }

/* ============================================================
   ENGINE / HOW IT WORKS
   ============================================================ */
.engine-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  margin-top: 32px;
}
@media (max-width: 880px) {
  .engine-flow { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .engine-flow { grid-template-columns: 1fr; }
}
.engine-step {
  background: #fff;
  border: 1px solid rgba(0,48,87,0.08);
  border-radius: 12px;
  padding: 28px 24px 32px;
  position: relative;
  transition: transform var(--dur-base) var(--ease-snap), box-shadow var(--dur-base) var(--ease-snap);
}
.engine-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,48,87,0.1);
}
.engine-step .num {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 1.4px;
  color: var(--color-cyan); font-weight: 700;
  margin-bottom: 14px;
}
.engine-step h4 {
  font-family: var(--font-display);
  font-weight: 700; font-size: 22px;
  letter-spacing: -0.4px; line-height: 1.15;
  color: var(--color-navy);
  margin: 0 0 12px;
}
.engine-step p {
  font-size: 14px; line-height: 1.55;
  color: var(--color-gray);
  margin: 0;
}
.engine-step::before {
  content: "";
  position: absolute; left: 28px; right: 28px; top: 0;
  height: 3px;
  background: var(--gradient-trust);
  border-radius: 0 0 3px 3px;
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-snap);
}
.engine-step:hover::before { opacity: 1; }
.engine-step:nth-child(2)::before { background: var(--gradient-velocity); }
.engine-step:nth-child(3)::before { background: var(--gradient-edge); }
.engine-step:nth-child(4)::before { background: var(--gradient-trust); }

/* ============================================================
   PROVEN VOICE EXPERIENCE — 4 PILLARS
   ============================================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 720px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  background: var(--color-navy);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.pillar:nth-child(1) { background: var(--navy-900); }
.pillar:nth-child(4) { background: var(--navy-900); }
.pillar .badge-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -2px;
  background: var(--gradient-velocity);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 18px;
}
.pillar h4 {
  font-family: var(--font-display);
  font-weight: 700; font-size: 22px;
  letter-spacing: -0.4px; line-height: 1.15;
  margin: 0 0 14px; color: #fff;
}
.pillar p {
  font-size: 15px; line-height: 1.55;
  color: rgba(255,255,255,0.72);
  margin: 0;
}

/* ============================================================
   IMAGE-OVER-DATA — outcome card
   ============================================================ */
.outcome-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}
@media (max-width: 980px) { .outcome-grid { grid-template-columns: 1fr; } }

.outcome-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 440px;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  color: #fff;
}
.outcome-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0;
}
.outcome-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,26,51,0.1) 0%, rgba(0,26,51,0.85) 100%);
  z-index: 1;
}
.outcome-card > * { position: relative; z-index: 2; }
.outcome-card .stat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -2.5px;
  background: var(--gradient-velocity);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.outcome-card .label {
  font-size: 16px; line-height: 1.4;
  margin-top: 14px; max-width: 32ch;
  color: rgba(255,255,255,0.92);
}
.outcome-card .source {
  font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase;
  margin-top: 14px;
  color: rgba(255,255,255,0.6);
}

.outcome-text { padding: 16px 0; }
.outcome-text h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1; letter-spacing: -0.8px;
  margin: 0 0 18px;
  color: var(--color-navy);
}
.outcome-text h3 em {
  font-style: normal;
  background: var(--gradient-trust);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.outcome-text p {
  font-size: 17px; line-height: 1.55;
  color: var(--color-gray);
  margin: 0 0 24px;
}

/* ============================================================
   TRUSTED INFRASTRUCTURE LOGOS
   ============================================================ */
.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: center;
}
@media (max-width: 880px) { .logo-strip { grid-template-columns: repeat(3, 1fr); } }
.logo-cell {
  height: 68px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 14px;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
  transition: color var(--dur-fast) var(--ease-snap), border-color var(--dur-fast) var(--ease-snap);
}
.logo-cell:hover { color: #fff; border-color: rgba(255,255,255,0.25); }

.logo-strip-real { grid-template-columns: repeat(5, 1fr); gap: 16px; }
@media (max-width: 880px) { .logo-strip-real { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .logo-strip-real { grid-template-columns: repeat(2, 1fr); } }
.logo-strip-real .logo-cell {
  height: 80px;
  background: rgba(255,255,255,0.04);
  padding: 18px 22px;
}
.logo-strip-real .logo-cell img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.62;
  transition: opacity var(--dur-base) var(--ease-snap);
  object-fit: contain;
}
.logo-strip-real .logo-cell:hover img { opacity: 1; }
/* HIPAA mark is a tall square; constrain its height so it doesn't tower
   over the wider wordmark logos in the strip. */
.logo-strip-real .logo-cell[title="HIPAA"] img {
  filter: none;
  opacity: 0.85;
  max-height: 44px;
}
/* ElevenLabs SVG is light-gray; let it sit naturally on dark, no invert */
.logo-strip-real .logo-cell[title="ElevenLabs"] img {
  filter: none;
  opacity: 0.85;
}

/* ============================================================
   LOGO MARQUEE — animated two-row block slider
   ============================================================ */
.logo-marquee {
  display: flex; flex-direction: column; gap: 16px;
  margin-top: 8px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.logo-marquee-row {
  overflow: hidden;
  width: 100%;
}
.logo-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: logo-marquee-scroll 38s linear infinite;
  will-change: transform;
}
.logo-marquee-track-reverse {
  animation-direction: reverse;
  animation-duration: 44s;
}
.logo-marquee:hover .logo-marquee-track { animation-play-state: paused; }
@keyframes logo-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-100% / 3)); }
}
.logo-cell-marquee {
  flex: 0 0 auto;
  width: 200px;
  height: 88px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  padding: 18px 24px;
  transition: border-color var(--dur-fast) var(--ease-snap), background var(--dur-fast) var(--ease-snap);
}
.logo-cell-marquee:hover {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.07);
}
.logo-cell-marquee img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.62;
  object-fit: contain;
  transition: opacity var(--dur-base) var(--ease-snap);
}
.logo-cell-marquee:hover img { opacity: 1; }
.logo-cell-marquee[title="ElevenLabs"] img { filter: brightness(0) invert(1); opacity: 0.62; }
@media (max-width: 720px) {
  .logo-cell-marquee { width: 160px; height: 76px; padding: 14px 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .logo-marquee-track { animation: none; }
}

/* ============================================================
   CTA — final call
   ============================================================ */
.cta-final {
  position: relative;
  border-radius: 24px;
  padding: 80px 64px;
  background: var(--gradient-trust);
  overflow: hidden;
  color: #fff;
}
.cta-final::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("pattern-honeycomb-navy.png");
  background-size: 320px;
  opacity: 0.08;
  mix-blend-mode: screen;
}
.cta-final::after {
  content: "";
  position: absolute; right: -120px; top: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(240,179,35,0.45), transparent 60%);
}
.cta-final > * { position: relative; z-index: 1; }
.cta-final h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.05; letter-spacing: -1.2px;
  margin: 0 0 18px;
  color: #fff;
  max-width: 22ch;
}
.cta-final h2 em {
  font-style: normal;
  background: var(--gradient-velocity);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cta-final p {
  font-size: 18px; line-height: 1.55;
  color: rgba(255,255,255,0.85);
  max-width: 56ch; margin: 0 0 36px;
}
.cta-final .actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-final .btn-on-grad {
  background: #fff; color: var(--color-navy);
  font-family: var(--font-body); font-weight: 700;
  font-size: 14px; letter-spacing: 0.4px;
  padding: 16px 24px; border-radius: 4px;
  border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none;
  transition: transform var(--dur-fast) var(--ease-snap);
}
.cta-final .btn-on-grad:hover { transform: translateY(-1px); }
.cta-final .btn-outline-light {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
  font-family: var(--font-body); font-weight: 700;
  font-size: 14px; letter-spacing: 0.4px;
  padding: 16px 22px; border-radius: 4px;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none;
  transition: all var(--dur-fast) var(--ease-snap);
}
.cta-final .btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
@media (max-width: 720px) { .cta-final { padding: 56px 32px; border-radius: 16px; } }
.cta-form-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
@media (max-width: 900px) { .cta-form-grid { grid-template-columns: 1fr; gap: 40px; } }
.cta-form-head h2 { color: #fff; font-size: clamp(24px, 3vw, 36px); line-height: 1.2; margin: 0 0 18px; }
.cta-form-head h2 em { color: var(--color-cyan); font-style: normal; }
.cta-form-head p { color: rgba(255,255,255,0.7); font-size: 16px; line-height: 1.6; margin: 0; }
.cta-contact-form { display: grid; gap: 14px; }
.cta-contact-form .ccf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: start; }
@media (max-width: 540px) { .cta-contact-form .ccf-row { grid-template-columns: 1fr; } }
.cta-contact-form label { display: grid; gap: 6px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.8); }
.cta-contact-form input,
.cta-contact-form textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px; padding: 10px 14px;
  font-size: 14px; color: #fff;
  font-family: var(--font-body); width: 100%;
  transition: border-color 0.2s;
}
.cta-contact-form input::placeholder,
.cta-contact-form textarea::placeholder { color: rgba(255,255,255,0.35); }
.cta-contact-form input:focus,
.cta-contact-form textarea:focus { outline: none; border-color: var(--color-cyan); }
.cta-contact-form .btn-on-grad { margin-top: 4px; }
.ccf-success { color: rgba(255,255,255,0.85); font-size: 16px; padding: 20px 0 0; }
.problem-close {
  margin-top: 40px; font-size: 17px; line-height: 1.65;
  color: var(--color-gray); max-width: 72ch;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr 1fr 1.3fr;
  column-gap: 44px;
  row-gap: 40px;
  margin-bottom: 56px;
}
@media (max-width: 1100px) { .footer-top { grid-template-columns: 1.6fr 1fr 1fr 1fr; column-gap: 40px; } }
@media (max-width: 880px) { .footer-top { grid-template-columns: 1fr 1fr 1fr; column-gap: 32px; } }
@media (max-width: 600px) { .footer-top { grid-template-columns: 1fr 1fr; column-gap: 28px; } }
@media (max-width: 400px) { .footer-top { grid-template-columns: 1fr; } }
.footer h5 {
  font-family: var(--font-body);
  font-weight: 700; font-size: 11px;
  letter-spacing: 1.6px; text-transform: uppercase;
  color: #fff; margin: 0 0 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a {
  color: rgba(255,255,255,0.65);
  text-decoration: none; font-size: 14px;
  transition: color var(--dur-fast) var(--ease-snap);
}
.footer ul a:hover { color: #fff; }
.footer-brand img { height: 64px; margin-bottom: 24px; }
.footer-brand p { font-size: 14px; line-height: 1.55; margin: 0 0 24px; max-width: 36ch; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: grid; place-items: center;
  color: #fff; text-decoration: none;
  font-size: 13px;
  transition: all var(--dur-fast) var(--ease-snap);
}
.footer-social a:hover { background: var(--color-cyan); border-color: var(--color-cyan); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 24px;
  font-size: 12px; color: rgba(255,255,255,0.5);
}
.footer-accel { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.footer-legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 12px; }
.footer-legal-links a:hover { color: rgba(255,255,255,0.8); }
.footer-accel-label {
  font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase;
  font-weight: 600; color: rgba(255,255,255,0.5);
}
.footer-accel-logo {
  height: 32px; width: auto; opacity: 0.85;
  filter: brightness(0) invert(1);
}
.footer-accel-hipaa {
  filter: none;
  opacity: 0.85;
  background: transparent;
  padding: 0;
  border-radius: 0;
  height: 36px;
}

/* Compliance gate, vertical policy flow under the lede */
.compliance-gate {
  margin: 28px 0 32px;
  padding: 20px 22px 18px;
  background: #ffffff;
  border: 1px solid rgba(0, 48, 87, 0.10);
  border-radius: 14px;
  box-shadow: 0 16px 32px -24px rgba(0, 48, 87, 0.25);
  position: relative;
  overflow: hidden;
}
.compliance-gate::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,48,87,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,48,87,0.04) 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, transparent, #000 25%, #000 75%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 25%, #000 75%, transparent);
}
.compliance-gate > * { position: relative; }

.cg-header {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 12px;
  margin-bottom: 8px;
  border-bottom: 1px dashed rgba(0,48,87,0.10);
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
}
.cg-status {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--color-cyan, #00AEC7);
  font-weight: 600;
}
.cg-pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: #2BB673;
  box-shadow: 0 0 0 3px rgba(43,182,115,0.18);
  animation: cg-blink 2s ease-in-out infinite;
}
@keyframes cg-blink { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.cg-meta { color: var(--color-gray, #5B6878); }

.cg-steps { list-style: none; padding: 0; margin: 0; }
.cg-step {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  position: relative;
}
.cg-rail {
  position: relative;
  align-self: stretch;
  display: flex; justify-content: center;
}
.cg-rail::before {
  content: "";
  position: absolute; top: 0; bottom: -10px; left: 50%;
  width: 2px;
  background: linear-gradient(180deg, var(--color-cyan, #00AEC7), rgba(0,48,87,0.15));
  transform: translateX(-50%);
}
.cg-step.last .cg-rail::before { display: none; }
.cg-node {
  position: relative;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--color-cyan, #00AEC7);
  margin-top: 4px;
  z-index: 1;
}
.cg-node-gate {
  border-color: var(--color-orange, #DC582A);
  background: rgba(220, 88, 42, 0.12);
  box-shadow: 0 0 0 4px rgba(220, 88, 42, 0.12);
}
.cg-node-end {
  background: var(--gradient-trust, linear-gradient(135deg, #0E2F5A, #00AEC7));
  border-color: transparent;
}
.cg-body { min-width: 0; }
.cg-name {
  font-family: var(--font-display);
  font-weight: 700; font-size: 14px;
  color: var(--color-navy, #0E2F5A);
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.cg-pill {
  display: inline-block;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-weight: 600;
  font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--color-orange, #DC582A);
  background: rgba(220, 88, 42, 0.10);
  border: 1px solid rgba(220, 88, 42, 0.22);
  padding: 2px 6px;
  border-radius: 3px;
}
.cg-detail {
  font-size: 12px;
  color: var(--color-gray, #5B6878);
  line-height: 1.4;
  margin-top: 2px;
}
.cg-tag {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 10px; letter-spacing: 0.06em;
  color: var(--color-cyan, #00AEC7);
  background: rgba(0, 174, 199, 0.08);
  border: 1px solid rgba(0, 174, 199, 0.20);
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
}
.cg-tag.tag-gate {
  color: var(--color-orange, #DC582A);
  background: rgba(220, 88, 42, 0.08);
  border-color: rgba(220, 88, 42, 0.22);
}
.cg-footer {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(0,48,87,0.10);
  font-size: 12px;
  color: var(--color-gray, #5B6878);
  line-height: 1.5;
}
.cg-footer b { color: var(--color-navy, #0E2F5A); font-weight: 700; }

@media (max-width: 720px) {
  .cg-step { grid-template-columns: 20px 1fr; }
  .cg-tag { grid-column: 2; justify-self: start; margin-top: 4px; }
}

/* ============================================================
   RISK & COMPLIANCE — bold orange surface, white inner cards
   ============================================================ */
.section-risk {
  position: relative;
  isolation: isolate;
  padding: 120px 0 100px;
  color: #FFF7F2;
  overflow: hidden;
}

@keyframes risk-glow-pulse {
  0%,100% { transform: translate3d(0,0,0) scale(1); opacity: 0.55; }
  50%     { transform: translate3d(2%, -1%, 0) scale(1.08); opacity: 0.75; }
}
@keyframes risk-eyebrow-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,233,213,0); }
  50%     { box-shadow: 0 0 0 6px rgba(255,233,213,0.18); }
}
@keyframes risk-card-rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes risk-num-tick {
  0%   { transform: translateY(8px); opacity: 0; letter-spacing: 0; }
  60%  { transform: translateY(-2px); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; letter-spacing: -0.02em; }
}
@keyframes rfw-scan {
  0%   { background-position: -120% 0; }
  100% { background-position: 220% 0; }
}
@keyframes rfw-ants {
  to { background-position: 48px 0, -48px 0, 0 48px, 0 -48px; }
}
@keyframes rfw-ants-legacy {
  to { background-position: 28px 0, -28px 0, 0 28px, 0 -28px; }
}
@keyframes rfw-firewall-pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(240,179,35,0.18), 0 12px 20px -10px rgba(220,88,42,0.35); }
  50%     { box-shadow: 0 0 0 10px rgba(240,179,35,0.08), 0 16px 28px -10px rgba(220,88,42,0.45); }
}
@keyframes rfw-callout-shimmer {
  0%,100% { background-position: 0% 50%; }
  50%     { background-position: 100% 50%; }
}
@keyframes rp-tick {
  0% { opacity: 0; transform: translateY(6px); }
  100% { opacity: 1; transform: translateY(0); }
}
.risk-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(110% 70% at 80% 0%, #F0B323 0%, transparent 50%),
    radial-gradient(90% 80% at 0% 100%, #4A1308 0%, transparent 55%),
    linear-gradient(135deg, #DC582A 0%, #B0451E 40%, #65260F 100%);
}
.risk-grain {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    radial-gradient(rgba(0,0,0,0.10) 1px, transparent 1px);
  background-size: 28px 28px, 16px 16px;
  background-position: 0 0, 8px 8px;
  mix-blend-mode: overlay;
  opacity: 0.4;
}
.risk-glow {
  position: absolute; top: -20%; right: -10%;
  width: 60%; height: 70%;
  background: radial-gradient(circle, rgba(255, 220, 180, 0.30), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  animation: risk-glow-pulse 9s ease-in-out infinite;
}

/* Head */
.risk-head { max-width: 880px; margin-bottom: 48px; }
.risk-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body, "Archivo", sans-serif);
  font-weight: 700; font-size: 12px;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: #FFFFFF;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
  animation: risk-eyebrow-pulse 3.4s ease-in-out infinite;
}
.risk-eyebrow svg { color: #FFE9D5; }
.risk-title {
  font-family: var(--font-display, "Forza", sans-serif);
  font-weight: 700;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  color: #FFFFFF;
}
.risk-accent {
  background: linear-gradient(135deg, #FFE9D5 0%, #F0B323 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.risk-lede {
  font-size: 18px; line-height: 1.55;
  color: rgba(255,247,242,0.88);
  max-width: 66ch;
  margin: 0;
}

/* Stat cards row, white solid for max contrast */
.risk-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.rs-card {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 28px 24px 24px;
  box-shadow: 0 20px 40px -22px rgba(74, 19, 8, 0.45);
  border: 1px solid rgba(255,255,255,0.6);
  position: relative;
  overflow: hidden;
  animation: risk-card-rise 700ms cubic-bezier(.2,.7,.2,1) backwards;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.rs-card:nth-child(1) { animation-delay: 80ms; }
.rs-card:nth-child(2) { animation-delay: 160ms; }
.rs-card:nth-child(3) { animation-delay: 240ms; }
.rs-card:nth-child(4) { animation-delay: 320ms; }
.rs-card:hover { transform: translateY(-4px); box-shadow: 0 26px 50px -22px rgba(74, 19, 8, 0.55); }
.rs-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #DC582A, #F0B323);
}
.rs-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 4.6vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(145deg, #DC582A, #F0B323);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 10px;
  animation: risk-num-tick 900ms cubic-bezier(.2,.7,.2,1) backwards;
  animation-delay: inherit;
}
.rs-label {
  font-size: 13px;
  line-height: 1.45;
  color: #5B6878;
  font-weight: 500;
}
@media (max-width: 980px) { .risk-stats { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .risk-stats { grid-template-columns: 1fr; } }

/* Context Firewall card, full white */
.risk-firewall {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 32px 32px 28px;
  box-shadow: 0 30px 60px -28px rgba(74, 19, 8, 0.45);
  margin-bottom: 24px;
}
.rfw-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(14, 47, 90, 0.08);
}
.rfw-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: #DC582A;
  font-weight: 700;
  margin-bottom: 10px;
}
.rfw-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #DC582A;
  box-shadow: 0 0 0 3px rgba(220, 88, 42, 0.18);
  animation: rfw-blink 1.8s ease-in-out infinite;
}
@keyframes rfw-blink { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.rfw-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: #0E2F5A;
  margin: 0;
  max-width: 38ch;
}
.rfw-legend {
  display: flex; flex-direction: column; gap: 8px;
  flex-shrink: 0;
}
.rfw-legend-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase;
  color: #5B6878;
}
.rfw-swatch {
  width: 12px; height: 12px; border-radius: 3px;
}
.rfw-swatch.det { background: rgba(0, 174, 199, 0.20); border: 1px solid rgba(0, 174, 199, 0.5); }
.rfw-swatch.gen { background: rgba(240, 179, 35, 0.22); border: 1px solid rgba(240, 179, 35, 0.6); }
.rfw-swatch.fw  { background: rgba(220, 88, 42, 0.15); border: 1px dashed #DC582A; }
@media (max-width: 720px) {
  .rfw-head { flex-direction: column; align-items: flex-start; }
}

/* Flow */
.rfw-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-top: 12px;
}
.rfw-track {
  position: absolute;
  left: 6%; right: 6%; top: 32px;
  height: 4px;
  z-index: 0;
}
.rfw-fence {
  position: absolute;
  left: 62.5%;
  transform: translateX(-50%);
  width: 32%;
  top: -10px;
  height: 96px;
  z-index: 1;
  overflow: visible;
  pointer-events: none;
}
.rfw-fence-rect {
  animation: rfw-fence-march 1.6s linear infinite;
}
@keyframes rfw-fence-march {
  to { stroke-dashoffset: -30; }
}
.rfw-track-fill {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.55) 50%, rgba(255,255,255,0) 100%) 0 0 / 30% 100% no-repeat,
    linear-gradient(90deg,
      rgba(0,174,199,0.45) 0%,
      rgba(0,174,199,0.45) 40%,
      rgba(240,179,35,0.55) 50%,
      rgba(240,179,35,0.55) 75%,
      rgba(0,174,199,0.45) 85%,
      rgba(0,174,199,0.45) 100%);
  background-blend-mode: overlay, normal;
  border-radius: 2px;
  animation: rfw-scan 4.8s linear infinite;
}
.rfw-track-gen-deprecated { display: none; }
@keyframes rfw-ants {
  to { background-position: 48px 0, -48px 0, 0 48px, 0 -48px; }
}
.rfw-step {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  gap: 10px;
}
.rfw-step-dot {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 3px solid #00AEC7;
  color: #0E2F5A;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 16px -8px rgba(14, 47, 90, 0.25);
}
.rfw-step-dot svg { width: 26px; height: 26px; }
.rfw-step.is-firewalled .rfw-step-dot {
  border-color: #F0B323;
  background: linear-gradient(180deg, #FFFFFF 0%, #FEF6DF 100%);
  box-shadow: 0 0 0 4px rgba(240, 179, 35, 0.18), 0 12px 20px -10px rgba(220, 88, 42, 0.35);
  animation: rfw-firewall-pulse 2.6s ease-in-out infinite;
}
.rfw-step-meta {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.rfw-step-name {
  font-family: var(--font-display);
  font-weight: 700; font-size: 18px;
  color: #0E2F5A;
}
.rfw-step-tag {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: #00AEC7;
  background: rgba(0, 174, 199, 0.08);
  border: 1px solid rgba(0, 174, 199, 0.20);
  padding: 3px 8px;
  border-radius: 999px;
}
.rfw-step.is-firewalled .rfw-step-tag {
  color: #B0451E;
  background: rgba(220, 88, 42, 0.10);
  border-color: rgba(220, 88, 42, 0.30);
}
.rfw-step-desc {
  font-size: 13px;
  color: #5B6878;
  line-height: 1.5;
  max-width: 24ch;
}
@media (max-width: 720px) {
  .rfw-flow { grid-template-columns: 1fr 1fr; }
  .rfw-track { display: none; }
  .rfw-track-gen { display: none; }
}

/* Callout: Context Firewall explanation */
.rfw-callout {
  margin-top: 28px;
  padding: 20px 24px;
  background: linear-gradient(135deg, #FEF6DF 0%, #FFE9D5 50%, #FEF6DF 100%);
  background-size: 200% 200%;
  border: 1px solid rgba(220, 88, 42, 0.20);
  border-radius: 14px;
  display: flex; gap: 18px; align-items: flex-start;
  animation: rfw-callout-shimmer 8s ease-in-out infinite;
}
.rfw-callout-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: #FFFFFF;
  color: #DC582A;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(220, 88, 42, 0.20);
}
.rfw-callout-icon svg { width: 22px; height: 22px; }
.rfw-callout-title {
  font-family: var(--font-display);
  font-weight: 700; font-size: 16px;
  color: #0E2F5A;
  margin-bottom: 4px;
}
.rfw-callout-desc {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: #5B6878;
}

/* Proof strip, full white for contrast */
.risk-proof {
  display: grid;
  grid-template-columns: auto repeat(3, 1fr);
  gap: 0;
  align-items: stretch;
  background: #FFFFFF;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 40px -22px rgba(74, 19, 8, 0.45);
  margin-bottom: 20px;
}
.rp-cell {
  padding: 22px 28px;
  border-right: 1px solid rgba(14, 47, 90, 0.08);
  display: flex; flex-direction: column; justify-content: center;
  animation: rp-tick 600ms cubic-bezier(.2,.7,.2,1) backwards;
}
.rp-cell:nth-child(1) { animation-delay: 100ms; }
.rp-cell:nth-child(2) { animation-delay: 180ms; }
.rp-cell:nth-child(3) { animation-delay: 260ms; }
.rp-cell:nth-child(4) { animation-delay: 340ms; }
.rp-cell:last-child { border-right: 0; }
.rp-cell-badge { padding: 22px 24px; }
.rp-cell-badge img {
  height: 56px; width: auto; opacity: 1;
  filter: none;
}
.rp-stat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  background: linear-gradient(145deg, #003057, #00AEC7);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.rp-label {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: #5B6878;
}
@media (max-width: 720px) {
  .risk-proof { grid-template-columns: 1fr 1fr; }
  .rp-cell { border-right: 0; border-bottom: 1px solid rgba(14, 47, 90, 0.08); }
  .rp-cell:nth-child(odd) { border-right: 1px solid rgba(14, 47, 90, 0.08); }
  .rp-cell-badge { grid-column: span 2; }
}

/* Sources line */
.risk-sources {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 10.5px; letter-spacing: 0.04em;
  color: rgba(255,247,242,0.62);
  text-align: center;
}

/* Reduced motion, kill the animations */
@media (prefers-reduced-motion: reduce) {
  .risk-glow,
  .risk-eyebrow,
  .rs-card,
  .rs-num,
  .rfw-track-fill,
  .rfw-track-gen,
  .rfw-step.is-firewalled .rfw-step-dot,
  .rfw-callout,
  .rp-cell {
    animation: none !important;
  }
}

/* ============================================================
   PRODUCT PAGE — competitor-grade additions
   ============================================================ */
.product-hero { padding: 80px 0 60px; }
.product-hero h1 { font-size: clamp(32px, 4vw, 58px); letter-spacing: -1.5px; max-width: 20ch; }
.product-hero .ph-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 980px) { .product-hero .ph-grid { grid-template-columns: 1fr; gap: 32px; } }
.ph-trust {
  display: grid; grid-template-columns: repeat(4, auto);
  gap: 18px 28px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,48,87,0.08);
  font-size: 13px;
  color: #5B6878;
  width: fit-content;
}
.ph-trust-item strong { color: #0E2F5A; font-family: var(--font-display); font-weight: 700; }
@media (max-width: 540px) { .ph-trust { grid-template-columns: repeat(2, auto); } }

/* Live demo card */
.ph-demo { position: relative; }
.ph-demo-card {
  background: linear-gradient(180deg, #0E2F5A 0%, #001a30 100%);
  border-radius: 18px;
  padding: 24px 24px 18px;
  box-shadow: 0 30px 60px -28px rgba(0,48,87,0.5);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ph-demo-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at top, rgba(0,174,199,0.18), transparent 60%);
}
.ph-demo-card > * { position: relative; }
.ph-demo-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px dashed rgba(255,255,255,0.12);
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.ph-demo-status { display: inline-flex; align-items: center; gap: 8px; color: #6FE3A1; }
.ph-demo-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #6FE3A1;
  box-shadow: 0 0 0 3px rgba(111,227,161,0.22);
  animation: ph-blink 1.6s ease-in-out infinite;
}
@keyframes ph-blink { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.ph-demo-transcript {
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 16px;
  min-height: 260px;
}
.ph-line { display: flex; gap: 12px; align-items: flex-start; }
.ph-line p { margin: 0; font-size: 14px; line-height: 1.5; color: rgba(255,255,255,0.92); }
.ph-tag {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 9px; letter-spacing: 0.12em;
  padding: 3px 6px;
  border-radius: 3px;
  flex-shrink: 0;
  margin-top: 2px;
  background: rgba(0,174,199,0.18);
  color: #66D2DF;
  font-weight: 700;
}
.ph-tag.user { background: rgba(240,179,35,0.18); color: #F0B323; }
.ph-tag.meta { background: rgba(220,88,42,0.18); color: #F0B499; }
.ph-line-meta p { color: rgba(255,255,255,0.6); font-size: 12px; font-family: var(--font-mono, ui-monospace, monospace); }

.ph-demo-wave {
  display: flex; align-items: center; justify-content: center; gap: 3px;
  height: 36px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255,255,255,0.12);
}
.ph-bar {
  width: 3px; border-radius: 2px;
  background: linear-gradient(180deg, #00AEC7, #66D2DF);
  animation: ph-wave 1.2s ease-in-out infinite;
}
@keyframes ph-wave {
  0%,100% { transform: scaleY(0.4); opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* Architecture stack */
.section-architecture {
  background: linear-gradient(180deg, #F6F8FB 0%, #ffffff 100%);
}
.arch-stack {
  display: flex; flex-direction: column;
  gap: 0;
  max-width: 980px;
  margin: 0 auto;
}
.arch-layer {
  background: #ffffff;
  border: 1px solid rgba(0,48,87,0.10);
  border-radius: 16px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  box-shadow: 0 6px 20px -16px rgba(0,48,87,0.25);
}
.arch-layer-label {
  flex-shrink: 0;
  width: 110px;
  display: flex; flex-direction: column;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: #0E2F5A;
}
.arch-layer-label span {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 10px; letter-spacing: 0.12em;
  color: #00AEC7;
  font-weight: 700;
}
.arch-layer-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; flex: 1;
}
.arch-layer-edge .arch-layer-cards { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 720px) {
  .arch-layer { flex-direction: column; align-items: stretch; }
  .arch-layer-label { width: auto; }
  .arch-layer-cards, .arch-layer-edge .arch-layer-cards { grid-template-columns: 1fr; }
}
.arch-card {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: #F6F8FB;
  border: 1px solid rgba(0,48,87,0.06);
  border-radius: 10px;
}
.arch-card strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700; font-size: 14px;
  color: #0E2F5A;
}
.arch-card span {
  display: block;
  font-size: 11px;
  color: #5B6878;
  margin-top: 2px;
}
.arch-card .warn-tag {
  display: inline-block;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase;
  color: #DC582A;
  background: rgba(220,88,42,0.10);
  border: 1px solid rgba(220,88,42,0.22);
  padding: 1px 6px;
  border-radius: 3px;
  margin-top: 4px;
}
.arch-card-warn { border-color: rgba(240,179,35,0.35); background: linear-gradient(135deg, #FEF6DF 0%, #FFE9D5 100%); }
.arch-icon {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.arch-icon svg { width: 18px; height: 18px; }
.arch-icon.orange { background: rgba(220,88,42,0.12); color: #DC582A; }
.arch-icon.cyan   { background: rgba(0,174,199,0.14); color: #008FA3; }
.arch-icon.yellow { background: rgba(240,179,35,0.16); color: #B98818; }
.arch-icon.navy   { background: rgba(14,47,90,0.10); color: #0E2F5A; }

.arch-connector {
  height: 28px;
  display: flex; justify-content: center;
  position: relative;
}
.arch-pulse {
  width: 2px; height: 100%;
  background: linear-gradient(180deg, rgba(0,174,199,0.6) 0%, rgba(0,48,87,0.2) 100%);
  border-radius: 1px;
  position: relative;
  overflow: hidden;
}
.arch-pulse::before {
  content: ""; position: absolute; top: -8px; left: -3px;
  width: 8px; height: 8px;
  background: #00AEC7;
  border-radius: 50%;
  box-shadow: 0 0 8px #00AEC7;
  animation: arch-flow 2s linear infinite;
}
.arch-pulse.delay-1::before { animation-delay: 0.4s; }
.arch-pulse.delay-2::before { animation-delay: 0.8s; }
@keyframes arch-flow {
  from { transform: translateY(0); opacity: 0; }
  20%  { opacity: 1; }
  to   { transform: translateY(28px); opacity: 0; }
}

/* Comparison table — v2, elevated Consig column */
.cmp-table {
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 40px 80px -40px rgba(0,48,87,0.30), 0 8px 24px -16px rgba(0,48,87,0.18);
  position: relative;
  isolation: isolate;
}
.cmp-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  border-top: 1px solid rgba(0,48,87,0.06);
}
.cmp-row:first-child { border-top: none; }
.cmp-row > * { transition: background-color 200ms ease; }
.cmp-row:not(.cmp-head):hover > .cmp-feat { background: rgba(0,48,87,0.02); }
.cmp-row:not(.cmp-head):hover > .cmp-cell:nth-child(2) { background: rgba(0,48,87,0.025); }

/* Header */
.cmp-row.cmp-head {
  background: linear-gradient(180deg, #F4F7FB 0%, #ECF1F7 100%);
}
.cmp-row.cmp-head > div {
  padding: 26px 28px;
  font-size: 13px;
  position: relative;
}
.cmp-them, .cmp-us { display: flex; flex-direction: column; gap: 4px; }
.cmp-them {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-weight: 500;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: #6B7785;
}
.cmp-them span {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-weight: 400;
  font-size: 10px; letter-spacing: 0.10em; text-transform: uppercase;
  color: #9099A8;
}
.cmp-us {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  background: linear-gradient(180deg, #001a33 0%, #003057 100%);
  position: relative;
}
.cmp-us::before {
  content: "RECOMMENDED";
  position: absolute;
  top: 12px; right: 16px;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-weight: 700;
  font-size: 9px; letter-spacing: 0.14em;
  color: #001a33;
  background: linear-gradient(135deg, #00AEC7 0%, #F0B323 100%);
  padding: 3px 8px;
  border-radius: 999px;
  z-index: 2;
}
.cmp-us span {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-weight: 500;
  font-size: 10px; letter-spacing: 0.10em; text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}

/* Body cells */
.cmp-feat {
  padding: 22px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.005em;
  color: #0E2F5A;
}
.cmp-cell {
  padding: 22px 28px;
  font-size: 14px;
  line-height: 1.45;
  display: flex; align-items: center; gap: 12px;
}
.cmp-cell:nth-child(2) { color: #6B7785; }

/* Consig column body — continuous navy gradient */
.cmp-row .cmp-cell:nth-child(3),
.cmp-row > div:nth-child(3) {
  background: linear-gradient(180deg, #003057 0%, #001a33 100%);
  color: #FFFFFF;
  font-weight: 500;
  position: relative;
}
.cmp-row.cmp-head .cmp-us {
  border-top-right-radius: 0;
}

/* Marks */
.cmp-no::before {
  content: "";
  flex-shrink: 0;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(220,88,42,0.10);
  border: 1px solid rgba(220,88,42,0.22);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23DC582A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M6 6l12 12M18 6l-12 12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}
.cmp-yes::before {
  content: "";
  flex-shrink: 0;
  width: 24px; height: 24px; border-radius: 50%;
  background: linear-gradient(135deg, #00AEC7 0%, #66D2DF 100%);
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23001a33' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12l5 5L20 7'/></svg>"),
    linear-gradient(135deg, #00AEC7 0%, #66D2DF 100%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px, 100% 100%;
  box-shadow: 0 0 0 1px rgba(0,174,199,0.40), 0 4px 10px -4px rgba(0,174,199,0.45);
}

@media (max-width: 720px) {
  .cmp-table .cmp-row { grid-template-columns: 1fr; }
  .cmp-row > .cmp-feat { background: linear-gradient(180deg, #F4F7FB, #ECF1F7); }
  .cmp-row .cmp-cell:nth-child(2) { padding-top: 4px; }
  .cmp-row .cmp-cell:nth-child(3) { padding-top: 4px; }
  .cmp-us::before { right: auto; left: 16px; }
}

/* ============================================================
   COMPLIANCE / RISK — owns the orange semantic color
   ============================================================ */
.compliance-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 96px;
  align-items: start;
}
@media (max-width: 980px) { .compliance-grid { grid-template-columns: 1fr; gap: 56px; } }

.compliance-head .eyebrow-risk {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange-100);
  color: var(--orange-700);
  padding: 8px 14px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  border: 1px solid rgba(220,88,42,0.2);
}
.compliance-head .eyebrow-risk::before { display: none; }

.compliance-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -1px;
  margin: 22px 0 22px;
  color: var(--color-navy);
  max-width: 18ch;
}
.compliance-head h2 em { font-style: normal; color: var(--color-risk); }
.compliance-head p {
  font-size: 17px; line-height: 1.55;
  color: var(--color-gray);
  max-width: 52ch;
  margin: 0 0 36px;
}

.compliance-badges {
  display: flex; align-items: center; gap: 24px;
  background: #fff;
  border: 1px solid rgba(0,48,87,0.08);
  border-radius: 12px;
  padding: 18px 24px;
  box-shadow: var(--shadow-sm);
  width: fit-content;
  flex-wrap: wrap;
}
.compliance-badges img {
  height: 48px; width: auto; display: block;
  filter: brightness(0) saturate(100%) invert(13%) sepia(48%) saturate(2421%) hue-rotate(189deg) brightness(96%) contrast(101%);
}
.badge-divider { width: 1px; height: 36px; background: rgba(0,48,87,0.1); }
.badge-meta { display: flex; flex-direction: column; gap: 2px; }
.badge-meta-k {
  font-family: var(--font-display);
  font-weight: 700; font-size: 22px; line-height: 1;
  color: var(--color-risk);
  letter-spacing: -0.5px;
}
.badge-meta-v {
  font-size: 11px; letter-spacing: 1.2px;
  text-transform: uppercase; font-weight: 600;
  color: var(--color-gray);
}

.compliance-flags {
  display: flex; flex-direction: column;
  gap: 0;
  background: #FFFFFF;
  border: 1px solid rgba(0,48,87,0.08);
  border-radius: 16px;
  padding: 12px 28px;
  box-shadow: var(--shadow-md);
}
.flag-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 22px 0;
  align-items: start;
  border-bottom: 1px dashed rgba(0,48,87,0.08);
}
.flag-card:last-child { border-bottom: none; }

.flag-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-weight: 700; font-size: 11px;
  letter-spacing: 1.4px;
  color: var(--color-risk);
  background: var(--orange-100);
  padding: 6px 10px;
  border-radius: 4px;
  width: fit-content;
  border: 1px solid rgba(220,88,42,0.15);
}
.flag-tag-pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-risk);
  box-shadow: 0 0 0 3px rgba(220,88,42,0.2);
  animation: pulse-orange 1.8s ease-in-out infinite;
}
@keyframes pulse-orange {
  0%,100% { box-shadow: 0 0 0 3px rgba(220,88,42,0.2); }
  50%     { box-shadow: 0 0 0 6px rgba(220,88,42,0); }
}

.flag-body .flag-label {
  font-family: var(--font-display);
  font-weight: 700; font-size: 18px;
  letter-spacing: -0.2px;
  color: var(--color-navy);
  margin-bottom: 6px;
}
.flag-body .flag-desc {
  font-size: 14px; line-height: 1.55;
  color: var(--color-gray);
}
@media (max-width: 540px) {
  .flag-card { grid-template-columns: 1fr; gap: 10px; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* Type-driven mode (Tweak) */
body.imagery-off .hero-visual,
body.imagery-off .problem-image,
body.imagery-off .outcome-card img { display: none; }
body.imagery-off .outcome-card { background: var(--gradient-trust); min-height: 360px; }
body.imagery-off .problem-grid { grid-template-columns: 1fr; }
body.imagery-off .problem-image { display: none; }
body.imagery-off .outcome-grid { grid-template-columns: 1fr; }

/* Gradient intensity (Tweak) */
body.grad-subtle .grad,
body.grad-subtle .grad-velocity,
body.grad-subtle .grad-edge,
body.grad-subtle .visual-stat,
body.grad-subtle .outcome-card .stat,
body.grad-subtle .problem-stat .num.grad,
body.grad-subtle .problem-stat .num.grad-trust,
body.grad-subtle .problem-stat .num.grad-velocity,
body.grad-subtle .badge-num,
body.grad-subtle .icp-content h3 em,
body.grad-subtle .section-head h2 em,
body.grad-subtle .outcome-text h3 em,
body.grad-subtle .cta-final h2 em {
  background: none !important;
  -webkit-text-fill-color: var(--color-navy) !important;
  color: var(--color-navy) !important;
}
body.grad-subtle .surface-navy .badge-num,
body.grad-subtle .surface-deep .badge-num,
body.grad-subtle .pillar .badge-num,
body.grad-subtle .surface-navy .section-head h2 em,
body.grad-subtle .surface-deep .section-head h2 em,
body.grad-subtle .icp-content h3 em {
  color: var(--color-cyan) !important;
  -webkit-text-fill-color: var(--color-cyan) !important;
}
body.grad-subtle .cta-final { background: var(--color-navy) !important; }
body.grad-subtle .hero-visual { background: var(--color-navy) !important; }
body.grad-subtle .btn-grad.gradient { background: var(--color-navy) !important; }

body.grad-bold .surface-mist { background: linear-gradient(180deg, #F4F5F7 0%, #E8EEF3 100%); }
body.grad-bold .pillar { position: relative; }
body.grad-bold .pillar::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--gradient-trust);
  opacity: 0.15;
  pointer-events: none;
}


/* ============================================================
   HOMEPAGE — Consigliere's Desk card row
   ============================================================ */
.desk-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 900px) { .desk-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .desk-grid { grid-template-columns: 1fr; } }

/* Desk cards reuse the insights .insight-card look (pages.css not loaded here) */
.desk .insight-card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid rgba(0,48,87,0.08);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.desk .insight-card:hover { transform: translateY(-4px); border-color: rgba(0,174,199,0.4); box-shadow: 0 28px 56px -32px rgba(0,48,87,0.3); }
.desk .ic-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.desk .ic-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 500ms ease; }
.desk .ic-media.ph-thumb { background: linear-gradient(135deg, #EAF2F7, #DCE9F0); }
.desk .ic-media .ph-thumb-icon { width: 52px; height: 52px; opacity: 0.5; }
.desk .ic-media.ph-thumb.tone-orange { background: linear-gradient(135deg, rgba(217,88,42,0.14), rgba(240,179,35,0.14)); color: var(--color-orange); }
.desk .ic-media.ph-thumb.tone-cyan { background: linear-gradient(135deg, rgba(0,174,199,0.16), rgba(0,131,160,0.10)); color: #0083A0; }
.desk .ic-media.ph-thumb.tone-yellow { background: linear-gradient(135deg, rgba(240,179,35,0.18), rgba(217,88,42,0.10)); color: #B0791A; }
.desk .ic-media.ph-thumb.tone-navy { background: linear-gradient(135deg, rgba(0,48,87,0.12), rgba(0,174,199,0.10)); color: var(--color-navy); }
.desk .insight-card:hover .ic-media img { transform: scale(1.05); }
.desk .ic-media .post-cat {
  position: absolute; top: 14px; left: 14px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.4px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 4px 14px rgba(0,26,51,0.18);
}
.desk .ic-media .post-cat.tone-orange { color: var(--color-orange); }
.desk .ic-media .post-cat.tone-cyan { color: #0083A0; }
.desk .ic-media .post-cat.tone-yellow { color: #B0791A; }
.desk .ic-media .post-cat.tone-navy { color: var(--color-navy); }
.desk .ic-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.desk .ic-meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: #8A94A4; margin-bottom: 10px; }
.desk .ic-body h3 { font-family: var(--font-display); font-weight: 700; font-size: 19px; line-height: 1.25; letter-spacing: -0.01em; color: var(--color-navy); margin: 0 0 10px; }
.desk .ic-body p { font-size: 14px; line-height: 1.55; color: var(--color-gray); margin: 0 0 20px; }
.desk .ic-foot { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.desk .ic-avatar { width: 30px; height: 30px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: #EAF2F7; display: grid; place-items: center; }
.desk .ic-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.desk .ic-author { font-size: 13px; font-weight: 600; color: var(--color-navy); }
.desk .ic-arrow { margin-left: auto; color: var(--color-cyan); font-size: 18px; transition: transform 200ms ease; }
.desk .insight-card:hover .ic-arrow { transform: translateX(4px); }

.desk-card {
  display: flex; flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  background: var(--color-navy);
  box-shadow: 0 24px 48px -32px rgba(0,48,87,0.4);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.desk-card:hover { transform: translateY(-4px); box-shadow: 0 36px 64px -32px rgba(0,48,87,0.5); }
.desk-card-media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; }
.desk-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.desk-card:hover .desk-card-media img { transform: scale(1.05); }
.desk-card-media .post-cat { position: absolute; top: 14px; left: 14px; }
.desk-card-body {
  flex: 1;
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 24px;
  padding: 24px;
  background: var(--color-navy);
}
.desk-card-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0;
}
.desk-card-arrow {
  align-self: flex-end;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  display: grid; place-items: center;
  color: #fff;
  transition: background 200ms ease, transform 200ms ease;
}
.desk-card-arrow svg { width: 16px; height: 16px; }
.desk-card:hover .desk-card-arrow { background: var(--gradient-trust); border-color: transparent; transform: rotate(-30deg); }
.desk-foot { display: flex; justify-content: center; margin-top: 48px; }

/* ── intl-tel-input overrides ─────────────────────────────────────── */
.iti { width: 100%; min-width: 0; display: block; }
.iti__tel-input { width: 100%; min-width: 0; }
.iti__flag-container { z-index: 10; }
.iti__selected-country {
  background: transparent;
  border-right: 1px solid rgba(0,0,0,0.12);
  padding: 0 10px;
  gap: 6px;
}
.iti__selected-country:hover { background: rgba(0,0,0,0.04); }
.iti__selected-country-primary { display: flex; align-items: center; gap: 6px; }
.iti__arrow { border-top-color: var(--color-text, #333); opacity: 0.5; }
.iti__arrow--up { border-bottom-color: var(--color-text, #333); }
.iti__country-list {
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  margin-top: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  background: #fff;
  color: #1a1a2e;
}
.iti__country-list li { padding: 8px 14px; color: #1a1a2e; }
.iti__country-list .iti__highlight { background: #eef6fb; color: #1a1a2e; }
.iti__country-name { color: #1a1a2e; }
.iti__dial-code { color: #555; }
.iti__search-input {
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.15);
  padding: 6px 10px;
  font-size: 14px;
  width: calc(100% - 20px);
  margin: 8px 10px;
}

/* dark surface (FinalCTA) overrides */
.surface-paper .iti__selected-country { border-right-color: rgba(255,255,255,0.18); }
.surface-paper .iti__selected-country:hover { background: rgba(255,255,255,0.06); }
.surface-paper .iti__arrow { border-top-color: rgba(255,255,255,0.6); }
.surface-paper .iti__arrow--up { border-bottom-color: rgba(255,255,255,0.6); }
.req { color: #f97316; font-weight: 600; }

/* ── Field validation errors ──────────────────────────────────────── */
.field-error {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  padding: 8px 12px 8px 10px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  font-size: 13px;
  color: #1a1a2e;
  width: fit-content;
  position: relative;
  animation: errIn 150ms ease;
}
.field-error::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 16px;
  width: 8px;
  height: 8px;
  background: #fff;
  border-left: 1px solid rgba(0,0,0,0.1);
  border-top: 1px solid rgba(0,0,0,0.1);
  transform: rotate(45deg);
}
.field-error-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: #f97316;
  color: #fff;
  border-radius: 4px;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
}
@keyframes errIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* White * on dark/colored backgrounds */
.cta-contact-form .req { color: rgba(255,255,255,0.75); }
