:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #fbfbfc;
  --border: #dfe2e8;
  --border-strong: #d4d8df;
  --text: #1f2128;
  --muted: #5b616d;
  --muted-soft: #7e8290;
  --accent: #7fd2ff;
  --accent-strong: #197acb;
  --shadow: 0 10px 20px rgba(29, 36, 54, 0.045), 0 1px 2px rgba(29, 36, 54, 0.04);
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top center, rgba(127, 210, 255, 0.14), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #fdfdfd 100%);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
}

.main-nav a,
.menu-toggle,
.language-button,
.button,
.origin-pill,
.city-mark,
.eyebrow-pill,
.hero-copy h1,
.section-heading h2,
.panel h1,
.panel h2,
.highlight-card strong,
.info-card h3,
.workflow-step h3,
.benefit-card h3,
.sequence-step h3,
.faq-item h3,
.summary-row strong,
.section-kicker,
.detail-label,
.sequence-step__number,
.workflow-step__number {
  font-family: "Space Grotesk", "Segoe UI", Arial, sans-serif;
}

.legal-page {
  padding: 48px 0;
}

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

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header .container {
  width: min(1200px, calc(100% - 48px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eceef2;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 4px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: auto;
  flex-shrink: 0;
  justify-self: start;
}

.brand-lockup {
  display: block;
  height: 72px;
  width: auto;
  max-width: none;
  object-fit: contain;
  flex: 0 0 auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  justify-self: end;
  margin-right: 32px;
}

.main-nav a {
  color: #454955;
  font-family: "Space Grotesk", "Segoe UI", Arial, sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #ffffff;
  color: #47505d;
  font-family: "Space Grotesk", "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.header-actions-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-actions-bar .button {
  justify-self: end;
}

.header-actions-bar .language-switcher {
  justify-self: end;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
}

.language-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #5b616d;
  font-family: "Space Grotesk", "Segoe UI", Arial, sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  cursor: pointer;
}

.language-button__flag {
  display: block;
  width: 20px;
  height: 14px;
  border: 1px solid rgba(26, 34, 48, 0.12);
  border-radius: 3px;
  object-fit: cover;
  flex: 0 0 auto;
}

.language-button.is-active {
  background: #1f2026;
  color: #ffffff;
}

.language-button.is-active .language-button__flag {
  border-color: rgba(255, 255, 255, 0.14);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 9px;
  border: 1px solid var(--border);
  font-family: "Space Grotesk", "Segoe UI", Arial, sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.02em;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.button--small {
  min-height: 36px;
  padding: 0 15px;
}

.button--dark {
  border-color: #1f2026;
  background: #1f2026;
  color: #ffffff;
}

.button--light {
  background: #ffffff;
  color: #2a2f39;
}

.hero {
  position: relative;
  padding: 10px 0 10px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 12px 0 auto;
  height: 360px;
  background:
    radial-gradient(circle at 28% 26%, rgba(127, 210, 255, 0.12), transparent 32%),
    radial-gradient(circle at 72% 30%, rgba(127, 210, 255, 0.1), transparent 32%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 0;
}

.hero-badges,
.feature-chips,
.framework-chips,
.hero-origin-row,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.origin-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 12px 0 10px;
  border: 1px solid #d9e4eb;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #4f5965;
  font-family: "Space Grotesk", "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.header-pill {
  width: fit-content;
  max-width: 100%;
  min-height: 32px;
  padding: 0 12px 0 9px;
  border-color: #d7e3ed;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 253, 0.98) 100%);
  color: #334050;
  box-shadow: 0 3px 8px rgba(31, 41, 55, 0.03);
  font-size: 12px;
}

.header-pill > span:not(.city-mark) {
  line-height: 1.15;
}

.header-pill--left {
  justify-self: end;
  justify-content: flex-end;
  text-align: right;
}

.header-pill--right {
  justify-self: start;
  justify-content: flex-start;
  text-align: left;
}

.origin-flag {
  display: inline-block;
  width: 20px;
  height: 14px;
  border: 1px solid rgba(26, 34, 48, 0.12);
  border-radius: 3px;
  background: linear-gradient(
    180deg,
    #ae1c28 0%,
    #ae1c28 33.33%,
    #ffffff 33.33%,
    #ffffff 66.66%,
    #21468b 66.66%,
    #21468b 100%
  );
}

.flag-icon {
  display: inline-block;
  width: 20px;
  height: 14px;
  border: 1px solid rgba(26, 34, 48, 0.12);
  border-radius: 3px;
  object-fit: cover;
}

.city-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 18px;
  margin-left: 2px;
  padding: 0 5px;
  border-radius: 999px;
  background: #1f2026;
  color: #ffffff;
  font-family: "Space Grotesk", "Segoe UI", Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  margin-top: 0;
  padding: 0 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: #4d5361;
  font-size: 11px;
  background: rgba(255, 255, 255, 0.96);
}

.hero-copy {
  max-width: 720px;
}

.hero-copy h1 {
  margin: 4px 0 10px;
  max-width: 720px;
  font-family: "Space Grotesk", "Segoe UI", Arial, sans-serif;
  font-size: clamp(32px, 3.5vw, 50px);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.headline-line {
  display: block;
}

.headline-line--accent {
  color: #7e808f;
  font-weight: 600;
}

.hero-lead,
.section-heading p,
.panel p,
.summary-card__footnote,
.highlight-card span,
.info-card p,
.workflow-step p,
.benefit-card p {
  color: var(--muted);
}

.hero-lead {
  margin: 0;
  max-width: 680px;
  font-size: 15.5px;
  line-height: 1.5;
}

.hero-proof {
  display: block;
  max-width: 640px;
  margin: 10px 0 0;
  padding: 6px 10px;
  border: 1px solid #d4edf8;
  border-radius: 12px;
  background: linear-gradient(180deg, #f7fcff 0%, #eef8fd 100%);
  color: #446171;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.24;
}

.hero-actions {
  margin: 6px 0 4px;
  gap: 6px;
}

.hero-origin-row {
  margin: 0 0 8px;
  gap: 8px;
}

.hero-origin-row .origin-pill {
  min-height: 34px;
  padding: 0 14px 0 11px;
}

.trust-strip {
  gap: 10px;
  margin-top: 6px;
}

.trust-strip > .trust-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  color: #48515d;
  font-size: 11.5px;
  font-weight: 600;
}

.flag-icon--small {
  width: 16px;
  height: 11px;
}

.trust-tag__label {
  line-height: 1.15;
}

.feature-chips > span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #ffffff;
  color: #646977;
  font-size: 12px;
}

.hero-highlights,
.card-grid {
  display: grid;
  gap: 16px;
}

.hero-highlights {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

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

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

.highlight-card,
.info-card,
.workflow-step,
.benefit-card,
.sequence-step,
.faq-item,
.panel,
.summary-card {
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.highlight-card,
.info-card,
.workflow-step,
.benefit-card,
.sequence-step,
.faq-item {
  padding: 14px;
  border-radius: 15px;
}

.highlight-card strong,
.info-card h3,
.workflow-step h3,
.benefit-card h3,
.sequence-step h3,
.faq-item h3 {
  display: block;
  margin: 0 0 8px;
  font-family: "Space Grotesk", "Segoe UI", Arial, sans-serif;
  font-size: 17.5px;
  letter-spacing: -0.03em;
}

.highlight-card span,
.info-card p,
.workflow-step p,
.benefit-card p,
.sequence-step p,
.faq-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.summary-card {
  padding: 24px;
  border-color: var(--border-strong);
  border-radius: 22px;
}

.summary-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.summary-card__label {
  margin: 0 0 4px;
  color: #7a7f8c;
  font-size: 14px;
}

.summary-card__header h2 {
  margin: 0;
  max-width: 320px;
  font-family: "Space Grotesk", "Segoe UI", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.summary-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 49px;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: #5c6170;
  font-size: 14px;
}

.summary-list {
  display: grid;
  gap: 12px;
}

.summary-row {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  min-height: 56px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface-soft);
  color: #575d69;
  font-size: 14px;
}

.summary-row strong {
  color: #242830;
  font-weight: 500;
  line-height: 1.45;
}

.summary-card__footnote {
  margin: 18px 0 0;
  font-size: 13px;
  line-height: 1.65;
}

.problem-section {
  position: relative;
  padding: 18px 0 16px;
  border-top: 1px solid #eceef2;
}

.problem-section .section-heading h2 {
  font-size: clamp(27px, 3.5vw, 42px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.reasoning-section {
  padding: 10px 0 10px;
}

.problem-anchor {
  display: none;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 10px;
}

.reasoning-section .section-heading,
.problem-section .section-heading,
.workflow-section .section-heading,
.benefits-section .section-heading {
  max-width: 760px;
}

.section-heading--problem {
  max-width: 780px;
  padding-left: 0;
}

.section-heading--compact {
  margin-bottom: 4px;
}

.section-heading h2,
.panel h2,
.panel h1 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", "Segoe UI", Arial, sans-serif;
  font-size: clamp(23px, 2.8vw, 33px);
  letter-spacing: -0.05em;
}

.section-heading p,
.panel p {
  margin: 0;
  max-width: 760px;
  font-size: 15px;
  line-height: 1.5;
}

.section-kicker {
  margin: 0 0 6px;
  color: var(--accent-strong);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-kicker--muted {
  color: #7a8090;
}

.workflow-section,
.benefits-section,
.about-section,
.detail-section,
.faq-section,
.contact-section {
  padding: 24px 0;
}

.summary-section {
  padding: 4px 0;
}

.about-section {
  padding: 40px 0;
}

.detail-section {
  padding: 40px 0;
}

.coverage-section,
.audience-section {
  padding: 10px 0;
}

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

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

.sequence-step {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.sequence-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-bottom: 10px;
  border: 1px solid #ccefff;
  border-radius: 50%;
  background: #f3fcff;
  color: var(--accent-strong);
  font-family: "Space Grotesk", "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.workflow-step {
  min-height: 128px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.workflow-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 26px;
  margin-bottom: 12px;
  padding: 0 10px;
  border: 1px solid #ccefff;
  border-radius: 999px;
  background: #f3fcff;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.benefit-card {
  min-height: auto;
}

.benefit-card--accent {
  background:
    radial-gradient(circle at top right, rgba(127, 210, 255, 0.18), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f4faff 100%);
  border-color: #bfe7fb;
}

.benefit-card--wide {
  grid-column: 1 / -1;
  min-height: auto;
}

.benefits-section .card-grid--two {
  align-items: start;
}

.benefits-section {
  background:
    radial-gradient(circle at top center, rgba(127, 210, 255, 0.08), transparent 38%);
}

.benefits-section .section-heading h2 {
  font-size: clamp(27px, 3.3vw, 38px);
}

.benefits-section .benefit-card {
  border-color: #d3d8e1;
}

.benefits-section .benefit-card h3 {
  color: #141821;
  font-size: 17.5px;
}

.framework-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid #cfe8f5;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  color: #235d82;
  font-family: "Space Grotesk", "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.framework-chips--audience span {
  color: #475462;
}

.panel {
  padding: 12px;
  border-radius: 16px;
  background:
    radial-gradient(circle at top right, rgba(127, 210, 255, 0.14), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.about-block {
  display: grid;
  gap: 12px;
  width: 100%;
  padding: 12px;
  background:
    radial-gradient(circle at top right, rgba(127, 210, 255, 0.06), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
}

.about-section .section-heading,
.about-block > *,
.about-block .about-stack,
.about-block .about-copy {
  width: 100%;
  max-width: none;
}

.about-section .section-heading {
  max-width: none;
  margin-bottom: 0;
}

.about-stack {
  display: grid;
  gap: 5px;
  width: 100%;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
}

.about-fact {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  color: #2b3440;
  font-family: "Space Grotesk", "Segoe UI", Arial, sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  box-shadow: 0 6px 14px rgba(29, 36, 54, 0.035), 0 1px 2px rgba(29, 36, 54, 0.03);
}

.about-block .about-copy {
  margin: 0;
  max-width: none;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.3;
}

.about-block .about-copy--company {
  color: #3b4653;
  font-weight: 400;
}

.about-block .about-copy--primary {
  max-width: none;
  color: #2f3945;
  font-weight: 400;
}

.about-block .about-copy--secondary {
  max-width: none;
  color: var(--muted);
}

.summary-panel {
  padding: 14px 16px;
}

.summary-panel .section-heading,
.summary-panel .section-heading p {
  max-width: none;
  width: 100%;
}

.detail-panel {
  padding: 14px 16px;
  background:
    radial-gradient(circle at top right, rgba(127, 210, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.detail-panel .section-heading {
  max-width: none;
  margin-bottom: 8px;
  width: 100%;
}

.detail-panel .section-heading h2,
.detail-panel .section-heading p,
.detail-panel .detail-label,
.detail-panel .detail-list li,
.detail-panel .detail-note {
  width: 100%;
  max-width: none;
}

.detail-panel .detail-copy,
.detail-panel .detail-note {
  margin: 0;
  max-width: none;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.48;
  width: 100%;
}

.detail-copy + .detail-copy,
.detail-list-block + .detail-note {
  margin-top: 5px;
}

.detail-list-block {
  margin-top: 6px;
  width: 100%;
}

.detail-section--sovereign .detail-list-block {
  margin-top: 8px;
}

.detail-section--privacy .detail-list-block,
.detail-section--gdpr .detail-list-block {
  margin-top: 8px;
}

.detail-label {
  margin: 0 0 8px;
  color: var(--text);
  font-family: "Space Grotesk", "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.detail-section--sovereign .detail-label {
  margin-bottom: 12px;
}

.detail-section--privacy .detail-label,
.detail-section--gdpr .detail-label {
  margin-bottom: 12px;
}

.detail-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}

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

.detail-list li {
  position: relative;
  margin: 0;
  padding-left: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.46;
}

.detail-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #7bc6ea;
}

.panel--contact {
  background:
    radial-gradient(circle at top right, rgba(127, 210, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fafbfd 100%);
}

.panel--cta {
  width: 100%;
  max-width: none;
  background:
    radial-gradient(circle at top right, rgba(127, 210, 255, 0.2), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border-color: #d3edf9;
}

.panel--cta p,
.panel--cta .contact-copy {
  max-width: none;
}

.contact-copy {
  max-width: none;
  margin-bottom: 10px;
  width: 100%;
}

.contact-note {
  margin: 0 0 10px;
  max-width: none;
  width: 100%;
  color: #606b78;
  font-size: 14px;
  line-height: 1.5;
}

.panel .framework-chips {
  gap: 6px;
}

.panel .hero-actions {
  margin: 12px 0 0;
}

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

.faq-section {
  padding-bottom: 24px;
}

.faq-section .section-heading {
  margin-bottom: 8px;
}

.faq-section .section-heading h2 {
  font-size: clamp(20px, 2.2vw, 26px);
}

.faq-item {
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 10px 12px;
  font-family: "Space Grotesk", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

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

.faq-item p {
  padding: 0 12px 12px;
  font-size: 14px;
  line-height: 1.38;
}

.contact-section {
  padding: 24px 0;
}

.panel--contact {
  padding: 12px;
  background:
    radial-gradient(circle at top right, rgba(127, 210, 255, 0.12), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
}

.contact-section .section-kicker {
  margin-bottom: 4px;
}

.contact-section h2 {
  margin-bottom: 4px;
  font-size: clamp(26px, 3.4vw, 38px);
}

.panel--contact .contact-copy {
  max-width: none;
  margin-bottom: 6px;
  width: 100%;
}

.panel--contact .framework-chips {
  gap: 5px;
}

.panel--contact .framework-chips span {
  min-height: 28px;
  padding: 0 10px;
}

.panel--contact .hero-actions {
  margin: 10px 0 0;
}

.site-footer {
  padding: 0 0 10px;
  border-top: 1px solid #eceef2;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 10px;
}

.footer-meta {
  margin: 0;
  color: #6d7482;
  font-size: 12px;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #56606d;
  font-size: 12px;
}

@media (max-width: 1080px) {
  .site-header .container {
    width: min(1200px, calc(100% - 32px));
  }

  .header-inner {
    grid-template-columns: auto 1fr auto auto;
    gap: 12px;
  }

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

  .hero-grid,
  .hero-highlights,
  .card-grid--three,
  .card-grid--two {
    grid-template-columns: 1fr;
  }

  .summary-card {
    max-width: 760px;
  }
}

@media (max-width: 860px) {
  .header-inner {
    grid-template-columns: auto 1fr auto auto;
    justify-items: stretch;
    padding: 12px 0;
    gap: 10px;
  }

  .brand {
    justify-self: start;
  }

  .brand-lockup {
    height: 64px;
    width: auto;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    font-size: 14px;
  }

  .sequence-grid,
  .about-facts,
  .detail-list--two,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .hero,
  .reasoning-section,
  .problem-section,
  .summary-section,
  .workflow-section,
  .coverage-section,
  .audience-section,
  .benefits-section,
  .about-section,
  .detail-section,
  .faq-section,
  .contact-section {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 10vw, 52px);
  }

  .hero-proof {
    margin-top: 8px;
    padding: 5px 10px;
    line-height: 1.24;
  }

  .summary-row {
    grid-template-columns: 1fr;
  }

  .problem-anchor {
    display: none;
  }

  .section-heading--problem {
    padding-left: 0;
  }
}

@media (max-width: 580px) {
  .container {
    width: min(1200px, calc(100% - 32px));
  }

  .site-header .container {
    width: min(1200px, calc(100% - 32px));
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .trust-strip span {
    width: 100%;
    justify-content: center;
  }

  .brand-lockup {
    height: 56px;
    width: auto;
  }

  .button {
    width: 100%;
  }

  .hero,
  .reasoning-section,
  .problem-section,
  .summary-section,
  .workflow-section,
  .coverage-section,
  .audience-section,
  .benefits-section,
  .about-section,
  .detail-section,
  .faq-section,
  .contact-section {
    padding-top: 14px;
    padding-bottom: 14px;
  }
}
