:root {
  --brand-blue: #0f5f91;
  --brand-blue-dark: #0a3f63;
  --brand-blue-soft: #e9f5fb;
  --brand-green: #11a95b;
  --brand-green-dark: #087d41;
  --brand-green-soft: #e8f8ef;
  --navy: #0b1f33;
  --ink: #162435;
  --muted: #607084;
  --line: #dbe4ec;
  --surface: #ffffff;
  --surface-soft: #f6f9fc;
  --surface-blue: #eff8fc;
  --shadow-sm: 0 1px 2px rgba(11, 31, 51, .06), 0 4px 14px rgba(11, 31, 51, .05);
  --shadow-md: 0 16px 40px rgba(11, 31, 51, .11);
  --shadow-lg: 0 28px 70px rgba(11, 31, 51, .16);
  --radius-sm: .65rem;
  --radius: 1rem;
  --radius-lg: 1.4rem;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--surface-soft);
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: var(--surface-soft);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

main {
  flex: 1 0 auto;
}

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

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

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

a {
  color: inherit;
}

[hidden] {
  display: none !important;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
}

.blog-page {
  --max-width: 1280px;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-180%);
  padding: .75rem 1rem;
  border-radius: .75rem;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: transform .18s ease;
}

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

:where(a, button, input, select, textarea, summary, [tabindex]:not([tabindex="-1"])):focus-visible {
  outline: 3px solid rgba(17, 169, 91, .45);
  outline-offset: 3px;
}

#main-content:focus {
  outline: none;
}

.announcement {
  position: relative;
  z-index: 30;
  padding: .58rem 1rem;
  color: rgba(255, 255, 255, .94);
  background: linear-gradient(90deg, var(--navy), #12395a 58%, #0d5a5c);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 25;
  border-bottom: 1px solid rgba(219, 228, 236, .8);
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px);
  transition: box-shadow .2s ease, background .2s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 8px 30px rgba(11, 31, 51, .08);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand img {
  width: 196px;
  height: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: .35rem;
}

.site-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: .55rem .78rem;
  border-radius: .7rem;
  color: #415267;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  transition: color .16s ease, background .16s ease, transform .16s ease;
}

.site-nav-link:hover {
  color: var(--brand-blue-dark);
  background: var(--surface-blue);
  transform: translateY(-1px);
}

.site-nav-link[aria-current="page"] {
  color: var(--brand-blue-dark);
  background: var(--brand-blue-soft);
}

.site-nav-link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: .8rem;
  right: .8rem;
  bottom: .28rem;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-green);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: .8rem;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.menu-button svg {
  width: 21px;
  height: 21px;
}

.mobile-nav {
  display: none;
  padding: .75rem 1rem 1rem;
  border-top: 1px solid var(--line);
  background: #fff;
}

.mobile-nav.is-open {
  display: block;
  animation: menu-drop .18s ease both;
}

.mobile-nav .site-nav-link {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: .85rem .9rem;
}

@keyframes menu-drop {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 46px;
  padding: .78rem 1.08rem;
  border: 1px solid transparent;
  border-radius: .82rem;
  font-size: .92rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

.button svg {
  width: 18px;
  height: 18px;
  transition: transform .18s ease;
}

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

.button:hover svg:last-child {
  transform: translateX(3px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-blue), #0877a5);
  box-shadow: 0 10px 22px rgba(15, 95, 145, .22);
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--brand-blue-dark), var(--brand-blue));
  box-shadow: 0 15px 30px rgba(15, 95, 145, .3);
}

.button-secondary {
  color: var(--brand-blue-dark);
  border-color: #b8d7e7;
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-sm);
}

.button-secondary:hover {
  border-color: #84bdd8;
  background: #fff;
  box-shadow: 0 10px 24px rgba(11, 31, 51, .1);
}

.button-ghost {
  color: var(--ink);
  border-color: var(--line);
  background: transparent;
}

.button-ghost:hover {
  background: var(--surface-soft);
}

.icon-button {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: .8rem;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}

.icon-button:hover {
  transform: translateY(-1px);
  border-color: #b9c8d4;
  background: var(--surface-soft);
}

.icon-button svg {
  width: 20px;
  height: 20px;
}

.page-hero,
.public-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 11% 16%, rgba(17, 169, 91, .13), transparent 27%),
    radial-gradient(circle at 88% 10%, rgba(15, 95, 145, .17), transparent 29%),
    linear-gradient(180deg, #fff 0%, #f2f9fc 100%);
}

.page-hero::before,
.public-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .28;
  background-image:
    linear-gradient(rgba(15, 95, 145, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 95, 145, .12) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 88%);
}

.page-hero-inner {
  padding: 5.25rem 0 4.5rem;
  text-align: center;
}

/* Training page: Craig 2026-09-06 — hero copy left-aligned, not centered
   (.hero-title centers itself via margin auto, so zero it too), and a tighter
   hero-to-filters gap. */
.training-page .page-hero-inner {
  text-align: left;
  padding: 3.6rem 0 2.6rem;
}

.training-page .hero-title {
  margin-inline: 0;
}

.training-page .section {
  padding-top: 2rem;
}

/* 2026-09-10 (Craig): the training page was leaving a lot of empty margin at
   desktop widths and the card tag rows wrapped. Widen its containers so the
   three-column grid gets room for a full row of tags. */
.training-page {
  --max-width: 1480px;
}

.public-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  align-items: center;
  gap: 4.5rem;
  padding: 6.2rem 0 5.8rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 1rem;
  color: var(--brand-blue-dark);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: var(--brand-green);
}

.hero-title {
  max-width: 900px;
  margin: 0 auto;
  color: var(--navy);
  font-size: clamp(2.45rem, 5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.page-hero .hero-title {
  font-size: clamp(2.25rem, 4.2vw, 3.85rem);
}

.public-hero-copy .hero-title {
  margin-inline: 0;
  max-width: 720px;
}

.hero-title .accent {
  color: var(--brand-blue);
}

.hero-lead {
  max-width: 720px;
  margin: 1.3rem auto 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  line-height: 1.75;
}

.public-hero-copy .hero-lead {
  margin-inline: 0;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 1.8rem;
}

.page-hero .hero-actions {
  justify-content: center;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 1.45rem;
  color: #506174;
  font-size: .88rem;
  font-weight: 700;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

.hero-trust span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-green);
  box-shadow: 0 0 0 4px rgba(17, 169, 91, .12);
}

.portal-preview {
  position: relative;
  border: 1px solid rgba(181, 211, 226, .9);
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
  transform: rotate(1deg);
}

.portal-preview::before {
  content: "";
  position: absolute;
  inset: 18% -8% -12% 12%;
  z-index: -1;
  border-radius: 2rem;
  background: linear-gradient(145deg, rgba(17, 169, 91, .15), rgba(15, 95, 145, .12));
  filter: blur(4px);
}

.preview-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--line);
}

.preview-dots {
  display: flex;
  gap: .38rem;
}

.preview-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c7d2dc;
}

.preview-dots i:nth-child(1) { background: #f68b83; }
.preview-dots i:nth-child(2) { background: #f4c969; }
.preview-dots i:nth-child(3) { background: #73d18c; }

.preview-status {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: #3c5a48;
  font-size: .77rem;
  font-weight: 800;
}

.preview-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-green);
  box-shadow: 0 0 0 4px rgba(17, 169, 91, .13);
}

.preview-body {
  padding: 1.35rem;
}

.preview-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.preview-heading strong {
  color: var(--navy);
  font-size: 1.02rem;
}

.preview-heading span {
  color: var(--muted);
  font-size: .75rem;
  font-weight: 700;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
}

.preview-card {
  min-height: 118px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: linear-gradient(180deg, #fff, #f8fbfd);
  box-shadow: 0 8px 20px rgba(11, 31, 51, .05);
}

.preview-card span {
  display: inline-flex;
  width: 37px;
  height: 37px;
  align-items: center;
  justify-content: center;
  border-radius: .8rem;
  color: var(--brand-blue);
  background: var(--brand-blue-soft);
}

.preview-card:nth-child(2n) span {
  color: var(--brand-green-dark);
  background: var(--brand-green-soft);
}

.preview-card svg {
  width: 19px;
  height: 19px;
}

.preview-card b {
  display: block;
  margin-top: .75rem;
  color: var(--navy);
  font-size: .82rem;
}

.preview-card small {
  display: block;
  margin-top: .25rem;
  color: var(--muted);
  font-size: .69rem;
  line-height: 1.45;
}

.section {
  padding: 5rem 0;
}

.section-compact {
  padding: 3.4rem 0;
}

.section-white {
  background: var(--surface);
}

.section-tint {
  background: linear-gradient(180deg, #f4fafc, #edf6fa);
}

.blog-page .page-hero-inner {
  padding: 2rem 0 1.55rem;
}

.blog-page .section {
  padding: 1.5rem 0;
}

.blog-page .section-heading {
  margin-bottom: .35rem;
}

.blog-page .faq-browser {
  padding: .25rem 0;
}

.blog-page .faq-results-header {
  margin-top: .55rem;
  margin-bottom: .5rem;
}

.blog-page .category-list {
  margin-top: .6rem;
  padding-top: .6rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-heading-copy {
  max-width: 720px;
}

.section-kicker {
  margin: 0 0 .5rem;
  color: var(--brand-blue);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.15;
  letter-spacing: -.025em;
}

.section-copy {
  margin: .7rem 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.resource-grid,
.card-grid,
.document-grid,
.version-grid,
.training-grid {
  display: grid;
  gap: 1.25rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

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

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

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

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

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

.resource-card,
.feature-card,
.document-card,
.version-card,
.training-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.resource-card:hover,
.feature-card:hover,
.document-card:hover,
.version-card:hover,
.training-card:hover {
  transform: translateY(-6px);
  border-color: #b7cedc;
  box-shadow: var(--shadow-md);
}

.resource-card::before,
.feature-card::before,
.document-card::before,
.training-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--brand-blue), var(--brand-green));
  opacity: 0;
  transition: opacity .2s ease;
}

.resource-card:hover::before,
.feature-card:hover::before,
.document-card:hover::before,
.training-card:hover::before {
  opacity: 1;
}

.resource-card a,
.document-card a {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 1.6rem;
  text-decoration: none;
}

.feature-card {
  padding: 1.65rem;
}

.card-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: .95rem;
  color: var(--brand-blue);
  background: var(--brand-blue-soft);
  box-shadow: inset 0 0 0 1px rgba(15, 95, 145, .08);
}

.card-icon.green {
  color: var(--brand-green-dark);
  background: var(--brand-green-soft);
}

.card-icon.neutral {
  color: #536477;
  background: #eef2f5;
}

.card-icon svg {
  width: 23px;
  height: 23px;
}

.card-title {
  margin: 1.2rem 0 0;
  color: var(--navy);
  font-size: 1.13rem;
  line-height: 1.35;
}

.card-copy {
  margin: .65rem 0 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.7;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem .65rem;
  margin-top: 1rem;
  color: #6a7a8c;
  font-size: .78rem;
  font-weight: 700;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: auto;
  padding-top: 1.35rem;
  color: var(--brand-blue-dark);
  font-size: .88rem;
  font-weight: 900;
}

.card-link svg {
  width: 18px;
  height: 18px;
  transition: transform .18s ease;
}

.resource-card:hover .card-link svg,
.document-card:hover .card-link svg {
  transform: translateX(4px);
}

.coming-card {
  height: 100%;
  padding: 1.45rem;
  border: 1px dashed #cbd6df;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .65);
}

.status-pill,
.badge,
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.status-pill {
  margin-top: 1.1rem;
  padding: .55rem .75rem;
  color: #5f6f80;
  background: #e9eef2;
}

.badge {
  padding: .47rem .65rem;
  color: var(--brand-blue-dark);
  border: 1px solid #c6dfec;
  background: var(--brand-blue-soft);
}

.badge.green {
  color: var(--brand-green-dark);
  border-color: #bee8d1;
  background: var(--brand-green-soft);
}

.badge.dark {
  color: #fff;
  border-color: transparent;
  background: var(--navy);
}

.quick-search {
  position: relative;
  max-width: 760px;
  margin: 2rem auto 0;
}

.quick-search input {
  width: 100%;
  min-height: 58px;
  padding: .95rem 9rem .95rem 3.2rem;
  border: 1px solid #bdd2de;
  border-radius: 1rem;
  color: var(--ink);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 15px 35px rgba(11, 31, 51, .1);
  transition: border-color .18s ease, box-shadow .18s ease;
}

.quick-search input:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(15, 95, 145, .11), 0 16px 38px rgba(11, 31, 51, .11);
  outline: none;
}

.quick-search .search-icon,
.search-control .search-icon {
  position: absolute;
  left: 1.15rem;
  top: 50%;
  width: 21px;
  height: 21px;
  transform: translateY(-50%);
  color: #66798b;
  pointer-events: none;
}

.quick-search button {
  position: absolute;
  right: .45rem;
  top: .45rem;
  bottom: .45rem;
  min-height: auto;
}

.notice-panel,
.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.65rem 1.8rem;
  border: 1px solid #bfdbe8;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #eef8fc, #f4fbf7);
}

.notice-panel h2,
.notice-panel h3,
.cta-panel h2,
.cta-panel h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.25rem;
}

.notice-panel p,
.cta-panel p {
  margin: .35rem 0 0;
  color: var(--muted);
  font-size: .92rem;
}

.document-card .file-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.timeline {
  margin-top: 2rem;
}

.timeline-row {
  display: flex;
  gap: 1rem;
}

.timeline-track {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  margin-top: .3rem;
  border-radius: 50%;
  background: var(--brand-blue);
}

.timeline-dot.is-current {
  background: var(--brand-green);
}

.timeline-line {
  flex: 1;
  width: 2px;
  margin-top: .3rem;
  background: var(--line);
}

.timeline-row:last-child .timeline-line {
  display: none;
}

.timeline-body {
  padding-bottom: 1.6rem;
}

.timeline-label {
  margin: 0;
  color: var(--brand-blue-dark);
  font-size: .85rem;
  font-weight: 800;
}

.timeline-row:last-child .timeline-label {
  color: var(--brand-green-dark);
}

.timeline-body p:last-child {
  margin: .3rem 0 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.7;
}

.version-card {
  padding: 1.55rem;
}

.version-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--line);
}

.version-title-wrap {
  display: flex;
  align-items: center;
  gap: .85rem;
}

.version-title {
  margin: 0;
  color: var(--navy);
  font-size: 1.18rem;
}

.version-subtitle {
  margin: .2rem 0 0;
  color: var(--muted);
  font-size: .78rem;
}

.download-list {
  display: grid;
  gap: .7rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.download-link {
  display: flex;
  align-items: center;
  gap: .75rem;
  min-height: 54px;
  padding: .72rem .8rem;
  border: 1px solid var(--line);
  border-radius: .8rem;
  color: var(--ink);
  background: var(--surface-soft);
  text-decoration: none;
  transition: transform .17s ease, border-color .17s ease, background .17s ease, box-shadow .17s ease;
}

.download-link:hover {
  transform: translateX(3px);
  border-color: #a9c6d5;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.download-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: .7rem;
  color: var(--brand-blue);
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line);
}

.download-icon svg {
  width: 18px;
  height: 18px;
}

.download-name {
  min-width: 0;
  flex: 1;
  font-size: .84rem;
  font-weight: 800;
  line-height: 1.35;
}

.download-type {
  padding: .38rem .48rem;
  border-radius: .45rem;
  color: #5b6c7d;
  background: #e9eef2;
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .05em;
}

.download-arrow {
  width: 17px;
  height: 17px;
  color: var(--brand-blue);
}

.filter-panel,
.faq-browser {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.filter-panel {
  padding: 1.35rem;
}

.filter-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 1rem;
  align-items: end;
}

.field label {
  display: block;
  margin-bottom: .45rem;
  color: #34475b;
  font-size: .78rem;
  font-weight: 900;
}

.field input,
.field select,
.faq-search input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #c7d3dc;
  border-radius: .78rem;
  color: var(--ink);
  background: #fff;
  transition: border-color .17s ease, box-shadow .17s ease;
}

.field input,
.faq-search input {
  padding: .75rem .9rem;
}

.field select {
  padding: .75rem 2.2rem .75rem .9rem;
}

.field input:focus,
.field select:focus,
.faq-search input:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(15, 95, 145, .1);
  outline: none;
}

.search-control {
  position: relative;
}

.search-control input,
.faq-search input {
  padding-left: 2.8rem;
}

.filter-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.result-count {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
}

.training-card {
  display: flex;
  flex-direction: column;
}

.training-visual {
  position: relative;
  cursor: pointer;
  min-height: 188px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .18), transparent 30%),
    linear-gradient(135deg, var(--brand-blue-dark), #0c7ba1 58%, #0d9b78);
}

.training-visual .training-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.training-visual.has-thumb::after {
  display: none;
}

.training-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .27;
  background-image:
    linear-gradient(rgba(255, 255, 255, .22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .22) 1px, transparent 1px);
  background-size: 34px 34px;
}

.play-button-visual {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 68px;
  height: 68px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--brand-blue-dark);
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .24);
  transition: transform .2s ease, box-shadow .2s ease;
}

.training-card:hover .play-button-visual {
  transform: scale(1.08);
  box-shadow: 0 20px 45px rgba(0, 0, 0, .28);
}

.play-button-visual svg {
  width: 28px;
  height: 28px;
  transform: translateX(2px);
}

.training-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.3rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

.tag {
  padding: .42rem .6rem;
  color: #536477;
  border: 1px solid #d8e1e8;
  background: #f4f7f9;
}

.tag.primary {
  color: var(--brand-blue-dark);
  border-color: #c7e0ec;
  background: var(--brand-blue-soft);
}

.training-title {
  margin: 1rem 0 0;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.4;
}

.training-description {
  margin: .55rem 0 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.7;
}

.training-card .button {
  width: 100%;
  margin-top: auto;
}

.training-action {
  padding-top: 1.25rem;
  margin-top: auto;
}

.empty-state,
.error-state,
.loading-state {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border: 1px dashed #c4d1da;
  border-radius: var(--radius);
  color: var(--muted);
  background: #fff;
  text-align: center;
}

.error-state {
  color: #8f2e2e;
  border-style: solid;
  border-color: #edc5c5;
  background: #fff3f3;
}

.training-dialog {
  width: min(920px, calc(100% - 2rem));
  max-height: calc(100vh - 2rem);
  padding: 0;
  border: 0;
  border-radius: 1.4rem;
  background: transparent;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.training-dialog::backdrop {
  background: rgba(6, 20, 33, .78);
  backdrop-filter: blur(8px);
}

.training-dialog[open] {
  animation: dialog-in .2s ease both;
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(16px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.dialog-panel {
  max-height: calc(100vh - 2rem);
  display: flex;
  flex-direction: column;
  background: #fff;
}

.dialog-header,
.dialog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.35rem;
  border-color: var(--line);
}

.dialog-header {
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
}

.dialog-footer {
  justify-content: flex-end;
  border-top: 1px solid var(--line);
}

.dialog-kicker {
  margin: 0;
  color: var(--brand-blue);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.dialog-title {
  margin: .35rem 0 0;
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1.3;
}

.dialog-content {
  padding: 1.3rem;
  overflow-y: auto;
}

.dialog-description {
  margin: 1rem 0 0;
  color: var(--muted);
}

.video-frame {
  margin-top: 1.2rem;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 1rem;
  background: #050a0e;
}

.video-frame iframe,
.video-frame video {
  width: 100%;
  height: 100%;
  border: 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.4rem;
}

.faq-browser {
  padding: 1.35rem;
}

.faq-search-row {
  display: flex;
  align-items: end;
  gap: .75rem;
}

.faq-search {
  flex: 1;
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin: 1.1rem 0 0;
  padding: 1.1rem 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.faq-category {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-height: 42px;
  padding: .55rem .78rem;
  border: 1px solid #cbd7df;
  border-radius: 999px;
  color: #4c5f73;
  background: #fff;
  font-size: .8rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform .16s ease, background .16s ease, border-color .16s ease, color .16s ease;
}

.faq-category:hover {
  transform: translateY(-1px);
  border-color: #a9c5d3;
  background: var(--surface-soft);
}

.faq-category[aria-pressed="true"] {
  color: #fff;
  border-color: var(--brand-blue);
  background: linear-gradient(135deg, var(--brand-blue), #0b719d);
  box-shadow: 0 8px 18px rgba(15, 95, 145, .2);
}

.category-count {
  min-width: 24px;
  padding: .25rem .42rem;
  border-radius: 999px;
  color: inherit;
  background: rgba(95, 113, 131, .1);
  font-size: .68rem;
  text-align: center;
}

.faq-category[aria-pressed="true"] .category-count {
  background: rgba(255, 255, 255, .2);
}

.faq-results-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin: 2rem 0 1rem;
}

.faq-results-title {
  margin: 0;
  color: var(--navy);
  font-size: 1.55rem;
}

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

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.faq-item:hover {
  border-color: #b8cdda;
  box-shadow: 0 10px 24px rgba(11, 31, 51, .08);
}

.faq-item.is-open {
  border-color: #9fc8db;
  box-shadow: 0 16px 34px rgba(15, 95, 145, .1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.2rem 1.25rem;
  border: 0;
  color: inherit;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faq-question:hover {
  background: #f8fbfd;
}

.faq-title {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.45;
}

.faq-description {
  display: block;
  margin-top: .3rem;
  color: var(--muted);
  font-size: .83rem;
  line-height: 1.55;
}

.faq-chevron {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--brand-blue);
  transition: transform .22s ease;
}

.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer-shell {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .24s ease;
}

.faq-item.is-open .faq-answer-shell {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  min-height: 0;
  overflow: hidden;
}

.faq-content {
  padding: 1.2rem 1.25rem 1.4rem;
  border-top: 1px solid var(--line);
  color: #506174;
  line-height: 1.72;
  overflow-wrap: anywhere;
}

.faq-content > :first-child { margin-top: 0; }
.faq-content > :last-child { margin-bottom: 0; }

.faq-content h2,
.faq-content h3,
.faq-content h4 {
  margin: 1.35rem 0 .55rem;
  color: var(--navy);
  line-height: 1.35;
}

.faq-content h2 { font-size: 1.12rem; }
.faq-content h3 { font-size: 1rem; }
.faq-content h4 { font-size: .95rem; }

.faq-content p,
.faq-content ul,
.faq-content ol,
.faq-content blockquote,
.faq-content pre,
.faq-table-scroll {
  margin: 0 0 .95rem;
}

.faq-content ul,
.faq-content ol {
  padding-left: 1.45rem;
}

.faq-content li {
  margin: .3rem 0;
}

.faq-content code {
  padding: .12rem .34rem;
  border-radius: .3rem;
  color: #24384c;
  background: #eaf0f4;
  font-size: .88em;
}

.faq-content pre {
  max-width: 100%;
  overflow-x: auto;
  padding: 1rem;
  border-radius: .75rem;
  color: #edf5fa;
  background: #0d1b2a;
  white-space: pre;
  overflow-wrap: normal;
}

.faq-content pre code {
  padding: 0;
  color: inherit;
  background: transparent;
}

.faq-content blockquote {
  padding: .55rem 0 .55rem 1rem;
  border-left: 4px solid #9bb7c7;
  color: #526578;
}

.faq-content a {
  color: var(--brand-blue-dark);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: .18rem;
}

.faq-table-scroll {
  max-width: 100%;
  overflow-x: auto;
}

.faq-content table {
  min-width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}

.faq-content th,
.faq-content td {
  padding: .6rem .7rem;
  border: 1px solid #cbd6df;
  text-align: left;
  vertical-align: top;
}

.faq-content th {
  color: var(--navy);
  background: #eef4f7;
}

.cta-band {
  padding: 3.2rem 0;
  color: #fff;
  background:
    radial-gradient(circle at 12% 20%, rgba(17, 169, 91, .28), transparent 30%),
    linear-gradient(135deg, var(--navy), #103b5d 60%, #0b6465);
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.2;
}

.cta-band p {
  max-width: 650px;
  margin: .55rem 0 0;
  color: rgba(255, 255, 255, .75);
}

.cta-band .button-secondary {
  flex: 0 0 auto;
  color: var(--navy);
  border-color: rgba(255, 255, 255, .45);
  background: #fff;
}

.site-footer {
  flex-shrink: 0;
  color: rgba(255, 255, 255, .74);
  background: #071727;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 0;
  font-size: .82rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, .76);
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.2, .7, .2, 1);
  transition-delay: var(--delay, 0ms);
}

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

@media (max-width: 1050px) {
  .resource-grid,
  .document-grid,
  .version-grid,
  .training-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .public-hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .public-hero-copy {
    text-align: center;
  }

  .public-hero-copy .hero-title,
  .public-hero-copy .hero-lead {
    margin-inline: auto;
  }

  .public-hero-copy .hero-actions,
  .public-hero-copy .hero-trust {
    justify-content: center;
  }

  .portal-preview {
    width: min(100%, 700px);
    margin-inline: auto;
    transform: none;
  }

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

@media (max-width: 820px) {
  .desktop-nav,
  .header-support-button {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

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

  .cta-band-inner,
  .notice-panel,
  .cta-panel,
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-band .button-secondary {
    flex: auto;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--max-width));
  }

  .announcement {
    font-size: .7rem;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand img {
    width: 160px;
  }

  .public-hero-inner {
    padding: 4.5rem 0 4rem;
  }

  .page-hero-inner {
    padding: 4rem 0 3.5rem;
  }

  .blog-page .page-hero-inner {
    padding: 3rem 0 2.5rem;
  }

  .blog-page .section {
    padding: 2.8rem 0;
  }

  .hero-title {
    font-size: 2.45rem;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .preview-grid,
  .resource-grid,
  .document-grid,
  .version-grid,
  .training-grid,
  .filter-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.7rem 0;
  }

  .section-compact {
    padding: 2.7rem 0;
  }

  .quick-search input {
    min-height: 56px;
    padding-right: 1rem;
  }

  .quick-search button {
    position: static;
    width: 100%;
    margin-top: .7rem;
  }

  .faq-search-row,
  .filter-footer,
  .faq-results-header,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .faq-search-row .button,
  .filter-footer .button {
    width: 100%;
  }

  .footer-inner {
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Site-wide flagship refinements. */
.workspace-page .page-hero {
  border-bottom: 1px solid rgba(203, 221, 228, .8);
}

.workspace-page .page-hero-inner {
  padding: 2.8rem 0 2.35rem;
  text-align: left;
}

.workspace-page .page-hero-inner .eyebrow,
.workspace-page .page-hero-inner .hero-lead {
  margin-inline: 0;
}

.workspace-page .hero-title {
  max-width: 820px;
  font-size: clamp(2.35rem, 4vw, 3.75rem);
}

.workspace-page .hero-lead {
  max-width: 700px;
  margin-top: .85rem;
  font-size: 1.02rem;
  line-height: 1.6;
}

.workspace-page .section {
  padding: 3.8rem 0;
}

.workspace-page .section-heading {
  margin-bottom: 1.4rem;
}

.workspace-page .resource-card,
.workspace-page .document-card,
.workspace-page .version-card,
.workspace-page .training-card,
.workspace-page .faq-browser,
.workspace-page .filter-panel {
  border-radius: 1.1rem;
  box-shadow: 0 12px 30px rgba(8, 26, 42, .07);
}

.workspace-page .resource-card:hover,
.workspace-page .document-card:hover,
.workspace-page .version-card:hover,
.workspace-page .training-card:hover {
  transform: translateY(-3px);
}

.flow-rail,
.document-map {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin: 0 0 1.45rem;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.flow-rail-node,
.document-map-node {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: .4rem .65rem;
  border: 1px solid #cbdde4;
  border-radius: 999px;
  background: #fff;
}

.flow-rail-node.is-active,
.document-map-node.is-active {
  color: #fff;
  border-color: var(--brand-blue);
  background: var(--brand-blue);
}

.flow-rail-link,
.document-map > span[aria-hidden="true"] {
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--brand-green), var(--brand-blue));
}

.support-home-page .resource-grid {
  gap: 1rem;
}

.support-home-page .resource-card {
  min-height: 255px;
}

.support-home-page .resource-card-docs { background: linear-gradient(145deg, #fff, #eef8fc); }
.support-home-page .resource-card-software { background: linear-gradient(145deg, #fff, #eefaf3); }
.support-home-page .resource-card-training { background: linear-gradient(145deg, #fff, #f5f2fb); }
.support-home-page .resource-card-faq { background: linear-gradient(145deg, #fff, #f5f8fa); }

.documentation-page .document-map {
  max-width: 620px;
  margin-bottom: 1.7rem;
}

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

.documentation-page .file-strip {
  min-height: 42px;
}

.software-page .version-grid {
  gap: 1rem;
}

.software-page .version-card {
  border-top: 3px solid var(--brand-blue);
}

.software-page .version-card:first-child {
  border-top-color: var(--brand-green);
}

.software-page .download-link {
  min-height: 56px;
}

.training-page .training-visual {
  position: relative;
  min-height: 150px;
  background:
    linear-gradient(145deg, rgba(21, 76, 121, .96), rgba(11, 100, 101, .9)),
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(255, 255, 255, .08) 29px 30px);
}

.training-page .training-visual::before {
  content: "MEDIA PREVIEW";
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: rgba(255, 255, 255, .62);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.training-page .training-card {
  overflow: hidden;
}

.faq-page .page-hero-inner {
  padding-bottom: 2rem;
}

.faq-page .faq-layout {
  max-width: 1120px;
}

.faq-page .faq-browser {
  padding: 1.05rem;
}

.faq-page .faq-results-header {
  margin-top: 1.25rem;
}

.faq-page .faq-item {
  border-radius: .9rem;
}

.faq-page .faq-title {
  font-size: 1.03rem;
}

.faq-page .faq-description {
  max-width: 760px;
}

.editorial-page .page-hero-inner {
  max-width: 1320px;
  padding: 2.25rem 0 1.5rem;
  text-align: left;
}

.editorial-page .hero-title {
  max-width: 760px;
}

.editorial-page .hero-lead {
  max-width: 650px;
  margin-inline: 0;
}

.editorial-page .section-white > .container {
  max-width: 1320px;
}

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

.blog-editorial-list .blog-featured {
  grid-column: span 2;
}

.blog-featured .document-card {
  min-height: 360px;
  background: linear-gradient(145deg, #fff, #edf8fb);
}

.blog-featured .card-title {
  max-width: 720px;
  font-size: clamp(1.5rem, 2.7vw, 2.35rem);
  line-height: 1.08;
}

.blog-featured .card-copy {
  max-width: 620px;
  font-size: 1rem;
}

.blog-editorial-list .document-card {
  border-radius: 1rem;
}

.public-hero-inner {
  padding: 4.2rem 0 3.75rem;
}

.public-hero .portal-preview {
  transform: rotate(.6deg);
}

.public-support-flow {
  display: flex;
  align-items: center;
  gap: .45rem;
  margin-top: 1.1rem;
  padding-top: .9rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.public-support-flow-node {
  padding: .35rem .45rem;
  border-radius: .45rem;
  background: var(--brand-blue-soft);
}

.public-support-flow-node.is-final {
  color: var(--brand-green-dark);
  background: var(--brand-green-soft);
}

.public-support-flow-line {
  width: 20px;
  height: 1px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-green));
}

@media (max-width: 820px) {
  .blog-editorial-list .blog-featured {
    grid-column: auto;
  }

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

@media (max-width: 640px) {
  .workspace-page .page-hero-inner {
    padding: 2.15rem 0 1.8rem;
  }

  .workspace-page .section {
    padding: 2.8rem 0;
  }

  .flow-rail,
  .document-map {
    overflow-x: auto;
    padding-bottom: .2rem;
  }

  .public-support-flow {
    flex-wrap: wrap;
  }

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

  .blog-featured .document-card {
    min-height: 300px;
  }
}

/* Flagship About system: promoted from the approved prototype. */
.flagship-page { --flagship-ink: #081a2a; --flagship-deep: #061522; --flagship-blue: #154c79; --flagship-cyan: #77d8e4; --flagship-green: #139b48; --flagship-lime: #a5edbd; --flagship-line: #cbdde4; --flagship-muted: #667b8e; --flagship-paper: #f4f8fa; --flagship-white: #fff; --flagship-shadow: 0 24px 70px rgba(8, 26, 42, .16); overflow-x: hidden; background: var(--flagship-paper); }
.flagship-page .container { width: min(calc(100% - 2rem), 1240px); }
.flagship-hero { position: relative; display: grid; min-height: clamp(590px, 76vh, 700px); isolation: isolate; overflow: hidden; color: #fff; background: var(--flagship-deep); }
.flagship-hero::before { content: ""; position: absolute; inset: 0; z-index: -2; opacity: .52; background-image: linear-gradient(rgba(119, 216, 228, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(119, 216, 228, .08) 1px, transparent 1px); background-size: 52px 52px; mask-image: linear-gradient(to bottom, #000 20%, transparent 94%); }
.flagship-hero::after { content: ""; position: absolute; width: 62vw; height: 62vw; right: -24vw; top: -38vw; z-index: -1; border: 1px solid rgba(119, 216, 228, .18); border-radius: 50%; box-shadow: 0 0 0 90px rgba(19, 155, 72, .04), 0 0 0 180px rgba(119, 216, 228, .025); }
.flagship-hero-grid { display: grid; grid-template-columns: minmax(0, .88fr) minmax(500px, 1.12fr); align-items: center; gap: clamp(2rem, 5vw, 5.5rem); padding: 3.2rem 0 3rem; }
.flagship-hero-copy { position: relative; z-index: 2; }
.flagship-eyebrow { margin-bottom: 1.35rem; color: var(--flagship-cyan); }
.flagship-eyebrow::before, .flagship-eyebrow::after { background: var(--flagship-green); }
.flagship-hero h1 { max-width: 720px; margin: 0; color: #fff; font-size: clamp(3rem, 5.3vw, 5.8rem); line-height: .96; letter-spacing: -.065em; }
.flagship-hero-lead { max-width: 620px; margin: 1.45rem 0 0; color: rgba(255, 255, 255, .72); font-size: clamp(1rem, 1.45vw, 1.25rem); line-height: 1.7; }
.flagship-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.flagship-actions .button span { font-size: 1.1em; }
.flagship-button-secondary { color: #fff; border-color: rgba(255, 255, 255, .35); background: rgba(255, 255, 255, .08); }
.flagship-button-secondary:hover { color: var(--flagship-ink); background: #fff; }
.flagship-hero-note { display: flex; align-items: center; gap: .55rem; margin: 1.5rem 0 0; color: rgba(255, 255, 255, .54); font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.flagship-live-dot { display: inline-block; width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: var(--flagship-green); box-shadow: 0 0 0 4px rgba(19, 155, 72, .16); }
.flagship-network { position: relative; min-height: 480px; padding: 1rem; border: 1px solid rgba(119, 216, 228, .25); border-radius: 1.45rem; background: linear-gradient(145deg, rgba(18, 54, 79, .86), rgba(7, 25, 39, .72)); box-shadow: var(--flagship-shadow), inset 0 1px 0 rgba(255, 255, 255, .11); transform: translate3d(calc(var(--flagship-pointer-x, 0) * 1px), calc(var(--flagship-pointer-y, 0) * 1px), 0); transition: transform .3s ease; }
.flagship-network-head, .flagship-network-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: rgba(255, 255, 255, .62); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.flagship-network-state { color: var(--flagship-lime); }
.flagship-network-stage { position: relative; min-height: 408px; margin-top: .75rem; border: 1px solid rgba(119, 216, 228, .12); border-radius: 1rem; background: radial-gradient(circle at 50% 46%, rgba(119, 216, 228, .11), transparent 38%); }
.flagship-network-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.flagship-network-route, .flagship-network-route-secondary, .flagship-network-bridge, .flagship-network-signal { fill: none; stroke-linecap: round; }
.flagship-network-route, .flagship-network-route-secondary { stroke: rgba(119, 216, 228, .28); stroke-width: 2; }
.flagship-network-route-secondary { stroke: rgba(19, 155, 72, .25); }
.flagship-network-bridge { stroke: rgba(255, 255, 255, .16); stroke-dasharray: 3 8; }
.flagship-network-signal { stroke: url(#flagship-network-line); stroke-width: 3; stroke-dasharray: 1 20; animation: flagship-signal-flow 4.5s linear infinite; }
.flagship-network-pulse { fill: var(--flagship-cyan); filter: drop-shadow(0 0 9px rgba(119, 216, 228, .9)); animation: flagship-pulse 2.8s ease-in-out infinite; }
.flagship-network-pulse-two { animation-delay: .9s; }
.flagship-network-pulse-three { animation-delay: 1.7s; }
.flagship-network-node { fill: var(--flagship-deep); stroke: var(--flagship-cyan); stroke-width: 2; filter: drop-shadow(0 0 8px rgba(119, 216, 228, .35)); }
.flagship-network-node-final { fill: var(--flagship-green); stroke: var(--flagship-lime); stroke-width: 3; }
.flagship-network-node-label { position: absolute; display: grid; gap: .15rem; min-width: 108px; padding: .58rem .7rem; border: 1px solid rgba(119, 216, 228, .25); border-radius: .65rem; color: #fff; background: rgba(7, 25, 39, .84); box-shadow: 0 12px 24px rgba(0, 0, 0, .18); font-size: .64rem; }
.flagship-network-node-label span { color: var(--flagship-cyan); font-size: .56rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.flagship-network-node-label strong { font-size: .78rem; }
.flagship-network-label-source { left: 2.5%; top: 18%; }
.flagship-network-label-query { left: 29%; top: 42%; }
.flagship-network-label-far { left: 49%; top: 22%; }
.flagship-network-label-exec { right: 25%; bottom: 16%; }
.flagship-network-label-insight { right: 2.5%; top: 18%; }
.flagship-network-label-vista { left: 2.5%; bottom: 14%; }
.flagship-network-foot { margin-top: .7rem; color: rgba(255, 255, 255, .42); font-size: .58rem; }
.flagship-scroll-cue { position: absolute; right: max(1rem, calc((100% - 1240px) / 2)); bottom: 1.2rem; display: flex; align-items: center; gap: .55rem; color: rgba(255, 255, 255, .48); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.flagship-scroll-cue span { width: 28px; height: 1px; background: var(--flagship-green); }
.flagship-friction, .flagship-constellation, .flagship-history, .flagship-principles { padding: clamp(5rem, 9vw, 9rem) 0; }
.flagship-friction { color: #fff; background: var(--flagship-deep); }
.flagship-section-intro { max-width: 780px; }
.flagship-kicker, .flagship-panel-label, .flagship-product-index, .flagship-principle-number, .flagship-history-label { margin: 0 0 .8rem; color: var(--flagship-green); font-size: .72rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.flagship-section-intro h2, .flagship-erp h2, .flagship-close h2 { margin: 0; color: var(--flagship-ink); font-size: clamp(2.35rem, 5vw, 5rem); line-height: .99; letter-spacing: -.055em; }
.flagship-friction .flagship-section-intro h2, .flagship-close h2 { color: #fff; }
.flagship-section-lead { max-width: 660px; margin: 1.15rem 0 0; color: var(--flagship-muted); font-size: 1.05rem; line-height: 1.75; }
.flagship-friction .flagship-section-lead, .flagship-close p { color: rgba(255, 255, 255, .7); }
.flagship-friction-grid { display: grid; grid-template-columns: minmax(0, 1fr) 100px minmax(0, 1fr); align-items: stretch; gap: 1rem; margin-top: 4rem; }
.flagship-friction-panel { min-height: 360px; padding: clamp(1.5rem, 3vw, 2.6rem); border-radius: 1.2rem; }
.flagship-friction-panel h3 { max-width: 390px; margin: 0; font-size: clamp(1.7rem, 3vw, 3rem); line-height: 1.05; letter-spacing: -.045em; }
.flagship-friction-before { border: 1px solid rgba(255, 255, 255, .13); background: linear-gradient(145deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .015)); }
.flagship-friction-before .flagship-panel-label { color: rgba(255, 255, 255, .52); }
.flagship-friction-before h3 { color: rgba(255, 255, 255, .74); }
.flagship-friction-after { border: 1px solid rgba(165, 237, 189, .4); background: linear-gradient(145deg, rgba(19, 155, 72, .25), rgba(21, 76, 121, .42)); box-shadow: 0 20px 55px rgba(19, 155, 72, .12); }
.flagship-friction-after h3 { color: #fff; }
.flagship-signal-list { display: grid; gap: 1rem; margin: 2.2rem 0 0; padding: 0; list-style: none; }
.flagship-signal-list li { display: flex; align-items: flex-start; gap: .7rem; color: rgba(255, 255, 255, .68); line-height: 1.45; }
.flagship-signal-list li::before { content: ""; width: 7px; height: 7px; flex: 0 0 auto; margin-top: .5rem; border-radius: 50%; background: var(--flagship-green); box-shadow: 0 0 0 4px rgba(19, 155, 72, .16); }
.flagship-friction-before .flagship-signal-list li::before { background: rgba(255, 255, 255, .35); box-shadow: none; }
.flagship-friction-bridge { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .6rem; color: var(--flagship-cyan); font-size: .6rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.flagship-friction-bridge i { display: block; width: 1px; height: 36px; background: linear-gradient(var(--flagship-green), var(--flagship-cyan)); }
.flagship-journey { padding: clamp(5rem, 9vw, 9rem) 0; background: var(--flagship-paper); }
.flagship-journey-grid { display: grid; grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr); gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.flagship-journey-visual-column { position: sticky; top: 120px; }
.flagship-journey-visual { position: relative; min-height: 590px; overflow: hidden; padding: 1.2rem; border: 1px solid #aacdd6; border-radius: 1.4rem; background: linear-gradient(145deg, #eaf8f8, #d8ebf2); box-shadow: var(--flagship-shadow); }
.flagship-journey-visual::before { content: ""; position: absolute; inset: 15% -40% -25% 15%; border: 1px solid rgba(21, 76, 121, .14); border-radius: 50%; transform: rotate(-22deg); }
.flagship-journey-visual-head { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 1rem; color: var(--flagship-blue); font-size: .68rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.flagship-journey-counter { color: var(--flagship-muted); }
.flagship-journey-layers { position: relative; z-index: 1; display: grid; gap: .75rem; margin: 8rem 1rem 0; }
.flagship-journey-layer { display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: .8rem; padding: 1.05rem 1rem; border: 1px solid rgba(21, 76, 121, .18); border-radius: .85rem; color: var(--flagship-blue); background: rgba(255, 255, 255, .52); opacity: .46; transform: translateX(0) scale(.97); transition: opacity .35s ease, transform .35s ease, border-color .35s ease, background .35s ease; }
.flagship-journey-layer span { color: var(--flagship-muted); font-size: .7rem; font-weight: 900; }
.flagship-journey-layer strong { font-size: 1rem; }
.flagship-journey-layer i { width: 8px; height: 8px; border-radius: 50%; background: var(--flagship-muted); }
.flagship-journey-visual[data-active="detail"] [data-layer="detail"], .flagship-journey-visual[data-active="explain"] [data-layer="explain"], .flagship-journey-visual[data-active="focus"] [data-layer="focus"], .flagship-journey-visual[data-active="decision"] [data-layer="decision"] { border-color: var(--flagship-green); background: rgba(255, 255, 255, .9); box-shadow: 0 12px 24px rgba(19, 155, 72, .14); opacity: 1; transform: translateX(16px) scale(1); }
.flagship-journey-visual[data-active="detail"] [data-layer="detail"] i, .flagship-journey-visual[data-active="explain"] [data-layer="explain"] i, .flagship-journey-visual[data-active="focus"] [data-layer="focus"] i, .flagship-journey-visual[data-active="decision"] [data-layer="decision"] i { background: var(--flagship-green); box-shadow: 0 0 0 4px rgba(19, 155, 72, .14); }
.flagship-journey-signal { position: absolute; left: 3.5rem; top: 8.6rem; bottom: 6.7rem; z-index: 0; width: 2px; background: linear-gradient(var(--flagship-green), rgba(21, 76, 121, .12)); }
.flagship-journey-signal span { position: absolute; left: -3px; width: 8px; height: 8px; border-radius: 50%; background: var(--flagship-green); box-shadow: 0 0 0 5px rgba(19, 155, 72, .13); }
.flagship-journey-signal span:nth-child(1) { top: 0; }
.flagship-journey-signal span:nth-child(2) { top: 33%; }
.flagship-journey-signal span:nth-child(3) { top: 66%; }
.flagship-journey-label { position: absolute; left: 2rem; bottom: 4.3rem; margin: 0; color: var(--flagship-blue); font-size: 1.35rem; font-weight: 900; letter-spacing: -.03em; }
.flagship-journey-status { position: absolute; left: 2rem; bottom: 1.5rem; display: flex; align-items: center; gap: .55rem; margin: 0; color: var(--flagship-muted); font-size: .75rem; font-weight: 800; }
.flagship-journey-copy { padding-top: 1rem; }
.flagship-journey-steps { margin-top: 4rem; }
.flagship-journey-step { display: grid; grid-template-columns: 54px minmax(0, 1fr); gap: 1.2rem; min-height: 260px; padding: 2rem 0; border-top: 1px solid var(--flagship-line); opacity: .48; transition: opacity .3s ease; }
.flagship-journey-step.is-active { opacity: 1; }
.flagship-step-number { margin: .25rem 0 0; color: var(--flagship-green); font-size: .8rem; font-weight: 900; letter-spacing: .1em; }
.flagship-journey-step h3 { margin: 0; color: var(--flagship-ink); font-size: clamp(1.45rem, 2.5vw, 2.2rem); line-height: 1.1; letter-spacing: -.04em; }
.flagship-journey-step h3 span { color: var(--flagship-blue); font-size: .65em; letter-spacing: 0; }
.flagship-journey-step > div > p { max-width: 500px; margin: 1rem 0 0; color: var(--flagship-muted); line-height: 1.75; }
.flagship-constellation { background: #fff; }
.flagship-constellation-intro { max-width: 720px; }
.flagship-constellation-stage { position: relative; display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 2.6rem; align-items: center; margin-top: 4.5rem; min-height: 380px; }
.flagship-constellation-rail { position: absolute; inset: 0; width: 100%; height: 100%; fill: none; stroke: rgba(21, 76, 121, .2); stroke-width: 2; stroke-dasharray: 3 8; }
.flagship-constellation-rail circle { fill: var(--flagship-green); stroke: #fff; stroke-width: 5; }
.flagship-product-panel { position: relative; z-index: 1; min-height: 240px; padding: 2rem; border-radius: 1.2rem; box-shadow: 0 16px 40px rgba(8, 26, 42, .1); }
.flagship-product-panel h3 { margin: 0; font-size: clamp(2rem, 4vw, 4rem); line-height: .95; letter-spacing: -.06em; }
.flagship-product-panel > p:not(.flagship-product-index) { max-width: 270px; margin: 1.2rem 0 0; line-height: 1.65; }
.flagship-product-index { margin-bottom: 1.2rem; }
.flagship-product-tag { display: inline-flex; margin-top: 1.6rem; padding: .38rem .55rem; border-radius: 999px; font-size: .67rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.flagship-product-query { color: var(--flagship-blue); border: 1px solid #b8d7e2; background: #eef8fa; transform: translateY(42px); }
.flagship-product-query .flagship-product-tag { background: #d6eef0; }
.flagship-product-far { min-height: 330px; color: #fff; background: linear-gradient(145deg, var(--flagship-blue), #0c6f78); box-shadow: var(--flagship-shadow); }
.flagship-product-far .flagship-product-index { color: var(--flagship-lime); }
.flagship-product-far > p:not(.flagship-product-index) { color: rgba(255, 255, 255, .75); }
.flagship-product-far .flagship-product-tag { color: var(--flagship-ink); background: var(--flagship-lime); }
.flagship-product-exec { color: var(--flagship-ink); border: 1px solid #c6e9d0; background: #f0faf3; transform: translateY(-38px); }
.flagship-product-exec .flagship-product-index { color: var(--flagship-green); }
.flagship-product-exec .flagship-product-tag { color: #22613a; background: #d8f2df; }
.flagship-erp { padding: clamp(4.5rem, 8vw, 7rem) 0; color: #fff; background: var(--flagship-deep); }
.flagship-erp-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr); gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.flagship-erp h2 { color: #fff; }
.flagship-erp .flagship-section-lead { color: rgba(255, 255, 255, .7); }
.flagship-erp-flow { position: relative; min-height: 300px; padding: 1rem; border: 1px solid rgba(119, 216, 228, .22); border-radius: 1.2rem; background: radial-gradient(circle at 50% 50%, rgba(119, 216, 228, .12), transparent 58%); }
.flagship-erp-source,.flagship-erp-layer { position: absolute; display: grid; gap: .3rem; padding: .8rem .9rem; border: 1px solid rgba(119, 216, 228, .32); border-radius: .7rem; background: rgba(255, 255, 255, .07); }
.flagship-erp-source { left: 1rem; top: 1.2rem; }
.flagship-erp-source-alt { left: 1rem; bottom: 1.2rem; }
.flagship-erp-layer { right: 1rem; top: 50%; color: var(--flagship-ink); border-color: var(--flagship-lime); background: var(--flagship-lime); transform: translateY(-50%); }
.flagship-erp-source span,.flagship-erp-layer span { font-size: .58rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.flagship-erp-source span { color: var(--flagship-cyan); }
.flagship-erp-source strong,.flagship-erp-layer strong { font-size: .9rem; }
.flagship-erp-flow-line { position: absolute; left: 45%; top: 25%; bottom: 25%; width: 30%; border-top: 1px solid var(--flagship-cyan); border-bottom: 1px solid var(--flagship-cyan); transform: skewY(-20deg); }
.flagship-erp-flow-line::after { content: ""; position: absolute; right: 0; top: 50%; width: 0; height: 0; border-top: 5px solid transparent; border-bottom: 5px solid transparent; border-left: 8px solid var(--flagship-cyan); transform: translateY(-50%); }
.flagship-erp-flow-line i { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--flagship-green); box-shadow: 0 0 0 4px rgba(19, 155, 72, .13); animation: flagship-pulse 2.8s ease-in-out infinite; }
.flagship-erp-flow-line i:nth-child(1) { left: 10%; top: 20%; }
.flagship-erp-flow-line i:nth-child(2) { left: 46%; top: 50%; animation-delay: .8s; }
.flagship-erp-flow-line i:nth-child(3) { right: 8%; bottom: 16%; animation-delay: 1.5s; }
.flagship-history { background: #fff; }
.flagship-history-rail { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin: 4.5rem 0 0; padding: 2.8rem 0 0; list-style: none; }
.flagship-history-rail::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px; background: linear-gradient(90deg, var(--flagship-green), var(--flagship-cyan), var(--flagship-blue)); }
.flagship-history-milestone { position: relative; padding-right: 1.2rem; opacity: .48; transition: opacity .3s ease; }
.flagship-history-milestone::before { content: ""; position: absolute; left: 0; top: -3.15rem; width: 10px; height: 10px; border: 3px solid #fff; border-radius: 50%; background: var(--flagship-muted); box-shadow: 0 0 0 1px var(--flagship-line); }
.flagship-history-milestone.is-active { opacity: 1; }
.flagship-history-milestone.is-active::before { background: var(--flagship-green); box-shadow: 0 0 0 5px rgba(19, 155, 72, .12); }
.flagship-history-node { display: none; }
.flagship-history-label { color: var(--flagship-blue); }
.flagship-history-milestone > div > p:last-child { max-width: 280px; margin: 0; color: var(--flagship-muted); line-height: 1.65; }
.flagship-principles { color: #fff; background: var(--flagship-paper); }
.flagship-principles .flagship-section-intro h2 { color: var(--flagship-ink); }
.flagship-principles-grid { display: grid; grid-template-columns: 1.35fr .85fr .85fr; grid-template-rows: repeat(2, minmax(190px, auto)); gap: 1rem; margin-top: 4rem; }
.flagship-principle { position: relative; overflow: hidden; min-height: 190px; padding: 1.7rem; border-radius: 1.1rem; }
.flagship-principle h3 { max-width: 290px; margin: 0; font-size: clamp(1.5rem, 3vw, 2.5rem); line-height: 1; letter-spacing: -.05em; }
.flagship-principle h3 em { color: var(--flagship-cyan); font-style: normal; }
.flagship-principle > p:not(.flagship-principle-number) { max-width: 340px; margin: .9rem 0 0; color: rgba(255, 255, 255, .7); line-height: 1.6; }
.flagship-principle-number { color: inherit; opacity: .62; }
.flagship-principle-mark { position: absolute; right: 1rem; bottom: -.7rem; color: rgba(255, 255, 255, .15); font-size: 8rem; font-weight: 900; line-height: 1; }
.flagship-principle-lead { grid-row: span 2; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(145deg, var(--flagship-blue), #0c6f78); }
.flagship-principle-lead h3 { max-width: 430px; font-size: clamp(2.5rem, 5vw, 5.2rem); }
.flagship-principle-governed { color: var(--flagship-ink); background: #d9f0f2; }
.flagship-principle-governed > p:not(.flagship-principle-number) { color: var(--flagship-muted); }
.flagship-principle-governed .flagship-principle-mark { color: rgba(21, 76, 121, .13); }
.flagship-principle-close { color: var(--flagship-ink); background: #dff3e5; }
.flagship-principle-close > p:not(.flagship-principle-number) { color: var(--flagship-muted); }
.flagship-principle-close .flagship-principle-mark { color: rgba(19, 155, 72, .16); }
.flagship-principle-time { grid-column: 2 / -1; color: #fff; background: var(--flagship-ink); }
.flagship-close { position: relative; isolation: isolate; overflow: hidden; padding: clamp(5rem, 10vw, 9rem) 0; color: #fff; background: var(--flagship-deep); }
.flagship-close-horizon { position: absolute; inset: 0; z-index: -1; opacity: .7; }
.flagship-close-horizon span { position: absolute; left: -10%; right: -10%; height: 1px; background: linear-gradient(90deg, transparent, var(--flagship-cyan), transparent); transform: rotate(-9deg); }
.flagship-close-horizon span:nth-child(1) { top: 48%; }
.flagship-close-horizon span:nth-child(2) { top: 58%; opacity: .42; transform: rotate(7deg); }
.flagship-close-horizon span:nth-child(3) { top: 71%; opacity: .2; transform: rotate(-4deg); }
.flagship-close-inner { max-width: 820px; }
.flagship-close h2 { font-size: clamp(3.6rem, 8vw, 8rem); }
.flagship-close-inner > p:not(.flagship-kicker) { max-width: 620px; margin: 1.3rem 0 0; font-size: 1.1rem; line-height: 1.7; }
.flagship-js [data-flagship-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.flagship-js [data-flagship-reveal].flagship-is-visible { opacity: 1; transform: none; }
@keyframes flagship-signal-flow {
  to { stroke-dashoffset: -120; }
}
@keyframes flagship-pulse {
  0%, 100% { opacity: .42; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1.2); }
}
@media (max-width: 1100px) {
  .flagship-hero-grid { grid-template-columns: minmax(0, .9fr) minmax(410px, 1.1fr); gap: 2rem; }
  .flagship-network { min-height: 430px; }
  .flagship-network-stage { min-height: 358px; }
  .flagship-network-label-query { left: 25%; }
  .flagship-network-label-exec { right: 18%; }
  .flagship-journey-grid { gap: 3rem; }
}
@media (max-width: 820px) {
  .flagship-hero { min-height: auto; }
  .flagship-hero-grid,.flagship-journey-grid,.flagship-erp-grid { grid-template-columns: 1fr; }
  .flagship-hero-grid { padding: 4.5rem 0 4rem; }
  .flagship-network { max-width: 760px; width: 100%; min-height: 430px; margin-inline: auto; }
  .flagship-journey-visual-column { position: static; }
  .flagship-journey-visual { min-height: 430px; }
  .flagship-journey-layers { margin-top: 4rem; }
  .flagship-journey-signal { top: 4.6rem; }
  .flagship-constellation-stage { grid-template-columns: 1fr; gap: 1rem; }
  .flagship-constellation-rail { display: none; }
  .flagship-product-panel,.flagship-product-query,.flagship-product-exec { min-height: 210px; transform: none; }
  .flagship-product-far { min-height: 250px; }
  .flagship-erp-flow { min-height: 270px; }
  .flagship-history-rail { grid-template-columns: 1fr; gap: 2rem; padding: 0 0 0 2.8rem; }
  .flagship-history-rail::before { top: 0; bottom: 0; left: .34rem; right: auto; width: 2px; height: auto; background: linear-gradient(var(--flagship-green), var(--flagship-cyan), var(--flagship-blue)); }
  .flagship-history-milestone { padding: 0; }
  .flagship-history-milestone::before { left: -2.8rem; top: .1rem; }
  .flagship-history-node { display: block; position: absolute; left: -2.25rem; top: .03rem; color: var(--flagship-muted); font-size: .62rem; font-weight: 900; }
  .flagship-principles-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .flagship-principle-lead { grid-row: auto; grid-column: 1 / -1; min-height: 260px; }
  .flagship-principle-time { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .flagship-page .container { width: min(calc(100% - 1.25rem), 1240px); }
  .flagship-hero-grid { padding: 3rem 0 3.5rem; }
  .flagship-hero h1 { font-size: clamp(2.8rem, 13vw, 4rem); }
  .flagship-actions { flex-direction: column; align-items: stretch; }
  .flagship-actions .button { width: 100%; }
  .flagship-network { min-height: 430px; padding: .7rem; }
  .flagship-network-stage { min-height: 356px; }
  .flagship-network-node-label { min-width: 72px; padding: .4rem .38rem; font-size: .5rem; }
  .flagship-network-node-label strong { font-size: .62rem; }
  .flagship-network-label-source { left: 0; top: 17%; }
  .flagship-network-label-query { left: 16%; top: 41%; }
  .flagship-network-label-far { left: 36%; top: 17%; }
  .flagship-network-label-exec { right: 16%; bottom: 12%; }
  .flagship-network-label-insight { right: 0; top: 17%; }
  .flagship-network-label-vista { left: 0; bottom: 11%; }
  .flagship-network-foot { font-size: .5rem; }
  .flagship-friction-grid { grid-template-columns: 1fr; margin-top: 2.5rem; }
  .flagship-friction-panel { min-height: 0; }
  .flagship-friction-bridge { flex-direction: row; min-height: 50px; }
  .flagship-friction-bridge i { width: 34px; height: 1px; }
  .flagship-journey-visual { min-height: 390px; }
  .flagship-journey-layers { margin: 3.5rem .2rem 0; }
  .flagship-journey-layer { grid-template-columns: 30px 1fr auto; padding: .85rem .7rem; }
  .flagship-journey-layer strong { font-size: .82rem; }
  .flagship-journey-signal { left: 2.1rem; top: 4.2rem; bottom: 6.4rem; }
  .flagship-journey-label,.flagship-journey-status { left: 1.2rem; }
  .flagship-journey-step { grid-template-columns: 34px minmax(0, 1fr); min-height: 0; padding: 1.6rem 0; }
  .flagship-history-rail { margin-top: 2.8rem; }
  .flagship-principles-grid { grid-template-columns: 1fr; margin-top: 2.8rem; }
  .flagship-principle-lead,.flagship-principle-time { grid-column: auto; }
  .flagship-principle { min-height: 180px; }
  .flagship-close h2 { font-size: clamp(3rem, 16vw, 5rem); }
}
@media (prefers-reduced-motion: reduce) {
  .flagship-network, .flagship-journey-layer, .flagship-journey-step, .flagship-history-milestone, .flagship-js [data-flagship-reveal] { transition: none; }
  .flagship-network-signal, .flagship-network-pulse, .flagship-erp-flow-line i { animation: none; }
  .flagship-network { transform: none; }
}
