:root {
  color-scheme: light;
  --teal: #08756f;
  --teal-dark: #043f3b;
  --teal-ink: #023532;
  --blue: #1e6fd9;
  --mint: #5bc99b;
  --ink: #17211f;
  --text: #34433f;
  --muted: #6c7c78;
  --soft: #f3f7f6;
  --surface: #ffffff;
  --panel: #eaf3f1;
  --line: #d7e5e1;
  --line-strong: #b8d2cc;
  --shadow: 0 22px 56px rgba(16, 26, 25, 0.12);
  --soft-shadow: 0 14px 36px rgba(8, 117, 111, 0.1);
  --interactive-transition: 180ms ease;
  --radius: 8px;
  --font: "Segoe UI Variable", "Segoe UI", "Inter", "Oracle Sans", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: var(--soft);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: var(--font);
  font-size: 15.5px;
  line-height: 1.62;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select {
  font-family: var(--font);
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

h1,
h2,
h3,
p {
  margin: 0;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(8, 117, 111, 0.24);
  outline-offset: 2px;
}

.noscript {
  min-height: 100vh;
  display: grid;
  place-items: center;
  gap: 16px;
  padding: 32px;
  text-align: center;
}

.noscript img {
  width: 240px;
}

.seo-static {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 80px 24px;
  background: #f3faf8;
  color: var(--ink);
}

.seo-static section {
  width: min(860px, 100%);
}

.seo-static p:first-child {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-static h1 {
  max-width: 760px;
  margin: 12px 0 18px;
  font-size: clamp(2.2rem, 5vw, 4.25rem);
  line-height: 0.98;
}

.seo-static p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.seo-static nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.seo-static a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(8, 117, 111, 0.22);
  border-radius: 999px;
  background: #ffffff;
  color: #006c66;
  font-weight: 800;
  text-decoration: none;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 14px 40px;
  border-bottom: 1px solid rgba(215, 229, 225, 0.86);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border-radius: var(--radius);
}

.brand img {
  width: 160px;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(4, 63, 59, 0.12);
}

.footer-brand img {
  width: 58px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(4, 63, 59, 0.12);
}

.footer-brand-copy {
  display: grid;
  gap: 4px;
}

.footer-brand-copy strong {
  font-size: 19px;
  line-height: 1.1;
}

.footer-brand-copy span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.3;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  width: fit-content;
  justify-self: end;
  padding: 6px;
  border: 1px solid rgba(8, 117, 111, 0.1);
  border-radius: 999px;
  background: rgba(244, 250, 249, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 14px 30px rgba(16, 26, 25, 0.05);
}

.nav-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  padding: 0 15px;
  color: var(--text);
  font-size: 15px;
  font-weight: 760;
  transition:
    color var(--interactive-transition),
    background-color var(--interactive-transition),
    box-shadow var(--interactive-transition),
    transform var(--interactive-transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--teal);
  background: rgba(255, 255, 255, 0.94);
  transform: translateY(-1px);
  box-shadow:
    0 10px 22px rgba(8, 117, 111, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.nav-link svg {
  width: 16px;
  height: 16px;
}

@media (min-width: 1281px) and (max-width: 1500px) {
  .site-header {
    gap: 20px;
    padding-inline: 24px;
  }

  .brand img {
    width: 150px;
  }

  .site-nav {
    gap: 2px;
    padding: 5px;
  }

  .nav-link {
    min-height: 38px;
    padding-inline: 10px;
    font-size: 13px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-cta {
    min-height: 42px;
    padding-inline: 13px;
    font-size: 13px;
  }
}

@media (min-width: 981px) and (max-width: 1280px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 24px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    width: auto;
    justify-self: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

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

  .nav-link {
    justify-content: space-between;
    padding: 0 14px;
  }

  .nav-dropdown {
    display: grid;
  }

  .dropdown-menu {
    position: static;
    width: auto;
    display: none;
    transform: none;
    box-shadow: none;
    margin: 4px 0 8px;
  }

  .nav-dropdown.open .dropdown-menu {
    display: grid;
    gap: 4px;
  }

  .dropdown-menu::before {
    display: none;
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-content: space-between;
    width: 100%;
  }
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: 330px;
  display: none;
  transform: translateX(-50%);
  padding: 12px;
  border: 1px solid rgba(8, 117, 111, 0.12);
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(118, 210, 181, 0.12), transparent 34%),
    var(--surface);
  box-shadow:
    0 24px 58px rgba(16, 26, 25, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: grid;
  gap: 4px;
}

@media (max-width: 1280px) {
  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    display: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: grid;
    gap: 4px;
  }

  .nav-dropdown.open > .nav-link svg {
    transform: rotate(180deg);
  }
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}

.dropdown-menu a {
  min-height: 50px;
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border-radius: 14px;
  color: var(--text);
  font-size: 14.5px;
  font-weight: 740;
  transition:
    color var(--interactive-transition),
    background-color var(--interactive-transition),
    transform var(--interactive-transition);
}

.dropdown-menu a:hover {
  color: var(--teal);
  background: rgba(232, 245, 242, 0.9);
  transform: translateX(2px);
}

.dropdown-menu svg {
  width: 19px;
  height: 19px;
  color: var(--teal);
}

.company-menu {
  width: 230px;
}

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

.language-menu {
  position: relative;
}

.language-trigger {
  min-width: 50px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  border-radius: 999px;
  color: var(--text);
  background: rgba(244, 250, 249, 0.82);
  font-size: 13px;
  font-weight: 760;
  transition:
    color var(--interactive-transition),
    background-color var(--interactive-transition),
    transform var(--interactive-transition);
}

.language-trigger svg {
  width: 27px;
  height: 27px;
}

.language-trigger:hover,
.language-menu:focus-within .language-trigger,
.language-menu:hover .language-trigger {
  color: var(--teal);
  background: var(--surface);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(8, 117, 111, 0.08);
}

.language-switch {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: inline-grid;
  grid-template-columns: 1fr;
  gap: 4px;
  min-width: 92px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition:
    opacity var(--interactive-transition),
    transform var(--interactive-transition);
}

.language-menu:hover .language-switch,
.language-menu:focus-within .language-switch {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-switch button {
  min-height: 34px;
  border: 0;
  border-radius: 9px;
  color: var(--muted);
  background: transparent;
  font-size: 12px;
  font-weight: 720;
}

.language-switch button.active {
  color: var(--surface);
  background: var(--teal);
}

.header-cta,
.button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  font-size: 14px;
  font-weight: 760;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform var(--interactive-transition),
    box-shadow var(--interactive-transition),
    background-color var(--interactive-transition),
    border-color var(--interactive-transition),
    color var(--interactive-transition);
}

.header-cta {
  min-height: 50px;
  border-radius: 16px;
  padding: 0 24px;
  font-size: 15px;
}

.header-cta::before,
.button::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius) - 1px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  opacity: 0;
  transform: translateY(-3px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
  pointer-events: none;
  z-index: 0;
}

.header-cta > *,
.button > * {
  position: relative;
  z-index: 1;
}

.header-cta,
.button.primary {
  color: var(--surface);
  background: var(--teal);
  box-shadow: 0 16px 34px rgba(8, 117, 111, 0.22);
}

.secondary-header-cta {
  color: var(--teal) !important;
  border-color: rgba(8, 117, 111, 0.16) !important;
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 12px 28px rgba(8, 117, 111, 0.08) !important;
}

.secondary-header-cta:hover {
  color: var(--surface) !important;
  background: var(--teal) !important;
}

.header-cta:hover,
.button.primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow:
    0 18px 38px rgba(8, 117, 111, 0.28),
    0 0 0 6px rgba(8, 117, 111, 0.08);
}

.header-cta:hover::before,
.button:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--surface);
}

.button.secondary:hover {
  color: var(--teal);
  border-color: var(--line-strong);
  background: #eef7f5;
  transform: translateY(-2px);
  box-shadow:
    0 14px 28px rgba(8, 117, 111, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.button.inverse {
  color: var(--teal-dark);
  background: var(--surface);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.button.inverse:hover {
  color: var(--surface);
  background: var(--ink);
  transform: translateY(-2px);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.2),
    0 0 0 6px rgba(255, 255, 255, 0.05);
}

.button:focus-visible,
.header-cta:focus-visible,
.nav-link:focus-visible,
.dropdown-menu a:focus-visible,
.package-link:focus-visible,
.footer-inner nav a:focus-visible,
summary:focus-visible,
.feature-card a:focus-visible {
  outline: 2px solid rgba(8, 117, 111, 0.38);
  outline-offset: 3px;
}

.button svg,
.header-cta svg {
  width: 18px;
  height: 18px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--surface);
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
}

.section-inner,
.hero-grid,
.footer-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section-inner {
  padding: 88px 0;
}

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 16%, rgba(118, 210, 181, 0.12), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(40, 116, 210, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(243, 247, 246, 0.82)),
    var(--soft);
}

.hero-grid {
  min-height: calc(100vh - 128px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(500px, 1.05fr);
  align-items: center;
  gap: 48px;
  padding: 60px 0 54px;
}

.hero-copy,
.demo-copy,
.control-copy {
  display: grid;
  gap: 20px;
}

.hero-copy > * {
  opacity: 0;
  animation: hero-fade-up 720ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-copy > :nth-child(1) {
  animation-delay: 70ms;
}

.hero-copy > :nth-child(2) {
  animation-delay: 150ms;
}

.hero-copy > :nth-child(3) {
  animation-delay: 230ms;
}

.hero-copy > :nth-child(4) {
  animation-delay: 310ms;
}

.eyebrow {
  width: fit-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(8, 117, 111, 0.22);
  border-radius: var(--radius);
  color: var(--teal);
  background: #e5f5f2;
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--surface);
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.12);
}

h1 {
  max-width: 760px;
  font-size: 48px;
  line-height: 1.12;
  font-weight: 690;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 em {
  display: block;
  margin-top: 6px;
  color: var(--teal);
  font-size: 38px;
  font-style: normal;
  white-space: nowrap;
}

h2 {
  max-width: 820px;
  font-size: 34px;
  line-height: 1.22;
  font-weight: 660;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  font-size: 19px;
  line-height: 1.34;
  font-weight: 650;
  letter-spacing: 0;
}

.lead {
  max-width: 660px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-practice {
  width: min(100%, 620px);
  display: grid;
  gap: 10px;
  margin-top: 4px;
  padding-top: 18px;
  border-top: 1px solid rgba(8, 117, 111, 0.12);
}

.hero-practice > span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-practice div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-practice em {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(8, 117, 111, 0.13);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-style: normal;
  font-weight: 560;
  box-shadow: 0 10px 22px rgba(16, 26, 25, 0.045);
}

.page-practice {
  width: min(100%, 620px);
  display: grid;
  gap: 10px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(8, 117, 111, 0.12);
}

.page-practice > span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-practice div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-practice em {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(8, 117, 111, 0.13);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-style: normal;
  font-weight: 560;
  box-shadow: 0 10px 22px rgba(16, 26, 25, 0.045);
}

.feature-practice {
  margin-top: 2px;
}

.hero-visual {
  position: relative;
  opacity: 0;
  animation: hero-fade-in 820ms cubic-bezier(0.22, 1, 0.36, 1) 180ms forwards;
  --hero-parallax-x: 0px;
  --hero-parallax-y: 0px;
  --hero-glow-x: 50%;
  --hero-glow-y: 22%;
}

.hero-login-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  width: 100%;
  aspect-ratio: 1680 / 945;
  border: 1px solid rgba(184, 210, 204, 0.82);
  border-radius: 24px;
  background: #0f1717;
  box-shadow:
    0 32px 72px rgba(16, 26, 25, 0.18),
    0 10px 24px rgba(8, 117, 111, 0.1);
  transform: translate3d(var(--hero-parallax-x), var(--hero-parallax-y), 0);
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms ease,
    border-color 220ms ease;
}

.hero-login-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--hero-glow-x) var(--hero-glow-y), rgba(255, 255, 255, 0.22), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 24%);
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
}

.hero-login-frame::after {
  content: "";
  position: absolute;
  inset: auto 8% -18px;
  height: 36px;
  border-radius: 50%;
  background: rgba(12, 19, 19, 0.16);
  filter: blur(22px);
  pointer-events: none;
  z-index: -1;
}

.hero-login-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: #0f1717;
  transition:
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 320ms ease;
}

.hero-visual:hover .hero-login-frame {
  border-color: rgba(184, 210, 204, 1);
  box-shadow:
    0 40px 84px rgba(16, 26, 25, 0.2),
    0 14px 30px rgba(8, 117, 111, 0.12);
}

.hero-login-frame:hover img {
  transform: scale(1.024);
  filter: saturate(1.03);
}

.laptop {
  position: relative;
  overflow: visible;
  padding: 14px 14px 0;
  border: 1px solid #193f3b;
  border-radius: 8px 8px 4px 4px;
  background: #0b201f;
  box-shadow: var(--shadow);
}

.laptop-bar {
  height: 23px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 4px 10px;
}

.laptop-bar span,
.browser-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6cc8ab;
}

.laptop-bar span:nth-child(2),
.browser-top span:nth-child(2) {
  background: #8bb7e8;
}

.laptop-bar span:nth-child(3),
.browser-top span:nth-child(3) {
  background: #e5c467;
}

.laptop-screen {
  overflow: hidden;
  aspect-ratio: 128 / 65;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  background: #eef4f3;
}

.laptop-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.laptop-base {
  width: 82%;
  height: 18px;
  margin: 0 auto -18px;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(180deg, #dbe5e4, #aebdba);
  box-shadow: 0 14px 24px rgba(16, 26, 25, 0.16);
}

.support-section,
.feature-overview-section,
.pricing-section,
.faq-section {
  background: var(--surface);
}

.trust-section {
  padding: 72px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(118, 210, 181, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 247, 246, 0.96));
}

.trust-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: start;
  padding: 28px;
  border: 1px solid rgba(8, 117, 111, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(118, 210, 181, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 253, 252, 0.96));
  box-shadow:
    0 26px 58px rgba(16, 26, 25, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.trust-copy {
  display: grid;
  gap: 12px;
}

.trust-copy h2 {
  font-size: clamp(25px, 3vw, 40px);
  line-height: 1.22;
  font-weight: 650;
}

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

.trust-card {
  display: grid;
  gap: 9px;
  padding: 18px;
  border: 1px solid rgba(8, 117, 111, 0.11);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.trust-card div {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--teal);
  background: rgba(8, 117, 111, 0.08);
}

.trust-card svg {
  width: 19px;
  height: 19px;
}

.trust-card strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
}

.trust-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.section-heading {
  display: grid;
  justify-items: center;
  gap: 16px;
  margin-bottom: 38px;
  text-align: center;
}

.section-heading h2 {
  width: min(100%, 860px);
}

.support-section .section-heading {
  margin-bottom: 34px;
}

.support-section .section-heading h2 {
  width: min(100%, 880px);
  color: var(--ink);
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.3;
  font-weight: 620;
  letter-spacing: 0;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.support-card,
.stakeholder-card,
.step-card,
.feature-card,
.pricing-card,
.problem-card,
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--soft-shadow);
  transition:
    transform var(--interactive-transition),
    box-shadow var(--interactive-transition),
    border-color var(--interactive-transition),
    background-color var(--interactive-transition);
}

.support-card {
  min-height: 148px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 20px;
}

.support-card span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 720;
}

.support-card p,
.stakeholder-card p,
.step-card p,
.feature-card p,
.pricing-card p,
.problem-card p,
.demo-copy .lead,
details p {
  color: var(--muted);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

[data-reveal="fade"] {
  transform: translateY(16px) scale(0.985);
}

[data-reveal="hero"] {
  transform: translateY(18px) scale(0.982);
}

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

.control-section,
.start-section,
.related-section {
  background: var(--soft);
}

.control-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(480px, 1.14fr);
  align-items: center;
  gap: 58px;
}

.control-copy p {
  max-width: 660px;
  color: var(--muted);
  font-size: 17px;
}

.control-points,
.outcome-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.control-points span,
.outcome-list span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: var(--surface);
  font-size: 14px;
  font-weight: 700;
}

.control-points svg,
.outcome-list svg {
  width: 17px;
  height: 17px;
  color: var(--teal);
}

.dashboard-stack {
  position: relative;
  min-height: 430px;
}

.browser-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color var(--interactive-transition);
}

.browser-frame.large {
  align-self: stretch;
}

.browser-top {
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: #f6faf9;
}

.browser-frame img,
.browser-frame video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: left top;
  background: var(--panel);
  transition:
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 320ms ease;
}

.phone-frame {
  position: absolute;
  right: 20px;
  bottom: 0;
  width: 180px;
  padding: 9px;
  border: 1px solid #153f3b;
  border-radius: 22px;
  background: #0b201f;
  box-shadow: 0 24px 42px rgba(16, 26, 25, 0.24);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.dashboard-stack:hover .browser-frame {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 28px 60px rgba(16, 26, 25, 0.18);
}

.dashboard-stack:hover .phone-frame {
  transform: translateY(-6px);
  box-shadow: 0 28px 52px rgba(16, 26, 25, 0.3);
}

.phone-frame img,
.phone-frame video {
  width: 100%;
  aspect-ratio: 9 / 15;
  object-fit: cover;
  object-position: left top;
  border-radius: 14px;
  background: var(--surface);
  transition:
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 320ms ease;
}

.dashboard-stack:hover .browser-frame img,
.dashboard-stack:hover .browser-frame video,
.browser-frame:hover img,
.browser-frame:hover video {
  transform: scale(1.02);
  filter: saturate(1.02);
}

.dashboard-stack:hover .phone-frame img,
.dashboard-stack:hover .phone-frame video,
.phone-frame:hover img,
.phone-frame:hover video {
  transform: scale(1.03);
}

.conversion-section {
  color: var(--surface);
  background:
    radial-gradient(circle at 14% 24%, rgba(118, 210, 181, 0.14), transparent 30%),
    linear-gradient(180deg, #084c49, #0a5b56);
}

.conversion-section .section-inner {
  padding-top: 108px;
  padding-bottom: 108px;
}

main > section {
  position: relative;
}

main > section + section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1180px, calc(100% - 48px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(153, 180, 175, 0.52), transparent);
}

.support-section::after,
.control-section::after,
.stakeholder-section::after,
.start-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.08));
  pointer-events: none;
}

.conversion-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.62fr);
  align-items: stretch;
  gap: 34px;
  padding: 52px;
  border: 1px solid rgba(193, 226, 219, 0.16);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow:
    0 28px 54px rgba(5, 21, 20, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.conversion-card h2 {
  max-width: 760px;
  margin-top: 14px;
  font-size: 30px;
  line-height: 1.24;
  font-weight: 650;
}

.conversion-copy {
  display: grid;
  align-content: center;
  gap: 0;
}

.conversion-copy p {
  max-width: 700px;
  margin-top: 18px;
  color: rgba(241, 248, 247, 0.78);
  font-size: 17px;
  line-height: 1.7;
}

.conversion-action {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(193, 226, 219, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.conversion-kicker {
  color: rgba(241, 248, 247, 0.78);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.conversion-action .button {
  width: 100%;
  min-height: 52px;
}

.conversion-action p {
  color: rgba(241, 248, 247, 0.72);
  font-size: 14px;
  line-height: 1.6;
}

.stakeholder-section {
  background: var(--surface);
}

.stakeholder-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.stakeholder-card {
  min-height: 190px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px;
}

.stakeholder-card h3 {
  font-size: 18px;
}

.start-grid,
.outcome-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: 54px;
}

.start-grid h2 {
  margin-top: 16px;
}

.start-copy {
  display: grid;
  align-content: start;
  gap: 0;
}

.start-copy p {
  max-width: 520px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.steps {
  display: grid;
  position: relative;
  gap: 14px;
  padding: 18px 0 18px 18px;
}

.steps::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 38px;
  width: 1px;
  background: linear-gradient(180deg, rgba(8, 117, 111, 0.18), rgba(8, 117, 111, 0.06));
}

.step-card {
  position: relative;
  min-height: 96px;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 18px;
  padding: 20px 22px 20px 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 252, 251, 0.96));
  box-shadow:
    0 18px 36px rgba(16, 26, 25, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.step-card span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--surface);
  background: linear-gradient(180deg, #0b8781, #0a6e69);
  box-shadow:
    0 12px 24px rgba(8, 117, 111, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  font-weight: 760;
}

.step-card p {
  max-width: 48ch;
  color: var(--text);
  font-size: 17px;
  line-height: 1.6;
}

.page-hero {
  background: var(--soft);
}

.page-hero.compact .section-inner {
  padding-top: 76px;
  padding-bottom: 72px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(440px, 1.14fr);
  align-items: center;
  gap: 58px;
}

.page-hero h1 {
  margin-top: 18px;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 680;
}

.page-hero .lead {
  margin-top: 18px;
}

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

.feature-detail-hero .section-inner {
  padding-top: 84px;
  padding-bottom: 88px;
}

.feature-detail-grid {
  align-items: center;
}

.feature-detail-copy {
  display: grid;
  gap: 0;
}

.feature-detail-copy .lead {
  max-width: 620px;
}

.feature-quickpoints {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.feature-quickpoints span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 22px rgba(16, 26, 25, 0.06);
  font-size: 14px;
  font-weight: 700;
}

.feature-quickpoints svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
}

.feature-visual-stack {
  position: relative;
}

.feature-visual-stack.is-planning {
  min-height: 640px;
}

.feature-visual-stack.is-canteen {
  min-height: 620px;
}

.feature-visual-stack.is-portal {
  min-height: 520px;
}

.feature-secondary-frame {
  position: absolute;
  right: -18px;
  bottom: -54px;
  width: min(72%, 520px);
  box-shadow: 0 28px 54px rgba(16, 26, 25, 0.16);
}

.feature-phone-frame {
  right: -8px;
  bottom: -18px;
  width: 196px;
}

.feature-spotlight-section {
  background: var(--surface);
}

.feature-spotlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 34px;
  align-items: start;
}

.feature-spotlight-copy {
  display: grid;
  gap: 0;
}

.feature-spotlight-copy h2 {
  margin-top: 16px;
}

.feature-spotlight-copy p,
.outcome-copy p {
  max-width: 620px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.feature-highlight-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.feature-highlight-card {
  min-height: 148px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(243, 247, 246, 0.74), rgba(255, 255, 255, 0.96));
  box-shadow: 0 18px 34px rgba(16, 26, 25, 0.06);
}

.feature-highlight-card strong {
  color: var(--teal);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0.04em;
}

.feature-highlight-card h3 {
  font-size: 20px;
  line-height: 1.26;
  font-weight: 650;
}

.feature-highlight-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
  font-weight: 520;
}

.feature-detail-heading {
  margin-bottom: 28px;
}

.feature-overview-hero {
  max-width: 760px;
  text-align: center;
}

.feature-overview-hero .page-practice {
  justify-content: center;
}

.feature-overview-hero .page-practice div {
  justify-content: center;
}

.feature-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  overflow: hidden;
}

.feature-card a {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 14px;
  padding: 20px;
  transition:
    transform var(--interactive-transition),
    background-color var(--interactive-transition);
}

.feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--teal);
  background: #e8f5f2;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h2 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 650;
}

.feature-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: left top;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  transition:
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 320ms ease;
}

.feature-card span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 720;
}

/* Product catalogue for the functionality overview. */
.feature-catalog-hero {
  background: #f3f8f7;
}

.feature-overview-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  align-items: center;
  gap: clamp(42px, 7vw, 108px);
  padding-top: clamp(68px, 8vw, 108px);
  padding-bottom: clamp(68px, 8vw, 108px);
}

.feature-overview-layout .feature-overview-hero {
  max-width: 680px;
  text-align: left;
}

.feature-overview-layout .page-practice,
.feature-overview-layout .page-practice div {
  justify-content: flex-start;
}

.feature-overview-map {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 1;
  justify-self: end;
  border: 1px solid rgba(8, 117, 111, 0.18);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 26px 52px rgba(4, 63, 59, 0.12);
}

.feature-overview-map::before,
.feature-overview-map::after {
  content: "";
  position: absolute;
  inset: 16%;
  border: 1px dashed rgba(8, 117, 111, 0.22);
  border-radius: 50%;
}

.feature-overview-map::after {
  inset: 31%;
  border-style: solid;
  border-color: rgba(112, 205, 177, 0.35);
}

.feature-overview-map-core {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 126px;
  height: 126px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  transform: translate(-50%, -50%);
  border: 7px solid #eaf7f3;
  border-radius: 50%;
  color: #ffffff;
  background: #043f3b;
  box-shadow: 0 16px 32px rgba(4, 63, 59, 0.2);
}

.feature-overview-map-core img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

.feature-overview-map-core span {
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.07em;
}

.feature-overview-map-core small {
  color: #a9e1d3;
  font-size: 10px;
  font-weight: 700;
}

.feature-overview-map-node {
  position: absolute;
  z-index: 1;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(8, 117, 111, 0.16);
  border-radius: 8px;
  color: var(--teal);
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(4, 63, 59, 0.1);
}

.feature-overview-map-node svg {
  width: 20px;
  height: 20px;
}

.feature-overview-map .node-1 { top: 8%; left: 44%; }
.feature-overview-map .node-2 { top: 20%; right: 12%; color: #1d70d5; }
.feature-overview-map .node-3 { top: 57%; right: 7%; color: #a66c00; }
.feature-overview-map .node-4 { bottom: 9%; right: 26%; color: #1d70d5; }
.feature-overview-map .node-5 { bottom: 9%; left: 26%; }
.feature-overview-map .node-6 { top: 57%; left: 7%; }
.feature-overview-map .node-7 { top: 20%; left: 12%; color: #15966b; }

.feature-overview-system {
  width: min(100%, 500px);
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(8, 117, 111, 0.22);
  border-radius: 8px;
  background: #043f3b;
  box-shadow: 0 26px 52px rgba(4, 63, 59, 0.18);
}

.feature-system-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 14px;
  padding: 18px;
  border-bottom: 1px solid rgba(203, 238, 227, 0.18);
}

.feature-system-header span {
  color: #9fe0cf;
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.09em;
}

.feature-system-header strong {
  color: #ffffff;
  font-size: 19px;
  line-height: 1.2;
}

.feature-system-header em {
  grid-row: span 2;
  align-self: center;
  padding: 6px 8px;
  border: 1px solid rgba(183, 236, 220, 0.28);
  border-radius: 999px;
  color: #c5eee1;
  font-size: 10px;
  font-style: normal;
  font-weight: 760;
  white-space: nowrap;
}

.feature-system-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(138px, 0.9fr) minmax(0, 1fr);
  gap: 10px;
  padding: 14px;
}

.feature-system-group {
  display: grid;
  align-content: start;
  gap: 6px;
}

.feature-system-group > span,
.feature-system-core > span {
  color: #9fe0cf;
  font-size: 8px;
  font-weight: 820;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.feature-system-group > a {
  min-height: 35px;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: center;
  gap: 6px;
  padding: 7px;
  border: 1px solid rgba(217, 246, 237, 0.18);
  border-radius: 6px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  transition: background 180ms ease, transform 180ms ease;
}

.feature-system-group > a:hover,
.feature-system-group > a:focus-visible {
  background: rgba(159, 224, 207, 0.2);
  transform: translateX(2px);
  outline: none;
}

.feature-system-group > a svg {
  width: 15px;
  height: 15px;
  color: #9fe0cf;
}

.feature-system-group > a span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.feature-system-core {
  position: relative;
  min-height: 218px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 7px;
  padding: 14px 10px;
  border: 1px solid rgba(174, 232, 215, 0.34);
  border-radius: 8px;
  background: #07534e;
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.025);
  text-align: center;
}

.feature-system-core img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
}

.feature-system-core strong {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.15;
}

.feature-system-core small {
  max-width: 140px;
  color: #c4eae0;
  font-size: 10px;
  line-height: 1.4;
}

.feature-system-core a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 3px;
  color: #ffffff;
  font-size: 10px;
  font-weight: 760;
}

.feature-system-core a svg {
  width: 13px;
  height: 13px;
}

.feature-system-signal {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
  color: #c4eae0;
  font-size: 9px;
  font-weight: 650;
  line-height: 1.35;
}

.feature-system-signal svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  color: #9fe0cf;
}

.feature-constellation {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 1.12 / 1;
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(8, 117, 111, 0.19);
  border-radius: 8px;
  background: #f8fbfa;
  box-shadow: 0 26px 52px rgba(4, 63, 59, 0.12);
}

.feature-constellation::before,
.feature-constellation::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #59c49b;
  box-shadow: 0 0 0 5px rgba(89, 196, 155, 0.1);
}

.feature-constellation::before { top: 23%; left: 10%; }
.feature-constellation::after { right: 10%; bottom: 21%; }

.feature-constellation-label,
.feature-constellation-note {
  position: absolute;
  z-index: 3;
  color: var(--teal);
  font-size: 9px;
  font-weight: 820;
  letter-spacing: 0.08em;
}

.feature-constellation-label {
  top: 15px;
  left: 16px;
}

.feature-constellation-note {
  right: 16px;
  bottom: 15px;
  color: #5d7772;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0;
}

.feature-constellation-lines {
  position: absolute;
  inset: 8% 4% 7%;
  width: 92%;
  height: 85%;
  overflow: visible;
}

.feature-constellation-lines path,
.feature-constellation-lines circle {
  fill: none;
  stroke: rgba(8, 117, 111, 0.32);
  stroke-width: 0.44;
  stroke-dasharray: 2.2 1.5;
  animation: map-dash 14s linear infinite;
}

.feature-constellation-lines circle {
  stroke: rgba(30, 111, 217, 0.16);
  stroke-dasharray: 1.5 1.8;
}

.feature-constellation-core {
  position: absolute;
  z-index: 2;
  top: 51%;
  left: 50%;
  width: 124px;
  height: 124px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  transform: translate(-50%, -50%);
  border: 7px solid #eaf7f3;
  border-radius: 50%;
  color: #ffffff;
  background: #043f3b;
  box-shadow: 0 16px 34px rgba(4, 63, 59, 0.22);
}

.feature-constellation-core::before {
  content: "";
  position: absolute;
  inset: -15px;
  border: 1px dashed rgba(91, 201, 155, 0.5);
  border-radius: 50%;
  animation: map-orbit-spin 22s linear infinite;
}

.feature-constellation-core img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

.feature-constellation-core strong {
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.07em;
}

.feature-constellation-core span {
  color: #a9e1d3;
  font-size: 10px;
  font-weight: 700;
}

.feature-constellation-node {
  position: absolute;
  z-index: 2;
  width: clamp(112px, 28%, 144px);
  min-height: 48px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  padding: 8px;
  border: 1px solid rgba(8, 117, 111, 0.17);
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(4, 63, 59, 0.1);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-constellation-node:hover,
.feature-constellation-node:focus-visible {
  z-index: 4;
  transform: translateY(-4px) scale(1.03);
  border-color: var(--feature-accent);
  box-shadow: 0 18px 34px rgba(4, 63, 59, 0.16);
  outline: none;
}

.feature-constellation .node-1:hover,
.feature-constellation .node-1:focus-visible {
  transform: translate(-50%, -4px) scale(1.03);
}

.feature-constellation-node i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: var(--feature-accent);
  background: var(--feature-tint);
}

.feature-constellation-node i svg {
  width: 15px;
  height: 15px;
}

.feature-constellation-node span {
  min-width: 0;
  color: var(--ink);
  font-size: 10px;
  font-weight: 760;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.feature-constellation-node.tone-teal { --feature-accent: #08756f; --feature-tint: #e5f5f2; }
.feature-constellation-node.tone-blue { --feature-accent: #1e6fd9; --feature-tint: #eaf2fc; }
.feature-constellation-node.tone-mint { --feature-accent: #258d67; --feature-tint: #e8f7ef; }
.feature-constellation-node.tone-amber { --feature-accent: #b8790c; --feature-tint: #fff5dd; }

.feature-constellation .node-1 { top: 10%; left: 50%; transform: translateX(-50%); }
.feature-constellation .node-2 { top: 31%; left: 7%; }
.feature-constellation .node-3 { top: 31%; right: 7%; }
.feature-constellation .node-4 { top: 63%; left: 4%; }
.feature-constellation .node-5 { top: 63%; right: 4%; }
.feature-constellation .node-6 { bottom: 8%; left: 18%; }
.feature-constellation .node-7 { bottom: 8%; right: 18%; }

@media (max-width: 980px) {
  .feature-constellation {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .feature-constellation {
    width: min(100%, 360px);
    justify-self: center;
  }

  .feature-constellation-note {
    display: none;
  }

  .feature-constellation-core {
    width: 108px;
    height: 108px;
  }

  .feature-constellation-node {
    width: clamp(102px, 31%, 118px);
    min-height: 43px;
    gap: 5px;
    padding: 7px;
  }

  .feature-constellation-node i {
    width: 25px;
    height: 25px;
  }

  .feature-constellation-node span {
    font-size: 9px;
  }
}

.feature-overview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  min-height: 100%;
  border: 1px solid rgba(8, 117, 111, 0.14);
  border-top: 3px solid var(--teal);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(16, 26, 25, 0.06);
}

.feature-card a {
  min-height: 100%;
  grid-template-rows: auto auto 1fr auto;
  gap: 16px;
  padding: 20px;
}

.feature-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.feature-card-topline > span {
  color: #93aaa5;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.feature-card-copy {
  display: grid;
  gap: 8px;
}

.feature-card h2 {
  font-size: 20px;
  line-height: 1.2;
}

.feature-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.feature-card-screen {
  align-self: end;
  overflow: hidden;
  border: 1px solid #d3e5e1;
  border-radius: 7px;
  background: #f7fbfa;
}

.feature-card-screen > div {
  height: 24px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 8px;
  border-bottom: 1px solid #dbe9e6;
  background: #eef7f5;
}

.feature-card-screen > div i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #5ec49d;
}

.feature-card-screen > div i:nth-child(2) { background: #83aee0; }
.feature-card-screen > div i:nth-child(3) { background: #dfbe62; }

.feature-card-screen > div span {
  margin-left: auto;
  color: #52716c;
  font-size: 8px;
  font-weight: 820;
  letter-spacing: 0.08em;
}

.feature-card-screen img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: left top;
}

.feature-card.tone-blue { border-top-color: #1d70d5; }
.feature-card.tone-amber { border-top-color: #b47a13; }
.feature-card.tone-mint { border-top-color: #15966b; }

.feature-card.tone-blue .feature-icon { color: #1d70d5; background: #edf5ff; }
.feature-card.tone-amber .feature-icon { color: #a66c00; background: #fff5dd; }
.feature-card.tone-mint .feature-icon { color: #15966b; background: #eaf8f1; }

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(8, 117, 111, 0.38);
  box-shadow: 0 22px 38px rgba(4, 63, 59, 0.12);
}

.feature-card:hover .feature-card-screen img {
  transform: scale(1.025);
}

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

  .feature-overview-map {
    justify-self: start;
    width: min(100%, 390px);
  }

  .feature-overview-system {
    justify-self: start;
  }

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

@media (max-width: 640px) {
  .feature-overview-layout {
    gap: 34px;
    padding-top: 48px;
    padding-bottom: 58px;
  }

  .feature-overview-map {
    width: min(100%, 340px);
    justify-self: center;
  }

  .feature-overview-system {
    justify-self: center;
  }

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

  .feature-system-core {
    min-height: 0;
    order: -1;
  }

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

.problem-section {
  background: var(--surface);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.problem-card {
  min-height: 300px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 252, 251, 0.95));
  box-shadow:
    0 18px 38px rgba(16, 26, 25, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.problem-card div {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--surface);
  background: var(--teal);
}

.problem-card div svg {
  width: 24px;
  height: 24px;
}

.problem-card h2 {
  font-size: 24px;
  line-height: 1.24;
  font-weight: 650;
}

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

.outcome-copy {
  display: grid;
  align-content: start;
  gap: 0;
}

.outcome-panel {
  display: grid;
  gap: 22px;
  padding: 28px;
  border: 1px solid rgba(8, 117, 111, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 94% 8%, rgba(118, 210, 181, 0.16), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 252, 250, 0.94));
  box-shadow:
    0 30px 70px rgba(16, 26, 25, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.outcome-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.outcome-panel-kicker {
  color: var(--teal);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.outcome-panel-header strong {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(8, 117, 111, 0.18);
  border-radius: 999px;
  color: var(--text);
  background: rgba(232, 245, 242, 0.9);
  font-size: 13px;
  font-weight: 760;
}

.outcome-panel-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.outcome-list span {
  min-height: 58px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(8, 117, 111, 0.14);
  border-radius: 14px;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 252, 251, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 10px 24px rgba(16, 26, 25, 0.045);
  font-size: 15px;
  font-weight: 680;
  line-height: 1.35;
}

.outcome-list span em {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(8, 117, 111, 0.16);
  border-radius: 9px;
  background: rgba(232, 245, 242, 0.95);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.outcome-list span em svg {
  width: 17px;
  height: 17px;
  color: var(--teal);
}

.outcome-sidecard {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 20px 22px;
  border: 1px solid rgba(8, 117, 111, 0.16);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(118, 210, 181, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(232, 245, 242, 0.88), rgba(255, 255, 255, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 14px 28px rgba(16, 26, 25, 0.05);
}

.outcome-sidecard-label {
  color: var(--teal);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.outcome-sidecard strong {
  display: block;
  margin-top: 6px;
  font-size: 22px;
  line-height: 1.28;
  font-weight: 650;
}

.outcome-sidecard p {
  max-width: 420px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.outcome-panel.is-sponsor .outcome-panel-body {
  grid-template-columns: 1fr;
  gap: 16px;
}

.outcome-panel.is-sponsor .outcome-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.outcome-panel.is-sponsor .outcome-list span {
  min-height: 72px;
  align-items: flex-start;
  padding: 16px 18px;
  line-height: 1.45;
}

.outcome-footer-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(8, 117, 111, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(8, 117, 111, 0.06), rgba(118, 210, 181, 0.06)),
    rgba(255, 255, 255, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 14px 26px rgba(16, 26, 25, 0.05);
}

.outcome-footer-copy {
  display: grid;
  gap: 8px;
}

.outcome-footer-copy strong {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 650;
}

.outcome-footer-copy p {
  max-width: 560px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.outcome-button {
  width: fit-content;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.related-grid a {
  min-height: 72px;
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: var(--surface);
  font-weight: 700;
  box-shadow: var(--soft-shadow);
}

.related-grid svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
}

.price-visual {
  display: grid;
  gap: 20px;
  align-content: start;
  justify-items: center;
}

.pricing-hero .page-hero-grid {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 18px;
}

.pricing-hero-copy {
  max-width: 760px;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 14px;
}

.pricing-hero-title {
  width: min(100%, 860px);
  display: grid;
  gap: 0;
  justify-items: center;
  text-align: center;
}

.pricing-hero-title span {
  display: block;
  color: var(--teal);
  font-size: clamp(38px, 5.8vw, 68px);
  line-height: 1.04;
  font-weight: 690;
  letter-spacing: 0;
  text-transform: none;
  text-wrap: balance;
}

.pricing-hero-copy .lead {
  max-width: 700px;
  font-size: 18px;
  line-height: 1.55;
}

.pricing-launch-panel {
  width: min(100%, 680px);
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 18px 22px;
  border: 1px solid rgba(8, 117, 111, 0.14);
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(118, 210, 181, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 249, 0.98));
  box-shadow:
    0 18px 34px rgba(16, 26, 25, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.pricing-launch-kicker {
  color: var(--teal);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-launch-panel strong {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.24;
  font-weight: 650;
}

.pricing-launch-panel p {
  max-width: 620px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
}

.pricing-launch-note {
  color: var(--teal);
  font-size: 12px;
  font-weight: 720;
}

.pricing-toggle-wrap {
  position: relative;
  display: grid;
  justify-items: center;
  padding-top: 30px;
}

.pricing-save-pill {
  position: absolute;
  top: 0;
  left: 75%;
  transform: translateX(-50%);
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--surface);
  background: var(--teal);
  font-size: 11px;
  font-weight: 760;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 12px 26px rgba(8, 117, 111, 0.22);
}

.pricing-toggle {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 6px;
  border: 1px solid rgba(8, 117, 111, 0.12);
  border-radius: 20px;
  background: rgba(234, 244, 242, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 18px 36px rgba(16, 26, 25, 0.06);
}

.pricing-toggle button {
  min-width: 150px;
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  color: var(--muted);
  background: transparent;
  font-size: 16px;
  font-weight: 720;
  transition:
    color var(--interactive-transition),
    background-color var(--interactive-transition),
    box-shadow var(--interactive-transition),
    transform var(--interactive-transition);
}

.pricing-toggle button.active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 28px rgba(16, 26, 25, 0.08);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  padding-top: 44px;
}

.pricing-card {
  position: relative;
  overflow: visible;
  min-height: 100%;
  min-width: 0;
  display: grid;
  grid-template-rows: minmax(92px, auto) minmax(124px, auto) minmax(72px, auto) minmax(62px, auto) minmax(70px, auto) auto auto minmax(34px, auto) minmax(32px, auto) 1fr;
  align-content: start;
  gap: 12px;
  padding: 20px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 252, 251, 0.96));
  box-shadow:
    0 24px 46px rgba(16, 26, 25, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.pricing-card.featured {
  border-color: rgba(8, 117, 111, 0.44);
  box-shadow:
    0 34px 68px rgba(8, 117, 111, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.pricing-badge {
  position: absolute;
  top: 18px;
  right: 24px;
  left: auto;
  transform: none;
  width: fit-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--surface);
  background: var(--teal);
  font-size: 12px;
  font-weight: 760;
  box-shadow: 0 14px 28px rgba(8, 117, 111, 0.22);
  z-index: 2;
}

.pricing-card-top {
  display: grid;
  gap: 6px;
  min-height: 92px;
}

.pricing-tier {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-tier-icon {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  box-shadow: 0 6px 12px rgba(4, 63, 59, 0.12);
}

.pricing-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.pricing-price-block {
  display: grid;
  align-content: start;
  gap: 5px;
  min-height: 146px;
  padding: 14px;
  border: 1px solid rgba(8, 117, 111, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(118, 210, 181, 0.12), transparent 32%),
    rgba(240, 248, 246, 0.92);
}

.pricing-launch-rate {
  color: var(--teal);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-price-line {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.pricing-price-prefix,
.pricing-price-suffix {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.pricing-price-line strong {
  color: var(--ink);
  font-size: 26px;
  line-height: 0.98;
  letter-spacing: 0;
}

.pricing-price-line.is-custom strong {
  font-size: 24px;
  line-height: 1.05;
}

.pricing-billing-note,
.pricing-vat-note {
  color: var(--muted);
  font-size: 11px;
}

.pricing-original-price {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
}

.pricing-original-price s {
  text-decoration-thickness: 1.5px;
  opacity: 0.9;
}

.pricing-discount-note {
  color: var(--teal);
  font-size: 11px;
  font-weight: 760;
}

.pricing-summary {
  color: var(--teal);
  min-height: 64px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 520;
}

.pricing-scenario {
  min-height: 62px;
  padding: 11px 12px;
  border-left: 3px solid rgba(8, 117, 111, 0.56);
  border-radius: 14px;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(232, 248, 244, 0.86), rgba(255, 255, 255, 0.88));
  font-size: 12px;
  line-height: 1.45;
  font-weight: 560;
}

.pricing-cta {
  width: 100%;
  justify-content: center;
}

.pricing-cta-note {
  color: var(--teal);
  min-height: 34px;
  font-size: 11px;
  font-weight: 720;
  text-align: center;
}

.pricing-trial-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid rgba(8, 117, 111, 0.14);
  border-radius: 999px;
  color: var(--teal);
  background: rgba(232, 248, 244, 0.78);
  font-size: 11px;
  font-weight: 760;
  text-align: center;
}

.pricing-included-title {
  min-height: 32px;
  display: flex;
  align-items: flex-end;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
  font-weight: 760;
}

.package-focus {
  min-height: 72px;
  padding: 12px;
  border: 1px solid rgba(8, 117, 111, 0.1);
  border-radius: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 620;
}

.pricing-card ul {
  display: grid;
  align-content: start;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 8px;
  color: var(--text);
  font-size: 13px;
  font-weight: 620;
}

.pricing-card li svg {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--teal);
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding-top: 0;
}

.pricing-clean-layout {
  display: grid;
  gap: 24px;
  padding-top: 38px;
}

.pricing-card {
  overflow: hidden;
  grid-template-rows: none;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(8, 117, 111, 0.13);
  border-radius: 26px;
  background:
    radial-gradient(circle at 86% 12%, rgba(118, 210, 181, 0.18), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(244, 250, 249, 0.96));
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), rgba(118, 210, 181, 0.84), rgba(49, 130, 206, 0.62));
  opacity: 0.78;
}

.pricing-card.featured::before {
  height: 5px;
  opacity: 1;
}

.pricing-card-top {
  min-height: auto;
  padding-right: 104px;
}

.pricing-card-top p {
  max-width: 560px;
  color: var(--text);
  font-size: 15px;
}

.pricing-price-block {
  min-height: auto;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 7px 14px;
  padding: 16px 18px;
}

.pricing-price-line {
  grid-column: 1 / -1;
}

.pricing-price-line strong {
  font-size: clamp(36px, 4vw, 54px);
}

.pricing-billing-note,
.pricing-vat-note,
.pricing-discount-note {
  min-width: 0;
}

.pricing-module-panel {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(8, 117, 111, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(240, 250, 247, 0.72));
}

.pricing-module-kicker {
  color: var(--teal);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-module-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pricing-module-chip {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid rgba(8, 117, 111, 0.12);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 780;
  box-shadow: 0 10px 24px rgba(16, 26, 25, 0.05);
  transition:
    transform var(--interactive-transition),
    box-shadow var(--interactive-transition),
    border-color var(--interactive-transition);
}

.pricing-module-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(8, 117, 111, 0.28);
  box-shadow: 0 16px 30px rgba(8, 117, 111, 0.1);
}

.pricing-module-chip svg {
  width: 17px;
  height: 17px;
  color: var(--teal);
}

.pricing-module-chip.tone-blue svg {
  color: #2878d9;
}

.pricing-module-chip.tone-amber svg {
  color: #c88913;
}

.pricing-regie-layer {
  display: grid;
  gap: 12px;
  padding: 15px;
  border: 1px solid rgba(8, 117, 111, 0.14);
  border-radius: 20px;
  background:
    radial-gradient(circle at 96% 0%, rgba(118, 210, 181, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(4, 63, 59, 0.96), rgba(8, 117, 111, 0.88));
  box-shadow:
    0 18px 34px rgba(4, 63, 59, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.pricing-regie-layer > div:first-child {
  display: grid;
  gap: 3px;
}

.pricing-regie-layer > div:first-child span {
  color: rgba(195, 242, 225, 0.96);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-regie-layer > div:first-child strong {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.24;
  font-weight: 820;
}

.pricing-regie-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.pricing-regie-points a {
  min-width: 0;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 8px;
  border: 1px solid rgba(195, 242, 225, 0.18);
  border-radius: 13px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 780;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.pricing-regie-points a:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.pricing-regie-points svg {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  color: var(--mint);
}

.pricing-regie-overview {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 22px;
  padding: 22px;
  border: 1px solid rgba(8, 117, 111, 0.16);
  border-radius: 26px;
  background:
    radial-gradient(circle at 96% 0%, rgba(118, 210, 181, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(4, 63, 59, 0.97), rgba(8, 117, 111, 0.9));
  box-shadow:
    0 28px 58px rgba(4, 63, 59, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.pricing-regie-copy {
  display: grid;
  gap: 5px;
}

.pricing-regie-copy span {
  color: rgba(195, 242, 225, 0.95);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-regie-copy strong {
  color: #ffffff;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.08;
  font-weight: 840;
  text-wrap: balance;
}

.pricing-regie-copy p {
  max-width: 560px;
  color: rgba(238, 252, 247, 0.82);
  font-size: 15px;
  line-height: 1.55;
}

.pricing-regie-overview .pricing-regie-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-summary {
  min-height: auto;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.32;
  font-weight: 780;
  text-wrap: balance;
}

.pricing-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 8px;
}

.pricing-card .pricing-highlights li {
  min-width: 0;
  min-height: 62px;
  align-items: start;
  padding: 10px;
  border: 1px solid rgba(8, 117, 111, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: normal;
}

.pricing-card .pricing-highlights li svg {
  flex: 0 0 auto;
}

.pricing-card .pricing-highlights li span {
  min-width: 0;
}

.pricing-scenario {
  min-height: auto;
  border-left: 0;
  border-radius: 18px;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(8, 117, 111, 0.08), rgba(255, 255, 255, 0.76));
}

.pricing-trial-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
}

.pricing-cta-note {
  min-height: auto;
  text-align: left;
}

.pricing-included-details {
  border-top: 1px solid var(--line);
  padding-top: 8px;
}

.pricing-included-details summary {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--teal);
  font-size: 13px;
  font-weight: 820;
}

.pricing-included-details summary::after {
  content: "+";
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(8, 117, 111, 0.14);
  border-radius: 999px;
  color: var(--teal);
  background: rgba(232, 248, 244, 0.7);
}

.pricing-included-details[open] summary::after {
  content: "-";
}

.pricing-included-details ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
  padding-top: 8px;
}

.pricing-included-details li {
  font-size: 12px;
}

.package-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  color: var(--teal);
  font-weight: 760;
  transition:
    color var(--interactive-transition),
    gap var(--interactive-transition),
    transform var(--interactive-transition);
}

.package-link svg {
  width: 18px;
  height: 18px;
}

.demo-page {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(118, 210, 181, 0.11), transparent 30%),
    radial-gradient(circle at 86% 16%, rgba(30, 111, 217, 0.07), transparent 28%),
    var(--soft);
}

.demo-grid {
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 500px);
  align-items: center;
  gap: 52px;
}

.demo-copy .laptop {
  margin-top: 10px;
}

.demo-hero-title {
  width: min(100%, 680px);
  display: grid;
  gap: 0;
}

.demo-hero-title span {
  display: block;
  color: var(--teal);
  font-size: clamp(38px, 5.6vw, 66px);
  line-height: 1.06;
  font-weight: 690;
  letter-spacing: 0;
  text-transform: none;
  text-wrap: balance;
}

.demo-browser-frame {
  margin-top: 8px;
  max-width: 720px;
  background: var(--surface);
}

.demo-browser-frame img {
  aspect-ratio: 1628 / 795;
  object-fit: contain;
  object-position: center;
  background: var(--surface);
}

.demo-trustpoints {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.demo-trustpoints span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(8, 117, 111, 0.14);
  border-radius: 999px;
  color: var(--teal);
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 720;
  box-shadow: 0 12px 24px rgba(16, 26, 25, 0.05);
}

.demo-trustpoints svg {
  width: 16px;
  height: 16px;
}

.selected-package-card {
  width: min(100%, 560px);
  display: grid;
  gap: 5px;
  padding: 16px 18px;
  border: 1px solid rgba(8, 117, 111, 0.16);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(118, 210, 181, 0.18), transparent 34%),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 36px rgba(16, 26, 25, 0.07);
}

.selected-package-card span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.selected-package-card strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.16;
}

.selected-package-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.demo-choice-block {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(8, 117, 111, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(249, 253, 252, 0.78));
  box-shadow:
    0 18px 36px rgba(16, 26, 25, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.demo-choice-block > strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.25;
}

.demo-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.demo-choice-card {
  min-height: 118px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(8, 117, 111, 0.12);
  border-radius: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
  text-align: left;
  box-shadow: 0 12px 24px rgba(16, 26, 25, 0.04);
  transition:
    color var(--interactive-transition),
    border-color var(--interactive-transition),
    background-color var(--interactive-transition),
    box-shadow var(--interactive-transition),
    transform var(--interactive-transition);
}

.demo-choice-card span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.25;
}

.demo-choice-card small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.demo-choice-card:hover,
.demo-choice-card.active {
  transform: translateY(-2px);
  border-color: rgba(8, 117, 111, 0.36);
  background:
    radial-gradient(circle at top right, rgba(118, 210, 181, 0.16), transparent 38%),
    rgba(255, 255, 255, 0.98);
  box-shadow:
    0 18px 34px rgba(8, 117, 111, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.demo-choice-card.active span {
  color: var(--teal);
}

.demo-form {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(8, 117, 111, 0.14);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(118, 210, 181, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 251, 0.96));
  box-shadow:
    0 30px 70px rgba(16, 26, 25, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.demo-form h2 {
  font-size: 26px;
  line-height: 1.22;
  font-weight: 650;
}

.demo-form-progress {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.demo-form-progress span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 760;
}

.demo-form-progress span.is-active {
  color: var(--surface);
  border-color: transparent;
  background: var(--teal);
  box-shadow: 0 12px 24px rgba(8, 117, 111, 0.2);
}

.form-step {
  display: grid;
  gap: 14px;
}

.form-step[hidden] {
  display: none;
}

.form-step-copy {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid rgba(8, 117, 111, 0.1);
  border-radius: 16px;
  background: rgba(240, 248, 246, 0.72);
}

.form-step-copy strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
}

.form-step-copy p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.demo-form label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 0 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  transition:
    border-color var(--interactive-transition),
    box-shadow var(--interactive-transition),
    background-color var(--interactive-transition);
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
  border-color: rgba(8, 117, 111, 0.46);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(8, 117, 111, 0.08);
  outline: 0;
}

.demo-form textarea {
  min-height: 112px;
  padding-top: 12px;
  padding-bottom: 12px;
  resize: vertical;
}

.demo-form .button {
  width: 100%;
  margin-top: 4px;
}

.demo-form-actions {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 10px;
}

.demo-form .button:disabled {
  opacity: 0.7;
  cursor: wait;
}

.form-note {
  min-height: 24px;
  color: var(--muted);
  font-size: 13px;
}

.form-note.success {
  color: var(--teal);
  font-weight: 760;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.faq-visual {
  min-height: 280px;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--surface);
  background: var(--teal-dark);
  box-shadow: var(--shadow);
}

.faq-visual svg {
  width: 72px;
  height: 72px;
  color: var(--mint);
}

.faq-visual span {
  font-size: 24px;
  font-weight: 650;
}

.faq-list {
  width: min(920px, calc(100% - 48px));
  display: grid;
  gap: 12px;
}

.contact-hero {
  background:
    radial-gradient(circle at 16% 14%, rgba(118, 210, 181, 0.14), transparent 30%),
    radial-gradient(circle at 86% 12%, rgba(30, 111, 217, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(243, 247, 246, 0.88)),
    var(--soft);
}

.contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.44fr);
  align-items: start;
  gap: 42px;
}

.contact-copy {
  display: grid;
  align-content: center;
  gap: 20px;
}

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

.contact-info-card,
.contact-action-card {
  border: 1px solid rgba(8, 117, 111, 0.13);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(118, 210, 181, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 253, 252, 0.94));
  box-shadow:
    0 20px 42px rgba(16, 26, 25, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.contact-info-card {
  min-height: 124px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: start;
  gap: 14px;
  padding: 20px 18px;
  transition:
    transform var(--interactive-transition),
    border-color var(--interactive-transition),
    box-shadow var(--interactive-transition);
}

.contact-info-card:hover {
  transform: translateY(-3px);
  border-color: rgba(8, 117, 111, 0.28);
  box-shadow: 0 26px 52px rgba(16, 26, 25, 0.12);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--teal);
  background: rgba(8, 117, 111, 0.08);
}

.contact-info-icon svg {
  width: 21px;
  height: 21px;
}

.contact-info-card span,
.contact-action-card span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-info-card strong {
  display: block;
  margin-top: 7px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.45;
}

.contact-info-card a {
  color: var(--teal);
  text-decoration: none;
}

.contact-action-card {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 30px;
  position: sticky;
  top: 120px;
}

.contact-action-top {
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  gap: 16px;
}

.contact-action-top img {
  width: 76px;
  border-radius: 20px;
  box-shadow: 0 16px 32px rgba(4, 63, 59, 0.14);
}

.contact-action-card h2 {
  font-size: 26px;
  line-height: 1.22;
  font-weight: 650;
}

.contact-action-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.contact-route {
  display: grid;
  gap: 9px;
  padding: 14px;
  border: 1px solid rgba(8, 117, 111, 0.12);
  border-radius: 18px;
  background: rgba(240, 248, 246, 0.68);
}

.contact-route strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
}

.contact-route span {
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: center;
  gap: 9px;
  color: var(--text);
  font-size: 13px;
  font-weight: 560;
  letter-spacing: 0;
  text-transform: none;
}

.contact-route em {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--surface);
  background: var(--teal);
  font-style: normal;
  font-size: 12px;
  font-weight: 760;
}

.about-hero,
.jobs-hero {
  background:
    radial-gradient(circle at 18% 18%, rgba(118, 210, 181, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(244, 250, 249, 0.98), rgba(255, 255, 255, 0.98));
}

.about-hero-grid {
  align-items: center;
}

.about-identity-card,
.jobs-card {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid rgba(8, 117, 111, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(118, 210, 181, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 252, 251, 0.96));
  box-shadow:
    0 28px 62px rgba(16, 26, 25, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.about-identity-card img {
  width: 76px;
  height: 76px;
  border-radius: 20px;
  box-shadow: 0 18px 32px rgba(4, 63, 59, 0.18);
}

.about-identity-card strong,
.jobs-card strong {
  color: var(--ink);
  font-size: 26px;
  line-height: 1.16;
  font-weight: 650;
}

.about-identity-card span {
  color: var(--teal);
  font-size: 15px;
  font-weight: 720;
}

.about-identity-card p,
.jobs-card p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}

.about-story-section,
.about-values-section,
.about-timeline-section {
  background: var(--surface);
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 42px;
  align-items: center;
}

.about-story-copy {
  display: grid;
  gap: 16px;
}

.about-story-copy h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.18;
}

.about-story-copy p {
  color: var(--text);
  font-size: 17px;
  line-height: 1.78;
}

.about-screen img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top left;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.about-value-card {
  min-height: 250px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(8, 117, 111, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 251, 0.96));
  box-shadow: 0 18px 40px rgba(16, 26, 25, 0.07);
}

.about-value-card div,
.jobs-card div {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--teal);
  background: rgba(8, 117, 111, 0.08);
}

.about-value-card svg,
.jobs-card svg {
  width: 20px;
  height: 20px;
}

.about-value-card h3 {
  color: var(--ink);
  font-size: 18px;
}

.about-value-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.about-timeline-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1.45fr);
  gap: 28px;
  align-items: start;
  padding: 30px;
  border: 1px solid rgba(8, 117, 111, 0.13);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(118, 210, 181, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 251, 250, 0.96));
  box-shadow: 0 24px 58px rgba(16, 26, 25, 0.08);
}

.about-timeline-copy {
  display: grid;
  gap: 12px;
}

.about-timeline-copy h2 {
  font-size: clamp(24px, 2.4vw, 34px);
}

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

.about-timeline article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 180px;
  padding: 18px;
  border: 1px solid rgba(8, 117, 111, 0.11);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.about-timeline article > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--surface);
  background: var(--teal);
  font-size: 14px;
  font-weight: 760;
}

.about-timeline strong {
  color: var(--ink);
  font-size: 17px;
}

.about-timeline p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.contact-action-points {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(8, 117, 111, 0.11);
  border-radius: 16px;
  background: rgba(240, 248, 246, 0.74);
}

.contact-action-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 13.5px;
  font-weight: 720;
  letter-spacing: 0;
  text-transform: none;
}

.contact-action-points svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
}

details {
  overflow: hidden;
}

summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  padding: 18px 22px;
  color: var(--ink);
  font-size: 16.5px;
  font-weight: 720;
  cursor: pointer;
  transition: color var(--interactive-transition);
}

details p {
  padding: 0 22px 22px;
  font-size: 16px;
}

.route-section,
.club-problem-section,
.scan-section {
  background:
    radial-gradient(circle at 18% 8%, rgba(118, 210, 181, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 249, 0.96));
}

.route-section .section-heading p {
  max-width: 720px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

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

.route-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 300px;
  padding: 26px;
  border: 1px solid rgba(8, 117, 111, 0.14);
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0, rgba(118, 210, 181, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.94);
  box-shadow:
    0 24px 52px rgba(16, 26, 25, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.route-card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--teal);
  background: rgba(232, 248, 244, 0.9);
}

.route-card-icon svg {
  width: 22px;
  height: 22px;
}

.route-card > span,
.session-note,
.pricing-launch-kicker {
  color: var(--teal);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.route-card h3 {
  font-size: 24px;
  line-height: 1.18;
  font-weight: 650;
}

.route-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

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

.club-problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 54px;
}

.club-problem-grid h2 {
  max-width: 680px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.14;
  font-weight: 650;
}

.club-problem-grid p {
  max-width: 620px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.problem-list,
.intent-checks,
.trial-first-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.problem-list span,
.intent-checks span,
.trial-first-actions span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(8, 117, 111, 0.13);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 620;
  box-shadow: 0 10px 24px rgba(16, 26, 25, 0.04);
}

.problem-list svg,
.intent-checks svg {
  width: 17px;
  height: 17px;
  color: var(--teal);
}

.intent-page {
  background:
    radial-gradient(circle at 18% 18%, rgba(118, 210, 181, 0.13), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(30, 111, 217, 0.08), transparent 28%),
    var(--soft);
}

.intent-hero-centered {
  width: min(880px, 100%);
  display: grid;
  justify-items: center;
  gap: 18px;
  margin: 0 auto;
  text-align: center;
}

.intent-hero-centered h1 {
  color: var(--teal);
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.03;
  font-weight: 690;
}

.solution-panel,
.conversion-form,
.scan-form,
.scan-result-card {
  border: 1px solid rgba(8, 117, 111, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(118, 210, 181, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 64px rgba(16, 26, 25, 0.1);
}

.solution-panel {
  display: grid;
  gap: 12px;
  padding: 28px;
}

.solution-hero .section-inner {
  padding-top: 92px;
  padding-bottom: 96px;
}

.solution-hero-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
}

.solution-hero-copy h1 {
  max-width: 680px;
  color: var(--ink);
  font-size: clamp(42px, 5.2vw, 68px);
  line-height: 1.04;
  font-weight: 660;
  letter-spacing: 0;
  text-wrap: balance;
}

.solution-hero-copy .lead {
  max-width: 660px;
  color: rgba(20, 32, 30, 0.76);
  font-size: 18px;
  line-height: 1.72;
}

.solution-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.solution-proof-row span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(8, 117, 111, 0.12);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 650;
  box-shadow: 0 14px 30px rgba(16, 26, 25, 0.05);
}

.solution-proof-row svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
}

.solution-visual-card {
  position: relative;
  min-height: 500px;
  padding: 18px 18px 94px;
  border: 1px solid rgba(8, 117, 111, 0.13);
  border-radius: 32px;
  background:
    radial-gradient(circle at 18% 0%, rgba(118, 210, 181, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(243, 250, 248, 0.9));
  box-shadow:
    0 30px 72px rgba(16, 26, 25, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.solution-visual-card .browser-frame {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(16, 26, 25, 0.12);
}

.solution-visual-card .browser-frame img {
  min-height: 345px;
  object-fit: cover;
  object-position: left top;
}

.solution-visual-note {
  position: absolute;
  left: 42px;
  right: 42px;
  bottom: 28px;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(8, 117, 111, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 46px rgba(16, 26, 25, 0.12);
}

.solution-visual-note img {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  box-shadow: 0 14px 28px rgba(4, 63, 59, 0.14);
}

.solution-visual-note div {
  display: grid;
  gap: 4px;
}

.solution-visual-note strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.solution-visual-note span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.rich-solution-panel {
  gap: 10px;
  padding: 30px;
}

.rich-solution-panel span {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(8, 117, 111, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.66);
}

.solution-domain-section .section-heading p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.solution-domain-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.solution-domain-card {
  min-height: 230px;
  padding: 24px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(118, 210, 181, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.94);
}

.solution-domain-card h3 {
  color: var(--ink);
  font-size: 19px;
  line-height: 1.22;
  font-weight: 650;
}

.solution-domain-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.62;
}

.solution-route-section .route-card {
  min-height: 330px;
}

.solution-final-cta .section-inner {
  padding-top: 96px;
  padding-bottom: 96px;
}

.solution-panel span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 620;
}

.solution-panel strong {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 23px;
  line-height: 1.25;
}

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

.scan-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.62fr);
  align-items: start;
  gap: 28px;
}

.scan-form,
.scan-result-card,
.conversion-form {
  padding: 28px;
}

.scan-form-header {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.scan-form-header h2,
.conversion-form h2,
.scan-result-card h2 {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 650;
}

.scan-form-header p,
.conversion-form p,
.scan-result-card p,
.lead-form p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.scan-dimension {
  display: grid;
  gap: 18px;
  margin: 0 0 22px;
  padding: 20px;
  border: 1px solid rgba(8, 117, 111, 0.12);
  border-radius: 20px;
  background: rgba(248, 252, 251, 0.76);
}

.scan-dimension legend {
  padding: 0 8px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.scan-dimension-intro {
  margin-top: -8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.scan-question {
  display: grid;
  gap: 12px;
}

.scan-question strong {
  font-size: 15px;
  line-height: 1.45;
}

.scan-question p {
  max-width: 760px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

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

.answer-grid label {
  cursor: pointer;
}

.answer-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.answer-grid span {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 12px;
  border: 1px solid rgba(8, 117, 111, 0.14);
  border-radius: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 650;
  text-align: left;
  transition: border-color var(--interactive-transition), background var(--interactive-transition), transform var(--interactive-transition);
}

.answer-grid input:checked + span {
  border-color: rgba(8, 117, 111, 0.52);
  color: var(--teal);
  background: rgba(232, 248, 244, 0.95);
  transform: translateY(-1px);
}

.scan-result-card {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 18px;
}

.club-score {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--teal);
}

.club-score strong {
  font-size: 64px;
  line-height: 0.95;
  font-weight: 720;
}

.club-score span {
  color: var(--muted);
  font-size: 22px;
  font-weight: 650;
}

.score-bars {
  display: grid;
  gap: 10px;
}

.score-bar-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px 12px;
  align-items: center;
}

.score-bar-row span,
.score-bar-row strong {
  font-size: 12px;
  font-weight: 720;
}

.score-bar-row i {
  grid-column: 1 / -1;
  overflow: hidden;
  height: 8px;
  border-radius: 999px;
  background: rgba(8, 117, 111, 0.1);
}

.score-bar-row b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), #2874d2);
}

.score-insights {
  display: grid;
  gap: 8px;
}

.score-insights p {
  display: grid;
  gap: 3px;
  padding: 12px;
  border: 1px solid rgba(8, 117, 111, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.74);
}

.lead-form,
.conversion-form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  gap: 12px;
}

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

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

.lead-form label,
.conversion-form label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.lead-form input,
.conversion-form input,
.conversion-form select {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid rgba(8, 117, 111, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
}

.consent-label {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--muted) !important;
  font-size: 12px !important;
  line-height: 1.45;
}

.consent-label input {
  width: auto;
  min-height: auto;
  margin-top: 2px;
}

.scan-end-cta,
.session-note {
  padding: 14px;
  border: 1px solid rgba(8, 117, 111, 0.13);
  border-radius: 16px;
  background: rgba(232, 248, 244, 0.7);
}

.trial-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.trial-benefit-grid article {
  padding: 16px;
  border: 1px solid rgba(8, 117, 111, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.trial-benefit-grid strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}

.trial-benefit-grid p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.trial-page .section-inner {
  padding-top: 92px;
  padding-bottom: 96px;
}

.trial-grid {
  grid-template-columns: minmax(420px, 0.82fr) minmax(560px, 1.18fr);
  align-items: center;
}

.trial-copy {
  display: grid;
  gap: 22px;
}

.trial-copy h1 {
  color: var(--ink);
  font-size: clamp(42px, 5.2vw, 68px);
  line-height: 1.04;
  font-weight: 670;
}

.trial-copy .lead {
  max-width: 660px;
}

.trial-start-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(8, 117, 111, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(118, 210, 181, 0.12), transparent 36%),
    rgba(255, 255, 255, 0.88);
  box-shadow:
    0 26px 56px rgba(16, 26, 25, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.trial-start-header {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
}

.trial-start-header img {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(4, 63, 59, 0.16);
}

.trial-start-header strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 660;
}

.trial-start-header p,
.trial-step-list p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.trial-step-list {
  display: grid;
  gap: 10px;
}

.trial-step-list article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(8, 117, 111, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.trial-step-list article > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--surface);
  background: var(--teal);
  font-size: 14px;
  font-weight: 760;
}

.trial-step-list strong {
  display: block;
  margin-bottom: 3px;
  font-size: 15px;
}

.trial-assurance-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.trial-assurance-row span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(8, 117, 111, 0.13);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 680;
}

.trial-assurance-row svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
}

.trial-form {
  gap: 18px;
  padding: 34px;
  border-radius: 34px;
}

.trial-form-header {
  display: grid;
  gap: 8px;
  padding-bottom: 8px;
}

.trial-form-header h2 {
  font-size: 34px;
  line-height: 1.12;
}

.trial-action-picker {
  display: grid;
  gap: 12px;
  margin: 2px 0 0;
  padding: 0;
  border: 0;
}

.trial-action-picker legend {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 760;
}

.trial-action-picker > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.trial-action-picker label {
  cursor: pointer;
}

.trial-action-picker input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.trial-action-picker label > span {
  min-height: 142px;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 5px;
  padding: 15px;
  border: 1px solid rgba(8, 117, 111, 0.13);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 251, 0.9));
  transition:
    border-color var(--interactive-transition),
    background var(--interactive-transition),
    box-shadow var(--interactive-transition),
    transform var(--interactive-transition);
}

.trial-action-picker svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
}

.trial-action-picker strong {
  color: var(--teal);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trial-action-picker em {
  color: var(--ink);
  font-size: 14px;
  font-style: normal;
  font-weight: 720;
  line-height: 1.25;
}

.trial-action-picker small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.trial-action-picker input:checked + span {
  border-color: rgba(8, 117, 111, 0.46);
  background:
    radial-gradient(circle at 100% 0%, rgba(118, 210, 181, 0.16), transparent 34%),
    rgba(232, 248, 244, 0.88);
  box-shadow:
    0 16px 34px rgba(8, 117, 111, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transform: translateY(-1px);
}

.trial-form-note {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(8, 117, 111, 0.12);
  border-radius: 16px;
  color: var(--muted);
  background: rgba(232, 248, 244, 0.52);
  font-size: 13px;
  line-height: 1.45;
}

.trial-form-note svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
}

.clubsession-page .section-inner {
  padding-top: 92px;
  padding-bottom: 96px;
}

.clubsession-grid {
  grid-template-columns: minmax(420px, 0.82fr) minmax(560px, 1.18fr);
  align-items: center;
}

.clubsession-copy {
  display: grid;
  gap: 22px;
}

.clubsession-copy h1 {
  color: var(--ink);
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 670;
}

.clubsession-copy .lead {
  max-width: 660px;
}

.clubsession-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(8, 117, 111, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(40, 116, 210, 0.1), transparent 35%),
    rgba(255, 255, 255, 0.88);
  box-shadow:
    0 26px 56px rgba(16, 26, 25, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.clubsession-panel-header {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
}

.clubsession-panel-header > div:first-child {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--surface);
  background: var(--teal);
  box-shadow: 0 14px 28px rgba(8, 117, 111, 0.18);
}

.clubsession-panel-header svg {
  width: 24px;
  height: 24px;
}

.clubsession-panel-header strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 660;
}

.clubsession-panel-header p,
.clubsession-agenda p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.clubsession-agenda {
  display: grid;
  gap: 10px;
}

.clubsession-agenda article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(8, 117, 111, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.clubsession-agenda article > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--teal);
  background: rgba(232, 248, 244, 0.96);
  font-size: 14px;
  font-weight: 760;
}

.clubsession-agenda strong {
  display: block;
  margin-bottom: 3px;
  font-size: 15px;
}

.clubsession-outcomes {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.clubsession-outcomes span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(8, 117, 111, 0.13);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 680;
}

.clubsession-outcomes svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
}

.clubsession-form {
  gap: 18px;
  padding: 34px;
  border-radius: 34px;
}

.clubsession-form-header {
  display: grid;
  gap: 8px;
  padding-bottom: 8px;
}

.clubsession-form-header h2 {
  font-size: 34px;
  line-height: 1.12;
}

.session-topic-picker {
  display: grid;
  gap: 12px;
  margin: 2px 0 0;
  padding: 0;
  border: 0;
}

.session-topic-picker legend {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 760;
}

.session-topic-picker > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.session-topic-picker label {
  cursor: pointer;
}

.session-topic-picker input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.session-topic-picker label > span {
  min-height: 104px;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 4px 10px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(8, 117, 111, 0.13);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 251, 0.9));
  transition:
    border-color var(--interactive-transition),
    background var(--interactive-transition),
    box-shadow var(--interactive-transition),
    transform var(--interactive-transition);
}

.session-topic-picker svg {
  grid-row: span 2;
  width: 22px;
  height: 22px;
  color: var(--teal);
}

.session-topic-picker strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 720;
  line-height: 1.25;
}

.session-topic-picker small {
  grid-column: 2;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.session-topic-picker input:checked + span {
  border-color: rgba(8, 117, 111, 0.46);
  background:
    radial-gradient(circle at 100% 0%, rgba(118, 210, 181, 0.16), transparent 34%),
    rgba(232, 248, 244, 0.88);
  box-shadow:
    0 16px 34px rgba(8, 117, 111, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transform: translateY(-1px);
}

.session-context-label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.session-context-label textarea {
  width: 100%;
  padding: 13px;
  border: 1px solid rgba(8, 117, 111, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  font: inherit;
  resize: vertical;
}

.form-note.success {
  color: var(--teal);
  font-weight: 720;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-inner {
  min-height: 108px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "brand nav"
    "brand company";
  align-items: center;
  gap: 8px 42px;
  padding: 24px 0;
}

.footer-brand {
  grid-area: brand;
}

.footer-inner div {
  display: grid;
  gap: 3px;
}

.footer-inner strong {
  color: var(--teal);
  font-size: 15px;
}

.footer-inner span {
  color: var(--muted);
  font-size: 14px;
}

.footer-inner .footer-brand-copy strong {
  color: var(--ink);
  font-size: 19px;
  line-height: 1.1;
}

.footer-inner .footer-brand-copy span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.3;
}

.footer-inner nav {
  grid-area: nav;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.footer-inner nav a {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  transition:
    color var(--interactive-transition),
    transform var(--interactive-transition);
}

.footer-inner nav a:hover {
  color: var(--teal);
  transform: translateY(-1px);
}

.footer-company {
  grid-area: company;
  display: flex !important;
  flex-wrap: wrap;
  align-self: start;
  justify-content: flex-end;
  gap: 6px 16px !important;
  padding-top: 0;
  border-top: 0;
}

.footer-company span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.support-card:hover,
.stakeholder-card:hover,
.step-card:hover,
.pricing-card:hover,
.problem-card:hover,
details:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 20px 42px rgba(16, 26, 25, 0.14);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 22px 46px rgba(16, 26, 25, 0.14);
}

.feature-card:hover img {
  transform: scale(1.024);
  filter: saturate(1.02);
}

.feature-card:hover a {
  background: linear-gradient(180deg, rgba(243, 247, 246, 0.56), rgba(255, 255, 255, 0));
}

.feature-card:hover h2,
.package-link:hover,
details:hover summary {
  color: var(--teal);
}

.hero-copy h1,
.hero-copy h1 em,
.page-hero h1,
.section-heading h2,
.support-section .section-heading h2,
.trust-copy h2,
.conversion-card h2,
.start-grid h2,
.feature-spotlight-copy h2,
.feature-card h2,
.feature-highlight-card h3,
.problem-card h2,
.outcome-copy h2,
.outcome-sidecard strong,
.outcome-footer-copy strong,
.pricing-hero-title span,
.pricing-launch-panel strong,
.demo-hero-title span,
.demo-form h2,
.demo-choice-block > strong,
.selected-package-card strong,
.contact-action-card h2,
.faq-visual span,
summary {
  font-weight: 650;
  letter-spacing: 0;
  text-wrap: balance;
}

.trust-section .trust-copy h2 {
  max-width: 560px;
  color: rgba(20, 32, 30, 0.92);
  font-size: clamp(22px, 2.15vw, 30px);
  line-height: 1.38;
  font-weight: 540;
  letter-spacing: 0;
  text-wrap: pretty;
}

.trust-section .trust-copy {
  gap: 16px;
}

.trust-section .eyebrow {
  width: fit-content;
}

.pricing-hero-title span,
.demo-hero-title span {
  text-transform: none;
}

summary {
  line-height: 1.42;
}

.package-link:hover {
  gap: 15px;
  transform: translateX(2px);
}

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

  .hero-copy > *,
  .hero-visual,
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-fade-in {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1180px) {
  .hero-grid,
  .page-hero-grid,
  .control-grid {
    grid-template-columns: 1fr;
  }

  .route-grid,
  .club-problem-grid,
  .scan-grid,
  .trial-grid,
  .clubsession-grid {
    grid-template-columns: 1fr;
  }

  .scan-result-card {
    position: static;
  }

  .hero-copy,
  .demo-copy,
  .control-copy {
    max-width: 860px;
  }

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

  .compact-stakeholders,
  .trial-benefit-grid {
    grid-template-columns: 1fr;
  }

  .trial-action-picker > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .session-topic-picker > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .pricing-card.featured {
    transform: none;
  }

  .dashboard-stack {
    min-height: 460px;
  }
}

.blog-frame-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 14px 40px;
  border-bottom: 1px solid rgba(215, 229, 225, 0.86);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
}

.blog-frame-brand {
  display: inline-flex;
  border-radius: var(--radius);
}

.blog-frame-brand img {
  width: 160px;
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(4, 63, 59, 0.12);
}

.blog-frame-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 6px;
  border: 1px solid rgba(8, 117, 111, 0.1);
  border-radius: 999px;
  background: rgba(244, 250, 249, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 14px 30px rgba(16, 26, 25, 0.05);
}

.blog-frame-nav a,
.blog-frame-actions a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 13px;
  color: var(--text);
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
}

.blog-frame-nav a.active,
.blog-frame-nav a:hover {
  background: #ffffff;
  color: var(--teal);
  box-shadow: 0 12px 24px rgba(8, 117, 111, 0.08);
}

.blog-frame-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.blog-frame-actions a {
  min-height: 46px;
  padding-inline: 16px;
  background: var(--teal);
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(8, 117, 111, 0.18);
}

@media (min-width: 1181px) and (max-width: 1500px) {
  .blog-frame-header {
    gap: 18px;
    padding-inline: 24px;
  }

  .blog-frame-brand img {
    width: 150px;
  }

  .blog-frame-nav {
    gap: 2px;
    padding: 5px;
  }

  .blog-frame-nav a {
    min-height: 38px;
    padding-inline: 10px;
    font-size: 13px;
  }

  .blog-frame-actions {
    gap: 8px;
  }

  .blog-frame-actions a {
    min-height: 42px;
    padding-inline: 13px;
    font-size: 13px;
  }
}

.blog-frame-actions a.secondary {
  background: #ffffff;
  color: var(--teal);
  border: 1px solid rgba(8, 117, 111, 0.18);
  box-shadow: 0 12px 26px rgba(15, 53, 49, 0.06);
}

.blog-static-page {
  min-height: calc(100vh - 82px);
  padding: clamp(34px, 6vw, 68px) clamp(18px, 4vw, 56px) 72px;
  background:
    linear-gradient(120deg, rgba(8, 117, 111, 0.055) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, #f3f8f7 0%, #ffffff 42%, #eef7f5 100%);
  background-size: 100% 100%, auto;
  color: var(--ink);
}

.blog-static-article {
  width: min(1120px, 100%);
  min-width: 0;
  margin: 0 auto;
}

.blog-index-shell {
  display: grid;
  gap: 34px;
}

.blog-index-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(8, 117, 111, 0.14);
}

.blog-index-hero > * {
  min-width: 0;
}

.blog-static-article h1 {
  max-width: 720px;
  margin: 12px 0 18px;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.blog-static-article .lead {
  max-width: 660px;
  color: #405955;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.62;
}

.blog-knowledge-visual {
  position: relative;
  min-height: 250px;
  min-width: 0;
  display: grid;
  align-content: end;
  gap: 16px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(8, 117, 111, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(232, 247, 243, 0.82)),
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(8, 117, 111, 0.04) 28px 29px);
  box-shadow: 0 24px 58px rgba(15, 53, 49, 0.1);
}

.blog-knowledge-visual::before {
  content: "";
  position: absolute;
  inset: 30px;
  border: 1px dashed rgba(8, 117, 111, 0.22);
  border-radius: 50%;
}

.blog-knowledge-visual::after {
  content: "";
  position: absolute;
  right: 34px;
  top: 34px;
  width: 92px;
  height: 92px;
  border: 18px solid rgba(91, 201, 155, 0.2);
  border-top-color: rgba(30, 111, 217, 0.28);
  border-radius: 50%;
}

.blog-knowledge-visual span,
.blog-knowledge-visual strong,
.blog-knowledge-visual div {
  position: relative;
  z-index: 1;
}

.blog-knowledge-visual span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-knowledge-visual strong {
  max-width: 260px;
  font-size: 27px;
  line-height: 1.08;
}

.blog-knowledge-visual div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-knowledge-visual b {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid rgba(8, 117, 111, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #24413d;
  font-size: 12px;
}

.blog-index-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  min-width: 0;
}

.blog-index-card {
  position: relative;
  min-height: 390px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(8, 117, 111, 0.16);
  border-top: 3px solid var(--teal);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 44px rgba(15, 53, 49, 0.07);
  transition: transform var(--interactive-transition), box-shadow var(--interactive-transition), border-color var(--interactive-transition);
}

.blog-index-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(234, 248, 245, 0.42));
  opacity: 0.86;
}

.blog-index-card > * {
  position: relative;
  z-index: 1;
}

.blog-index-card:hover {
  transform: translateY(-3px);
  border-color: rgba(8, 117, 111, 0.3);
  box-shadow: 0 26px 58px rgba(15, 53, 49, 0.11);
}

.blog-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.blog-card-topline > span:last-child {
  color: #66807b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card-icon {
  position: relative;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #e8f5f2;
  color: var(--teal);
}

.blog-card-icon::before,
.blog-card-icon::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.blog-card-icon::before {
  width: 15px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 4px;
  opacity: 0.95;
}

.blog-card-icon::after {
  width: 8px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 5px 0 currentColor;
  transform: translateY(-1px);
}

.blog-card-copy {
  display: grid;
  gap: 10px;
}

.blog-index-card h2 {
  margin: 0;
  font-size: clamp(21px, 2.35vw, 29px);
  line-height: 1.13;
}

.blog-index-card h2 a {
  color: var(--ink);
  overflow-wrap: anywhere;
}

.blog-index-card p {
  margin: 0;
  color: #5a706c;
  line-height: 1.62;
}

.blog-card-visual {
  align-self: stretch;
  display: grid;
  gap: 9px;
  margin-top: auto;
  overflow: hidden;
  padding: 12px;
  border: 1px solid rgba(8, 117, 111, 0.13);
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 250, 249, 0.9)),
    repeating-linear-gradient(90deg, transparent 0 32px, rgba(8, 117, 111, 0.045) 32px 33px);
}

.blog-card-visual div {
  height: 23px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(8, 117, 111, 0.1);
}

.blog-card-visual i {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #5ec49d;
}

.blog-card-visual i:nth-child(2) { background: #83aee0; }
.blog-card-visual i:nth-child(3) { background: #dfbe62; }

.blog-card-visual span {
  margin-left: auto;
  color: #52716c;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card-visual b {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, currentColor, rgba(91, 201, 155, 0.5));
  color: var(--teal);
  opacity: 0.82;
}

.blog-card-visual em {
  display: inline-flex;
  width: fit-content;
  margin-top: 2px;
  padding: 5px 8px;
  border: 1px solid rgba(8, 117, 111, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #31504b;
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 4px;
  border-top: 1px solid rgba(8, 117, 111, 0.12);
}

.blog-card-footer span,
.blog-card-footer a {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.blog-card-footer a::after {
  content: " ->";
}

.blog-index-card.tone-blue {
  border-top-color: #1d70d5;
}

.blog-index-card.tone-blue .blog-card-icon {
  color: #1d70d5;
  background: #edf5ff;
}

.blog-index-card.tone-blue .blog-card-visual b {
  color: #1d70d5;
}

.blog-index-card.tone-mint {
  border-top-color: #15966b;
}

.blog-index-card.tone-mint .blog-card-icon {
  color: #15966b;
  background: #eaf8f1;
}

.blog-index-card.tone-mint .blog-card-visual b {
  color: #15966b;
}

.blog-index-card.tone-teal {
  border-top-color: var(--teal);
}

.blog-index-card.tone-teal .blog-card-icon {
  color: var(--teal);
  background: #e8f5f2;
}

.blog-index-card:hover .blog-card-visual {
  border-color: rgba(8, 117, 111, 0.24);
}

.blog-reading-page {
  padding-top: clamp(32px, 5vw, 62px);
}

.blog-reading-article {
  width: min(1140px, 100%);
}

.blog-reading-hero {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(8, 117, 111, 0.14);
}

.blog-reading-hero h1 {
  max-width: 920px;
  font-size: clamp(34px, 4.6vw, 56px);
}

.blog-back-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 20px;
  padding: 0 12px;
  border: 1px solid rgba(8, 117, 111, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.blog-back-link::before {
  content: "<-";
  margin-right: 8px;
}

.blog-static-meta {
  margin-top: 20px;
  color: #687d78;
  font-weight: 800;
}

.blog-reading-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  margin-top: 34px;
}

.blog-reading-aside {
  order: 2;
  position: sticky;
  top: 110px;
}

.blog-aside-panel {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(8, 117, 111, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(237, 248, 245, 0.8));
  box-shadow: 0 18px 42px rgba(15, 53, 49, 0.08);
}

.blog-aside-panel span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.blog-aside-panel strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.18;
}

.blog-aside-panel a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--teal);
  color: #ffffff;
  font-weight: 900;
}

.blog-static-content {
  max-width: 760px;
  min-width: 0;
  display: grid;
  gap: 20px;
  color: #243a37;
  font-size: 18px;
  line-height: 1.78;
}

.blog-static-content h2,
.blog-static-content h3 {
  margin: 22px 0 0;
  color: var(--ink);
  line-height: 1.15;
}

.blog-static-content h2 {
  font-size: clamp(27px, 3vw, 38px);
}

.blog-static-content h3 {
  font-size: clamp(21px, 2.4vw, 27px);
}

.blog-static-content a {
  color: var(--teal);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(8, 117, 111, 0.25);
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}

.blog-static-content ul,
.blog-static-content ol {
  margin: 0;
  padding-left: 1.35rem;
}

.blog-static-content li + li {
  margin-top: 8px;
}

.blog-static-content .key-takeaways,
.blog-static-content .table-of-contents {
  padding: 24px;
  border: 1px solid rgba(8, 117, 111, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 44px rgba(15, 53, 49, 0.06);
}

.blog-static-content .key-takeaways h2,
.blog-static-content .table-of-contents h2 {
  margin-top: 0;
  font-size: 24px;
}

.blog-static-content .autoseo-infographic {
  overflow: hidden;
  border: 1px solid rgba(8, 117, 111, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(15, 53, 49, 0.08);
}

.blog-frame-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 30px 40px;
  border-top: 1px solid rgba(215, 229, 225, 0.86);
  background: #ffffff;
}

.blog-frame-footer div {
  display: grid;
  gap: 3px;
}

.blog-frame-footer span {
  color: var(--muted);
}

.blog-frame-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.blog-frame-footer a {
  color: var(--teal);
  font-weight: 850;
}

@media (max-width: 1180px) {
  .blog-frame-header {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px 24px 14px;
  }

  .blog-frame-brand,
  .blog-frame-nav,
  .blog-frame-actions {
    justify-self: stretch;
  }

  .blog-frame-brand img {
    width: 150px;
  }

  .blog-frame-nav {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    border-radius: var(--radius);
    scrollbar-width: thin;
  }

  .blog-frame-nav a {
    flex: 0 0 auto;
  }

  .blog-frame-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-index-hero,
  .blog-reading-layout {
    grid-template-columns: 1fr;
  }

  .blog-reading-aside {
    position: static;
    order: -1;
  }

  .blog-static-content {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .blog-frame-header {
    position: relative;
    padding: 12px 14px 14px;
  }

  .blog-frame-nav {
    padding: 5px;
  }

  .blog-frame-nav a,
  .blog-frame-actions a {
    min-height: 38px;
    padding-inline: 11px;
    font-size: 13px;
  }

  .blog-frame-actions {
    grid-template-columns: 1fr;
  }

  .blog-static-page {
    min-height: auto;
    padding: 28px 14px 48px;
  }

  .blog-static-article h1 {
    font-size: clamp(32px, 10vw, 40px);
    line-height: 1.02;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .blog-static-article .lead {
    font-size: 17px;
  }

  .blog-index-hero {
    gap: 22px;
  }

  .blog-knowledge-visual {
    min-height: 210px;
    padding: 22px;
  }

  .blog-knowledge-visual strong {
    font-size: 23px;
  }

  .blog-index-grid {
    grid-template-columns: 1fr;
  }

  .blog-index-card {
    min-height: 0;
    padding: 20px;
  }

  .blog-card-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .blog-reading-hero {
    padding-bottom: 22px;
  }

  .blog-reading-layout {
    margin-top: 24px;
    gap: 24px;
  }

  .blog-static-content {
    gap: 18px;
    font-size: 16px;
    line-height: 1.72;
  }

  .blog-static-content .key-takeaways,
  .blog-static-content .table-of-contents {
    padding: 18px;
  }

  .blog-frame-footer {
    display: grid;
    padding: 26px 18px;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 24px;
  }

  .brand img {
    width: 152px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    width: auto;
    justify-self: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

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

  .nav-link {
    justify-content: space-between;
    padding: 0 14px;
  }

  .nav-dropdown {
    display: grid;
  }

  .dropdown-menu {
    position: static;
    width: auto;
    display: none;
    transform: none;
    box-shadow: none;
    margin: 4px 0 8px;
  }

  .nav-dropdown.open .dropdown-menu {
    display: grid;
    gap: 4px;
  }

  .dropdown-menu::before {
    display: none;
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-content: space-between;
    width: 100%;
  }

  .header-cta {
    min-height: 40px;
  }

  .support-grid,
  .feature-overview-grid,
  .problem-grid,
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .demo-grid,
  .contact-grid,
  .trust-panel,
  .start-grid,
  .about-story-grid,
  .about-timeline-panel,
  .outcome-grid,
  .conversion-card {
    grid-template-columns: 1fr;
  }

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

  .conversion-card {
    padding: 34px;
  }

  .conversion-section .section-inner {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .conversion-copy h2 {
    max-width: 100%;
  }

  .conversion-action {
    max-width: 420px;
  }

  .feature-visual-stack.is-portal {
    min-height: 500px;
  }

  .feature-visual-stack.is-planning {
    min-height: 620px;
  }

  .feature-visual-stack.is-canteen {
    min-height: 600px;
  }

  .feature-phone-frame {
    right: 0;
  }

  .feature-secondary-frame {
    right: 0;
    width: min(74%, 500px);
  }

  .steps {
    padding-left: 10px;
  }

  .demo-form {
    width: min(100%, 560px);
  }

  .demo-choice-grid {
    grid-template-columns: 1fr;
  }

  .about-timeline {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "nav"
      "company";
    justify-items: center;
    padding: 26px 0;
    text-align: center;
    gap: 16px;
  }

  .footer-inner nav {
    justify-content: center;
  }

  .footer-company {
    justify-content: center;
    text-align: center;
  }

  .contact-action-card {
    position: static;
  }
}

@media (max-width: 720px) {
  .section-inner,
  .hero-grid,
  .footer-inner,
  .faq-list {
    width: min(100% - 32px, 1180px);
  }

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

  .hero-grid {
    min-height: auto;
    padding: 46px 0 58px;
    gap: 40px;
  }

  h1,
  .page-hero h1 {
    font-size: 36px;
  }

  h1 em {
    font-size: 32px;
    white-space: normal;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 18px;
  }

  .lead {
    font-size: 17px;
  }

  .answer-grid,
  .form-grid.two,
  .trial-action-picker > div,
  .session-topic-picker > div {
    grid-template-columns: 1fr;
  }

  .route-card,
  .scan-form,
  .scan-result-card,
  .conversion-form {
    padding: 20px;
    border-radius: 22px;
  }

  .intent-hero-centered h1 {
    font-size: clamp(34px, 12vw, 52px);
  }

  .trial-copy h1 {
    font-size: clamp(34px, 12vw, 52px);
  }

  .clubsession-copy h1 {
    font-size: clamp(34px, 12vw, 52px);
  }

  .trial-form,
  .clubsession-form {
    padding: 22px;
    border-radius: 24px;
  }

  .trial-start-header,
  .trial-form-note,
  .clubsession-panel-header {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .hero-actions .button,
  .conversion-card .button {
    width: 100%;
  }

  .conversion-card {
    padding: 28px 24px;
    gap: 24px;
  }

  .conversion-section .section-inner {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .conversion-card h2 {
    font-size: 26px;
  }

  .conversion-copy p {
    font-size: 16px;
  }

  .conversion-action {
    max-width: 100%;
    padding: 20px;
  }

  .start-copy p {
    font-size: 16px;
  }

  .steps {
    padding: 8px 0;
  }

  .steps::before {
    left: 22px;
  }

  .step-card {
    grid-template-columns: 46px 1fr;
    padding: 18px 18px 18px 12px;
  }

  .step-card span {
    width: 40px;
    height: 40px;
  }

  .step-card p {
    font-size: 16px;
  }

  .support-grid,
  .feature-overview-grid,
  .problem-grid,
  .related-grid,
  .pricing-grid,
  .stakeholder-grid,
  .contact-card-grid,
  .trust-grid,
  .outcome-list,
  .feature-highlight-list {
    grid-template-columns: 1fr;
  }

  .dashboard-stack {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .phone-frame {
    position: static;
    width: min(220px, 64%);
    justify-self: end;
  }

  .feature-visual-stack.is-portal {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .feature-visual-stack.is-planning {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .feature-visual-stack.is-canteen {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .feature-phone-frame {
    position: static;
    width: min(220px, 64%);
    justify-self: end;
  }

  .feature-secondary-frame {
    position: static;
    width: 100%;
  }

  .support-card,
  .stakeholder-card,
  .feature-card a,
  .problem-card,
  .pricing-card,
  .demo-form {
    padding: 18px;
  }

  .demo-grid {
    gap: 34px;
  }

  .demo-trustpoints span {
    width: 100%;
  }

  .demo-choice-block,
  .demo-form {
    border-radius: 18px;
  }

  .demo-form-progress,
  .demo-form-actions {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    min-height: auto;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-identity-card,
  .jobs-card,
  .about-timeline-panel {
    padding: 22px;
    border-radius: 22px;
  }

  .contact-action-top {
    grid-template-columns: 60px 1fr;
  }

  .contact-action-top img {
    width: 60px;
    border-radius: 16px;
  }

  .pricing-card {
    min-height: auto;
    gap: 12px;
    padding: 18px;
  }

  .pricing-badge {
    position: static;
    justify-self: start;
    transform: none;
    margin-top: 2px;
  }

  .pricing-card-top {
    padding-right: 0;
  }

  .pricing-card-top p {
    font-size: 14px;
  }

  .pricing-price-block {
    padding: 14px;
  }

  .pricing-highlights,
  .pricing-included-details ul {
    grid-template-columns: 1fr;
  }

  .pricing-card .pricing-highlights li {
    min-height: auto;
  }

  .pricing-trial-row {
    grid-template-columns: 1fr;
  }

  .pricing-module-panel {
    padding: 13px;
  }

  .pricing-module-chip {
    min-height: 34px;
    font-size: 11.5px;
  }

  .pricing-regie-layer {
    padding: 13px;
  }

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

  .pricing-regie-points a {
    min-height: 34px;
    font-size: 10.5px;
  }

  .pricing-summary {
    font-size: 16px;
  }

  .pricing-scenario {
    font-size: 11.5px;
  }

  .pricing-toggle button {
    min-width: 132px;
  }

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

  .pricing-hero-title span {
    font-size: clamp(30px, 11vw, 52px);
    line-height: 1.06;
  }

  .pricing-hero-copy .lead {
    font-size: 16px;
  }

  .pricing-launch-panel {
    width: min(100%, 100%);
    padding: 16px 18px;
  }

  .pricing-launch-panel strong {
    font-size: 20px;
  }

  .pricing-card-top {
    min-height: auto;
  }

  .pricing-price-line strong {
    font-size: 46px;
  }

  .feature-quickpoints {
    margin-top: 22px;
  }

  .feature-highlight-card,
  .outcome-panel {
    padding: 18px;
  }

  .outcome-panel-header,
  .outcome-panel-body {
    align-items: start;
  }

  .outcome-panel-body {
    grid-template-columns: 1fr;
  }

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

  .outcome-panel.is-sponsor .outcome-list {
    grid-template-columns: 1fr;
  }

  .outcome-footer-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .outcome-sidecard p {
    max-width: 100%;
  }

  .outcome-sidecard {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 460px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand img {
    width: 138px;
  }

  .language-trigger {
    min-width: 44px;
    min-height: 44px;
  }

  .language-trigger span {
    display: none;
  }

  .language-switch {
    right: -4px;
    grid-template-columns: 1fr;
  }

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

  h1,
  .page-hero h1 {
    font-size: 31px;
  }

  h1 em {
    font-size: 30px;
    white-space: normal;
  }

  h2 {
    font-size: 25px;
  }

  .laptop {
    padding: 10px 10px 0;
  }

  .laptop-bar {
    height: 20px;
    padding-bottom: 8px;
  }

  .laptop-base {
    height: 14px;
    margin-bottom: -14px;
  }
}

/* Interactive overview of the connected THRIVEZ modules on the homepage. */
.hero-regiekaart {
  min-width: 0;
}

.module-map {
  width: min(100%, 720px);
  margin-left: auto;
  padding: 16px;
  border: 1px solid rgba(8, 117, 111, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 28px 64px rgba(16, 26, 25, 0.12);
}

.module-map-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 2px 4px 14px;
}

.module-map-heading span,
.module-map-detail article > div > span {
  color: var(--teal);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.module-map-heading strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
}

.module-map-stage {
  position: relative;
  isolation: isolate;
  min-height: 495px;
  overflow: hidden;
  border: 1px solid rgba(8, 117, 111, 0.12);
  border-radius: 8px;
  background-color: #f7fbfa;
  background-image:
    linear-gradient(rgba(8, 117, 111, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 117, 111, 0.055) 1px, transparent 1px);
  background-size: 32px 32px;
}

.module-map-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  z-index: -1;
}

.map-line {
  fill: none;
  stroke-width: 0.36;
  stroke-linecap: round;
  stroke-dasharray: 1 1.2;
  animation: map-dash 14s linear infinite;
}

.map-line-teal { stroke: rgba(8, 117, 111, 0.62); }
.map-line-blue { stroke: rgba(30, 111, 217, 0.48); }
.map-line-mint { stroke: rgba(67, 173, 130, 0.58); }
.map-line-amber { stroke: rgba(192, 137, 22, 0.5); }

.map-orbit {
  fill: rgba(255, 255, 255, 0.72);
  stroke: rgba(8, 117, 111, 0.18);
  stroke-width: 0.34;
  stroke-dasharray: 1.2 1.2;
}

.module-map-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 142px;
  height: 142px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 2px;
  border: 8px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  color: var(--surface);
  background: var(--teal-dark);
  box-shadow: 0 20px 44px rgba(4, 63, 59, 0.24);
  transform: translate(-50%, -50%);
}

.module-map-center::before {
  content: "";
  position: absolute;
  inset: -15px;
  border: 1px solid rgba(8, 117, 111, 0.22);
  border-radius: 50%;
  animation: map-orbit-spin 26s linear infinite;
}

.module-map-center img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 11px;
}

.module-map-center span {
  margin-top: 2px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.module-map-center small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 700;
}

.module-map-node {
  position: absolute;
  top: var(--node-y);
  left: var(--node-x);
  min-width: 118px;
  max-width: 148px;
  min-height: 64px;
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(8, 117, 111, 0.15);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 26px rgba(16, 26, 25, 0.08);
  font: inherit;
  font-size: 12px;
  font-weight: 760;
  line-height: 1.24;
  text-align: left;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.module-map-node::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid transparent;
  border-radius: 11px;
  pointer-events: none;
  transition: border-color 180ms ease;
}

.module-map-node i,
.module-map-detail-icon {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: var(--teal);
  background: #e8f5f2;
}

.module-map-node i svg,
.module-map-detail-icon svg {
  width: 16px;
  height: 16px;
}

.module-map-node:hover,
.module-map-node:focus-visible,
.module-map-node.is-active {
  border-color: rgba(8, 117, 111, 0.42);
  background: #ffffff;
  transform: translate(-50%, calc(-50% - 3px));
  box-shadow: 0 18px 34px rgba(16, 26, 25, 0.13);
}

.module-map-node.is-active::after {
  border-color: rgba(8, 117, 111, 0.2);
}

.module-map-node.tone-blue i,
.module-map-detail-icon.tone-blue { color: var(--blue); background: #eaf2fc; }
.module-map-node.tone-mint i,
.module-map-detail-icon.tone-mint { color: #228a63; background: #e8f7ef; }
.module-map-node.tone-amber i,
.module-map-detail-icon.tone-amber { color: #a66c00; background: #fff5dd; }

.module-map-detail {
  min-height: 150px;
  margin-top: 14px;
}

.module-map-detail article {
  min-height: 150px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(8, 117, 111, 0.14);
  border-radius: 8px;
  background: #ffffff;
}

.module-map-detail article[hidden] { display: none; }

.module-map-detail-icon {
  width: 40px;
  height: 40px;
}

.module-map-detail-icon svg { width: 20px; height: 20px; }

.module-map-detail h2 {
  max-width: 460px;
  margin: 3px 0 5px;
  font-size: 18px;
  line-height: 1.24;
}

.module-map-detail p {
  max-width: 500px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.5;
}

.module-map-points {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.module-map-points em {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--text);
  font-size: 10.5px;
  font-style: normal;
  font-weight: 700;
}

.module-map-points svg { width: 12px; height: 12px; color: var(--teal); }

.module-map-detail a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: center;
  padding: 0 11px;
  border: 1px solid rgba(8, 117, 111, 0.22);
  border-radius: 8px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.module-map-detail a:hover {
  color: var(--surface);
  background: var(--teal);
  transform: translateX(2px);
}

.module-map-detail a svg,
.module-map-mobile > a > svg { width: 15px; height: 15px; }

.module-map-mobile { display: none; }

@keyframes map-dash {
  to { stroke-dashoffset: -18; }
}

@keyframes map-orbit-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 820px) {
  .module-map {
    padding: 12px;
  }

  .module-map-stage,
  .module-map-detail {
    display: none;
  }

  .module-map-mobile {
    display: grid;
    gap: 8px;
  }

  .module-map-mobile > a {
    min-height: 68px;
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 10px;
    padding: 11px;
    border: 1px solid rgba(8, 117, 111, 0.14);
    border-left: 3px solid var(--teal);
    border-radius: 8px;
    background: #ffffff;
  }

  .module-map-mobile > a > i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 7px;
    color: var(--teal);
    background: #e8f5f2;
  }

  .module-map-mobile > a > i svg { width: 18px; height: 18px; }
  .module-map-mobile > a.tone-blue { border-left-color: var(--blue); }
  .module-map-mobile > a.tone-blue > i { color: var(--blue); background: #eaf2fc; }
  .module-map-mobile > a.tone-mint { border-left-color: #2d966e; }
  .module-map-mobile > a.tone-mint > i { color: #228a63; background: #e8f7ef; }
  .module-map-mobile > a.tone-amber { border-left-color: #bd8417; }
  .module-map-mobile > a.tone-amber > i { color: #a66c00; background: #fff5dd; }

  .module-map-mobile strong,
  .module-map-mobile small {
    display: block;
  }

  .module-map-mobile strong {
    color: var(--ink);
    font-size: 13px;
    line-height: 1.2;
  }

  .module-map-mobile small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.35;
  }

.module-map-mobile > a > svg { color: var(--teal); }
}

/* Compact homepage flow below the ecosystem visual. */
.solution-hero {
  overflow: hidden;
  background: #f3f8f7;
}

.solution-hero .section-inner {
  padding-top: clamp(70px, 8vw, 116px);
  padding-bottom: clamp(70px, 8vw, 116px);
}

.solution-hero-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.08fr);
  gap: clamp(42px, 6vw, 92px);
}

.solution-hero-copy h1 {
  max-width: 680px;
  font-size: clamp(40px, 4vw, 60px);
  line-height: 1.06;
}

.solution-hero-copy h1 em {
  display: block;
  color: var(--teal);
  font-style: normal;
}

.solution-hero-index {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
}

.solution-hero-index > span {
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.08em;
}

.solution-hero-index i {
  width: 32px;
  height: 1px;
  background: currentColor;
}

.solution-hero-index small {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.solution-hero-role-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 630px;
  border: 1px solid rgba(8, 117, 111, 0.16);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(4, 63, 59, 0.07);
}

.solution-hero-role-strip > div {
  min-width: 0;
  display: grid;
  grid-template-columns: 29px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 11px;
  border-right: 1px solid rgba(8, 117, 111, 0.12);
}

.solution-hero-role-strip > div:last-child {
  border-right: 0;
}

.solution-hero-role-strip i {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: var(--teal);
  background: #e8f5f2;
}

.solution-hero-role-strip svg {
  width: 15px;
  height: 15px;
}

.solution-hero-role-strip span {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.solution-hero-role-strip strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 11px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.solution-hero-role-strip small {
  overflow: hidden;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.solution-product-stage {
  position: relative;
  min-height: 510px;
  isolation: isolate;
}

.solution-product-stage::before,
.solution-product-stage::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(8, 117, 111, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.solution-product-stage::before {
  inset: 38px 8px 8px 52px;
}

.solution-product-stage::after {
  inset: 84px 54px 52px 8px;
  border-style: dashed;
}

.solution-stage-caption,
.solution-stage-signal {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(8, 117, 111, 0.16);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(4, 63, 59, 0.12);
}

.solution-stage-caption {
  top: 0;
  left: 0;
  width: min(230px, 54%);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 4px 10px;
  align-items: center;
  padding: 12px;
}

.solution-stage-caption img {
  grid-row: span 2;
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.solution-stage-caption span {
  color: var(--teal);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solution-stage-caption strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.2;
}

.solution-product-stage .browser-frame {
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 26px 54px rgba(4, 63, 59, 0.18);
}

.solution-stage-primary {
  position: absolute;
  z-index: 1;
  top: 76px;
  right: 0;
  width: 89%;
  transform: rotate(1.25deg);
}

.solution-stage-secondary {
  position: absolute;
  z-index: 2;
  bottom: 12px;
  left: 2%;
  width: 52%;
  transform: rotate(-1.5deg);
}

.solution-product-stage .browser-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.solution-stage-signal {
  right: 3%;
  bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 228px;
  padding: 11px 13px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 720;
  line-height: 1.35;
}

.solution-stage-signal svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--teal);
}

.solution-operations-board {
  position: absolute;
  z-index: 1;
  top: 76px;
  right: 0;
  width: 89%;
  padding: 18px;
  border: 1px solid rgba(8, 117, 111, 0.18);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 26px 54px rgba(4, 63, 59, 0.18);
}

.solution-board-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid #dce9e7;
}

.solution-board-header > div {
  display: grid;
  gap: 4px;
}

.solution-board-header span,
.solution-board-focus > span,
.solution-board-timeline > span {
  color: var(--teal);
  font-size: 9px;
  font-weight: 820;
  letter-spacing: 0.08em;
}

.solution-board-header strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.solution-board-header b {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 9px;
  border: 1px solid #bfe3d6;
  border-radius: 999px;
  color: #167358;
  background: #effaf5;
  font-size: 11px;
}

.solution-board-header b svg {
  width: 14px;
  height: 14px;
}

.solution-board-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 14px 0;
}

.solution-board-metrics > div {
  display: grid;
  grid-template-columns: 27px 1fr;
  grid-template-rows: auto auto;
  gap: 0 7px;
  padding: 9px;
  border: 1px solid #dce9e7;
  border-radius: 6px;
  background: #f8fbfa;
}

.solution-board-metrics span {
  grid-row: span 2;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: var(--teal);
  background: #e6f4f0;
}

.solution-board-metrics svg {
  width: 14px;
  height: 14px;
}

.solution-board-metrics strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1;
}

.solution-board-metrics small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.2;
}

.solution-board-content {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(155px, 0.75fr);
  gap: 10px;
}

.solution-board-focus,
.solution-board-timeline {
  display: grid;
  gap: 7px;
  padding: 11px;
  border: 1px solid #dce9e7;
  border-radius: 6px;
}

.solution-board-focus > div {
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr) 15px;
  align-items: center;
  gap: 7px;
  padding: 7px;
  border-left: 2px solid #5cbf9a;
  background: #f8fbfa;
}

.solution-board-focus i {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  color: var(--teal);
  background: #e6f4f0;
}

.solution-board-focus i svg,
.solution-board-focus > div > svg {
  width: 13px;
  height: 13px;
}

.solution-board-focus p {
  display: grid;
  gap: 2px;
}

.solution-board-focus p small {
  color: var(--teal);
  font-size: 8px;
  font-weight: 750;
}

.solution-board-focus p strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 10px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.solution-board-focus > div > svg {
  color: var(--teal);
}

.solution-board-timeline {
  align-content: start;
}

.solution-board-timeline p {
  display: grid;
  gap: 2px;
  padding-bottom: 7px;
  border-bottom: 1px solid #e6efed;
}

.solution-board-timeline p:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.solution-board-timeline b {
  color: var(--teal);
  font-size: 9px;
}

.solution-board-timeline p span {
  color: var(--ink);
  font-size: 10px;
  font-weight: 680;
  line-height: 1.25;
}

.solution-friction-section {
  background: #ffffff;
}

.solution-friction-heading {
  max-width: 720px;
  display: grid;
  gap: 16px;
  margin-bottom: 36px;
}

.solution-friction-heading h2,
.solution-audience-layout h2,
.solution-modules-heading h2 {
  color: var(--ink);
  font-size: clamp(30px, 3.3vw, 46px);
  line-height: 1.1;
}

.solution-friction-heading p,
.solution-audience-layout > div > p,
.solution-modules-heading p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.solution-friction-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.solution-friction-card {
  min-height: 206px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 21px;
  border-top: 3px solid #dfecea;
  background: #f6faf9;
}

.solution-friction-card > div {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #9a6225;
  background: #fff2dc;
}

.solution-friction-card svg {
  width: 19px;
  height: 19px;
}

.solution-friction-card h3 {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.25;
}

.solution-friction-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.solution-audience-section {
  background: #f3f8f7;
}

.solution-audience-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(32px, 6vw, 92px);
}

.solution-audience-layout > div:first-child {
  display: grid;
  gap: 16px;
}

.solution-audience-layout .text-link {
  margin-top: 6px;
}

.solution-audience-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.solution-audience-card {
  min-height: 132px;
  padding: 17px;
  background: #ffffff;
}

.solution-modules-section {
  background: #ffffff;
}

.solution-modules-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.solution-modules-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.solution-module-card {
  position: relative;
  min-height: 196px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
  border: 1px solid rgba(8, 117, 111, 0.14);
  border-radius: 8px;
  color: inherit;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(16, 26, 25, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.solution-module-card:hover,
.solution-module-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(8, 117, 111, 0.45);
  box-shadow: 0 18px 34px rgba(4, 63, 59, 0.12);
  outline: none;
}

.solution-module-card > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
}

.solution-module-card > span svg {
  width: 20px;
  height: 20px;
}

.solution-module-card strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
}

.solution-module-card small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.solution-module-card > svg {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 18px;
  height: 18px;
}

.solution-module-card.tone-teal > span { color: var(--teal); background: #e8f5f2; }
.solution-module-card.tone-teal > svg { color: var(--teal); }
.solution-module-card.tone-mint > span { color: #15966b; background: #eaf8f1; }
.solution-module-card.tone-mint > svg { color: #15966b; }
.solution-module-card.tone-blue > span { color: #1d70d5; background: #edf5ff; }
.solution-module-card.tone-blue > svg { color: #1d70d5; }
.solution-module-card.tone-amber > span { color: #a66c00; background: #fff5dd; }
.solution-module-card.tone-amber > svg { color: #a66c00; }

@media (max-width: 1180px) {
  .solution-hero-grid,
  .solution-audience-layout {
    grid-template-columns: 1fr;
  }

  .solution-product-stage {
    max-width: 760px;
  }

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

@media (max-width: 640px) {
  .solution-hero .section-inner {
    padding-top: 48px;
    padding-bottom: 58px;
  }

  .solution-hero-copy h1 {
    font-size: clamp(38px, 11vw, 47px);
  }

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

  .solution-hero-role-strip > div {
    border-right: 0;
    border-bottom: 1px solid rgba(8, 117, 111, 0.12);
  }

  .solution-hero-role-strip > div:last-child {
    border-bottom: 0;
  }

  .solution-product-stage {
    min-height: 500px;
  }

  .solution-stage-caption {
    width: 190px;
  }

  .solution-stage-primary {
    top: 66px;
    width: 94%;
  }

  .solution-operations-board {
    top: 66px;
    width: 94%;
    padding: 12px;
  }

  .solution-board-header strong {
    font-size: 15px;
  }

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

  .solution-board-timeline {
    display: none;
  }

  .solution-stage-secondary {
    width: 58%;
    bottom: 0;
  }

  .solution-stage-signal {
    right: 0;
    bottom: 16px;
    max-width: 190px;
    font-size: 11px;
  }

  .solution-friction-grid,
  .solution-modules-grid {
    grid-template-columns: 1fr;
  }

  .solution-friction-card,
  .solution-module-card {
    min-height: 0;
  }
}

.home-workflow-section {
  background: #ffffff;
}

/* Role overview within the merged solution page. */
.solution-audience-section {
  background: #f3f8f7;
}

.solution-audience-heading {
  max-width: 760px;
}

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

.solution-audience-card {
  min-height: 168px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 18px;
  align-items: start;
  gap: 13px;
  padding: 22px;
  border: 1px solid rgba(8, 117, 111, 0.15);
  border-radius: 8px;
  color: inherit;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(16, 26, 25, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.solution-audience-card:hover,
.solution-audience-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(8, 117, 111, 0.42);
  box-shadow: 0 18px 36px rgba(4, 63, 59, 0.11);
  outline: none;
}

.solution-audience-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--teal);
  background: #e8f5f2;
}

.solution-audience-icon svg {
  width: 20px;
  height: 20px;
}

.solution-audience-card > span:nth-child(2) {
  display: grid;
  gap: 8px;
}

.solution-audience-card strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
}

.solution-audience-card small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.52;
}

.solution-audience-card > svg {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--teal);
}

.solution-role-system {
  position: relative;
  min-height: 390px;
  display: grid;
  grid-template-columns: 172px minmax(0, 1fr);
  align-items: center;
  gap: 30px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(8, 117, 111, 0.2);
  border-radius: 8px;
  background: #043f3b;
  box-shadow: 0 20px 42px rgba(4, 63, 59, 0.16);
}

.solution-role-system::before,
.solution-role-system::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(157, 222, 204, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.solution-role-system::before {
  width: 390px;
  height: 390px;
  top: -196px;
  left: -160px;
}

.solution-role-system::after {
  width: 230px;
  height: 230px;
  right: -112px;
  bottom: -110px;
}

.solution-role-core {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 22px 14px;
  border: 1px solid rgba(179, 230, 216, 0.36);
  border-radius: 8px;
  color: #ffffff;
  background: #07534e;
  box-shadow: 0 14px 30px rgba(1, 28, 26, 0.2);
  text-align: center;
}

.solution-role-core img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
}

.solution-role-core span {
  color: #a9e1d3;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solution-role-core strong {
  max-width: 130px;
  font-size: 18px;
  line-height: 1.14;
}

.solution-role-clusters {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.solution-role-cluster {
  position: relative;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 5px 11px;
  align-items: start;
  padding: 15px;
  border: 1px solid rgba(219, 241, 235, 0.58);
  border-radius: 8px;
  background: #ffffff;
}

.solution-role-cluster::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -31px;
  width: 30px;
  border-top: 1px dashed rgba(160, 222, 206, 0.75);
}

.solution-role-cluster-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--teal);
  background: #e8f5f2;
}

.solution-role-cluster-icon svg {
  width: 20px;
  height: 20px;
}

.solution-role-cluster-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.solution-role-cluster h3 {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.22;
}

.solution-role-cluster p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.42;
}

.solution-role-module-links {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 4px;
}

.solution-role-module-links a {
  min-height: 27px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  max-width: 100%;
  padding: 5px 8px;
  border: 1px solid #cae5df;
  border-radius: 999px;
  color: var(--teal);
  background: #f7fbfa;
  font-size: 10px;
  font-weight: 760;
  line-height: 1.1;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.solution-role-module-links a:hover,
.solution-role-module-links a:focus-visible {
  border-color: var(--teal);
  color: #ffffff;
  background: var(--teal);
  outline: none;
}

.solution-role-module-links svg {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
}

.home-workflow-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  align-items: center;
  gap: clamp(34px, 6vw, 80px);
}

.home-workflow-copy {
  display: grid;
  gap: 16px;
}

.home-workflow-copy h2 {
  max-width: 690px;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.16;
}

.home-workflow-copy > p {
  max-width: 630px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.home-workflow-problems {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 6px;
}

.home-workflow-problems span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  border: 1px solid #e4d8d0;
  border-radius: 8px;
  color: #735e53;
  background: #fffaf8;
  font-size: 12px;
  font-weight: 700;
}

.home-workflow-problems svg {
  width: 14px;
  height: 14px;
  color: #c66b44;
}

.home-workflow-panel {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(8, 117, 111, 0.2);
  border-radius: 8px;
  background: #eef8f6;
  box-shadow: 0 22px 48px rgba(4, 63, 59, 0.1);
}

.home-workflow-panel > span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-workflow-panel > strong {
  max-width: 360px;
  color: var(--ink);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.18;
}

.home-workflow-panel > div {
  display: grid;
  gap: 10px;
  padding-top: 4px;
}

.home-workflow-panel p {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text);
  font-size: 14px;
  font-weight: 680;
}

.home-workflow-panel svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--teal);
}

.home-results-section {
  background: #f3f8f7;
}

.home-results-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.home-result-card {
  min-height: 214px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(8, 117, 111, 0.14);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(16, 26, 25, 0.06);
}

.home-result-card > div {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--teal);
  background: #e8f5f2;
}

.home-result-card svg {
  width: 21px;
  height: 21px;
}

.home-result-card h3 {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.home-result-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.home-final-section {
  background: #043f3b;
}

.home-final-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 42px;
  padding-top: 86px;
  padding-bottom: 86px;
  color: #ffffff;
}

.home-final-panel > div:first-child {
  display: grid;
  gap: 14px;
}

.home-final-panel h2 {
  max-width: 700px;
  font-size: clamp(30px, 3.2vw, 43px);
  line-height: 1.12;
}

.home-final-panel p {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.68;
}

.home-final-actions {
  display: grid;
  gap: 10px;
  min-width: 240px;
}

.home-final-actions .button {
  width: 100%;
}

.home-final-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  color: #ffffff;
  background: transparent;
}

.home-final-secondary:hover {
  border-color: #ffffff;
  color: #043f3b;
  background: #ffffff;
}

@media (max-width: 980px) {
  .solution-role-system {
    max-width: 760px;
  }

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

  .home-workflow-grid,
  .home-final-panel {
    grid-template-columns: 1fr;
  }

  .home-workflow-panel {
    max-width: 620px;
  }

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

  .home-final-actions {
    width: min(100%, 420px);
  }
}

@media (max-width: 640px) {
  .solution-role-system {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
  }

  .solution-role-core {
    grid-template-columns: 48px auto;
    justify-content: start;
    justify-items: start;
    padding: 12px;
    text-align: left;
  }

  .solution-role-core img {
    grid-row: span 2;
    width: 48px;
    height: 48px;
  }

  .solution-role-core strong {
    max-width: none;
    font-size: 16px;
  }

  .solution-role-cluster::before {
    display: none;
  }

  .solution-audience-grid {
    grid-template-columns: 1fr;
  }

  .solution-audience-card {
    min-height: 0;
    padding: 18px;
  }

  /* Keep the mobile homepage focused on the ecosystem visual and three next steps. */
  .home-workflow-section,
  .home-results-section,
  .home-final-section {
    display: none;
  }

  .home-workflow-copy > p,
  .home-final-panel p {
    font-size: 16px;
  }

  .home-workflow-panel,
  .home-result-card {
    padding: 20px;
  }

  .home-results-grid {
    grid-template-columns: 1fr;
  }

  .home-final-panel {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

/* Premium ecosystem treatment for the homepage control map. */
.hero {
  background: #f3f8f7;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(560px, 1.14fr);
  gap: clamp(40px, 5vw, 76px);
}

.hero-copy > :nth-child(5) {
  animation-delay: 390ms;
}

.hero-eyebrow {
  min-height: 32px;
  padding-inline: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.hero-copy h1 {
  max-width: 620px;
  font-size: clamp(42px, 4vw, 61px);
  line-height: 1.02;
}

.hero-copy h1 em {
  margin-top: 12px;
  color: var(--teal);
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.08;
  white-space: normal;
}

.hero-copy .lead {
  max-width: 560px;
  color: #40534f;
  font-size: 17px;
  line-height: 1.7;
}

.hero-regiekaart {
  filter: drop-shadow(0 26px 52px rgba(4, 63, 59, 0.1));
}

.module-map {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border-color: rgba(8, 117, 111, 0.2);
  background: rgba(255, 255, 255, 0.74);
  box-shadow:
    0 34px 78px rgba(16, 26, 25, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.module-map::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--teal);
}

.module-map-heading {
  padding: 4px 4px 16px;
}

.module-map-heading span {
  color: #0a655f;
}

.module-map-heading strong {
  font-size: 15px;
}

.module-map-stage {
  min-height: 520px;
  isolation: isolate;
  border-color: rgba(8, 117, 111, 0.16);
  background-color: #f7fbfa;
  background-image: none;
}

.module-map-stage::before,
.module-map-stage::after {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(8, 117, 111, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.module-map-stage::after {
  inset: 22%;
  border-color: rgba(30, 111, 217, 0.16);
  border-style: dashed;
  animation: map-orbit-spin 38s linear infinite reverse;
}

.module-map-architecture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: visible;
}

.module-map-architecture path,
.module-map-architecture circle {
  fill: none;
  stroke: rgba(8, 117, 111, 0.22);
  stroke-width: 0.38;
  stroke-dasharray: 2.2 1.5;
}

.module-map-architecture .map-architecture-dot {
  fill: #5bc99b;
  stroke: #ffffff;
  stroke-width: 0.45;
  filter: drop-shadow(0 3px 4px rgba(4, 63, 59, 0.18));
}

.module-map-architecture path {
  animation: map-dash 18s linear infinite reverse;
}

.module-map-lines {
  z-index: 1;
}

.module-map-center,
.module-map-node {
  z-index: 2;
}

.map-line {
  opacity: 0.58;
  stroke-width: 0.64;
  stroke-dasharray: 2.6 1.6;
  transition: opacity 220ms ease, stroke-width 220ms ease, filter 220ms ease;
  animation-duration: 8s;
}

.module-map-stage[data-active-tone] .map-line {
  opacity: 0.07;
  animation-play-state: paused;
}

.module-map-stage[data-active-tone="teal"] .map-line-teal,
.module-map-stage[data-active-tone="blue"] .map-line-blue,
.module-map-stage[data-active-tone="mint"] .map-line-mint,
.module-map-stage[data-active-tone="amber"] .map-line-amber {
  opacity: 1;
  stroke-width: 0.82;
  filter: drop-shadow(0 0 2px rgba(91, 201, 155, 0.72));
  animation-play-state: running;
}

.module-map-center {
  width: 154px;
  height: 154px;
  border-width: 9px;
  background: #043f3b;
  box-shadow:
    0 0 0 13px rgba(91, 201, 155, 0.08),
    0 22px 48px rgba(4, 63, 59, 0.27);
}

.module-map-center::before {
  inset: -18px;
  border-color: rgba(91, 201, 155, 0.46);
  border-style: dashed;
  animation-duration: 20s;
}

.module-map-center::after {
  content: "";
  position: absolute;
  inset: -31px;
  border: 1px solid rgba(30, 111, 217, 0.2);
  border-radius: 50%;
  animation: map-center-pulse 4.8s ease-in-out infinite;
}

.module-map-center img {
  width: 50px;
  height: 50px;
}

.module-map-node {
  --node-accent: var(--teal);
  --node-tint: #e8f5f2;
  min-width: 0;
  max-width: none;
  width: 164px;
  overflow: visible;
  border-color: rgba(8, 117, 111, 0.17);
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 16px 34px rgba(16, 26, 25, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  animation: map-node-float 6s ease-in-out infinite;
}

.module-map-node span {
  min-width: 0;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.module-map-node::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 10px;
  left: 10px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: var(--node-accent);
}

.module-map-node.tone-teal { --node-accent: #08756f; --node-tint: #e5f5f2; }
.module-map-node.tone-blue { --node-accent: #1e6fd9; --node-tint: #eaf2fc; }
.module-map-node.tone-mint { --node-accent: #258d67; --node-tint: #e8f7ef; }
.module-map-node.tone-amber { --node-accent: #b8790c; --node-tint: #fff5dd; }

.module-map-node i {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(8, 117, 111, 0.08);
  color: var(--node-accent);
  background: var(--node-tint);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.module-map-node i svg {
  width: 17px;
  height: 17px;
}

.module-map-node span {
  color: #1d2c29;
  font-size: 12.5px;
  font-weight: 780;
  letter-spacing: 0.005em;
}

.module-map-node:nth-of-type(2n) { animation-delay: -1.5s; }
.module-map-node:nth-of-type(3n) { animation-delay: -3s; }

.module-map-node:hover,
.module-map-node:focus-visible,
.module-map-node.is-active {
  border-color: color-mix(in srgb, var(--node-accent) 54%, white);
  box-shadow:
    0 22px 42px rgba(4, 63, 59, 0.17),
    0 0 0 4px color-mix(in srgb, var(--node-accent) 11%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.module-map-node:hover,
.module-map-node:focus-visible {
  animation-play-state: paused;
  transform: translate(-50%, calc(-50% - 6px)) scale(1.035);
}

.module-map-detail article {
  border-color: rgba(8, 117, 111, 0.17);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.module-map-detail article > div > span {
  color: #0a655f;
}

.module-map-detail a {
  min-height: 40px;
  padding-inline: 13px;
}

@keyframes map-node-float {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -4px; }
}

@keyframes map-center-pulse {
  0%, 100% { opacity: 0.34; transform: scale(0.94); }
  50% { opacity: 0.82; transform: scale(1.04); }
}

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

  .hero-regiekaart,
  .module-map {
    width: min(100%, 760px);
    margin-right: auto;
  }
}

@media (max-width: 820px) {
  .hero-copy h1 {
    font-size: clamp(37px, 11vw, 49px);
  }

  .hero-copy h1 em {
    font-size: clamp(28px, 8vw, 37px);
  }

  .module-map {
    padding: 14px;
  }

  .module-map-heading {
    padding-bottom: 12px;
  }

  .module-map-mobile > a {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 22px rgba(16, 26, 25, 0.05);
    transition: transform 180ms ease, box-shadow 180ms ease;
  }

  .module-map-node {
    width: auto;
  }

  .module-map-mobile > a:active {
    transform: scale(0.99);
  }
}

@media (max-width: 640px) {
  .header-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 8px;
  }

  .secondary-header-cta {
    display: none;
  }

  .header-actions > .header-cta:not(.secondary-header-cta) {
    width: 100%;
    min-width: 0;
    padding-inline: 12px;
    font-size: 13px;
  }

  .header-actions .language-trigger {
    width: 44px;
  }
}

.pricing-section .pricing-clean-layout {
  gap: 24px;
}

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

.pricing-section .pricing-card {
  gap: 15px;
}

.pricing-section .pricing-card .pricing-regie-layer {
  display: none;
}

@media (max-width: 1180px) {
  .pricing-regie-overview {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .pricing-clean-layout {
    padding-top: 26px;
  }

  .pricing-regie-overview {
    padding: 18px;
    border-radius: 22px;
  }

  .pricing-regie-overview .pricing-regie-points,
  .pricing-section .pricing-grid {
    grid-template-columns: 1fr;
  }
}
