@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-VariableFont_opsz,wght.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/InterTight-VariableFont_wght.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geist Mono";
  src: url("../fonts/GeistMono-VariableFont_wght.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans";
  src: url("../fonts/NotoSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Naskh Arabic";
  src: url("../fonts/NotoNaskhArabic-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans Devanagari";
  src: url("../fonts/NotoSansDevanagari-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans KR";
  src: url("../fonts/NotoSansKR-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans SC";
  src: url("../fonts/NotoSansSC-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans TC";
  src: url("../fonts/NotoSansTC-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --bg: #040507;
  --surface: #0c1018;
  --surface-2: #0f1420;
  --surface-3: #111725;
  --rule: rgba(255, 255, 255, 0.11);
  --rule-strong: rgba(255, 255, 255, 0.18);
  --text: #f3f1ec;
  --muted: rgba(243, 241, 236, 0.68);
  --muted-2: rgba(243, 241, 236, 0.48);
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --touch: 48px;
  --shell: min(1240px, calc(100vw - 40px));
  --max-copy: 74ch;
  --accent: #d1a27f;
  --accent-soft: rgba(209, 162, 127, 0.16);
  --accent-line: rgba(209, 162, 127, 0.36);
  --font-display: "Inter Tight", "Noto Sans", sans-serif;
  --font-body: "Inter", "Noto Sans", sans-serif;
  --font-ui: "Inter", "Noto Sans", sans-serif;
  --font-mono: "Geist Mono", ui-monospace, monospace;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.03), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
button,
input,
textarea,
select {
  font: inherit;
}
.skip {
  position: absolute;
  left: -9999px;
  top: auto;
}
.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 1000;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 10px;
}
.shell {
  width: var(--shell);
  margin: 0 auto;
}
body.nav-open {
  overflow: hidden;
}
.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(4, 5, 7, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rule);
}
.head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
}
.brand-chip {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  max-width: 280px;
}
.brand-chip img {
  max-height: 38px;
  width: auto;
}
.brand-chip__text {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.08em;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.main-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid transparent;
}
.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current="page"] {
  color: var(--text);
  border-color: var(--accent-line);
  outline: none;
}
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  border: 1px solid var(--rule);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  cursor: pointer;
}
.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: var(--rule-strong);
  outline: none;
}
.nav-drawer {
  display: none;
  border-top: 1px solid var(--rule);
  background: rgba(4, 5, 7, 0.96);
}
.nav-drawer .shell {
  display: grid;
  gap: 8px;
  padding: 18px 0 22px;
}
.nav-drawer a {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  color: var(--text);
  border-bottom: 1px solid var(--rule);
}
.nav-drawer a:last-child {
  border-bottom: 0;
}
.nav-drawer.is-open {
  display: block;
}
.hero-art {
  padding: 26px 0 26px;
}
.hero-art__frame {
  border: 1px solid var(--rule);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #020304;
}
.hero-art__frame img {
  width: 100%;
  height: auto;
  opacity: 0;
  transform: translateY(10px) scale(0.992);
  filter: blur(12px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    filter 0.8s ease;
}
.hero-art__frame img.is-ready {
  opacity: 1;
  transform: none;
  filter: none;
}
.hero-intro {
  padding: 0 0 54px;
}
.hero-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: min(6vw, 68px);
  align-items: start;
}
.eyebrow {
  display: inline-block;
  margin: 0 0 16px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.h1,
.page-title,
.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.h1 {
  font-size: clamp(40px, 5.4vw, 78px);
  line-height: 0.94;
  margin-bottom: 18px;
}
.page-title {
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.02;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1.04;
  margin-bottom: 14px;
}
.lead {
  margin: 0;
  max-width: var(--max-copy);
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--muted);
}
.hero-actions,
.page-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--touch);
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid var(--rule);
  background: rgba(255, 255, 255, 0.02);
  font-size: 12px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  cursor: pointer;
}
.btn:hover,
.btn:focus-visible {
  border-color: var(--rule-strong);
  background: rgba(255, 255, 255, 0.035);
  outline: none;
}
.btn--accent {
  background: var(--accent-soft);
  border-color: var(--accent-line);
  color: var(--text);
}
.hero-panel,
.card,
.image-card,
.boundary-card,
.legal-section,
.page-hero__aside {
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.025),
    rgba(255, 255, 255, 0.01)
  );
  box-shadow: var(--shadow);
}
.hero-panel,
.image-card,
.legal-section,
.page-hero__aside {
  padding: 24px;
}
.hero-panel h2,
.card h3,
.boundary-card h3,
.legal-section h2 {
  margin: 0 0 12px;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.18;
}
.hero-panel ul,
.card ul,
.boundary-card ul,
.legal-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.hero-panel li,
.card li,
.boundary-card li,
.legal-section li {
  padding-top: 12px;
  border-top: 1px solid var(--rule);
  font-size: 15px;
  color: var(--muted);
}
.hero-panel li:first-child,
.card li:first-child,
.boundary-card li:first-child,
.legal-section li:first-child {
  padding-top: 0;
  border-top: 0;
}
.hero-panel p,
.card p,
.boundary-card p,
.legal-section p,
.page-hero__aside p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}
.card-eyebrow,
.section-kicker,
.foot-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.section {
  padding: 56px 0;
  border-top: 1px solid var(--rule);
}
.section-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  gap: min(5vw, 54px);
  align-items: end;
  margin-bottom: 28px;
}
.section-intro {
  margin: 0;
  max-width: 44ch;
  font-size: 16px;
  color: var(--muted);
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}
.card {
  padding: 22px;
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 100%;
}
.card--product {
  position: relative;
  overflow: hidden;
}
.card--product::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.7;
}
.price {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1;
  letter-spacing: 0.02em;
}
.price-note {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.split-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.image-card img {
  width: 100%;
  border-radius: 16px;
  opacity: 0;
  transform: translateY(10px) scale(0.992);
  filter: blur(12px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    filter 0.8s ease;
}
.image-card img.is-ready {
  opacity: 1;
  transform: none;
  filter: none;
}
.page-hero {
  padding: 56px 0 34px;
}
.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.8fr);
  gap: min(5vw, 54px);
  align-items: start;
}
.site-foot {
  padding: 40px 0 54px;
  border-top: 1px solid var(--rule);
  background: rgba(4, 5, 7, 0.88);
}
.foot-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: min(5vw, 54px);
}
.foot-brand {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.02;
  letter-spacing: 0.04em;
}
.foot-copy,
.foot-note,
.foot-end {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  max-width: 72ch;
}
.lead,
.section-intro,
.card p,
.hero-panel p,
.legal-section p,
.page-hero__aside p,
.foot-copy,
.foot-note,
.foot-end {
  overflow-wrap: anywhere;
}
.foot-nav,
.foot-links {
  display: flex;
  gap: 16px 22px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.foot-nav a,
.foot-links a {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.88;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
.foot-nav a:hover,
.foot-links a:hover,
.foot-nav a:focus-visible,
.foot-links a:focus-visible {
  opacity: 1;
  border-color: var(--accent-line);
  outline: none;
}
.not-found {
  padding: 72px 0 96px;
}
.not-found__box {
  max-width: 720px;
}
.hero-panel__title {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 16px;
}
@media (max-width: 1080px) {
  .hero-intro__grid,
  .section-top,
  .page-hero__grid,
  .foot-shell,
  .card-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 860px) {
  .main-nav {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .hero-art {
    padding-top: 18px;
  }
  .shell {
    width: min(100vw - 24px, var(--shell));
  }
}
@media (max-width: 680px) {
  .hero-art__frame {
    border-radius: 20px;
  }
  .hero-intro {
    padding-bottom: 42px;
  }
  .hero-panel,
  .image-card,
  .legal-section,
  .page-hero__aside,
  .card {
    padding: 18px;
  }
  .foot-nav,
  .foot-links,
  .hero-actions,
  .page-actions {
    gap: 10px 12px;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
  .h1 {
    font-size: clamp(32px, 10vw, 48px);
  }
  .page-title {
    font-size: clamp(28px, 9vw, 40px);
  }
  .section-title {
    font-size: clamp(24px, 8vw, 34px);
  }
  .lead,
  .section-intro,
  .card p,
  .hero-panel p,
  .legal-section p,
  .page-hero__aside p {
    font-size: 15px;
  }
  .foot-shell {
    gap: 28px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}

/* BLACKBOX SYSTEMS — outcome-led evidentiary infrastructure surface */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.bbs-page {
  background: #060708;
  color: #f4f4f2;
}
.bbs-hero {
  padding: clamp(72px, 10vw, 150px) 0 72px;
  border-bottom: 1px solid var(--rule);
}
.bbs-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: end;
}
.bbs-lockup {
  width: min(780px, 100%);
  height: auto;
  object-fit: contain;
  object-position: left center;
}
.bbs-lede {
  max-width: 720px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.45;
}
.bbs-primary {
  background: #f4f4f2;
  border-color: #f4f4f2;
  color: #08090a;
  letter-spacing: 0.08em;
}
.bbs-primary:hover,
.bbs-primary:focus-visible {
  background: #fff;
  border-color: #fff;
}
.bbs-facts {
  margin: 0;
  border-top: 1px solid var(--rule);
}
.bbs-facts div {
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}
.bbs-facts dt {
  color: var(--muted-2);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.bbs-facts dd {
  margin: 7px 0 0;
  font-size: 15px;
}
.bbs-section {
  padding: clamp(64px, 8vw, 112px) 0;
  border-bottom: 1px solid var(--rule);
}
.bbs-section h2,
.bbs-cta h2 {
  max-width: 780px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.055em;
  text-wrap: balance;
}
.bbs-split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1.15fr);
  gap: clamp(48px, 8vw, 110px);
}
.bbs-copy {
  max-width: 690px;
}
.bbs-copy > p {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 18px;
}
.bbs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
}
.bbs-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  font-weight: 600;
}
.bbs-section--light {
  background: #f2f2ef;
  color: #0a0b0c;
}
.bbs-section--light .section-kicker,
.bbs-section--light p {
  color: #5f6164;
}
.bbs-heading {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 32px;
  margin-bottom: 58px;
}
.bbs-index {
  border-top: 1px solid #c9cac7;
}
.bbs-index article {
  display: grid;
  grid-template-columns: 64px minmax(180px, 0.65fr) minmax(280px, 1fr);
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid #c9cac7;
}
.bbs-index h3,
.bbs-index p {
  margin: 0;
}
.bbs-index span {
  font-variant-numeric: tabular-nums;
  color: #737477;
}
.bbs-instrument {
  border-top: 1px solid var(--rule);
}
.bbs-instrument > div {
  display: grid;
  grid-template-columns: 46px minmax(150px, 0.45fr) 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
}
.bbs-instrument p {
  margin: 0;
  color: var(--muted);
}
.bbs-boundary {
  padding: 18px;
  border-inline-start: 2px solid #f4f4f2;
  color: #f4f4f2 !important;
}
.bbs-cta {
  padding: clamp(72px, 10vw, 140px) 0;
  background: #f2f2ef;
  color: #0a0b0c;
}
.bbs-cta p {
  max-width: 680px;
  color: #5f6164;
  font-size: 18px;
}
.bbs-cta .btn {
  margin-top: 18px;
  background: #0a0b0c;
  border-color: #0a0b0c;
  color: #fff;
}
@media (max-width: 860px) {
  .bbs-hero__grid,
  .bbs-split {
    grid-template-columns: 1fr;
  }
  .bbs-facts {
    margin-top: 24px;
  }
  .bbs-heading {
    display: block;
  }
  .bbs-heading h2 {
    margin-top: 14px;
  }
  .bbs-index article {
    grid-template-columns: 42px 1fr;
  }
  .bbs-index article p {
    grid-column: 2;
  }
  .bbs-instrument > div {
    grid-template-columns: 38px 1fr;
  }
  .bbs-instrument p {
    grid-column: 2;
  }
}

/* AdSense review hardening: persistent visible footer + required pages */
.adsense-review-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.adsense-review-nav a {
  color: rgba(245, 247, 255, 0.82);
  text-decoration: none;
  overflow-wrap: anywhere;
}
.adsense-review-nav a:hover,
.adsense-review-nav a:focus {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.adsense-legal-page {
  min-height: 100vh;
  background: #030407;
  color: #f5f7fb;
}
.adsense-legal-page main {
  width: min(1040px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 120px 0 96px;
}
.adsense-legal-page .legal-kicker {
  display: block;
  margin-bottom: 18px;
  color: rgba(245, 247, 255, 0.58);
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.adsense-legal-page h1 {
  margin: 0 0 24px;
  max-width: 880px;
  font-size: clamp(42px, 8vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}
.adsense-legal-page .legal-lede {
  max-width: 760px;
  margin: 0 0 56px;
  color: rgba(245, 247, 255, 0.74);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.55;
}
.adsense-legal-page .legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.adsense-legal-page .legal-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.055),
    rgba(255, 255, 255, 0.025)
  );
}
.adsense-legal-page .legal-card h2 {
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.adsense-legal-page .legal-card p,
.adsense-legal-page .legal-card li {
  color: rgba(245, 247, 255, 0.72);
  font-size: 16px;
  line-height: 1.75;
}
.adsense-legal-page .legal-card ul {
  margin: 10px 0 0;
  padding-left: 20px;
}
.adsense-legal-page a {
  color: #f5f7fb;
}
@media (max-width: 720px) {
  .adsense-review-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
    font-size: 12px;
    letter-spacing: 0.06em;
  }
  .adsense-legal-page main {
    width: min(100% - 32px, 1040px);
    padding: 92px 0 72px;
  }
  .adsense-legal-page .legal-grid {
    grid-template-columns: 1fr;
  }
  .adsense-legal-page .legal-card {
    padding: 22px;
  }
}

/* Dev008 editorial hierarchy, icon menu, and mobile containment pass */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  text-wrap: pretty;
}

:lang(ar),
:lang(fa) {
  font-family: "Noto Naskh Arabic", "Noto Sans", sans-serif;
}

:lang(hi) {
  font-family: "Noto Sans Devanagari", "Noto Sans", sans-serif;
}

:lang(ja) {
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
}

:lang(ko) {
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
}

:lang(zh-Hans),
:lang(zh-CN) {
  font-family: "Noto Sans SC", "Noto Sans", sans-serif;
}

:lang(zh-Hant),
:lang(zh-TW) {
  font-family: "Noto Sans TC", "Noto Sans", sans-serif;
}
body.nav-open {
  overflow: hidden;
  touch-action: none;
}
main,
header,
footer,
section,
.shell,
.site-head,
.site-foot {
  max-width: 100%;
}
* {
  min-width: 0;
}
pre,
code {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.brand-chip img {
  max-height: 46px;
  width: auto;
  object-fit: contain;
}
.hero-art {
  padding: clamp(24px, 3.5vw, 46px) 0 clamp(34px, 4vw, 64px);
}
.hero-art .shell {
  width: min(1500px, calc(100vw - 40px));
}
.hero-art__frame {
  min-height: clamp(520px, 55vw, 760px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: clamp(18px, 2vw, 30px);
}
.hero-art__frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center center;
}
.hero-intro {
  padding-top: clamp(10px, 2vw, 28px);
}
.h1,
.page-title,
.section-title {
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.lead,
.section-intro,
.card p,
.hero-panel p,
.legal-section p,
.page-hero__aside p,
.foot-copy,
.foot-note,
.foot-end {
  overflow-wrap: anywhere;
  word-break: normal;
  text-wrap: pretty;
}
.card,
.hero-panel,
.image-card,
.legal-section,
.page-hero__aside {
  min-width: 0;
  overflow: hidden;
}
.card-grid,
.split-grid,
.hero-intro__grid,
.page-hero__grid,
.section-top,
.foot-shell {
  min-width: 0;
}
.nav-drawer .shell a,
.side-drawer-nav .drawer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.menu-item-icon {
  flex: 0 0 auto;
  display: inline-flex;
  width: 18px;
  height: 18px;
  color: var(--accent);
  opacity: 0.82;
}
.menu-item-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}
.menu-item-label {
  min-width: 0;
  overflow-wrap: anywhere;
}
.nav-drawer a:hover .menu-item-icon,
.nav-drawer a:focus-visible .menu-item-icon,
.side-drawer-nav a:hover .menu-item-icon,
.side-drawer-nav a:focus-visible .menu-item-icon {
  opacity: 1;
  color: var(--text);
}
.main-nav a,
.head-links a {
  white-space: normal;
  text-align: center;
}
@media (max-width: 1080px) {
  .hero-art__frame {
    min-height: clamp(430px, 58vw, 620px);
  }
}
@media (max-width: 860px) {
  .hero-art .shell {
    width: min(100% - 24px, 1500px);
  }
  .hero-art {
    padding: 18px 0 32px;
  }
  .hero-art__frame {
    min-height: clamp(360px, 78vw, 520px);
    border-radius: 20px;
  }
  .hero-intro__grid,
  .section-top,
  .page-hero__grid,
  .foot-shell,
  .card-grid,
  .split-grid {
    grid-template-columns: 1fr !important;
  }
  .nav-drawer,
  .side-drawer {
    max-width: 100vw;
    overflow-x: hidden;
  }
  .nav-drawer .shell {
    width: min(100% - 32px, var(--shell));
  }
  .nav-drawer .shell a,
  .side-drawer-nav .drawer-link {
    font-size: 16px;
    line-height: 1.35;
    min-height: 48px;
  }
}
@media (max-width: 680px) {
  .shell {
    width: min(100% - 24px, var(--shell));
  }
  .hero-art__frame {
    min-height: clamp(330px, 86vw, 460px);
  }
  .brand-chip img {
    max-height: 36px;
  }
  .main-nav a,
  .head-links a {
    font-size: 10px;
    letter-spacing: 0.12em;
  }
  .h1 {
    font-size: clamp(34px, 11vw, 50px);
    line-height: 0.98;
  }
  .page-title {
    font-size: clamp(30px, 9.5vw, 44px);
    line-height: 1.02;
  }
  .section-title {
    font-size: clamp(25px, 8vw, 36px);
    line-height: 1.08;
  }
  .lead,
  .section-intro,
  .card p,
  .hero-panel p,
  .legal-section p,
  .page-hero__aside p {
    font-size: 15px;
    line-height: 1.72;
  }
  .card,
  .hero-panel,
  .image-card,
  .legal-section,
  .page-hero__aside {
    padding: 18px;
  }
  .site-foot {
    overflow: hidden;
  }
}

/* premium deployment patch */
:root {
  --accent-rgb: 161, 178, 211;
}
body {
  background:
    radial-gradient(
      circle at top,
      rgba(var(--accent-rgb), 0.1),
      transparent 34%
    ),
    linear-gradient(180deg, #040507 0%, #050608 100%);
}
.site-head {
  backdrop-filter: saturate(130%) blur(14px);
  background: rgba(3, 4, 7, 0.74);
}
.brand-chip {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}
.main-nav a {
  position: relative;
}
.main-nav a::after,
.foot-nav a::after,
.foot-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(var(--accent-rgb), 0.8),
    transparent
  );
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.foot-nav a:hover::after,
.foot-links a:hover::after {
  transform: scaleX(1);
}
.hero-panel,
.card,
.image-card,
.boundary-card,
.legal-section,
.page-hero__aside {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.013)
  );
  border-color: rgba(255, 255, 255, 0.11);
}
.hero-art__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(3, 5, 10, 0.05),
    rgba(3, 5, 10, 0.28)
  );
}
.hero-art__frame {
  position: relative;
}
.hero-panel__title,
.card-eyebrow,
.section-kicker,
.foot-label,
.eyebrow {
  color: #b6bfd0;
}
.btn--accent {
  background: linear-gradient(
    180deg,
    rgba(var(--accent-rgb), 0.22),
    rgba(var(--accent-rgb), 0.12)
  );
}
.section-anchor {
  position: relative;
  top: -100px;
}
.foot-note-locked {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  font-size: 14px;
  color: var(--muted);
}
.legal-grid--single {
  grid-template-columns: 1fr;
}
.legal-card h3 {
  margin: 18px 0 10px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 247, 255, 0.54);
}
.legal-card p + p {
  margin-top: 14px;
}
.legal-card ul {
  list-style: none;
  padding-left: 0;
}
.legal-card li {
  padding-left: 0;
}

/* mediator solutions regency alignment application — internal design pass */
:root {
  --bg: #050505;
  --surface: #111111;
  --surface-2: #161616;
  --surface-3: #1c1c1c;
  --text: #e9e5da;
  --muted: rgba(233, 229, 218, 0.74);
  --muted-2: rgba(233, 229, 218, 0.54);
  --rule: rgba(233, 229, 218, 0.14);
  --rule-strong: rgba(233, 229, 218, 0.24);
  --accent: #bfa86a;
  --accent-soft: rgba(191, 168, 106, 0.1);
  --accent-line: rgba(191, 168, 106, 0.34);
  --accent-rgb: 191, 168, 106;
  --radius: 12px;
  --shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
}
html {
  background: #050505;
}
body {
  background:
    radial-gradient(
      1200px 800px at 50% 18%,
      rgba(191, 168, 106, 0.1),
      rgba(191, 168, 106, 0) 55%
    ),
    radial-gradient(
      900px 600px at 50% 35%,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0) 60%
    ),
    radial-gradient(
      1400px 900px at 50% 50%,
      rgba(0, 0, 0, 0) 30%,
      rgba(0, 0, 0, 0.55) 100%
    ),
    repeating-linear-gradient(
      0deg,
      rgba(233, 229, 218, 0.018) 0 1px,
      rgba(233, 229, 218, 0) 1px 10px
    ),
    linear-gradient(180deg, #050505, #2b2b2b);
}
.site-head {
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: saturate(120%) blur(14px);
}
.brand-chip {
  padding: 8px 12px;
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.018);
}
.brand-chip img {
  max-height: 40px;
}
.main-nav {
  gap: 0;
}
.main-nav a {
  position: relative;
  padding: 0 18px;
  min-height: 44px;
}
.main-nav a + a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 16px;
  background: var(--rule);
  transform: translateY(-50%);
}
.main-nav a::after,
.foot-nav a::after,
.foot-links a::after {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(191, 168, 106, 0.86),
    transparent
  );
}
.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current="page"] {
  font-weight: 500;
}
.nav-toggle,
.btn {
  border-radius: 10px;
}
.btn {
  background: transparent;
  border-color: var(--rule);
  box-shadow: none;
}
.btn:hover,
.btn:focus-visible {
  background: rgba(233, 229, 218, 0.04);
  transform: translateY(1px);
}
.btn--accent {
  background: rgba(191, 168, 106, 0.1);
  border-color: rgba(191, 168, 106, 0.3);
  color: var(--text);
}
.hero-panel,
.card,
.image-card,
.boundary-card,
.legal-section,
.page-hero__aside {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.012)
  );
  border-color: var(--rule);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.18);
}
.hero-art__frame {
  border-color: var(--rule-strong);
  background: #050505;
}
.hero-art__frame::before {
  background: linear-gradient(180deg, rgba(4, 4, 4, 0.02), rgba(4, 4, 4, 0.22));
}
.section,
.site-foot,
.site-head,
.nav-drawer,
.hero-panel li,
.card li,
.boundary-card li,
.legal-section li,
.foot-note-locked {
  border-color: var(--rule);
}
.card-eyebrow,
.section-kicker,
.foot-label,
.eyebrow,
.hero-panel__title,
.legal-card h3 {
  letter-spacing: 0.18em;
}
.foot-nav a,
.foot-links a,
.main-nav a {
  letter-spacing: 0.16em;
}
.foot-copy,
.foot-note,
.foot-end,
.lead,
.section-intro,
.card p,
.hero-panel p,
.legal-section p,
.page-hero__aside p {
  color: var(--muted);
}
.foot-brand {
  letter-spacing: 0.06em;
}
.site-foot {
  background: rgba(5, 5, 5, 0.84);
}
@media (max-width: 860px) {
  .main-nav a + a::before {
    display: none;
  }
}

/* lucide production integration */
.lucide-icon {
  width: 18px;
  height: 18px;
  display: block;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}
.lucide-icon use {
  pointer-events: none;
}
.nav-toggle .lucide-icon {
  width: 18px;
  height: 18px;
}
.menu-item-icon .lucide-icon {
  width: 18px;
  height: 18px;
}

/* cloudflare trust layer */
.trust-layer {
  padding: 56px 0;
  border-top: 1px solid var(--rule);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.015),
    rgba(255, 255, 255, 0)
  );
}
.trust-layer__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
  gap: min(4vw, 36px);
  align-items: stretch;
}
.trust-layer__copy,
.trust-layer__visual {
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.035),
    rgba(255, 255, 255, 0.012)
  );
  box-shadow: var(--shadow);
}
.trust-layer__copy {
  padding: 28px;
  display: grid;
  align-content: start;
  gap: 16px;
}
.trust-layer__copy p {
  margin: 0;
  color: var(--muted);
}
.trust-layer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}
.trust-layer__visual {
  padding: 20px;
  display: grid;
  gap: 18px;
  align-content: start;
  overflow: hidden;
}
.trust-layer__brandrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
}
.trust-layer__badge {
  width: min(100%, 380px);
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}
.trust-layer__logo {
  width: min(100%, 210px);
  height: auto;
  opacity: 0.96;
}
.trust-layer__mapwrap {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  background: #020202;
}
.trust-layer__map {
  display: block;
  width: 100%;
  height: auto;
}
.trust-layer__mapwrap::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(2, 2, 2, 0), rgba(2, 2, 2, 0.55));
}
.trust-layer__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.trust-chip {
  padding: 14px 16px;
  border: 1px solid var(--rule);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.018);
}
.trust-chip__label {
  display: block;
  margin: 0 0 6px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.trust-chip__value {
  display: block;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
}
@media (max-width: 960px) {
  .trust-layer__grid {
    grid-template-columns: 1fr;
  }
  .trust-layer__visual,
  .trust-layer__copy {
    padding: 22px;
  }
}
@media (max-width: 680px) {
  .trust-layer {
    padding: 42px 0;
  }
  .trust-layer__meta {
    grid-template-columns: 1fr;
  }
  .trust-layer__brandrow {
    align-items: flex-start;
  }
  .trust-layer__badge {
    max-width: 100%;
  }
  .trust-layer__logo {
    max-width: 180px;
  }
}

/* product/program wiring pass */
.section--programs {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0)
  );
}
.program-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 18px;
  margin: 0 0 22px;
}
.program-band__copy,
.program-band__chips {
  padding: 22px;
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.02)
  );
}
.program-band__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: flex-start;
}
.attest-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
}
.product-grid {
  margin-top: 18px;
}
.price-wrap {
  display: grid;
  gap: 6px;
  padding-top: 4px;
}
.program-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}
@media (max-width: 1080px) {
  .program-band {
    grid-template-columns: 1fr;
  }
}

/* Final BLACKBOX SYSTEMS specificity: later legacy button rules must not win. */
.bbs-page .btn.bbs-primary {
  background: #f4f4f2;
  border-color: #f4f4f2;
  color: #08090a;
}
.bbs-page .btn.bbs-primary:hover,
.bbs-page .btn.bbs-primary:focus-visible {
  background: #ffffff;
  border-color: #ffffff;
  color: #08090a;
}
.bbs-page .bbs-index span {
  color: #626366;
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 4px;
}
