:root {
  color-scheme: light;
  --bg: #f7fafc;
  --bg-soft: #eef5f7;
  --bg-muted: #edf4f8;
  --bg-card: #ffffff;
  --bg-card-strong: #ffffff;
  --text: #0d1b2a;
  --muted: #5d7085;
  --muted-strong: #334b63;
  --line: #d8e5ec;
  --line-strong: #c4d4de;
  --primary: #165dff;
  --primary-2: #0891b2;
  --accent: #0f9f6e;
  --accent-soft: #e8fbf4;
  --danger: #c2410c;
  --header-bg: rgba(247, 250, 252, 0.88);
  --nav-menu-bg: rgba(255, 255, 255, 0.96);
  --button-muted: #eef5f9;
  --shadow: 0 18px 46px rgba(13, 27, 42, 0.12);
  --shadow-soft: 0 10px 28px rgba(13, 27, 42, 0.08);
  --radius-xl: 12px;
  --radius-lg: 8px;
  --radius-md: 8px;
  --container: 1180px;
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #07111f;
  --bg-soft: #0b1728;
  --bg-muted: #0f1f34;
  --bg-card: #0f1d31;
  --bg-card-strong: #13243b;
  --text: #f6f8ff;
  --muted: #a9b6ca;
  --muted-strong: #d6e0ee;
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.22);
  --primary: #6ea8ff;
  --primary-2: #31c7d8;
  --accent: #6ee7b7;
  --accent-soft: rgba(110, 231, 183, 0.12);
  --danger: #fca5a5;
  --header-bg: rgba(7, 17, 31, 0.86);
  --nav-menu-bg: rgba(12, 24, 42, 0.97);
  --button-muted: rgba(255, 255, 255, 0.08);
  --shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 16px 38px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 44%, var(--bg) 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.22;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 70%);
}

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

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--primary) 55%, white);
  outline-offset: 3px;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 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;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, backdrop-filter 0.2s ease;
}

.site-header.is-scrolled,
.legal-page .site-header {
  border-color: var(--line);
  background: var(--header-bg);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: white;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 12px 28px rgba(22, 93, 255, 0.2);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.15;
}

.brand small {
  margin-top: 1px;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.15;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--muted-strong);
  font-size: 0.94rem;
}

.site-nav a {
  padding: 9px 12px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
  background: var(--button-muted);
}

.site-nav .nav-cta {
  margin-left: 6px;
  color: white;
  background: var(--text);
  font-weight: 760;
}

[data-theme="dark"] .site-nav .nav-cta {
  color: #07111f;
  background: #f6f8ff;
}

.site-nav .nav-cta:hover {
  color: white;
  background: var(--primary);
}

[data-theme="dark"] .site-nav .nav-cta:hover {
  color: white;
  background: var(--primary);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--bg-card) 82%, transparent);
}

.site-nav .language-switcher {
  flex: 0 0 auto;
  margin-left: 6px;
}

.language-switcher a,
.site-nav .language-switcher a {
  min-width: 34px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.language-switcher a:hover,
.language-switcher a.is-active,
.site-nav .language-switcher a:hover,
.site-nav .language-switcher a.is-active {
  color: var(--text);
  background: var(--button-muted);
}

.theme-toggle,
.nav-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: var(--bg-card);
  box-shadow: 0 8px 22px rgba(13, 27, 42, 0.06);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.theme-toggle {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  margin-left: 6px;
}

.theme-toggle-text {
  display: none;
}

.theme-toggle:hover,
.nav-toggle:hover {
  border-color: var(--line-strong);
  transform: translateY(-1px);
}

.theme-toggle-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--text);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--primary) 12%, transparent);
}

.theme-toggle[aria-pressed="true"] .theme-toggle-icon {
  background: transparent;
  box-shadow: inset -6px -4px 0 0 var(--text);
}

.nav-toggle {
  display: none;
  padding: 0;
  border-radius: 10px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--text);
}

.hero {
  padding: 126px 0 58px;
}

.section-glow {
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: 52px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  color: var(--accent);
  font-weight: 780;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0;
}

.eyebrow {
  margin-bottom: 18px;
  padding: 7px 11px;
  border: 1px solid color-mix(in srgb, var(--accent) 28%, var(--line));
  border-radius: 999px;
  background: var(--accent-soft);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent) 14%, transparent);
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: 4.55rem;
  line-height: 0.98;
}

h2 {
  margin-bottom: 18px;
  font-size: 3rem;
  line-height: 1.05;
}

h3 {
  line-height: 1.16;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.18rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 790;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 14px 30px color-mix(in srgb, var(--primary) 25%, transparent);
}

.button-secondary {
  color: var(--text);
  background: var(--bg-card);
  border-color: var(--line);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.hero-proof span,
.segments span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-strong);
  background: color-mix(in srgb, var(--bg-card) 78%, transparent);
  font-size: 0.88rem;
}

.hero-card {
  position: relative;
}

.product-preview {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg-soft) 70%, var(--bg-card));
}

.preview-header span,
.ai-answer span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0;
}

.preview-header strong {
  display: block;
  margin-top: 2px;
  font-size: 1.08rem;
}

.preview-header small {
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--accent);
  background: var(--accent-soft);
  font-weight: 800;
}

.preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 16px;
}

.metric-card,
.ai-answer,
.workflow-list,
.solution-panel,
.feature-card,
.step-card,
.price-card,
.team-card,
.contact-card,
.faq-list details,
.outcome-card,
.timeline,
.question-stack div,
.legal-toc,
.legal-block {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  box-shadow: var(--shadow-soft);
}

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

.metric-card.accent {
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 10%, var(--bg-card)), var(--bg-card));
}

.metric-card small,
.price-card small,
.workflow-list small {
  color: var(--muted);
}

.metric-card strong {
  display: block;
  margin: 8px 0 14px;
  font-size: 1.62rem;
  line-height: 1;
}

.bar {
  height: 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--line) 70%, transparent);
  overflow: hidden;
}

.bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--primary-2));
}

.workflow-list {
  grid-column: span 2;
  display: grid;
  gap: 0;
  padding: 6px 0;
  box-shadow: none;
}

.workflow-list div {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  column-gap: 10px;
  padding: 11px 14px;
}

.workflow-list div:not(:last-child) {
  border-bottom: 1px solid var(--line);
}

.workflow-list strong,
.workflow-list small {
  display: block;
  grid-column: 2;
  min-width: 0;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.workflow-list strong {
  font-size: 0.95rem;
}

.status-dot {
  grid-row: span 2;
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--line-strong);
}

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

.status-dot.active {
  background: var(--primary-2);
}

.ai-answer {
  grid-column: span 2;
  padding: 16px;
  background: color-mix(in srgb, var(--accent-soft) 60%, var(--bg-card));
  box-shadow: none;
}

.ai-answer p {
  margin: 8px 0 0;
  color: var(--muted-strong);
  font-size: 0.94rem;
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg-card) 58%, transparent);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 18px 0;
  color: var(--muted-strong);
  text-align: center;
  font-weight: 760;
}

.section {
  padding: 84px 0;
}

.muted {
  border-block: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg-muted) 82%, transparent);
}

.two-column,
.ai-grid,
.market-grid,
.roadmap-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 44px;
  align-items: center;
}

.section-copy p,
.section-heading p,
.solution-panel p,
.feature-card p,
.step-card p,
.price-card p,
.team-card p,
.contact-card p,
.timeline span,
.outcome-card span,
.faq-list p,
.addons {
  color: var(--muted);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}

.solution-panel {
  padding: 28px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--primary) 8%, transparent), transparent),
    var(--bg-card);
}

.solution-panel h3 {
  margin: 14px 0 12px;
  font-size: 1.9rem;
}

.inline-link {
  display: inline-flex;
  color: var(--primary);
  font-weight: 800;
}

.inline-link::after {
  content: "->";
  margin-left: 8px;
}

.steps-grid,
.feature-grid,
.pricing-grid,
.team-grid,
.outcome-grid {
  display: grid;
  gap: 16px;
}

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

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

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

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

.step-card,
.feature-card,
.price-card,
.team-card {
  position: relative;
  padding: 24px;
  overflow: hidden;
}

.step-number {
  display: inline-flex;
  margin-bottom: 26px;
  color: color-mix(in srgb, var(--primary) 38%, var(--line-strong));
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 900;
}

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  font-weight: 900;
}

.ai-section {
  position: relative;
  overflow: hidden;
}

.check-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.check-list li {
  position: relative;
  margin: 11px 0;
  padding-left: 28px;
  color: var(--muted-strong);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

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

.question-stack div {
  padding: 16px 18px;
  color: var(--muted-strong);
  box-shadow: none;
}

.question-stack div:nth-child(even) {
  transform: translateX(22px);
}

.outcome-card {
  display: grid;
  gap: 8px;
  padding: 22px;
  box-shadow: none;
}

.pricing-toggle {
  width: fit-content;
  margin: -14px auto 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}

.toggle {
  width: 58px;
  height: 32px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-card);
}

.toggle span {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  transition: transform 0.2s ease;
}

.toggle[aria-pressed="true"] span {
  transform: translateX(25px);
}

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

.price-card.featured {
  border-color: color-mix(in srgb, var(--accent) 42%, var(--line));
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--accent) 10%, transparent), transparent),
    var(--bg-card);
  transform: translateY(-10px);
}

.popular {
  width: fit-content;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #063527;
  background: #baf3dc;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.price {
  margin: 22px 0 5px;
  font-size: 3rem;
  line-height: 1;
  font-weight: 900;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted-strong);
}

.price-card li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.price-card .button {
  margin-top: auto;
}

.addons {
  max-width: 760px;
  margin: 26px auto 0;
  text-align: center;
}

.segments {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: center;
}

.team-card .avatar {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  font-weight: 900;
}

.team-card span {
  display: block;
  margin: -8px 0 14px;
  color: var(--accent);
  font-weight: 800;
}

.roadmap-section {
  padding-top: 62px;
}

.timeline {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 8px;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 18px;
}

.timeline li:not(:last-child) {
  border-bottom: 1px solid var(--line);
}

.timeline strong {
  color: var(--accent);
}

.faq-grid {
  align-items: start;
}

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

.faq-list details {
  padding: 0 18px;
  box-shadow: none;
}

.faq-list summary {
  padding: 16px 0;
  cursor: pointer;
  font-weight: 850;
}

.faq-list p {
  margin-bottom: 18px;
}

.contact-section {
  padding: 70px 0 88px;
}

.contact-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
  align-items: start;
  padding: 42px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--primary) 8%, transparent), transparent),
    var(--bg-card);
}

.contact-links a {
  color: var(--primary);
  font-weight: 850;
}

.copy-button {
  min-height: 40px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: var(--bg-card);
}

.contact-form {
  display: grid;
  gap: 13px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted-strong);
  font-weight: 750;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--text);
  background: var(--bg-card);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: color-mix(in srgb, var(--primary) 60%, var(--line));
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 12%, transparent);
}

.form-note {
  margin: 0;
  font-size: 0.86rem;
}

.site-footer {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg-card) 72%, transparent);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand {
  margin-bottom: 10px;
}

.site-footer p {
  margin-bottom: 0;
  color: var(--muted);
}

.footer-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
}

.footer-language {
  flex: 0 0 auto;
}

.footer-actions .theme-toggle {
  width: auto;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-left: 0;
}

.footer-actions .theme-toggle-text {
  display: inline;
  color: var(--muted-strong);
  font-size: 0.88rem;
  font-weight: 760;
  line-height: 1;
}

.footer-links a:hover {
  color: var(--text);
}

.legal-hero {
  padding: 112px 0 40px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg-muted) 70%, transparent);
}

.legal-hero-inner {
  max-width: 820px;
}

.legal-page h1 {
  max-width: 760px;
  margin: 10px 0 12px;
  font-size: 2.75rem;
  line-height: 1.12;
}

.legal-lead {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
}

.legal-alert {
  max-width: 760px;
  margin-top: 18px;
  padding: 13px 15px;
  border: 1px solid color-mix(in srgb, var(--danger) 36%, var(--line));
  border-radius: var(--radius-md);
  color: var(--danger);
  background: color-mix(in srgb, var(--danger) 9%, transparent);
  font-size: 0.94rem;
}

.legal-content-section {
  padding: 58px 0 92px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 6px;
  padding: 14px;
}

.legal-toc a {
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 750;
}

.legal-toc a:hover {
  color: var(--text);
  background: var(--button-muted);
}

.legal-content {
  display: grid;
  gap: 18px;
}

.legal-block {
  padding: 28px;
}

.legal-block h2 {
  margin-bottom: 13px;
  font-size: 1.55rem;
  line-height: 1.16;
}

.legal-block p,
.legal-block li {
  color: var(--muted);
}

.legal-block a {
  color: var(--primary);
  font-weight: 800;
}

.legal-block code {
  padding: 2px 5px;
  border-radius: 5px;
  color: var(--text);
  background: var(--button-muted);
}

.legal-fields {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.legal-fields li {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--bg-soft) 58%, transparent);
}

.legal-fields strong {
  color: var(--text);
}

.legal-note {
  margin-top: 18px;
  padding: 14px 16px;
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  background: var(--accent-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .site-nav {
    font-size: 0.9rem;
  }

  .site-nav a {
    padding-inline: 10px;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 66px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--nav-menu-bg);
    box-shadow: var(--shadow);
    transform-origin: top;
    transform: scaleY(0.96);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: scaleY(1);
  }

  .site-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .site-nav .language-switcher {
    margin: 6px 0 0;
    width: fit-content;
  }

  .hero {
    padding-top: 116px;
  }

  .hero-grid,
  .two-column,
  .ai-grid,
  .market-grid,
  .roadmap-grid,
  .faq-grid,
  .legal-layout,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 40px;
  }

  h1 {
    font-size: 3.55rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .legal-page h1 {
    font-size: 2.35rem;
  }

  .legal-toc {
    position: static;
  }

  .strip-grid,
  .steps-grid,
  .feature-grid,
  .pricing-grid,
  .outcome-grid,
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .nav-wrap {
    height: 68px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 0.76rem;
  }

  .brand small {
    display: none;
  }

  .hero {
    padding: 104px 0 48px;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 1.95rem;
  }

  .hero-lead {
    font-size: 1.04rem;
  }

  .legal-page h1 {
    font-size: 1.95rem;
  }

  .legal-hero {
    padding-top: 94px;
  }

  .hero-actions .button,
  .contact-form .button {
    width: 100%;
  }

  .hero-proof span,
  .segments span {
    font-size: 0.82rem;
  }

  .preview-grid,
  .strip-grid,
  .steps-grid,
  .feature-grid,
  .pricing-grid,
  .outcome-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .workflow-list,
  .ai-answer {
    grid-column: auto;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading {
    margin-bottom: 30px;
    text-align: left;
  }

  .question-stack div:nth-child(even) {
    transform: none;
  }

  .contact-card,
  .legal-block,
  .solution-panel,
  .step-card,
  .feature-card,
  .price-card,
  .team-card {
    padding: 22px;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .pricing-toggle {
    width: 100%;
    justify-content: center;
    font-size: 0.88rem;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-actions {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}
