﻿@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;650;750;850;900&display=swap");

:root {
  --bg: #f4f7f7;
  --panel: #ffffff;
  --panel-2: #e7f7f6;
  --text: #0d2d35;
  --muted: #4d6871;
  --line: #d7e7ea;
  --mint: #43cfb4;
  --mint-soft: #dffff8;
  --teal: #1a7a8a;
  --teal-light: #2ab8cc;
  --teal-dark: #0d2d35;
  --accent: var(--mint);
  --soft: #eef8f7;
  --shadow-soft: 0 6px 18px rgba(13, 45, 53, 0.035);
  --white-soft: rgba(255, 255, 255, 0.72);
  --shadow: 0 22px 70px rgba(13, 45, 53, 0.13);
  --radius-xl: 34px;
  --content-max: 1440px;
  --page-gutter: clamp(1.25rem, 6vw, 7rem);
  --container: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(0, 229, 192, 0.24), transparent 31rem),
    radial-gradient(circle at bottom left, rgba(42, 184, 204, 0.18), transparent 30rem),
    linear-gradient(180deg, #f8fbfb 0%, var(--bg) 46%, #f8fbfb 100%);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.wrap {
  width: var(--container);
  max-width: var(--content-max);
  margin-inline: auto;
}

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

video,
canvas,
iframe,
svg {
  max-width: 100%;
}

main :where(section, article, aside, header, div, figure, form, fieldset) {
  min-width: 0;
}

:where(h1, h2, h3, h4, p, li, summary) {
  overflow-wrap: break-word;
}

:where(pre, table) {
  max-width: 100%;
  overflow-x: auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  min-height: 64px;
  margin: 0;
  padding-inline: max(var(--page-gutter), calc((100% - var(--content-max)) / 2));
  border-bottom: 0;
  background: #fff;
  box-shadow: none;
  backdrop-filter: none;
}

.brand img {
  width: 8.2rem;
  height: auto;
}

img[src$="logo_full.png"],
img[src$="logo_minimal.png"] {
  filter: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 8.8rem;
  min-height: 2.5rem;
  color: var(--mint);
  font-weight: 900;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.55rem, 1vw, 0.9rem);
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 500;
  min-width: 0;
}

@media (min-width: 1121px) {
  .site-nav {
    position: absolute;
    right: 0;
    left: 0;
    width: max-content;
    max-width: calc(100vw - 2rem);
    margin-inline: auto;
    white-space: nowrap;
  }

  .site-nav a {
    white-space: nowrap;
  }
}

.site-nav a {
  padding: 0.45rem 0.2rem;
  font-weight: 500;
  border-radius: 0.55rem;
  transition: background 0.18s ease, color 0.18s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--teal);
  background: var(--mint-soft);
}

.nav-platform {
  position: relative;
  display: flex;
  align-items: center;
}

@media (hover: hover) and (min-width: 1121px) {
  .nav-platform::after {
    position: absolute;
    top: 100%;
    left: -1rem;
    width: calc(100% + 2rem);
    height: 1.25rem;
    content: "";
  }
}

.nav-platform-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.2rem;
  border: 0;
  border-radius: 0.55rem;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.nav-platform-trigger:hover,
.nav-platform-trigger:focus-visible,
.nav-platform-trigger[aria-current="page"],
.nav-platform-trigger[aria-expanded="true"] {
  color: var(--teal);
  background: var(--mint-soft);
}

.nav-platform-chevron {
  width: 0.5rem;
  height: 0.5rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.18s ease;
}

.nav-platform-trigger[aria-expanded="true"] .nav-platform-chevron {
  transform: rotate(225deg) translate(-1px, -1px);
}

.platform-mega-menu {
  position: fixed;
  top: 63px;
  left: 50%;
  z-index: 1100;
  display: none;
  width: calc(100vw - 2rem);
  max-width: none;
  padding: clamp(1.2rem, 1.8vw, 1.75rem);
  overflow: hidden;
  white-space: normal;
  transform: translateX(-50%);
  border: 1px solid var(--line);
  border-radius: 0 0 18px 18px;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 24px 70px rgba(13, 45, 53, 0.16);
}

.nav-platform.is-open .platform-mega-menu {
  display: block;
}

@media (hover: hover) and (min-width: 1121px) {
  .nav-platform:hover .platform-mega-menu {
    display: block;
  }
}

.platform-mega-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(16.5rem, 1fr);
  gap: clamp(1rem, 1.45vw, 1.5rem);
  align-items: start;
  width: 100%;
  min-width: 0;
}

.platform-mega-group {
  display: grid;
  gap: 0.25rem;
  align-content: start;
  min-width: 0;
}

.platform-mega-group > strong {
  margin-bottom: 0.65rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.platform-mega-link {
  display: grid;
  grid-template-columns: 1.7rem minmax(0, 1fr);
  gap: 0.45rem;
  align-items: start;
  padding: 0.5rem 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  line-height: 1.28;
}

.platform-mega-link:hover,
.platform-mega-link:focus-visible {
  color: var(--teal) !important;
}

.platform-mega-number {
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.6;
}

.platform-mega-link span:last-child {
  min-width: 0;
  font-size: clamp(0.8rem, 0.82vw, 0.9rem);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.platform-mega-featured {
  display: grid;
  gap: 0.75rem;
  min-width: 0;
  padding: 1.25rem;
  border-radius: 14px;
  background: var(--mint-soft);
}

.platform-mega-featured strong {
  font-size: 1.05rem;
}

.platform-mega-featured p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
  overflow-wrap: normal;
}

@media (min-width: 1121px) and (max-width: 1280px) {
  .platform-mega-menu {
    width: calc(100vw - 3rem);
    padding: 1.1rem;
  }

  .platform-mega-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(15rem, 1fr);
    gap: 0.85rem;
  }

  .platform-mega-link {
    grid-template-columns: 1.45rem minmax(0, 1fr);
    gap: 0.35rem;
  }

  .platform-mega-featured {
    padding: 0.9rem;
  }
}

/* Keep shared FAQ blocks readable and make the full-question link a clear CTA. */
.page-faq {
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  max-width: calc(100% - (var(--page-gutter) * 2));
  margin-left: auto;
  margin-right: auto;
}

.page-faq-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-dark) !important;
  border-color: var(--teal-dark) !important;
  color: #fff !important;
}

.page-faq-more:hover,
.page-faq-more:focus-visible {
  background: var(--teal-dark) !important;
  border-color: var(--teal-dark) !important;
  color: #fff !important;
}

/* The desktop mega menu is a contained panel, never a full-width strip. */
@media (min-width: 1121px) {
  .platform-mega-menu {
    width: min(1320px, calc(100vw - 3rem));
    max-width: calc(100vw - 3rem);
  }
}

.platform-mega-featured a {
  display: inline-flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0 !important;
  border-bottom: 1px solid rgba(26, 122, 138, 0.2);
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 750;
}

.platform-mega-featured a:last-child {
  border-bottom: 0;
}

.platform-mega-featured a span:first-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.site-nav a.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  background: var(--mint);
  border-radius: 999px;
  padding: 0.55rem 0.9rem !important;
  margin-left: 0.45rem;
  font-weight: 700;
  box-shadow: none;
  white-space: nowrap;
}

.site-nav a.nav-cta:hover,
.site-nav a.nav-cta:focus-visible,
.site-nav a.nav-cta[aria-current="page"] {
  color: #fff !important;
  background: var(--mint);
  border-radius: 999px;
  box-shadow: none;
}

.language-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  margin-left: 0.35rem;
}

.language-current {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.25rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--text);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(13, 45, 53, 0.04);
}

.language-current:hover,
.language-current[aria-expanded="true"] {
  border-color: rgba(67, 207, 180, 0.42);
  background: var(--mint-soft);
}

.language-flag {
  position: relative;
  display: inline-block;
  width: 1.35rem;
  height: 0.9rem;
  flex: 0 0 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(13, 45, 53, 0.16);
  border-radius: 0.12rem;
  background: #fff;
  box-shadow: 0 1px 2px rgba(13, 45, 53, 0.12);
  line-height: 1;
}

.language-flag[data-flag="nl"] {
  background: linear-gradient(
    to bottom,
    #ae1c28 0 33.333%,
    #fff 33.333% 66.666%,
    #21468b 66.666% 100%
  );
}

.language-flag[data-flag="fr"] {
  background: linear-gradient(
    to right,
    #0055a4 0 33.333%,
    #fff 33.333% 66.666%,
    #ef4135 66.666% 100%
  );
}

.language-flag[data-flag="en"] {
  background: #012169 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 40'%3E%3Crect width='60' height='40' fill='%23012169'/%3E%3Cpath d='M0 0 60 40M60 0 0 40' stroke='%23fff' stroke-width='8'/%3E%3Cpath d='M0 0 60 40M60 0 0 40' stroke='%23c8102e' stroke-width='4'/%3E%3Cpath d='M30 0v40M0 20h60' stroke='%23fff' stroke-width='13'/%3E%3Cpath d='M30 0v40M0 20h60' stroke='%23c8102e' stroke-width='7'/%3E%3C/svg%3E") center / cover no-repeat;
}

.language-chevron {
  width: 0.48rem;
  height: 0.48rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.18s ease;
}

.language-current[aria-expanded="true"] .language-chevron {
  transform: rotate(225deg) translate(-1px, -1px);
}

.language-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.45rem);
  z-index: 20;
  display: none;
  min-width: 6.2rem;
  padding: 0.55rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: white;
  box-shadow: var(--shadow);
}

.language-switch.is-open .language-menu {
  display: grid;
  gap: 0.15rem;
}

.language-menu button,
.language-menu a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0.52rem 0.55rem;
  border: 0;
  border-radius: 0.65rem;
  background: transparent;
  color: var(--text);
  text-align: left;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}

.language-menu button:hover,
.language-menu button[aria-current="true"],
.language-menu a:hover,
.language-menu a[aria-current="true"] {
  background: var(--mint-soft);
  color: var(--teal);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  background: white;
  color: var(--text);
  place-items: center;
  padding: 0;
  line-height: 1;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.nav-toggle:hover,
.nav-toggle[aria-expanded="true"] {
  background: var(--mint-soft);
  border-color: rgba(67, 207, 180, 0.36);
  color: var(--teal);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0.25rem auto;
  background: currentColor;
}

.hero,
.section,
.article-shell,
.about-hero,
.site-footer {
  width: var(--container);
  max-width: var(--content-max);
  margin: 0 auto;
}

.hero > *,
.section > *,
.article-shell > *,
.about-hero > *,
.story-columns > *,
.founder-grid > *,
.value-stack > * {
  min-width: 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(22rem, 0.96fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  min-height: calc(100vh - 5.5rem);
  padding: 4rem 0 5rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 760px;
  margin-bottom: 1.35rem;
  font-size: clamp(42px, 6vw, 68px);
  overflow-wrap: anywhere;
}

/* Hidden translations use an H2 in the source while matching the page-title styling. */
.translated-page-title {
  max-width: 760px;
  margin: 0 0 1.35rem;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(30px, 4.5vw, 52px);
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.05rem;
}

.lead {
  max-width: 56rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  overflow-wrap: anywhere;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 2rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  border-radius: 999px;
  padding: 0.75rem 1.15rem;
  border: 1px solid var(--line);
  font-weight: 800;
}

.button.primary {
  background: var(--mint);
  color: #fff;
  border-color: var(--mint);
}

.button.ghost {
  background: white;
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  width: fit-content;
  border: 0;
  border-radius: 999px;
  background: var(--mint);
  color: #fff;
  padding: 0.8rem 1.25rem;
  font: inherit;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  box-shadow: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  background: #35bda4;
  transform: translateY(-1px);
  box-shadow: none;
}

.btn:focus-visible {
  outline: 3px solid rgba(67, 207, 180, 0.34);
  outline-offset: 3px;
}

.btn-outline {
  background: white;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--soft);
  box-shadow: none;
}

.page-faq {
  width: var(--container);
  max-width: var(--content-max);
  margin: clamp(3rem, 6vw, 6rem) auto 0;
}

.page-faq-head {
  max-width: 760px;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.page-faq-head h2 {
  margin: 0.35rem 0 0;
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 1.02;
}

.page-faq-head p:last-child {
  margin: 0.9rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.page-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.page-faq-column {
  display: grid;
  gap: 1rem;
  align-content: start;
  min-width: 0;
}

.page-faq-item {
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(13, 45, 53, 0.035);
}

.page-faq-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  box-sizing: border-box;
  height: 82px;
  min-height: 76px;
  padding: 1.15rem 1.3rem;
  list-style: none;
  cursor: pointer;
}

.page-faq-item summary::-webkit-details-marker {
  display: none;
}

.page-faq-item h3 {
  margin: 0;
  font-size: clamp(.94rem, 1.25vw, 1.06rem);
  line-height: 1.35;
}

/* Employee app page: one shared measure and equal cards in each group. */
.employee-app-hero,
.employee-app-section {
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  max-width: calc(100% - (var(--page-gutter) * 2));
  margin-left: auto;
  margin-right: auto;
}

.employee-app-section {
  padding: clamp(2.5rem, 5vw, 5rem) 0;
}

.employee-app-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, .72fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
  padding: clamp(3.5rem, 7vw, 7rem) 0;
}

.employee-app-hero h1 {
  max-width: 12ch;
  margin: .5rem 0 1rem;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: .96;
}

.employee-app-hero .lead {
  max-width: 42rem;
}

.employee-app-phone {
  width: min(100%, 24rem);
  aspect-ratio: 10 / 16;
  justify-self: center;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--teal-dark);
  box-shadow: 0 24px 55px rgba(13, 45, 53, .14);
}

.employee-app-screen {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: .85rem;
  padding: 1.25rem;
  border-radius: 23px;
  background: #fff;
}

.employee-app-screen img {
  width: 7.5rem;
  height: auto;
}

.employee-app-search,
.employee-app-chat {
  padding: .9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--muted);
  background: var(--surface);
}

.employee-app-chat {
  margin-top: auto;
  color: var(--ink);
  background: var(--soft);
}

.employee-app-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.employee-app-card {
  display: grid;
  grid-template-rows: auto minmax(3.3rem, auto) 1fr;
  min-height: 15rem;
  padding: clamp(1.35rem, 2.5vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.employee-app-card span {
  color: var(--teal);
  font-size: .78rem;
  font-weight: 800;
}

.employee-app-card h2 {
  margin: .6rem 0 .8rem;
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  line-height: 1.15;
}

.employee-app-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

/* Shared function pages: one measure, one rhythm and equal-sized content groups. */
.feature-page-hero,
.feature-page-section,
.feature-page-band {
  width: var(--container);
  max-width: var(--content-max);
  margin-inline: auto;
}

.feature-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, .9fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: start;
  padding-block: clamp(3.5rem, 7vw, 7rem);
}

.feature-page-hero h1 {
  max-width: none;
  margin: .5rem 0 1rem;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: .96;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.feature-page-hero .lead {
  max-width: 42rem;
}

.feature-page-hero > div:first-child > .eyebrow,
.employee-app-hero > div:first-child > .eyebrow,
.page-intro > .feature-page-number {
  font-size: clamp(0.88rem, 1.05vw, 1rem);
  line-height: 1.25;
  font-weight: 850;
}

.feature-product-visual {
  width: 90%;
  min-height: 28rem;
  justify-self: end;
  padding: clamp(1rem, 2.5vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, #fff 0%, var(--soft) 100%);
  box-shadow: var(--shadow);
}

.feature-window {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr);
  min-height: 24rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.feature-window-rail {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: .8rem;
  padding: 1rem .5rem;
  background: var(--teal-dark);
}

.feature-window-rail img {
  width: 1.35rem;
  height: 1.35rem;
  object-fit: contain;
}

.feature-window-rail i {
  width: .8rem;
  height: .8rem;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 3px;
}

.feature-window-body {
  min-width: 0;
  padding: clamp(1rem, 2vw, 1.5rem);
}

.feature-window-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: .9rem;
  border-bottom: 1px solid var(--line);
}

.feature-window-toolbar strong {
  font-size: clamp(.95rem, 1.4vw, 1.15rem);
}

.feature-window-toolbar span {
  padding: .3rem .55rem;
  border-radius: 8px;
  background: var(--mint-soft);
  color: var(--teal);
  font-size: .72rem;
  font-weight: 800;
}

.feature-table {
  display: grid;
  gap: .55rem;
}

.feature-table-row {
  display: grid;
  grid-template-columns: minmax(8rem, 1.3fr) repeat(4, minmax(2.2rem, .55fr));
  gap: .45rem;
  align-items: center;
  min-height: 3rem;
  padding: .55rem .7rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--muted);
  font-size: .75rem;
}

.feature-table-row strong {
  color: var(--text);
  font-size: .78rem;
}

.feature-table-row span:not(:first-child) {
  display: grid;
  place-items: center;
  min-width: 1.75rem;
  min-height: 1.75rem;
  border-radius: 50%;
  background: var(--mint-soft);
  color: var(--teal);
  font-weight: 800;
}

.feature-document-list,
.feature-ticket-list {
  display: grid;
  gap: .65rem;
}

.feature-document,
.feature-ticket {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: .75rem;
  align-items: center;
  min-height: 4rem;
  padding: .75rem;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.feature-document > i,
.feature-ticket > i {
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background: var(--mint-soft);
}

.feature-document strong,
.feature-ticket strong,
.feature-document small,
.feature-ticket small {
  display: block;
}

.feature-document small,
.feature-ticket small {
  margin-top: .15rem;
  color: var(--muted);
}

.feature-document > span,
.feature-ticket > span {
  color: var(--teal);
  font-size: .72rem;
  font-weight: 800;
}

.feature-page-section {
  padding-block: clamp(3rem, 6vw, 6rem);
}

.feature-card-grid,
.feature-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 1rem;
}

.feature-card,
.feature-step {
  height: 100%;
  min-height: 15.5rem;
  padding: clamp(1.35rem, 2.5vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.feature-card > span,
.feature-step > span {
  color: var(--teal);
  font-size: .78rem;
  font-weight: 850;
}

.feature-card h2,
.feature-step h2 {
  min-height: 2.7em;
  margin: .75rem 0 .7rem;
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  line-height: 1.15;
}

.feature-card p,
.feature-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.feature-page-band {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--soft);
}

.feature-page-band h2 {
  margin: .4rem 0 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.02;
}

.feature-band-points {
  display: grid;
  gap: .75rem;
}

.feature-band-points p {
  margin: 0;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--muted);
}

.feature-band-points strong {
  display: block;
  margin-bottom: .2rem;
  color: var(--text);
}

.workflow-office-band,
.employee-app-detail {
  margin-top: clamp(1rem, 3vw, 2rem);
}

@media (max-width: 780px) {
  .employee-app-hero,
  .employee-app-grid {
    grid-template-columns: 1fr;
  }

  .feature-page-hero,
  .feature-page-band,
  .feature-card-grid,
  .feature-step-grid {
    grid-template-columns: 1fr;
  }

  .feature-page-hero {
    padding-block: 3rem;
  }

  .feature-product-visual {
    width: 100%;
    min-height: 0;
    justify-self: stretch;
    padding: .8rem;
    border-radius: 16px;
  }

  .feature-window {
    grid-template-columns: 2.6rem minmax(0, 1fr);
    min-height: 24rem;
  }

  .feature-table-row {
    grid-template-columns: minmax(6.5rem, 1fr) repeat(2, minmax(2rem, auto));
  }

  .feature-table-row span:nth-last-child(-n+2) {
    display: none;
  }

  .feature-card,
  .feature-step {
    min-height: 13rem;
  }

  .employee-app-hero {
    padding: 3rem 0;
  }

  .page-intro {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .employee-app-card {
    height: 15rem;
    min-height: 15rem;
  }

  .feature-card,
  .feature-step {
    height: 15.5rem;
    min-height: 15.5rem;
  }

  .workflow-use {
    height: 15.5rem;
    min-height: 15.5rem;
  }

  .workflow-principle {
    height: 13.5rem;
    min-height: 13.5rem;
  }
}

.page-faq-answer {
  padding: 0 1.3rem 1.3rem;
}

.page-faq-answer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.page-faq-arrow {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--teal);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}

.page-faq-item[open] .page-faq-arrow {
  transform: rotate(90deg);
  background: var(--soft);
}

.page-faq-more {
  margin-top: 1.25rem;
}

.page-faq-head-button {
  width: fit-content;
  margin-top: 1.25rem;
  background: var(--teal-dark);
  color: white;
  box-shadow: none;
}

.page-faq-head-button:hover,
.page-faq-head-button:focus-visible {
  background: var(--teal-dark);
  color: white;
  box-shadow: 0 12px 24px rgba(13, 45, 53, 0.16);
}

@media (max-width: 760px) {
  .page-faq-grid {
    grid-template-columns: 1fr;
  }

  .page-faq-item summary {
    height: 96px;
    min-height: 68px;
    padding: 1rem;
  }

  .page-faq-answer {
    padding: 0 1rem 1.1rem;
  }
}

/* Desktop header spacing: keep the navigation calm while actions stay together. */
@media (min-width: 1121px) {
  .site-header {
    padding-left: clamp(1.25rem, 2.5vw, 3.25rem);
    padding-right: clamp(1.25rem, 2.5vw, 3.25rem);
  }

  .site-nav {
    gap: clamp(0.35rem, 0.75vw, 0.8rem);
    width: 100%;
    max-width: none;
    padding-inline: 0;
    justify-content: center;
  }

  .site-nav > a:not(.nav-cta),
  .nav-platform-trigger {
    padding: 0.62rem 0.82rem;
  }

  .nav-platform-trigger[aria-current="page"],
  .nav-platform-trigger[aria-expanded="true"] {
    padding-inline: 1rem;
  }

  /* Keep Contact and the language control together while the demo stays at the right edge. */
  .site-nav > .language-switch {
    order: 10;
    position: relative;
    right: auto;
    margin-left: 0.7rem;
  }

  .site-nav > .nav-cta {
    order: 11;
    position: absolute;
    right: clamp(1.25rem, 2.5vw, 3.25rem);
    margin-left: 0;
  }
}

@media (min-width: 1121px) and (max-width: 1280px) {
  .site-nav {
    gap: 0.35rem;
    font-size: 0.95rem;
  }

  .site-nav > a:not(.nav-cta),
  .nav-platform-trigger {
    padding-inline: 0.68rem;
  }

  .nav-platform-trigger[aria-current="page"],
  .nav-platform-trigger[aria-expanded="true"] {
    padding-inline: 0.82rem;
  }

  .site-nav > .language-switch {
    margin-left: 0.7rem;
  }

  .site-nav a.nav-cta {
    padding-inline: 0.78rem !important;
  }
}

.global-demo-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 4rem);
  width: var(--container);
  max-width: var(--content-max);
  margin: clamp(2.5rem, 5vw, 5rem) auto;
  padding: clamp(2rem, 4.5vw, 4.25rem);
  border-radius: 24px;
  background: var(--mint);
  color: var(--text);
}

.global-demo-cta h2 {
  max-width: 15ch;
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(2.35rem, 5vw, 4.75rem);
  font-weight: 750;
  line-height: 0.98;
  letter-spacing: 0;
}

.global-demo-cta .btn {
  flex: 0 0 auto;
  background: var(--teal-dark);
  color: #fff;
  box-shadow: none;
}

.global-demo-cta .btn:hover,
.global-demo-cta .btn:focus-visible {
  background: var(--teal);
  color: #fff;
}

@media (max-width: 700px) {
  .global-demo-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 1.75rem;
    border-radius: 16px;
  }

  .global-demo-cta h2 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .global-demo-cta .btn {
    width: 100%;
  }
}

.btn-text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--teal);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.btn-text-link:hover {
  color: var(--text);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin: 0;
}

.worktable,
.flow-board article,
.feature-main,
.feature-list article,
.quote-card,
.demo-form,
.founder-grid article,
.value-stack article {
  border: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow);
}

.hero-proof div {
  padding: 1rem;
  border-top: 1px solid var(--line);
  background: white;
  border-radius: 1.35rem;
  box-shadow: 0 10px 30px rgba(13, 45, 53, 0.08);
}

.hero-proof dt {
  color: var(--teal);
  font-size: 1.35rem;
  font-weight: 900;
}

.hero-proof dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.worktable {
  border-radius: 1.9rem;
  padding: 1.15rem;
  transform: rotate(1deg);
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.panel-head strong {
  color: var(--text);
}

.table-grid {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.05rem;
}

.table-grid th,
.table-grid td {
  min-width: 0;
  padding: 0.78rem 0.7rem;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 0.9rem;
}

.table-grid thead th {
  color: var(--teal);
  background: var(--mint-soft);
  font-weight: 800;
  text-align: left;
}

.table-grid td {
  text-align: left;
}

.table-grid tbody th {
  text-align: left;
}

.ai-strip {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin-top: 1rem;
  padding: 0.9rem;
  border-radius: 1.05rem;
  background: var(--mint-soft);
}

.ai-strip span {
  flex: 0 0 auto;
  border-radius: 0.45rem;
  padding: 0.2rem 0.42rem;
  background: var(--mint);
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 900;
}

.ai-strip p {
  margin: 0;
  color: var(--text);
}

.section {
  padding: 5rem 0;
}

.split,
.insight,
.demo,
.values {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.split p,
.insight-copy p,
.demo p,
.story-columns p,
.values p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-intro {
  width: 100%;
  max-width: 56rem;
  margin-bottom: 2rem;
  text-align: left;
}

.flow-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.flow-board article,
.feature-main,
.feature-list article,
.founder-grid article,
.value-stack article {
  border-radius: 1.45rem;
  padding: 1.35rem;
}

.flow-board span,
.founder-grid span {
  display: inline-block;
  margin-bottom: 2.3rem;
  color: var(--mint);
  font-weight: 900;
}

.flow-board p,
.feature-list p,
.feature-main p,
.founder-grid p,
.value-stack p {
  margin-bottom: 0;
  color: var(--muted);
}

.capability-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1rem;
}

.feature-main {
  min-height: 100%;
  background: linear-gradient(145deg, #dffff8, #ffffff);
}

.feature-main img {
  width: 3.1rem;
  margin-bottom: 5rem;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.quote-card {
  border-radius: 1.6rem;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  background: var(--panel-2);
}

.quote-card p {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.45rem, 3vw, 2.65rem);
  font-weight: 850;
  line-height: 1.12;
}

.text-link {
  color: var(--mint);
  font-weight: 850;
  margin-top: auto;
}

.demo {
  align-items: center;
}

.demo-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
  border-radius: 1.6rem;
  padding: 1.15rem;
}

label {
  display: grid;
  gap: 0.38rem;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  padding: 0.85rem;
  background: white;
  color: var(--text);
  font: inherit;
}

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

.privacy {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem !important;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(320px, 1fr) auto;
  align-items: start;
  gap: clamp(2rem, 5vw, 4rem);
  width: var(--container);
  max-width: var(--content-max);
  margin: clamp(3rem, 6vw, 5rem) auto 0;
  padding: 2.35rem clamp(1rem, 3vw, 2.5rem) 2.6rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  color: var(--muted);
}

.footer-brand {
  display: grid;
  gap: 0.9rem;
  min-width: 0;
  max-width: 28rem;
}

.footer-brand img {
  width: 134px;
  height: 44px;
  object-fit: contain;
  filter: none !important;
}

.footer-brand p,
.footer-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  min-width: 0;
}

.footer-nav div {
  display: grid;
  align-content: start;
  gap: 0.36rem;
}

.footer-nav strong {
  color: var(--text);
  font-size: 0.86rem;
  line-height: 1.2;
  margin-bottom: 0.18rem;
}

.footer-nav a {
  color: var(--muted);
  width: fit-content;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.25;
}

.footer-nav a:hover,
.social-links a:hover {
  color: var(--teal);
}

.social-links {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.social-links a {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: white;
}

.social-links svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-links a:nth-child(2) svg,
.social-links a:nth-child(3) svg,
.social-links a:nth-child(4) svg {
  fill: currentColor;
  stroke: none;
}

.footer-copy {
  justify-self: end;
  white-space: nowrap;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 2000;
  width: min(680px, calc(100% - 32px));
  transform: translateX(-50%);
  display: none;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow);
}

.cookie-banner.is-visible {
  display: grid;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.cookie-banner a {
  color: var(--teal);
  font-weight: 850;
}

.cookie-banner button {
  border: 0;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  background: var(--mint);
  color: var(--text);
  font-weight: 900;
}

.article-shell {
  padding: 4rem 0 6rem;
}

.blog-hero {
  width: var(--container);
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 84px 0 42px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.blog-hero h1 {
  max-width: 860px;
}

.blog-hero-simple {
  grid-template-columns: minmax(0, 1fr);
  padding-bottom: clamp(3rem, 6vw, 5.5rem);
}

.blog-hero-simple .blog-hero-copy {
  width: min(100%, 62rem);
}

.blog-hero-copy,
.all-features-hero > * {
  width: min(100%, 56rem);
  margin-inline: 0;
}

.synea-blog-motion {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(280px, 30vw, 390px);
  overflow: hidden;
  border: 1px solid rgba(0, 229, 192, 0.28);
  border-radius: 24px 24px 72px 24px;
  background: var(--text);
  isolation: isolate;
}

.article-brand-motion {
  width: min(100%, 74rem);
  min-height: clamp(260px, 32vw, 410px);
  margin: 0 auto clamp(42px, 6vw, 72px);
}

.synea-motion-wordmark {
  position: relative;
  z-index: 2;
  width: min(64%, 260px);
  height: auto;
  object-fit: contain;
  animation: synea-wordmark-breathe 5s ease-in-out infinite;
}

.synea-motion-mark {
  position: absolute;
  right: 8%;
  bottom: 8%;
  z-index: 3;
  width: clamp(48px, 7vw, 74px);
  height: auto;
  object-fit: contain;
  animation: synea-mark-shift 4.5s ease-in-out infinite;
}

.synea-motion-flow {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 15%;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: white;
  font-size: 0.72rem;
  font-weight: 850;
}

.synea-motion-flow span {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  padding: 0.42rem 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.synea-motion-flow svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.synea-motion-flow i {
  position: relative;
  flex: 1;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.synea-motion-flow i::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 38%;
  background: var(--mint);
  animation: synea-flow 2.8s ease-in-out infinite;
}

@keyframes synea-flow {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(300%); }
}

@keyframes synea-wordmark-breathe {
  0%, 100% { transform: translateY(0); opacity: 0.92; }
  50% { transform: translateY(-7px); opacity: 1; }
}

@keyframes synea-mark-shift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-8px, -8px); }
}

.blog-hero .lead,
.all-features-hero .lead,
.article-header .lead {
  max-width: 100%;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 20px;
  padding-top: 0;
}

.blog-card,
.app-mockup,
.article-image,
.all-feature-card,
.hero-card,
.mock-row,
.mock-ticket,
.mock-doc,
.mock-kpi,
.impact-grid div,
.value-stack article,
.founder-grid article,
.feature-list article,
.feature-main {
  min-width: 0;
}

.mock-row strong,
.mock-ticket strong,
.mock-doc strong,
.mock-status,
.app-mockup-pill,
.all-feature-card h2,
.all-feature-card p,
.blog-card-content h2,
.blog-card-content p,
.article-content p,
.article-content h2 {
  overflow-wrap: anywhere;
}

.app-mockup,
.article-image img {
  max-width: 100%;
}

.app-mockup,
.mock-row,
.mock-ticket,
.mock-doc,
.mock-kpi,
.mock-status,
.ai-mock,
.ai-btn {
  user-select: none;
}

.app-mockup button,
.ai-mock button,
.ai-btn {
  pointer-events: none;
}

.blog-card {
  min-width: 0;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: 0 10px 28px rgba(13, 45, 53, 0.07);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 192, 0.35);
}

.blog-card a {
  display: grid;
  grid-template-rows: 1fr;
  height: 100%;
}

.blog-card-featured a {
  grid-template-columns: 1fr;
}

.blog-card-media {
  min-height: 0;
  background: var(--mint-soft);
  aspect-ratio: 16 / 5.6;
  overflow: hidden;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.blog-logo-visual {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.7rem;
  width: 100%;
  height: 100%;
  padding: 1.2rem;
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 229, 192, 0.26), transparent 8rem),
    linear-gradient(135deg, #ffffff, var(--mint-soft));
}

.blog-logo-visual img {
  width: min(58%, 14rem);
  height: auto;
  object-fit: contain;
}

.blog-logo-visual span {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
}

.blog-card-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.5rem;
  padding: clamp(13px, 1.7vw, 17px);
}

.blog-card-content .blog-author {
  position: absolute;
  top: clamp(13px, 1.7vw, 17px);
  right: clamp(13px, 1.7vw, 17px);
  display: block;
  max-width: 45%;
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: right;
  white-space: nowrap;
}

.blog-card-content h2 {
  margin: 0;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.12;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-content p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.42;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tag-list,
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: flex-start;
}

.article-tags {
  margin-top: 1rem;
}

.tag-list span,
.article-tags span {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--mint-soft);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.2;
  padding: 0.28rem 0.58rem;
}

.blog-card .tag-list {
  gap: 0.32rem;
}

.blog-card .tag-list span {
  font-size: 0.68rem;
  padding: 0.18rem 0.44rem;
}

.blog-card .text-link {
  margin-top: auto;
  font-size: 0.86rem;
  line-height: 1.2;
}

.app-mockup {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #f8fbfb);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.app-mockup-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--line);
}

.app-mockup-title {
  color: var(--text);
  font-weight: 900;
}

.app-mockup-pill {
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  background: var(--mint-soft);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
}

.app-mockup-body {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
}

.mock-row,
.mock-ticket,
.mock-doc {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.85rem;
  background: white;
}

.mock-row strong,
.mock-ticket strong,
.mock-doc strong {
  color: var(--text);
}

.mock-row span,
.mock-ticket span,
.mock-doc span {
  color: var(--muted);
  font-size: 0.92rem;
}

.mock-status {
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
  background: var(--mint-soft);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  white-space: nowrap;
}

.mock-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.mock-kpi {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
  background: var(--mint-soft);
}

.mock-kpi strong {
  display: block;
  color: var(--text);
  font-size: 1.5rem;
}

.mock-kpi span {
  color: var(--muted);
  font-size: 0.88rem;
}

.blog-card-media .app-mockup,
.article-image .app-mockup {
  height: 100%;
  min-height: 220px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.feature-mockup-wide {
  grid-column: 1 / -1;
}

.app-showcase {
  display: block;
  padding-top: 0;
}

.synea-use-gallery {
  width: var(--container);
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 0 clamp(54px, 7vw, 92px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

.synea-use-gallery figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  box-shadow: 0 12px 30px rgba(13, 45, 53, 0.08);
}

.synea-use-gallery img {
  display: block;
  width: 100%;
  height: clamp(250px, 28vw, 410px);
  object-fit: cover;
}

.synea-use-gallery figure:first-child img {
  object-position: center 42%;
}

.synea-use-gallery figure:last-child img {
  object-position: center 48%;
}

.feature-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(18px, 2.5vw, 34px);
  align-items: stretch;
  width: var(--container);
  max-width: var(--content-max);
  margin-inline: auto;
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, var(--mint-soft) 100%);
}

.feature-showcase-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: auto;
  max-width: none;
  min-height: 0;
  margin: 0;
  padding: 0 clamp(1rem, 4vw, 4rem);
  align-items: center;
  text-align: center;
}

.feature-showcase-intro h1 {
  max-width: 14ch;
  margin: 0 0 1.25rem;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.98;
  text-align: center;
}

.feature-showcase-intro .lead {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.feature-showcase-photo {
  position: relative;
  min-width: 0;
  min-height: 510px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--mint-soft);
  box-shadow: 0 12px 30px rgba(13, 45, 53, 0.08);
}

.feature-showcase-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
}

.feature-showcase-photo figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: rgba(13, 45, 53, 0.9);
  color: white;
}

.feature-showcase-photo figcaption .eyebrow {
  margin: 0 0 0.35rem;
  color: var(--mint);
}

.feature-showcase-photo figcaption strong {
  display: block;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.2;
}

.feature-carousel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 1rem;
  min-width: 0;
  width: min(100%, 980px);
  min-height: 510px;
  margin: 0 auto;
  padding: clamp(1rem, 2vw, 1.4rem);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  box-shadow: 0 12px 30px rgba(13, 45, 53, 0.08);
}

.feature-carousel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.feature-carousel-head .eyebrow {
  margin: 0 0 0.25rem;
}

.feature-carousel-head h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.1;
}

.feature-slide-count {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.feature-slide-stage {
  position: relative;
  min-width: 0;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f6fafa;
}

.feature-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.feature-slide[hidden] {
  display: none;
}

.feature-slide > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: clamp(0.65rem, 1.5vw, 1rem);
  object-fit: contain;
  background: white;
}

.product-screen {
  display: grid;
  align-content: center;
  gap: 0.7rem;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: clamp(0.9rem, 2.2vw, 1.5rem);
  color: var(--text);
}

.product-screen-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.product-screen-bar strong {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
}

.product-screen-bar span,
.product-ticket b,
.planner-day span,
.reminder-step span {
  border-radius: 999px;
  padding: 0.3rem 0.55rem;
  background: var(--mint-soft);
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1.15;
  white-space: nowrap;
}

.product-ticket,
.planner-day,
.reminder-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}

.product-ticket div,
.planner-day div,
.reminder-step div {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.product-ticket strong,
.planner-day strong,
.reminder-step strong {
  font-size: 0.88rem;
  line-height: 1.2;
}

.product-ticket small,
.planner-day small,
.reminder-step small {
  color: var(--muted);
  line-height: 1.25;
}

.product-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px var(--mint-soft);
}

.product-ticket.is-urgent .product-dot {
  background: #e05569;
  box-shadow: 0 0 0 5px #ffe2e4;
}

.quote-screen {
  align-content: start;
}

.quote-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 0.7fr));
  gap: 0.6rem;
  align-items: center;
  padding: 0.7rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  font-size: 0.78rem;
}

.quote-row b {
  color: var(--teal);
}

.quote-row.quote-head {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
}

.quote-screen > p {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.planner-day > b,
.reminder-step > b {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9px;
  background: var(--mint);
  color: var(--teal-dark);
  font-size: 0.8rem;
}

.reminder-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.35rem;
  margin-bottom: 0.2rem;
}

.reminder-progress i {
  height: 0.35rem;
  border-radius: 999px;
  background: var(--line);
}

.reminder-progress i.is-done {
  background: var(--teal);
}

.reminder-progress i.is-current {
  background: var(--mint);
}

.workflow-slide-screen {
  align-content: start;
  min-width: 0;
  container-type: inline-size;
}

.workflow-slide-path {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 0.35rem;
  align-items: center;
}

.workflow-slide-path > div {
  display: grid;
  gap: 0.25rem;
  min-width: 0;
  min-height: 92px;
  align-content: center;
  padding: 0.6rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
}

.workflow-slide-path small {
  color: var(--teal);
  font-size: 0.58rem;
  font-weight: 900;
  text-transform: uppercase;
}

.workflow-slide-path strong {
  font-size: 0.68rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.workflow-slide-path i {
  color: var(--teal);
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 900;
}

.workflow-slide-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.workflow-slide-links span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.3rem 0.5rem;
  background: var(--mint-soft);
  color: var(--teal);
  font-size: 0.62rem;
  font-weight: 850;
}

.feature-carousel-controls {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr) 2.5rem;
  gap: 0.75rem;
  align-items: center;
}

.feature-carousel-arrow {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: var(--teal-dark);
  font: inherit;
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
}

.feature-carousel-arrow:hover,
.feature-carousel-arrow:focus-visible {
  border-color: var(--mint);
  background: var(--mint-soft);
}

.feature-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.feature-carousel-dots button {
  width: 0.62rem;
  height: 0.62rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c8dadd;
  cursor: pointer;
}

.feature-carousel-dots button.is-active {
  width: 1.7rem;
  border-radius: 999px;
  background: var(--teal);
}

.feature-carousel-dots button:focus-visible,
.feature-carousel-arrow:focus-visible {
  outline: 3px solid rgba(0, 229, 192, 0.35);
  outline-offset: 3px;
}

.workflow-editor-visual {
  display: grid;
  gap: 1.25rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 360px;
  padding: clamp(1rem, 2.5vw, 1.75rem);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #f5f9f9;
  color: var(--text);
  container-type: inline-size;
}

.workflow-editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.workflow-editor-toolbar span {
  max-width: 100%;
  border-radius: 999px;
  padding: 0.3rem 0.6rem;
  background: var(--mint-soft);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 850;
}

.workflow-editor-path {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 0.55rem;
  align-items: center;
}

.workflow-editor-path > i {
  color: var(--teal);
  font-size: 1.65rem;
  font-style: normal;
  font-weight: 900;
}

.workflow-node {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
  height: 132px;
  min-height: 132px;
  box-sizing: border-box;
  align-content: center;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  box-shadow: 0 8px 20px rgba(13, 45, 53, 0.06);
}

.workflow-node small {
  color: var(--teal);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.workflow-node strong {
  font-size: 0.88rem;
  line-height: 1.2;
  overflow-wrap: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.workflow-node span {
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.workflow-node-ai {
  border-color: rgba(0, 229, 192, 0.55);
  background: var(--mint-soft);
}

.workflow-node-condition {
  border-color: #d4b866;
}

.workflow-node-action {
  border-color: var(--teal);
}

.workflow-editor-integrations {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.workflow-editor-integrations span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0.4rem 0.75rem;
  background: white;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.article-process {
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0 1.75rem;
  padding: 0;
  list-style: none;
  counter-reset: workflow-step;
}

.article-process li {
  position: relative;
  padding: 0.9rem 1rem 0.9rem 3.4rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  color: var(--muted);
  counter-increment: workflow-step;
}

.article-process li::before {
  content: counter(workflow-step);
  position: absolute;
  top: 0.75rem;
  left: 0.85rem;
  display: grid;
  place-items: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: var(--mint-soft);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 900;
}

.article-source-note {
  padding: 0.9rem 1rem;
  border-left: 3px solid var(--mint);
  background: #f7fbfb;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.article-source-note a {
  color: var(--teal);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.workflow-editor-home {
  padding-top: clamp(3.5rem, 7vw, 6rem);
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
}

.workflow-editor-home-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.workflow-editor-home-copy {
  display: grid;
  justify-items: start;
  gap: 1rem;
}

.workflow-editor-home-copy h2,
.workflow-editor-home-copy p {
  margin: 0;
}

.workflow-editor-home-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.workflow-editor-home .workflow-editor-visual {
  min-height: 330px;
}

.page-intro {
  display: grid;
  align-content: start;
  min-height: clamp(280px, 38svh, 420px);
  padding-top: clamp(3.5rem, 7vw, 7rem);
  padding-bottom: clamp(3.5rem, 7vw, 7rem);
  text-align: left;
}

.page-intro h1 {
  width: min(100%, 15ch);
  margin: 0.55rem 0 1rem;
  font-size: clamp(2.75rem, 5.6vw, 5.25rem);
  line-height: 1;
}

.page-intro .lead {
  width: min(100%, 760px);
  margin: 0;
}

@media (max-width: 780px) {
  .page-intro {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.platform-overview {
  position: relative;
  overflow: hidden;
  margin-block: 0;
  padding: clamp(2.25rem, 4vw, 3.5rem) 0;
  background: linear-gradient(180deg, var(--bg) 0%, #edfafa 10%, #e5f8f5 50%, #edfafa 90%, var(--bg) 100%);
}

.platform-overview .ws-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.platform-overview .ws-rakoo-copy h2 {
  max-width: 13ch;
  margin: 0 0 1rem;
  font-size: clamp(2.35rem, 4.5vw, 4.6rem);
  line-height: 1;
}

.platform-overview .ws-rakoo-copy p {
  max-width: 42rem;
  margin: 0;
  color: var(--muted);
}

.platform-overview .ws-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
}

.platform-overview .ws-metric {
  display: grid;
  gap: 0.35rem;
}

.platform-overview .ws-metric strong {
  font-size: clamp(2.6rem, 5vw, 4.75rem);
  line-height: 1;
}

.platform-overview .ws-metric span {
  max-width: 15rem;
  color: var(--muted);
  line-height: 1.4;
}

.platform-promise-grid,
.workflow-use-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 1rem;
}

.platform-promise,
.workflow-use {
  height: 100%;
  box-sizing: border-box;
  padding: clamp(1.25rem, 2.4vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.platform-promise span,
.workflow-use span {
  display: block;
  margin-bottom: 1.25rem;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 800;
}

.platform-promise h2,
.workflow-use h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.15;
}

.platform-promise p,
.workflow-use p {
  margin: 0;
  color: var(--muted);
}

.platform-domain-index {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.platform-domain-index a {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  min-height: 64px;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font-weight: 750;
}

.platform-domain-index a:hover,
.platform-domain-index a:focus-visible {
  border-color: var(--mint);
  background: var(--mint-soft);
}

.platform-domain-index b {
  color: var(--teal);
  font-size: 0.72rem;
}

.platform-domain-index i {
  color: var(--teal);
  font-style: normal;
  font-size: 1.25rem;
}

/* In-page function directory: the same three groups as the Platform mega menu. */
.function-directory {
  box-sizing: border-box;
  width: var(--container);
  max-width: var(--content-max);
  margin: clamp(2.5rem, 5vw, 4.5rem) auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}

.function-directory-head {
  max-width: 48rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.function-directory-head h2 {
  margin: 0.35rem 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.05;
}

.function-directory-head > p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.function-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 2rem);
}

.function-directory-group {
  min-width: 0;
}

.function-directory-group h3 {
  margin: 0 0 0.65rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.function-directory-group a {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr) 1.25rem;
  align-items: center;
  gap: 0.65rem;
  height: 70px;
  padding: 0.7rem 0.75rem;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-weight: 750;
}

.function-directory-group a:first-of-type {
  border-top-color: transparent;
}

.function-directory-group a:hover,
.function-directory-group a:focus-visible {
  border-radius: 10px;
  background: var(--mint-soft);
  outline: 0;
}

.function-directory-group b {
  color: var(--teal);
  font-size: 0.72rem;
}

.function-directory-group i {
  color: var(--teal);
  font-style: normal;
  font-size: 1.25rem;
  text-align: right;
}

.home-visual-more {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
}

.home-visual-more .btn {
  background: var(--accent);
  color: #fff;
}

@media (max-width: 900px) {
  .function-directory-grid {
    grid-template-columns: 1fr;
  }

  .function-directory-group + .function-directory-group {
    padding-top: 0.5rem;
  }
}

@media (max-width: 620px) {
  .function-directory {
    width: calc(100% - (var(--page-gutter) * 2));
    max-width: calc(100% - (var(--page-gutter) * 2));
    padding: 1.25rem;
    border-radius: 18px;
  }

  .function-directory-group a {
    grid-template-columns: 1.75rem minmax(0, 1fr) 1rem;
    height: 70px;
    padding-inline: 0.5rem;
    font-size: 0.94rem;
  }
}

.workflow-page-demo {
  padding-top: 0;
}

.workflow-page-demo .workflow-editor-visual {
  margin-top: 1.75rem;
}

.workflow-principles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 0.75rem;
  counter-reset: workflow-principle;
}

.workflow-principle {
  height: 100%;
  box-sizing: border-box;
  padding: 1.25rem;
  border-top: 2px solid var(--mint);
  background: #fff;
  counter-increment: workflow-principle;
}

.workflow-principle::before {
  content: counter(workflow-principle, decimal-leading-zero);
  display: block;
  margin-bottom: 1rem;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 800;
}

.workflow-principle h2 {
  margin: 0 0 0.55rem;
  font-size: 1.1rem;
}

.workflow-principle p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .platform-overview .ws-grid {
    grid-template-columns: 1fr;
  }

  .platform-promise-grid,
  .workflow-use-grid,
  .workflow-principles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .platform-promise-grid,
  .workflow-use-grid,
  .workflow-principles,
  .platform-domain-index {
    grid-template-columns: 1fr;
  }

  .platform-overview .ws-metrics {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1rem;
  }
}

@container (max-width: 900px) {
  .workflow-editor-path,
  .workflow-slide-path {
    grid-template-columns: minmax(0, 1fr);
  }

  .workflow-editor-path > i,
  .workflow-slide-path > i {
    justify-self: center;
    transform: rotate(90deg);
  }

  .workflow-node,
  .workflow-slide-path > div {
    width: 100%;
    height: 132px;
    min-height: 132px;
  }
}

@media (max-width: 980px) {
  .workflow-editor-path,
  .workflow-slide-path {
    grid-template-columns: 1fr;
  }

  .workflow-editor-path > i,
  .workflow-slide-path > i {
    transform: rotate(90deg);
    justify-self: center;
  }

  .workflow-node,
  .workflow-slide-path > div {
    height: 132px;
    min-height: 132px;
  }

  .workflow-editor-home-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .workflow-editor-visual,
  .workflow-editor-home .workflow-editor-visual {
    gap: 0.8rem;
    min-height: 0;
    padding: 0.85rem;
    border-radius: 14px;
  }

  .workflow-editor-toolbar {
    align-items: flex-start;
    gap: 0.65rem;
  }

  .workflow-node {
    padding: 0.75rem;
    border-radius: 11px;
  }

  .workflow-editor-integrations,
  .workflow-slide-links {
    gap: 0.4rem;
  }

  .workflow-editor-integrations span,
  .workflow-slide-links span {
    padding: 0.32rem 0.5rem;
    font-size: 0.66rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .synea-motion-wordmark,
  .synea-motion-mark,
  .synea-motion-flow i::after {
    animation: none;
  }
}

@media (max-width: 820px) {
  .blog-hero {
    grid-template-columns: 1fr;
    padding-top: 56px;
  }

  .synea-blog-motion {
    min-height: 280px;
  }

  .synea-use-gallery {
    grid-template-columns: 1fr;
  }

  .synea-use-gallery img {
    height: clamp(230px, 66vw, 360px);
  }
}

.hero-card {
  background: white;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  min-width: 0;
}

.app-showcase .worktable {
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  transform: none;
}

.wt-head {
  margin-bottom: 16px;
  color: var(--teal);
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 800;
  letter-spacing: 0.3px;
  text-align: left;
}

.wt-head .wt-title {
  color: var(--text);
}

.wt-head .wt-sub {
  color: var(--teal-light);
}

.wt-table {
  width: 100%;
  border-collapse: collapse;
}

.wt-table th {
  padding: 8px 4px 12px;
  border-bottom: 2px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-align: left;
  white-space: nowrap;
}

.wt-table th.wt-c0,
.wt-table td.wt-c0 {
  text-align: left;
}

.wt-table th:not(.wt-c0) {
  text-align: left;
}

.wt-table td:not(.wt-c0) {
  text-align: center;
}

.wt-table td {
  padding: 12px 4px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

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

.wt-table td.wt-c0 {
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.wt-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--mint-soft);
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.wt-pill.hot {
  background: #ffe2e4;
  color: #e05569;
}


.all-features-hero {
  width: var(--container);
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 6.5rem) 0 clamp(2rem, 4vw, 3.25rem);
}

.all-features-hero h1 {
  max-width: 18ch;
  margin-bottom: 1.25rem;
  font-size: clamp(3rem, 6vw, 5.25rem);
  line-height: 0.98;
}

.all-features-hero .lead {
  max-width: 52rem;
  margin: 0;
}

.all-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 0;
}

.all-feature-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  padding: 28px;
  box-shadow: 0 6px 18px rgba(13, 45, 53, 0.035);
}

.all-feature-card h2 {
  margin-bottom: 0.65rem;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(22px, 2.4vw, 30px);
}

.all-feature-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.feature-domain-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 1rem;
  width: var(--container);
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 0 clamp(3.5rem, 6vw, 6rem);
  border: 0;
}

.feature-domain {
  grid-column: auto;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: clamp(1.35rem, 2.2vw, 1.8rem);
  box-shadow: 0 8px 24px rgba(13, 45, 53, 0.045);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.feature-domain:hover {
  border-color: rgba(67, 207, 180, 0.65);
  box-shadow: 0 14px 32px rgba(13, 45, 53, 0.08);
  transform: translateY(-2px);
}

.feature-domain-photo {
  position: relative;
  display: block;
  grid-column: span 2;
  aspect-ratio: 16 / 10;
  min-height: 0;
  height: auto;
  padding: 0;
  overflow: hidden;
  background: var(--mint-soft);
}

.feature-domain-photo:hover {
  transform: none;
}

.feature-domain-photo img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  padding: clamp(0.75rem, 1.8vw, 1.4rem);
  background: #eef8f6;
}

.feature-domain-photo figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  background: rgba(13, 45, 53, 0.9);
  color: white;
}

.feature-domain-photo figcaption .eyebrow {
  margin: 0 0 0.3rem;
  color: var(--mint);
}

.feature-domain-photo figcaption strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.3;
}

.feature-domain-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.15rem;
  min-width: 0;
}

.feature-domain-head > div {
  min-width: 0;
}

.feature-domain-icon {
  display: inline-grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  flex: 0 0 2.9rem;
  border: 1px solid rgba(67, 207, 180, 0.36);
  border-radius: 8px;
  background: var(--mint-soft);
  color: var(--teal);
}

.feature-domain-icon svg {
  width: 1.3rem;
  height: 1.3rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-domain h2 {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(1.25rem, 1.6vw, 1.55rem);
  font-weight: 750;
  line-height: 1.18;
  letter-spacing: 0;
  color: var(--text);
}

.feature-domain .eyebrow {
  margin: 0 0 0.3rem;
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1.2;
}

.feature-domain p {
  margin: 0 0 1.15rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

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

  .feature-showcase-photo {
    min-height: 380px;
  }

  .feature-showcase-intro {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .feature-showcase-photo {
    min-height: 330px;
  }

  .feature-carousel {
    min-height: 500px;
  }

  .feature-slide-stage,
  .feature-slide,
  .feature-slide > img,
  .product-screen {
    min-height: 0;
  }

  .feature-slide-stage {
    width: 100%;
    max-width: 100%;
    height: clamp(250px, 74vw, 365px);
    aspect-ratio: auto;
  }

  .product-ticket,
  .planner-day,
  .reminder-step {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .product-ticket b,
  .planner-day span,
  .reminder-step span {
    grid-column: 2;
    justify-self: start;
  }

  .quote-row {
    grid-template-columns: minmax(0, 1.25fr) repeat(3, minmax(3.4rem, 0.7fr));
    gap: 0.4rem;
    padding-inline: 0.55rem;
    font-size: 0.68rem;
  }

  .workflow-slide-path {
    grid-template-columns: 1fr;
  }

  .workflow-slide-path > div {
    min-height: 0;
  }

  .workflow-slide-path i {
    display: none;
  }
}


.feature-domain ul {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.feature-domain li {
  position: relative;
  padding-left: 1.15rem;
  overflow-wrap: anywhere;
}

.feature-domain li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--mint);
}

.feature-domain .btn-text-link {
  margin-top: auto;
  padding-top: 1.25rem;
}

@media (max-width: 1180px) {
  .feature-domain-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-domain {
    grid-column: auto;
  }
}

@media (max-width: 700px) {
  .feature-domain-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .feature-domain {
    padding: 1.25rem;
  }

  .feature-domain-photo {
    padding: 0;
    aspect-ratio: 16 / 10;
  }
}

.contact-page {
  width: var(--container);
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.contact-hero {
  max-width: 58rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.contact-hero h1 {
  margin-bottom: 1.25rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.contact-intro h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  line-height: 1.08;
}

.contact-points {
  display: grid;
  gap: 1.25rem;
}

.contact-points div {
  display: grid;
  gap: 0.35rem;
  padding-left: 1rem;
  border-left: 3px solid var(--mint);
}

.contact-points span {
  color: var(--muted);
  line-height: 1.55;
}

.contact-page-form {
  display: grid;
  gap: 1rem;
  min-width: 0;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  box-shadow: var(--shadow);
}

.contact-page-form h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-page-form label {
  min-width: 0;
}

.contact-page-form input,
.contact-page-form select,
.contact-page-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem;
  background: #f9fbfb;
  color: var(--text);
  font: inherit;
}

.contact-page-form textarea {
  min-height: 9rem;
  resize: vertical;
}

.contact-page-form input:focus-visible,
.contact-page-form select:focus-visible,
.contact-page-form textarea:focus-visible {
  outline: 3px solid rgba(0, 229, 192, 0.3);
  outline-offset: 2px;
  border-color: var(--mint);
}

.contact-page-form .btn {
  width: 100%;
}

.contact-privacy {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

@media (max-width: 820px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .contact-form-row {
    grid-template-columns: 1fr;
  }
}

.article-header {
  width: min(100%, 64rem);
  max-width: 56rem;
  margin-inline: auto;
  text-align: left;
}

.article-header h1 {
  max-width: 100%;
}

.context-links {
  box-sizing: border-box;
  width: var(--container);
  max-width: var(--content-max);
  margin: 2.5rem auto 0;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.context-links h2 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.15;
  letter-spacing: 0;
}

.context-links p {
  margin: 0;
  color: var(--muted);
}

.context-links a {
  color: var(--teal);
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.context-links-separator {
  margin-inline: 0.6rem;
  color: var(--muted);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.5rem;
  color: var(--muted);
}

.article-meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  background: white;
  font-size: 0.86rem;
}

.article-image {
  width: min(100%, 64rem);
  max-width: 56rem;
  margin: 3rem auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.9rem;
  box-shadow: var(--shadow);
}

.article-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-tool-preview {
  padding: clamp(1.25rem, 4vw, 3.5rem);
  background: linear-gradient(180deg, #ffffff, var(--mint-soft));
}

.article-tool-preview img {
  aspect-ratio: auto;
  object-fit: contain;
}

.article-content {
  width: min(100%, 72rem);
  max-width: 72rem;
  margin: 0 auto;
  color: var(--text);
  font-size: 1.1rem;
}

.article-content h2 {
  margin-top: 2.8rem;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
}

.article-content p {
  color: var(--muted);
}

.article-content > * {
  max-width: 100%;
}

.article-content .impact-grid,
.article-content aside {
  max-width: 100%;
}

.article-content aside {
  display: grid;
  gap: 0.5rem;
  margin: 2rem 0;
  border-left: 3px solid var(--mint);
  padding: 1.1rem 1.25rem;
  background: var(--mint-soft);
}

.article-content aside span {
  color: var(--muted);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.impact-grid div {
  display: grid;
  gap: 0.4rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  padding: 1rem;
  background: white;
}

.impact-grid span {
  color: var(--muted);
  font-size: 0.98rem;
}

.services-shell {
  padding: 4rem 0 6rem;
  overflow: visible;
}

.services-hero {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.services-hero h1 {
  max-width: 920px;
}

.service-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 0 3rem;
}

.service-card {
  display: grid;
  gap: 0.8rem;
  align-content: start;
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: var(--shadow-soft);
  padding: clamp(1.25rem, 2.5vw, 1.7rem);
  color: var(--text);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card .service-select {
  width: fit-content;
  max-width: 100%;
  border: 0;
  border-radius: 999px;
  background: var(--mint);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 0.65rem 0.9rem;
  line-height: 1.15;
  text-align: center;
  white-space: normal;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 229, 192, 0.4);
  box-shadow: var(--shadow);
}

.service-card small {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  line-height: 1.1;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.service-card span {
  align-self: end;
  color: var(--teal);
  font-weight: 900;
}

.service-section {
  scroll-margin-top: 7rem;
  display: grid;
  gap: 1.2rem;
  border-top: 1px solid var(--line);
  padding: 3rem 0;
}

.service-section h2 {
  margin: 0;
}

.service-section > p {
  max-width: 58rem;
  margin: 0;
  color: var(--muted);
}

.service-contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow);
  padding: clamp(1.4rem, 4vw, 2.25rem);
  margin-top: 2rem;
  overflow: visible;
}

.service-contact > *,
.service-contact .form,
.service-contact h2,
.service-contact p {
  min-width: 0;
}

.service-contact h2 {
  margin-top: 0;
  max-width: 52rem;
  word-break: normal;
  overflow-wrap: anywhere;
}

.service-contact .form {
  width: 100%;
  max-width: 720px;
  min-width: 0;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.service-contact .form-title {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 0 1rem;
  background: transparent;
  color: var(--text);
  line-height: 1.2;
  white-space: normal;
  overflow-wrap: anywhere;
}

.service-contact .btn {
  width: 100%;
  margin-top: 0.2rem;
  white-space: normal;
  line-height: 1.2;
}

.service-checks {
  display: grid;
  gap: 0.65rem;
}

.service-checks > span {
  display: block;
  color: var(--teal);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 900;
}

.service-check-options {
  display: grid;
  gap: 0.65rem;
}

.service-check {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--bg);
  padding: 0.85rem;
  color: var(--muted);
  font-weight: 750;
}

.service-check input {
  width: auto;
  flex: 0 0 auto;
  margin-top: 0.15rem;
  accent-color: var(--teal);
}

.service-check strong {
  display: block;
  color: var(--text);
}

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

  .service-card {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .services-shell.section {
    width: var(--container);
    max-width: var(--content-max);
    margin-left: auto;
    margin-right: auto;
    padding-top: 3rem;
    overflow: visible;
  }

  .services-hero,
  .service-contact,
  .service-section,
  .service-overview {
    max-width: 100%;
  }

  .services-hero h1,
  .service-contact h2 {
    max-width: 100%;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .service-contact {
    padding: 1.25rem;
    border-radius: 24px;
  }

  .service-contact .form {
    max-width: 100%;
    border-radius: 24px;
    overflow: visible;
  }

  .service-contact .form-title {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .service-card .service-select {
    width: 100%;
  }
}

.source-list {
  display: grid;
  gap: 0.65rem;
  margin: 1.2rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.source-list a {
  color: var(--teal);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 5vw, 48px);
  align-items: center;
  padding: 84px 0 64px;
}

.about-hero h1 {
  max-width: 760px;
}

.founder-signal {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.founder-signal span {
  min-height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 1.45rem;
  padding: 1rem;
  background: var(--mint-soft);
  color: var(--text);
  font-weight: 900;
}

.founder-signal svg {
  width: 1.7rem;
  height: 1.7rem;
  color: var(--teal);
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  flex: 0 0 auto;
}

.roadmap-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
  align-items: start;
}

.roadmap-line:before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 30px;
  height: 3px;
  background: linear-gradient(90deg, var(--mint), var(--teal-light), var(--line));
  border-radius: 999px;
}

.roadmap-item {
  position: relative;
  min-width: 0;
  padding-top: 56px;
}

.roadmap-item:before {
  content: "";
  position: absolute;
  top: 19px;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--mint);
  border: 5px solid #fff;
  box-shadow: 0 0 0 1px var(--line), 0 8px 22px rgba(13, 45, 53, 0.12);
}

.roadmap-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: start;
  height: 144px;
  box-sizing: border-box;
  list-style: none;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 8px 22px rgba(13, 45, 53, 0.045);
}

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

.roadmap-item span:not(.roadmap-arrow) {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.roadmap-arrow {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}

.roadmap-item[open] .roadmap-arrow {
  transform: rotate(90deg);
  background: var(--mint-soft);
}

.roadmap-line h3 {
  margin: 0 0 8px;
  min-height: 2.44em;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--text);
}

.roadmap-line p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14.5px;
}

.roadmap-detail {
  overflow: hidden;
  margin-top: 10px;
  border: 1px solid rgba(42, 184, 204, 0.24);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  padding: 14px 16px;
}

.roadmap-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(42, 184, 204, 0.28);
  border-radius: 999px;
  background: var(--mint-soft);
  color: var(--text);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.35;
}

.roadmap-note:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(0, 229, 192, 0.18);
  flex: 0 0 auto;
}

.team-story {
  border-top: 1px solid var(--line);
}

.story-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.founder-grid article strong {
  color: var(--text);
}

.about-photo-grid {
  width: var(--container);
  max-width: var(--content-max);
  margin: clamp(2.5rem, 5vw, 4.5rem) auto clamp(3rem, 7vw, 6rem);
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 1rem;
}

.about-photo-grid figure {
  margin: 0;
  position: relative;
  min-height: clamp(18rem, 34vw, 30rem);
  overflow: hidden;
  border-radius: 1.45rem;
  background: var(--mint-soft);
}

.about-photo-grid img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.about-photo-grid figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  width: fit-content;
  max-width: calc(100% - 2rem);
  padding: .65rem .85rem;
  border-radius: .75rem;
  background: rgba(13, 45, 53, .86);
  color: white;
  font-weight: 800;
  line-height: 1.3;
}

.value-stack {
  display: grid;
  gap: 0.9rem;
}

@media (max-width: 1120px) {
  .site-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 8px;
    padding-inline: clamp(1rem, 4vw, 2rem);
  }

  .nav-toggle {
    display: grid;
    grid-column: 3;
    justify-self: end;
    position: relative;
    top: auto;
    right: auto;
    z-index: 1001;
  }

  .site-nav {
    position: absolute;
    top: 4.8rem;
    left: clamp(1rem, 4vw, 2rem);
    right: clamp(1rem, 4vw, 2rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    max-height: calc(100dvh - 5.8rem);
    overflow-y: auto;
    scrollbar-width: none;
    border: 1px solid var(--line);
    border-radius: 0.65rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav.is-open {
    display: flex;
    z-index: 1000;
  }

  .site-nav a {
    width: 100%;
    padding: 0.7rem 0.85rem;
  }

  .nav-platform {
    display: block;
    width: 100%;
  }

  .nav-platform-trigger {
    justify-content: space-between;
    width: 100%;
    padding: 0.7rem 0.85rem;
  }

  .platform-mega-menu {
    position: static;
    width: 100%;
    max-height: none;
    margin-top: 0;
    padding: 1rem;
    overflow: visible;
    transform: none;
    border-radius: 12px;
    box-shadow: none;
  }

  .platform-mega-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .platform-mega-group > strong {
    margin-bottom: 0.3rem;
  }

  .platform-mega-link {
    padding: 0.45rem 0 !important;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: var(--mint-soft);
    color: var(--teal);
  }

  .site-nav .nav-cta {
    order: -2;
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-left: 0;
  }

  .site-nav > .language-switch {
    order: -1;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0.2rem 0.85rem 0.75rem;
    border-bottom: 1px solid var(--line);
  }

  .site-nav > .language-switch .language-menu {
    position: static;
    margin-top: 0.4rem;
    box-shadow: none;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: grid;
    position: relative;
    top: auto;
    right: auto;
    z-index: 1001;
  }

  .site-nav {
    position: absolute;
    top: 4.8rem;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 0.65rem;
    background: rgba(255, 255, 255, 0.98);
  }

  .site-nav .nav-cta {
    order: -2;
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-left: 0;
  }

  .site-nav > .language-switch {
    order: -1;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0.2rem 0.85rem 0.75rem;
    border-bottom: 1px solid var(--line);
  }

  .site-nav > .language-switch .language-menu {
    position: static;
    margin-top: 0.4rem;
    box-shadow: none;
  }

  .site-nav.is-open {
    display: flex;
    z-index: 1000;
  }

  .site-nav a {
    width: 100%;
    padding: 0.7rem 0.85rem;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: var(--mint-soft);
    color: var(--teal);
  }

  .hero,
  .split,
  .insight,
  .demo,
  .capability-layout,
  .app-showcase,
  .about-hero,
  .blog-list,
  .roadmap-line,
  .values {
    grid-template-columns: 1fr;
  }

  .roadmap-line:before {
    left: 11px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 3px;
    height: auto;
    background: linear-gradient(180deg, var(--mint), var(--teal-light), var(--line));
  }

  .roadmap-item {
    padding-top: 0;
    padding-left: 46px;
  }

  .roadmap-item:before {
    left: 0;
    top: 2px;
  }

  .blog-card-featured a {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }

  .hero > *,
  .split > *,
  .app-showcase > *,
  .capability-layout > *,
  .blog-list > *,
  .values > * {
    min-width: 0;
  }

  .worktable {
    transform: none;
  }

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

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

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

@media (max-width: 640px) {
  .hero,
  .section,
  .article-shell,
  .about-hero,
  .blog-hero,
  .all-features-hero,
  .site-footer {
    width: var(--container);
    max-width: var(--content-max);
  }

  .site-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 8px;
    padding-inline: 16px;
  }

  .nav-toggle {
    grid-column: 3;
    justify-self: end;
  }

  .brand,
  .brand img {
    width: 7.1rem;
    min-width: 7.1rem;
  }

  .about-hero,
  .section,
  .article-shell,
  .blog-hero,
  .all-features-hero,
  .hero {
    margin-left: 24px;
    margin-right: 24px;
  }

  .about-hero > *,
  .section > *,
  .lead,
  h1,
  h2,
  p {
    max-width: 100%;
  }

  h1 {
    font-size: clamp(30px, 8.8vw, 38px);
    line-height: 1.02;
    letter-spacing: -0.045em;
    word-break: normal;
    overflow-wrap: anywhere;
    max-width: 100%;
  }

  .translated-page-title {
    max-width: 100%;
    font-size: clamp(30px, 8.8vw, 38px);
    line-height: 1.02;
    letter-spacing: -0.045em;
    word-break: normal;
  }

  .blog-hero h1 {
    font-size: clamp(30px, 8.4vw, 38px);
    max-width: 100%;
  }

  .blog-card-content h2 {
    font-size: clamp(21px, 6.3vw, 28px);
    overflow-wrap: anywhere;
  }

  .lead {
    font-size: 1rem;
  }

  .app-mockup-top,
  .mock-row,
  .mock-ticket,
  .mock-doc {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .app-mockup-top {
    display: grid;
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .mock-status,
  .app-mockup-pill {
    width: fit-content;
    max-width: 100%;
    white-space: normal;
  }

  .all-features-hero h1,
  .all-features-hero .lead,
  .blog-hero h1,
  .blog-hero .lead,
  .article-header h1,
  .article-header .lead {
    max-width: min(320px, calc(100% - 64px));
  }

  .all-features-hero,
  .blog-hero,
  .article-shell,
  .section {
    overflow: hidden;
  }

  .table-grid th,
  .table-grid td {
    padding: 0.62rem 0.45rem;
    font-size: 0.78rem;
  }

  .hero-card {
    padding: 14px;
  }

  .wt-head {
    text-align: left;
    font-size: 0.95rem;
  }

  .wt-table th {
    padding: 7px 2px 9px;
    font-size: 8px;
    line-height: 1.15;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .wt-table {
    table-layout: fixed;
  }

  .wt-table th.wt-c0 {
    width: 32%;
  }

  .wt-table td {
    padding: 9px 2px;
  }

  .wt-table td.wt-c0 {
    font-size: 11px;
    white-space: normal;
  }

  .wt-pill {
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    font-size: 11px;
  }

  .wt-table,
  .wt-table thead,
  .wt-table tbody,
  .wt-table tr,
  .wt-table td {
    display: block;
    width: 100%;
  }

  .wt-table thead {
    display: none;
  }

  .wt-table tr {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }

  .wt-table tr:last-child {
    border-bottom: 0;
  }

  .wt-table td {
    border-bottom: 0;
    padding: 0;
  }

  .wt-table td.wt-c0 {
    grid-column: 1 / -1;
    width: 100%;
    font-size: 0.95rem;
  }

  .wt-table td:not(.wt-c0) {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.45rem 0.55rem;
    background: #f8fbfb;
    text-align: left;
  }

  .wt-table td:not(.wt-c0)::before {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 850;
  }

  .wt-table td:nth-child(2)::before { content: "Tickets"; }
  .wt-table td:nth-child(3)::before { content: "Dossiers"; }
  .wt-table td:nth-child(4)::before { content: "Facturen"; }
  .wt-table td:nth-child(5)::before { content: "Vergaderingen"; }
  .wt-table td:nth-child(6)::before { content: "Afspraken"; }

  .flow-board,
  .feature-list,
  .impact-grid,
  .story-columns,
  .founder-grid,
  .founder-signal,
  .demo-form {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

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

  .footer-copy {
    justify-self: start;
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .services-shell.section {
    width: var(--container);
    max-width: var(--content-max);
    margin-left: auto;
    margin-right: auto;
    overflow: visible;
  }

  .services-shell .service-contact {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 1.15rem;
  }

  .services-shell .service-contact h2 {
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.03;
    letter-spacing: -0.045em;
  }

  .services-shell .form-row {
    grid-template-columns: 1fr;
  }

  .services-shell .form,
  .services-shell .field,
  .services-shell input,
  .services-shell textarea,
  .services-shell button {
    max-width: 100%;
  }
}

@media (max-width: 1120px) {
  .site-footer {
    width: var(--container);
    max-width: var(--content-max);
    margin-left: auto;
    margin-right: auto;
    padding-inline: clamp(1rem, 4vw, 2rem);
  }
}

@media (max-width: 640px) {
  .site-footer {
    width: var(--container);
    max-width: var(--content-max);
    margin-left: auto;
    margin-right: auto;
    padding-inline: 1rem;
  }
}

@media (max-width: 1120px) {
  .blog-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1121px) {
  .blog-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .blog-list {
    grid-template-columns: 1fr;
  }

  .about-photo-grid {
    grid-template-columns: 1fr;
  }

  .about-photo-grid figure {
    min-height: 18rem;
  }
}

/* Shared content boundary: every page stays readable at every viewport width. */
html,
body,
main {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

main {
  overflow-x: clip;
}

.wrap,
.hero,
.section,
.article-shell,
.about-hero,
.blog-hero,
.all-features-hero,
.contact-hero,
.page-faq,
.global-demo-cta,
.blog-list {
  box-sizing: border-box;
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  max-width: calc(100% - (var(--page-gutter) * 2));
  margin-left: auto;
  margin-right: auto;
}

.page-faq,
.page-faq-head,
.page-faq-grid,
.page-faq-column,
.page-faq-item,
.page-faq-item summary,
.page-faq-item h3,
.page-faq-answer,
.global-demo-cta,
.global-demo-cta h2 {
  min-width: 0;
  max-width: 100%;
}

.page-faq-head h2,
.global-demo-cta h2,
.section h1,
.section h2,
.section h3,
.hero h1,
.hero h2,
.article-shell h1,
.article-shell h2,
.article-shell h3 {
  max-width: 100%;
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .wrap,
  .hero,
  .section,
  .article-shell,
  .about-hero,
  .blog-hero,
  .all-features-hero,
  .contact-hero,
  .page-faq,
  .global-demo-cta,
  .blog-list {
    width: calc(100% - (var(--page-gutter) * 2));
    max-width: calc(100% - (var(--page-gutter) * 2));
    margin-left: auto;
    margin-right: auto;
  }

  .page-faq-grid,
  .page-faq-column {
    width: 100%;
    max-width: 100%;
  }

  .page-faq-head h2 {
    width: 100%;
    max-width: 18ch;
    font-size: clamp(1.65rem, 6.2vw, 2.4rem);
    line-height: 1.04;
  }
}

/* Use one FAQ width everywhere, including FAQs nested inside the contact layout. */
.page-faq {
  width: var(--container);
  max-width: var(--content-max);
}

.contact-page > .page-faq {
  width: 100%;
  max-width: 100%;
}

/* Keep a clear, consistent breathing space between page content and the footer. */
main {
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

/* Keep roadmap titles readable and prevent mid-word wrapping in equal cards. */
.roadmap-line h3 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

@media (min-width: 981px) and (max-width: 1120px) {
  .roadmap-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Keep ordinary words intact while still allowing long content to wrap responsively. */
:where(h1, h2, h3, h4, p, li, summary),
.section h1,
.section h2,
.section h3,
.hero h1,
.hero h2,
.article-shell h1,
.article-shell h2,
.article-shell h3 {
  overflow-wrap: break-word;
}

/* The footer band spans the viewport; its content keeps the shared readable width. */
.site-footer {
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  padding-left: max(var(--page-gutter), calc((100% - var(--content-max)) / 2));
  padding-right: max(var(--page-gutter), calc((100% - var(--content-max)) / 2));
}

@media (max-width: 760px) {
  .site-footer {
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
  }
}

@media (max-width: 820px) {
  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .footer-copy {
    justify-self: start;
    white-space: normal;
  }
}

@media (max-width: 520px) {
  .footer-nav {
    grid-template-columns: 1fr;
  }
}

/* Keep the original clean transition from the shared menu into every page. */
.site-header {
  border: 0 !important;
  outline: 0 !important;
  background: #fff !important;
  box-shadow: none !important;
  filter: none !important;
  backdrop-filter: none !important;
}

.site-header::before,
.site-header::after {
  display: none !important;
  content: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* One horizontal content boundary per page. Nested page shells must not subtract
   the viewport gutters a second time. */
.contact-page > :where(header, section, div),
.services-shell > :where(header, section, div) {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

/* Articles use one readable measure from title through FAQ and final CTA. */
.article-shell,
.article-shell ~ .page-faq,
.article-shell ~ .global-demo-cta {
  width: min(72rem, calc(100% - (var(--page-gutter) * 2)));
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}

.article-shell .article-header,
.article-shell .article-image,
.article-shell .article-content {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 760px) {
  .article-shell,
  .article-shell ~ .page-faq,
  .article-shell ~ .global-demo-cta {
    width: calc(100% - (var(--page-gutter) * 2));
    max-width: calc(100% - (var(--page-gutter) * 2));
  }

  .all-features-hero h1,
  .all-features-hero .lead,
  .blog-hero h1,
  .blog-hero .lead,
  .article-header h1,
  .article-header .lead,
  .page-faq-head h2 {
    width: 100%;
    max-width: 100%;
  }
}

.form-feedback{display:none;margin:0 0 14px;padding:12px 14px;border-radius:10px;font-size:14px;font-weight:700;line-height:1.5;border:1px solid transparent;}
.form-feedback.is-success,.form-feedback.is-error{display:block;}
.form-feedback.is-success{color:#0f8a6c;background:#eafaf4;border-color:#b6ecd9;}
.form-feedback.is-error{color:#c23b3b;background:#fdeceb;border-color:#f6c6c2;}

.form-success-overlay{display:none;position:absolute;inset:0;z-index:5;align-items:center;justify-content:center;padding:20px;background:rgba(255,255,255,.98);}
.form-success-overlay.is-visible{display:flex;}
.form-success-overlay .overlay-card{position:relative;display:flex;flex-direction:column;align-items:center;gap:12px;text-align:center;background:#fff;border:1px solid #d7e7ea;border-radius:20px;box-shadow:0 20px 50px rgba(13,45,53,.14);padding:30px 26px;max-width:300px;width:100%;}
.form-success-overlay .overlay-icon{width:52px;height:52px;border-radius:50%;background:#eafaf4;color:#0f8a6c;font-size:24px;font-weight:900;display:grid;place-items:center;}
.form-success-overlay .overlay-message{margin:0;color:#0d2d35;font-size:16px;font-weight:700;line-height:1.55;}
.form-success-overlay .overlay-dismiss{position:absolute;top:10px;right:10px;width:28px;height:28px;border-radius:50%;border:1px solid #d7e7ea;background:#fff;color:#4d6871;font-size:16px;line-height:1;cursor:pointer;display:grid;place-items:center;}
.form-success-overlay .overlay-dismiss:hover{background:#f4f7f7;}
