/* [project]/apps/web/src/app/site-public-v2.css [app-client] (css) */
.v2-container {
  max-width: var(--container-max, 1200px);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.util {
  background: var(--util-bar-bg);
  color: #ffffffc7;
  min-height: var(--util-bar-h, 34px);
  font-size: 12px;
}

.util-inner {
  max-width: var(--container-max, 1200px);
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin: 0 auto;
  padding: 7px 24px;
  display: flex;
}

.util-inner > * {
  white-space: nowrap;
}

.util .util-item {
  align-items: center;
  gap: 6px;
  display: inline-flex;
}

.util .util-item .ic {
  opacity: .7;
  flex-shrink: 0;
  width: 13px;
  height: 13px;
}

.util a {
  color: #ffffffc7;
  text-decoration: none;
}

.util a:hover {
  color: #3cc4f4;
}

.util .util-spacer {
  flex: 1;
}

.util .util-links {
  gap: 14px;
  display: flex;
}

.util .util-links a {
  align-items: center;
  gap: 4px;
  font-weight: 500;
  display: inline-flex;
}

.util .util-links a .ext {
  opacity: .6;
  font-size: 9px;
}

.util .util-links a:hover .ext {
  opacity: 1;
}

.util .socs {
  gap: 8px;
  display: flex;
}

.util .soc {
  color: #ffffffc7;
  background: #ffffff0f;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  text-decoration: none;
  display: flex;
}

.util .soc:hover {
  background: var(--accent-500);
  color: var(--brand-900);
}

.util .soc .ic {
  width: 12px;
  height: 12px;
}

.util .langs {
  gap: 1px;
  display: flex;
}

.util .lang {
  letter-spacing: .04em;
  color: #ffffffb3;
  cursor: pointer;
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
}

.util .lang.on, .util .lang:hover {
  color: #fff;
}

.util .lang.on {
  background: #ffffff14;
}

.util [role="group"] button[aria-pressed="false"] {
  color: #ffffffb8;
}

.util [role="group"] button[aria-pressed="false"]:hover {
  color: #fff;
  background: #ffffff14;
}

.ph2 {
  z-index: var(--z-sticky, 200);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  height: var(--site-header-h, 64px);
  background: #fffffff7;
  transition: box-shadow .24s, background .24s;
  position: sticky;
  top: 0;
}

.ph2.scrolled {
  box-shadow: 0 6px 24px -8px #0a1f3e1f;
}

.ph2 .ph-inner {
  max-width: var(--container-max, 1200px);
  align-items: center;
  gap: 32px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
}

.ph2 nav {
  flex: 1;
  gap: 26px;
  display: flex;
}

.ph2 nav a {
  color: var(--brand-800);
  text-transform: uppercase;
  letter-spacing: .02em;
  white-space: nowrap;
  padding: 8px 0;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

.ph2 nav a:before {
  content: "";
  background: var(--accent-500);
  transform-origin: 0;
  pointer-events: none;
  height: 3px;
  transition: transform .28s cubic-bezier(.2, .7, .2, 1);
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  transform: scaleX(0);
}

.ph2 nav a:hover {
  color: var(--brand-700);
}

.ph2 nav a:hover:before {
  transform: scaleX(1);
}

.ph2 nav a.active {
  color: var(--brand-700);
}

.ph2 nav a.active:before {
  transform: scaleX(1);
}

.ph-actions {
  align-items: center;
  gap: 8px;
  display: flex;
}

.ph-burger {
  border: 1px solid var(--border-subtle);
  width: 40px;
  height: 40px;
  color: var(--brand-800);
  cursor: pointer;
  background: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  transition: background .16s;
  display: none;
}

.ph-burger:hover {
  background: var(--surface-page);
}

.ph-mobile-actions {
  align-items: center;
  gap: 8px;
  margin-left: auto;
  display: none;
}

.ph-mobile-login {
  border: 1px solid var(--brand-700);
  background: var(--brand-700);
  color: #fff;
  white-space: nowrap;
  border-radius: 8px;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background .16s, border-color .16s;
  display: inline-flex;
}

.ph-mobile-login:hover {
  background: var(--brand-800);
  border-color: var(--brand-800);
}

.ph-drawer-backdrop {
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  z-index: 900;
  background: #0a1f3e80;
  transition: opacity .22s cubic-bezier(.2, .7, .2, 1);
  position: fixed;
  inset: 0;
}

.ph-drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.ph-drawer {
  z-index: 950;
  visibility: hidden;
  background: #fff;
  flex-direction: column;
  width: min(86vw, 360px);
  transition: transform .28s cubic-bezier(.2, .7, .2, 1);
  display: flex;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  transform: translateX(100%);
  box-shadow: -20px 0 48px #0a1f3e2e;
}

.ph-drawer.open {
  visibility: visible;
  transform: translateX(0);
}

.ph-drawer-head {
  border-bottom: 1px solid var(--border-subtle);
  justify-content: space-between;
  align-items: center;
  min-height: 64px;
  padding: 16px 20px;
  display: flex;
}

.ph-drawer-close {
  width: 36px;
  height: 36px;
  color: var(--brand-800);
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  transition: background .16s;
  display: inline-flex;
}

.ph-drawer-close:hover {
  background: var(--surface-page);
}

.ph-drawer-nav {
  flex-direction: column;
  flex: 1;
  padding: 12px 0;
  display: flex;
  overflow-y: auto;
}

.ph-drawer-nav a {
  color: var(--brand-800);
  border-left: 3px solid #0000;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background .16s, color .16s, border-left-color .16s;
  display: block;
}

.ph-drawer-nav a:hover {
  background: var(--surface-page);
}

.ph-drawer-nav a.active {
  color: var(--brand-700);
  background: var(--brand-50);
  border-left-color: var(--accent-500);
}

.ph-drawer-actions {
  border-top: 1px solid var(--border-subtle);
  flex-direction: column;
  gap: 10px;
  padding: 16px 20px;
  display: flex;
}

.ph-drawer-actions .kk-btn {
  justify-content: center;
}

.sec2 {
  max-width: var(--container-max, 1200px);
  margin: 0 auto;
  padding: 56px 24px;
}

.sec2-title {
  text-align: center;
  margin: 0 0 28px;
  position: relative;
}

.sec2-title h2 {
  color: var(--text-heading);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0;
  padding-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  display: inline-block;
  position: relative;
}

.sec2-title h2:after {
  content: "";
  background: var(--accent-500);
  width: 64px;
  height: 3px;
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
}

.sec2-title.left {
  text-align: left;
}

.sec2-title.left h2:after {
  left: 0;
  transform: none;
}

.sec2-title .eyebrow {
  letter-spacing: .18em;
  color: var(--accent-amber);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-mono, monospace);
  margin-bottom: 6px;
  display: block;
}

.sec2-title .eyebrow-row {
  align-items: center;
  gap: 10px;
  display: inline-flex;
}

.sec2-title .eyebrow-row:before {
  content: "";
  background: var(--accent-amber);
  width: 24px;
  height: 1px;
  display: inline-block;
}

.page-hero-band {
  background: var(--surface-muted);
  border-bottom: 1px solid var(--border-subtle);
  padding: 24px 0 28px;
}

.page-hero-inner {
  max-width: var(--container-max, 1200px);
  margin: 0 auto;
  padding: 0 24px;
}

.crumb2 {
  color: var(--text-secondary);
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  font-size: 12px;
  display: flex;
}

.crumb2 a {
  color: var(--text-secondary);
  text-decoration: none;
}

.crumb2 a:hover {
  color: var(--brand-700);
  text-decoration: underline;
}

.crumb2 .sep {
  opacity: .5;
  font-size: 10px;
}

.page-hero-eyebrow {
  font-family: var(--font-mono, ui-monospace, monospace);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-amber);
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 600;
}

.page-hero-band h1 {
  letter-spacing: -.02em;
  color: var(--text-heading);
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
}

.page-hero-band .lead {
  color: var(--text-secondary);
  max-width: 60ch;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.nt {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  color: inherit;
  border-radius: 6px;
  text-decoration: none;
  transition: transform .24s, box-shadow .24s;
  display: block;
  overflow: hidden;
}

.nt:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -8px #0a1f3e2e;
}

.nt .cv {
  aspect-ratio: 4 / 3;
  background: var(--brand-900);
  position: relative;
  overflow: hidden;
}

.nt .cv img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .32s;
  position: absolute;
  inset: 0;
}

.nt:hover .cv img {
  transform: scale(1.05);
}

.nt .cv .date {
  color: #000b33;
  letter-spacing: .04em;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-mono, monospace);
  background: #12b7f4;
  padding: 5px 10px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.nt .nt-body {
  padding: 12px 14px 14px;
}

.nt h4 {
  color: var(--text-heading);
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  transition: color .2s;
}

.nt:hover h4 {
  color: var(--brand-700);
}

.nt .tag {
  background: var(--slate-100);
  color: var(--text-secondary);
  border-radius: 6px;
  align-items: center;
  gap: 5px;
  margin-bottom: 6px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 500;
  transition: background .2s, color .2s;
  display: inline-flex;
}

.nt:hover .tag {
  color: #12b7f4;
  background: #000b33;
}

.hi-grid {
  max-width: var(--container-max, 1200px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 0 auto;
  display: grid;
}

@media (max-width: 1024px) {
  .hi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hi-grid {
    grid-template-columns: 1fr;
  }
}

.hi {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  color: inherit;
  border-radius: 6px;
  text-decoration: none;
  transition: transform .32s cubic-bezier(.2, .7, .2, 1), box-shadow .32s;
  display: block;
  position: relative;
  overflow: hidden;
}

.hi:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -12px #0a1f3e38;
}

.hi:before {
  content: "";
  transform-origin: 0;
  z-index: 3;
  background: #12b7f4;
  height: 3px;
  transition: transform .38s cubic-bezier(.2, .7, .2, 1);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: scaleX(0);
}

.hi:hover:before {
  transform: scaleX(1);
}

.hi .ph {
  aspect-ratio: 16 / 10;
  background: var(--brand-900);
  position: relative;
  overflow: hidden;
}

.hi .ph img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .4s;
  position: absolute;
  inset: 0;
}

.hi:hover .ph img {
  transform: scale(1.04);
}

.hi .ph:after {
  content: "";
  z-index: 1;
  background: linear-gradient(#0000 45%, #0a1f3ecc);
  position: absolute;
  inset: 0;
}

.hi .ph .cat {
  z-index: 2;
  color: var(--brand-700);
  letter-spacing: .08em;
  text-transform: uppercase;
  background: #fffffff2;
  border-radius: 3px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  position: absolute;
  top: 12px;
  left: 12px;
}

.hi .ph .meta {
  z-index: 2;
  color: #fff;
  font-size: 11px;
  font-family: var(--font-mono, monospace);
  opacity: .95;
  gap: 8px;
  display: flex;
  position: absolute;
  bottom: 12px;
  left: 12px;
}

.hi .hi-body {
  padding: 18px 18px 20px;
}

.hi h3 {
  color: var(--text-heading);
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.hi p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.hi .more {
  color: var(--brand-700);
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
}

.hi .industry-badge {
  z-index: 2;
  background: var(--brand-900);
  color: var(--accent-300);
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 3px;
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 700;
  position: absolute;
  top: 10px;
  right: 10px;
}

.hi .tags-row {
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
  display: flex;
}

.cat-pill {
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 3px;
  align-items: center;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  display: inline-flex;
}

.cat-pill.navy {
  background: var(--brand-700);
  color: #fff;
}

.cat-pill.gold {
  background: var(--accent-500);
  color: var(--brand-900);
}

.cat-pill.light {
  color: var(--brand-700);
  background: #fffffff2;
}

.date-chip {
  background: var(--accent-500);
  color: var(--brand-900);
  font-family: var(--font-mono, monospace);
  letter-spacing: .04em;
  white-space: nowrap;
  border-radius: 4px;
  flex-direction: column;
  align-items: center;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  display: inline-flex;
}

.date-chip.block {
  text-align: center;
  min-width: 46px;
  padding: 6px 8px;
}

.date-chip .d {
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  display: block;
}

.date-chip .m {
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .85;
  font-size: 10px;
  font-weight: 700;
}

.tag-chip {
  background: var(--slate-100);
  color: var(--text-secondary);
  border-radius: 6px;
  align-items: center;
  gap: 5px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 500;
  display: inline-flex;
}

.kk-btn.var-on-dark {
  color: #fff;
  background: none;
  border: 1px solid #fff6;
}

.kk-btn.var-on-dark:hover {
  background: #ffffff14;
  border-color: #ffffffb3;
}

.v2-input {
  font-family: var(--font-sans, sans-serif);
  border: 1px solid var(--border-default);
  background: var(--surface-card);
  color: var(--text-primary);
  border-radius: 8px;
  outline: none;
  width: 100%;
  padding: 9px 12px;
  font-size: 13px;
  transition: border-color .12s, box-shadow .12s;
}

.v2-input:focus {
  border-color: var(--info-500);
  box-shadow: var(--shadow-focus-link, 0 0 0 3px #0e60a840);
}

.v2-search {
  position: relative;
}

.v2-search .search-ic {
  width: 14px;
  height: 14px;
  color: var(--text-muted);
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 11px;
  transform: translateY(-50%);
}

.v2-search .v2-input {
  padding-left: 34px;
}

.v2-select {
  font-family: var(--font-sans, sans-serif);
  border: 1px solid var(--border-default);
  background: var(--surface-card);
  color: var(--text-primary);
  cursor: pointer;
  border-radius: 8px;
  outline: none;
  width: 100%;
  padding: 9px 12px;
  font-size: 13px;
  transition: border-color .12s;
}

.v2-select:focus {
  border-color: var(--info-500);
  box-shadow: var(--shadow-focus-link, 0 0 0 3px #0e60a840);
}

.filter-bar {
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  display: flex;
}

.filter-bar .filter-group {
  flex-direction: column;
  flex: 1;
  gap: 4px;
  min-width: 160px;
  display: flex;
}

.filter-bar .filter-label {
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 11px;
  font-weight: 600;
}

.pill-tabs {
  border-bottom: 2px solid var(--border-subtle);
  scrollbar-width: none;
  gap: 0;
  display: flex;
  overflow-x: auto;
}

.pill-tabs::-webkit-scrollbar {
  display: none;
}

.pill-tabs a, .pill-tabs button {
  color: var(--text-secondary);
  white-space: nowrap;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-sans, sans-serif);
  background: none;
  border: none;
  border-bottom: 3px solid #0000;
  align-items: center;
  gap: 6px;
  margin-bottom: -2px;
  padding: 10px 16px;
  text-decoration: none;
  transition: color .12s, border-color .12s;
  display: inline-flex;
}

.pill-tabs a:hover, .pill-tabs button:hover {
  color: var(--brand-700);
}

.pill-tabs a.active, .pill-tabs button.active {
  color: var(--brand-700);
  border-bottom-color: var(--accent-500);
  font-weight: 600;
}

.pill-tabs .tab-count {
  background: var(--slate-100);
  color: var(--text-secondary);
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  min-width: 18px;
  padding: 1px 6px;
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
}

.pill-tabs a.active .tab-count, .pill-tabs button.active .tab-count {
  background: var(--accent-500);
  color: var(--brand-900);
}

.v2-pagination {
  border-top: 1px solid var(--border-subtle);
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 24px 0;
  display: flex;
}

.v2-pagination a, .v2-pagination span {
  min-width: 36px;
  height: 36px;
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  background: var(--surface-card);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 0 8px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background .12s, color .12s, border-color .12s;
  display: inline-flex;
}

.v2-pagination a:hover {
  background: var(--surface-muted);
  color: var(--brand-700);
  border-color: var(--border-default);
}

.v2-pagination a.active, .v2-pagination span.current {
  background: var(--brand-700);
  color: #fff;
  border-color: var(--brand-700);
  font-weight: 600;
}

.v2-pagination span.disabled {
  opacity: .4;
  cursor: default;
  pointer-events: none;
}

.v2-pagination .pg-ellipsis {
  color: var(--text-muted);
  background: none;
  border: none;
}

.foot {
  background: var(--brand-900);
  color: #ffffffb3;
  border-top: 4px solid var(--accent-amber);
  padding: 40px 24px 22px;
  position: relative;
}

.foot-inner {
  max-width: var(--container-max, 1200px);
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin: 0 auto;
  display: grid;
}

.foot h2 {
  color: #fff;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
}

.foot a, .foot li, .foot p {
  color: #ffffffb3;
  font-size: 13px;
  line-height: 1.9;
  text-decoration: none;
}

.foot ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.foot a:hover {
  color: #fff;
}

.foot .brand-name {
  color: #fff;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 700;
}

.foot address {
  color: #ffffffb3;
  font-size: 13px;
  font-style: normal;
  line-height: 1.9;
}

.foot address a {
  color: #3cc4f4;
}

.foot address a:hover {
  color: #fff;
}

.foot-bot {
  max-width: var(--container-max, 1200px);
  color: #ffffff80;
  letter-spacing: .04em;
  border-top: 1px solid #ffffff1a;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin: 30px auto 0;
  padding-top: 18px;
  font-size: 11px;
  display: flex;
}

.foot-bot .powered {
  font-family: var(--font-mono, monospace);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff9;
  font-size: 10.5px;
}

.foot-bot .powered b {
  color: var(--accent-500);
  letter-spacing: .22em;
  margin-left: 4px;
  font-weight: 700;
}

.foot-bot .powered a {
  font-size: inherit;
  color: inherit;
  text-decoration: none;
  display: inline;
}

.foot-bot .powered a:hover b {
  text-decoration: underline;
}

@keyframes hasiFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes hasiFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

[data-reveal] {
  opacity: 0;
  transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1);
  transform: translateY(28px);
}

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

[data-reveal-delay="1"] {
  transition-delay: .12s;
}

[data-reveal-delay="2"] {
  transition-delay: .24s;
}

[data-reveal-delay="3"] {
  transition-delay: .36s;
}

[data-reveal-delay="4"] {
  transition-delay: .48s;
}

@media (max-width: 768px) {
  .util, .ph2 .ph-nav-desktop, .ph2 .ph-actions {
    display: none;
  }

  .ph-mobile-actions, .ph-burger {
    display: inline-flex;
  }

  .ph2 .ph-inner {
    gap: 12px;
    padding: 0 16px;
  }

  .foot {
    padding: 28px 20px 18px;
  }

  .foot-inner {
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
  }

  .foot-col-hide-mobile {
    display: none;
  }

  .foot h2 {
    margin-bottom: 8px;
  }

  .foot a, .foot li, .foot p, .foot address {
    font-size: 12.5px;
    line-height: 1.6;
  }

  .foot .brand-name {
    margin-bottom: 4px;
    font-size: 13px;
  }

  .foot-bot {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-top: 18px;
    padding-top: 12px;
    font-size: 10px;
  }

  .util-inner {
    flex-wrap: wrap;
    gap: 10px;
    padding: 6px 16px;
  }

  .util .util-links {
    display: none;
  }

  .page-hero-band h1 {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .foot-inner {
    grid-template-columns: 1fr 1fr;
    gap: 16px 12px;
  }
}

.registration-form-wrap {
  max-width: var(--container-max, 1200px);
  margin: 0 auto;
  padding: 32px 32px 48px;
}

.reg-actions {
  border-top: 1px solid var(--border-subtle);
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 16px;
  display: flex;
}

.reg-actions-right {
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
  display: flex;
}

.reg-step-counter {
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 12px;
}

.reg-actions-back, .reg-actions-next, .reg-actions-skip {
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .registration-form-wrap {
    padding: 16px 12px 40px;
  }
}

@media (max-width: 480px) {
  .registration-form-wrap {
    padding: 12px 8px 32px;
  }

  .reg-actions {
    flex-wrap: wrap;
    gap: 10px 8px;
  }

  .reg-actions-right {
    display: contents;
  }

  .reg-step-counter {
    display: none;
  }

  .reg-actions-back, .reg-actions-next {
    min-height: 44px;
    padding: 10px 14px;
    font-size: 14px;
  }

  .reg-actions-skip {
    flex: 100%;
    order: 3;
    min-height: 44px;
    padding: 10px 14px;
    font-size: 14px;
  }

  .registration-form-wrap .card-pad {
    padding: 14px;
  }
}

.hero-split {
  background: radial-gradient(700px 460px at 78% 18%, #38bdf829 0%, #0000 60%), radial-gradient(600px 380px at 88% 92%, #12b7f41a 0%, #0000 60%), linear-gradient(135deg, #000b33 0%, #001d76 55%, #0236c8 100%);
  align-items: center;
  min-height: 513px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-split:before {
  content: "";
  pointer-events: none;
  background-image: linear-gradient(to right, #ffffff0a 1px, #0000 1px), linear-gradient(#ffffff0a 1px, #0000 1px);
  background-size: 40px 40px;
  position: absolute;
  inset: 0;
}

.hero-split-inner {
  z-index: 1;
  max-width: var(--container-max, 1200px);
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 360px);
  align-items: center;
  gap: 56px;
  width: 100%;
  margin: 0 auto;
  padding: 56px 24px;
  display: grid;
  position: relative;
}

.hero-split-brand {
  color: #fff;
  animation: .7s cubic-bezier(.2, .7, .2, 1) both hasiFadeUp;
}

.hero-split-eyebrow {
  font-family: var(--font-mono, ui-monospace, monospace);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-500);
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
}

.hero-split-brand h1 {
  letter-spacing: -.02em;
  color: #fff;
  max-width: 20ch;
  margin: 0 0 20px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
}

.hero-split-brand p {
  color: #ffffffc7;
  max-width: 56ch;
  margin: 0 0 32px;
  font-size: 16px;
  line-height: 1.6;
}

.hero-split-ctas {
  flex-wrap: wrap;
  gap: 12px;
  display: flex;
}

.hero-split-aside {
  animation: .7s cubic-bezier(.2, .7, .2, 1) .2s both hasiFadeUp;
}

.hero-news-card {
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  background: #ffffff0f;
  border: 1px solid #ffffff1f;
  border-radius: 12px;
  padding: 14px;
  font-size: 13px;
  position: relative;
}

.hero-news-pill {
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent-500);
  background: #12b7f41f;
  border: 1px solid #12b7f447;
  border-radius: 999px;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
}

.hero-news-pill .dot {
  background: var(--accent-500);
  border-radius: 50%;
  width: 6px;
  height: 6px;
  animation: 1.8s ease-in-out infinite hasiPulse;
}

@keyframes hasiPulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .4;
  }
}

.hero-news-link {
  color: inherit;
  text-decoration: none;
  display: block;
}

.hero-news-cover {
  aspect-ratio: 16 / 9;
  background: #00000040;
  border-radius: 8px;
  width: 100%;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}

.hero-news-link h3 {
  color: #fff;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  display: -webkit-box;
  overflow: hidden;
}

.hero-news-link p {
  color: #ffffffad;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0 0 10px;
  font-size: 12.5px;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
}

.hero-news-more {
  color: var(--accent-500);
  text-transform: uppercase;
  letter-spacing: .04em;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
}

.hero-news-controls {
  border-top: 1px solid #ffffff1a;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding-top: 14px;
  display: flex;
}

.hero-news-arrow {
  color: #fff;
  cursor: pointer;
  background: #ffffff14;
  border: 1px solid #ffffff2e;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  transition: background .18s, color .18s, border-color .18s;
  display: inline-flex;
}

.hero-news-arrow:hover {
  background: var(--accent-500);
  color: #000b33;
  border-color: var(--accent-500);
}

.hero-news-dots {
  gap: 6px;
  display: flex;
}

.hero-news-dots button {
  cursor: pointer;
  background: #ffffff40;
  border: 0;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  padding: 0;
  transition: background .24s, width .24s;
}

.hero-news-dots button.on {
  background: var(--accent-500);
  border-radius: 4px;
  width: 22px;
}

@media (max-width: 1024px) {
  .hero-split {
    min-height: auto;
  }

  .hero-split-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 24px;
  }

  .hero-split-brand h1 {
    font-size: 36px;
  }
}

@media (max-width: 640px) {
  .hero-split-inner {
    padding: 32px 18px;
  }

  .hero-split-brand h1 {
    max-width: none;
    font-size: 28px;
  }

  .hero-split-brand p {
    font-size: 14.5px;
  }

  .hero-split-ctas .kk-btn {
    flex: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-split-brand, .hero-split-aside, .hero-news-pill .dot {
    animation: none;
  }
}

.mission {
  background: linear-gradient(180deg, #fff 0%, var(--surface-page) 100%);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 56px;
}

.mission-grid {
  max-width: var(--container-max, 1200px);
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
}

.miss {
  border: 1px solid var(--border-subtle);
  border-top: 3px solid var(--accent-500);
  background: #fff;
  border-radius: 6px;
  padding: 24px;
  transition: transform .32s cubic-bezier(.2, .7, .2, 1), box-shadow .32s, border-top-color .32s;
  position: relative;
  overflow: hidden;
}

.miss:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px -10px #0a1f3e2e;
}

.miss:after {
  content: "";
  transform-origin: center;
  background: #12b7f4;
  width: 40px;
  height: 40px;
  transition: transform .36s cubic-bezier(.2, .7, .2, 1);
  position: absolute;
  top: -20px;
  right: -20px;
  transform: rotate(45deg)scale(0);
}

.miss:hover:after {
  transform: rotate(45deg)scale(1);
}

.miss .lbl {
  letter-spacing: .12em;
  color: var(--accent-amber);
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
}

.miss h3 {
  color: var(--text-heading);
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
}

.miss p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.slogan {
  color: #fff;
  background: #000b33;
  padding: 36px 0;
  position: relative;
}

.slogan:before, .slogan:after {
  content: "";
  background: linear-gradient(90deg, #0000, #12b7f4 20% 80%, #0000) 0 0 / 200% 100%;
  height: 3px;
  animation: 6s linear infinite hasiShimmer;
  position: absolute;
  left: 0;
  right: 0;
}

.slogan:before {
  top: 0;
}

.slogan:after {
  bottom: 0;
}

@keyframes hasiShimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.slogan-inner {
  max-width: var(--container-max, 1200px);
  text-align: center;
  margin: 0 auto;
  padding: 0 24px;
}

.slogan .lbl {
  letter-spacing: .18em;
  color: #3cc4f4;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-mono, monospace);
}

.slogan h2 {
  letter-spacing: .04em;
  color: #fff;
  margin: 8px 0 0;
  font-size: 34px;
  font-weight: 700;
}

.slogan h2 b {
  background: linear-gradient(90deg, #12b7f4 0%, #6fd5f6 50%, #12b7f4 100%) 0 0 / 200% 100%;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: 4s ease-in-out infinite hasiGoldShift;
}

@keyframes hasiGoldShift {
  0%, 100% {
    background-position: 0%;
  }

  50% {
    background-position: 100%;
  }
}

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

.timeline {
  background: var(--brand-900);
  color: #fff;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.timeline:before {
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, #12b7f414 0%, #0000 70%);
  width: 400px;
  height: 400px;
  position: absolute;
  top: -100px;
  left: -100px;
}

.timeline:after {
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, #12b7f40f 0%, #0000 70%);
  width: 500px;
  height: 500px;
  position: absolute;
  bottom: -100px;
  right: -100px;
}

.tl-inner {
  max-width: var(--container-max, 1200px);
  z-index: 2;
  margin: 0 auto;
  position: relative;
}

.tl-eyebrow {
  font-family: var(--font-mono, monospace);
  letter-spacing: .22em;
  color: #12b7f4;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  display: block;
}

.tl-h2 {
  color: #fff;
  letter-spacing: -.01em;
  margin: 8px 0;
  font-size: 32px;
  font-weight: 700;
}

.tl-sub {
  color: #ffffffa6;
  max-width: 60ch;
  margin: 0 0 44px;
  font-size: 15px;
}

.tl-track {
  border-left: 1px dashed #12b7f44d;
  padding-left: 32px;
  position: relative;
}

.tl-step {
  padding-bottom: 32px;
  transition: opacity .28s;
  position: relative;
}

.tl-step:last-child {
  padding-bottom: 0;
}

.tl-step:before {
  content: "";
  background: var(--brand-900);
  border: 2px solid #12b7f4;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  transition: background .28s, transform .28s;
  position: absolute;
  top: 6px;
  left: -39px;
}

.tl-step:hover:before {
  background: #12b7f4;
  transform: scale(1.3);
}

.tl-year {
  font-family: var(--font-mono, monospace);
  color: #12b7f4;
  letter-spacing: .06em;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 700;
}

.tl-title {
  color: #fff;
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
}

.tl-desc {
  color: #ffffffb3;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.stats2 {
  color: #fff;
  background: linear-gradient(135deg, #000b33 0%, #001d76 100%);
  padding: 56px 24px;
  position: relative;
}

.stats2:before {
  content: "";
  pointer-events: none;
  background-image: linear-gradient(#ffffff0a 1px, #0000 1px), linear-gradient(90deg, #ffffff0a 1px, #0000 1px);
  background-size: 48px 48px;
  position: absolute;
  inset: 0;
}

.stats2-inner:after {
  content: "";
  pointer-events: none;
  background: #12b7f4;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  animation: 4s ease-in-out infinite hasiFloat;
  position: absolute;
  top: 20px;
  right: 40px;
  box-shadow: 60px 80px #12b7f4, -120px 40px #12b7f480, 200px 120px #12b7f466;
}

@keyframes hasiFloat {
  0%, 100% {
    opacity: .4;
    transform: translateY(0);
  }

  50% {
    opacity: .7;
    transform: translateY(-12px);
  }
}

.stats2-inner {
  max-width: var(--container-max, 1200px);
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 0 auto;
  display: grid;
  position: relative;
}

.s2 {
  text-align: center;
  border-left: 1px solid #ffffff1a;
  padding: 14px 10px;
  transition: transform .32s;
  position: relative;
}

.s2:first-child {
  border-left: 0;
}

.s2:hover {
  transform: translateY(-3px);
}

.s2 .n {
  letter-spacing: -.02em;
  font-feature-settings: "tnum";
  background: linear-gradient(#6fd5f6 0%, #12b7f4 60%, #0e94c7 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 54px;
  font-weight: 800;
  line-height: 1;
  transition: filter .32s;
  display: inline-block;
}

.s2:hover .n {
  filter: drop-shadow(0 4px 16px #12b7f459);
}

.s2 .l1 {
  color: #fff;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
}

.s2 .l2 {
  color: #ffffffb3;
  margin-top: 3px;
  font-size: 12px;
}

.partners-section {
  background: #fff;
  padding-top: 48px;
  padding-bottom: 12px;
}

.partners-section-head {
  padding: 0 24px 4px;
}

.partners-marquee {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: #fff;
  padding: 32px 0;
  overflow: hidden;
}

.partners-marquee .track {
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: 38s linear infinite hasiMarquee;
  display: flex;
}

@keyframes hasiMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-25% - 15px));
  }
}

.partners-marquee:hover .track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .partners-marquee .track {
    animation: none;
  }
}

.partners-marquee .track img {
  opacity: .55;
  filter: grayscale();
  width: auto;
  height: 42px;
  transition: opacity .24s, filter .24s;
}

.partners-marquee .track img:hover {
  opacity: 1;
  filter: grayscale(0);
}

.about-body {
  color: var(--text-primary);
  flex-direction: column;
  gap: 40px;
  padding: 56px 24px 72px;
  display: flex;
}

.about-section {
  flex-direction: column;
  gap: 14px;
  display: flex;
}

.about-section-title {
  color: var(--text-heading);
  border-bottom: 2px solid var(--accent-amber);
  align-self: flex-start;
  margin: 0;
  padding-bottom: 10px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
}

.about-section p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}

.about-section ul {
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
  display: flex;
}

.about-section li {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
}

.about-section li::marker {
  color: var(--accent-amber);
}

.about-section li strong {
  color: var(--text-heading);
  font-weight: 600;
}

@media (max-width: 767px) {
  .about-body {
    gap: 32px;
    padding: 36px 16px 48px;
  }

  .about-section-title {
    font-size: 22px;
  }

  .about-section p, .about-section li {
    font-size: 15px;
  }
}

.cta-band {
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
  background: #fff;
  padding: 64px 24px;
}

.cta-band-inner {
  max-width: 720px;
  margin: 0 auto;
}

.cta-band .eyebrow {
  letter-spacing: .18em;
  color: var(--accent-amber);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-mono, monospace);
  margin-bottom: 10px;
  display: block;
}

.cta-band h2 {
  color: var(--text-heading);
  margin: 0 0 12px;
  font-size: 30px;
  font-weight: 700;
}

.cta-band .muted {
  color: var(--text-secondary);
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.65;
}

.cta-band-btns {
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  display: flex;
}

.cta-band .kk-btn.var-accent.size-lg {
  transition: transform .24s cubic-bezier(.2, .7, .2, 1), box-shadow .24s;
}

.cta-band .kk-btn.var-accent.size-lg:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px #12b7f466;
}

.foot-photo {
  background: #000b33;
  height: 220px;
  position: relative;
  overflow: hidden;
}

.foot-photo img {
  object-fit: cover;
  opacity: .55;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.foot-photo:after {
  content: "";
  background: linear-gradient(#0a1f3e66, #0a1f3ed9);
  position: absolute;
  inset: 0;
}

.foot-photo .ph-cap {
  text-align: center;
  color: #fff;
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.foot-photo .ph-cap .lbl {
  letter-spacing: .18em;
  color: #12b7f4;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-mono, monospace);
  display: block;
}

.foot-photo .ph-cap h3 {
  color: #fff;
  letter-spacing: .04em;
  margin: 6px 0 0;
  font-size: 22px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .banner {
    height: 380px;
  }

  .banner .cap h2 {
    font-size: 24px;
  }

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

  .slogan h2 {
    font-size: 22px;
  }

  .news-list, .stats2-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .s2 {
    border-top: 1px solid #ffffff1a;
    border-left: 0;
  }

  .s2:nth-child(odd) {
    border-left: 0;
  }

  .tl-track {
    padding-left: 20px;
  }

  .cta-band {
    padding: 40px 24px;
  }

  .cta-band h2 {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .news-list, .stats2-inner {
    grid-template-columns: 1fr;
  }

  .banner .arrow {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .banner .slide img.photo, .banner .cap > *, .slogan:before, .slogan:after, .slogan h2 b, .stats2-inner:after {
    animation: none;
  }
}

.v2-empty {
  text-align: center;
  color: var(--text-secondary);
  padding: 48px 24px;
  font-size: 15px;
  line-height: 1.6;
}

.member-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
  margin-bottom: 32px;
  display: grid;
}

@media (max-width: 1024px) {
  .member-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .member-grid {
    grid-template-columns: 1fr;
  }

  .v2-pagination {
    gap: 4px;
  }

  .v2-pagination a, .v2-pagination span {
    min-width: 32px;
    height: 32px;
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-bar .filter-group {
    width: 100%;
    max-width: none !important;
  }
}

.article-grid {
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  align-items: start;
  gap: 48px;
  padding-block: 40px 64px;
  display: grid;
}

@media (max-width: 1024px) {
  .article-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.article-meta-row {
  color: var(--text-secondary);
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding-block: 20px 0;
  font-size: 13px;
  display: flex;
}

.article-author {
  color: var(--text-secondary);
  font-size: 13px;
}

.article-cover {
  aspect-ratio: 16 / 9;
  background: var(--surface-muted);
  border-radius: 12px;
  width: 100%;
  margin-bottom: 32px;
  overflow: hidden;
}

.article-cover-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.article-lead {
  color: var(--text-heading);
  border-left: 3px solid var(--accent-500);
  margin: 0 0 24px;
  padding: 4px 0 4px 14px;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.6;
}

.article-body {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.75;
}

.article-body h1, .article-body h2, .article-body h3, .article-body h4, .article-body h5, .article-body h6 {
  color: var(--text-strong);
  margin-top: 1.75em;
  margin-bottom: .5em;
  font-weight: 700;
  line-height: 1.3;
}

.article-body h1 {
  font-size: 1.75rem;
}

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

.article-body h3 {
  font-size: 1.2rem;
}

.article-body h4 {
  font-size: 1.05rem;
}

.article-body p {
  margin-top: 0;
  margin-bottom: 1.1em;
}

.article-body ul, .article-body ol {
  margin-bottom: 1.1em;
  padding-left: 1.5rem;
}

.article-body li {
  margin-bottom: .4em;
}

.article-body a {
  color: var(--brand-600);
  text-underline-offset: 3px;
  text-decoration: underline;
}

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

.article-body img {
  object-fit: contain;
  border-radius: 8px;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 600px;
  margin: 1em auto;
  display: block;
}

.article-body blockquote {
  border-left: 4px solid var(--accent-amber-line);
  background: var(--surface-muted);
  color: var(--text-secondary);
  border-radius: 0 8px 8px 0;
  margin-left: 0;
  padding: 12px 20px;
  font-style: italic;
}

.article-body code {
  background: var(--surface-muted);
  color: var(--text-strong);
  border-radius: 4px;
  padding: 2px 6px;
  font-family: JetBrains Mono, Fira Code, monospace;
  font-size: .875em;
}

.article-body pre {
  background: var(--brand-900);
  color: #e2e8f0;
  border-radius: 10px;
  margin-bottom: 1.25em;
  padding: 20px 24px;
  font-size: .875rem;
  line-height: 1.6;
  overflow-x: auto;
}

.article-body pre code {
  color: inherit;
  background: none;
  padding: 0;
}

.related-sidebar {
  flex-direction: column;
  gap: 16px;
  padding-top: 4px;
  display: flex;
}

.related-list {
  flex-direction: column;
  gap: 16px;
  display: flex;
}

.related-empty {
  color: var(--text-muted);
  font-size: 13px;
  font-style: italic;
}

.member-detail-hero {
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  margin-bottom: 32px;
  overflow: hidden;
}

.mdh-banner {
  background: linear-gradient(135deg, var(--brand-50), var(--brand-100));
  background-position: center;
  background-size: cover;
  height: 620px;
  position: relative;
}

.mdh-logo {
  width: 80px;
  height: 80px;
  color: var(--brand-700);
  background: #fff center / cover no-repeat;
  border: 3px solid #fff;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: 800;
  display: flex;
  position: absolute;
  bottom: -40px;
  left: 24px;
  overflow: hidden;
  box-shadow: 0 4px 12px #0000001a;
}

.mdh-body {
  padding: 52px 24px 24px;
}

.mdh-name-row {
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  display: flex;
}

.mdh-name {
  color: var(--text-strong);
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
}

.mdh-intro {
  color: var(--text-secondary);
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.6;
}

.mdh-owner {
  color: var(--text-body);
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 600;
}

.mdh-cta {
  display: inline-flex;
}

.member-detail-grid {
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  align-items: start;
  gap: 32px;
  padding-bottom: 64px;
  display: grid;
}

@media (max-width: 1024px) {
  .member-detail-grid {
    grid-template-columns: 1fr;
  }
}

.member-detail-main, .member-detail-side {
  flex-direction: column;
  gap: 32px;
  display: flex;
}

.md-section {
  flex-direction: column;
  gap: 14px;
  display: flex;
}

.md-dl {
  grid-template-columns: auto 1fr;
  gap: 8px 20px;
  font-size: 13px;
  display: grid;
}

.md-dl dt {
  color: var(--text-muted);
  white-space: nowrap;
}

.md-dl dd {
  color: var(--text-body);
  min-width: 0;
  margin: 0;
}

.md-empty {
  color: var(--text-muted);
  font-size: 13px;
  font-style: italic;
}

.md-tag-list {
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.md-file-list {
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  font-size: 13px;
  list-style: none;
  display: flex;
}

.contact-grid {
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 48px;
  padding-block: 40px 64px;
  display: grid;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.contact-dl {
  flex-direction: column;
  gap: 20px;
  margin: 0;
  padding: 0;
  display: flex;
}

.contact-dl-row {
  flex-direction: column;
  gap: 4px;
  display: flex;
}

.contact-dl-row dt {
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 700;
}

.contact-dl-row dd {
  color: var(--text-body);
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

.contact-link {
  color: var(--brand-600);
  text-underline-offset: 3px;
  text-decoration: underline;
}

.contact-link:hover {
  color: var(--brand-700);
}

.hero-banner-slider {
  aspect-ratio: 16 / 9;
  background: #000b33;
  width: 100%;
  min-height: 304px;
  max-height: 684px;
  position: relative;
  overflow: hidden;
}

.hero-banner-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s;
  position: absolute;
  inset: 0;
}

.hero-banner-slide.is-active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.hero-banner-slide img, .hero-banner-slide a {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-banner-slide img {
  object-fit: contain;
}

.hero-banner-arrow {
  z-index: 3;
  color: #fff;
  cursor: pointer;
  background: #00000073;
  border: 1px solid #fff3;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  transition: background .2s;
  display: inline-flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.hero-banner-arrow:hover, .hero-banner-arrow:focus-visible {
  outline-offset: 2px;
  background: #000000b3;
  outline: 2px solid #38bdf899;
}

.hero-banner-arrow.prev {
  left: 1rem;
}

.hero-banner-arrow.next {
  right: 1rem;
}

.hero-banner-dots {
  z-index: 3;
  justify-content: center;
  gap: .5rem;
  display: flex;
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
}

.hero-banner-dot {
  cursor: pointer;
  background: #ffffff73;
  border: none;
  border-radius: 999px;
  width: 10px;
  height: 10px;
  padding: 0;
  transition: background .2s, transform .2s;
}

.hero-banner-dot.is-active {
  background: #fff;
  transform: scale(1.2);
}

.hero-banner-dot:focus-visible {
  outline-offset: 3px;
  outline: 2px solid #38bdf8cc;
}

@media (prefers-reduced-motion: reduce) {
  .hero-banner-slide {
    transition: none;
  }
}

@media (max-width: 640px) {
  .hero-banner-slider {
    aspect-ratio: 16 / 9;
    min-height: 200px;
  }

  .hero-banner-arrow {
    width: 36px;
    height: 36px;
  }
}

.scroll-hint-wrap {
  justify-content: center;
  padding: 4px 0 12px;
  transition: opacity .25s;
  display: flex;
}

.scroll-hint-wrap.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.scroll-hint-wrap.is-overlay {
  z-index: 4;
  background: #fff;
  margin-top: 4px;
  padding: 6px 0 18px;
  position: relative;
}

.scroll-hint-wrap.is-overlay + .mission {
  border-top: none;
}

.scroll-hint-wrap.is-overlay:hover {
  opacity: 1;
}

.scroll-hint-wrap.is-overlay .scroll-hint-btn {
  color: var(--text-muted, #94a3b8);
  box-shadow: none;
  opacity: .55;
  background: none;
  border-radius: 999px;
  padding: 4px 8px;
  transition: opacity .2s, color .15s;
}

.scroll-hint-wrap.is-overlay .scroll-hint-btn:hover, .scroll-hint-wrap.is-overlay .scroll-hint-btn:focus-visible {
  color: var(--text-secondary, #475569);
  opacity: 1;
  background: none;
}

.scroll-hint-wrap.is-overlay .scroll-hint-mouse {
  border-width: 1.25px;
  border-radius: 8px;
  width: 16px;
  height: 24px;
}

.scroll-hint-wrap.is-overlay .scroll-hint-wheel {
  width: 2px;
  height: 5px;
  top: 4px;
}

.scroll-hint-btn {
  color: var(--text-muted, #64748b);
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  padding: 4px 8px;
  transition: color .15s;
  display: inline-flex;
}

.scroll-hint-btn:hover, .scroll-hint-btn:focus-visible {
  color: var(--brand-700, #1d4ed8);
  outline: none;
}

.scroll-hint-btn:focus-visible {
  outline: 2px solid var(--brand-400, #60a5fa);
  outline-offset: 3px;
}

.scroll-hint-mouse {
  border: 1.5px solid;
  border-radius: 10px;
  width: 20px;
  height: 30px;
  display: inline-block;
  position: relative;
}

.scroll-hint-wheel {
  background: currentColor;
  border-radius: 2px;
  width: 2.5px;
  height: 6px;
  animation: 1.6s ease-in-out infinite scrollHintWheel;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes scrollHintWheel {
  0% {
    opacity: 0;
    transform: translate(-50%);
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 0;
    transform: translate(-50%, 10px);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-hint-wheel {
    animation: none;
  }
}

.guide-detail-layout {
  max-width: var(--container-max, 1320px);
  grid-template-columns: 240px minmax(0, 1fr);
  align-items: start;
  gap: 32px;
  margin: 0 auto;
  padding: 28px 24px 16px;
  display: grid;
}

.guide-detail-aside {
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  max-height: calc(100vh - 104px);
  position: sticky;
  top: 88px;
  overflow-y: auto;
}

.guide-rail-stack {
  flex-direction: column;
  gap: 16px;
  display: flex;
}

.guide-rail-card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg, 12px);
  padding: 16px;
}

.guide-rail-head {
  border-bottom: 1px solid var(--border-subtle);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-heading);
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
}

.guide-rail-group {
  margin-bottom: 6px;
}

.guide-rail-group:last-child {
  margin-bottom: 0;
}

.guide-rail-title {
  cursor: pointer;
  letter-spacing: .12em;
  text-transform: uppercase;
  width: 100%;
  color: var(--text-secondary);
  background: none;
  border: 0;
  align-items: center;
  gap: 8px;
  margin: 0 0 6px;
  padding: 6px 2px;
  font-size: 11px;
  font-weight: 700;
  transition: color .14s;
  display: flex;
}

.guide-rail-title:hover {
  color: var(--text-secondary);
}

.guide-rail-title-text {
  text-align: left;
  flex: auto;
}

.guide-rail-count {
  border-radius: var(--radius-pill, 999px);
  background: var(--surface-muted);
  min-width: 20px;
  color: var(--text-secondary);
  letter-spacing: 0;
  text-align: center;
  flex: none;
  padding: 1px 6px;
  font-size: 10px;
}

.guide-rail-chevron {
  color: var(--text-muted);
  flex: none;
  transition: transform .16s;
}

.guide-rail-chevron.is-open {
  transform: rotate(180deg);
}

.guide-rail-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-rail-link {
  border-radius: var(--radius-sm, 6px);
  color: var(--text-secondary);
  border-left: 2px solid #0000;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  font-size: 14px;
  text-decoration: none;
  transition: background .14s, color .14s;
  display: flex;
}

.guide-rail-dot {
  border-radius: var(--radius-pill, 999px);
  background: var(--text-muted);
  flex: none;
  width: 6px;
  height: 6px;
  transition: background .14s;
}

.guide-rail-link:hover {
  background: var(--surface-muted);
  color: var(--text-primary);
}

.guide-rail-link:hover .guide-rail-dot {
  background: var(--text-secondary);
}

.guide-rail-link.is-active {
  background: var(--surface-muted);
  color: var(--text-heading);
  border-left-color: var(--accent-500);
  font-weight: 600;
}

.guide-rail-link.is-active .guide-rail-dot {
  background: var(--accent-500);
}

.guide-support-card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg, 12px);
  padding: 16px;
}

.guide-support-title {
  color: var(--text-heading);
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
}

.guide-support-body {
  color: var(--text-secondary);
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.6;
}

.guide-support-btn {
  border-radius: var(--radius-md, 8px);
  border: 1px solid var(--accent-500);
  width: 100%;
  color: var(--accent-600);
  background: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background .14s, color .14s;
  display: inline-flex;
}

.guide-support-btn:hover {
  background: var(--accent-500);
  color: #fff;
}

.guide-article-header {
  border-bottom: 1px solid var(--border-subtle);
  margin: 0 0 24px;
  padding-bottom: 20px;
}

.guide-article-title {
  letter-spacing: -.01em;
  color: var(--text-heading);
  margin: 0 0 8px;
  font-size: 26px;
  font-weight: 800;
}

.guide-article-lead {
  color: var(--text-secondary);
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.guide-steps-heading {
  color: var(--text-heading);
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 700;
}

.guide-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-step {
  border-bottom: 1px solid var(--border-subtle);
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  display: flex;
}

.guide-step:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.guide-step-badge {
  border-radius: var(--radius-pill, 999px);
  background: var(--accent-500);
  color: #fff;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
}

.guide-step-main {
  flex: auto;
  min-width: 0;
}

.guide-step-title {
  color: var(--text-primary);
  margin: 4px 0 8px;
  font-size: 16px;
  font-weight: 700;
}

.guide-step-body p {
  color: var(--text-secondary);
  margin: 0 0 8px;
  font-size: 14.5px;
  line-height: 1.7;
}

.guide-inline-link {
  vertical-align: middle;
  border-radius: var(--radius-pill, 999px);
  background: var(--surface-muted);
  border: 1px solid var(--border-subtle);
  color: var(--accent-600);
  white-space: nowrap;
  align-items: center;
  gap: 5px;
  margin: 0 2px;
  padding: 3px 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background .14s, border-color .14s;
  display: inline-flex;
}

.guide-inline-link:hover {
  background: var(--surface-card);
  border-color: var(--accent-500);
}

.guide-step-figure {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md, 8px);
  background: var(--surface-muted);
  margin: 14px 0 0;
  overflow: hidden;
}

.guide-step-img {
  width: 100%;
  height: auto;
  display: block;
}

.guide-step-links {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  display: flex;
}

.guide-step-link {
  border-radius: var(--radius-pill, 999px);
  background: var(--surface-muted);
  border: 1px solid var(--border-subtle);
  color: var(--accent-600);
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background .14s, border-color .14s;
  display: inline-flex;
}

.guide-step-link:hover {
  background: var(--surface-card);
  border-color: var(--accent-500);
}

.guide-pager {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
  display: grid;
}

.guide-pager-link {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg, 12px);
  background: var(--surface-card);
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  text-decoration: none;
  transition: border-color .16s, box-shadow .16s;
  display: flex;
}

.guide-pager-link:hover {
  border-color: var(--accent-500);
  box-shadow: var(--shadow-sm);
}

.guide-pager-link.is-next {
  text-align: right;
  justify-content: flex-end;
}

.guide-pager-text {
  flex-direction: column;
  min-width: 0;
  display: flex;
}

.guide-pager-dir {
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
}

.guide-pager-name {
  color: var(--text-primary);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
}

@media (max-width: 880px) {
  .guide-detail-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .guide-detail-aside {
    position: static;
  }

  .guide-pager {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=apps_web_src_app_site-public-v2_0545jjq.css.map*/