:root {
  color-scheme: light;
  --bg-top: #06152E;
  --bg-main: #081B3B;
  --bg-soft: #f4f7fb;
  --surface: #FFFFFF;
  --surface-soft: #EAF2F8;
  --surface-strong: rgba(255, 255, 255, 0.94);
  --surface-muted: rgba(234, 242, 248, 0.82);
  --panel-dark: rgba(6, 21, 46, 0.88);
  --panel-dark-soft: rgba(10, 32, 67, 0.78);
  --card-border: rgba(15, 23, 42, 0.08);
  --card-border-strong: rgba(255, 255, 255, 0.12);
  --text: #0F172A;
  --text-strong: #08162c;
  --muted: #516173;
  --muted-soft: rgba(224, 233, 246, 0.82);
  --line: rgba(78, 109, 166, 0.18);
  --accent: #1B9A6F;
  --accent-soft: rgba(27, 154, 111, 0.12);
  --hero-shadow: 0 28px 80px rgba(6, 21, 46, 0.26);
  --card-shadow: 0 18px 42px rgba(7, 24, 46, 0.08);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --anchor-offset: 92px;
  --max-width: 1180px;
  --display-font: "Iowan Old Style", "Baskerville", "Palatino Linotype", serif;
  --body-font: "Optima", "Avenir Next", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: var(--anchor-offset);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(78, 109, 166, 0.22), transparent 32rem),
    radial-gradient(circle at 88% 10%, rgba(27, 154, 111, 0.12), transparent 24rem),
    linear-gradient(180deg, var(--bg-top) 0, var(--bg-main) 28rem, #eef3f8 28rem, #fbfcfe 100%);
  font-family: var(--body-font);
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.24), transparent 70%);
}

a {
  color: inherit;
}

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

:where(main[id], section[id]) {
  scroll-margin-top: var(--anchor-offset);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text-strong);
  font-family: var(--display-font);
  font-weight: 700;
  letter-spacing: -0.04em;
}

p {
  margin: 0;
}

:focus-visible {
  outline: 3px solid rgba(27, 154, 111, 0.34);
  outline-offset: 3px;
}

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

.site-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  padding: 18px 0 54px;
}

.panel,
.content-section,
.footer {
  position: relative;
  z-index: 1;
}

.panel {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  background: var(--surface-strong);
  box-shadow: var(--card-shadow);
}

.standalone-panel {
  padding: 42px;
  margin-top: 24px;
}

.env-banner {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 18px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 214, 143, 0.28);
  border-radius: 999px;
  background: rgba(255, 214, 143, 0.14);
  color: #fff3d2;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(6, 21, 46, 0.78);
  box-shadow: 0 18px 42px rgba(6, 21, 46, 0.24);
  backdrop-filter: blur(12px);
}

.topbar.is-scrolled {
  background: rgba(6, 21, 46, 0.92);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex: none;
  color: #ffffff;
  text-decoration: none;
}

.brand-mark-image {
  width: 48px;
  height: 48px;
  flex: none;
  object-fit: contain;
}

.brand-wordmark-image {
  max-width: 100%;
  width: auto;
  height: 36px;
  flex: none;
  object-fit: contain;
}

.nav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.nav a:hover,
.nav a.is-active,
.nav a:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

.nav a:hover,
.nav a:focus-visible {
  transform: translateY(-1px);
}

.topbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: none;
}

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

.locale-switcher .locale-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 38px;
  padding: 0 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease;
}

.locale-link-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  pointer-events: none;
}

.locale-switcher .locale-link:hover,
.locale-switcher .locale-link:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}

.locale-switcher .locale-link.is-active {
  color: var(--bg-top);
  background: #ffffff;
}

.ghost-link,
.primary-link,
.button,
.inline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.ghost-link,
.primary-link {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.9rem;
  white-space: nowrap;
}

.button-label-compact {
  display: none;
}

.ghost-link {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  background: transparent;
}

.ghost-link:hover,
.ghost-link:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.primary-link {
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--bg-top);
  background: #ffffff;
}

.primary-link:hover,
.primary-link:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(255, 255, 255, 0.16);
}

.button {
  min-height: 50px;
  padding: 0 20px;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.button-primary {
  border: 1px solid transparent;
  color: var(--bg-top);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(255, 255, 255, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-1px);
  background: #f7fbff;
}

.button-secondary {
  border: 1px solid rgba(8, 27, 59, 0.12);
  color: var(--text-strong);
  background: rgba(255, 255, 255, 0.94);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.button-tertiary:hover,
.button-tertiary:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(8, 27, 59, 0.22);
  background: #ffffff;
}

.button-tertiary {
  border: 1px solid rgba(8, 27, 59, 0.1);
  color: var(--text-strong);
  background: rgba(255, 255, 255, 0.7);
}

.button-compact {
  min-height: 44px;
  padding: 0 16px;
  white-space: nowrap;
}

.inline-link {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
}

.inline-link:hover,
.inline-link:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 26px;
  align-items: stretch;
  margin-top: 18px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 14% 0%, rgba(78, 109, 166, 0.28), transparent 22rem),
    radial-gradient(circle at 88% 10%, rgba(27, 154, 111, 0.14), transparent 20rem),
    linear-gradient(180deg, rgba(6, 21, 46, 0.98), rgba(8, 27, 59, 0.94));
  box-shadow: var(--hero-shadow);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.26), transparent 78%);
}

.hero-copy,
.hero-stage {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero-copy {
  padding: 12px 0 4px;
}

.eyebrow {
  margin-bottom: 14px;
  color: rgba(236, 243, 255, 0.76);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.content-section .eyebrow,
.footer .eyebrow,
.standalone-panel .eyebrow {
  color: var(--accent);
}

.hero h1 {
  max-width: 9ch;
  color: #ffffff;
  font-size: clamp(3.4rem, 7vw, 6.3rem);
  line-height: 0.94;
}

.hero-subtitle {
  max-width: 32rem;
  margin-top: 20px;
  color: rgba(244, 249, 255, 0.94);
  font-size: clamp(1.16rem, 1.1rem + 0.55vw, 1.52rem);
  line-height: 1.42;
}

.hero-text {
  max-width: 34rem;
  margin-top: 16px;
  color: rgba(224, 233, 246, 0.86);
  font-size: 1rem;
}

.standalone-panel .hero-text {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-stage {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 18% 14%, rgba(78, 109, 166, 0.18), transparent 18rem),
    linear-gradient(180deg, rgba(10, 32, 67, 0.84), rgba(7, 24, 46, 0.78));
  box-shadow: 0 18px 42px rgba(6, 21, 46, 0.18);
  backdrop-filter: blur(8px);
}

.hero-stage-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.stage-kicker {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-stage-copy {
  max-width: 30rem;
  color: rgba(229, 237, 248, 0.92);
  font-size: 1rem;
}

.hero-spotlight {
  display: grid;
  gap: 14px;
}

.hero-card,
.problem-card,
.info-card,
.feature-card,
.workflow-step,
.security-card,
.cta-card {
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--card-shadow);
}

.hero-card {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  box-shadow: none;
}

.hero-card-title {
  color: #ffffff;
  font-size: 1.28rem;
  line-height: 1.12;
}

.hero-card p {
  margin-top: 10px;
  color: rgba(224, 233, 246, 0.82);
}

.content-section {
  padding: 38px 0 0;
}

.section-heading {
  display: grid;
  gap: 14px;
}

.section-heading-split {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 18px;
}

.content-section h2,
.cta-band h2,
.support-card h2 {
  font-size: clamp(2rem, 2.2vw, 3rem);
  line-height: 1.02;
}

.section-subtitle {
  max-width: 38rem;
  margin-top: 12px;
  color: var(--text-strong);
  font-size: 1.12rem;
  line-height: 1.46;
}

.section-lead {
  max-width: 44rem;
  margin-top: 12px;
  color: var(--muted);
  font-size: 1rem;
}

.problem-grid,
.card-grid,
.workflow-grid,
.solution-grid,
.cta-band-grid,
.support-grid {
  display: grid;
  gap: 16px;
}

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

.problem-card {
  padding: 22px;
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.9);
}

.problem-card::before {
  display: block;
  width: 44px;
  height: 3px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
}

.problem-card h3,
.info-card h3,
.feature-card h3,
.workflow-step h3,
.security-card h3,
.cta-card h3 {
  font-size: 1.28rem;
}

.problem-card p,
.info-card p,
.feature-card p,
.workflow-step p,
.security-card p,
.cta-card p,
.support-card p {
  margin-top: 10px;
  color: var(--muted);
}

.solution-section {
  margin-top: 38px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(241, 247, 255, 0.9)),
    var(--surface);
}

.solution-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  margin-top: 22px;
}

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

.card-grid-product,
.card-grid-feature,
.card-grid-differentiation,
.card-grid-security {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
}

.info-card,
.feature-card,
.security-card,
.cta-card {
  padding: 22px;
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.94);
}

.info-card,
.feature-card,
.security-card {
  min-height: 220px;
}

.info-card-solution {
  background: rgba(255, 255, 255, 0.8);
}

.feature-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 255, 0.92));
}

.workflow-section {
  padding-top: 46px;
}

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

.workflow-step {
  position: relative;
  padding: 22px;
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.94);
  overflow: hidden;
}

.workflow-step::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(27, 154, 111, 0.22), rgba(8, 27, 59, 0.12));
  content: "";
}

.workflow-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.security-section {
  padding: 38px 28px 0;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, #ffffff, #f6f9fd);
}

.cta-band {
  display: grid;
  gap: 24px;
  margin-top: 42px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 18% 18%, rgba(78, 109, 166, 0.2), transparent 20rem),
    linear-gradient(180deg, rgba(8, 27, 59, 0.94), rgba(6, 21, 46, 0.9));
  box-shadow: var(--hero-shadow);
}

.cta-band-copy h2,
.cta-band-copy .section-subtitle,
.cta-band-copy .section-lead,
.cta-band .eyebrow,
.cta-card h3,
.cta-card p {
  color: #ffffff;
}

.cta-band-copy .section-lead {
  color: rgba(224, 233, 246, 0.82);
}

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

.cta-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.cta-card p {
  color: rgba(224, 233, 246, 0.82);
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  margin-top: 44px;
  padding: 32px 0 0;
  border-top: 1px solid rgba(8, 27, 59, 0.08);
}

.footer-logo {
  width: auto;
  height: 36px;
}

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

.footer-links {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.footer-links a,
.footer-copy {
  color: var(--text-strong);
  font-size: 0.95rem;
}

.footer-copy {
  grid-column: 1 / -1;
}

.support-hero {
  background: rgba(255, 255, 255, 0.96);
}

.support-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.support-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.support-card {
  padding: 26px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--card-shadow);
}

.support-list {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.support-list dt {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.support-list dd {
  margin: 6px 0 0;
  color: var(--text-strong);
  font-size: 1rem;
}

.support-list a,
.support-links a {
  color: var(--text-strong);
}

.support-legal-copy {
  margin-top: 18px;
}

.support-links {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.support-link {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  background: rgba(241, 247, 255, 0.7);
  text-decoration: none;
}

.support-link span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.support-link strong {
  font-size: 0.98rem;
  line-height: 1.45;
}

.not-found-heading {
  margin: 0;
  font-size: clamp(2.2rem, 7vw, 4rem);
}

.not-found-body {
  margin-top: 16px;
}

.content-section.is-targeted,
.panel.is-targeted {
  box-shadow:
    0 0 0 1px rgba(27, 154, 111, 0.3),
    0 22px 46px rgba(7, 24, 46, 0.1);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 420ms ease,
    transform 420ms ease;
}

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

@media (max-width: 1120px) {
  .site-shell {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .hero h1 {
    max-width: none;
  }

  .problem-grid,
  .card-grid-product,
  .card-grid-feature,
  .card-grid-differentiation,
  .card-grid-security,
  .workflow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-layout,
  .support-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .topbar {
    gap: 12px;
  }

  .nav {
    display: none;
  }

  .topbar-actions {
    margin-left: auto;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 6px;
  }

  .ghost-link,
  .primary-link {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .locale-switcher {
    padding: 3px;
  }

  .locale-switcher .locale-link {
    min-width: 40px;
    min-height: 34px;
    padding: 0 8px;
  }

  .section-heading-split {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .cta-band-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-links {
    justify-items: start;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding-top: 12px;
  }

  .topbar {
    top: 8px;
    gap: 10px;
    padding: 9px 10px;
  }

  .brand-wordmark-image {
    height: 26px;
  }

  .brand-mark-image {
    width: 38px;
    height: 38px;
  }

  .ghost-link,
  .primary-link {
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.78rem;
  }

  .locale-switcher .locale-link {
    min-width: 34px;
    min-height: 32px;
    padding: 0 7px;
    font-size: 0.9rem;
  }

  .hero {
    gap: 18px;
    margin-top: 14px;
    padding: 24px 18px;
  }

  .hero-copy {
    padding-top: 4px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12vw, 4rem);
    line-height: 0.96;
  }

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

  .hero-stage,
  .solution-section,
  .cta-band,
  .standalone-panel,
  .support-card {
    padding: 20px;
  }

  .problem-grid,
  .card-grid-product,
  .card-grid-feature,
  .card-grid-differentiation,
  .card-grid-security,
  .workflow-grid,
  .solution-grid {
    grid-template-columns: 1fr;
  }

  .content-section,
  .security-section {
    padding-top: 28px;
  }

  .button,
  .button-compact {
    width: 100%;
  }

  .hero-actions,
  .cta-band-actions {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .topbar {
    gap: 8px;
    padding: 8px;
  }

  .brand {
    gap: 8px;
  }

  .brand-wordmark-image {
    display: none;
  }

  .topbar-actions {
    gap: 5px;
  }

  .ghost-link,
  .primary-link {
    padding: 0 9px;
    font-size: 0.76rem;
  }

  .locale-switcher .locale-link {
    min-width: 32px;
    min-height: 30px;
    padding: 0 6px;
    font-size: 0.86rem;
  }

  .button-label-default {
    display: none;
  }

  .button-label-compact {
    display: inline-flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }

  .nav a,
  .ghost-link,
  .primary-link,
  .button,
  .inline-link,
  .js [data-reveal] {
    transition: none !important;
  }
}
