/* Global Website Shell v1.7.2 Final Reference
   Baseline: protected Global Website Shell v1.5
   Candidate changes: route-driven navigation, DS-D33 CTA tokens, WCAG 2.2 AA
   focus treatment, go-live locale/scope policy, and mobile focus containment. */

:root {
  --button-green: #138664;
  --button-green-hover: #0f7456;
  --shell-focus: #8b69fd;
  --shell-focus-separation: #ffffff;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}
@supports not (scrollbar-gutter: stable) {
  html { overflow-y: scroll; }
}
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "Inter", Arial, sans-serif; }
body.mobile-menu-open { overflow: hidden; }
[hidden] { display: none !important; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--dark-2);
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

:where(a, button, [tabindex]):focus-visible {
  outline: 3px solid var(--shell-focus);
  outline-offset: 3px;
  box-shadow: 0 0 0 2px var(--shell-focus-separation);
}

.linear-nav .shell-nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 39px;
  padding: 9px 10px;
  border: 0;
  border-radius: 9px;
  color: #35333a;
  background: transparent;
  font: inherit;
  font-size: .88rem;
  font-weight: 560;
  cursor: pointer;
}
.linear-nav .shell-nav-trigger:hover,
.linear-nav .shell-nav-trigger[aria-expanded="true"] {
  color: #23212a;
  background: #f3f2f6;
}
.linear-nav .shell-nav-trigger[aria-expanded="true"] .submenu-chevron,
.linear-nav .nav-item.open .shell-nav-trigger .submenu-chevron { transform: rotate(180deg); }

.linear-mega[data-shell-menu] {
  display: none !important;
}
.linear-mega[data-shell-menu] .linear-mega-columns.cols-1 { grid-template-columns: 1fr; }
.linear-mega[data-shell-menu] .linear-mega-columns.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.linear-mega[data-shell-menu] .linear-mega-columns.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.btn.primary,
.nav-primary {
  color: #ffffff !important;
  background: #138664 !important;
  border-color: #138664 !important;
  box-shadow: 0 9px 24px rgba(19, 134, 100, .22) !important;
}
.btn.primary:hover,
.nav-primary:hover {
  color: #ffffff !important;
  background: #0f7456 !important;
  border-color: #0f7456 !important;
  box-shadow: 0 12px 30px rgba(15, 116, 86, .28) !important;
}
.nav-primary [aria-hidden="true"] { color: #ffffff !important; }
.linear-nav-actions .header-tertiary,
.linear-nav-actions .nav-primary {
  min-height: 40px !important;
  border-radius: 999px !important;
}
.linear-nav-actions .header-tertiary > span:first-child,
.linear-nav-actions .nav-primary > span:first-child {
  min-height: 38px !important;
  padding-left: 14px !important;
  padding-right: 11px !important;
}
.linear-nav-actions .header-action-icon,
.linear-nav-actions .nav-primary-arrow {
  width: 40px !important;
  height: 38px !important;
  flex: 0 0 40px !important;
}
.linear-nav-actions .header-action-icon::before,
.linear-nav-actions .nav-primary-arrow::before {
  width: 18px !important;
  height: 18px !important;
}
[data-ui-icon="contact"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 5.5h14v10H9l-4 3v-13z' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8.5 10.5h7' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 5.5h14v10H9l-4 3v-13z' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8.5 10.5h7' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.shell-preview {
  min-height: 640px;
  padding-bottom: 112px;
  background:
    radial-gradient(circle at 75% 20%, rgba(139, 105, 253, .12), transparent 34%),
    radial-gradient(circle at 15% 75%, rgba(19, 134, 100, .10), transparent 32%),
    #ffffff;
}
.preview-card {
  max-width: 780px;
  padding: clamp(32px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow);
}
.preview-card h1 {
  max-width: 680px;
  margin: 0;
  font-family: "Comfortaa", "Inter", sans-serif;
  font-size: clamp(2.25rem, 5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -.055em;
}
.preview-card p { max-width: 650px; margin: 24px 0 0; color: var(--ink-2); font-size: 1.05rem; line-height: 1.65; }
.preview-card .preview-note { padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: .88rem; }
.preview-route-status { color: var(--ink) !important; font-weight: 650; }

@media (max-width: 1080px) {
  .mobile-nav-shell { z-index: 500; }
  .mobile-nav-actions .header-tertiary,
  .mobile-nav-actions .nav-primary {
    min-height: 46px !important;
    display: inline-flex !important;
    justify-content: space-between;
    overflow: hidden;
  }
  .mobile-nav-actions .header-tertiary > span:first-child,
  .mobile-nav-actions .nav-primary > span:first-child { padding-left: 16px !important; }
  .mobile-nav-actions .header-action-icon,
  .mobile-nav-actions .nav-primary-arrow { min-width: 42px; }
  .mobile-accordion-panel:not([hidden]) { display: block; }
}

@media (max-width: 760px) {
  .shell-preview { min-height: 540px; padding-bottom: 72px; }
  .preview-card { padding: 32px 24px; border-radius: 22px; }
}

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