/* Settly landing page — standalone, no external dependencies */
:root {
  --paper: #f7f6f5;
  --paper-deep: #eaeae7;
  --white: #ffffff;
  --ink: #0d2944;
  --ink-soft: #14406e;
  --muted: #4d4541;
  --line: rgba(13, 41, 68, 0.16);
  --coral: #db7135;
  --coral-dark: #cd5929;
  --blue: #2096f5;
  --blue-deep: #0f5895;
  --congress-blue-800: #114c7b;
  --orange: #e28e55;
  --shadow: 0 28px 80px rgba(13, 41, 68, 0.14);
  --radius: 28px;
  --shell: min(1240px, calc(100vw - 64px));
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", Aptos, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; }
img { display: block; max-width: 100%; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h3 { letter-spacing: -0.025em; }
p { text-wrap: pretty; }
em { font-style: normal; }

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: white;
  background: var(--ink);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }

.section-shell { width: var(--shell); margin-inline: auto; }
.section-pad { padding-block: clamp(96px, 11vw, 164px); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 22px;
  left: 50%;
  width: min(calc(var(--shell) + 42px), calc(100vw - 2px));
  height: 66px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  padding-inline: 20px;
  border: 1px solid transparent;
  border-radius: 18px;
  transform: translateX(-50%);
  transition: background 220ms ease, border 220ms ease, box-shadow 220ms ease, top 220ms ease;
}

.site-header.is-scrolled {
  top: 22px;
  background: rgba(247, 245, 239, 0.88);
  border-color: rgba(13, 41, 68, 0.1);
  box-shadow: 0 12px 35px rgba(13, 41, 68, 0.1);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  color: var(--ink);
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1px;
  text-decoration: none;
}

.brand-dot { color: var(--orange); }
.brand-light { color: white; }
.brand > img { width: 132px; height: auto; }
.site-header .brand > img { width: 156px; }
.brand-light > img { width: 148px; }
.brand-icon { width: 52px; height: auto; object-fit: contain; }

.brand-mark {
  position: relative;
  width: 31px;
  height: 26px;
  display: inline-block;
  transform: rotate(-2deg);
}

.brand-mark i {
  position: absolute;
  display: block;
  width: 13px;
  height: 27px;
  border-radius: 9px 9px 11px 11px;
  transform: rotate(44deg);
  transform-origin: bottom center;
}
.brand-mark i:first-child { left: 5px; bottom: 1px; height: 20px; background: var(--blue); }
.brand-mark i:last-child { right: 4px; bottom: 3px; background: var(--coral); }
.brand-mark-light i:first-child { background: #76caff; }
.brand-mark-light i:last-child { background: var(--orange); }

.primary-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
}

.primary-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}
.primary-nav a:hover::after,
.primary-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible,
button:focus-visible,
a:focus-visible { outline: 3px solid rgba(219, 113, 53, 0.32); outline-offset: 4px; }
.button span { font-size: 17px; }
.button-small { min-height: 46px; padding: 0 17px; font-size: 12px; }
.button-dark { color: white; background: var(--congress-blue-800); box-shadow: 0 10px 24px rgba(13, 41, 68, 0.18); }
.button-dark:hover { background: #144066; }
.button-primary { color: white; background: var(--coral); box-shadow: 0 14px 26px rgba(219, 113, 53, 0.22); }
.button-primary:hover { background: var(--coral-dark); }
.button-light { color: var(--ink); background: white; box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12); }
.button-light:hover { background: var(--paper); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.language-switch { display: inline-flex; align-items: center; gap: 1px; padding: 2px; color: var(--muted); background: transparent; border: 0; border-radius: 999px; cursor: pointer; }
.language-switch span { min-width: 28px; padding: 5px 7px; border-radius: 999px; font-size: 12px; font-weight: 800; line-height: 1; text-align: center; transition: color 180ms ease, background 180ms ease; }
.language-switch span.is-active { color: var(--congress-blue-800); background: rgba(17,76,123,.08); }

.menu-toggle { display: none; }

.hero {
  position: relative;
  height: calc(100vh - 40px);
  height: calc(100svh - 40px);
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-block: 100px;
  background:
    linear-gradient(rgba(13, 41, 68, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 41, 68, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 62px 62px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 25% 30%, rgba(255, 255, 255, 0.95), transparent 38%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.6;
}
.hero-orb-one { width: 360px; height: 360px; top: -160px; left: 45%; background: rgba(32, 150, 245, 0.22); }
.hero-orb-two { width: 250px; height: 250px; right: -80px; bottom: 15%; background: rgba(226, 142, 85, 0.14); }

.hero-grid {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: clamp(60px, 7vw, 110px);
  min-height: 0;
  padding-block: 0;
}

.eyebrow, .kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow span { width: 24px; height: 2px; background: var(--coral); }
.kicker-light { color: #76caff; }

.hero h1 {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: clamp(55px, 5.7vw, 88px);
  font-weight: 300;
  line-height: 0.94;
  letter-spacing: -0.055em;
}
.hero h1 em, h2 em { color: var(--coral); font-weight: 300; }

.hero-lede {
  max-width: 570px;
  margin-bottom: 34px;
  color: var(--ink);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.65;
}

.hero-actions { display: flex; align-items: center; gap: 30px; margin-bottom: 48px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
}
.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translate(2px, 2px); }

.hero-proof { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-proof span {
  padding: 8px 13px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(20, 33, 58, 0.13);
  border-radius: 30px;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.hero-proof b { color: var(--coral); }

.hero-stage {
  position: relative;
  width: min(100%, 640px);
  justify-self: end;
  padding: 42px 0 80px 40px;
  transform: scale(var(--hero-art-scale, 1));
  transform-origin: center;
}
.hero-stage::before {
  content: "";
  position: absolute;
  top: 0;
  right: -130px;
  bottom: 38px;
  left: 90px;
  background: var(--ink);
  border-radius: 50% 12% 46% 12%;
  transform: rotate(4deg);
  transform-origin: center;
  animation: hero-shape-sway 8s ease-in-out infinite;
  box-shadow: 0 40px 100px rgba(20, 33, 58, 0.2);
}

.platform-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: calc(100% + 50px);
  margin-left: -25px;
  min-height: clamp(500px, 52vw, 550px);
  background: #f8fafb;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  box-shadow: 0 38px 65px rgba(20, 33, 58, 0.26);
  transform: none;
}

.window-bar {
  position: relative;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  color: white;
  background: linear-gradient(rgba(13,41,68,.52), rgba(13,41,68,.64)), url("assets/dashboard-header.jpg") center 42% / cover no-repeat;
}

.mini-brand, .dialog-brand { display: flex; align-items: center; gap: 7px; font-size: 17px; font-weight: 750; }
.mini-brand img { width: 148px; height: auto; }
.dialog-brand img { width: 132px; height: auto; }
.mini-brand > span:last-child, .dialog-brand > span:last-child { color: var(--orange); }
.window-nav { display: flex; align-items: center; gap: 8px; margin-left: auto; margin-right: 20px; }
.window-nav span { width: 28px; height: 28px; display: grid; place-items: center; color: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.14); border-radius: 50%; font-size: 12px; }
.window-nav span.is-active { color: var(--ink); background: white; }
.mini-mark { position: relative; display: inline-block; width: 22px; height: 18px; }
.mini-mark::before, .mini-mark::after { content: ""; position: absolute; bottom: 1px; width: 8px; border-radius: 8px; transform: rotate(43deg); transform-origin: bottom; }
.mini-mark::before { left: 3px; height: 14px; background: #86c7d3; }
.mini-mark::after { right: 3px; height: 20px; background: var(--coral); }
.window-status { display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.window-status i { width: 8px; height: 8px; background: #67d6a0; border-radius: 50%; box-shadow: 0 0 0 5px rgba(103,214,160,.2); animation: live-glow 1.5s ease-in-out infinite; }
@keyframes live-glow { 0%, 100% { transform: scale(1); box-shadow: 0 0 0 4px rgba(103,214,160,.18), 0 0 7px rgba(103,214,160,.55); } 50% { transform: scale(1.22); box-shadow: 0 0 0 10px rgba(103,214,160,.07), 0 0 18px rgba(103,214,160,1); } }

.window-body { padding: 26px 27px 32px; }
.welcome-line { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.welcome-line small { display: block; margin-bottom: 3px; color: var(--muted); font-size: 12px; }
.welcome-line strong { font-family: "Manrope", sans-serif; font-size: 21px; font-weight: 600; }
.welcome-line .portfolio-chip { width: auto; height: 36px; display: flex; align-items: center; gap: 12px; padding: 0 14px; color: var(--ink); background: white; border: 1px solid var(--line); border-radius: 999px; box-shadow: none; font-size: 12px; font-weight: 700; }
.portfolio-chip span { color: var(--coral); font-size: 18px; line-height: 1; }

.balance-panel { padding: 17px 18px 0; color: var(--ink); background: white; border: 1px solid rgba(13,41,68,.09); border-radius: 12px; box-shadow: 0 14px 30px rgba(13,41,68,.1); }
.balance-topline { display: flex; justify-content: space-between; color: var(--ink-soft); font-size: 12px; font-weight: 750; }
.secure-pill { padding: 3px 8px; color: #1d5340; background: #e1f6ec; border-radius: 20px; font-weight: 400; }
.overview-grid { display: grid; grid-template-columns: 1fr 1fr 1.15fr; align-items: stretch; gap: 12px; padding: 16px 0; }
.overview-stat { display: flex; align-items: center; justify-content: flex-start; gap: 8px; padding: 0 12px 0 0; border-right: 1px solid var(--line); }
.overview-icon { width: 34px; height: 34px; flex: 0 0 auto; display: grid; place-items: center; color: var(--blue-deep); background: #eef8ff; border-radius: 50%; font-size: 12px; font-weight: 800; }
.overview-icon img { width: 20px; height: 20px; }
.overview-stat:nth-child(1) .overview-icon { animation: overview-bob 3.2s ease-in-out infinite; }
.overview-stat:nth-child(2) .overview-icon { animation: overview-bob 3.2s .45s ease-in-out infinite; }
.overview-stat strong, .overview-stat small { display: block; }
.overview-stat strong { color: var(--blue-deep); font-size: 21px; line-height: 1; }
.overview-stat small { color: var(--muted); font-size: 12px; line-height: 1.2; }
.balance-value { display: flex; flex-direction: column; justify-content: center; padding-left: 14px; text-align: right; }
.balance-value small { color: var(--muted); font-size: 12px; }
.balance-value strong { font-family: "Manrope", sans-serif; color: var(--ink); font-size: 24px; font-weight: 700; letter-spacing: -0.04em; line-height: 1.15; }
.balance-value span { color: var(--blue-deep); font-size: 12px; font-weight: 700; }
.callback-row { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; padding: 11px 0 13px; border-top: 1px solid var(--line); }
.callback-icon { width: 29px; height: 29px; display: grid; place-items: center; color: white; background: var(--coral); border-radius: 50%; }
.callback-icon img { width: 18px; height: 18px; filter: brightness(0) invert(1); }
.callback-row strong, .callback-row small { display: block; }
.callback-row strong { font-size: 12px; }
.callback-row small { color: var(--muted); font-size: 12px; }
.callback-row a { color: var(--coral); font-size: 12px; font-weight: 700; text-decoration: none; }
.journey-recommendation { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 12px; padding: 11px 14px; color: white; background: linear-gradient(90deg, #2096f5, #0f5895); border-radius: 9px; box-shadow: 0 10px 20px rgba(15,88,149,.15); }
.journey-recommendation strong, .journey-recommendation small { display: block; }
.journey-recommendation strong { font-size: 12px; }
.journey-recommendation small { color: rgba(255,255,255,.78); font-size: 12px; }
.journey-recommendation button { min-width: max-content; padding: 7px 12px; color: var(--blue-deep); background: white; border: 0; border-radius: 999px; font-size: 12px; font-weight: 750; cursor: pointer; }
@keyframes overview-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }

.action-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 12px; }
.action-grid > button { min-height: 82px; padding: 10px; background: white; border: 1px solid rgba(20,33,58,.09); border-radius: 13px; cursor: pointer; text-align: left; transition: transform 160ms ease, border 160ms ease, box-shadow 160ms ease; }
.action-grid > button:hover { border-color: var(--coral); box-shadow: 0 9px 18px rgba(13,41,68,.1); transform: translateY(-3px); }
.action-grid .action-icon { width: 24px; height: 24px; display: grid; place-items: center; margin-bottom: 6px; color: var(--coral); background: rgba(219,113,53,.1); border-radius: 50%; font-size: 13px; }
.action-grid b, .action-grid small { display: block; }
.action-grid b { margin-bottom: 3px; color: var(--ink); font-size: 12px; }
.action-grid small { color: var(--muted); font-size: 12px; }
.debt-grid { align-items: stretch; }
.debt-tile { position: relative; min-width: 0; min-height: 145px; display: flex; flex-direction: column; align-items: center; padding: 16px 8px 13px; background: white; border: 1px solid rgba(13,41,68,.09); border-radius: 10px; box-shadow: 0 8px 18px rgba(13,41,68,.07); text-align: center; transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease; }
.debt-tile:hover { border-color: rgba(219,113,53,.45); box-shadow: 0 12px 24px rgba(13,41,68,.11); transform: translateY(-3px); }
.debt-tile > span { color: var(--muted); font-size: 12px; font-weight: 700; }
.debt-tile > b { overflow: hidden; width: 100%; color: var(--ink); font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.debt-tile > a { margin: 2px 0 8px; color: var(--coral); font-size: 12px; text-decoration: none; }
.debt-tile > strong { color: var(--ink); font-size: 17px; line-height: 1.15; }
.debt-tile > small { color: var(--muted); font-size: 12px; }
.debt-tile > i { width: 100%; margin: 7px 0; padding: 2px 4px; color: #6d3b50; background: #fcf4b6; border-radius: 3px; font-size: 12px; font-style: normal; line-height: 1.2; }
.debt-tile.is-settled > i { color: #1d5340; background: #e1f6ec; }
.debt-tile > .debt-status-check { position: absolute; top: 8px; right: 8px; width: 21px; height: 21px; display: grid; place-items: center; color: #1d5340; background: #e1f6ec; border-radius: 50%; font-size: 12px; font-weight: 800; }
.debt-tile > button { width: 82%; min-height: 25px; margin-top: auto; padding: 3px 8px; color: white; background: var(--congress-blue-800); border: 0; border-radius: 999px; font-size: 12px; font-weight: 700; text-align: center; cursor: pointer; }
.debt-tile > button:disabled { background: #d5dadd; cursor: default; }

.floating-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 11px; padding: 13px 15px; background: white; border: 1px solid rgba(20,33,58,.08); border-radius: 13px; box-shadow: 0 15px 38px rgba(20,33,58,.18); }
.floating-card small, .floating-card strong { display: block; white-space: nowrap; }
.floating-card small { color: var(--muted); font-size: 12px; }
.floating-card strong { color: var(--ink); font-size: 12px; }
.floating-ai { top: 18%; right: -74px; animation: float 4s ease-in-out infinite; }
.spark { width: 30px; height: 30px; display: grid; place-items: center; color: white; background: var(--coral); border-radius: 50%; }
.pulse { width: 6px; height: 6px; margin-left: 10px; background: #65ce9a; border-radius: 50%; box-shadow: 0 0 0 5px rgba(101,206,154,.13); }
.floating-success { bottom: 51px; left: -14px; animation: float 4.6s .7s ease-in-out infinite; }
.check { width: 30px; height: 30px; display: grid; place-items: center; color: white; background: var(--blue-deep); border-radius: 50%; font-weight: 800; }
.stage-caption { position: absolute; z-index: 3; right: 2px; bottom: 9px; display: flex; align-items: center; gap: 9px; color: white; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.stage-caption span { color: #76caff; }
.stage-caption i { width: 20px; height: 1px; background: rgba(255,255,255,.3); }

.hero-ticker {
  position: relative;
  z-index: 10;
  width: 100%;
  margin-block: -25px;
  overflow: hidden;
  padding-block: 17px;
  color: white;
  background: var(--coral);
  transform: rotate(-1.4deg) scale(1.02);
}
.hero-ticker div { width: max-content; display: flex; align-items: center; gap: 24px; animation: ticker 30s linear infinite; }
.hero-ticker span { font-size: 12px; font-weight: 800; letter-spacing: .16em; }
.hero-ticker i { width: 5px; height: 5px; background: var(--orange); border-radius: 50%; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes hero-shape-sway {
  0%, 100% { transform: rotate(2deg); }
  50% { transform: rotate(6deg); }
}
@keyframes ticker {
  from { transform: translateX(calc(100vw - 24px)); }
  to { transform: translateX(-100%); }
}

.section-intro { display: grid; grid-template-columns: minmax(0, 1fr) 380px; align-items: end; gap: 70px; margin-bottom: 72px; }
.section-intro h2, .universal-heading h2, .ai-copy h2, .rollout-copy h2 {
  max-width: 800px;
  margin-bottom: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.045em;
}
.section-intro > p, .section-intro-wide > p { margin-bottom: 5px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.section-intro-wide { grid-template-columns: minmax(0, 1fr) 380px; }

.lifecycle { background: var(--white); }
.lifecycle-layout { display: grid; grid-template-columns: 1fr .75fr; gap: clamp(40px, 7vw, 100px); align-items: stretch; }
.lifecycle-rail { position: relative; display: grid; grid-template-rows: repeat(5, minmax(0, 1fr)); }
.lifecycle-rail::before { content: ""; position: absolute; top: 45px; bottom: 45px; left: 28px; width: 1px; background: var(--line); }
.lifecycle-step { position: relative; width: 100%; height: 100%; min-height: 0; display: grid; grid-template-columns: 56px 1fr 24px; align-items: center; gap: 18px; padding: 20px 0; background: transparent; border: 0; border-bottom: 1px solid var(--line); cursor: pointer; text-align: left; }
.lifecycle-step > span { position: relative; z-index: 2; width: 56px; height: 56px; display: grid; place-items: center; color: var(--muted); background: var(--white); border: 1px solid var(--line); border-radius: 50%; font-size: 12px; font-weight: 800; transition: color 180ms ease, background 180ms ease, border 180ms ease; }
.lifecycle-step strong, .lifecycle-step small { display: block; }
.lifecycle-step strong { margin-bottom: 2px; font-family: "Manrope", sans-serif; font-size: 22px; font-weight: 600; transition: color 180ms ease; }
.lifecycle-step small { color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.lifecycle-step > i::after { content: "↗"; color: var(--coral); font-style: normal; opacity: 0; transform: translate(-6px, 6px); transition: opacity 180ms ease, transform 180ms ease; }
.lifecycle-step:hover strong { color: var(--coral); }
.lifecycle-step.is-active > span { color: white; background: var(--coral); border-color: var(--coral); box-shadow: 0 8px 18px rgba(220,70,80,.22); }
.lifecycle-step.is-active strong { color: var(--coral); }
.lifecycle-step.is-active > i::after { opacity: 1; transform: translate(0); }

.lifecycle-detail { position: sticky; top: 108px; min-height: 520px; align-self: start; overflow: hidden; padding: 48px; color: white; background: var(--ink); border-radius: var(--radius); box-shadow: var(--shadow); }
.lifecycle-detail::before { content: ""; position: absolute; width: 300px; height: 300px; right: -140px; bottom: -90px; background: rgba(128,178,191,.13); border: 1px solid rgba(128,178,191,.22); border-radius: 50%; }
.lifecycle-detail::after { content: ""; position: absolute; right: -38px; bottom: 68px; width: 150px; height: 150px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.detail-index { position: absolute; top: 24px; right: 28px; color: rgba(255,255,255,.14); font-family: "Manrope", sans-serif; font-size: 80px; line-height: 1; }
.detail-icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 70px; color: white; background: var(--coral); border-radius: 16px; font-size: 28px; box-shadow: 0 14px 30px rgba(220,70,80,.24); }
.lifecycle-detail h3 { max-width: 470px; margin-bottom: 18px; font-family: "Manrope", sans-serif; font-size: 38px; font-weight: 600; line-height: 1.12; }
.lifecycle-detail > p:not(.kicker) { max-width: 480px; margin-bottom: 30px; color: rgba(255,255,255,.68); font-size: 15px; }
.detail-tags { position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 8px; }
.detail-tags span { padding: 8px 11px; color: rgba(255,255,255,.74); border: 1px solid rgba(255,255,255,.15); border-radius: 30px; font-size: 12px; }
.lifecycle-detail > * { transition: opacity 260ms ease, transform 320ms ease; }
.lifecycle-detail > :nth-child(4) { transition-delay: 45ms; }
.lifecycle-detail > :nth-child(5) { transition-delay: 90ms; }
.lifecycle-detail > :nth-child(6) { transition-delay: 135ms; }
.lifecycle-detail.is-switching > * { opacity: 0; transform: translateY(14px); transition-delay: 0ms; }

.universal { position: relative; overflow: hidden; color: white; background: var(--ink); }
.universal-grid { position: absolute; inset: 0; opacity: .07; background-image: linear-gradient(rgba(255,255,255,.55) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.55) 1px, transparent 1px); background-size: 70px 70px; }
.universal-inner { position: relative; z-index: 1; }
.universal-heading { display: grid; grid-template-columns: minmax(0, 1fr) 380px; align-items: end; gap: 70px; }
.universal-heading h2 em { color: #76caff; }
.universal-heading > p { margin-bottom: 3px; color: white; font-size: 17px; }

.receivable-orbit { position: relative; width: min(760px, 80vw); aspect-ratio: 1.7 / 1; margin: 90px auto 70px; }
.receivable-orbit::before, .receivable-orbit::after { content: ""; position: absolute; inset: 6% 2%; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }
.receivable-orbit::after { inset: 20% 17%; border-color: rgba(128,178,191,.22); border-style: dashed; animation: orbit-ring-rotate 35s linear infinite; }
.orbit-core { position: absolute; z-index: 2; top: 50%; left: 50%; width: 185px; height: 185px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding-bottom: 20px; background: var(--coral); border-radius: 50%; transform: translate(-50%, -50%); box-shadow: 0 35px 70px rgba(0,0,0,.22); transition: transform 240ms ease; }
.orbit-core:hover { transform: translate(-50%, -50%) scale(1.05); }
.orbit-core::before { content: ""; position: absolute; z-index: -1; inset: -18px; pointer-events: none; border-radius: 50%; background: rgba(219,113,53,.08); box-shadow: 0 0 38px rgba(219,113,53,.2); animation: ai-glow 2.8s ease-in-out infinite; }
.orbit-core .brand-mark { margin-bottom: 11px; transform: scale(.8); }
.orbit-core strong { font-size: 12px; letter-spacing: .2em; }
.orbit-core small { font-family: "Manrope", sans-serif; font-size: 25px; }
.orbit-item { --orbit-repel-x: 0px; --orbit-repel-y: 0px; position: absolute; z-index: 2; min-width: 108px; padding: 12px 18px; color: white; background: #233250; border: 1px solid rgba(255,255,255,.14); border-radius: 30px; box-shadow: 0 12px 30px rgba(0,0,0,.18); font-size: 14px; font-weight: 650; text-align: center; transform: translate(var(--orbit-repel-x), var(--orbit-repel-y)); transition: transform 180ms ease-out; will-change: transform; }
.orbit-item::before { content: ""; display: inline-block; width: 6px; height: 6px; margin-right: 8px; background: #76caff; border-radius: 50%; }
.item-one { top: 0; left: 44%; }
.item-two { top: 20%; right: 1%; }
.item-three { right: 8%; bottom: 9%; }
.item-four { bottom: 0; left: 38%; }
.item-five { bottom: 15%; left: 0; }
.item-six { top: 18%; left: 3%; }

.universal-footer { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 80px; padding-top: 38px; border-top: 1px solid rgba(255,255,255,.14); }
.universal-footer p { margin-bottom: 0; color: rgba(255,255,255,.65); }
.universal-footer p span { color: white; font-weight: 800; }
.configure-list { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 8px; }
.configure-list span { padding: 9px 13px; color: #b6e1ff; background: rgba(32,150,245,.07); border: 1px solid rgba(32,150,245,.25); border-radius: 7px; font-size: 12px; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }

.experience { overflow: hidden; background: var(--paper); }
.product-switcher { display: grid; grid-template-columns: .55fr 1.45fr; gap: 44px; align-items: center; }
.product-tabs { display: flex; flex-direction: column; align-items: flex-start; gap: 3px; margin-bottom: 42px; }
.product-tab { position: relative; padding: 10px 5px 10px 22px; color: var(--muted); background: transparent; border: 0; cursor: pointer; font-size: 12px; font-weight: 750; }
.product-tab::before { content: ""; position: absolute; top: 50%; left: 0; width: 8px; height: 8px; background: var(--line); border-radius: 50%; transform: translateY(-50%); transition: background 160ms ease, box-shadow 160ms ease; }
.product-tab.is-active { color: var(--coral); }
.product-tab.is-active::before { background: var(--coral); box-shadow: 0 0 0 5px rgba(220,70,80,.1); }
.product-message h3 { margin-bottom: 18px; font-family: "Manrope", sans-serif; font-size: 38px; font-weight: 600; line-height: 1.12; }
.product-message > p:not(.kicker) { color: var(--muted); }
.product-message ul { margin: 28px 0 0; padding: 0; list-style: none; }
.product-message li { padding: 12px 0; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: 14px; font-weight: 650; }
.product-message li::before { content: "✓"; margin-right: 10px; color: var(--coral); font-weight: 900; }

.product-frame { position: relative; padding: 10px; background: white; border: 1px solid rgba(20,33,58,.1); border-radius: 22px; box-shadow: var(--shadow); }
.browser-chrome { height: 38px; display: flex; align-items: center; gap: 6px; padding: 0 12px; }
.browser-chrome > span { width: 7px; height: 7px; background: #d8dadc; border-radius: 50%; }
.browser-chrome > span:first-child { background: var(--coral); }
.browser-chrome > span:nth-child(2) { background: var(--orange); }
.browser-chrome > span:nth-child(3) { background: var(--blue); }
.browser-chrome div { width: 48%; margin-left: auto; padding: 4px 10px; color: #9a9da4; background: #f0f1f3; border-radius: 20px; font-size: 12px; text-align: center; }
.product-image-wrap { overflow: hidden; aspect-ratio: 1.47 / 1; background: #e8ebed; border-radius: 14px; }
.product-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: opacity 180ms ease, transform 450ms ease; }
.product-frame:hover img { transform: scale(1.015); }
.frame-note { position: absolute; right: 30px; bottom: -22px; display: flex; align-items: center; gap: 8px; padding: 10px 14px; color: white; background: var(--ink); border-radius: 6px; box-shadow: 0 12px 24px rgba(20,33,58,.2); font-size: 12px; font-weight: 750; text-transform: uppercase; letter-spacing: .07em; }
.frame-note i { width: 3px; height: 3px; background: var(--orange); border-radius: 50%; }

.capability-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; margin-top: 105px; background: var(--line); border: 1px solid var(--line); }
.capability-row article { min-height: 170px; padding: 25px 20px; background: var(--paper); }
.capability-row span { display: block; margin-bottom: 38px; color: var(--coral); font-size: 12px; font-weight: 800; }
.capability-row h3 { margin-bottom: 6px; font-family: "Manrope", sans-serif; font-size: 24px; font-weight: 600; }
.capability-row p { margin-bottom: 0; color: var(--muted); font-size: 14px; }

.intelligence { overflow: hidden; background: #ebe5dc; }
.intelligence-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 90px; }
.ai-copy h2 { margin-bottom: 28px; }
.ai-copy > p:not(.kicker) { max-width: 530px; margin-bottom: 28px; color: var(--muted); font-size: 17px; }
.ai-map { position: relative; min-height: 560px; }
.ai-map::before { content: ""; position: absolute; top: 50%; left: 50%; width: 76%; height: 76%; border: 1px dashed rgba(20,33,58,.18); border-radius: 50%; transform: translate(-50%,-50%); animation: rotate 35s linear infinite; }
.ai-center { position: absolute; z-index: 3; top: 50%; left: 50%; width: 220px; height: 220px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding-bottom: 8px; color: white; background: var(--coral); border-radius: 50%; transform: translate(-50%,-50%); box-shadow: 0 28px 70px rgba(219,113,53,.3); transition: transform 240ms ease; }
.ai-center:hover { transform: translate(-50%,-50%) scale(1.05); }
.ai-center::before { content: ""; position: absolute; z-index: -1; inset: -22px; pointer-events: none; border-radius: 50%; background: rgba(219,113,53,.08); box-shadow: 0 0 38px rgba(219,113,53,.18); animation: ai-glow 2.8s ease-in-out infinite; }
.ai-center > span { display: grid; place-items: center; width: 48px; height: 48px; color: var(--coral); background: white; border-radius: 50%; font-size: 22px; }
.ai-center strong { font-family: "Manrope", sans-serif; font-size: 29px; font-weight: 600; }
.ai-center small { color: rgba(255,255,255,.76); font-size: 12px; }
.ai-node { --repel-x: 0px; --repel-y: 0px; position: absolute; z-index: 2; width: 125px; height: 125px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; padding-bottom: 8px; color: white; background: var(--congress-blue-800); border: 8px solid #ebe5dc; border-radius: 50%; box-shadow: 0 14px 28px rgba(20,33,58,.14); text-align: center; transform: translate(var(--repel-x), var(--repel-y)); transition: transform 180ms ease-out; will-change: transform; }
.ai-node i { color: #76caff; font-size: 12px; font-style: normal; font-weight: 800; }
.ai-node span { font-family: "Manrope", sans-serif; font-size: 16px; line-height: 1.1; }
.node-one { top: 4%; left: 20%; }
.node-two { top: 9%; right: 11%; }
.node-three { right: 12%; bottom: 7%; }
.node-four { bottom: 2%; left: 18%; }
.ai-ring { position: absolute; border: 1px solid rgba(20,33,58,.13); border-radius: 50%; }
.ring-one { inset: 16%; }
.ring-two { inset: 29%; border-color: rgba(220,70,80,.18); }
@keyframes rotate { to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes orbit-ring-rotate { to { transform: rotate(360deg); } }
@keyframes ai-glow {
  0%, 100% { transform: scale(.88); opacity: .55; }
  50% { transform: scale(1.16); opacity: 1; }
}

.governance-bar { grid-column: 1 / -1; display: grid; grid-template-columns: .6fr 1.4fr; align-items: center; gap: 50px; padding: 28px 32px; color: white; background: var(--ink); border-radius: 12px; }
.governance-bar strong { font-family: "Manrope", sans-serif; font-size: 20px; font-weight: 600; }
.governance-bar div { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 8px; }
.governance-bar span { padding: 7px 10px; color: #b6e1ff; border: 1px solid rgba(32,150,245,.28); border-radius: 30px; font-size: 12px; font-weight: 750; text-transform: uppercase; letter-spacing: .07em; }

.industries { background: var(--white); }
.industry-explorer { display: grid; grid-template-columns: .45fr 1.55fr; min-height: 540px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: 0 25px 70px rgba(20,33,58,.08); }
.industry-nav { display: grid; grid-template-rows: repeat(5, minmax(0, 1fr)); background: var(--paper); border-right: 1px solid var(--line); }
.industry-tab { flex: 1 1 0; min-height: 0; display: flex; align-items: center; gap: 16px; padding: 20px 25px; color: var(--muted); background: transparent; border: 0; border-bottom: 1px solid var(--line); cursor: pointer; font-size: 14px; font-weight: 750; text-align: left; transition: color 160ms ease, background 160ms ease; }
.industry-tab:last-child { border-bottom: 0; }
.industry-tab span { color: #a3a6ad; font-size: 14px; }
.industry-tab:hover { color: var(--coral); }
.industry-tab.is-active { color: white; background: var(--congress-blue-800); }
.industry-tab.is-active span { color: var(--orange); }
.industry-card { display: grid; grid-template-columns: .8fr 1.2fr; margin: 0; }
.industry-visual { position: relative; overflow: hidden; min-height: 540px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: white; background: var(--coral); transition: background 240ms ease; }
.industry-visual[data-industry-visual="utilities"] { background: #0f5895; }
.industry-visual[data-industry-visual="insurance"] { background: #14406e; }
.industry-visual[data-industry-visual="public"] { background: #aa4524; }
.industry-visual[data-industry-visual="business"] { background: #116fb8; }
.visual-ring { position: absolute; width: 350px; height: 350px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.045), 0 0 0 140px rgba(255,255,255,.025); animation: journey-ring-pulse 3.4s ease-in-out infinite; }
.visual-symbol { position: relative; z-index: 2; display: grid; place-items: center; width: 126px; height: 126px; margin-bottom: 24px; color: var(--ink); background: var(--paper); border-radius: 50%; font-family: "Manrope", sans-serif; font-size: 48px; box-shadow: 0 22px 44px rgba(0,0,0,.16); }
.industry-visual p { position: relative; z-index: 2; margin: 0; font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.industry-content { display: flex; flex-direction: column; justify-content: center; padding: clamp(40px, 6vw, 80px); }
.industry-visual > *, .industry-content > * { transition: opacity 260ms ease, transform 320ms ease; }
.industry-visual > :nth-child(2), .industry-content > :nth-child(2) { transition-delay: 45ms; }
.industry-visual > :nth-child(3), .industry-content > :nth-child(3) { transition-delay: 90ms; }
.industry-content > :nth-child(4) { transition-delay: 135ms; }
.industry-card.is-switching .industry-visual > *,
.industry-card.is-switching .industry-content > * { opacity: 0; transform: translateY(14px); transition-delay: 0ms; }
.industry-card.is-switching .visual-ring { animation: none; }
.industry-content h3 { margin-bottom: 20px; font-family: "Manrope", sans-serif; font-size: 38px; font-weight: 600; line-height: 1.08; }
.industry-content > p:not(.kicker) { color: var(--muted); }
.journey-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.journey-pills span { padding: 8px 11px; color: var(--ink-soft); background: var(--paper); border: 1px solid var(--line); border-radius: 30px; font-size: 12px; font-weight: 700; }
@keyframes journey-ring-pulse {
  0%, 100% { transform: scale(.95); }
  50% { transform: scale(1.05); }
}

.outcomes { color: white; background: var(--ink); }
.outcomes .section-intro h2 em { color: #76caff; }
.outcomes .section-intro > p { color: white; }
.outcome-grid { display: flex; gap: 12px; }
.outcome-card { position: relative; min-width: 0; min-height: 360px; flex: 1 1 0; display: flex; flex-direction: column; padding: 30px; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.11); border-radius: 15px; cursor: pointer; transition: flex-grow 320ms ease, color 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease; }
.outcome-card:hover { border-color: rgba(255,255,255,.3); box-shadow: 0 14px 32px rgba(0,0,0,.12); transform: translateY(-4px); }
.outcome-card:focus-visible { outline: 3px solid rgba(118,202,255,.65); outline-offset: 4px; }
.outcome-card-featured { flex-grow: 1.25; color: var(--ink); background: var(--paper); border-color: var(--paper); box-shadow: 0 18px 40px rgba(0,0,0,.16); }
.outcome-number { color: rgba(255,255,255,.38); font-size: 12px; font-weight: 800; }
.outcome-card-featured .outcome-number { color: var(--coral); }
.outcome-icon { width: 54px; height: 54px; display: grid; place-items: center; margin-top: 44px; color: var(--ink); background: #76caff; border-radius: 50%; font-family: "Manrope", sans-serif; font-size: 24px; }
.outcome-card-featured .outcome-icon { color: white; background: var(--coral); }
.outcome-card h3 { margin-top: auto; margin-bottom: 11px; font-family: "Manrope", sans-serif; font-size: 27px; font-weight: 600; line-height: 1.1; }
.outcome-card p { margin-bottom: 0; color: rgba(255,255,255,.58); font-size: 14px; }
.outcome-card-featured p { color: var(--muted); }
.micro-chart { display: none; align-items: end; gap: 5px; height: 48px; margin-top: 22px; }
.outcome-card-featured .micro-chart { display: flex; }
.micro-chart i { flex: 1; background: rgba(220,70,80,.22); border-radius: 2px 2px 0 0; }
.micro-chart i:nth-child(1) { height: 18%; }.micro-chart i:nth-child(2) { height: 35%; }.micro-chart i:nth-child(3) { height: 28%; }.micro-chart i:nth-child(4) { height: 58%; }.micro-chart i:nth-child(5) { height: 72%; }.micro-chart i:nth-child(6) { height: 100%; background: var(--coral); }
.momentum-line { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-top: 56px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.14); }
.momentum-line span { color: rgba(255,255,255,.8); font-size: 14px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.momentum-line i { color: var(--coral); font-size: 20px; font-style: normal; }

.rollout { background: var(--paper); }
.rollout-layout { display: grid; grid-template-columns: .7fr 1.3fr; align-items: start; gap: clamp(60px, 9vw, 140px); }
.rollout-copy { position: sticky; top: 120px; }
.rollout-copy h2 { margin-bottom: 28px; }
.rollout-copy > p:not(.kicker) { max-width: 480px; margin-bottom: 30px; color: var(--muted); font-size: 17px; }
.rollout-steps { margin: 0; padding: 0; list-style: none; counter-reset: steps; }
.rollout-steps li { display: grid; grid-template-columns: 62px 1fr; gap: 28px; padding: 0 0 48px; }
.rollout-steps li:not(:last-child) { border-bottom: 1px solid var(--line); margin-bottom: 48px; }
.rollout-steps li > span { width: 62px; height: 62px; display: grid; place-items: center; color: var(--coral); background: var(--white); border: 1px solid var(--line); border-radius: 50%; font-size: 12px; font-weight: 800; box-shadow: 0 10px 24px rgba(20,33,58,.06); }
.rollout-steps small { color: var(--coral); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.rollout-steps h3 { margin: 7px 0 8px; font-family: "Manrope", sans-serif; font-size: 30px; font-weight: 600; }
.rollout-steps p { margin: 0; color: var(--muted); font-size: 13px; }

.final-cta { position: relative; overflow: hidden; padding-block: clamp(110px, 14vw, 190px); color: white; background: var(--coral); text-align: center; }
.final-cta::before, .final-cta::after { content: ""; position: absolute; width: 460px; height: 460px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; }
.final-cta::before { top: -250px; left: -130px; box-shadow: 0 0 0 90px rgba(255,255,255,.025); }
.final-cta::after { right: -220px; bottom: -300px; box-shadow: 0 0 0 100px rgba(255,255,255,.025); }
.cta-orb { position: absolute; top: 50%; left: 50%; width: 700px; height: 700px; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; transform: translate(-50%,-50%); }
.cta-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.cta-inner .kicker { color: white; opacity: .68; }
.cta-inner h2 { margin-bottom: 27px; font-family: "Manrope", sans-serif; font-size: clamp(52px, 7vw, 94px); font-weight: 300; line-height: .98; letter-spacing: -.05em; }
.cta-inner h2 em { color: white; }
.cta-inner > p:not(.kicker) { max-width: 610px; margin-bottom: 35px; color: rgba(255,255,255,.78); font-size: 17px; }

.site-footer { padding: 80px 0 24px; color: white; background: #0d2944; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: start; gap: 50px; padding-bottom: 70px; }
.footer-top > p { margin: 0; color: rgba(255,255,255,.63); font-family: "Manrope", sans-serif; font-size: 22px; line-height: 1.3; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.footer-links a { color: rgba(255,255,255,.68); font-size: 12px; font-weight: 700; text-decoration: none; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.4); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.footer-bottom button { padding: 0; color: white; background: transparent; border: 0; cursor: pointer; font-size: 12px; font-weight: 800; text-transform: uppercase; }

.back-to-top { position: fixed; z-index: 90; right: 24px; bottom: 24px; width: 48px; height: 48px; display: grid; place-items: center; padding: 0; color: white; background: var(--congress-blue-800); border: 1px solid rgba(255,255,255,.2); border-radius: 50%; box-shadow: 0 12px 30px rgba(13,41,68,.22); cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity 180ms ease, transform 180ms ease, background 180ms ease; }
.back-to-top span { font-size: 20px; line-height: 1; transition: transform 180ms ease; }
.back-to-top:hover { background: var(--ink); transform: translateY(-2px); }
.back-to-top:hover span { transform: translateY(-2px); }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:focus-visible { outline: 3px solid rgba(219,113,53,.45); outline-offset: 4px; }

.demo-dialog { width: min(580px, calc(100vw - 32px)); max-height: calc(100vh - 32px); padding: 48px; color: var(--ink); background: var(--paper); border: 0; border-radius: 22px; box-shadow: 0 30px 100px rgba(0,0,0,.36); }
.demo-dialog::backdrop { background: rgba(13,23,43,.72); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.demo-dialog[open] { animation: dialog-in 220ms ease-out; }
@keyframes dialog-in { from { opacity: 0; transform: translateY(20px) scale(.98); } }
.dialog-close { position: absolute; top: 17px; right: 17px; width: 38px; height: 38px; display: grid; place-items: center; color: var(--ink); background: transparent; border: 1px solid var(--line); border-radius: 50%; cursor: pointer; font-size: 24px; line-height: 1; }
.dialog-brand { margin-bottom: 50px; color: var(--ink); }
.demo-dialog h2 { margin-bottom: 16px; font-family: "Manrope", sans-serif; font-size: 42px; font-weight: 300; line-height: 1.05; }
.demo-dialog [data-form-view] > p:not(.kicker) { color: var(--muted); font-size: 14px; }
.demo-dialog form { display: grid; gap: 17px; margin-top: 30px; }
.demo-dialog label { display: grid; gap: 7px; color: var(--ink-soft); font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.demo-dialog input, .demo-dialog select { width: 100%; height: 52px; padding: 0 14px; color: var(--ink); background: white; border: 1px solid var(--line); border-radius: 7px; outline: 0; font-size: 14px; text-transform: none; letter-spacing: 0; }
.demo-dialog input::placeholder { color: var(--muted); font-weight: 300; opacity: .72; }
.demo-dialog select:invalid { color: var(--muted); font-weight: 300; }
.demo-dialog input:focus, .demo-dialog select:focus { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(220,70,80,.1); }
.demo-dialog form .button { margin-top: 20px; }
.form-success { padding: 40px 0 20px; text-align: center; }
.form-success > span { width: 74px; height: 74px; display: grid; place-items: center; margin: 0 auto 28px; color: white; background: var(--coral); border-radius: 50%; font-size: 32px; }
.form-success .kicker { justify-content: center; }
.form-success p:not(.kicker) { color: var(--muted); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (min-width: 2300px) {
  .hero-stage { zoom: 1.12; }
}

@media (max-width: 1080px) {
  :root { --shell: min(100% - 44px, 1000px); }
  .primary-nav { gap: 22px; }
  .hero { height: calc(100vh - 40px); height: calc(100svh - 40px); min-height: 0; padding-block: 100px; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-stage { padding-left: 0; }
  .platform-window { min-height: 500px; }
  .floating-ai { right: -28px; }
  .product-switcher { grid-template-columns: .68fr 1.32fr; }
  .outcome-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
  .outcome-card { min-height: 300px; }
  .industry-card { grid-template-columns: .75fr 1.25fr; }
}

@media (max-width: 860px) {
  :root { --shell: min(100% - 36px, 760px); }
  .site-header { width: min(calc(var(--shell) + 34px), calc(100vw - 2px)); grid-template-columns: 1fr auto auto; gap: 8px; padding-inline: 16px; }
  .header-actions { grid-column: 2; grid-row: 1; }
  .menu-toggle { position: relative; z-index: 102; grid-column: 3; grid-row: 1; width: 44px; height: 44px; display: grid; align-content: center; gap: 6px; padding: 0 11px; background: rgba(255,255,255,.6); border: 1px solid var(--line); border-radius: 10px; cursor: pointer; }
  .menu-toggle span:not(.sr-only) { display: block; width: 100%; height: 2px; background: var(--ink); transition: transform 180ms ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }
  .primary-nav { position: fixed; inset: -22px calc((100vw - var(--shell)) / -2) auto; min-height: 100vh; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 22px; padding: 90px max(28px, calc((100vw - var(--shell)) / 2)); background: var(--paper); transform: translateY(-110%); transition: transform 260ms ease; }
  .primary-nav.is-open { transform: translateY(0); }
  .primary-nav a { font-family: "Manrope", sans-serif; font-size: 42px; font-weight: 600; }
  .header-cta { display: none; }
  .hero { height: auto; min-height: calc(100vh - 40px); min-height: calc(100svh - 40px); padding: 135px 0 90px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 680px; }
  .hero-stage { width: min(680px, 100%); justify-self: center; margin-top: 15px; padding-right: 28px; }
  .platform-window { width: 100%; margin-left: 0; }
  .hero-stage::before { right: -80px; }
  .section-intro, .section-intro-wide, .universal-heading { grid-template-columns: 1fr; gap: 28px; }
  .section-intro { margin-bottom: 58px; }
  .section-intro > p, .section-intro-wide > p, .universal-heading > p { max-width: 560px; }
  .lifecycle-layout { grid-template-columns: 1fr; }
  .lifecycle-detail { position: relative; top: auto; min-height: 460px; }
  .universal-footer { grid-template-columns: 1fr; gap: 28px; }
  .configure-list { justify-content: flex-start; }
  .product-switcher { grid-template-columns: 1fr; }
  .product-copy { display: grid; grid-template-columns: .35fr 1fr; gap: 35px; }
  .capability-row { grid-template-columns: repeat(2, 1fr); }
  .capability-row article:last-child { grid-column: span 2; }
  .intelligence-grid { grid-template-columns: 1fr; gap: 40px; }
  .ai-copy { max-width: 650px; }
  .governance-bar { grid-template-columns: 1fr; gap: 22px; }
  .governance-bar div { justify-content: flex-start; }
  .industry-explorer { grid-template-columns: 1fr; }
  .industry-nav { display: flex; flex-direction: row; overflow-x: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .industry-tab { min-width: 190px; min-height: 70px; border-right: 1px solid var(--line); border-bottom: 0; }
  .industry-card { min-height: 500px; }
  .industry-visual { min-height: 500px; }
  .rollout-layout { grid-template-columns: 1fr; }
  .rollout-copy { position: static; max-width: 620px; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100vw - 28px); }
  .section-pad { padding-block: 84px; }
  .site-header { top: 10px; width: min(calc(var(--shell) + 26px), calc(100vw - 2px)); height: 58px; padding-inline: 12px; border-color: rgba(20,33,58,.08); background: rgba(247,245,239,.8); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); }
  .site-header.is-scrolled { top: 10px; }
  .back-to-top { right: 14px; bottom: 14px; width: 44px; height: 44px; }
  .brand { font-size: 22px; }
  .brand-mark { transform: scale(.85); transform-origin: left center; margin-right: -3px; }
  .hero { padding-top: 116px; padding-bottom: 110px; background-size: 42px 42px; }
  .hero h1 { font-size: clamp(48px, 15vw, 65px); }
  .hero-lede { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; margin-bottom: 36px; }
  .hero-proof { gap: 7px; }
  .hero-proof span { font-size: 12px; }
  .hero-stage { margin-top: 22px; padding: 18px 0 70px; }
  .hero-stage::before { top: 4px; right: -70px; bottom: 36px; left: 30px; }
  .platform-window { min-height: 0; border-radius: 15px; }
  .window-bar { height: 53px; padding: 0 16px; }
  .window-body { padding: 18px 17px 20px; }
  .window-nav { display: none; }
  .welcome-line { align-items: flex-start; flex-direction: column; gap: 12px; }
  .welcome-line strong { font-size: 17px; }
  .balance-panel { padding: 17px; }
  .overview-grid { grid-template-columns: 1fr 1fr; }
  .balance-value { grid-column: 1 / -1; padding: 12px 0 0; border-top: 1px solid var(--line); border-left: 0; text-align: left; }
  .balance-value strong { font-size: 25px; }
  .callback-row a { display: none; }
  .journey-recommendation { align-items: flex-end; }
  .journey-recommendation small { display: none; }
  .action-grid { gap: 6px; }
  .action-grid > button { min-height: 86px; padding: 10px 6px; }
  .action-grid .action-icon { margin-bottom: 7px; }
  .floating-ai { display: none; }
  .floating-success { bottom: 30px; left: -6px; transform: scale(.8); transform-origin: bottom left; animation: none; }
  .stage-caption { display: none; }
  .hero-ticker { padding-block: 12px; }
  .section-intro h2, .universal-heading h2, .ai-copy h2, .rollout-copy h2 { font-size: 45px; }
  .lifecycle-rail::before { left: 22px; }
  .lifecycle-step { grid-template-columns: 45px 1fr 18px; gap: 12px; }
  .lifecycle-step > span { width: 45px; height: 45px; }
  .lifecycle-step strong { font-size: 19px; }
  .lifecycle-detail { min-height: 480px; padding: 35px 27px; }
  .detail-index { font-size: 60px; }
  .detail-icon { margin-bottom: 55px; }
  .receivable-orbit { width: 100%; aspect-ratio: 1 / 1.08; margin-block: 70px 60px; }
  .receivable-orbit::before { inset: 10% -13%; }
  .receivable-orbit::after { inset: 24% 6%; }
  .orbit-core { width: 145px; height: 145px; }
  .orbit-item { min-width: 90px; padding: 8px 10px; font-size: 14px; }
  .item-one { top: 0; left: 36%; }.item-two { top: 21%; right: -2%; }.item-three { right: 2%; bottom: 12%; }.item-four { bottom: 0; left: 35%; }.item-five { bottom: 15%; left: -2%; }.item-six { top: 21%; left: -3%; }
  .product-copy { display: block; }
  .product-tabs { flex-direction: row; overflow-x: auto; margin-bottom: 30px; }
  .product-tab { min-width: max-content; }
  .browser-chrome div { width: 60%; }
  .frame-note { right: 10px; bottom: -15px; }
  .capability-row { grid-template-columns: 1fr; margin-top: 80px; }
  .capability-row article:last-child { grid-column: auto; }
  .capability-row article { min-height: 140px; }
  .capability-row span { margin-bottom: 24px; }
  .ai-map { min-height: 430px; margin-inline: -15px; }
  .ai-center { width: 160px; height: 160px; }
  .ai-center strong { font-size: 23px; }
  .ai-node { width: 94px; height: 94px; border-width: 5px; }
  .ai-node span { font-size: 13px; }
  .node-one { top: 3%; left: 12%; }.node-two { top: 7%; right: 5%; }.node-three { right: 5%; bottom: 4%; }.node-four { bottom: 1%; left: 12%; }
  .governance-bar { padding: 25px 22px; }
  .industry-card { grid-template-columns: 1fr; }
  .industry-visual { min-height: 280px; }
  .visual-ring { width: 230px; height: 230px; }
  .visual-symbol { width: 100px; height: 100px; margin-bottom: 18px; font-size: 40px; }
  .industry-content { padding: 34px 25px 40px; }
  .outcome-grid { grid-template-columns: 1fr; }
  .outcome-card { min-height: 280px; }
  .momentum-line { align-items: flex-start; flex-direction: column; gap: 8px; }
  .momentum-line i { transform: rotate(90deg); }
  .rollout-steps li { grid-template-columns: 48px 1fr; gap: 20px; }
  .rollout-steps li > span { width: 48px; height: 48px; }
  .rollout-steps h3 { font-size: 25px; }
  .cta-inner h2 { font-size: 53px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .demo-dialog { padding: 36px 22px 25px; }
  .dialog-brand { margin-bottom: 38px; }
  .demo-dialog h2 { font-size: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
