:root {
  --ink: #172019;
  --muted: #5a665d;
  --paper: #f6f7f0;
  --paper-2: #eef2e9;
  --line: rgba(23, 32, 25, 0.14);
  --brand: #75bf42;
  --brand-dark: #315b17;
  --teal: #12656d;
  --coral: #e85d3f;
  --amber: #c88a23;
  --night: #0b1210;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(17, 28, 23, 0.12);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
}

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

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #a5e66f;
  outline-offset: 3px;
}

[id] {
  scroll-margin-top: 92px;
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 12px 54px;
  padding: 12px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: rgba(7, 13, 11, 0.42);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(246, 247, 240, 0.92);
  border-bottom-color: var(--line);
}

.brand {
  display: flex;
  align-items: center;
  width: 150px;
  min-width: 130px;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  margin: 0 auto;
  justify-content: center;
  gap: 24px;
  gap: clamp(14px, 2vw, 32px);
  font-size: 0.9rem;
  font-weight: 650;
}

.main-nav a,
.header-action {
  opacity: 0.92;
}

.main-nav a + a {
  margin-left: 24px;
}

@supports (gap: 1rem) {
  .main-nav a + a {
    margin-left: 0;
  }
}

.main-nav a:hover,
.header-action:hover {
  opacity: 1;
}

.main-nav a[aria-current="page"] {
  opacity: 1;
  box-shadow: inset 0 -2px currentColor;
}

.site-header:not(.is-scrolled) .main-nav a[aria-current="page"] {
  color: #d4f48f;
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 750;
}

.language-switcher {
  display: inline-flex;
  flex: 0 0 auto;
}

.language-switcher select {
  width: 62px;
  min-height: 42px;
  padding: 0 8px;
  color: inherit;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 850;
  text-align: center;
  cursor: pointer;
}

.language-switcher option {
  color: var(--ink);
  background: var(--white);
}

.site-header.is-scrolled .language-switcher select {
  background: rgba(255, 255, 255, 0.56);
}

.nav-toggle,
.mobile-nav-contact {
  display: none;
}

.nav-toggle {
  width: 42px;
  min-width: 42px;
  height: 42px;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: inherit;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.nav-toggle-lines::before {
  top: -5px;
}

.nav-toggle-lines::after {
  top: 5px;
}

.site-header.is-nav-open .nav-toggle-lines {
  background: transparent;
}

.site-header.is-nav-open .nav-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header.is-nav-open .nav-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 65vh;
  min-height: 65svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 130px 88px 78px;
  padding: 130px clamp(20px, 6vw, 88px) 78px;
  color: var(--white);
  background: var(--night);
}

.hero-image,
.hero-shade {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  opacity: 0.86;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 9, 7, 0.92) 0%, rgba(5, 13, 10, 0.68) 39%, rgba(5, 13, 10, 0.12) 100%),
    linear-gradient(0deg, rgba(4, 9, 7, 0.58), rgba(4, 9, 7, 0.02) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  overflow-wrap: anywhere;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  max-width: 900px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  line-height: 1.22;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.28rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

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

.button.primary {
  color: #10200c;
  background: var(--brand);
  box-shadow: 0 16px 44px rgba(117, 191, 66, 0.26);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.button.light {
  color: #10200c;
  background: var(--white);
  box-shadow: none;
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 680px;
}

.signal-row span,
.signal-row a {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.84rem;
  font-weight: 700;
}

.signal-row a:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.decision-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.decision-strip article {
  min-height: 178px;
  padding: 32px 44px;
  padding: 32px clamp(20px, 4vw, 44px);
  background: var(--paper);
}

.strip-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.decision-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-dark);
  font-size: 1.35rem;
  line-height: 1.16;
}

.decision-strip p {
  margin: 0;
  color: var(--muted);
}

.section {
  padding: 110px 88px;
  padding: clamp(76px, 9vw, 132px) clamp(20px, 6vw, 88px);
}

.section-heading {
  max-width: 960px;
  margin-bottom: 42px;
}

.section-heading p {
  max-width: 770px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.intro-section {
  background: var(--paper-2);
}

.rollout-section {
  background: #fbfbf7;
}

.product-overview-section {
  background: var(--paper-2);
}

.product-overview-featured {
  border-color: rgba(126, 204, 54, 0.72);
  box-shadow: 0 22px 56px rgba(68, 117, 26, 0.13);
}

.rollout-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.rollout-lead,
.rollout-grid article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(17, 28, 23, 0.05);
}

.rollout-lead {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.rollout-lead h3 {
  max-width: 420px;
  margin-bottom: 18px;
  color: var(--brand-dark);
  font-size: 2rem;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.rollout-lead p,
.rollout-grid p {
  color: var(--muted);
}

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

.rollout-grid article {
  min-height: 200px;
  padding: 26px;
}

.rollout-grid span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
}

.rollout-grid h3 {
  color: var(--ink);
  overflow-wrap: anywhere;
}

.persona-shell {
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr;
  gap: 24px;
  align-items: stretch;
}

.persona-tabs {
  display: grid;
  gap: 8px;
  align-content: start;
}

.persona-tab {
  min-height: 50px;
  padding: 0 18px;
  color: var(--ink);
  text-align: left;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.persona-tab.is-active {
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
}

.persona-panel {
  min-height: 330px;
  padding: 56px;
  padding: clamp(28px, 5vw, 56px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(18, 101, 109, 0.96), rgba(15, 37, 33, 0.98)),
    var(--teal);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.persona-kicker {
  margin-bottom: 14px;
  color: #bdecb1;
  font-size: 0.85rem;
  font-weight: 850;
  text-transform: uppercase;
}

.persona-panel h3 {
  max-width: 720px;
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  line-height: 1.08;
}

.persona-panel p {
  max-width: 790px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  min-height: 76px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 720;
}

.problem-section {
  background: #fbfbf7;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.problem-grid article {
  min-height: 270px;
  padding: 28px;
  background: #fbfbf7;
}

.marker {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 900;
}

.problem-grid p,
.capability-card p,
.source-card p,
.article-card p,
.eroute-section p,
.proof-copy p,
.contact-section p {
  color: var(--muted);
}

.source-section {
  background: var(--paper);
}

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

.source-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(17, 28, 23, 0.05);
}

.source-card span,
.article-date {
  display: inline-flex;
  width: max-content;
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.source-card h3 {
  color: var(--brand-dark);
}

.source-card p {
  margin-bottom: 22px;
}

.source-card a,
.article-card a,
.capability-link {
  width: max-content;
  margin-top: auto;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
  border-bottom: 2px solid var(--brand);
}

.source-link-stack {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.source-link-stack a {
  margin-top: 0;
}

.source-card a:hover,
.article-card a:hover,
.capability-link:hover {
  color: var(--brand-dark);
}

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

.localized-legal-notice {
  max-width: 920px !important;
  padding: 18px 20px;
  color: var(--ink) !important;
  border-left: 4px solid var(--amber);
  border-radius: 0 8px 8px 0;
  background: rgba(200, 138, 35, 0.1);
  font-weight: 720;
}

.localized-contact {
  background: #fbfbf7;
}

.localized-contact > .contact-page-grid {
  max-width: 1440px;
  margin: 0 auto;
}

.platform-section {
  background: var(--paper);
}

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

.capability-card {
  min-height: 312px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(17, 28, 23, 0.06);
}

.capability-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 46px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, var(--brand), #d7ef62),
    var(--brand);
  position: relative;
}

.capability-icon::after {
  content: "";
  position: absolute;
  inset: 12px 10px;
  border-top: 3px solid rgba(16, 32, 12, 0.7);
  border-bottom: 3px solid rgba(16, 32, 12, 0.35);
}

.capability-icon.route {
  background: linear-gradient(135deg, var(--teal), #8ed4c8);
}

.capability-icon.proof {
  background: linear-gradient(135deg, var(--coral), #f6b36c);
}

.capability-icon.api {
  background: linear-gradient(135deg, var(--amber), #f0dd88);
}

.articles-section {
  background: #fbfbf7;
}

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

.article-card {
  min-height: 292px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.article-card.featured {
  grid-column: span 2;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(18, 101, 109, 0.96), rgba(49, 91, 23, 0.96)),
    var(--teal);
}

.article-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.article-card.featured .article-date {
  color: #d4f48f;
}

.article-card.featured a {
  color: var(--white);
  border-bottom-color: #d4f48f;
}

.article-page {
  min-height: 100vh;
  padding: 128px 88px 84px;
  padding: 128px clamp(20px, 6vw, 88px) 84px;
  background:
    linear-gradient(180deg, rgba(238, 242, 233, 0.9), rgba(251, 251, 247, 0.94) 340px),
    #fbfbf7;
}

.article-shell {
  max-width: 1180px;
  margin: 0 auto;
}

.article-hero {
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}

.back-link {
  display: inline-flex;
  width: max-content;
  margin-bottom: 28px;
  color: var(--brand-dark);
  font-size: 0.9rem;
  font-weight: 850;
  border-bottom: 2px solid var(--brand);
}

.article-hero h1 {
  max-width: 980px;
  margin-bottom: 22px;
  font-size: 3.9rem;
  line-height: 1.02;
}

.article-lead {
  max-width: 850px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.22rem;
  line-height: 1.62;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 58px;
  align-items: start;
  padding-top: 52px;
}

.decision-box {
  position: sticky;
  top: 100px;
  padding: 24px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(18, 101, 109, 0.98), rgba(49, 91, 23, 0.98)),
    var(--teal);
  box-shadow: 0 18px 50px rgba(17, 28, 23, 0.12);
}

.decision-box h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 1.22rem;
  line-height: 1.18;
}

.decision-box ul,
.decision-questions ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.decision-box li {
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
  line-height: 1.45;
}

.article-body {
  max-width: 820px;
}

.article-body h2 {
  max-width: 760px;
  margin: 0 0 14px;
  font-size: 1.78rem;
  line-height: 1.16;
}

.article-body p {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.76;
}

.article-body a {
  color: var(--brand-dark);
  font-weight: 800;
  border-bottom: 2px solid rgba(117, 191, 66, 0.72);
}

.article-body a:hover {
  color: var(--teal);
}

.article-body h2 + p {
  margin-top: 0;
}

.decision-questions {
  margin: 42px 0 34px;
  padding: 28px;
  border-left: 5px solid var(--brand);
  border-radius: 0 8px 8px 0;
  background: var(--paper-2);
}

.decision-questions h2 {
  font-size: 1.34rem;
}

.decision-questions li {
  position: relative;
  padding: 9px 0 9px 22px;
  color: var(--ink);
  font-weight: 720;
}

.decision-questions li::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.official-page {
  min-height: 100vh;
  padding: 128px 88px 84px;
  padding: 128px clamp(20px, 6vw, 88px) 84px;
  background:
    linear-gradient(180deg, rgba(238, 242, 233, 0.9), rgba(251, 251, 247, 0.94) 340px),
    #fbfbf7;
}

.official-shell {
  max-width: 1120px;
  margin: 0 auto;
}

.official-hero {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.official-hero h1 {
  max-width: 960px;
  margin-bottom: 18px;
  font-size: 3.35rem;
  line-height: 1.04;
}

.official-doc-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.official-doc-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 800;
}

.official-doc-links a[aria-current="page"],
.official-doc-links a:hover {
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
}

.official-content {
  max-width: 860px;
  padding-top: 48px;
}

.official-content h2,
.official-content h3,
.official-content h4 {
  max-width: 820px;
  color: var(--ink);
  line-height: 1.18;
}

.official-content h2 {
  margin: 44px 0 14px;
  font-size: 2rem;
}

.official-content h3 {
  margin: 34px 0 12px;
  font-size: 1.45rem;
}

.official-content h4 {
  margin: 28px 0 10px;
  font-size: 1.1rem;
}

.official-content p,
.official-content li,
.official-content td,
.official-content th {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.74;
}

.official-content p {
  margin: 0 0 18px;
}

.official-content ul,
.official-content ol {
  margin: 0 0 24px;
  padding-left: 24px;
}

.official-content li + li {
  margin-top: 8px;
}

.official-content strong {
  color: var(--ink);
}

.official-content a {
  color: var(--brand-dark);
  font-weight: 800;
  border-bottom: 2px solid rgba(117, 191, 66, 0.72);
}

.official-content hr {
  margin: 34px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.official-content figure {
  margin: 26px 0;
  overflow-x: auto;
}

.official-content table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(17, 28, 23, 0.05);
}

.official-content th,
.official-content td {
  padding: 14px 16px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.official-content th {
  color: var(--ink);
  background: var(--paper-2);
}

.eroute-section {
  color: var(--white);
  background: #111915;
}

.eroute-section .eyebrow {
  color: #aeea7b;
}

.eroute-section h2 {
  color: var(--white);
}

.eroute-section p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.72fr);
  gap: 74px;
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
}

.eroute-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.eroute-points span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.86rem;
  font-weight: 750;
}

.eroute-cta {
  margin-top: 28px;
}

.flow-board {
  display: grid;
  gap: 12px;
  padding: 42px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 12%, rgba(117, 191, 66, 0.2), transparent 32%),
    rgba(255, 255, 255, 0.05);
}

.flow-node {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.07);
  font-weight: 820;
}

.flow-node.strong {
  color: #10200c;
  background: var(--brand);
}

.flow-line {
  width: 2px;
  height: 18px;
  margin-left: 24px;
  background: rgba(255, 255, 255, 0.24);
}

.architecture-section {
  background: var(--paper-2);
}

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

.arch-block {
  min-height: 210px;
  padding: 20px;
  border-radius: 8px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.arch-block span {
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
  opacity: 0.8;
}

.arch-block strong {
  font-size: 1.06rem;
  line-height: 1.26;
}

.arch-block.control {
  background: #17392a;
}

.arch-block.tenant {
  background: var(--teal);
}

.arch-block.api {
  background: #2e5a80;
}

.arch-block.worker {
  background: var(--coral);
}

.arch-block.storage {
  background: var(--amber);
}

.arch-block.docserver {
  background: #354437;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.82fr);
  gap: 72px;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
  background: #fbfbf7;
}

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

.quality-list span {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 780;
}

.timeline-section {
  background: var(--paper);
}

.release-calendar {
  margin-bottom: 50px;
}

.release-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 780;
}

.release-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.legend {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  display: inline-block;
}

.legend.legacy {
  background: #7f8c7c;
}

.legend.active {
  background: var(--teal);
}

.legend.feature {
  background: var(--coral);
}

.legend.security {
  background: var(--amber);
}

.legend.maintained {
  background: var(--brand);
}

.legend.unreleased {
  background: #2e5a80;
}

.calendar-scroll {
  overflow-x: auto;
  padding-bottom: 12px;
}

.calendar-grid {
  min-width: 1440px;
  display: grid;
  grid-template-columns: 230px repeat(14, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.calendar-corner,
.calendar-year,
.release-label,
.release-track {
  background: #fbfbf7;
}

.calendar-corner,
.calendar-year {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
}

.calendar-year.current {
  color: var(--white);
  background: var(--brand-dark);
}

.release-label {
  min-height: 92px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.release-label strong {
  color: var(--ink);
  line-height: 1.18;
}

.release-label span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.3;
}

.release-track {
  grid-column: 2 / -1;
  min-height: 92px;
  padding: 16px 10px;
  display: grid;
  grid-template-columns: repeat(14, minmax(0, 1fr));
  grid-auto-rows: 28px;
  gap: 8px 0;
  align-content: center;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(23, 32, 25, 0.08) 0,
      rgba(23, 32, 25, 0.08) 1px,
      transparent 1px,
      transparent calc(100% / 14)
    ),
    #fbfbf7;
}

.release-bar {
  min-width: 0;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 860;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.release-bar.legacy {
  background: #7f8c7c;
}

.release-bar.active {
  background: var(--teal);
}

.release-bar.feature {
  background: var(--coral);
}

.release-bar.security {
  color: #1f1706;
  background: var(--amber);
}

.release-bar.maintained {
  color: #10200c;
  background: var(--brand);
}

.release-bar.unreleased {
  background: #2e5a80;
}

.span-2017-2020 {
  grid-column: 1 / 4;
}

.span-2020-2022 {
  grid-column: 4 / 7;
}

.span-2021-2022 {
  grid-column: 5 / 7;
}

.span-2022-2023 {
  grid-column: 6 / 8;
}

.span-2023-2024 {
  grid-column: 7 / 9;
}

.span-2023-2026 {
  grid-column: 7 / 11;
}

.span-2024-2025 {
  grid-column: 8 / 10;
}

.span-2023-2028 {
  grid-column: 7 / 13;
}

.span-2027 {
  grid-column: 11 / 12;
}

.span-2025-2026 {
  grid-column: 9 / 11;
}

.span-2026-2030 {
  grid-column: 10 / 15;
}

.span-2029-2030 {
  grid-column: 13 / 15;
}

.product-page {
  min-height: 100vh;
  background: var(--paper);
}

.product-hero {
  position: relative;
  min-height: 65vh;
  min-height: 65svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 128px 88px 78px;
  padding: 128px clamp(20px, 6vw, 88px) 78px;
  color: var(--white);
  background: var(--night);
}

.product-hero-image,
.product-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.product-hero-image {
  object-fit: cover;
  object-position: center;
  opacity: 0.74;
}

.product-hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 13, 10, 0.94), rgba(5, 13, 10, 0.78) 44%, rgba(5, 13, 10, 0.22)),
    linear-gradient(0deg, rgba(4, 9, 7, 0.74), rgba(4, 9, 7, 0.08));
}

.product-hero-inner {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
}

.product-back-link {
  display: inline-flex;
  width: max-content;
  margin-bottom: 28px;
  color: #d4f48f;
  font-size: 0.9rem;
  font-weight: 850;
  border-bottom: 2px solid currentColor;
}

.product-hero h1 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.contact-product-hero h1,
.mail-product-hero h1 {
  font-size: clamp(2.3rem, 4vw, 3.5rem);
}

.document-product-hero h1 {
  font-size: clamp(2.3rem, 4vw, 3.5rem);
}

.campaign-hero h1 {
  font-size: clamp(2.3rem, 4vw, 3.5rem);
}

.product-lead {
  max-width: 720px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.24rem;
  line-height: 1.58;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.android-app-actions {
  margin-top: 28px;
  margin-bottom: 0;
}

.campaign-secondary-dark {
  color: var(--ink);
  border-color: rgba(23, 32, 25, 0.34);
}

.campaign-secondary-dark:hover {
  color: var(--white);
  background: var(--ink);
}

.eroute-actions {
  margin-top: 26px;
  margin-bottom: 0;
}

.product-signal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 780px;
}

.product-signal-grid span {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 780;
  line-height: 1.24;
}

.product-band {
  padding: 104px 88px;
  padding: 104px clamp(20px, 6vw, 88px);
  background: var(--paper);
}

.product-band-muted {
  background: var(--paper-2);
}

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

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

.product-card,
.role-grid article {
  min-height: 236px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfbf7;
  box-shadow: 0 16px 42px rgba(17, 28, 23, 0.06);
}

.product-card span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.product-card h3,
.role-grid h3 {
  color: var(--ink);
}

.product-card p,
.role-grid p {
  margin: 0;
  color: var(--muted);
}

.product-flow-section {
  padding: 78px 88px;
  padding: 78px clamp(20px, 6vw, 88px);
  color: var(--white);
  background: #111915;
}

.route-lifecycle {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.route-step {
  min-height: 150px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.route-step.is-strong {
  background:
    linear-gradient(145deg, rgba(117, 191, 66, 0.24), rgba(18, 101, 109, 0.32)),
    rgba(255, 255, 255, 0.06);
}

.route-step span {
  display: block;
  margin-bottom: 18px;
  color: #d4f48f;
  font-size: 0.78rem;
  font-weight: 880;
  text-transform: uppercase;
}

.route-step strong {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
  line-height: 1.18;
}

.product-capability-section {
  background: #fbfbf7;
}

.capability-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.capability-list div {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.capability-list strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.capability-list span {
  color: var(--muted);
}

.product-contact {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  padding: 94px 88px;
  padding: 94px clamp(20px, 6vw, 88px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(18, 101, 109, 0.98), rgba(49, 91, 23, 0.98)),
    var(--teal);
}

.product-contact h2 {
  max-width: 860px;
  color: var(--white);
}

.campaign-contact-note {
  max-width: 760px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.campaign-faq {
  max-width: 980px;
  display: grid;
  gap: 12px;
}

.campaign-faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfbf7;
}

.campaign-faq summary {
  position: relative;
  padding: 22px 60px 22px 24px;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.06rem;
  font-weight: 850;
  list-style: none;
}

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

.campaign-faq summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  color: var(--coral);
  font-size: 1.5rem;
  font-weight: 900;
}

.campaign-faq details[open] summary::after {
  content: "–";
}

.campaign-faq p {
  max-width: 800px;
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
}

.contact-section {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  color: var(--white);
  background: var(--brand-dark);
}

.contact-section h2 {
  max-width: 850px;
}

.contact-section p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.76);
}

.contact-section .eyebrow {
  color: #d4f48f;
}

.contact-page-section {
  background: #fbfbf7;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  border: 1px solid rgba(23, 32, 25, 0.24);
  border-radius: 8px;
  background: var(--white);
  font: inherit;
  font-weight: 500;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form-wide {
  grid-column: 1 / -1;
}

.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.contact-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.contact-verification {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.contact-verification p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.contact-verification a {
  color: var(--brand-dark);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.turnstile-placeholder {
  min-height: 65px;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  box-shadow: none;
}

.form-status.is-success {
  color: var(--brand-dark);
}

.form-status.is-error {
  color: #9d2f1d;
}

.contact-form button {
  border: 0;
  cursor: pointer;
}

.form-status {
  margin: 0;
  color: var(--brand-dark);
  font-weight: 750;
}

.contact-details {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-2);
  box-shadow: var(--shadow);
}

.contact-details h2 {
  font-size: 2rem;
}

.contact-details address,
.site-footer address {
  color: var(--muted);
  font-style: normal;
}

.contact-email {
  display: inline-flex;
  margin: 22px 0 30px;
  color: var(--brand-dark);
  font-size: 1.18rem;
  font-weight: 850;
  border-bottom: 2px solid currentColor;
}

.contact-step-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.contact-step-list article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 18px;
  background: #fbfbf7;
}

.contact-step-list article > span {
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.contact-step-list strong {
  display: block;
  margin-bottom: 4px;
}

.contact-step-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1.15fr) repeat(3, minmax(160px, 0.72fr));
  gap: 36px;
  padding: 54px clamp(20px, 6vw, 88px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--night);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer img {
  width: 150px;
  margin-bottom: 16px;
}

.site-footer p {
  max-width: 280px;
  margin: 0;
}

.site-footer a:hover {
  color: var(--white);
}

.site-footer address a {
  display: inline-block;
  margin-top: 8px;
  color: #d4f48f;
  font-weight: 800;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 9px;
}

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

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

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

@media (max-width: 960px) {
  .site-header {
    justify-content: space-between;
    gap: 14px;
  }

  .brand {
    width: 132px;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 8px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(246, 247, 240, 0.98);
    box-shadow: var(--shadow);
  }

  .has-js .main-nav {
    display: none;
  }

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

  .main-nav a {
    padding: 11px 12px;
    border-radius: 7px;
  }

  .main-nav a:hover {
    background: var(--paper-2);
  }

  .nav-toggle,
  .mobile-nav-contact {
    display: inline-flex;
  }

  .nav-toggle {
    margin-left: auto;
  }

  .header-action {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.82rem;
  }

  .language-switcher select {
    width: 58px;
    min-height: 38px;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 42px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 9, 7, 0.94), rgba(5, 13, 10, 0.72)),
      linear-gradient(0deg, rgba(4, 9, 7, 0.52), rgba(4, 9, 7, 0.08));
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .persona-panel h3 {
    font-size: 1.85rem;
  }

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

  .decision-strip,
  .persona-shell,
  .split,
  .proof-section,
  .contact-section,
  .contact-page-grid,
  .rollout-layout,
  .product-grid,
  .role-grid,
  .route-lifecycle,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .decision-strip {
    display: grid;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

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

  .split,
  .proof-section {
    display: grid;
  }

  .contact-section {
    display: block;
    align-items: start;
  }

  .contact-details {
    box-shadow: none;
  }

  .product-hero {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 54px;
  }

  .product-hero h1 {
    font-size: 2.8rem;
  }

  .document-product-hero h1 {
    font-size: 2.8rem;
  }

  .product-lead {
    font-size: 1.08rem;
  }

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

  .product-band {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .product-contact {
    display: block;
    align-items: start;
  }

  .product-contact .button {
    width: auto;
    max-width: 220px;
    margin-top: 24px;
  }

  .contact-section .button {
    width: auto;
    max-width: 220px;
    margin-top: 24px;
  }

  .article-page {
    padding-top: 108px;
  }

  .official-page {
    padding-top: 108px;
  }

  .article-hero h1 {
    font-size: 2.3rem;
  }

  .official-hero h1 {
    font-size: 2.45rem;
  }

  .article-lead {
    font-size: 1.08rem;
  }

  .decision-box {
    position: static;
  }
}

@media (max-width: 640px) {
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

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

  .header-action {
    display: none;
  }

  .language-switcher select {
    width: 54px;
  }

  .capability-grid,
  .problem-grid,
  .source-grid,
  .article-grid,
  .rollout-grid,
  .architecture-map {
    grid-template-columns: 1fr;
  }

  .article-card.featured {
    grid-column: auto;
  }

  .problem-grid article,
  .capability-card,
  .source-card,
  .article-card,
  .rollout-lead,
  .rollout-grid article,
  .arch-block {
    min-height: auto;
  }

  .persona-tabs {
    grid-template-columns: 1fr;
  }

  .persona-panel {
    min-height: auto;
  }

  .flow-board {
    padding: 18px;
  }

  .article-page {
    padding-right: 18px;
    padding-left: 18px;
  }

  .official-page {
    padding-right: 18px;
    padding-left: 18px;
  }

  .product-hero,
  .product-band,
  .product-flow-section,
  .product-contact {
    padding-left: 18px;
    padding-right: 18px;
  }

  .product-signal-grid {
    grid-template-columns: 1fr;
  }

  .contact-product-hero h1,
  .mail-product-hero h1 {
    font-size: 2.3rem;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form-wide {
    grid-column: auto;
  }

  .contact-details {
    padding: 22px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .document-product-hero h1 {
    font-size: 2.75rem;
  }

  .campaign-hero h1 {
    font-size: 2.3rem;
  }

  .product-card,
  .role-grid article,
  .route-step {
    min-height: auto;
  }

  .capability-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .article-hero {
    padding-bottom: 32px;
  }

  .article-layout {
    gap: 30px;
    padding-top: 34px;
  }

  .article-hero h1 {
    font-size: 2.24rem;
  }

  .article-body h2 {
    font-size: 1.42rem;
  }

  .official-content {
    padding-top: 34px;
  }

  .official-content h2 {
    font-size: 1.5rem;
  }

  .official-content h3 {
    font-size: 1.25rem;
  }

  .decision-questions {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}

/* Audit: plain feature labels, explicit links, and a compact contact entry. */
.eroute-points span,
.signal-row span {
  padding: 3px 0;
  border: 0;
  border-radius: 0;
  background: none;
  font-weight: 500;
}
.eroute-points span + span::before {
  content: "·";
  margin-right: 10px;
  opacity: 0.65;
}
.signal-row a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 4px;
}
.contact-product-hero {
  min-height: 0;
  padding-top: 112px;
  padding-bottom: 28px;
}
.contact-product-hero .product-back-link { margin-bottom: 16px; }
.contact-product-hero .product-lead { margin-bottom: 0; }
.contact-page-section { padding-top: 36px; }
#uzenet, #fogalmak { scroll-margin-top: 100px; }
.glossary {
  margin: 0 0 32px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}
.glossary summary { cursor: pointer; font-size: 1.1rem; font-weight: 750; }
.glossary[open] summary { margin-bottom: 18px; }
.glossary dt { margin-top: 18px; font-weight: 750; }
.glossary dd { margin: 6px 0 0; max-width: 80ch; color: var(--muted); line-height: 1.6; }
.product-glossary-link { padding: 24px clamp(18px, 6vw, 88px) 40px; }
[data-demo-note] { padding: 16px; border-left: 3px solid var(--brand); background: var(--paper-2); }

@media (min-width: 961px) and (max-width: 1240px) {
  .site-header {
    justify-content: space-between;
    gap: 14px;
  }

  .brand {
    width: 132px;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 8px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(246, 247, 240, 0.98);
    box-shadow: var(--shadow);
  }

  .has-js .main-nav {
    display: none;
  }

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

  .main-nav a {
    padding: 11px 12px;
    border-radius: 7px;
  }

  .main-nav a:hover {
    background: var(--paper-2);
  }

  .nav-toggle,
  .mobile-nav-contact {
    display: inline-flex;
  }

  .nav-toggle {
    margin-left: auto;
  }

  .header-action {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.82rem;
  }

  .language-switcher select {
    width: 58px;
    min-height: 38px;
  }

}
