:root {
  --button: #10391d;
  --brand-rgb: 16, 57, 29;
  --buttonHover: #10391d;
  --bg: #ffffff;
  --surfaceAlt: #f5f7f4;
  --surfaceSoft: #fafbf9;
  --card: #ffffff;
  --ink: #101828;
  --muted: rgba(16, 24, 40, 0.72);
  --mutedStrong: rgba(16, 24, 40, 0.56);
  --stroke: rgba(16, 24, 40, 0.1);
  --shadow: 0 12px 30px rgba(16, 24, 40, 0.05);
  --shadow2: 0 10px 26px rgba(17, 35, 75, 0.08);
  --radius: 28px;
  --r2: 28px;
  --max: 1334px;
  --font-sans: "Albert Sans", "Segoe UI", Arial, sans-serif;
  --font-serif: "Young Serif", Georgia, serif;
}

* {
  box-sizing: border-box;
}
html,
body {
  min-height: 100%;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

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

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

.gridNoise {
  display: none;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 20px 0;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  margin-left: -20px;
  margin-top: -25px;
}

.logoMark {
  width: clamp(147px, 19.11vw, 221px);
  height: clamp(58px, 7.35vw, 88px);
  display: grid;
  place-items: center start;
}

#logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  display: none;
}

#logoFallback {
  display: none;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.languageSwitch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 2px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--mutedStrong);
}

.languageSwitchLink {
  color: inherit;
}

.languageSwitchLink:hover,
.languageSwitchLink.active {
  color: var(--button);
}

.languageDivider {
  color: rgba(16, 24, 40, 0.32);
}

.navLink {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 6px;
  font-size: 17px;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--mutedStrong);
}

.navLink:hover {
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  transition:
    background 0.18s ease,
    transform 0.18s ease;
}

.button.primary {
  background: var(--button);
  color: #ffffff;
}

.button.primary:hover {
  background: var(--buttonHover);
  transform: translateY(-1px);
}

.main {
  display: flex;
  flex-direction: column;
}

.sectionBlock,
.sectionAlt {
  width: 100vw;
  padding: clamp(92px, 12vw, 132px) clamp(24px, 4vw, 40px);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.sectionAlt {
  background: var(--surfaceAlt);
}

.sectionInner {
  max-width: var(--max);
  margin: 0 auto;
}

.sectionIntro {
  max-width: 760px;
  margin-bottom: 40px;
}

.sectionKicker {
  margin: 0 0 14px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--mutedStrong);
}

h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--button);
  letter-spacing: -0.03em;
  max-width: 980px;
  font-size: clamp(45px, 7.1vw, 73px);
  line-height: 0.94;
}

.heroTitleLine {
  display: block;
  white-space: normal;
}

.sectionTitle {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--button);
  letter-spacing: -0.026em;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.04;
}

.lead,
.sectionText,
.ctaText {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.hero {
  min-height: clamp(700px, 82vh, 880px);
  padding-top: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(128px, 12vw, 184px);
  position: relative;
  overflow: hidden;
}

.heroInner {
  max-width: var(--max);
  min-height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 760px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.heroCopy {
  max-width: 700px;
  transform: translateY(-30px);
}

.heroCopy {
  display: grid;
  gap: 22px;
}

.hero .lead {
  max-width: 620px;
}

.heroActions {
  padding-top: 6px;
}

.heroBars {
  position: absolute;
  right: 0;
  bottom: 100px;
  width: min(72vw, 1080px);
  pointer-events: none;
  z-index: 0;
}

.heroBarsSvg {
  display: block;
  width: 100%;
  height: auto;
}

.heroBarsLandscape {
  display: none;
}

@media (min-width: 981px) {
  .heroCopy {
    transform: translateY(60px);
  }
}

.hero-bar {
  transform: translateX(110%);
  transform-box: fill-box;
  transform-origin: right center;
  will-change: transform;
  animation-name: none;
  animation-duration: 820ms;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-fill-mode: both;
  animation-iteration-count: 1;
}

html.consent-pending .hero-bar {
  animation-name: none !important;
  transform: translateX(110%);
}

html.consent-resolved .hero-bar {
  animation-name: heroBarSlideIn;
}

.bar-green {
  animation-duration: 900ms;
  animation-delay: 0ms;
}

.bar-teal {
  animation-duration: 780ms;
  animation-delay: 120ms;
}

.bar-red {
  animation-duration: 840ms;
  animation-delay: 220ms;
}

.bar-blue {
  animation-duration: 760ms;
  animation-delay: 350ms;
}

.bar-cream {
  animation-duration: 820ms;
  animation-delay: 500ms;
}

.workflowSection .sectionIntro,
.faqSection .sectionIntro,
.ctaSection .sectionIntro {
  margin-bottom: 44px;
}

.workflowSection {
  padding-top: clamp(60px, 8vw, 84px);
  padding-bottom: clamp(60px, 8vw, 84px);
}

@media (min-width: 761px) {
  .workflowSection {
    margin-top: -100px;
    padding-top: calc(clamp(60px, 8vw, 84px) + 100px);
  }
}

.workflowSection .sectionIntro {
  margin-bottom: 28px;
  transform: none;
}

.workflowSection .sectionText {
  margin-top: 18px;
  max-width: 860px;
}

.caseSection {
  padding-top: clamp(72px, 9vw, 104px);
  padding-bottom: clamp(72px, 9vw, 104px);
}

.caseLayout {
  display: grid;
  gap: clamp(24px, 3.5vw, 38px);
  align-items: start;
}

.caseHeader {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: clamp(18px, 2.5vw, 30px);
  align-items: start;
  transform: translateY(15px);
}

.caseIntro {
  max-width: 760px;
  padding-top: clamp(16px, 2vw, 28px);
}

.caseText {
  margin-top: 14px;
  max-width: 780px;
}

.caseVisualStage {
  width: 100%;
  margin: 0;
}

.caseMockupButton {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: transparent;
  box-shadow: var(--shadow2);
  cursor: zoom-in;
}

.caseMockupPicture {
  display: block;
}

.caseMockupButton:focus-visible {
  outline: 3px solid rgba(var(--brand-rgb), 0.28);
  outline-offset: 5px;
}

.caseMockup {
  width: 100%;
  max-width: none;
  border: 1px solid var(--stroke);
  border-radius: 28px;
}

.caseMetric {
  width: min(100%, 430px);
  justify-self: start;
  margin-top: calc(clamp(28px, 3vw, 44px) + 5px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(var(--brand-rgb), 0.18);
  border-radius: 22px;
  background: rgba(250, 251, 249, 0.96);
  box-shadow: var(--shadow2);
}

.caseMetricValue {
  min-width: clamp(128px, 12vw, 190px);
  padding: 10px 14px 12px;
  border: 1px solid #cfe7d0;
  border-radius: 18px;
  background: #f4faf5;
  font-family: var(--font-serif);
  font-size: clamp(34px, 3.7vw, 48px);
  line-height: 0.92;
  letter-spacing: -0.026em;
  text-align: center;
  white-space: nowrap;
  color: var(--button);
}

.caseMetricText {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding-right: 4px;
}

.caseMetricLabel {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--button);
}

.caseMetricDetail {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--muted);
}

.caseCards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.caseCard {
  height: 100%;
  padding: 24px;
  border: 1px solid var(--stroke);
  border-radius: 22px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.caseCard h3 {
  margin: 0 0 10px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--button);
}

.caseCard p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  color: var(--muted);
}

.caseCard p + p {
  margin-top: 14px;
}

.sectionNote {
  margin: 18px 0 0;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--mutedStrong);
  font-size: 14px;
  line-height: 1.7;
}

body.modalOpen {
  overflow: hidden;
}

.imageModal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(16, 24, 40, 0.72);
}

.imageModal[hidden] {
  display: none;
}

.imageModalPanel {
  position: relative;
  width: min(94vw, 1420px);
  max-height: 90vh;
}

.imageModalPanel img {
  width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(16, 24, 40, 0.34);
}

.imageModalClose {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid rgba(var(--brand-rgb), 0.16);
  border-radius: 999px;
  background: #ffffff;
  color: var(--button);
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow2);
}

.faqList {
  display: grid;
  gap: 0;
}

.faqItem {
  border-bottom: 1px solid var(--stroke);
  padding: 20px 0;
}

.faqItem:first-child {
  border-top: 1px solid var(--stroke);
}

.faqItem summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.023em;
  color: var(--button);
}

.faqQuestion {
  flex: 1 1 auto;
}

.faqToggle {
  position: relative;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(var(--brand-rgb), 0.18);
  background: #ffffff;
  color: var(--button);
  box-shadow: 0 6px 16px rgba(var(--brand-rgb), 0.08);
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.faqToggle::before,
.faqToggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: opacity 0.18s ease;
}

.faqToggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faqItem[open] .faqToggle {
  background: var(--button);
  border-color: var(--button);
  color: #ffffff;
  transform: rotate(180deg);
}

.faqItem[open] .faqToggle::after {
  opacity: 0;
}

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

.faqItem p {
  margin: 12px 0 0;
  max-width: 760px;
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.ctaBand {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px 0;
  align-items: start;
}

.ctaSection .sectionTitle {
  margin-bottom: 22px;
}

.ctaCopy {
  max-width: 760px;
}

.ctaCopy .ctaText {
  max-width: 37ch;
}

.ctaVisual {
  width: 100%;
}

.ctaDashboardButton {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.ctaDashboardButton:focus-visible {
  outline: 3px solid rgba(var(--brand-rgb), 0.28);
  outline-offset: 5px;
}

.ctaDashboard {
  width: min(100%, 420px);
  height: auto;
  border-radius: 24px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow2);
}

.ctaButton {
  grid-column: auto;
  grid-row: auto;
  justify-self: start;
  align-self: start;
  margin-top: 0;
}

@media (min-width: 981px) {
  .ctaBand {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 560px);
    column-gap: clamp(50px, 6vw, 96px);
    row-gap: 24px;
    align-items: center;
  }

  .ctaCopy {
    max-width: 540px;
  }

  .ctaTitleBreak {
    display: block;
  }

  .ctaVisual {
    grid-column: 2;
    grid-row: 1 / span 2;
    justify-self: end;
    align-self: center;
    overflow: visible;
    margin-top: 70px;
  }

  .ctaDashboard {
    width: calc(100% + 150px);
    max-width: none;
    margin-left: -150px;
    transform: translateX(-60px);
  }

  .ctaButton {
    grid-column: 1;
    grid-row: 2;
  }
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--mutedStrong);
  font-size: 14px;
}

.footerSection {
  padding-top: clamp(30px, 3.9vw, 42px);
  padding-bottom: clamp(30px, 3.9vw, 42px);
}

.footerMeta {
  display: grid;
  gap: 6px;
}

.footerMeta strong {
  color: var(--ink);
  font-weight: 400;
}

.footerLinks {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: flex-end;
}

.footerLinkedIn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
}

.footerLinkedInLogo {
  width: 75px;
  height: 75px;
  object-fit: contain;
}
.flowBanner {
  display: block;
}
.flowFrame {
  --bg1: #ffffff;
  --bg2: #f8f0e0;
  --ink: var(--button);
  --muted: rgba(var(--brand-rgb), 0.62);
  --line: rgba(var(--brand-rgb), 0.12);
  --chip: #f4faf5;
  --chip-border: rgba(var(--brand-rgb), 0.16);
  --accent: var(--button);
  --accent-mid: #00995d;
  --accent-soft: #8db379;
  --accent-bright: #8db379;
  --accent-light: #ffffff;
  --spark: var(--button);
  --success: var(--button);
  --signal-line: rgba(var(--brand-rgb), 0.7);
  --signal-strong: var(--button);
  --decision-outline: var(--button);
  --decision-ring: rgba(var(--brand-rgb), 0.3);
  --glow: rgba(var(--brand-rgb), 0.22);
  --dur: 44s;
  position: relative;
  border-radius: var(--r2);
  border: 1px solid var(--stroke);
  background: #ffffff;
  box-shadow: var(--shadow2);
  padding: clamp(8px, 1.2vw, 14px);
  overflow: hidden;
}
.flowFrame svg {
  width: 100%;
  height: auto;
  display: block;
}
.flowFrame text {
  font-family: inherit;
  fill: var(--ink);
}
.flowFrameMobile {
  --mobile-line: rgba(var(--brand-rgb), 0.12);
  --mobile-pill: #f4faf5;
  --mobile-pill-border: rgba(var(--brand-rgb), 0.16);
  display: none;
  position: relative;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}
.flowFrameMobile::before {
  display: none;
}
.flowMobileStory {
  position: relative;
  display: grid;
  gap: 14px;
}
.flowFrameMobile:not(.flowStarted) .flowMobileStory > section,
.flowFrameMobile:not(.flowStarted) .flowMobileConnector {
  opacity: 0;
  transform: translateY(12px);
}
.flowFrameMobile:not(.flowStarted) .flowMobileHubGlow,
.flowFrameMobile:not(.flowStarted) .flowMobileHubRing,
.flowFrameMobile:not(.flowStarted) .flowMobileHubMark::after {
  opacity: 0;
}
.flowMobileSection {
  display: grid;
  gap: 10px;
}
.flowMobileSectionHead {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.flowMobileSectionLabel {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(var(--brand-rgb), 0.64);
}
.flowMobileGroupCard,
.flowMobileOutputList,
.flowMobileResult {
  position: relative;
  border: 1px solid var(--mobile-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 28px rgba(16, 24, 40, 0.06);
}
.flowMobileGroupCard {
  display: grid;
  gap: 0;
  padding: 8px 15px;
}
.flowMobileMiniRow {
  display: grid;
  gap: 8px;
  padding: 12px 0;
}
.flowMobileMiniRow + .flowMobileMiniRow {
  border-top: 1px solid rgba(var(--brand-rgb), 0.08);
}
.flowMobileMiniTitle {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--button);
}
.flowMobileIcon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(var(--brand-rgb), 0.1);
  background: linear-gradient(180deg, #f7fbf8 0%, #eef7f0 100%);
  color: var(--button);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.flowMobileIcon svg {
  width: 18px;
  height: 18px;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.flowMobilePills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.flowMobilePill {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 9px;
  border-radius: 999px;
  border: 1px solid var(--mobile-pill-border);
  background: var(--mobile-pill);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  color: var(--button);
}
.flowMobileConnector {
  position: relative;
  height: 22px;
  display: grid;
  place-items: center;
  overflow: visible;
}
.flowMobileConnector::before {
  content: "";
  width: 2px;
  height: 100%;
  transform-origin: top center;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(var(--brand-rgb), 0.08), rgba(var(--brand-rgb), 0.32));
}
.flowMobileConnector::after {
  content: "";
  position: absolute;
  top: -1px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--button);
  box-shadow: 0 0 0 5px rgba(var(--brand-rgb), 0.08);
}
.flowMobileHub {
  justify-self: center;
  width: min(210px, 100%);
  display: grid;
  gap: 0;
  justify-items: center;
  padding: 2px 0;
  text-align: center;
}
.flowMobileHubScene {
  position: relative;
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
}
.flowMobileHubGlow {
  position: absolute;
  inset: 16px;
  border-radius: 999px;
  border: 12px solid rgba(var(--brand-rgb), 0.06);
}
.flowMobileHubRing {
  position: absolute;
  inset: 20px;
  border-radius: 999px;
  border: 2px solid rgba(var(--brand-rgb), 0.16);
}
.flowMobileHubMark {
  position: relative;
  z-index: 1;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 0 0 10px rgba(var(--brand-rgb), 0.05),
    0 14px 26px rgba(16, 24, 40, 0.12);
}
.flowMobileHubMark::after {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: 999px;
  border: 1px solid rgba(var(--brand-rgb), 0.22);
  opacity: 0.68;
}
.flowMobileHubLogo {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.flowMobileOutputList {
  display: grid;
  gap: 0;
  padding: 6px 14px;
}
.flowMobileOutputItem {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
}
.flowMobileOutputItem + .flowMobileOutputItem {
  border-top: 1px solid rgba(var(--brand-rgb), 0.08);
}
.flowMobileOutputCopy {
  display: grid;
  gap: 3px;
  min-width: 0;
}
.flowMobileOutputTitle {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--button);
}
.flowMobileOutputMeta {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(16, 24, 40, 0.66);
}
.flowMobileResult {
  display: grid;
  gap: 10px;
  padding: 14px 14px 13px;
  border-radius: 24px;
  border: 1px solid rgba(var(--brand-rgb), 0.14);
  background: linear-gradient(180deg, #ffffff 0%, #f6faf7 100%);
  box-shadow: 0 16px 28px rgba(16, 24, 40, 0.08);
}
.flowMobileResultRow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--button);
}
.flowMobileCheck {
  position: relative;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: 999px;
  border: 1px solid rgba(var(--brand-rgb), 0.18);
  background: #f4faf5;
}
.flowMobileCheck::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 6px;
  width: 9px;
  height: 6px;
  border-left: 2px solid var(--button);
  border-bottom: 2px solid var(--button);
  transform: rotate(-45deg);
}
.flowFrameMobile.flowStarted .flowMobileStory > section:nth-of-type(1) {
  animation: flowMobileReveal 620ms cubic-bezier(0.22, 1, 0.36, 1) 0ms both;
}
.flowFrameMobile.flowStarted .flowMobileStory > .flowMobileConnector:nth-of-type(1) {
  animation: flowMobileReveal 420ms cubic-bezier(0.22, 1, 0.36, 1) 150ms both;
}
.flowFrameMobile.flowStarted .flowMobileStory > section:nth-of-type(2) {
  animation: flowMobileReveal 620ms cubic-bezier(0.22, 1, 0.36, 1) 250ms both;
}
.flowFrameMobile.flowStarted .flowMobileStory > .flowMobileConnector:nth-of-type(2) {
  animation: flowMobileReveal 420ms cubic-bezier(0.22, 1, 0.36, 1) 420ms both;
}
.flowFrameMobile.flowStarted .flowMobileStory > section:nth-of-type(3) {
  animation: flowMobileReveal 620ms cubic-bezier(0.22, 1, 0.36, 1) 520ms both;
}
.flowFrameMobile.flowStarted .flowMobileStory > .flowMobileConnector:nth-of-type(3) {
  animation: flowMobileReveal 420ms cubic-bezier(0.22, 1, 0.36, 1) 690ms both;
}
.flowFrameMobile.flowStarted .flowMobileStory > section:nth-of-type(4) {
  animation: flowMobileReveal 620ms cubic-bezier(0.22, 1, 0.36, 1) 800ms both;
}
.flowFrameMobile.flowStarted .flowMobileConnector:nth-of-type(1)::before {
  animation: flowMobileConnectorDraw 520ms cubic-bezier(0.22, 1, 0.36, 1) 150ms both;
}
.flowFrameMobile.flowStarted .flowMobileConnector:nth-of-type(1)::after {
  animation: flowMobileConnectorTravel 1.7s cubic-bezier(0.22, 1, 0.36, 1) 180ms infinite;
}
.flowFrameMobile.flowStarted .flowMobileConnector:nth-of-type(2)::before {
  animation: flowMobileConnectorDraw 520ms cubic-bezier(0.22, 1, 0.36, 1) 420ms both;
}
.flowFrameMobile.flowStarted .flowMobileConnector:nth-of-type(2)::after {
  animation: flowMobileConnectorTravel 1.7s cubic-bezier(0.22, 1, 0.36, 1) 620ms infinite;
}
.flowFrameMobile.flowStarted .flowMobileConnector:nth-of-type(3)::before {
  animation: flowMobileConnectorDraw 520ms cubic-bezier(0.22, 1, 0.36, 1) 690ms both;
}
.flowFrameMobile.flowStarted .flowMobileConnector:nth-of-type(3)::after {
  animation: flowMobileConnectorTravel 1.7s cubic-bezier(0.22, 1, 0.36, 1) 1.06s infinite;
}
.flowFrameMobile.flowStarted .flowMobileHubGlow {
  animation: flowMobileHubGlow 5s ease-in-out 280ms infinite;
}
.flowFrameMobile.flowStarted .flowMobileHubRing {
  animation: flowMobileHubRingPulse 3.4s ease-in-out 0.9s infinite;
}
.flowFrameMobile.flowStarted .flowMobileHubMark::after {
  animation: flowMobilePulseRing 3.4s ease-in-out 0.9s infinite;
}
.flowFrame .group-box {
  fill: rgba(255, 255, 255, 0.96);
  stroke: var(--line);
  stroke-width: 1.2;
}
.flowFrame .group-title {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  fill: var(--accent);
}
.flowFrame .small-label {
  font-size: 12px;
  fill: #101828;
}
.flowFrame .chip {
  fill: var(--chip);
  stroke: var(--chip-border);
  stroke-width: 1;
}
.flowFrame .chip-text {
  font-size: 11px;
  font-weight: 600;
  fill: var(--accent);
}
.flowFrame .badge {
  fill: #e8f4ec;
  stroke: #b7e1c1;
  stroke-width: 1;
}
.flowFrame .badge-text {
  font-size: 10px;
  font-weight: 600;
  fill: var(--button);
  letter-spacing: 0.3px;
}
.flowFrame .icon-stroke {
  stroke: var(--accent);
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.flowFrame .icon-fill {
  fill: var(--accent);
}
.flowFrame .icon-fill-soft {
  fill: var(--accent-light);
}
.flowFrame .icon-fill-mid {
  fill: var(--accent-mid);
}
.flowFrame .icon-fill-bright {
  fill: var(--accent-bright);
}
.flowFrame .chart-bar {
  stroke: none;
}
.flowFrame .chart-bar.bar-1 {
  fill: var(--accent);
}
.flowFrame .chart-bar.bar-2 {
  fill: var(--accent-mid);
}
.flowFrame .chart-bar.bar-3 {
  fill: var(--accent-bright);
}
.flowFrame .connector-base {
  fill: none;
  stroke: rgba(var(--brand-rgb), 0.1);
  stroke-width: 2;
  opacity: 0;
}
.flowFrame .base-left-1 {
  animation: baseLeft1 var(--dur) ease-in-out infinite;
}
.flowFrame .base-left-2 {
  animation: baseLeft2 var(--dur) ease-in-out infinite;
}
.flowFrame .base-left-3 {
  animation: baseLeft3 var(--dur) ease-in-out infinite;
}
.flowFrame .base-right-1 {
  animation: baseRight1 var(--dur) ease-in-out infinite;
}
.flowFrame .base-right-2 {
  animation: baseRight2 var(--dur) ease-in-out infinite;
}
.flowFrame .base-right-3 {
  animation: baseRight3 var(--dur) ease-in-out infinite;
}
.flowFrame .connector-anim {
  fill: none;
  stroke: var(--signal-strong);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 6 8;
  opacity: 0;
}
.flowFrame .left-anim.left-1 {
  animation:
    leftDash1 var(--dur) linear infinite,
    leftGlow1 var(--dur) ease-in-out infinite;
}
.flowFrame .left-anim.left-2 {
  animation:
    leftDash2 var(--dur) linear infinite,
    leftGlow2 var(--dur) ease-in-out infinite;
}
.flowFrame .left-anim.left-3 {
  animation:
    leftDash3 var(--dur) linear infinite,
    leftGlow3 var(--dur) ease-in-out infinite;
}
.flowFrame .right-anim.right-1 {
  animation:
    rightDash1 var(--dur) linear infinite,
    rightGlow1 var(--dur) ease-in-out infinite;
}
.flowFrame .right-anim.right-2 {
  animation:
    rightDash2 var(--dur) linear infinite,
    rightGlow2 var(--dur) ease-in-out infinite;
}
.flowFrame .right-anim.right-3 {
  animation:
    rightDash3 var(--dur) linear infinite,
    rightGlow3 var(--dur) ease-in-out infinite;
}
.flowFrame .dot {
  fill: var(--accent);
  opacity: 0;
}
.flowFrame .dot-left.dot-1 {
  animation: dotLeft1 var(--dur) ease-in-out infinite;
}
.flowFrame .dot-left.dot-2 {
  animation: dotLeft2 var(--dur) ease-in-out infinite;
}
.flowFrame .dot-left.dot-3 {
  animation: dotLeft3 var(--dur) ease-in-out infinite;
}
.flowFrame .dot-right.dot-1 {
  animation: dotRight1 var(--dur) ease-in-out infinite;
}
.flowFrame .dot-right.dot-2 {
  animation: dotRight2 var(--dur) ease-in-out infinite;
}
.flowFrame .dot-right.dot-3 {
  animation: dotRight3 var(--dur) ease-in-out infinite;
}
.flowFrame .logo-core {
  transform-origin: 510px 160px;
  animation: logoPulse var(--dur) ease-in-out infinite;
}
.flowFrame .glow-ring {
  fill: none;
  stroke: var(--glow);
  stroke-width: 14;
  opacity: 0.6;
}
.flowFrame .logo-bg {
  fill: rgba(255, 255, 255, 0.9);
  stroke: none;
  stroke-width: 0;
}
.flowFrame .spark-ring {
  fill: none;
  stroke: var(--spark);
  stroke-width: 2;
  opacity: 0;
  transform-origin: 510px 160px;
  animation: sparkleRing var(--dur) ease-in-out infinite;
}
.flowFrame .spark-point {
  fill: var(--spark);
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: sparklePoints var(--dur) ease-in-out infinite;
}
.flowFrame .spark-point.s2 {
  animation-delay: 0.08s;
}
.flowFrame .spark-point.s3 {
  animation-delay: 0.16s;
}
.flowFrame .spark-point.s4 {
  animation-delay: 0.24s;
}
.flowFrame .left-group {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}
.flowFrame .left-group.left-1 {
  animation: leftFade1 var(--dur) ease-in-out infinite;
}
.flowFrame .left-group.left-2 {
  animation: leftFade2 var(--dur) ease-in-out infinite;
}
.flowFrame .left-group.left-3 {
  animation: leftFade3 var(--dur) ease-in-out infinite;
}
.flowFrame .output-group {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}
.flowFrame .output-group.out-1 {
  animation: outputFade1 var(--dur) ease-in-out infinite;
}
.flowFrame .output-group.out-2 {
  animation: outputFade2 var(--dur) ease-in-out infinite;
}
.flowFrame .output-group.out-3 {
  animation: outputFade3 var(--dur) ease-in-out infinite;
}
.flowFrame .decision-tile {
  opacity: 0;
  transform-origin: center;
  transform-box: fill-box;
  transform: scale(0.96);
  animation: decisionPop var(--dur) ease-in-out infinite;
}
.flowFrame .checkmark {
  stroke: var(--signal-strong);
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: checkDraw var(--dur) ease-in-out infinite;
}
.flowFrame .trace,
.flowFrame .decision-line {
  fill: none;
  stroke: var(--signal-line);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  opacity: 0;
}
.flowFrame .trace-1 {
  animation: trace1 var(--dur) ease-in-out infinite;
}
.flowFrame .trace-2 {
  animation: trace2 var(--dur) ease-in-out infinite;
}
.flowFrame .trace-3 {
  animation: trace3 var(--dur) ease-in-out infinite;
}
.flowFrame .decision-line.line-1 {
  animation: decisionLine1 var(--dur) ease-in-out infinite;
}
.flowFrame .decision-line.line-2 {
  animation: decisionLine2 var(--dur) ease-in-out infinite;
}
.flowFrame .decision-line.line-3 {
  animation: decisionLine3 var(--dur) ease-in-out infinite;
}
.flowFrame .decision-trace {
  animation: decisionTrace var(--dur) ease-in-out infinite;
}
.flowFrame:not(.flowStarted) .connector-base,
.flowFrame:not(.flowStarted) .connector-anim,
.flowFrame:not(.flowStarted) .dot,
.flowFrame:not(.flowStarted) .logo-core,
.flowFrame:not(.flowStarted) .spark-ring,
.flowFrame:not(.flowStarted) .spark-point,
.flowFrame:not(.flowStarted) .left-group,
.flowFrame:not(.flowStarted) .output-group,
.flowFrame:not(.flowStarted) .decision-tile,
.flowFrame:not(.flowStarted) .checkmark,
.flowFrame:not(.flowStarted) .trace,
.flowFrame:not(.flowStarted) .decision-line,
.flowFrame:not(.flowStarted) .decision-trace {
  animation: none !important;
}
.flowFrame.flowStarted .connector-base,
.flowFrame.flowStarted .connector-anim,
.flowFrame.flowStarted .dot,
.flowFrame.flowStarted .logo-core,
.flowFrame.flowStarted .spark-ring,
.flowFrame.flowStarted .spark-point,
.flowFrame.flowStarted .left-group,
.flowFrame.flowStarted .output-group,
.flowFrame.flowStarted .decision-tile,
.flowFrame.flowStarted .checkmark,
.flowFrame.flowStarted .trace,
.flowFrame.flowStarted .decision-line,
.flowFrame.flowStarted .decision-trace {
  animation-fill-mode: both;
  animation-iteration-count: 1;
}
.flowFrame.flowComplete .connector-base,
.flowFrame.flowComplete .connector-anim,
.flowFrame.flowComplete .dot,
.flowFrame.flowComplete .logo-core,
.flowFrame.flowComplete .spark-ring,
.flowFrame.flowComplete .spark-point,
.flowFrame.flowComplete .left-group,
.flowFrame.flowComplete .output-group,
.flowFrame.flowComplete .decision-tile,
.flowFrame.flowComplete .checkmark,
.flowFrame.flowComplete .trace,
.flowFrame.flowComplete .decision-line,
.flowFrame.flowComplete .decision-trace {
  animation: none !important;
}
.flowFrame.flowComplete .left-group,
.flowFrame.flowComplete .output-group {
  opacity: 1;
  transform: translateY(0);
}
.flowFrame.flowComplete .decision-tile {
  opacity: 1;
  transform: scale(1);
}
.flowFrame.flowComplete .connector-base {
  opacity: 0.7;
}
.flowFrame.flowComplete .checkmark {
  stroke-dashoffset: 0;
}
.flowFrame.flowComplete .logo-core {
  transform: scale(1);
}
.flowFrame.flowComplete .connector-anim,
.flowFrame.flowComplete .dot,
.flowFrame.flowComplete .spark-ring,
.flowFrame.flowComplete .spark-point,
.flowFrame.flowComplete .trace,
.flowFrame.flowComplete .decision-line,
.flowFrame.flowComplete .decision-trace {
  opacity: 0;
}
@keyframes leftFade1 {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  2.35% {
    opacity: 1;
    transform: translateY(0);
  }
  95.88% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(0);
  }
}
@keyframes leftFade2 {
  0%,
  3.68% {
    opacity: 0;
    transform: translateY(0);
  }
  4.12% {
    opacity: 1;
    transform: translateY(0);
  }
  95.88% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(0);
  }
}
@keyframes leftFade3 {
  0%,
  5.45% {
    opacity: 0;
    transform: translateY(0);
  }
  5.89% {
    opacity: 1;
    transform: translateY(0);
  }
  95.88% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(0);
  }
}
@keyframes outputFade1 {
  0%,
  12.1% {
    opacity: 0;
    transform: translateY(8px);
  }
  12.54% {
    opacity: 1;
    transform: translateY(0);
  }
  95.88% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(0);
  }
}
@keyframes outputFade2 {
  0%,
  14.45% {
    opacity: 0;
    transform: translateY(8px);
  }
  14.89% {
    opacity: 1;
    transform: translateY(0);
  }
  95.88% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(0);
  }
}
@keyframes outputFade3 {
  0%,
  16.8% {
    opacity: 0;
    transform: translateY(8px);
  }
  17.24% {
    opacity: 1;
    transform: translateY(0);
  }
  95.88% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(0);
  }
}
@keyframes decisionPop {
  0%,
  21.21% {
    opacity: 0;
    transform: scale(0.96);
  }
  22.4% {
    opacity: 1;
    transform: scale(1.03);
  }
  23.2% {
    opacity: 1;
    transform: scale(1);
  }
  95.88% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.98);
  }
}
@keyframes checkDraw {
  0%,
  22.4% {
    stroke-dashoffset: 48;
  }
  24.7% {
    stroke-dashoffset: 0;
  }
  95.88% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 48;
  }
}
@keyframes logoPulse {
  0%,
  9.4% {
    transform: scale(1);
  }
  10.6% {
    transform: scale(1.05);
  }
  12.1% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes sparkleRing {
  0%,
  9.4% {
    opacity: 0;
    transform: scale(0.9);
  }
  10.6% {
    opacity: 0.9;
    transform: scale(1.05);
  }
  12.1% {
    opacity: 0;
    transform: scale(1.15);
  }
  100% {
    opacity: 0;
    transform: scale(1.15);
  }
}
@keyframes sparklePoints {
  0%,
  9.4% {
    opacity: 0;
    transform: translateX(0) translateY(0) scale(0.6);
  }
  9.55% {
    opacity: 1;
    transform: translateX(-2px) translateY(2px) scale(0.9);
  }
  10.3% {
    opacity: 1;
    transform: translateX(2px) translateY(-2px) scale(1);
  }
  11.05% {
    opacity: 1;
    transform: translateX(-1px) translateY(1px) scale(0.95);
  }
  11.8% {
    opacity: 1;
    transform: translateX(4px) translateY(0) scale(0.9);
  }
  12.1% {
    opacity: 0;
    transform: translateX(18px) translateY(-2px) scale(0.7);
  }
  100% {
    opacity: 0;
    transform: translateX(18px) translateY(-2px) scale(0.7);
  }
}
@keyframes leftDash1 {
  0%,
  2.35% {
    stroke-dashoffset: 0;
  }
  4.7% {
    stroke-dashoffset: -120;
  }
  100% {
    stroke-dashoffset: -120;
  }
}
@keyframes leftDash2 {
  0%,
  4.7% {
    stroke-dashoffset: 0;
  }
  7.05% {
    stroke-dashoffset: -120;
  }
  100% {
    stroke-dashoffset: -120;
  }
}
@keyframes leftDash3 {
  0%,
  7.05% {
    stroke-dashoffset: 0;
  }
  9.4% {
    stroke-dashoffset: -120;
  }
  100% {
    stroke-dashoffset: -120;
  }
}
@keyframes rightDash1 {
  0%,
  12.1% {
    stroke-dashoffset: 0;
  }
  14.45% {
    stroke-dashoffset: -120;
  }
  100% {
    stroke-dashoffset: -120;
  }
}
@keyframes rightDash2 {
  0%,
  14.45% {
    stroke-dashoffset: 0;
  }
  16.8% {
    stroke-dashoffset: -120;
  }
  100% {
    stroke-dashoffset: -120;
  }
}
@keyframes rightDash3 {
  0%,
  16.8% {
    stroke-dashoffset: 0;
  }
  19.15% {
    stroke-dashoffset: -120;
  }
  100% {
    stroke-dashoffset: -120;
  }
}
@keyframes leftGlow1 {
  0%,
  2.35% {
    opacity: 0;
  }
  2.6% {
    opacity: 0.85;
  }
  4.7% {
    opacity: 0.6;
  }
  5.3% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes leftGlow2 {
  0%,
  4.7% {
    opacity: 0;
  }
  4.95% {
    opacity: 0.85;
  }
  7.05% {
    opacity: 0.6;
  }
  7.93% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes leftGlow3 {
  0%,
  7.05% {
    opacity: 0;
  }
  7.28% {
    opacity: 0.85;
  }
  9.4% {
    opacity: 0.6;
  }
  10.28% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes rightGlow1 {
  0%,
  12.1% {
    opacity: 0;
  }
  12.4% {
    opacity: 0.85;
  }
  14.45% {
    opacity: 0.6;
  }
  15.34% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes rightGlow2 {
  0%,
  14.45% {
    opacity: 0;
  }
  14.7% {
    opacity: 0.85;
  }
  16.8% {
    opacity: 0.6;
  }
  17.69% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes rightGlow3 {
  0%,
  16.8% {
    opacity: 0;
  }
  17.05% {
    opacity: 0.85;
  }
  19.15% {
    opacity: 0.6;
  }
  20.04% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes dotLeft1 {
  0%,
  2.35% {
    opacity: 0;
  }
  2.6% {
    opacity: 1;
  }
  4.7% {
    opacity: 1;
  }
  5.1% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes dotLeft2 {
  0%,
  4.7% {
    opacity: 0;
  }
  4.95% {
    opacity: 1;
  }
  7.05% {
    opacity: 1;
  }
  7.49% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes dotLeft3 {
  0%,
  7.05% {
    opacity: 0;
  }
  7.28% {
    opacity: 1;
  }
  9.4% {
    opacity: 1;
  }
  9.84% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes dotRight1 {
  0%,
  12.1% {
    opacity: 0;
  }
  12.4% {
    opacity: 1;
  }
  14.45% {
    opacity: 1;
  }
  14.89% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes dotRight2 {
  0%,
  14.45% {
    opacity: 0;
  }
  14.7% {
    opacity: 1;
  }
  16.8% {
    opacity: 1;
  }
  17.24% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes dotRight3 {
  0%,
  16.8% {
    opacity: 0;
  }
  17.05% {
    opacity: 1;
  }
  19.15% {
    opacity: 1;
  }
  19.59% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes baseLeft1 {
  0%,
  4.6% {
    opacity: 0;
  }
  4.7% {
    opacity: 0.7;
  }
  95.88% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
  }
}
@keyframes baseLeft2 {
  0%,
  6.95% {
    opacity: 0;
  }
  7.05% {
    opacity: 0.7;
  }
  95.88% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
  }
}
@keyframes baseLeft3 {
  0%,
  9.3% {
    opacity: 0;
  }
  9.4% {
    opacity: 0.7;
  }
  95.88% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
  }
}
@keyframes baseRight1 {
  0%,
  14.16% {
    opacity: 0;
  }
  14.45% {
    opacity: 0.7;
  }
  95.88% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
  }
}
@keyframes baseRight2 {
  0%,
  16.51% {
    opacity: 0;
  }
  16.8% {
    opacity: 0.7;
  }
  95.88% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
  }
}
@keyframes baseRight3 {
  0%,
  18.86% {
    opacity: 0;
  }
  19.15% {
    opacity: 0.7;
  }
  95.88% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
  }
}
@keyframes trace1 {
  0%,
  19.15% {
    opacity: 0;
    stroke-dashoffset: 100;
  }
  21.21% {
    opacity: 1;
    stroke-dashoffset: 0;
  }
  28.57% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}
@keyframes trace2 {
  0%,
  19.15% {
    opacity: 0;
    stroke-dashoffset: 100;
  }
  21.21% {
    opacity: 1;
    stroke-dashoffset: 0;
  }
  28.57% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}
@keyframes trace3 {
  0%,
  19.15% {
    opacity: 0;
    stroke-dashoffset: 100;
  }
  21.21% {
    opacity: 1;
    stroke-dashoffset: 0;
  }
  28.57% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}
@keyframes decisionLine1 {
  0%,
  21.21% {
    opacity: 0;
    stroke-dashoffset: 100;
  }
  22.85% {
    opacity: 1;
    stroke-dashoffset: 0;
  }
  28.57% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}
@keyframes decisionLine2 {
  0%,
  21.21% {
    opacity: 0;
    stroke-dashoffset: 100;
  }
  22.85% {
    opacity: 1;
    stroke-dashoffset: 0;
  }
  28.57% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}
@keyframes decisionLine3 {
  0%,
  21.21% {
    opacity: 0;
    stroke-dashoffset: 100;
  }
  22.85% {
    opacity: 1;
    stroke-dashoffset: 0;
  }
  28.57% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}
@keyframes decisionTrace {
  0%,
  21.21% {
    opacity: 0;
    stroke-dashoffset: 100;
  }
  22.85% {
    opacity: 1;
    stroke-dashoffset: 0;
  }
  28.57% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}

@keyframes heroBarSlideIn {
  from {
    transform: translateX(110%);
  }
  to {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bar {
    animation: none !important;
    transform: none !important;
  }
  .flowFrame .left-group,
  .flowFrame .output-group,
  .flowFrame .decision-tile,
  .flowFrame .logo-core,
  .flowFrame .spark-ring,
  .flowFrame .spark-point,
  .flowFrame .dot,
  .flowFrame .checkmark,
  .flowFrame .trace,
  .flowFrame .decision-line,
  .flowFrame .decision-trace {
    animation: none !important;
  }
  .flowFrame .left-group,
  .flowFrame .output-group,
  .flowFrame .decision-tile {
    opacity: 1 !important;
    transform: none !important;
  }
  .flowFrame .connector-anim {
    display: none !important;
  }
  .flowFrame .connector-base {
    animation: none !important;
    opacity: 0.85 !important;
  }
  .flowFrame .logo-core {
    transform: none !important;
  }
  .flowFrame .checkmark {
    stroke-dashoffset: 0 !important;
  }
  .flowFrame .dot,
  .flowFrame .spark-ring,
  .flowFrame .spark-point,
  .flowFrame .trace,
  .flowFrame .decision-line,
  .flowFrame .decision-trace {
    display: none !important;
  }
  .flowFrameMobile .flowMobileStory > section,
  .flowFrameMobile .flowMobileConnector,
  .flowFrameMobile .flowMobileConnector::after,
  .flowFrameMobile .flowMobileHubGlow,
  .flowFrameMobile .flowMobileHubRing,
  .flowFrameMobile .flowMobileHubMark::after {
    animation: none !important;
  }
}

@keyframes flowMobileHubGlow {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes flowMobilePulseRing {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.06);
  }
}

@keyframes flowMobileHubRingPulse {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.03);
  }
}

@keyframes flowMobileConnectorDraw {
  0% {
    opacity: 0.2;
    transform: scaleY(0);
  }
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes flowMobileConnectorTravel {
  0% {
    opacity: 0;
    transform: translateY(-4px) scale(0.76);
  }
  16% {
    opacity: 1;
  }
  74% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(24px) scale(1.02);
  }
}

@keyframes flowMobileReveal {
  0% {
    opacity: 0.78;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 1024px) and (max-width: 1440px), (min-width: 1024px) and (max-height: 980px) {
  .caseSection {
    padding-top: clamp(56px, 6vw, 72px);
    padding-bottom: clamp(64px, 7vw, 84px);
  }

  .heroBars {
    width: min(62vw, 780px);
    opacity: 0.84;
  }

  .caseLayout {
    gap: clamp(20px, 2.5vw, 28px);
  }

  .caseVisualStage {
    width: 100%;
  }

  .caseHeader {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 400px);
    gap: clamp(16px, 2vw, 24px);
  }

  .caseIntro {
    padding-top: clamp(8px, 1.2vw, 16px);
  }

  .caseMetric {
    width: min(100%, 400px);
    margin-top: calc(clamp(16px, 2vw, 28px) + 5px);
    padding: 16px 18px;
  }

  .caseCards {
    gap: 14px;
  }

  .caseCard {
    padding: 20px;
  }
}

@media (max-width: 1279px) {
  .caseHeader {
    grid-template-columns: 1fr;
  }

  .caseMetric {
    justify-self: start;
    width: min(100%, 420px);
  }

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

  .caseCard.caseResult {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .caseVisualStage {
    width: 100%;
  }

  .caseMetric {
    justify-self: stretch;
    width: 100%;
  }

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

  .caseCard.caseResult {
    grid-column: auto;
  }
}

@media (max-width: 980px) {
  .heroInner {
    grid-template-columns: 1fr;
  }

  .ctaBand {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .ctaButton {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
    align-self: start;
    margin-top: 0;
  }

  .footer {
    flex-direction: column;
  }

  .footerLinks {
    justify-content: flex-start;
  }
}

@media (max-width: 980px) and (orientation: landscape) {
  .ctaBand {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 42vw);
    column-gap: clamp(50px, 7vw, 90px);
    row-gap: 18px;
    align-items: center;
  }

  .ctaCopy {
    max-width: 520px;
  }

  .ctaVisual {
    grid-column: 2;
    grid-row: 1 / span 2;
    justify-self: end;
    align-self: center;
    overflow: visible;
    margin-top: 35px;
  }

  .ctaDashboard {
    width: calc(100% + 150px);
    max-width: none;
    margin-left: -150px;
    transform: scale(0.8);
    transform-origin: right center;
  }

  .ctaButton {
    grid-column: 1;
    grid-row: 2;
  }
}

@media (max-width: 760px) {
  .heroBars {
    display: none;
  }
}

@media (max-width: 720px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  .sectionBlock,
  .sectionAlt {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hero {
    min-height: auto;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
  }

  h1 {
    font-size: clamp(40px, 14vw, 58px);
  }

  .heroTitleLine {
    white-space: normal;
  }

  .lead,
  .sectionText,
  .ctaText {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .heroActions {
    width: 100%;
  }

  .logoMark {
    width: clamp(176px, 56vw, 236px);
    height: clamp(68px, 20vw, 96px);
  }
}

@media (max-width: 767px) and (orientation: portrait) {
  .brand {
    margin-left: -15px;
  }

  .header {
    gap: 12px;
  }

  .nav {
    gap: 8px 14px;
    align-items: center;
  }

  .nav > .navLink:first-of-type {
    margin-left: auto;
  }

  h1 {
    line-height: 1;
  }

  .hero {
    padding-top: 24px;
    padding-bottom: clamp(166px, 46vw, 220px);
  }

  .heroInner {
    align-items: start;
  }

  .heroCopy {
    max-width: 100%;
    transform: translateY(-16px);
    gap: 18px;
  }

  .heroBars {
    display: block;
    left: auto;
    right: 0;
    bottom: 0;
    width: min(96vw, 420px);
    transform: none;
  }

  .workflowSection {
    margin-top: 0;
    padding-top: 80px;
    padding-bottom: 32px;
  }

  .workflowSection .sectionIntro {
    margin-bottom: 12px;
  }

  .workflowSection .sectionText {
    margin-top: 23px;
  }

  .ctaBand {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .ctaCopy {
    max-width: none;
  }

  .ctaCopy .ctaText {
    max-width: none;
  }

  .ctaVisual {
    justify-self: stretch;
    order: 2;
    margin-top: -40px;
  }

  .ctaDashboard {
    width: 100%;
    max-width: 100%;
  }

  .ctaButton {
    order: 3;
    margin-top: 17px;
  }

  .flowFrame {
    display: none;
  }

  .flowFrameMobile {
    display: block;
    margin-top: 26px;
    padding: 0;
  }

  .flowMobileStory {
    gap: 11px;
  }

  .flowMobileHub {
    width: min(204px, 100%);
  }
}

@media (max-width: 932px) and (orientation: landscape) {
  .brand {
    margin-left: -15px;
  }

  h1 {
    max-width: none;
    font-size: clamp(20px, 2.5vw, 26px);
    line-height: 0.98;
  }

  .hero {
    min-height: calc(100svh - 118px);
    padding-top: 0;
    padding-bottom: 0;
  }

  .heroInner {
    display: block;
    min-height: 100%;
    padding-right: min(28vw, 220px);
  }

  .heroCopy {
    max-width: none;
    margin-top: -4px;
    transform: none;
    gap: 8px;
  }

  .hero .lead {
    max-width: none;
    font-size: 11px;
    line-height: 1.34;
  }

  .heroActions {
    padding-top: 0;
  }

  .heroActions .button {
    min-height: 40px;
    padding: 0 18px;
    font-size: 14px;
  }

  .heroBars {
    display: none;
  }

  .heroBarsLandscape {
    display: block;
    position: absolute;
    right: 0;
    bottom: 12px;
    width: min(24vw, 180px);
    pointer-events: none;
    z-index: 0;
  }

  .heroBarsLandscape .hero-bar {
    transform: translateX(110%);
    animation-name: none;
    animation-duration: 620ms;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    animation-fill-mode: both;
    animation-iteration-count: 1;
  }

  html.consent-resolved .heroBarsLandscape .hero-bar {
    animation-name: heroBarSlideIn;
  }

  .heroBarsLandscape .bar-green {
    animation-duration: 680ms;
    animation-delay: 0ms;
  }

  .heroBarsLandscape .bar-teal {
    animation-duration: 580ms;
    animation-delay: 90ms;
  }

  .heroBarsLandscape .bar-red {
    animation-duration: 620ms;
    animation-delay: 170ms;
  }

  .heroBarsLandscape .bar-blue {
    animation-duration: 560ms;
    animation-delay: 250ms;
  }

  .heroBarsLandscape .bar-cream {
    animation-duration: 620ms;
    animation-delay: 330ms;
  }

  .caseSection {
    padding-top: 24px;
    padding-bottom: 46px;
  }

  .caseLayout {
    gap: 14px;
  }

  .caseHeader {
    gap: 10px;
    transform: none;
  }

  .caseIntro {
    padding-top: 0;
  }
}

@media (orientation: landscape) and (max-height: 500px) and (max-width: 1200px) {
  .brand {
    margin-left: -15px;
  }

  h1 {
    max-width: min(62vw, 520px);
    font-size: clamp(35px, 4.7vw, 48px);
    line-height: 0.98;
  }

  .hero {
    min-height: clamp(220px, calc(100svh - 96px), 320px);
    padding-top: 10px;
    padding-bottom: 0;
  }

  .heroInner {
    display: block;
    min-height: 100%;
    padding-right: min(30vw, 210px);
    position: static;
  }

  .heroCopy {
    max-width: min(66vw, 580px);
    margin-top: 12px;
    padding-bottom: 6px;
    transform: none;
    gap: 18px;
    position: relative;
    z-index: 1;
  }

  .hero .lead {
    max-width: min(60vw, 500px);
    font-size: 16px;
    line-height: 1.5;
  }

  .heroActions {
    padding-top: 0;
  }

  .heroActions .button {
    min-height: 44px;
    padding: 0 20px;
    font-size: 16px;
  }

  .heroBars {
    display: none !important;
  }

  .heroBarsLandscape {
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(38vw, 340px);
    pointer-events: none;
    z-index: 0;
  }

  .heroBarsLandscape .hero-bar {
    transform: translateX(110%);
    animation-name: none;
    animation-duration: 620ms;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    animation-fill-mode: both;
    animation-iteration-count: 1;
  }

  html.consent-resolved .heroBarsLandscape .hero-bar {
    animation-name: heroBarSlideIn;
  }

  .heroBarsLandscape .bar-green {
    animation-duration: 680ms;
    animation-delay: 0ms;
  }

  .heroBarsLandscape .bar-teal {
    animation-duration: 580ms;
    animation-delay: 90ms;
  }

  .heroBarsLandscape .bar-red {
    animation-duration: 620ms;
    animation-delay: 170ms;
  }

  .heroBarsLandscape .bar-blue {
    animation-duration: 560ms;
    animation-delay: 250ms;
  }

  .heroBarsLandscape .bar-cream {
    animation-duration: 620ms;
    animation-delay: 330ms;
  }

  .workflowSection {
    margin-top: 0;
    padding-top: 60px;
    padding-bottom: 24px;
  }

  .workflowSection .sectionIntro {
    margin-bottom: 10px;
  }

  .workflowSection .sectionText {
    margin-top: 8px;
  }
}
