:root {
  --bg-primary: #fafaf6;
  --bg-secondary: #f2f0eb;
  --bg-card: #ffffff;
  --blue: #7b9db7;
  --blue-light: #bdd0db;
  --blue-dark: #5a809a;
  --green: #8fa89b;
  --green-light: #c5d5c8;
  --green-dark: #6b8a74;
  --amber: #c8a45a;
  --amber-light: #e0cc8a;
  --amber-dark: #a8863a;
  --red: #c4908a;
  --red-light: #ddb8b3;
  --red-dark: #a87068;
  --text-primary: #2a2a28;
  --text-secondary: #6b6b66;
  --text-light: #9b9b95;
  --border: #e5e2dc;
  --footer-bg: #262624;
  --shadow-soft: 0 18px 45px rgba(42, 42, 40, 0.08);
  --shadow-card: 0 10px 30px rgba(42, 42, 40, 0.06);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: min(1200px, calc(100vw - 2rem));
  --font-display: "DM Serif Display", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --font-mono: "Space Mono", "SFMono-Regular", monospace;
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: var(--blue-dark);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: var(--blue);
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(123, 157, 183, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 999;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--text-primary);
  color: #fff;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 7rem 0;
}

.section--alt {
  background: var(--bg-secondary);
}

.section--tight {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-header {
  max-width: 42rem;
  margin-bottom: 2.75rem;
}

.section-header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header--wide {
  max-width: 56rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-dark);
}

.eyebrow::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  line-height: 1.06;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3.25rem, 7vw, 5.8rem);
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

h3 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
}

p {
  margin: 0 0 1rem;
  color: var(--text-secondary);
}

.lead {
  font-size: clamp(1.3rem, 2.1vw, 1.58rem);
  line-height: 1.55;
  font-weight: 200;
}

.lead--single-line {
  white-space: nowrap;
}

.section-header[id] {
  scroll-margin-top: 8rem;
}

.muted {
  color: var(--text-light);
}

.muted--pricing {
  margin-top: 0.7rem;
  text-align: center;
}

.text-blue {
  color: var(--blue-dark);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.48rem 0.9rem;
  border: 1px solid rgba(123, 157, 183, 0.24);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text-primary);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button-row--pricing {
  justify-content: center;
  margin-top: 1.7rem;
}

.button-row--contact {
  margin-top: 1.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.65rem;
  padding: 0.9rem 1.8rem;
  border: 1px solid transparent;
  border-radius: 18px;
  font-size: 1.2rem;
  font-weight: 300;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px) scale(1.01);
  box-shadow: var(--shadow-card);
}

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

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--blue-dark);
  color: #fff;
}

.button--secondary {
  border-color: rgba(123, 157, 183, 0.36);
  background: rgba(255, 255, 255, 0.78);
  color: var(--blue-dark);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 1rem 0;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition), padding var(--transition);
}

.site-header.is-scrolled,
.page-shell .site-header {
  padding: 0.65rem 0;
  background: rgba(250, 250, 246, 0.84);
  backdrop-filter: blur(16px);
  box-shadow: 0 6px 20px rgba(42, 42, 40, 0.05);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.02em;
  color: var(--text-primary);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.045em;
}

.brand__ten {
  font-family: var(--font-mono);
  font-size: 1.08em;
  font-weight: 700;
}

.brand__x {
  display: inline-block;
  font-size: 0.98em;
  font-weight: 400;
  line-height: 1;
  color: var(--blue);
}

.brand--inverse,
.brand--inverse:hover,
.brand--inverse:focus-visible {
  color: #fff;
}

.brand--inverse .brand__x {
  color: var(--blue-light);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__list,
.language-switcher {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__list a {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-primary);
}

.language-switcher a {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-primary);
}

.language-switcher {
  gap: 0.5rem;
}

.language-switcher a {
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  color: var(--text-secondary);
}

.language-switcher a.is-active {
  background: rgba(123, 157, 183, 0.16);
  color: var(--blue-dark);
}

.language-menu {
  position: relative;
}

.language-option {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
}

.language-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
}

.language-code {
  letter-spacing: 0.04em;
}

.language-menu__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  min-width: 6.2rem;
  padding: 0.62rem 0.82rem;
  border: 1px solid rgba(123, 157, 183, 0.24);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--text-secondary);
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}

.language-menu__toggle:hover,
.language-menu__toggle:focus-visible {
  border-color: rgba(123, 157, 183, 0.38);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-primary);
}

.language-menu__caret {
  font-size: 0.76rem;
  color: var(--blue-dark);
  transition: transform var(--transition);
}

.language-menu__panel {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  z-index: 20;
  display: grid;
  gap: 0.2rem;
  min-width: 9rem;
  padding: 0.45rem;
  border: 1px solid rgba(123, 157, 183, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-card);
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.45rem);
  transition: opacity var(--transition), transform var(--transition);
}

.language-menu__panel a {
  display: flex;
  align-items: center;
  padding: 0.6rem 0.72rem;
  border-radius: 12px;
  font-size: 0.96rem;
  font-weight: 300;
  color: var(--text-secondary);
}

.language-menu__panel a:hover,
.language-menu__panel a:focus-visible,
.language-menu__panel a.is-active {
  background: rgba(123, 157, 183, 0.12);
  color: var(--text-primary);
}

.language-menu.is-open .language-menu__caret {
  transform: rotate(180deg);
}

.language-menu.is-open .language-menu__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(42, 42, 40, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--text-primary);
}

.nav__toggle-line {
  width: 1.15rem;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -5px 0 currentColor, 0 5px 0 currentColor;
}

.hero {
  position: relative;
  padding: 8.2rem 0 4.4rem;
  overflow: clip;
  background:
    radial-gradient(circle at top left, rgba(189, 208, 219, 0.45), transparent 32rem),
    radial-gradient(circle at right 20%, rgba(197, 213, 200, 0.32), transparent 24rem),
    linear-gradient(180deg, #fefdf9 0%, var(--bg-primary) 40%, #f5f2ea 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -12rem -8rem auto;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  background: rgba(224, 204, 138, 0.22);
  filter: blur(40px);
  pointer-events: none;
}

.hero__layout {
  display: grid;
  gap: 2.2rem;
  align-items: start;
}

.hero__content {
  max-width: 56rem;
}

.hero__content > .pill {
  margin-bottom: 1rem;
}

.hero__title {
  max-width: none;
  font-size: clamp(2.2rem, 8.5vw, 4.45rem);
  line-height: 0.98;
}

.hero__title-line {
  display: block;
  white-space: nowrap;
}

.hero-rotator {
  position: relative;
  min-height: 8rem;
  margin: 2.3rem 0 1.5rem;
}

.hero-rotator__item {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: translateY(0.75rem);
  transition: opacity 500ms ease, transform 500ms ease;
  font-size: clamp(1.18rem, 2vw, 1.52rem);
  line-height: 1.48;
  font-weight: 400;
  color: var(--text-secondary);
}

.hero-rotator__item.is-active {
  opacity: 1;
  transform: translateY(0);
}

.hero-rotator__lead {
  color: var(--blue-dark);
  font-weight: 700;
}

.hero-rotator__body {
  font-weight: 300;
}

.hero-rotator__punch {
  font-weight: 600;
  color: var(--text-primary);
}

.hero__closing {
  max-width: 24ch;
  margin-bottom: 2rem;
  font-size: clamp(1.1rem, 1.95vw, 1.45rem);
  color: var(--text-secondary);
  font-weight: 300;
}

.hero__closing-line,
.hero__closing-emphasis {
  display: block;
}

.hero__closing-emphasis {
  font-weight: 600;
  color: var(--text-primary);
}

.hero__trust {
  margin-top: 1.4rem;
  font-size: 1.1rem;
  font-weight: 200;
  color: rgba(42, 42, 40, 0.44);
}

.banner {
  margin-top: 6rem;
  margin-bottom: -2rem;
}

.banner__inner {
  padding: 0.95rem 1.15rem;
  border: 1px solid rgba(200, 164, 90, 0.28);
  border-radius: var(--radius-sm);
  background: rgba(224, 204, 138, 0.2);
  color: var(--text-primary);
  font-size: 1rem;
}

.stats-row,
.card-grid,
.use-case-grid,
.pricing-grid,
.results-grid,
.integrations-grid,
.legal-grid,
.cta-grid {
  display: grid;
  gap: 1.25rem;
}

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

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

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

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

.card,
.agent-card,
.pricing-card,
.result-card,
.comparison-card,
.callout,
.page-card,
.contact-card,
.legal-card {
  padding: 1.6rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
}

.card--problem {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.card--problem h3 {
  min-height: 2.7em;
  margin-bottom: 1.25rem;
}

.card--problem p {
  font-weight: 300;
  line-height: 1.65;
}

.card--fit {
  border-left: 4px solid var(--blue);
}

.card--fit p {
  font-size: 1.2rem;
  line-height: 1.72;
  font-weight: 300;
  font-style: italic;
  color: rgba(42, 42, 40, 0.76);
}

.card__icon,
.step__number,
.agent-avatar,
.result-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: rgba(123, 157, 183, 0.14);
  color: var(--blue-dark);
  font-size: 1.2rem;
  font-weight: 700;
}

.card__icon {
  margin-bottom: 1.35rem;
}

.card__icon--money {
  background: rgba(200, 164, 90, 0.18);
  color: var(--amber-dark);
}

.card__icon--alert {
  background: rgba(196, 144, 138, 0.2);
  color: var(--red-dark);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.step {
  position: relative;
  padding: 1.6rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.75);
}

.step p {
  font-weight: 300;
  line-height: 1.65;
}

.step::after {
  content: "";
  position: absolute;
  inset: 1.65rem -0.7rem auto auto;
  width: 1.4rem;
  height: 1px;
  background: var(--border);
}

.step:last-child::after {
  display: none;
}

.step__number {
  margin-bottom: 1.1rem;
  font-size: 0.95rem;
}

.step__number--green {
  background: rgba(143, 168, 155, 0.18);
  color: var(--green-dark);
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.flow-step {
  position: relative;
  padding: 1.4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
}

.flow-step p {
  font-weight: 300;
  line-height: 1.65;
}

.flow-step::after {
  content: "→";
  position: absolute;
  top: 1.45rem;
  right: -0.75rem;
  color: var(--text-light);
}

.flow-step:last-child::after {
  display: none;
}

.flow-step strong {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--text-primary);
}

.callout {
  background: linear-gradient(135deg, rgba(189, 208, 219, 0.4), rgba(255, 255, 255, 0.92));
}

.callout--center {
  text-align: center;
}

.callout--process {
  background: rgba(189, 208, 219, 0.32);
  border-color: rgba(123, 157, 183, 0.22);
  text-align: center;
}

.callout--process p {
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  font-size: 0.9rem;
}

.callout--process strong {
  font-weight: 600;
}

.callout--note {
  margin-top: 2.6rem;
  background: rgba(189, 208, 219, 0.32);
  border-color: rgba(123, 157, 183, 0.22);
  text-align: center;
}

.callout--note p {
  font-weight: 300;
  line-height: 1.65;
  font-size: 1.12rem;
}

.callout p:last-child,
.card p:last-child,
.agent-card p:last-child,
.pricing-card p:last-child,
.page-card p:last-child,
.legal-card p:last-child {
  margin-bottom: 0;
}

.agent-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.95rem;
}

.agent-card h3 {
  min-height: 2.5em;
  margin-bottom: 0.15rem;
}

.agent-card p {
  font-weight: 300;
  line-height: 1.65;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.95rem;
}

.pricing-card h3 {
  min-height: 2.45em;
  margin-bottom: 0.15rem;
}

.pricing-card p {
  font-weight: 300;
  line-height: 1.65;
}

.pricing-card .muted {
  margin-top: auto;
  padding-top: 0.35rem;
}

.agent-avatar {
  width: 4.25rem;
  height: 4.25rem;
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}

.agent-avatar--green {
  background: rgba(143, 168, 155, 0.22);
  color: var(--green-dark);
}

.agent-avatar--blue {
  background: rgba(123, 157, 183, 0.22);
  color: var(--blue-dark);
}

.agent-avatar--amber {
  background: rgba(200, 164, 90, 0.22);
  color: var(--amber-dark);
}

.agent-avatar--ink {
  background: rgba(42, 42, 40, 0.08);
  color: var(--text-primary);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.38rem 0.7rem;
  border-radius: 16px;
  font-size: 0.82rem;
  font-weight: 700;
}

.badge--segment {
  background: rgba(123, 157, 183, 0.16);
  color: var(--blue-dark);
}

.badge--live {
  background: rgba(143, 168, 155, 0.2);
  color: var(--green-dark);
}

.badge--dev {
  background: rgba(200, 164, 90, 0.22);
  color: var(--amber-dark);
}

.badge--soon {
  background: rgba(42, 42, 40, 0.08);
  color: var(--text-secondary);
}

.badge--manual {
  background: rgba(196, 144, 138, 0.2);
  color: var(--red-dark);
}

.badge--agent {
  background: rgba(143, 168, 155, 0.22);
  color: var(--green-dark);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
}

.comparison-table td:nth-child(2) {
  color: var(--red-dark);
  background: rgba(196, 144, 138, 0.06);
}

.comparison-table td:nth-child(3) {
  color: var(--green-dark);
  background: rgba(143, 168, 155, 0.07);
}

.faq {
  display: grid;
  gap: 1rem;
}

.faq details {
  padding: 1.2rem 1.3rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
}

.faq summary {
  list-style: none;
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--text-primary);
  cursor: pointer;
}

.faq details p {
  font-size: 1.06rem;
  font-weight: 300;
  line-height: 1.65;
}

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

.faq details[open] {
  box-shadow: var(--shadow-card);
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--blue-dark);
  font-size: 1.2rem;
}

.faq details[open] summary::after {
  content: "−";
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
  gap: 1.4rem;
  align-items: start;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

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

.field label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.field__optional {
  font-weight: 300;
  color: var(--text-light);
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  color: var(--text-primary);
}

.field textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-status {
  display: none;
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(196, 144, 138, 0.14);
  color: var(--red-dark);
}

.form-status.is-visible {
  display: block;
}

.contact-card--form {
  padding: 1.9rem;
}

.contact-card--form form {
  display: grid;
  align-content: start;
}

.contact-card--form .field textarea {
  min-height: 9.5rem;
}

.contact-card--aside {
  max-width: 28rem;
  justify-self: end;
  padding: 1.45rem 1.45rem 1.55rem;
}

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

.contact-point {
  display: grid;
  gap: 0.35rem;
}

.contact-point strong {
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--text-primary);
}

.contact-point p,
.contact-point a {
  font-size: 1.06rem;
  font-weight: 300;
  line-height: 1.65;
}

.site-footer {
  padding: 4rem 0 2.2rem;
  background: #1b1e20;
  color: rgba(255, 255, 255, 0.8);
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr) minmax(0, 0.9fr);
  gap: 2.2rem;
  padding: 2.15rem 2.2rem;
  border: 0;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: none;
}

.site-footer__brand .brand {
  margin-bottom: 1.1rem;
}

.site-footer__tagline {
  max-width: 24rem;
  margin-bottom: 1rem;
  font-size: 1.06rem;
  font-weight: 300;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__credit {
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 200;
  color: rgba(255, 255, 255, 0.56);
}

.site-footer__links {
  display: grid;
  align-content: start;
  gap: 0.78rem;
  padding-left: 1.4rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__links a {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer__meta {
  display: grid;
  align-content: start;
  justify-items: end;
  gap: 1.2rem;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.7rem 1rem;
}

.site-footer__legal a {
  font-size: 0.98rem;
  font-weight: 300;
}

.site-footer__languages {
  display: grid;
  justify-items: end;
  gap: 0.55rem;
}

.site-footer__languages span {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.46);
}

.site-footer__language-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
}

.site-footer__language-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.38rem 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.66);
}

.site-footer__language-links a.is-active {
  border-color: rgba(189, 208, 219, 0.28);
  background: rgba(123, 157, 183, 0.2);
  color: #fff;
}

.site-footer__copyright {
  margin-bottom: 0;
  font-size: 0.94rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
}

.legal-card--main {
  padding: 2rem;
}

.legal-grid--single {
  grid-template-columns: 1fr;
}

.legal-prose {
  display: grid;
  gap: 1.6rem;
  margin-top: 2rem;
}

.legal-prose section {
  padding-top: 1.55rem;
  border-top: 1px solid rgba(42, 42, 40, 0.08);
}

.legal-prose section:first-child {
  padding-top: 0;
  border-top: 0;
}

.legal-prose h2 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
}

.legal-prose p,
.legal-prose li {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-secondary);
}

.legal-prose p:last-child,
.legal-prose li:last-child {
  margin-bottom: 0;
}

.legal-list {
  margin: 0;
  padding-left: 1.2rem;
}

.legal-list li + li {
  margin-top: 0.45rem;
}

.legal-note {
  padding: 1rem 1.05rem;
  border: 1px solid rgba(123, 157, 183, 0.18);
  border-radius: 18px;
  background: rgba(189, 208, 219, 0.22);
}

.legal-meta {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.legal-meta strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-dark);
}

.legal-meta p {
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.65;
}

.legal-card__updated {
  margin-top: 2rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(42, 42, 40, 0.08);
  font-size: 0.98rem;
  font-weight: 300;
  color: var(--text-light);
}

.consent-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 140;
  display: none;
  max-width: 56rem;
  margin: 0 auto;
  padding: 1.2rem 1.25rem;
  border: 1px solid rgba(123, 157, 183, 0.2);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.consent-banner.is-visible {
  display: block;
}

.consent-banner__eyebrow {
  display: inline-flex;
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-dark);
}

.consent-banner p {
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.68;
}

.consent-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.consent-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.72rem 1.05rem;
  border: 1px solid rgba(123, 157, 183, 0.24);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text-primary);
  font-size: 0.98rem;
  font-weight: 300;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.consent-button:hover,
.consent-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(123, 157, 183, 0.38);
  background: rgba(255, 255, 255, 1);
}

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

.consent-button--primary:hover,
.consent-button--primary:focus-visible {
  background: var(--blue-dark);
  color: #fff;
}

.consent-banner__settings {
  display: none;
  gap: 0.8rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(42, 42, 40, 0.08);
}

.consent-banner__settings.is-open {
  display: grid;
}

.consent-choice {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(250, 250, 246, 0.94);
}

.consent-choice__copy strong {
  display: block;
  margin-bottom: 0.18rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
}

.consent-choice__copy span {
  display: block;
  font-size: 0.94rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-secondary);
}

.consent-choice input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  accent-color: var(--blue-dark);
}

.consent-banner__footnote {
  font-size: 0.9rem;
  color: var(--text-light);
}

.consent-manage {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 130;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 0.95rem;
  border: 1px solid rgba(123, 157, 183, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-card);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 300;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.consent-manage.is-visible {
  display: inline-flex;
}

.consent-manage:hover,
.consent-manage:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(123, 157, 183, 0.36);
  background: rgba(255, 255, 255, 1);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}

.page-shell {
  min-height: 100svh;
  background:
    radial-gradient(circle at top left, rgba(189, 208, 219, 0.4), transparent 28rem),
    linear-gradient(180deg, #fefdf9 0%, var(--bg-primary) 32%, #f4f1eb 100%);
}

.page-main {
  padding-top: 8.2rem;
}

.page-hero {
  padding: 3rem 0 2rem;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
}

.page-card--sticky {
  position: sticky;
  top: 7rem;
}

.stats-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.stat {
  display: grid;
  gap: 0.25rem;
}

.stat strong {
  font-size: 1.5rem;
  color: var(--text-primary);
}

.results-grid .result-card:nth-child(1) .result-card__icon {
  background: rgba(196, 144, 138, 0.2);
  color: var(--red-dark);
}

.results-grid .result-card:nth-child(2) .result-card__icon,
.results-grid .result-card:nth-child(3) .result-card__icon,
.results-grid .result-card:nth-child(4) .result-card__icon {
  background: rgba(143, 168, 155, 0.22);
  color: var(--green-dark);
}

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

.integration-pill {
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  text-align: center;
  color: var(--text-primary);
  font-weight: 600;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.4rem;
  border: 1px solid rgba(123, 157, 183, 0.24);
  border-radius: var(--radius-md);
  background: rgba(189, 208, 219, 0.18);
}

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

.thank-you-card {
  max-width: 42rem;
  margin: 0 auto;
  padding: 2.2rem;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

[data-delay="1"] {
  transition-delay: 90ms;
}

[data-delay="2"] {
  transition-delay: 180ms;
}

[data-delay="3"] {
  transition-delay: 270ms;
}

@media (max-width: 1040px) {
  .card-grid,
  .use-case-grid,
  .timeline,
  .process-flow,
  .integrations-grid,
  .stats-row,
  .legal-grid,
  .contact-layout,
  .page-hero__grid {
    grid-template-columns: 1fr;
  }

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

  .step::after,
  .flow-step::after {
    display: none;
  }

  .page-card--sticky {
    position: static;
  }

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

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

  .legal-card--main {
    padding: 1.8rem;
  }

  .site-footer__meta {
    justify-items: start;
  }

  .site-footer__legal,
  .site-footer__language-links {
    justify-content: flex-start;
  }

  .site-footer__languages {
    justify-items: start;
  }

  .footer-meta {
    align-items: flex-start;
  }
}

@media (max-width: 820px) {
  .lead--single-line {
    white-space: normal;
  }

  .site-header__inner {
    border-radius: 28px;
  }

  .nav__toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    inset: 5.5rem 1rem auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1.1rem;
    border: 1px solid rgba(42, 42, 40, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
  }

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

  .nav__list,
  .nav__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nav__actions {
    display: grid;
    gap: 1rem;
  }

  .nav__list a,
  .language-switcher a {
    padding: 0.45rem 0;
  }

  .language-menu {
    width: 100%;
  }

  .language-menu__toggle {
    width: 100%;
    justify-content: space-between;
  }

  .language-menu__panel {
    left: 0;
    right: 0;
    min-width: 0;
  }

  .consent-banner {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 1rem;
  }

  .consent-banner__actions {
    flex-direction: column;
  }

  .consent-button {
    width: 100%;
  }

  .hero-rotator {
    min-height: 14rem;
  }

  .pricing-grid,
  .results-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .comparison-table thead {
    display: none;
  }

  .comparison-table tr {
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .comparison-table td:first-child {
    font-weight: 700;
    color: var(--text-primary);
    background: #fff;
  }

  .cta-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__panel {
    grid-template-columns: 1fr;
    gap: 1.85rem;
    padding: 1.7rem 1.5rem;
  }

  .site-footer__links {
    padding-left: 0;
    padding-top: 1rem;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 560px) {
  body {
    font-size: 1rem;
  }

  .section {
    padding: 5rem 0;
  }

  .hero {
    padding-top: 7.1rem;
    padding-bottom: 4rem;
  }

  .hero__title {
    max-width: none;
  }

  .hero-rotator {
    min-height: 14.5rem;
  }

  .button-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .site-header__inner {
    padding-inline: 0.75rem;
  }

  .site-footer {
    padding-top: 3.2rem;
  }

  .consent-manage {
    left: 0.75rem;
    bottom: 0.75rem;
  }
}
