:root {
  --flow-purple-950: #27113f;
  --flow-purple-900: #351653;
  --flow-purple-800: #48206b;
  --flow-purple-700: #5c2c82;
  --flow-purple-600: #704099;
  --flow-purple-150: rgba(92, 44, 130, 0.18);
  --flow-purple-100: rgba(92, 44, 130, 0.12);
  --flow-purple-050: rgba(92, 44, 130, 0.06);
  --flow-yellow-900: #705500;
  --flow-yellow-800: #8a6800;
  --flow-yellow-700: #a77c00;
  --flow-yellow-600: #c19300;
  --flow-yellow-500: #d6aa12;
  --flow-yellow-150: rgba(214, 170, 18, 0.2);
  --flow-yellow-100: rgba(214, 170, 18, 0.16);
  --flow-yellow-050: rgba(214, 170, 18, 0.08);
  --flow-ink-950: #17141c;
  --flow-ink-800: #312c37;
  --flow-ink-700: #4e4a55;
  --flow-gray-100: #eceaf0;
  --flow-gray-050: #f7f6f9;
  --flow-white: #fff;
  --flow-container: 1200px;
}

body.saas-mode {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--flow-white);
  color: var(--flow-ink-950);
  font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.saas-mode *,
body.saas-mode *::before,
body.saas-mode *::after {
  box-sizing: border-box;
}

body.saas-mode button,
body.saas-mode a {
  font: inherit;
}

body.saas-mode a {
  color: inherit;
  text-decoration: none;
}

body.saas-mode button {
  color: inherit;
}

body.saas-mode h1,
body.saas-mode h2,
body.saas-mode h3,
body.saas-mode p {
  margin: 0;
}

body.saas-mode ul,
body.saas-mode ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.saas-skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--flow-purple-900);
  color: #fff;
  font-weight: 800;
}

.saas-skip-link:focus {
  transform: translateY(0);
}

.saas-site {
  min-height: 100vh;
  overflow: clip;
  background: #fff;
}

.saas-container {
  width: min(calc(100% - 48px), var(--flow-container));
  margin-inline: auto;
}

.saas-section {
  padding: 108px 0;
}

.saas-icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.saas-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--flow-purple-950);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.saas-brand-lockup {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  white-space: nowrap;
}

.saas-brand-lockup strong {
  color: inherit;
  font-size: 1em;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.saas-brand-lockup small {
  color: var(--flow-ink-700);
  font-size: 0.55em;
  font-weight: 700;
  letter-spacing: 0;
}

.saas-brand-mark {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--flow-purple-900);
  box-shadow: 0 8px 20px rgba(53, 22, 83, 0.18);
}

.saas-brand-mark i,
.saas-brand-mark b,
.saas-brand-mark em {
  position: absolute;
  display: block;
  height: 5px;
  border-radius: 99px;
  background: #fff;
  transform: rotate(-34deg);
}

.saas-brand-mark i {
  top: 7px;
  left: 5px;
  width: 19px;
}

.saas-brand-mark b {
  top: 14px;
  left: 8px;
  width: 17px;
  background: var(--flow-yellow-500);
}

.saas-brand-mark em {
  top: 21px;
  left: 6px;
  width: 12px;
}

.saas-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: 76px;
  border-bottom: 1px solid transparent;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.saas-header.is-scrolled {
  border-color: rgba(53, 22, 83, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 32px rgba(39, 17, 63, 0.05);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.saas-header-inner {
  width: min(calc(100% - 48px), var(--flow-container));
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.saas-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.saas-nav a,
.saas-login-link {
  position: relative;
  color: var(--flow-ink-800);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.saas-nav a::after {
  content: "";
  position: absolute;
  inset: auto 50% -8px;
  height: 2px;
  background: var(--flow-purple-700);
  transition: left 160ms ease, right 160ms ease;
}

.saas-nav a:hover::after,
.saas-nav a:focus-visible::after {
  left: 0;
  right: 0;
}

.saas-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

body.saas-mode .saas-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 24px;
  border: 1px solid var(--flow-purple-900);
  border-radius: 14px;
  background: var(--flow-purple-900);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(53, 22, 83, 0.16);
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

body.saas-mode .saas-button .saas-icon {
  width: 18px;
  height: 18px;
}

body.saas-mode .saas-button:hover,
body.saas-mode .saas-button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--flow-purple-700);
  background: var(--flow-purple-700);
  box-shadow: 0 16px 32px rgba(53, 22, 83, 0.2);
}

.saas-button-small {
  min-height: 42px;
  padding-inline: 18px;
  border-radius: 12px;
  font-size: 13px;
}

body.saas-mode .saas-button-secondary {
  border-color: var(--flow-purple-150);
  background: #fff;
  color: var(--flow-purple-900);
  box-shadow: none;
}

body.saas-mode .saas-button-secondary:hover,
body.saas-mode .saas-button-secondary:focus-visible {
  background: var(--flow-purple-050);
}

.saas-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--flow-gray-100);
  border-radius: 12px;
  background: #fff;
}

.saas-hero {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: center;
  padding: 142px 0 72px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(247, 246, 249, 0.15), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 84% 32%, var(--flow-yellow-050), transparent 30%),
    radial-gradient(circle at 18% 4%, var(--flow-purple-050), transparent 34%);
}

.saas-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background-image: linear-gradient(rgba(92, 44, 130, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(92, 44, 130, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
}

.saas-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(580px, 1.14fr);
  align-items: center;
  gap: 70px;
}

.saas-hero-copy {
  padding-top: 10px;
}

.saas-brand-meaning {
  margin: 0 0 10px;
  color: var(--flow-purple-700);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.saas-eyebrow,
.saas-kicker {
  color: var(--flow-purple-700);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.saas-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  padding: 9px 13px;
  border: 1px solid var(--flow-purple-100);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 24px rgba(53, 22, 83, 0.05);
}

.saas-eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--flow-yellow-500);
  box-shadow: 0 0 0 5px var(--flow-yellow-100);
}

.saas-hero h1 {
  max-width: 620px;
  font-size: clamp(48px, 4.5vw, 64px);
  line-height: 1.16;
  letter-spacing: -0.055em;
  word-break: keep-all;
}

.saas-hero h1 strong {
  color: var(--flow-purple-700);
  font-weight: 900;
}

.saas-hero-description {
  margin-top: 26px;
  color: var(--flow-ink-700);
  font-size: 18px;
  line-height: 1.75;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.saas-hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}

.saas-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin-top: 25px;
  color: var(--flow-ink-700);
  font-size: 13px;
  font-weight: 700;
}

.saas-hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.saas-hero-trust .saas-icon {
  width: 16px;
  height: 16px;
  color: var(--flow-purple-700);
}

.saas-hero-product {
  position: relative;
  transform: perspective(1400px) rotateY(-4deg) rotateX(1deg);
}

.saas-hero-product::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 12% 3% -8% 8%;
  border-radius: 50%;
  background: rgba(92, 44, 130, 0.18);
  filter: blur(54px);
}

.saas-app-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(53, 22, 83, 0.13);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 34px 80px rgba(39, 17, 63, 0.16), 0 2px 8px rgba(39, 17, 63, 0.06);
}

.saas-window-bar {
  min-height: 58px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
  border-bottom: 1px solid var(--flow-gray-100);
  background: rgba(255, 255, 255, 0.95);
}

.saas-window-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--flow-purple-950);
  font-size: 12px;
}

.saas-window-logo .saas-brand-lockup {
  gap: 3px;
}

.saas-window-logo .saas-brand-lockup small {
  font-size: 7px;
}

.saas-window-logo .saas-brand-mark {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  box-shadow: none;
}

.saas-window-logo .saas-brand-mark i,
.saas-window-logo .saas-brand-mark b,
.saas-window-logo .saas-brand-mark em {
  height: 3px;
}

.saas-window-logo .saas-brand-mark i {
  top: 6px;
  left: 4px;
  width: 14px;
}

.saas-window-logo .saas-brand-mark b {
  top: 11px;
  left: 6px;
  width: 12px;
}

.saas-window-logo .saas-brand-mark em {
  top: 16px;
  left: 5px;
  width: 9px;
}

.saas-window-academy {
  color: var(--flow-ink-700);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.saas-window-avatar {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 9px;
  border-radius: 10px;
  background: var(--flow-purple-050);
  color: var(--flow-purple-700);
  font-size: 10px;
  font-weight: 900;
}

.saas-window-body {
  display: grid;
  grid-template-columns: 112px 1fr;
  min-height: 430px;
  background: var(--flow-gray-050);
}

.saas-window-sidebar {
  padding: 20px 12px;
  border-right: 1px solid var(--flow-gray-100);
  background: #fff;
}

.saas-window-sidebar span {
  min-height: 43px;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 7px;
  padding: 0 10px;
  border-radius: 10px;
  color: #726b7b;
  font-size: 10px;
}

.saas-window-sidebar span.is-active {
  background: var(--flow-purple-050);
  color: var(--flow-purple-700);
}

.saas-window-sidebar .saas-icon {
  width: 16px;
  height: 16px;
}

.saas-dashboard-content {
  padding: 26px;
}

.saas-dashboard-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.saas-dashboard-head small {
  display: block;
  margin-bottom: 4px;
  color: #8b8491;
  font-size: 10px;
  font-weight: 700;
}

.saas-dashboard-head h3 {
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.035em;
}

.saas-demo-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 25px;
  padding: 0 9px;
  border: 1px solid var(--flow-yellow-150);
  border-radius: 999px;
  background: var(--flow-yellow-050);
  color: var(--flow-yellow-800);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.saas-dashboard-status {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
  margin-top: 21px;
}

.saas-dashboard-status > div {
  min-width: 0;
  min-height: 94px;
  display: flex;
  flex-direction: column;
  padding: 13px;
  border: 1px solid rgba(53, 22, 83, 0.075);
  border-radius: 14px;
  background: #fff;
}

.saas-dashboard-status span {
  overflow: hidden;
  color: #756e7b;
  font-size: 9px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.saas-dashboard-status strong {
  margin-top: 8px;
  color: var(--flow-purple-900);
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.035em;
}

.saas-dashboard-status small {
  margin-top: auto;
  color: #a19aa8;
  font-size: 8px;
}

.saas-dashboard-label {
  margin: 22px 0 10px !important;
  color: #706978;
  font-size: 9px;
  font-weight: 900;
}

.saas-dashboard-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.saas-dashboard-actions button {
  min-width: 0;
  min-height: 82px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 7px;
  padding: 12px;
  border: 1px solid rgba(53, 22, 83, 0.08);
  border-radius: 14px;
  background: #fff;
  text-align: left;
}

.saas-dashboard-actions button > span {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: var(--flow-purple-050);
  color: var(--flow-purple-700);
}

.saas-dashboard-actions .saas-icon {
  width: 15px;
  height: 15px;
}

.saas-dashboard-actions button b {
  overflow: hidden;
  max-width: 100%;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.saas-floating-card {
  position: absolute;
  z-index: 5;
  min-width: 174px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  border: 1px solid rgba(53, 22, 83, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 44px rgba(39, 17, 63, 0.16);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transform: translateZ(30px);
}

.saas-floating-card-one {
  top: 72px;
  right: -36px;
}

.saas-floating-card-two {
  bottom: 38px;
  left: -34px;
}

.saas-floating-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--flow-purple-050);
  color: var(--flow-purple-700);
}

.saas-floating-icon.is-yellow {
  background: var(--flow-yellow-100);
  color: var(--flow-yellow-800);
}

.saas-floating-card p {
  display: grid;
}

.saas-floating-card small {
  color: #77717d;
  font-size: 9px;
  font-weight: 700;
}

.saas-floating-card strong {
  font-size: 16px;
}

.saas-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.saas-hero-orb-one {
  top: 100px;
  right: 8%;
  width: 150px;
  height: 150px;
  border: 30px solid var(--flow-purple-050);
}

.saas-hero-orb-two {
  bottom: 80px;
  left: 44%;
  width: 40px;
  height: 40px;
  background: var(--flow-yellow-150);
}

.saas-section-heading {
  max-width: 680px;
  margin-bottom: 46px;
}

.saas-section-heading.is-centered {
  margin-inline: auto;
  text-align: center;
}

.saas-section-heading .saas-kicker {
  margin-bottom: 13px;
}

.saas-section-heading h2,
.saas-portal-copy h2,
.saas-vehicle-copy h2,
.saas-cta-card h2 {
  font-size: clamp(36px, 4vw, 46px);
  line-height: 1.24;
  letter-spacing: -0.05em;
  word-break: keep-all;
}

.saas-section-heading > p:last-child,
.saas-portal-copy > p,
.saas-vehicle-copy > p,
.saas-cta-card > p {
  margin-top: 17px;
  color: var(--flow-ink-700);
  font-size: 17px;
  line-height: 1.75;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.saas-product-section {
  background: var(--flow-gray-050);
}

.saas-product-stage {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px;
}

.saas-product-stage .saas-app-window {
  box-shadow: 0 40px 90px rgba(39, 17, 63, 0.13);
}

.saas-product-glow {
  position: absolute;
  inset: 6% 8% -5%;
  border-radius: 50%;
  background: var(--flow-purple-150);
  filter: blur(70px);
}

.saas-app-window.is-wide .saas-window-body {
  min-height: 500px;
  grid-template-columns: 144px 1fr;
}

.saas-app-window.is-wide .saas-dashboard-content {
  padding: 34px;
}

.saas-app-window.is-wide .saas-dashboard-status > div {
  min-height: 112px;
  padding: 17px;
}

.saas-app-window.is-wide .saas-dashboard-status span {
  font-size: 11px;
}

.saas-app-window.is-wide .saas-dashboard-status strong {
  font-size: 22px;
}

.saas-app-window.is-wide .saas-dashboard-status small {
  font-size: 9px;
}

.saas-app-window.is-wide .saas-dashboard-actions button {
  min-height: 96px;
  padding: 16px;
}

.saas-app-window.is-wide .saas-dashboard-actions button b {
  font-size: 11px;
}

.saas-values {
  padding-bottom: 120px;
}

.saas-value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.saas-value-card {
  position: relative;
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--flow-gray-100);
  border-radius: 24px;
  background: #fff;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.saas-value-card:hover {
  transform: translateY(-5px);
  border-color: var(--flow-purple-150);
  box-shadow: 0 24px 54px rgba(39, 17, 63, 0.08);
}

.saas-card-number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: #c7c2cc;
  font-size: 12px;
  font-weight: 800;
}

.saas-value-icon,
.saas-bento-copy > span {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: var(--flow-purple-050);
  color: var(--flow-purple-700);
}

.saas-value-card h3 {
  margin-top: 31px;
  font-size: 21px;
  letter-spacing: -0.035em;
}

.saas-value-card p {
  margin-top: 12px;
  color: var(--flow-ink-700);
  font-size: 15px;
  line-height: 1.75;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.saas-role-section {
  background: var(--flow-purple-950);
  color: #fff;
}

.saas-role-section .saas-kicker {
  color: #d8bded;
}

.saas-role-section .saas-section-heading > p:last-child {
  color: rgba(255, 255, 255, 0.65);
}

.saas-role-tabs {
  width: fit-content;
  max-width: 100%;
  display: flex;
  gap: 6px;
  margin: 0 auto 28px;
  padding: 6px;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.06);
  scrollbar-width: none;
}

.saas-role-tabs::-webkit-scrollbar {
  display: none;
}

.saas-role-tabs button {
  min-height: 44px;
  padding: 0 19px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease;
}

.saas-role-tabs button[aria-selected="true"] {
  background: #fff;
  color: var(--flow-purple-950);
}

.saas-role-panel {
  display: grid;
  grid-template-columns: 0.36fr 0.64fr;
  align-items: center;
  gap: 54px;
}

.saas-role-copy {
  padding: 20px 0;
}

.saas-role-eyebrow {
  color: var(--flow-yellow-500);
  font-size: 13px;
  font-weight: 900;
}

.saas-role-copy h3 {
  margin-top: 14px;
  font-size: 34px;
  line-height: 1.33;
  letter-spacing: -0.045em;
  word-break: keep-all;
}

.saas-role-copy > p:not(.saas-role-eyebrow) {
  margin-top: 17px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.75;
  word-break: keep-all;
}

.saas-role-copy ul {
  display: grid;
  gap: 11px;
  margin-top: 25px;
}

.saas-role-copy li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 700;
}

.saas-role-copy li .saas-icon {
  width: 17px;
  height: 17px;
  color: var(--flow-yellow-500);
}

.saas-text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 28px;
  color: currentColor;
  font-size: 14px;
  font-weight: 900;
}

.saas-text-link .saas-icon {
  width: 17px;
  height: 17px;
  transition: transform 160ms ease;
}

.saas-text-link:hover .saas-icon,
.saas-text-link:focus-visible .saas-icon {
  transform: translateX(4px);
}

.saas-role-screen {
  min-width: 0;
  animation: saas-role-enter 220ms ease;
}

@keyframes saas-role-enter {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.saas-app-window.is-role-demo {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.3);
}

.saas-role-dashboard-body {
  min-height: 480px;
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 16px;
  padding: 24px;
  background: var(--flow-gray-050);
  color: var(--flow-ink-950);
}

.saas-role-dashboard-main {
  min-width: 0;
}

.saas-role-dashboard-body .saas-dashboard-status {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.saas-role-dashboard-body .saas-dashboard-status > div {
  min-height: 86px;
}

.saas-role-dashboard-body .saas-dashboard-actions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 14px;
}

.saas-role-dashboard-body .saas-dashboard-actions button {
  cursor: pointer;
  transition: border-color 160ms ease, transform 160ms ease, background-color 160ms ease;
}

.saas-role-dashboard-body .saas-dashboard-actions button:hover,
.saas-role-dashboard-body .saas-dashboard-actions button:focus-visible,
.saas-role-dashboard-body .saas-dashboard-actions button.is-demo-notice {
  transform: translateY(-2px);
  border-color: var(--flow-purple-150);
  background: var(--flow-purple-050);
}

.saas-role-dashboard-body .saas-dashboard-actions button small {
  color: #9a93a0;
  font-size: 8px;
}

.saas-role-task-list {
  padding: 16px;
  border: 1px solid var(--flow-gray-100);
  border-radius: 16px;
  background: #fff;
}

.saas-task-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--flow-gray-100);
  font-size: 10px;
  font-weight: 900;
}

.saas-task-list-head b {
  width: 23px;
  height: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--flow-purple-050);
  color: var(--flow-purple-700);
}

.saas-role-task-list article {
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 9px;
  padding: 14px 0;
  border-bottom: 1px solid var(--flow-gray-100);
}

.saas-role-task-list article > b {
  grid-column: 2;
  color: var(--flow-purple-700);
  font-size: 9px;
}

.saas-task-dot {
  width: 7px;
  height: 7px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--flow-yellow-500);
}

.saas-role-task-list article div {
  display: grid;
}

.saas-role-task-list article strong {
  font-size: 10px;
}

.saas-role-task-list article small {
  margin-top: 3px;
  color: #8a8490;
  font-size: 8px;
}

.saas-role-task-list > button {
  width: 100%;
  min-height: 34px;
  margin-top: 14px;
  border: 0;
  border-radius: 9px;
  background: var(--flow-gray-050);
  color: #948e99;
  font-size: 8px;
  font-weight: 800;
}

.saas-parent-window {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: #fff;
  color: var(--flow-ink-950);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.3);
}

.saas-parent-topbar {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border-bottom: 1px solid var(--flow-gray-100);
}

.saas-parent-topbar > span:first-child {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
}

.saas-parent-topbar .saas-brand-mark {
  width: 22px;
  height: 22px;
  border-radius: 7px;
}

.saas-parent-report {
  padding: 26px;
  background: var(--flow-gray-050);
}

.saas-report-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.saas-report-heading small {
  color: var(--flow-purple-700);
  font-size: 9px;
  font-weight: 800;
}

.saas-report-heading h3 {
  margin-top: 4px;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.04em;
}

.saas-report-score {
  width: 88px;
  height: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: conic-gradient(var(--flow-purple-700) 90%, var(--flow-purple-100) 0);
  box-shadow: inset 0 0 0 9px #fff;
}

.saas-report-score strong {
  font-size: 21px;
}

.saas-report-score span {
  color: #7f7885;
  font-size: 7px;
  font-weight: 700;
}

.saas-report-status {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 15px;
}

.saas-report-status span {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px 7px;
  border-radius: 99px;
  background: var(--flow-purple-050);
  color: var(--flow-purple-700);
  font-size: 7px;
  font-weight: 900;
}

.saas-report-status .saas-icon {
  width: 10px;
  height: 10px;
}

.saas-report-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  margin-top: 17px;
}

.saas-report-summary div {
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--flow-gray-100);
  border-radius: 11px;
  background: #fff;
}

.saas-report-summary span {
  color: #867f8b;
  font-size: 8px;
}

.saas-report-summary strong {
  font-size: 10px;
}

.saas-report-chart {
  height: 92px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 11px;
  margin-top: 14px;
  padding: 13px 16px 8px;
  border: 1px solid var(--flow-gray-100);
  border-radius: 12px;
  background: #fff;
}

.saas-report-chart > div {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
}

.saas-report-chart span {
  height: var(--height);
  min-height: 12px;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, var(--flow-purple-600), var(--flow-purple-900));
}

.saas-report-chart small {
  color: #8c8591;
  font-size: 7px;
  text-align: center;
}

.saas-report-note {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  margin-top: 14px;
  padding: 12px;
  border-radius: 12px;
  background: var(--flow-yellow-050);
}

.saas-report-note > span {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: var(--flow-yellow-150);
  color: var(--flow-yellow-800);
}

.saas-report-note .saas-icon {
  width: 15px;
  height: 15px;
}

.saas-report-note p {
  font-size: 9px;
  line-height: 1.55;
}

.saas-report-note small {
  display: block;
  margin-bottom: 3px;
  color: var(--flow-yellow-900);
  font-size: 8px;
  font-weight: 900;
}

.saas-report-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}

.saas-report-actions p {
  display: grid;
  gap: 3px;
  padding: 10px;
  border: 1px solid var(--flow-gray-100);
  border-radius: 11px;
  background: #fff;
}

.saas-report-actions small {
  color: #817b86;
  font-size: 7px;
}

.saas-report-actions strong {
  font-size: 8px;
}

.saas-synthetic-note {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 11px !important;
  color: #8a8490;
  font-size: 8px;
}

.saas-synthetic-note .saas-icon {
  width: 13px;
  height: 13px;
}

.saas-bento-section {
  background: var(--flow-gray-050);
}

.saas-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 18px;
}

.saas-bento-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--flow-gray-100);
  border-radius: 26px;
  background: #fff;
}

.saas-bento-card.is-large {
  grid-column: span 2;
}

.saas-bento-card.is-tall {
  grid-column: span 2;
  grid-row: span 2;
}

.saas-bento-card.is-purple {
  background: var(--flow-purple-900);
  color: #fff;
}

.saas-bento-copy > span {
  width: 42px;
  height: 42px;
  border-radius: 13px;
}

.saas-bento-card.is-purple .saas-bento-copy > span {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.saas-bento-copy h3 {
  margin-top: 21px;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.saas-bento-copy p {
  max-width: 430px;
  margin-top: 9px;
  color: var(--flow-ink-700);
  font-size: 14px;
  line-height: 1.65;
  word-break: keep-all;
}

.saas-bento-card.is-purple .saas-bento-copy p {
  color: rgba(255, 255, 255, 0.67);
}

.saas-mini-task-board {
  position: absolute;
  right: 22px;
  bottom: -13px;
  width: 48%;
  display: grid;
  gap: 7px;
  padding: 14px;
  border-radius: 15px 15px 0 0;
  background: #fff;
  color: var(--flow-ink-950);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
}

.saas-mini-task-board span {
  display: grid;
  grid-template-columns: 7px 1fr auto;
  align-items: center;
  gap: 7px;
  padding: 8px;
  border-radius: 9px;
  background: var(--flow-gray-050);
  font-size: 8px;
}

.saas-mini-task-board i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--flow-yellow-500);
}

.saas-mini-task-board em {
  color: var(--flow-purple-700);
  font-style: normal;
  font-weight: 800;
}

.saas-mini-report {
  margin-top: 38px;
  padding: 24px;
  border-radius: 18px;
  background: var(--flow-purple-050);
}

.saas-mini-report > span {
  color: var(--flow-purple-700);
  font-size: 11px;
  font-weight: 800;
}

.saas-mini-report > strong {
  display: block;
  margin-top: 10px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.saas-mini-report > p {
  margin-top: 8px;
  color: var(--flow-ink-700);
  font-size: 12px;
}

.saas-mini-report > em {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 40px;
  padding: 7px 10px;
  border-radius: 9px;
  background: #fff;
  color: var(--flow-purple-700);
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
}

.saas-mini-report .saas-icon {
  width: 13px;
  height: 13px;
}

.saas-bento-card.is-small > a {
  position: absolute;
  right: 24px;
  bottom: 22px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--flow-gray-050);
  color: var(--flow-purple-700);
}

.saas-bento-card.is-small > a .saas-icon {
  width: 17px;
  height: 17px;
}

.saas-portal-grid {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  align-items: center;
  gap: 72px;
}

.saas-portal-copy > .saas-kicker {
  margin-bottom: 13px;
}

.saas-portal-copy ul {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.saas-portal-copy li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}

.saas-portal-copy li .saas-icon {
  width: 17px;
  height: 17px;
  color: var(--flow-purple-700);
}

.saas-portal-preview {
  position: relative;
}

.saas-portal-preview::before {
  content: "";
  position: absolute;
  inset: 10% -5% -5% 8%;
  border-radius: 50%;
  background: var(--flow-yellow-100);
  filter: blur(60px);
}

.saas-portal-browser {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--flow-gray-100);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 35px 80px rgba(39, 17, 63, 0.14);
}

.saas-browser-bar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  border-bottom: 1px solid var(--flow-gray-100);
  background: var(--flow-gray-050);
}

.saas-browser-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d7d2dc;
}

.saas-browser-bar span {
  flex: 1;
  margin-left: 8px;
  padding: 5px 10px;
  border-radius: 7px;
  background: #fff;
  color: #918a97;
  font-size: 8px;
  text-align: center;
}

.saas-academy-portal {
  min-height: 460px;
  background: #fff;
}

.saas-academy-portal > header {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 22px;
}

.saas-academy-logo {
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: #335e5c;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}

.saas-academy-portal header div {
  display: grid;
}

.saas-academy-portal header strong {
  font-size: 11px;
}

.saas-academy-portal header small {
  color: #8b8490;
  font-size: 8px;
}

.saas-academy-portal header button {
  min-height: 30px;
  margin-left: auto;
  padding: 0 10px;
  border: 0;
  border-radius: 8px;
  background: #335e5c;
  color: #fff;
  font-size: 8px;
  font-weight: 800;
}

.saas-academy-hero {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 35px;
  background:
    radial-gradient(circle at 82% 30%, rgba(214, 170, 18, 0.28), transparent 25%),
    linear-gradient(135deg, #e7f0ed, #f6f1df);
}

.saas-academy-hero p {
  color: #244643;
  font-size: 26px;
  line-height: 1.35;
  letter-spacing: -0.04em;
}

.saas-academy-hero p strong {
  color: #9a7400;
}

.saas-academy-hero > span {
  margin-top: 10px;
  color: #58716f;
  font-size: 10px;
}

.saas-academy-menu {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  padding: 20px 24px;
}

.saas-academy-menu span {
  min-height: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid #e5ebe9;
  border-radius: 12px;
  color: #335e5c;
}

.saas-academy-menu .saas-icon {
  width: 18px;
  height: 18px;
}

.saas-academy-menu b {
  color: #455b59;
  font-size: 8px;
}

.saas-academy-portal > footer {
  padding: 8px;
  color: #a4a0a7;
  font-size: 7px;
  text-align: center;
}

.saas-loop-section {
  background: var(--flow-gray-050);
}

.saas-loop-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.saas-loop-steps li {
  position: relative;
  min-height: 175px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  border: 1px solid var(--flow-gray-100);
  border-radius: 22px;
  background: #fff;
}

.saas-loop-steps li > span {
  color: var(--flow-yellow-700);
  font-size: 11px;
  font-weight: 900;
}

.saas-loop-steps li > strong {
  margin-top: 15px;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.saas-loop-steps li > small {
  margin-top: 7px;
  color: var(--flow-ink-700);
  font-size: 12px;
}

.saas-loop-steps li > .saas-icon {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -19px;
  width: 25px;
  height: 25px;
  padding: 5px;
  border-radius: 50%;
  background: var(--flow-purple-900);
  color: #fff;
  transform: translateY(-50%);
}

.saas-loop-note {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 25px auto 0 !important;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--flow-purple-050);
  color: var(--flow-purple-800);
  font-size: 12px;
  font-weight: 800;
}

.saas-loop-note .saas-icon {
  width: 17px;
  height: 17px;
}

.saas-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.saas-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--flow-gray-100);
  border-radius: 26px;
  background: #fff;
}

.saas-plan-card.is-featured {
  border: 2px solid var(--flow-purple-700);
  box-shadow: 0 28px 65px rgba(53, 22, 83, 0.13);
}

.saas-plan-badge {
  position: absolute;
  top: 17px;
  right: 17px;
  padding: 6px 9px;
  border-radius: 99px;
  background: var(--flow-yellow-100);
  color: var(--flow-yellow-900);
  font-size: 10px;
  font-weight: 900;
}

.saas-plan-head small {
  color: var(--flow-purple-700);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.saas-plan-head h3 {
  margin-top: 6px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.saas-plan-head p {
  margin-top: 4px;
  color: var(--flow-ink-700);
  font-size: 13px;
}

.saas-plan-price {
  min-height: 78px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-top: 24px;
}

.saas-plan-price strong {
  font-size: 28px;
  letter-spacing: -0.04em;
}

.saas-plan-price span {
  margin-top: 2px;
  color: #8d8792;
  font-size: 11px;
}

.saas-plan-meta {
  display: grid;
  gap: 6px;
  min-height: 104px;
  margin-top: 20px;
}

.saas-plan-meta li {
  color: var(--flow-ink-700);
  font-size: 13px;
}

.saas-plan-divider {
  height: 1px;
  margin: 21px 0;
  background: var(--flow-gray-100);
}

.saas-plan-features {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.saas-plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
}

.saas-plan-features .saas-icon {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  color: var(--flow-purple-700);
}

.saas-plan-card .saas-button {
  width: 100%;
  margin-top: auto;
}

.saas-plan-footnote {
  max-width: 760px;
  margin: 24px auto 0 !important;
  color: #837d87;
  font-size: 12px;
  text-align: center;
}

.saas-vehicle-section {
  padding-top: 18px;
}

.saas-vehicle-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.55fr 0.45fr;
  gap: 55px;
  padding: 58px;
  border-radius: 30px;
  background: var(--flow-purple-950);
  color: #fff;
}

.saas-vehicle-card::before {
  content: "";
  position: absolute;
  top: -110px;
  right: -70px;
  width: 300px;
  height: 300px;
  border: 70px solid rgba(214, 170, 18, 0.12);
  border-radius: 50%;
}

.saas-vehicle-copy,
.saas-vehicle-list {
  position: relative;
  z-index: 2;
}

.saas-status-badge {
  display: inline-flex;
  margin-bottom: 25px;
  padding: 7px 11px;
  border: 1px solid rgba(214, 170, 18, 0.26);
  border-radius: 99px;
  background: rgba(214, 170, 18, 0.1);
  color: #ead06b;
  font-size: 10px;
  font-weight: 900;
}

.saas-vehicle-copy .saas-kicker {
  color: #d8bded;
}

.saas-vehicle-copy h2 {
  margin-top: 12px;
  font-size: 38px;
}

.saas-vehicle-copy > p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
}

body.saas-mode .saas-button-yellow {
  margin-top: 28px;
  border-color: var(--flow-yellow-500);
  background: var(--flow-yellow-500);
  color: var(--flow-purple-950);
  box-shadow: none;
}

body.saas-mode .saas-button-yellow:hover,
body.saas-mode .saas-button-yellow:focus-visible {
  border-color: #e3b91f;
  background: #e3b91f;
}

.saas-vehicle-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  align-content: center;
}

.saas-vehicle-list > span {
  min-height: 100px;
  display: grid;
  grid-template-columns: 30px 1fr;
  align-content: center;
  gap: 2px 10px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.06);
}

.saas-vehicle-list .saas-icon {
  grid-row: 1 / span 2;
  color: var(--flow-yellow-500);
}

.saas-vehicle-list b {
  font-size: 12px;
}

.saas-vehicle-list small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
}

.saas-faq-section {
  background: var(--flow-gray-050);
}

.saas-faq-grid {
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
  align-items: start;
  gap: 80px;
}

.saas-faq-list details {
  border-bottom: 1px solid #dedbe2;
}

.saas-faq-list summary {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  list-style: none;
}

.saas-faq-list summary::-webkit-details-marker {
  display: none;
}

.saas-faq-list summary i {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.saas-faq-list summary i::before,
.saas-faq-list summary i::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 3px;
  width: 14px;
  height: 2px;
  border-radius: 99px;
  background: var(--flow-purple-700);
  transition: transform 160ms ease;
}

.saas-faq-list summary i::after {
  transform: rotate(90deg);
}

.saas-faq-list details[open] summary i::after {
  transform: rotate(0);
}

.saas-faq-list details > p {
  max-width: 690px;
  padding: 0 44px 24px 0;
  color: var(--flow-ink-700);
  font-size: 14px;
  line-height: 1.75;
  word-break: keep-all;
}

.saas-final-cta {
  padding: 90px 0;
}

.saas-cta-card {
  position: relative;
  overflow: hidden;
  padding: 78px 32px;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--flow-purple-950), var(--flow-purple-700));
  color: #fff;
  text-align: center;
}

.saas-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: linear-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle, #000, transparent 72%);
}

.saas-cta-card > * {
  position: relative;
  z-index: 2;
}

.saas-cta-card .saas-kicker {
  color: #ead06b;
}

.saas-cta-card h2 {
  margin-top: 13px;
}

.saas-cta-card > p {
  color: rgba(255, 255, 255, 0.7);
}

.saas-cta-card > div {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

body.saas-mode .saas-button-light {
  border-color: #fff;
  background: #fff;
  color: var(--flow-purple-950);
  box-shadow: none;
}

body.saas-mode .saas-button-light:hover,
body.saas-mode .saas-button-light:focus-visible {
  border-color: #fff;
  background: #fff;
  color: var(--flow-purple-700);
}

body.saas-mode .saas-button-outline-light {
  border-color: rgba(255, 255, 255, 0.34);
  background: transparent;
  color: #fff;
  box-shadow: none;
}

body.saas-mode .saas-button-outline-light:hover,
body.saas-mode .saas-button-outline-light:focus-visible {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.09);
}

.saas-cta-card > small {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
}

.saas-footer {
  padding: 60px 0 28px;
  border-top: 1px solid var(--flow-gray-100);
  background: var(--flow-gray-050);
}

.saas-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 54px;
}

.saas-footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.saas-footer-grid > div:first-child p {
  max-width: 260px;
  margin-top: 8px;
  color: #817b86;
  font-size: 13px;
}

.saas-footer-grid strong {
  margin-bottom: 4px;
  font-size: 13px;
}

.saas-footer-grid > div:not(:first-child) a {
  color: #746e79;
  font-size: 12px;
}

.saas-footer-grid > div:not(:first-child) a:hover,
.saas-footer-grid > div:not(:first-child) a:focus-visible {
  color: var(--flow-purple-700);
}

.saas-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid #e1dfe4;
  color: #958f99;
  font-size: 10px;
}

.legacy-initial-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px;
  background: #f7f6f9;
  color: #27113f;
  font-family: "Noto Sans KR", system-ui, sans-serif;
}

.legacy-initial-panel {
  display: grid;
  gap: 8px;
  text-align: center;
}

.legacy-initial-panel strong {
  font-size: 22px;
}

.legacy-initial-panel span {
  color: #6f6875;
  font-size: 13px;
}

.saas-noscript {
  max-width: 680px;
  margin: 100px auto;
  padding: 40px;
  font-family: system-ui, sans-serif;
  text-align: center;
}

body.saas-mode :focus-visible {
  outline: 3px solid rgba(214, 170, 18, 0.65);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .saas-header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .saas-nav {
    gap: 20px;
  }

  body.saas-mode .saas-header-actions .saas-button-small {
    display: none;
  }

  .saas-hero {
    min-height: auto;
  }

  .saas-hero-grid {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .saas-hero-copy {
    max-width: 760px;
    text-align: center;
    margin-inline: auto;
  }

  .saas-hero h1 {
    max-width: none;
  }

  .saas-hero-actions,
  .saas-hero-trust {
    justify-content: center;
  }

  .saas-hero-product {
    max-width: 760px;
    margin: 0 auto;
    transform: none;
  }

  .saas-value-grid {
    grid-template-columns: 1fr 1fr;
  }

  .saas-role-panel {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .saas-role-copy {
    max-width: 720px;
    text-align: center;
    margin-inline: auto;
  }

  .saas-role-copy ul {
    width: fit-content;
    margin-inline: auto;
    text-align: left;
  }

  .saas-bento-grid {
    grid-template-columns: 1fr 1fr;
  }

  .saas-bento-card.is-large,
  .saas-bento-card.is-tall {
    grid-column: span 2;
  }

  .saas-bento-card.is-tall {
    grid-row: span 1;
  }

  .saas-mini-report {
    margin-top: 24px;
  }

  .saas-mini-report > em {
    margin-top: 20px;
  }

  .saas-portal-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .saas-portal-copy {
    max-width: 720px;
  }

  .saas-loop-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .saas-loop-steps li:nth-child(3) > .saas-icon {
    display: none;
  }

  .saas-plan-grid {
    grid-template-columns: 1fr 1fr;
  }

  .saas-plan-card:last-child {
    grid-column: 1 / -1;
  }

  .saas-plan-card:last-child .saas-plan-meta {
    min-height: auto;
  }
}

@media (max-width: 820px) {
  .saas-container,
  .saas-header-inner {
    width: min(calc(100% - 36px), var(--flow-container));
  }

  .saas-section {
    padding: 76px 0;
  }

  .saas-header {
    height: 68px;
  }

  .saas-header-inner {
    display: flex;
    justify-content: space-between;
  }

  .saas-nav {
    position: fixed;
    z-index: 999;
    top: 68px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--flow-gray-100);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(39, 17, 63, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .saas-menu-open .saas-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .saas-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 10px;
  }

  .saas-nav a:hover,
  .saas-nav a:focus-visible {
    background: var(--flow-purple-050);
  }

  .saas-nav a::after {
    display: none;
  }

  .saas-menu-button {
    display: inline-flex;
  }

  .saas-hero {
    padding: 124px 0 64px;
  }

  .saas-hero h1 {
    font-size: clamp(40px, 8vw, 52px);
  }

  .saas-hero-description {
    font-size: 16px;
  }

  .saas-floating-card-one {
    right: -10px;
  }

  .saas-floating-card-two {
    left: -10px;
  }

  .saas-app-window.is-wide .saas-window-body {
    grid-template-columns: 90px 1fr;
  }

  .saas-app-window.is-wide .saas-dashboard-content {
    padding: 24px;
  }

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

  .saas-role-dashboard-body {
    grid-template-columns: 1fr;
  }

  .saas-role-task-list {
    display: none;
  }

  .saas-vehicle-card {
    grid-template-columns: 1fr;
    padding: 44px;
  }

  .saas-faq-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .saas-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .saas-container,
  .saas-header-inner {
    width: min(calc(100% - 28px), var(--flow-container));
  }

  .saas-section {
    padding: 64px 0;
  }

  .saas-header-actions {
    gap: 10px;
  }

  .saas-login-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .saas-hero {
    padding-top: 112px;
  }

  .saas-eyebrow {
    margin-bottom: 19px;
    font-size: 12px;
  }

  .saas-hero h1 {
    font-size: 38px;
    line-height: 1.2;
  }

  .saas-hero-description {
    margin-top: 21px;
    font-size: 15px;
  }

  .saas-desktop-break {
    display: none;
  }

  .saas-hero-actions,
  .saas-cta-card > div {
    display: grid;
    grid-template-columns: 1fr;
  }

  .saas-button {
    width: 100%;
  }

  .saas-hero-trust {
    gap: 9px 15px;
    font-size: 11px;
  }

  .saas-hero-product {
    width: calc(100% + 12px);
    margin-left: -6px;
  }

  .saas-floating-card {
    display: none;
  }

  .saas-window-bar {
    grid-template-columns: 1fr auto;
    min-height: 50px;
    padding: 0 13px;
  }

  .saas-window-academy {
    display: none;
  }

  .saas-window-body,
  .saas-app-window.is-wide .saas-window-body {
    display: block;
    min-height: auto;
  }

  .saas-window-sidebar {
    display: none;
  }

  .saas-dashboard-content,
  .saas-app-window.is-wide .saas-dashboard-content {
    padding: 17px;
  }

  .saas-dashboard-status,
  .saas-app-window.is-wide .saas-dashboard-status {
    grid-template-columns: 1fr 1fr;
  }

  .saas-dashboard-status > div,
  .saas-app-window.is-wide .saas-dashboard-status > div {
    min-height: 82px;
    padding: 12px;
  }

  .saas-dashboard-status > div:nth-child(5) {
    grid-column: 1 / -1;
    min-height: 72px;
  }

  .saas-dashboard-actions,
  .saas-role-dashboard-body .saas-dashboard-actions {
    grid-template-columns: 1fr 1fr;
  }

  .saas-dashboard-actions button,
  .saas-app-window.is-wide .saas-dashboard-actions button {
    min-height: 80px;
    padding: 12px;
  }

  .saas-section-heading {
    margin-bottom: 32px;
  }

  .saas-section-heading h2,
  .saas-portal-copy h2,
  .saas-vehicle-copy h2,
  .saas-cta-card h2 {
    font-size: 31px;
  }

  .saas-section-heading > p:last-child,
  .saas-portal-copy > p,
  .saas-vehicle-copy > p,
  .saas-cta-card > p {
    font-size: 15px;
  }

  .saas-product-stage {
    width: calc(100% + 12px);
    margin-left: -6px;
    padding: 0;
  }

  .saas-value-grid {
    grid-template-columns: 1fr;
  }

  .saas-value-card {
    min-height: 220px;
  }

  .saas-role-tabs {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .saas-role-tabs button {
    padding: 0 8px;
    font-size: 12px;
  }

  .saas-role-copy {
    text-align: left;
  }

  .saas-role-copy h3 {
    font-size: 28px;
  }

  .saas-role-copy ul {
    width: 100%;
    margin-inline: 0;
  }

  .saas-role-dashboard-body {
    min-height: auto;
    padding: 14px;
  }

  .saas-role-dashboard-body .saas-dashboard-status {
    grid-template-columns: 1fr 1fr;
  }

  .saas-parent-report {
    padding: 17px;
  }

  .saas-report-heading {
    align-items: flex-start;
  }

  .saas-report-heading h3 {
    font-size: 19px;
  }

  .saas-report-score {
    width: 72px;
    height: 72px;
    flex: 0 0 auto;
  }

  .saas-report-summary {
    grid-template-columns: 1fr 1fr;
  }

  .saas-report-actions {
    grid-template-columns: 1fr;
  }

  .saas-bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .saas-bento-card,
  .saas-bento-card.is-large,
  .saas-bento-card.is-tall {
    grid-column: auto;
    min-height: 230px;
  }

  .saas-mini-task-board {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 22px;
    border-radius: 14px;
  }

  .saas-academy-portal {
    min-height: 0;
  }

  .saas-academy-portal > header {
    padding: 0 14px;
  }

  .saas-academy-portal header button {
    display: none;
  }

  .saas-academy-hero {
    min-height: 190px;
    padding: 25px 22px;
  }

  .saas-academy-hero p {
    font-size: 22px;
  }

  .saas-academy-menu {
    grid-template-columns: 1fr 1fr;
    padding: 15px;
  }

  .saas-loop-steps {
    grid-template-columns: 1fr;
  }

  .saas-loop-steps li {
    min-height: 130px;
  }

  .saas-loop-steps li > .saas-icon {
    top: auto;
    right: 50%;
    bottom: -18px;
    transform: translateX(50%) rotate(90deg);
  }

  .saas-loop-steps li:nth-child(3) > .saas-icon {
    display: block;
  }

  .saas-loop-note {
    border-radius: 14px;
    font-size: 10px;
    text-align: left;
  }

  .saas-plan-grid {
    grid-template-columns: 1fr;
  }

  .saas-plan-card:last-child {
    grid-column: auto;
  }

  .saas-plan-meta {
    min-height: auto;
  }

  .saas-vehicle-card {
    padding: 34px 24px;
    border-radius: 24px;
  }

  .saas-vehicle-list {
    grid-template-columns: 1fr;
  }

  .saas-vehicle-list > span {
    min-height: 76px;
  }

  .saas-faq-list summary {
    min-height: 68px;
    font-size: 14px;
  }

  .saas-cta-card {
    padding: 56px 22px;
    border-radius: 25px;
  }

  .saas-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 24px;
  }

  .saas-footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .saas-footer-bottom {
    flex-direction: column;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.saas-mode *,
  body.saas-mode *::before,
  body.saas-mode *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.saas-fee-section {
  background: linear-gradient(180deg, var(--flow-gray-050), #fff);
}

.saas-fee-table-wrap {
  max-width: 100%;
  margin-top: 34px;
  overflow-x: auto;
  border: 1px solid var(--flow-gray-100);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(39, 17, 63, 0.08);
  overscroll-behavior-inline: contain;
}

.saas-fee-table {
  width: 100%;
  min-width: 940px;
  border-collapse: collapse;
  font-size: 14px;
}

.saas-fee-table th,
.saas-fee-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--flow-gray-100);
  text-align: left;
  vertical-align: top;
}

.saas-fee-table th {
  background: var(--flow-purple-950);
  color: #fff;
  font-size: 12px;
  letter-spacing: -0.01em;
}

.saas-fee-table tr:last-child td {
  border-bottom: 0;
}

.saas-fee-table td:first-child {
  color: var(--flow-purple-900);
  font-weight: 800;
}

.saas-fee-sources,
.saas-fee-notes {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  color: var(--flow-ink-700);
  font-size: 13px;
}

.saas-fee-sources p {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
}

.saas-fee-sources a {
  color: var(--flow-purple-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.saas-fee-notes {
  padding: 18px 20px;
  border-left: 4px solid var(--flow-yellow-500);
  border-radius: 0 14px 14px 0;
  background: var(--flow-yellow-050);
}

.saas-signup-dialog {
  width: min(960px, calc(100% - 28px));
  max-height: calc(100dvh - 28px);
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 26px;
  color: var(--flow-ink-950);
  box-shadow: 0 35px 90px rgba(23, 20, 28, 0.32);
}

.saas-signup-dialog::backdrop {
  background: rgba(23, 12, 31, 0.7);
  backdrop-filter: blur(4px);
}

.saas-signup-shell {
  position: relative;
  padding: 38px;
  background: #fff;
}

.saas-dialog-close {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--flow-gray-100);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.saas-signup-intro {
  max-width: 680px;
  padding-right: 40px;
}

.saas-signup-intro h2 {
  margin: 7px 0 10px;
  color: var(--flow-purple-950);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
}

.saas-google-login {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding: 20px;
  border: 1px solid var(--flow-purple-150);
  border-radius: 16px;
  background: var(--flow-purple-050);
}

.saas-google-login p,
.saas-form-footnote {
  color: var(--flow-ink-700);
  font-size: 13px;
}

.saas-onboarding-form {
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid var(--flow-gray-100);
}

.saas-profile-confirm {
  margin-bottom: 18px;
  padding: 12px 15px;
  border-radius: 12px;
  background: #eaf7ef;
  color: #17643a;
  font-size: 14px;
  font-weight: 800;
}

.saas-profile-confirm.is-preview {
  background: var(--flow-yellow-050);
  color: var(--flow-yellow-900);
}

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

.saas-form-grid > label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.saas-form-grid label > span,
.saas-form-grid legend {
  color: var(--flow-ink-800);
  font-size: 13px;
  font-weight: 800;
}

.saas-form-grid input,
.saas-form-grid select,
.saas-form-grid textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #d6d1dc;
  border-radius: 10px;
  background: #fff;
  color: var(--flow-ink-950);
  font: inherit;
}

.saas-form-grid input:focus,
.saas-form-grid select:focus,
.saas-form-grid textarea:focus {
  outline: 3px solid var(--flow-purple-100);
  border-color: var(--flow-purple-600);
}

.saas-form-grid textarea {
  min-height: 88px;
  resize: vertical;
}

.saas-form-grid .is-wide {
  grid-column: 1 / -1;
}

.saas-form-grid fieldset {
  margin: 0;
  padding: 14px;
  border: 1px solid var(--flow-gray-100);
  border-radius: 12px;
}

.saas-interest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 9px;
}

.saas-interest-grid label,
.saas-consents label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
}

.saas-interest-grid input,
.saas-consents input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 2px;
}

.saas-growth-recommendation {
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--flow-yellow-050);
  color: var(--flow-yellow-900);
  font-size: 13px;
  font-weight: 700;
}

.saas-consents {
  display: grid;
  gap: 9px;
  margin: 22px 0 14px;
}

.saas-form-message {
  min-height: 24px;
  margin-bottom: 12px !important;
  color: var(--flow-purple-800);
  font-size: 14px;
  font-weight: 700;
}

.saas-onboarding-form > .saas-button {
  width: 100%;
}

.saas-form-footnote {
  margin-top: 12px !important;
  text-align: center;
}

@media (max-width: 720px) {
  .saas-signup-shell {
    padding: 30px 18px 24px;
  }

  .saas-form-grid {
    grid-template-columns: 1fr;
  }

  .saas-form-grid .is-wide {
    grid-column: auto;
  }

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

  .saas-fee-table-wrap {
    margin-right: 0;
    margin-left: 0;
  }
}

/* Comparison-first landing information architecture */
.saas-site main > section {
  scroll-margin-top: 72px;
}

.saas-comparison-section {
  padding-top: 142px;
  background:
    radial-gradient(circle at 88% 4%, var(--flow-yellow-100), transparent 24%),
    linear-gradient(180deg, #fbf9fd 0%, #f7f6f9 100%);
}

.saas-comparison-intro {
  max-width: 780px;
  margin-bottom: 42px;
}

.saas-comparison-intro .saas-kicker {
  margin-bottom: 14px;
}

.saas-comparison-intro h1 {
  color: var(--flow-purple-950);
  font-size: clamp(42px, 5.5vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.055em;
  word-break: keep-all;
}

.saas-comparison-intro > p:last-child {
  margin-top: 18px;
  color: var(--flow-ink-700);
  font-size: 17px;
  word-break: keep-all;
}

.saas-comparison-actions {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.saas-compare-panel {
  padding: 32px;
  border: 1px solid rgba(92, 44, 130, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 54px rgba(39, 17, 63, 0.07);
}

.saas-compare-panel + .saas-compare-panel {
  margin-top: 22px;
}

.saas-compare-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.saas-compare-heading > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.saas-compare-heading span {
  color: var(--flow-yellow-800);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.saas-compare-heading h2 {
  color: var(--flow-purple-950);
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.04em;
}

.saas-compare-heading > p {
  max-width: 480px;
  color: var(--flow-ink-700);
  font-size: 13px;
  text-align: right;
}

.saas-table-hint {
  display: none;
  margin-bottom: 8px !important;
  color: var(--flow-ink-700);
  font-size: 11px;
}

.saas-compare-description {
  margin: -10px 0 18px !important;
  color: var(--flow-ink-700);
  font-size: 14px;
}

.saas-compare-desktop {
  overflow: hidden;
  border: 1px solid var(--flow-gray-100);
  border-radius: 16px;
  background: #fff;
}

.saas-compare-mobile {
  display: none;
}

.saas-compare-table-wrap {
  max-width: 100%;
  overflow: auto;
  border: 1px solid var(--flow-gray-100);
  border-radius: 16px;
  background: #fff;
  overscroll-behavior-inline: contain;
}

.saas-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  table-layout: fixed;
}

.saas-compare-table.saas-cost-table {
  min-width: 0;
}

.saas-compare-table th,
.saas-compare-table td {
  padding: 15px 17px;
  border-right: 1px solid var(--flow-gray-100);
  border-bottom: 1px solid var(--flow-gray-100);
  text-align: left;
  vertical-align: middle;
}

.saas-compare-table th:last-child,
.saas-compare-table td:last-child {
  border-right: 0;
}

.saas-compare-table tbody tr:last-child th,
.saas-compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.saas-compare-table thead th {
  background: var(--flow-purple-950);
  color: #fff;
  font-size: 12px;
  white-space: nowrap;
}

.saas-compare-table caption,
.saas-plan-full-wrap caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.saas-compare-table thead th:not(:first-child) span,
.saas-compare-table thead th:not(:first-child) small {
  display: block;
}

.saas-compare-table thead th:not(:first-child) small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 600;
  white-space: normal;
}

.saas-compare-table th:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
}

.saas-compare-table thead th:first-child {
  z-index: 2;
}

.saas-compare-table tbody th {
  width: 28%;
  background: var(--flow-purple-050);
  color: var(--flow-purple-950);
  font-size: 13px;
}

.saas-compare-table tbody td {
  color: var(--flow-ink-800);
  line-height: 1.45;
}

.saas-compare-table .is-flownco {
  background: #f1eaf7;
}

.saas-compare-table thead .is-flownco {
  background: var(--flow-purple-800);
}

.saas-compare-table tbody tr:hover td:not(.is-flownco) {
  background: #faf9fb;
}

.saas-compare-table tbody td small {
  display: block;
  margin-top: 4px;
  color: var(--flow-ink-700);
  font-size: 11px;
}

.saas-cost-table tbody td {
  text-align: right;
}

.saas-compare-info {
  position: relative;
  display: inline-block;
  margin-left: 5px;
  vertical-align: middle;
}

.saas-compare-info summary {
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid var(--flow-purple-150);
  border-radius: 50%;
  color: var(--flow-purple-700);
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.saas-compare-info summary::-webkit-details-marker {
  display: none;
}

.saas-compare-info p {
  position: absolute;
  z-index: 20;
  top: 27px;
  left: 0;
  width: min(280px, 70vw);
  padding: 12px;
  border: 1px solid var(--flow-purple-150);
  border-radius: 10px;
  background: #fff;
  color: var(--flow-ink-800);
  box-shadow: 0 16px 32px rgba(39, 17, 63, 0.14);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.55;
}

.saas-status-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 26px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #e9f6ee;
  color: #17643a;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.saas-status-label.is-coming-soon {
  background: var(--flow-yellow-100);
  color: var(--flow-yellow-900);
}

.saas-status-label.is-disabled {
  background: var(--flow-gray-100);
  color: var(--flow-ink-700);
}

.saas-status-label.is-beta {
  background: var(--flow-purple-100);
  color: var(--flow-purple-800);
}

.saas-status-label.is-unverified {
  background: var(--flow-gray-100);
  color: var(--flow-ink-700);
  white-space: normal;
}

.saas-status-label.is-available {
  background: var(--flow-purple-100);
  color: var(--flow-purple-800);
}

.saas-source-note {
  display: grid;
  gap: 5px;
  margin-top: 14px !important;
  color: var(--flow-ink-700);
  font-size: 12px;
  line-height: 1.65;
}

.saas-source-note a {
  color: var(--flow-purple-700);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.saas-source-disclosure {
  margin-top: 16px;
  color: var(--flow-ink-700);
  font-size: 12px;
}

.saas-source-disclosure summary {
  width: fit-content;
  color: var(--flow-purple-700);
  font-weight: 900;
  cursor: pointer;
}

.saas-source-disclosure ul {
  display: grid;
  gap: 7px;
  margin-top: 10px !important;
}

.saas-source-disclosure li {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
}

.saas-source-disclosure a {
  color: var(--flow-purple-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.saas-plans-section {
  background: #fff;
}

.saas-difference-section {
  background: var(--flow-purple-950);
  color: #fff;
}

.saas-difference-section .saas-kicker {
  color: var(--flow-yellow-500);
}

.saas-difference-section .saas-section-heading > p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

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

.saas-difference-card {
  min-height: 270px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
}

.saas-difference-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 15px;
  background: var(--flow-yellow-500);
  color: var(--flow-purple-950);
}

.saas-difference-card .saas-status-label {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.saas-difference-card h3 {
  margin-top: 14px;
  font-size: 23px;
  letter-spacing: -0.035em;
}

.saas-difference-card p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.75;
  word-break: keep-all;
}

.saas-feature-ui {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin-top: 20px;
}

.saas-feature-ui span {
  display: grid;
  gap: 3px;
  padding: 11px 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  text-align: center;
}

.saas-feature-ui b {
  color: var(--flow-yellow-500);
  font-size: 9px;
}

.saas-difference-card .saas-text-link {
  margin-top: 18px;
  color: #fff;
}

.saas-release-note {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 22px !important;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.saas-release-note .saas-icon {
  width: 18px;
  height: 18px;
  color: var(--flow-yellow-500);
}

.saas-general-section {
  background: var(--flow-gray-050);
}

.saas-general-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.saas-general-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 15px;
  min-height: 104px;
  padding: 20px;
  border: 1px solid var(--flow-gray-100);
  border-radius: 18px;
  background: #fff;
}

.saas-general-item > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 11px;
  background: var(--flow-purple-050);
  color: var(--flow-purple-700);
}

.saas-general-item > span .saas-icon {
  width: 19px;
  height: 19px;
}

.saas-general-item h3 {
  font-size: 17px;
  letter-spacing: -0.025em;
}

.saas-general-item p {
  margin-top: 3px;
  color: var(--flow-ink-700);
  font-size: 13px;
  line-height: 1.55;
  word-break: keep-all;
}

.saas-general-item small {
  color: #227048;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.saas-plan-fee-note {
  margin: 18px 0 16px !important;
  color: var(--flow-ink-700);
  font-size: 11px;
}

.saas-plan-details {
  margin-top: 24px;
  border: 1px solid var(--flow-gray-100);
  border-radius: 16px;
  background: var(--flow-gray-050);
}

.saas-plan-details > summary {
  padding: 16px 18px;
  color: var(--flow-purple-800);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.saas-plan-full-wrap {
  max-height: 440px;
  overflow: auto;
  border-top: 1px solid var(--flow-gray-100);
  background: #fff;
}

.saas-plan-full-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.saas-plan-full-wrap th,
.saas-plan-full-wrap td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--flow-gray-100);
  text-align: left;
}

.saas-plan-full-wrap thead th {
  position: sticky;
  z-index: 1;
  top: 0;
  background: var(--flow-purple-950);
  color: #fff;
}

.saas-plan-footnote a {
  margin-left: 8px;
  color: var(--flow-purple-700);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.saas-faq-cta-section {
  background: #fff;
}

.saas-compact-cta {
  margin-top: 64px;
  padding: 58px 30px;
  border-radius: 26px;
  background: var(--flow-purple-950);
  color: #fff;
  text-align: center;
}

.saas-compact-cta .saas-kicker {
  color: var(--flow-yellow-500);
}

.saas-compact-cta h2 {
  margin: 9px auto 24px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.05em;
}

.saas-compact-cta > div {
  display: flex;
  justify-content: center;
  gap: 10px;
}

@media (max-width: 820px) {
  .saas-comparison-section {
    padding-top: 116px;
  }

  .saas-compare-panel {
    padding: 24px;
  }

  .saas-compare-heading {
    display: grid;
    align-items: start;
    gap: 7px;
  }

  .saas-compare-heading > p {
    text-align: left;
  }

  .saas-difference-grid {
    grid-template-columns: 1fr;
  }

  .saas-difference-card {
    min-height: auto;
  }
}

@media (max-width: 600px) {
  .saas-comparison-intro {
    margin-bottom: 30px;
  }

  .saas-comparison-intro h1 {
    font-size: 42px;
  }

  .saas-comparison-intro > p:last-child {
    font-size: 15px;
  }

  .saas-comparison-actions {
    display: grid;
  }

  .saas-comparison-actions .saas-button {
    width: 100%;
  }

  .saas-compare-panel {
    margin-right: -2px;
    margin-left: -2px;
    padding: 20px 14px;
    border-radius: 20px;
  }

  .saas-table-hint {
    display: block;
  }

  .saas-compare-desktop {
    display: none;
  }

  .saas-compare-mobile {
    display: grid;
    gap: 14px;
  }

  .saas-service-compare-card {
    overflow: hidden;
    border: 1px solid var(--flow-gray-100);
    border-radius: 16px;
    background: #fff;
  }

  .saas-service-compare-card.is-flownco {
    border-color: var(--flow-purple-150);
    background: #f7f2fa;
  }

  .saas-service-compare-card header {
    display: grid;
    padding: 16px;
    border-bottom: 1px solid var(--flow-gray-100);
  }

  .saas-service-compare-card header span {
    color: var(--flow-purple-950);
    font-size: 17px;
    font-weight: 900;
  }

  .saas-service-compare-card header small {
    color: var(--flow-ink-700);
    font-size: 14px;
  }

  .saas-service-compare-card dl,
  .saas-service-compare-card dl > div {
    margin: 0;
  }

  .saas-service-compare-card dl > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--flow-gray-100);
  }

  .saas-service-compare-card dl > div:last-child {
    border-bottom: 0;
  }

  .saas-service-compare-card dt,
  .saas-service-compare-card dd {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
  }

  .saas-service-compare-card dt {
    color: var(--flow-ink-800);
    font-weight: 800;
  }

  .saas-service-compare-card dd {
    display: grid;
    justify-items: end;
    max-width: 150px;
    text-align: right;
  }

  .saas-service-compare-card dd small,
  .saas-status-label {
    font-size: 14px;
  }

  .saas-service-compare-card dd small {
    color: var(--flow-ink-700);
  }

  .saas-compare-info p {
    position: fixed;
    inset: auto 14px 20px;
    width: auto;
  }

  .saas-feature-ui {
    grid-template-columns: 1fr;
  }

  .saas-feature-ui span {
    font-size: 14px;
  }

  .saas-general-grid {
    grid-template-columns: 1fr;
  }

  .saas-general-item {
    grid-template-columns: auto 1fr;
  }

  .saas-general-item small {
    grid-column: 2;
  }

  .saas-release-note {
    align-items: flex-start;
  }

  .saas-plan-full-wrap table {
    min-width: 520px;
  }

  .saas-compact-cta {
    margin-top: 44px;
    padding: 46px 18px;
  }

  .saas-compact-cta > div {
    display: grid;
  }

  .saas-compact-cta .saas-button {
    width: 100%;
  }
}
