:root {
  --bg: #f8fafc;
  --bg-soft: #f1f5f9;
  --bg-problem: #f4f7f9;
  --surface: rgba(255, 255, 255, 0.94);
  --surface-solid: #ffffff;
  --surface-accent: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
  --text: #0f172a;
  --muted: #475569;
  --muted-soft: #64748b;
  --border: rgba(148, 163, 184, 0.22);
  --accent: #e53935;
  --accent-soft: rgba(229, 57, 53, 0.08);
  --yellow: #ffc107;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.05);
  --radius-lg: 2rem;
  --radius-md: 1.25rem;
  --radius-sm: 0.875rem;
  --container: 1320px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.05), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 32%, #ffffff 100%);
  line-height: 1.5;
}

body.js-motion-enabled .reveal-item {
  opacity: 0;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 6rem 0;
}

.section--soft {
  background: linear-gradient(180deg, rgba(241, 245, 249, 0.7), rgba(248, 250, 252, 0.3));
}

#problem {
  background: var(--bg-problem);
}

.section--hero {
  overflow: clip;
  padding-top: 9rem;
  padding-bottom: 7rem;
}

.section--cta {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.5rem;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(229, 57, 53, 0.28);
}

.brand__name {
  font-size: 1.5rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: var(--muted);
  font-weight: 500;
}

.site-nav a {
  position: relative;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #e53935, #ff6b6b);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.25rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--text);
  margin: 0.3rem 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero__content {
  position: relative;
  text-align: center;
  max-width: 58rem;
  padding-bottom: 0.6rem;
}

.hero__bg {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero__bg--right {
  width: 40rem;
  height: 40rem;
  top: -12rem;
  right: -10rem;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08), transparent 68%);
  animation: driftHero 12s ease-in-out infinite;
}

.hero__bg--left {
  width: 28rem;
  height: 28rem;
  left: -8rem;
  bottom: -10rem;
  border: 1px solid rgba(59, 130, 246, 0.08);
  animation: driftHero 15s ease-in-out infinite reverse;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 8vw, 5.8rem);
  line-height: 1.16;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-bottom: 0.12em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

h4 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero__lede,
.cta-copy__lede {
  margin: 0 auto;
  max-width: 45rem;
  color: var(--muted);
  font-size: clamp(1.1rem, 2.4vw, 1.7rem);
}

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

.hero__lede {
  position: relative;
  z-index: 0;
}

.hero__actions {
  margin-top: 2.25rem;
}

.hero__microcopy {
  margin-top: 1.35rem;
  color: var(--muted-soft);
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.hero__microcopy i {
  color: #10b981;
  font-size: 1rem;
  flex: 0 0 auto;
}

.reveal-item {
  --reveal-distance: 28px;
  --reveal-scale: 0.985;
  transform: translateY(var(--reveal-distance)) scale(var(--reveal-scale));
  filter: blur(6px);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 700ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity, filter;
}

.reveal .reveal-item.is-visible,
.reveal--hero.is-visible .reveal-item {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.reveal--hero .hero__content .reveal-item:nth-child(1) {
  --reveal-delay: 80ms;
}

.reveal--hero .hero__content .reveal-item:nth-child(2) {
  --reveal-delay: 180ms;
}

.reveal--hero .hero__content .reveal-item:nth-child(3) {
  --reveal-delay: 300ms;
}

.reveal--hero .hero__content .reveal-item:nth-child(4) {
  --reveal-delay: 420ms;
}

.reveal--hero .hero__content .reveal-item:nth-child(5) {
  --reveal-delay: 520ms;
}

#problem .problem-lead {
  --reveal-delay: 60ms;
}

#problem .problem-core-card {
  --reveal-delay: 140ms;
}

#problem .problem-arrow--one {
  --reveal-delay: 260ms;
}

#problem .problem-column:first-of-type {
  --reveal-delay: 360ms;
}

#problem .problem-arrow--two {
  --reveal-delay: 520ms;
}

#problem .problem-column:last-of-type {
  --reveal-delay: 640ms;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0.9rem;
  padding: 1rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
}

.button--primary:hover,
.button--primary:focus-visible {
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.22);
}

.button--full {
  width: 100%;
}

.section-heading {
  margin-bottom: 2.5rem;
}

.section-heading--split {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2rem;
  align-items: end;
}

.section-heading--centered {
  text-align: center;
  max-width: 52rem;
  margin-right: auto;
  margin-left: auto;
}

.section-heading--compact {
  margin-bottom: 1.5rem;
}

.section-heading__text {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.contact-form,
.contact-form,
.solution-panel,
.highlight-card,
.mini-card,
.why-card,
.process-step,
.capability-card,
.info-card {
  background: var(--surface-accent);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.problem-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) 4.25rem minmax(0, 1fr) 4.25rem minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.problem-lead {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.problem-headline {
  margin-bottom: 2rem;
  padding-top: 2rem;
}

.problem-headline h2 {
  font-size: clamp(2rem, 2vw + 1rem, 2.3rem);
  line-height: 1.2;
  margin-bottom: 0.25rem;
  color: var(--text);
  background: none;
  -webkit-text-fill-color: initial;
}

.problem-core-card {
  margin-top: auto;
  min-height: 26rem;
  border-radius: 0.95rem;
  padding: 3rem 2.4rem;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border: 1px solid #e2e8f0;
  border-left: 6px solid var(--accent);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 700ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.24s ease,
    border-color 0.24s ease;
  transition-delay: var(--reveal-delay, 0ms), var(--reveal-delay, 0ms), var(--reveal-delay, 0ms), 0ms, 0ms;
}

.problem-core-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #e53935 0%, #ff6b6b 100%);
}

.problem-core-card h3 {
  font-size: clamp(1.9rem, 2vw, 2.25rem);
  margin-bottom: 1rem;
}

.problem-core-card p {
  margin-bottom: 0;
  color: var(--muted-soft);
  font-size: clamp(1rem, 1.2vw, 1.35rem);
  line-height: 1.6;
}

.problem-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.problem-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  color: #94a3b8;
  font-size: 2.9rem;
  min-height: 100%;
}

.problem-column__header {
  margin-bottom: 0.25rem;
  text-align: center;
}

.problem-column__header h3 {
  font-size: clamp(1.9rem, 2vw, 2.25rem);
  margin-bottom: 0;
}

.problem-timeline-card {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  min-height: 8.3rem;
  padding: 1.25rem 1.5rem;
  border-radius: 0.95rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 700ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.22s ease,
    border-color 0.22s ease;
  transition-delay: var(--reveal-delay, 0ms), var(--reveal-delay, 0ms), var(--reveal-delay, 0ms), 0ms, 0ms;
}

#problem .problem-column:first-of-type .problem-timeline-card:nth-child(2) { --reveal-delay: 430ms; }
#problem .problem-column:first-of-type .problem-timeline-card:nth-child(3) { --reveal-delay: 500ms; }
#problem .problem-column:first-of-type .problem-timeline-card:nth-child(4) { --reveal-delay: 570ms; }
#problem .problem-column:first-of-type .problem-timeline-card:nth-child(5) { --reveal-delay: 640ms; }
#problem .problem-column:first-of-type .problem-timeline-card:nth-child(6) { --reveal-delay: 710ms; }

#problem .problem-column:last-of-type .problem-timeline-card:nth-child(2) { --reveal-delay: 730ms; }
#problem .problem-column:last-of-type .problem-timeline-card:nth-child(3) { --reveal-delay: 800ms; }
#problem .problem-column:last-of-type .problem-timeline-card:nth-child(4) { --reveal-delay: 870ms; }
#problem .problem-column:last-of-type .problem-timeline-card:nth-child(5) { --reveal-delay: 940ms; }
#problem .problem-column:last-of-type .problem-timeline-card:nth-child(6) { --reveal-delay: 1010ms; }

.problem-timeline-card h4 {
  margin-bottom: 0.3rem;
  font-size: 1.28rem;
  color: #1e293b;
}

.problem-timeline-card p {
  margin-bottom: 0;
  color: var(--muted-soft);
  font-size: 1rem;
  line-height: 1.35;
}

.problem-icon {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: var(--yellow);
  color: #ffffff;
  font-size: 1.35rem;
}

.problem-icon--red {
  background: var(--accent);
}

.problem-core-card:hover,
.problem-core-card:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.problem-timeline-card:hover,
.problem-timeline-card:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.09);
  border-color: #d7e0ea;
}

.problem-timeline-card:hover .problem-icon,
.problem-timeline-card:focus-within .problem-icon {
  transform: scale(1.06);
  box-shadow: 0 10px 18px rgba(255, 193, 7, 0.24);
}

.problem-timeline-card:hover .problem-icon--red,
.problem-timeline-card:focus-within .problem-icon--red {
  box-shadow: 0 10px 18px rgba(229, 57, 53, 0.22);
}

.problem-icon {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.process-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 5rem minmax(0, 1fr) 5rem minmax(0, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
  align-items: center;
}

.process-flow--original {
  max-width: 67rem;
  margin-right: auto;
  margin-left: auto;
}

.process-step {
  position: relative;
  padding: 1.75rem;
  border-radius: 1rem;
  min-height: 10rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 700ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.22s ease,
    border-color 0.22s ease;
  transition-delay: var(--reveal-delay, 0ms), var(--reveal-delay, 0ms), var(--reveal-delay, 0ms), 0ms, 0ms;
}

.process-step h3 {
  margin-bottom: 0.65rem;
  font-size: 1.45rem;
}

.process-step p {
  margin-bottom: 0;
  font-size: 1.05rem;
}

.process-connector {
  position: relative;
  height: 2px;
  background: #cbd5e1;
}

.process-connector::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid #cbd5e1;
  border-right: 2px solid #cbd5e1;
  transform: translateY(-50%) rotate(45deg);
}

#solution .section-heading {
  --reveal-delay: 120ms;
}

#solution .process-step:nth-child(1) { --reveal-delay: 260ms; }
#solution .process-connector:nth-child(2) { --reveal-delay: 400ms; }
#solution .process-step:nth-child(3) { --reveal-delay: 540ms; }
#solution .process-connector:nth-child(4) { --reveal-delay: 680ms; }
#solution .process-step:nth-child(5) { --reveal-delay: 820ms; }

#solution .solution-panel {
  --reveal-delay: 980ms;
}

#solution .capabilities-grid .capability-card:nth-child(1) { --reveal-delay: 1100ms; }
#solution .capabilities-grid .capability-card:nth-child(2) { --reveal-delay: 1190ms; }
#solution .capabilities-grid .capability-card:nth-child(3) { --reveal-delay: 1280ms; }
#solution .capabilities-grid .capability-card:nth-child(4) { --reveal-delay: 1370ms; }

.process-step__kicker {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.process-step p,
.capability-card p,
.highlight-card p,
.why-card p,
.mini-card p,
.cta-copy__support,
.site-footer p {
  color: var(--muted);
}

.solution-panel {
  border-radius: calc(var(--radius-lg) + 0.4rem);
  padding: 3rem 2.5rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.capabilities-grid,
.three-up-grid,
.why-grid {
  display: grid;
  gap: 1.25rem;
}

.capabilities-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.three-up-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.highlight-card,
.mini-card,
.why-card,
.capability-card {
  border-radius: var(--radius-md);
  padding: 2rem 2.25rem;
}

.capability-card {
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid #f1f5f9;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  min-height: 13.75rem;
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 700ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.24s ease,
    border-color 0.24s ease;
  transition-delay: var(--reveal-delay, 0ms), var(--reveal-delay, 0ms), var(--reveal-delay, 0ms), 0ms, 0ms;
}

.capability-card h4 {
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.capability-card p {
  font-size: 1.05rem;
  line-height: 1.5;
}

.audience-section-block + .audience-section-block {
  margin-top: 2rem;
}

.three-up-grid--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-card h4 {
  margin-bottom: 0;
}

.original-title-group {
  text-align: center;
}

.original-section-title {
  color: #1a1a1a;
  font-size: clamp(2.1rem, 3vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.original-section-title--small {
  font-size: clamp(2rem, 2.2vw, 2.6rem);
}

.section-divider {
  width: 7.5rem;
  height: 4px;
  margin: 0.95rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #e53935, #ff6b6b);
}

.highlight-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(246,249,252,0.98) 100%);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 8px 28px -10px rgba(15, 23, 42, 0.12), 0 2px 12px -4px rgba(15, 23, 42, 0.05);
  min-height: 11.875rem;
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 700ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
  transition-delay: var(--reveal-delay, 0ms), var(--reveal-delay, 0ms), var(--reveal-delay, 0ms), 0ms, 0ms;
}

.highlight-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
}

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

.mini-card {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 9.5rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(246,249,252,0.98) 100%);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 8px 28px -10px rgba(15, 23, 42, 0.12), 0 2px 12px -4px rgba(15, 23, 42, 0.05);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 700ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
  transition-delay: var(--reveal-delay, 0ms), var(--reveal-delay, 0ms), var(--reveal-delay, 0ms), 0ms, 0ms;
}

.mini-card h4 {
  font-size: 1.25rem;
}

.three-up-grid .highlight-card:nth-child(1),
.three-up-grid--compact .mini-card:nth-child(1),
.why-grid .why-card:nth-child(1) { --reveal-delay: 90ms; }

.three-up-grid .highlight-card:nth-child(2),
.three-up-grid--compact .mini-card:nth-child(2),
.why-grid .why-card:nth-child(2) { --reveal-delay: 180ms; }

.three-up-grid .highlight-card:nth-child(3),
.three-up-grid--compact .mini-card:nth-child(3),
.why-grid .why-card:nth-child(3) { --reveal-delay: 270ms; }

.why-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.why-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(246,249,252,0.98) 100%);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 8px 28px -10px rgba(15, 23, 42, 0.12), 0 2px 12px -4px rgba(15, 23, 42, 0.05);
  min-height: 10rem;
  padding: 2rem 2.25rem;
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 700ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
  transition-delay: var(--reveal-delay, 0ms), var(--reveal-delay, 0ms), var(--reveal-delay, 0ms), 0ms, 0ms;
}

.why-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
}

.why-card p {
  font-size: 1rem;
  line-height: 1.5;
}

.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: 3rem;
  align-items: start;
}

.cta-copy {
  padding-top: 3rem;
  min-height: 48rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cta-copy__support {
  max-width: 30rem;
  font-size: 1.05rem;
}

.cta-copy__title {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #0f0f0f;
  background: none;
  -webkit-text-fill-color: initial;
}

.cta-copy__lede {
  max-width: 42rem;
  margin: 0;
  color: #4a4a4a;
  font-size: clamp(1.35rem, 2.4vw, 2.15rem);
  line-height: 1.35;
}

.cta-copy__support a {
  color: var(--accent);
  font-weight: 600;
  transition: color 0.2s ease;
}

.cta-copy__support a:hover,
.cta-copy__support a:focus-visible {
  color: #c62828;
}

.contact-form {
  border-radius: 3rem;
  padding: 3rem 3rem 2.5rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 700ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.24s ease;
  transition-delay: var(--reveal-delay, 0ms), var(--reveal-delay, 0ms), var(--reveal-delay, 0ms), 0ms;
}

.contact-form__header {
  display: flex;
  justify-content: center;
  padding-bottom: 1.25rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid rgba(229, 57, 53, 0.2);
}

.contact-form .form-field:nth-child(1) { --reveal-delay: 70ms; }
.contact-form .form-field:nth-child(2) { --reveal-delay: 120ms; }
.contact-form .form-field:nth-child(3) { --reveal-delay: 170ms; }
.contact-form .form-field:nth-child(4) { --reveal-delay: 220ms; }
.contact-form .form-field:nth-child(5) { --reveal-delay: 270ms; }
.contact-form .form-field:nth-child(6) { --reveal-delay: 320ms; }
.contact-form .form-field:nth-child(7) { --reveal-delay: 370ms; }

.cta-copy .reveal-item:nth-child(1) { --reveal-delay: 80ms; }
.cta-copy .reveal-item:nth-child(2) { --reveal-delay: 170ms; }
.cta-copy .reveal-item:nth-child(3) { --reveal-delay: 260ms; }
.cta-copy .reveal-item:nth-child(4) { --reveal-delay: 340ms; }

.brand--form .brand__name {
  font-size: 1.8rem;
}

.contact-form__trap {
  position: absolute;
  left: -9999px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.5rem;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field span,
.checkbox-field {
  font-weight: 600;
}

.form-field span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 1rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #dbe2ea;
  border-radius: 0.9rem;
  background: #fcfcfd;
  padding: 0.95rem 1rem;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(229, 57, 53, 0.45);
  box-shadow: 0 0 0 4px rgba(229, 57, 53, 0.12);
  background: #ffffff;
}

.checkbox-field {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin: 1.25rem 0 1rem;
  color: var(--muted);
  font-weight: 500;
}

.checkbox-field input {
  margin-top: 0.2rem;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
  font-size: 0.95rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.process-step:hover,
.process-step:focus-within,
.capability-card:hover,
.capability-card:focus-within,
.highlight-card:hover,
.highlight-card:focus-within,
.mini-card:hover,
.mini-card:focus-within,
.why-card:hover,
.why-card:focus-within,
.contact-form:hover,
.contact-form:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
}

.capability-card:hover,
.capability-card:focus-within,
.highlight-card:hover,
.highlight-card:focus-within,
.mini-card:hover,
.mini-card:focus-within,
.why-card:hover,
.why-card:focus-within {
  border-color: rgba(229, 57, 53, 0.22);
}

.why-card:hover,
.why-card:focus-within {
  background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(250,251,253,1) 100%);
}

.trust-badge:hover,
.trust-badge:focus-within {
  color: var(--text);
  transform: translateY(-1px);
}

.hero__microcopy i {
  transition: transform 0.2s ease, filter 0.2s ease;
}

.hero__microcopy:hover i,
.hero__microcopy:focus-within i {
  transform: scale(1.08);
  filter: drop-shadow(0 4px 10px rgba(16, 185, 129, 0.22));
}

@keyframes driftHero {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, 14px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .hero__bg--right,
  .hero__bg--left {
    animation: none !important;
  }

  .reveal-item,
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

.form-status {
  min-height: 1.5rem;
  margin: 1rem 0 0;
  color: var(--muted);
}

.form-status.is-error {
  color: #b91c1c;
}

.form-status.is-success {
  color: #047857;
}

.site-footer {
  padding: 1.5rem 0 2.5rem;
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.brand--footer .brand__name {
  font-size: 1.1rem;
}

@media (max-width: 1024px) {
  .section {
    padding: 5rem 0;
  }

  .problem-layout,
  .cta-layout,
  .capabilities-grid {
    grid-template-columns: 1fr;
  }

  .problem-arrow {
    min-height: auto;
    font-size: 2.4rem;
    padding: 0.25rem 0;
  }

  .process-flow,
  .three-up-grid,
  .three-up-grid--compact,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-connector {
    width: 2px;
    height: 3rem;
    justify-self: center;
  }

  .process-connector::after {
    right: 50%;
    top: auto;
    bottom: 0;
    transform: translateX(50%) rotate(135deg);
  }

  .problem-core-card {
    min-height: auto;
    margin-top: 0;
  }

  .cta-copy {
    min-height: auto;
    gap: 1.25rem;
    padding-top: 0;
  }
}

@media (max-width: 760px) {
  .site-header__inner {
    flex-wrap: wrap;
    padding: 0.8rem 0;
  }

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

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.5rem 0 1rem;
  }

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

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

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

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

  .section {
    padding: 4rem 0;
  }

  .section--hero {
    padding-top: 7rem;
  }

  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .process-flow,
  .three-up-grid,
  .three-up-grid--compact,
  .why-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .problem-arrow {
    font-size: 2.3rem;
    color: #94a3b8;
  }

  .problem-arrow i {
    transform: rotate(90deg);
  }

  .contact-form,
  .solution-panel,
  .problem-core-card {
    padding: 1.35rem;
  }

  .problem-headline {
    padding-top: 0;
    margin-bottom: 1.5rem;
  }

  .problem-timeline-card {
    min-height: auto;
    align-items: flex-start;
  }

  .contact-form {
    border-radius: 2rem;
    padding: 1.5rem;
  }

  .process-flow {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .process-step,
  .capability-card,
  .highlight-card,
  .mini-card,
  .why-card {
    min-height: auto;
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
