:root {
  --blue-tech: #0511f2;
  --blue-tech-subtone: #040dbf;
  --blue-serious: #020638;
  --blue-serious-subtone: #191f6b;
  --green-innovation: #aeff04;
  --green-innovation-subtone: #8bcc03;
  --white-calm: #f4f6f6;
  --white-calm-subtone: #dbdcdc;
  --white: #ffffff;
  --black: #000000;
  --ink: #0a103d;
  --muted: #586174;
  --line: rgba(2, 6, 56, 0.14);
  --surface: #ffffff;
  --surface-soft: #f9fbfb;
  --risk: #d94b4b;
  --warn: #e2a70e;
  --ok: #2f9c71;
  --container: 1180px;
  --header-height: 84px;
  --shadow: 0 22px 80px rgba(2, 6, 56, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white-calm);
  color: var(--blue-serious);
  font-family: Rubik, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

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

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 100;
  transform: translateY(-140%);
  border: 2px solid var(--green-innovation);
  border-radius: 999px;
  background: var(--blue-serious);
  color: var(--white);
  padding: 10px 16px;
  transition: transform 180ms ease;
}

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--green-innovation);
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 80;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  width: calc(100% - 32px);
  max-width: 1240px;
  min-height: 70px;
  padding: 10px 12px;
  transform: translateX(-50%);
  border: 1px solid rgba(244, 246, 246, 0.52);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 40px rgba(2, 6, 56, 0.12);
  backdrop-filter: blur(18px);
  transition: top 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  top: 8px;
  box-shadow: 0 14px 44px rgba(2, 6, 56, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 226px;
  min-width: 226px;
}

.brand-icon-wrap {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
}

.brand-icon {
  width: 43px;
  height: 43px;
  object-fit: contain;
  transform: rotate(var(--brand-spin, 0deg));
  transform-origin: 50% 50%;
  will-change: transform;
}

.brand-wordmark {
  display: grid;
  min-width: 0;
  color: var(--blue-tech);
  line-height: 1;
}

.brand-name {
  display: inline-flex;
  align-items: flex-start;
  color: var(--blue-tech);
  font-size: 31px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-registered {
  margin-left: 2px;
  color: inherit;
  font-size: 0.36em;
  font-weight: 800;
  line-height: 1;
  transform: translateY(3px);
}

.brand-tagline {
  margin-top: 2px;
  color: var(--blue-tech);
  font-size: 6.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
}

.desktop-nav a {
  border-radius: 999px;
  color: rgba(2, 6, 56, 0.78);
  font-size: 14px;
  font-weight: 600;
  padding: 11px 13px;
  transition: background 180ms ease, color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  background: var(--white-calm);
  color: var(--blue-tech);
}

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

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(244, 246, 246, 0.72);
  padding: 3px;
}

.language-switcher button {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(2, 6, 56, 0.72);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.language-switcher button:hover,
.language-switcher button:focus-visible {
  color: var(--blue-tech);
}

.language-switcher button.is-active {
  background: var(--blue-serious);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(2, 6, 56, 0.16);
}

.mobile-language-switcher {
  justify-content: center;
  width: 100%;
  margin-bottom: 6px;
  border-radius: 8px;
  background: var(--surface-soft);
}

.mobile-language-switcher button {
  flex: 1;
  min-width: 0;
}

.login-link,
.header-cta,
.mobile-primary,
.button,
.plan-action,
.fallback-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.login-link {
  padding: 0 17px;
  color: var(--blue-serious);
}

.login-link:hover,
.login-link:focus-visible {
  color: var(--blue-tech);
}

.header-cta,
.mobile-primary {
  padding: 0 20px;
  background: var(--blue-serious);
  color: var(--white);
}

.header-cta:hover,
.header-cta:focus-visible,
.mobile-primary:hover,
.mobile-primary:focus-visible {
  transform: translateY(-1px);
  background: var(--blue-tech);
}

.menu-toggle {
  position: relative;
  display: none;
  justify-self: end;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(2, 6, 56, 0.12);
  place-items: center;
}

.menu-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue-serious);
  transition: transform 180ms ease;
  transform: translate(-50%, -4px);
}

.menu-toggle span + span {
  margin-top: 0;
  transform: translate(-50%, 4px);
}

body.menu-open .menu-toggle span:first-child {
  transform: translate(-50%, 0) rotate(45deg);
}

body.menu-open .menu-toggle span:last-child {
  transform: translate(-50%, 0) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 86px 16px auto 16px;
  display: none;
  flex-direction: column;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 18px;
}

.mobile-menu a {
  border-radius: 8px;
  padding: 14px 12px;
  font-weight: 700;
}

.mobile-menu a:hover {
  background: var(--white-calm);
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: 720px;
  height: 88svh;
  max-height: 900px;
  overflow: hidden;
  background: var(--blue-serious);
  color: var(--white);
  padding: 132px 24px 76px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(244, 246, 246, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 246, 246, 0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.42;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: -1;
  height: 190px;
  background: linear-gradient(180deg, rgba(2, 6, 56, 0), rgba(2, 6, 56, 0.88));
}

.hero-content {
  position: relative;
  z-index: 3;
  min-width: 0;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px 0;
  pointer-events: none;
}

.hero-actions,
.hero-actions *,
.hero-facts,
.hero-facts * {
  pointer-events: auto;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue-tech);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--green-innovation);
}

.hero h1,
.section-heading h2,
.product-copy h2,
.contact-intro h2,
.final-cta h2 {
  margin: 0;
  color: inherit;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  width: 100%;
  max-width: 620px;
  font-size: 62px;
}

.hero-subtitle {
  width: 100%;
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
}

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

.button {
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
}

.button svg {
  width: 19px;
  height: 19px;
}

.button-primary {
  background: var(--green-innovation);
  color: var(--blue-serious);
}

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

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  transform: translateY(-2px);
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: 100%;
  max-width: 620px;
  margin: 46px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.hero-facts div {
  min-width: 0;
  background: rgba(255, 255, 255, 0.06);
  padding: 18px;
}

.hero-facts dt {
  color: var(--green-innovation);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.hero-facts dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.hero-dashboard {
  position: absolute;
  right: max(-30px, calc((100vw - var(--container)) / 2 - 160px));
  bottom: 64px;
  z-index: 4;
  width: 680px;
  opacity: 0.94;
  pointer-events: auto;
}

.product-shell {
  border: 1px solid rgba(2, 6, 56, 0.12);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-shell {
  background: rgba(255, 255, 255, 0.96);
  color: var(--blue-serious);
  transform: rotate(-2deg);
}

.product-topbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 16px;
}

.dashboard-insight {
  min-width: 0;
  border: 1px solid rgba(5, 17, 242, 0.14);
  border-radius: 8px;
  background: rgba(244, 246, 246, 0.78);
  padding: 10px 12px;
}

.dashboard-insight span,
.dashboard-insight strong,
.dashboard-insight small {
  display: block;
}

.dashboard-insight span {
  color: var(--blue-tech);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-insight strong {
  margin-top: 4px;
  color: var(--blue-serious);
  font-size: 13px;
  line-height: 1.1;
}

.dashboard-insight small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.hero-insight {
  flex: 0 1 255px;
  width: 255px;
  margin-left: auto;
}

.panel-insight {
  margin-top: 12px;
  background: linear-gradient(135deg, rgba(5, 17, 242, 0.08), rgba(174, 255, 4, 0.18));
}

.product-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--white-calm);
}

.product-mark img {
  width: 24px;
  height: 24px;
}

.product-topbar strong,
.product-topbar span {
  display: block;
}

.product-topbar strong {
  font-size: 15px;
}

.product-topbar span {
  color: var(--muted);
  font-size: 12px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
}

.metric-card,
.metric-row .dashboard-data-card,
.matching-board article,
.usage-grid article,
.benefit-card,
.capability-grid article,
.steps article,
.plan-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.metric-card {
  min-height: 126px;
  padding: 16px;
}

.dashboard-data-card {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  text-align: left;
  color: inherit;
  appearance: none;
  cursor: pointer;
  outline: 0;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.dashboard-data-card:hover,
.dashboard-data-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(5, 17, 242, 0.38);
  box-shadow: 0 16px 42px rgba(2, 6, 56, 0.16);
}

.dashboard-data-card.is-selected {
  border-color: var(--blue-tech);
  box-shadow:
    inset 0 0 0 1px var(--blue-tech),
    0 16px 42px rgba(5, 17, 242, 0.14);
}

.dashboard-data-card.is-selected::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green-innovation);
  box-shadow: 0 0 0 5px rgba(174, 255, 4, 0.18);
}

.dashboard-data-card[data-hover]::before,
.data-hover[data-hover]::before {
  content: attr(data-hover);
  position: absolute;
  z-index: 8;
  max-width: min(230px, calc(100vw - 48px));
  border: 1px solid rgba(244, 246, 246, 0.16);
  border-radius: 8px;
  background: var(--blue-serious);
  color: var(--white);
  box-shadow: 0 16px 42px rgba(2, 6, 56, 0.22);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  opacity: 0;
  padding: 8px 10px;
  pointer-events: none;
  transform: translateY(6px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
  white-space: normal;
}

.dashboard-data-card[data-hover]::before {
  right: 12px;
  bottom: 12px;
}

.data-hover[data-hover] {
  position: relative;
}

.data-hover[data-hover]::before {
  right: 10px;
  bottom: calc(100% + 8px);
}

.dashboard-data-card[data-hover]:hover::before,
.dashboard-data-card[data-hover]:focus-visible::before,
.data-hover[data-hover]:hover::before,
.data-hover[data-hover]:focus-within::before {
  opacity: 1;
  transform: translateY(0);
}

.metric-card span,
.metric-row .dashboard-data-card span,
.matching-board span,
.usage-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.metric-card strong,
.metric-row .dashboard-data-card strong,
.matching-board strong,
.usage-grid strong {
  display: block;
  margin-top: 10px;
  color: var(--blue-serious);
  font-size: 22px;
  line-height: 1;
}

.metric-card small,
.metric-row .dashboard-data-card small,
.matching-board small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

.metric-primary {
  background: var(--blue-tech);
}

.metric-primary:hover,
.metric-primary:focus-visible {
  border-color: var(--green-innovation);
  box-shadow: 0 18px 48px rgba(5, 17, 242, 0.34);
}

.metric-primary.is-selected {
  border-color: var(--green-innovation);
  box-shadow:
    inset 0 0 0 1px var(--green-innovation),
    0 18px 48px rgba(5, 17, 242, 0.34);
}

.metric-primary span,
.metric-primary strong,
.metric-primary small {
  color: var(--white);
}

.chart-panel {
  grid-column: span 2;
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  padding: 16px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.chart-panel:hover {
  border-color: rgba(5, 17, 242, 0.28);
  box-shadow: 0 14px 34px rgba(2, 6, 56, 0.12);
  transform: translateY(-2px);
}

.chart-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.line-growth-chart {
  position: relative;
  min-height: 142px;
  margin-top: 18px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  overflow: visible;
}

.line-growth-chart svg {
  display: block;
  width: 100%;
  min-height: 136px;
  overflow: visible;
}

.line-grid path {
  fill: none;
  stroke: rgba(2, 6, 56, 0.12);
  stroke-width: 1;
}

.line-axis text {
  fill: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.area-line {
  pointer-events: none;
}

.green-fill {
  fill: url(#lineGreenFill);
}

.blue-fill {
  fill: url(#lineBlueFill);
}

.red-fill {
  fill: url(#lineRedFill);
}

.yellow-fill {
  fill: url(#lineYellowFill);
}

.series-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.2;
  filter: drop-shadow(0 8px 10px rgba(2, 6, 56, 0.1));
}

.green-line {
  stroke: #21a24a;
}

.blue-line {
  stroke: #0877f2;
}

.red-line {
  stroke: #ef364d;
}

.yellow-line {
  stroke: #f4b400;
}

.series-points circle {
  stroke: var(--white);
  stroke-width: 1.4;
}

.green-dot {
  fill: #21a24a;
  background: #21a24a;
}

.blue-dot {
  fill: #0877f2;
  background: #0877f2;
}

.red-dot {
  fill: #ef364d;
  background: #ef364d;
}

.yellow-dot {
  fill: #f4b400;
  background: #f4b400;
}

.line-hotspot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 16px;
  height: 16px;
  border-radius: 999px;
  cursor: crosshair;
  transform: translate(-50%, -50%);
}

.line-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.line-legend span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.line-legend i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.activity-panel {
  display: grid;
  gap: 10px;
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.activity-panel:hover {
  border-color: rgba(5, 17, 242, 0.24);
  box-shadow: 0 14px 34px rgba(2, 6, 56, 0.1);
  transform: translateY(-2px);
}

.activity-panel div,
.suggestion-list div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 10px;
  border-radius: 8px;
  background: var(--white);
  padding: 10px;
  transition:
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.activity-panel .data-hover:hover,
.suggestion-list .data-hover:hover {
  background: var(--white-calm);
  box-shadow: 0 10px 26px rgba(2, 6, 56, 0.1);
  transform: translateY(-1px);
}

.activity-panel p,
.suggestion-list p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.activity-panel strong,
.suggestion-list strong {
  grid-column: 2;
  color: var(--blue-serious);
  font-size: 13px;
}

.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.status-dot.ok {
  background: var(--ok);
}

.status-dot.warn {
  background: var(--warn);
}

.status-dot.risk {
  background: var(--risk);
}

.signal-strip {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.signal-track {
  display: flex;
  width: max-content;
  padding: 14px 0;
  animation: marquee 32s linear infinite;
  will-change: transform;
}

.signal-group {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
  padding-right: 10px;
}

.signal-group span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--blue-serious);
  font-size: 13px;
  font-weight: 700;
  background: var(--white-calm);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% / var(--signal-groups, 4)));
  }
}

.section {
  width: calc(100% - 48px);
  max-width: var(--container);
  margin: 0 auto;
  padding: 96px 0;
}

.section-heading {
  width: 100%;
  max-width: 720px;
  margin-bottom: 40px;
}

.section-heading h2,
.product-copy h2,
.contact-intro h2,
.final-cta h2 {
  color: var(--blue-serious);
  font-size: 42px;
}

.section-heading p:not(.eyebrow),
.product-copy p:not(.eyebrow),
.contact-intro p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.benefit-grid,
.capability-grid,
.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.benefit-card,
.capability-grid article {
  min-height: 250px;
  padding: 22px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.benefit-card:hover,
.capability-grid article:hover,
.plan-card:hover {
  transform: translateY(-4px);
  border-color: rgba(5, 17, 242, 0.32);
  box-shadow: 0 18px 52px rgba(2, 6, 56, 0.1);
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--blue-serious);
  color: var(--green-innovation);
  transform-origin: 50% 60%;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 220ms ease;
}

.icon-badge svg {
  width: 24px;
  height: 24px;
  transition: transform 220ms ease;
}

.benefit-card:hover .icon-badge {
  background: var(--blue-tech);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(5, 17, 242, 0.24);
  transform: translateY(-7px) rotate(-6deg) scale(1.08);
}

.benefit-card:hover .icon-badge svg {
  animation: benefitIconMotion 760ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.benefit-card:nth-child(2):hover .icon-badge {
  transform: translateY(-7px) rotate(6deg) scale(1.08);
}

.benefit-card:nth-child(3):hover .icon-badge {
  transform: translateY(-8px) rotate(0deg) scale(1.1);
}

.benefit-card:nth-child(4):hover .icon-badge {
  transform: translateY(-6px) rotate(8deg) scale(1.06);
}

@keyframes benefitIconMotion {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  38% {
    transform: translateY(-3px) rotate(-8deg);
  }
  72% {
    transform: translateY(1px) rotate(6deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

.benefit-card h3,
.capability-grid h3,
.steps h3,
.plan-card h3,
.panel-heading h3 {
  margin: 22px 0 0;
  color: var(--blue-serious);
  font-size: 21px;
  line-height: 1.2;
}

.benefit-card p,
.capability-grid p,
.steps p {
  margin: 14px 0 0;
  color: var(--muted);
}

.product {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.48fr);
  align-items: start;
  gap: 42px;
}

.product-copy {
  position: sticky;
  top: 110px;
}

.product-demo {
  min-width: 0;
}

.demo-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.demo-tabs button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--blue-serious);
  font-size: 14px;
  font-weight: 800;
  padding: 0 16px;
}

.demo-tabs button[aria-selected="true"] {
  border-color: var(--blue-serious);
  background: var(--blue-serious);
  color: var(--white);
}

.demo-panel {
  display: none;
}

.demo-panel.is-active {
  display: block;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 156px 1fr;
  min-height: 520px;
}

.demo-sidebar {
  border-right: 1px solid var(--line);
  background: var(--surface-soft);
  padding: 16px;
}

.side-pill {
  display: block;
  width: 100%;
  min-width: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  padding: 12px;
  text-align: left;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.side-pill:hover,
.side-pill:focus-visible {
  background: rgba(5, 17, 242, 0.08);
  color: var(--blue-tech);
  transform: translateX(3px);
  outline: 0;
}

.side-pill.active {
  background: var(--blue-tech);
  color: var(--white);
}

.demo-main {
  min-width: 0;
  padding: 16px;
}

.side-screen {
  display: none;
}

.side-screen.is-active {
  display: block;
  animation: screenIn 220ms ease both;
}

@keyframes screenIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.screen-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.screen-heading span {
  color: var(--blue-tech);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.screen-heading strong {
  color: var(--blue-serious);
  font-size: 18px;
  line-height: 1.1;
  text-align: right;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.metric-row .dashboard-data-card {
  padding: 16px;
}

.wide-chart {
  position: relative;
  min-height: 188px;
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(rgba(2, 6, 56, 0.06) 1px, transparent 1px),
    var(--surface-soft);
  background-size: 100% 42px;
  overflow: hidden;
}

.chart-point {
  position: absolute;
  display: block;
  left: var(--x);
  top: var(--y);
  z-index: 3;
  width: 13px;
  height: 13px;
  border: 2px solid var(--white);
  border-radius: 999px;
  background: var(--blue-tech);
  box-shadow:
    0 0 0 4px rgba(5, 17, 242, 0.12),
    0 8px 20px rgba(2, 6, 56, 0.2);
  transform: translate(-50%, -50%);
  transition:
    box-shadow 160ms ease,
    transform 160ms ease;
}

.chart-point:hover {
  box-shadow:
    0 0 0 7px rgba(174, 255, 4, 0.24),
    0 12px 28px rgba(2, 6, 56, 0.24);
  transform: translate(-50%, -50%) scale(1.18);
}

.line {
  position: absolute;
  left: 28px;
  right: 28px;
  height: 4px;
  border-radius: 999px;
  transform-origin: left;
}

.line-a {
  top: 82px;
  background: var(--blue-tech);
  transform: skewY(-8deg);
}

.line-b {
  top: 124px;
  background: var(--green-innovation-subtone);
  transform: skewY(7deg);
}

.axis {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 16px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.demo-table {
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.demo-table div {
  display: grid;
  grid-template-columns: 1fr 120px 130px;
  gap: 12px;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid var(--line);
  padding: 10px 14px;
  transition:
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.demo-table div:last-child {
  border-bottom: 0;
}

.demo-table div:first-child {
  background: var(--surface-soft);
}

.demo-table .data-hover:hover {
  position: relative;
  z-index: 2;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(2, 6, 56, 0.11);
  transform: translateX(3px);
}

.activity-panel .data-hover::before,
.suggestion-list .data-hover::before,
.demo-table .data-hover::before {
  right: 12px;
  bottom: 8px;
}

.demo-table span,
.demo-table strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.invoice-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.invoice-board article,
.mini-screen-card,
.receipt-timeline article,
.projection-notes article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.invoice-board article {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 154px;
  padding: 16px;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.invoice-board article:hover {
  border-color: rgba(5, 17, 242, 0.3);
  box-shadow: 0 14px 34px rgba(2, 6, 56, 0.11);
  transform: translateY(-2px);
}

.invoice-board span,
.mini-screen-card span,
.projection-notes span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.invoice-board strong,
.mini-screen-card strong,
.projection-notes strong {
  color: var(--blue-serious);
  font-size: 22px;
  line-height: 1;
}

.invoice-board small,
.mini-screen-card small,
.projection-notes small {
  color: var(--muted);
  font-size: 12px;
}

.invoice-board .tag {
  justify-self: start;
  min-width: 86px;
}

.mini-screen-card {
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 16px;
  align-items: center;
  margin-top: 12px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(5, 17, 242, 0.07), rgba(174, 255, 4, 0.16));
}

.mini-screen-card div,
.mini-screen-card span,
.mini-screen-card strong,
.mini-screen-card small {
  min-width: 0;
}

.mini-stack {
  display: grid;
  gap: 8px;
}

.mini-stack span {
  display: block;
  width: var(--w);
  height: 10px;
  border-radius: 999px;
  background: var(--blue-tech);
}

.mini-stack span:nth-child(2) {
  background: var(--green-innovation-subtone);
}

.mini-stack span:nth-child(3) {
  background: var(--warn);
}

.receipt-timeline {
  display: grid;
  gap: 10px;
}

.receipt-timeline article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  min-height: 70px;
  padding: 14px;
  transition:
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.receipt-timeline article:hover {
  background: var(--white-calm);
  box-shadow: 0 10px 26px rgba(2, 6, 56, 0.1);
  transform: translateX(3px);
}

.receipt-timeline strong,
.receipt-timeline small {
  display: block;
}

.receipt-timeline strong {
  color: var(--blue-serious);
  font-size: 15px;
}

.receipt-timeline small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.receipt-summary {
  display: block;
}

.receipt-summary strong {
  display: block;
  margin-top: 10px;
  color: var(--blue-tech);
  font-size: 46px;
}

.receipt-summary small {
  display: block;
  margin-top: 8px;
}

.projection-screen {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  gap: 12px;
}

.projection-bars {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 18px;
  min-width: 0;
  height: 310px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(rgba(2, 6, 56, 0.06) 1px, transparent 1px),
    var(--surface-soft);
  background-size: 100% 58px;
  padding: 22px;
}

.projection-bars span {
  position: relative;
  display: block;
  flex: 1 1 0;
  min-width: 0;
  height: min(var(--h), 100%);
  max-height: 100%;
  border-radius: 8px 8px 0 0;
  background: var(--blue-tech);
  transform-origin: bottom;
  transition:
    filter 160ms ease,
    transform 160ms ease;
}

.projection-bars span:nth-child(2n) {
  background: var(--green-innovation-subtone);
}

.projection-bars span:hover {
  filter: brightness(1.08);
  transform: scaleY(1.05);
}

.projection-notes {
  display: grid;
  gap: 12px;
}

.projection-notes article {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 16px;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  border-radius: 999px;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.tag.ok {
  background: rgba(47, 156, 113, 0.12);
  color: var(--ok);
}

.tag.warn {
  background: rgba(226, 167, 14, 0.16);
  color: #8a6100;
}

.tag.risk {
  background: rgba(217, 75, 75, 0.12);
  color: var(--risk);
}

.matching-board {
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  align-items: center;
  gap: 16px;
  padding: 20px;
}

.matching-board article {
  min-height: 168px;
  padding: 20px;
}

.match-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.match-flow span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green-innovation);
  animation: pulse 1.5s ease-in-out infinite;
}

.match-flow span:nth-child(2) {
  animation-delay: 150ms;
}

.match-flow span:nth-child(3) {
  animation-delay: 300ms;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.72);
    opacity: 0.42;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}

.suggestion-list {
  display: grid;
  gap: 10px;
  padding: 0 20px 20px;
}

.suggestion-list div {
  grid-template-columns: auto 1fr auto;
  border: 1px solid var(--line);
}

.suggestion-list strong {
  grid-column: auto;
}

.usage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 20px;
}

.usage-grid article {
  padding: 18px;
}

.usage-bar {
  height: 10px;
  margin-top: 18px;
  border-radius: 999px;
  background: var(--white-calm-subtone);
  overflow: hidden;
}

.usage-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--blue-tech);
}

.usage-bar.warn i {
  background: var(--warn);
}

.workflow {
  position: relative;
}

.flow-line {
  position: absolute;
  top: 244px;
  left: calc((100% - min(100%, var(--container))) / 2 + 28px);
  right: calc((100% - min(100%, var(--container))) / 2 + 28px);
  height: 2px;
  background: var(--line);
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.steps article {
  position: relative;
  min-height: 270px;
  padding: 24px;
  overflow: hidden;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.steps article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--green-innovation);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 220ms ease;
}

.steps article:hover {
  transform: translateY(-5px);
  border-color: rgba(5, 17, 242, 0.34);
  background: linear-gradient(135deg, var(--white), rgba(174, 255, 4, 0.1));
  box-shadow: 0 20px 54px rgba(2, 6, 56, 0.12);
}

.steps article:hover::before {
  transform: scaleY(1);
}

.steps span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--blue-serious);
  color: var(--green-innovation);
  font-weight: 800;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 220ms ease;
}

.steps article:hover span {
  background: var(--blue-tech);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(5, 17, 242, 0.24);
  transform: translateY(-4px) scale(1.06);
}

.steps article h3,
.steps article p {
  transition: color 180ms ease;
}

.steps article:hover h3 {
  color: var(--blue-tech);
}

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

.plans {
  width: 100%;
  max-width: none;
  background: var(--blue-serious);
  color: var(--white);
  padding: 96px max(24px, calc((100vw - var(--container)) / 2));
}

.plans .section-heading h2,
.plans .section-heading p:not(.eyebrow) {
  color: var(--white);
}

.plans .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.billing-toggle {
  display: inline-flex;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 5px;
  margin-bottom: 18px;
}

.billing-toggle button {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  padding: 0 16px;
}

.billing-toggle button.is-active {
  background: var(--green-innovation);
  color: var(--blue-serious);
}

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

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 630px;
  padding: 24px;
  color: var(--blue-serious);
  overflow: hidden;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.plan-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--green-innovation);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.plan-card:hover,
.plan-card:focus-within {
  transform: translateY(-7px);
  border-color: var(--green-innovation);
  background: linear-gradient(180deg, var(--white), rgba(244, 246, 246, 0.96));
  box-shadow: 0 30px 90px rgba(174, 255, 4, 0.18), 0 18px 56px rgba(2, 6, 56, 0.18);
}

.plan-card:hover::before,
.plan-card:focus-within::before {
  transform: scaleX(1);
}

.plan-card.is-featured {
  border-color: var(--green-innovation);
  box-shadow: 0 24px 80px rgba(174, 255, 4, 0.16);
}

.plan-card.is-featured:hover,
.plan-card.is-featured:focus-within {
  box-shadow: 0 34px 100px rgba(174, 255, 4, 0.24), 0 18px 56px rgba(2, 6, 56, 0.2);
}

.plan-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  border-radius: 999px;
  background: var(--green-innovation);
  color: var(--blue-serious);
  font-size: 12px;
  font-weight: 800;
  padding: 8px 10px;
}

.plan-toggle span,
.panel-heading span {
  color: var(--blue-tech);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.plan-toggle {
  position: relative;
  display: grid;
  gap: 0;
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  text-align: left;
}

.plan-toggle:disabled {
  cursor: default;
  opacity: 1;
}

.plan-toggle:focus-visible {
  outline: 3px solid rgba(5, 17, 242, 0.18);
  outline-offset: 6px;
}

.plan-toggle h3 {
  margin: 22px 0 0;
  padding-right: 80px;
  color: var(--blue-serious);
  font-size: 19px;
  line-height: 1.2;
}

.plan-toggle span,
.plan-toggle h3 {
  min-width: 0;
}

.plan-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.price {
  margin: 28px 0 0;
}

.price span {
  color: var(--blue-serious);
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  transition: color 180ms ease;
}

.plan-card:hover .price span,
.plan-card:focus-within .price span {
  color: var(--blue-tech);
}

.price small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.plan-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  min-height: 24px;
  padding-left: 28px;
  color: var(--muted);
}

.plan-card li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-innovation-subtone);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.plan-card:hover li::before,
.plan-card:focus-within li::before {
  background: var(--green-innovation);
  box-shadow: 0 0 0 5px rgba(174, 255, 4, 0.16);
  transform: scale(1.08);
}

.plan-action {
  width: 100%;
  margin-top: auto;
  border: 1px solid var(--blue-serious);
  color: var(--blue-serious);
}

.plan-action:hover,
.plan-action:focus-visible {
  background: var(--blue-serious);
  color: var(--white);
}

.excess-note {
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.76);
  padding: 18px 20px;
}

.excess-note strong {
  color: var(--green-innovation);
}

.contact {
  width: calc(100% - 48px);
  max-width: var(--container);
}

.contact-intro {
  width: 100%;
  max-width: 760px;
  margin-bottom: 36px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 18px;
}

.schedule-panel,
.form-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 20px;
}

.panel-heading h3 {
  margin-top: 8px;
}

.schedule-panel iframe {
  display: block;
  width: 100%;
  min-height: 620px;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white-calm);
}

.fallback-link {
  width: 100%;
  margin-top: 12px;
  border: 1px solid var(--line);
  color: var(--blue-tech);
}

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

.form-honey {
  display: none;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--blue-serious);
  font-size: 13px;
  font-weight: 800;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--blue-serious);
  font-weight: 400;
  outline: 0;
  padding: 13px 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue-tech);
  box-shadow: 0 0 0 4px rgba(5, 17, 242, 0.1);
}

.captcha-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(5, 17, 242, 0.16);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(5, 17, 242, 0.06), rgba(174, 255, 4, 0.1));
  padding: 12px;
}

.captcha-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.captcha-copy span {
  color: var(--blue-tech);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.captcha-copy strong {
  color: var(--blue-serious);
  font-size: 14px;
  line-height: 1.2;
}

.captcha-secure {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(5, 17, 242, 0.16);
  border-radius: 999px;
  background: var(--white);
  color: var(--blue-tech);
}

.captcha-secure svg {
  width: 19px;
  height: 19px;
}

.contact-form .button-primary {
  width: 100%;
  border: 0;
  min-height: 58px;
  padding: 0 28px;
  font-size: 15px;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--blue-serious) 0%, var(--blue-serious-subtone) 100%);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(2, 6, 56, 0.28), 0 4px 12px rgba(2, 6, 56, 0.12);
}

.contact-form .button-primary svg {
  transition: transform 220ms ease;
}

.contact-form .button-primary:hover,
.contact-form .button-primary:focus-visible {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--blue-serious-subtone) 0%, var(--blue-tech) 100%);
  box-shadow: 0 18px 36px rgba(2, 6, 56, 0.36), 0 6px 16px rgba(5, 17, 242, 0.2);
}

.contact-form .button-primary:hover svg,
.contact-form .button-primary:focus-visible svg {
  transform: translate(3px, -2px);
}

.contact-form .button-primary:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(2, 6, 56, 0.28), 0 2px 6px rgba(2, 6, 56, 0.12);
}

.contact-form .button-primary:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.faq {
  padding-top: 40px;
}

.faq-list {
  display: grid;
  gap: 10px;
  width: 100%;
  max-width: 840px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 0 18px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--blue-serious);
  font-weight: 800;
  padding: 18px 0;
}

.faq-list p {
  margin: 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 16px 0 18px;
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  width: calc(100% - 48px);
  max-width: var(--container);
  margin: 0 auto 48px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 42px;
}

.final-cta .button-primary:hover {
  background: var(--blue-serious);
  color: var(--white);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  width: calc(100% - 48px);
  max-width: var(--container);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 36px 0 50px;
}

.footer-logo-mark {
  position: relative;
  display: inline-block;
}

.site-footer img {
  width: 170px;
}

.footer-logo-mark .brand-registered {
  position: absolute;
  top: 2px;
  right: -11px;
  color: var(--blue-tech);
  font-size: 10px;
  transform: none;
}

.site-footer p {
  width: min(460px, 100%);
  margin: 12px 0 0;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.site-footer a {
  color: var(--muted);
  font-weight: 700;
}

.site-footer a:hover {
  color: var(--blue-tech);
}

.site-footer .social-link {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.site-footer .social-link svg {
  width: 18px;
  height: 18px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.34);
  transition: transform 180ms ease;
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px) scale(1.03);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: grid;
    grid-column: 3;
  }

  body.menu-open .mobile-menu {
    display: flex;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-dashboard {
    right: -260px;
    width: 650px;
    opacity: 0.62;
  }

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

  .product,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .product-copy {
    position: static;
  }

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

  .flow-line {
    display: none;
  }
}

@media (min-width: 761px) and (max-width: 1366px), (min-width: 761px) and (max-width: 1536px) and (max-height: 760px) {
  :root {
    --container: 1040px;
    --header-height: 72px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    top: 10px;
    gap: 14px;
    width: calc(100% - 28px);
    max-width: calc(100% - 40px);
    min-height: 62px;
    padding: 8px 10px;
  }

  .site-header.is-scrolled {
    top: 6px;
  }

  .brand {
    gap: 7px;
    width: 204px;
    min-width: 204px;
  }

  .brand-icon-wrap,
  .brand-icon {
    width: 38px;
    height: 38px;
  }

  .brand-icon-wrap {
    flex-basis: 38px;
  }

  .brand-name {
    font-size: 27px;
  }

  .brand-tagline {
    font-size: 5.7px;
    letter-spacing: 0.08em;
  }

  .desktop-nav a {
    font-size: 13px;
    padding: 9px 9px;
  }

  .language-switcher button {
    min-width: 31px;
    height: 29px;
    font-size: 11px;
  }

  .header-cta {
    padding: 0 16px;
  }

  .login-link,
  .header-cta,
  .mobile-primary,
  .button,
  .plan-action,
  .fallback-link {
    min-height: 42px;
    font-size: 13px;
  }

  .hero {
    min-height: 620px;
    height: 82svh;
    max-height: 700px;
    padding: 110px 22px 44px;
  }

  .hero-content {
    margin-top: 10px !important;
    padding: 8px 0 0;
  }

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

  .hero h1 {
    max-width: 530px;
    font-size: 46px;
    line-height: 1.04;
  }

  .hero-subtitle {
    max-width: 520px;
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.5;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 24px;
  }

  .button {
    min-height: 48px;
    padding: 0 21px;
  }

  .hero-facts {
    max-width: 530px;
    margin-top: 30px;
  }

  .hero-facts div {
    padding: 14px;
  }

  .hero-facts dt {
    font-size: 24px;
  }

  .hero-facts dd {
    margin-top: 6px;
    font-size: 12px;
  }

  .hero-dashboard {
    right: max(-72px, calc((100vw - var(--container)) / 2 - 180px));
    bottom: 38px;
    width: 560px;
    opacity: 0.9;
  }

  .product-topbar {
    gap: 10px;
    padding: 13px;
  }

  .product-mark {
    width: 34px;
    height: 34px;
  }

  .product-mark img {
    width: 21px;
    height: 21px;
  }

  .product-topbar strong {
    font-size: 14px;
  }

  .product-topbar span {
    font-size: 11px;
  }

  .dashboard-insight {
    padding: 8px 10px;
  }

  .dashboard-insight strong {
    font-size: 12px;
  }

  .dashboard-insight small {
    font-size: 10px;
  }

  .hero-insight {
    flex-basis: 220px;
    width: 220px;
  }

  .hero-grid {
    gap: 10px;
    padding: 13px;
  }

  .metric-card {
    min-height: 104px;
    padding: 13px;
  }

  .metric-card span,
  .metric-row .dashboard-data-card span,
  .matching-board span,
  .usage-grid span {
    font-size: 11px;
  }

  .metric-card strong,
  .metric-row .dashboard-data-card strong,
  .matching-board strong,
  .usage-grid strong {
    font-size: 20px;
  }

  .metric-card small,
  .metric-row .dashboard-data-card small,
  .matching-board small {
    font-size: 11px;
  }

  .chart-panel {
    min-height: 172px;
    padding: 13px;
  }

  .chart-head {
    font-size: 11px;
  }

  .line-growth-chart {
    min-height: 112px;
    margin-top: 10px;
  }

  .line-growth-chart svg {
    min-height: 108px;
  }

  .activity-panel {
    gap: 8px;
    min-height: 172px;
    padding: 12px;
  }

  .activity-panel div,
  .suggestion-list div {
    padding: 8px;
  }

  .activity-panel p,
  .suggestion-list p {
    font-size: 11px;
  }

  .activity-panel strong,
  .suggestion-list strong {
    font-size: 12px;
  }

  .signal-track {
    padding: 10px 0;
  }

  .signal-group span {
    min-height: 32px;
    padding: 0 14px;
    font-size: 12px;
  }

  .section {
    width: calc(100% - 40px);
    padding: 76px 0;
  }

  .section-heading {
    max-width: 640px;
    margin-bottom: 30px;
  }

  .section-heading h2,
  .product-copy h2,
  .contact-intro h2,
  .final-cta h2 {
    font-size: 36px;
    line-height: 1.06;
  }

  .section-heading p:not(.eyebrow),
  .product-copy p:not(.eyebrow),
  .contact-intro p:not(.eyebrow) {
    margin-top: 14px;
    font-size: 16px;
  }

  .benefit-grid,
  .capability-grid,
  .plan-grid {
    gap: 12px;
  }

  .benefit-card,
  .capability-grid article {
    min-height: 220px;
    padding: 18px;
  }

  .benefit-card h3,
  .capability-grid h3,
  .steps h3,
  .plan-card h3,
  .panel-heading h3 {
    margin-top: 18px;
    font-size: 19px;
  }

  .product {
    gap: 30px;
  }

  .product-copy {
    top: 92px;
  }

  .dashboard-layout {
    min-height: 470px;
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .hero-dashboard {
    right: -240px;
    width: 560px;
    opacity: 0.58;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  .site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    left: 10px;
    right: 10px;
    width: auto;
    max-width: none;
    transform: none;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 64px;
    padding: 8px 10px;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    grid-column: auto;
    flex: 0 0 48px;
    margin-left: auto;
  }

  .brand {
    gap: 7px;
    width: 214px;
    min-width: 214px;
  }

  .brand-icon-wrap,
  .brand-icon {
    width: 38px;
    height: 38px;
  }

  .brand-icon-wrap {
    flex-basis: 38px;
  }

  .brand-name {
    font-size: 29px;
  }

  .brand-tagline {
    font-size: 6px;
  }

  .site-header .menu-toggle {
    position: fixed;
    top: 22px;
    right: 20px;
    z-index: 100;
  }

  .mobile-menu {
    inset: 78px 10px auto 10px;
  }

  .hero {
    min-height: auto;
    height: auto;
    max-height: none;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 116px 20px 122px;
  }

  .hero-dashboard {
    position: relative;
    right: auto;
    bottom: auto;
    order: 2;
    width: 100%;
    max-width: 350px;
    margin: 40px 0 34px;
    opacity: 1;
  }

  .hero-shell {
    transform: none;
  }

  .hero-content {
    order: 1;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
  }

  .hero h1 {
    max-width: 350px;
    font-size: 29px;
  }

  .hero-subtitle {
    max-width: 350px;
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
    max-width: 350px;
  }

  .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    max-width: 350px;
  }

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

  .hero-grid > .metric-primary {
    order: 1;
  }

  .hero-grid > .chart-panel {
    order: 2;
  }

  .hero-grid > .metric-card:not(.metric-primary) {
    order: 3;
    display: none;
  }

  .hero-grid > .activity-panel {
    order: 4;
    display: none;
  }

  .hero-insight,
  .panel-insight {
    flex-basis: 100%;
    width: 100%;
    margin-left: 0;
  }

  .chart-panel {
    grid-column: auto;
    min-height: auto;
    padding: 12px;
  }

  .chart-head {
    font-size: 11px;
  }

  .line-growth-chart {
    min-height: 102px;
    margin-top: 8px;
    border-bottom: 0;
  }

  .line-growth-chart svg {
    min-height: 0;
    height: auto;
  }

  .line-legend {
    display: none;
  }

  .section {
    width: calc(100% - 32px);
    max-width: var(--container);
    padding: 72px 0;
  }

  .section-heading h2,
  .product-copy h2,
  .contact-intro h2,
  .final-cta h2 {
    font-size: 31px;
  }

  .section-heading p:not(.eyebrow),
  .product-copy p:not(.eyebrow),
  .contact-intro p:not(.eyebrow) {
    font-size: 16px;
  }

  .benefit-grid,
  .capability-grid,
  .steps,
  .plan-grid,
  .metric-row,
  .usage-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card,
  .capability-grid article,
  .steps article {
    min-height: auto;
  }

  .dashboard-layout {
    grid-template-columns: 1fr;
  }

  .demo-sidebar {
    display: flex;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .side-pill {
    white-space: nowrap;
    width: auto;
  }

  .screen-heading {
    display: grid;
    align-items: start;
  }

  .screen-heading strong {
    text-align: left;
  }

  .invoice-board,
  .projection-screen {
    grid-template-columns: 1fr;
  }

  .mini-screen-card {
    grid-template-columns: 1fr;
  }

  .projection-bars {
    height: 240px;
    gap: 12px;
    padding: 18px;
  }

  .demo-table div {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .matching-board {
    grid-template-columns: 1fr;
  }

  .match-flow {
    min-height: 44px;
    transform: rotate(90deg);
  }

  .plans {
    padding: 72px 16px;
  }

  .plan-card {
    min-height: auto;
    padding: 20px;
  }

  .plan-card:not(.is-open) {
    box-shadow: 0 12px 32px rgba(2, 6, 56, 0.12);
  }

  .plan-card:not(.is-open):hover,
  .plan-card:not(.is-open):focus-within {
    transform: translateY(-3px);
  }

  .plan-toggle {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 12px;
    cursor: pointer;
    overflow: hidden;
  }

  .plan-toggle::after {
    content: "";
    grid-row: 1 / span 2;
    grid-column: 2;
    width: 10px;
    height: 10px;
    margin-top: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 180ms ease;
  }

  .plan-card.is-open .plan-toggle::after {
    transform: translateY(4px) rotate(225deg);
  }

  .plan-card.is-featured .plan-badge {
    right: 50px;
  }

  .plan-card.is-featured .plan-toggle {
    padding-top: 20px;
  }

  .plan-toggle h3 {
    grid-column: 1;
    padding-right: 0;
  }

  .plan-body {
    display: block;
  }

  .plan-card:not(.is-open) .plan-body {
    display: none;
  }

  .plan-body[hidden] {
    display: none;
  }

  .contact {
    width: calc(100% - 32px);
    max-width: var(--container);
  }

  .schedule-panel,
  .form-panel {
    padding: 16px;
  }

  .schedule-panel iframe {
    min-height: 620px;
  }

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

  .captcha-field {
    grid-template-columns: 1fr auto;
  }

  .captcha-copy {
    grid-column: 1 / -1;
  }

  .final-cta {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    max-width: var(--container);
    padding: 28px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    max-width: var(--container);
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .brand {
    width: 198px;
    min-width: 198px;
  }

  .brand-icon-wrap,
  .brand-icon {
    width: 35px;
    height: 35px;
  }

  .brand-icon-wrap {
    flex-basis: 35px;
  }

  .brand-name {
    font-size: 26px;
  }

  .brand-tagline {
    font-size: 5.3px;
  }

  .hero h1 {
    font-size: 28px;
    max-width: 350px;
  }

  .hero-subtitle,
  .hero-actions,
  .hero-facts,
  .hero-dashboard {
    max-width: 350px;
  }

  .section-heading h2,
  .product-copy h2,
  .contact-intro h2,
  .final-cta h2 {
    font-size: 28px;
  }

  .price span {
    font-size: 32px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}
