:root {
  color-scheme: dark;
  --bg: #020302;
  --surface: #060806;
  --surface-2: #090b08;
  --surface-3: #0d100c;
  --line: #2f2911;
  --line-2: #5f4b0b;
  --line-3: #3e3518;
  --green: #a2ff13;
  --gold: #ffc400;
  --orange: #ff9900;
  --cyan: #69ddff;
  --violet: #bc6cff;
  --text: #f2f0e8;
  --muted: #a7a89f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  max-width: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
  max-width: 100%;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 74px;
  padding: 0 clamp(16px, 2.2vw, 38px);
  border-bottom: 1px solid var(--line);
  background: rgba(2, 3, 2, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.brand {
  display: grid;
  grid-template-columns: 62px auto;
  grid-template-areas:
    "mark word"
    "mark sub";
  align-items: center;
  column-gap: 12px;
  row-gap: 0;
  min-width: 0;
  text-decoration: none;
}

.brand > img {
  grid-area: mark;
  width: 62px;
  display: block;
  height: auto;
  filter: drop-shadow(0 0 18px rgba(255, 196, 0, 0.22));
}

.brand::after {
  content: "vYronFORGE.";
  grid-area: word;
  align-self: end;
  font: 800 clamp(20px, 1.6vw, 28px)/0.94 Inter, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
  color: transparent;
  background: linear-gradient(90deg, #b7ff34 0%, #ffd84e 48%, #ff9d1f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 18px rgba(255, 196, 0, 0.08);
}

.brand small {
  grid-area: sub;
  align-self: start;
  color: #8a8b82;
  font: 700 7px/1.2 ui-monospace, monospace;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 1.4vw, 22px);
}

.main-nav > a,
.nav-group > button {
  border: 0;
  background: none;
  color: #d9d8d2;
  text-decoration: none;
  text-transform: uppercase;
  font: 700 9.5px/1 ui-monospace, monospace;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: color 160ms ease, opacity 160ms ease;
}

.main-nav > a:hover,
.main-nav > a:focus-visible,
.nav-group > button:hover,
.nav-group > button:focus-visible {
  color: var(--green);
  outline: none;
}

.nav-group {
  position: relative;
}

.nav-group > button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 18px 0;
}

.nav-group > button span {
  color: var(--green);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: -14px;
  display: none;
  min-width: 210px;
  padding: 8px;
  border: 1px solid var(--line-2);
  border-radius: 18px;
  background: rgba(5, 7, 5, 0.98);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(18px);
  z-index: 80;
}

.nav-group:hover > .dropdown,
.nav-group:focus-within > .dropdown,
.nav-group button[aria-expanded="true"] + .dropdown {
  display: grid;
}

.dropdown a {
  padding: 12px 12px;
  border-bottom: 1px solid #171a14;
  color: #bfc0b7;
  text-decoration: none;
  font: 700 10px/1.2 ui-monospace, monospace;
  text-transform: uppercase;
}

.dropdown a:hover,
.dropdown a:focus-visible {
  color: var(--green);
  background: #0b1008;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.portal-btn,
.gold-btn,
.outline-btn,
.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  text-decoration: none;
  text-transform: uppercase;
  font: 800 9px/1 ui-monospace, monospace;
  letter-spacing: 0.08em;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    filter 160ms ease,
    background 160ms ease;
}

.portal-btn {
  color: var(--green);
  background: linear-gradient(180deg, rgba(11, 13, 10, 0.92), rgba(4, 5, 4, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 12px 28px rgba(0, 0, 0, 0.22);
}

.status-pill {
  color: var(--green);
  background: linear-gradient(180deg, rgba(16, 24, 10, 0.82), rgba(7, 10, 6, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.status-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
}

.gold-btn {
  border-color: rgba(255, 207, 86, 0.72);
  background: linear-gradient(180deg, rgba(255, 223, 97, 0.98), rgba(191, 119, 0, 0.94));
  box-shadow:
    0 14px 28px rgba(255, 174, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  color: #070604;
}

.outline-btn {
  color: var(--green);
  background: linear-gradient(180deg, rgba(8, 10, 8, 0.82), rgba(3, 5, 3, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 12px 28px rgba(0, 0, 0, 0.18);
}

.gold-btn:hover,
.gold-btn:focus-visible,
.portal-btn:hover,
.portal-btn:focus-visible,
.outline-btn:hover,
.outline-btn:focus-visible,
.status-pill:hover,
.status-pill:focus-visible {
  outline: none;
  transform: translateY(-1px);
  filter: brightness(1.04);
  border-color: rgba(255, 212, 81, 0.82);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 214, 99, 0.14);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.96fr) minmax(320px, 0.82fr) minmax(560px, 1.4fr);
  gap: 0;
  min-height: 640px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 40% 52%, rgba(255, 196, 0, 0.12), transparent 30%),
    linear-gradient(90deg, #020302 0%, #050703 48%, #020302 100%);
}

.forge-hero {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(340px, 0.82fr);
  gap: clamp(28px, 4vw, 68px);
  align-items: center;
  min-height: 640px;
  padding: clamp(34px, 4vw, 64px) clamp(16px, 2vw, 42px) 42px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 196, 0, 0.12), transparent 26%),
    radial-gradient(circle at 76% 44%, rgba(162, 255, 19, 0.08), transparent 30%),
    linear-gradient(180deg, #030403, #020302);
}

.forge-hero-copy {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: clamp(20px, 2.2vw, 30px);
  border: 1px solid rgba(255, 196, 0, 0.12);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(2,3,2,.68)),
    rgba(2, 3, 2, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 26px 68px rgba(0,0,0,.2);
  backdrop-filter: blur(16px);
}

.forge-hero-copy .hero-kicker {
  margin: 0;
  color: var(--green);
  font: 700 13px/1 ui-monospace, monospace;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.forge-hero-copy h1 {
  margin: 0;
  max-width: 9ch;
  font-size: clamp(52px, 4.6vw, 82px);
  line-height: 0.91;
  letter-spacing: 0;
  text-wrap: balance;
}

.forge-hero-copy h1 span,
.forge-section-head h2 span,
.forge-cta h2 span {
  color: var(--gold);
}

.forge-hero-copy .lead {
  max-width: 54ch;
  margin: 0;
  color: #c3c3bb;
  font-size: 15px;
  line-height: 1.56;
}

.hero-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
}

.hero-notes div {
  display: grid;
  gap: 6px;
  min-height: 92px;
  padding: 14px 14px 12px;
  border: 1px solid rgba(255, 204, 70, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 196, 0, 0.05), rgba(2, 3, 2, 0.9)),
    rgba(2, 3, 2, 0.68);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
}

.hero-notes strong {
  color: var(--text);
  font-size: 15px;
  line-height: 1.06;
}

.hero-notes small {
  color: #9f9f95;
  font-size: 9.5px;
  line-height: 1.45;
}

.forge-hero-visual {
  display: grid;
  place-items: center;
  min-height: 520px;
}

.forge-hero-frame {
  width: min(100%, 580px);
  padding: 16px;
  border: 1px solid rgba(124, 97, 14, 0.72);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 196, 0, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(3, 4, 3, 0.98), rgba(1, 1, 1, 0.82));
  box-shadow:
    0 0 55px rgba(255, 196, 0, 0.14),
    inset 0 0 28px rgba(0, 0, 0, 0.72);
}

.forge-hero-frame img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 24px rgba(255, 196, 0, 0.28));
}

.forge-section-head {
  padding: 26px clamp(16px, 2vw, 42px) 20px;
}

.forge-section-head .section-kicker {
  margin: 0 0 12px;
  color: var(--green);
  font: 700 11px/1 ui-monospace, monospace;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.forge-section-head h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3vw, 54px);
  line-height: 1.02;
}

.forge-section-head p {
  max-width: 720px;
  margin: 0;
  color: #b4b5ab;
  line-height: 1.54;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: clamp(54px, 5vw, 88px) 18px 34px clamp(24px, 3vw, 52px);
}

.hero-kicker {
  margin: 0 0 18px;
  color: var(--green);
  font: 700 13px/1 ui-monospace, monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-kicker b,
.hero h1 span,
.hero-copy h2 span {
  color: var(--gold);
}

.hero h1 {
  max-width: 560px;
  margin: 0 0 20px;
  font-size: clamp(54px, 4.5vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 540px;
  margin: 0 0 26px;
  color: #c3c3bb;
  font-size: 16px;
  line-height: 1.55;
}

.hero-copy h2 {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 17px;
  font-weight: 600;
}

.capabilities {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 690px;
  margin-top: 18px;
}

.capabilities div {
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 6px 13px 8px;
  border-right: 1px solid #4a3c16;
  text-align: center;
}

.capabilities div:first-child {
  padding-left: 0;
}

.capabilities div:last-child {
  border: 0;
}

.capabilities b {
  color: var(--gold);
  font-size: 26px;
  font-weight: 400;
}

.capabilities strong {
  color: var(--green);
  font-size: 10px;
  text-transform: uppercase;
}

.capabilities small {
  color: #999990;
  font-size: 9px;
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 26px;
}

.hero-actions a {
  min-width: 0;
}

.hero-core {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 190, 0, 0.24), transparent 36%),
    linear-gradient(180deg, rgba(2, 3, 2, 0.1), rgba(2, 3, 2, 0.25)),

  background-size: cover;
  background-position: center;
}

.hero-core::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 3, 2, 0.2), rgba(2, 3, 2, 0), rgba(2, 3, 2, 0.24)),
    linear-gradient(180deg, rgba(2, 3, 2, 0), rgba(2, 3, 2, 0.18));
}

.core-visual {
  position: relative;
  width: min(100%, 710px);
  margin-inline: auto;
  padding: 38px 28px 22px;
  border: 1px solid rgba(107, 84, 15, 0.55);
  background: rgba(1, 1, 1, 0.32);
  box-shadow:
    0 0 60px rgba(255, 180, 0, 0.18),
    inset 0 0 24px rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
}

.core-visual::after {
  content: "";
  position: absolute;
  inset: 10% 12%;
  border-radius: 50%;
  border: 1px solid rgba(221, 179, 42, 0.18);
  box-shadow: 0 0 120px rgba(255, 180, 0, 0.08);
  pointer-events: none;
}

.core-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 620px);
  height: auto;
  margin-inline: auto;
  filter: drop-shadow(0 0 35px rgba(255, 196, 0, 0.42));
  transform: scale(1.04);
}

.system-preview {
  align-self: center;
  margin: 20px 24px 20px 0;
  border: 1px solid #60511a;
  background:
    linear-gradient(180deg, rgba(6, 8, 5, 0.96), rgba(3, 4, 3, 0.98));
  box-shadow: 0 0 36px rgba(0, 0, 0, 0.75);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
}

.preview-top {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 12px;
  border-bottom: 1px solid #29240f;
}

.preview-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
}

.preview-brand img {
  width: 26px;
  height: 26px;
}

.preview-brand span {
  color: var(--gold);
}

.preview-search {
  height: 30px;
  border: 1px solid #151912;
  background: #050705;
}

.preview-clock {
  padding: 7px 10px;
  border: 1px solid #313619;
  color: #aeb78e;
  font-size: 8px;
}

.preview-body {
  display: grid;
  grid-template-columns: 146px 1fr;
  min-height: 465px;
}

.preview-body aside {
  display: grid;
  align-content: start;
  border-right: 1px solid #25230f;
}

.preview-body aside > * {
  padding: 13px 15px;
  border-bottom: 1px solid #171a13;
  color: #898d7d;
  font-size: 9px;
  text-transform: uppercase;
}

.preview-body aside b {
  color: var(--green);
  background: #172008;
}

.dashboard {
  padding: 10px;
}

.dash-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.metric {
  display: grid;
  gap: 4px;
  padding: 11px;
  border: 1px solid #393014;
  background: #050705;
}

.metric small {
  color: #86897e;
  font-size: 8px;
  text-transform: uppercase;
}

.metric strong {
  color: var(--green);
  font-size: 14px;
  text-transform: uppercase;
}

.dash-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.95fr;
  gap: 9px;
  margin-top: 9px;
}

.panel {
  min-height: 194px;
  padding: 10px;
  border: 1px solid #393014;
  background: #050705;
  overflow: hidden;
}

.panel h3 {
  margin: 0 0 12px;
  color: #afb09f;
  font-size: 9px;
  text-transform: uppercase;
}

.progress label {
  display: flex;
  justify-content: space-between;
  margin: 8px 0 4px;
  color: #9c9e91;
  font-size: 8px;
}

.progress i {
  font-style: normal;
}

.progress > span {
  display: block;
  height: 5px;
  background: #191a16;
}

.progress > span b {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--gold));
}

.activity p {
  margin: 0;
  padding: 9px 0;
  border-bottom: 1px solid #171a13;
  color: #8f917e;
  font-size: 7px;
  line-height: 1.4;
}

.activity time {
  color: var(--gold);
}

.global img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.12);
}

.mini-systems {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 9px;
  margin-top: 9px;
}

.mini-systems div {
  display: grid;
  gap: 5px;
  padding: 10px;
  border: 1px solid #393014;
  background: #050705;
  color: var(--gold);
  font-size: 8px;
}

.mini-systems small {
  color: var(--green);
  font-size: 7px;
  text-transform: uppercase;
}

.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 34px clamp(18px, 1.7vw, 34px);
  border-bottom: 1px solid var(--line);
}

.vf-product-grid-clean {
  padding: 0 clamp(16px, 2vw, 42px) 30px;
}

.vf-product-card-link {
  text-decoration: none;
  color: inherit;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.vf-product-card-link:hover,
.vf-product-card-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 209, 61, 0.75);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.42);
  outline: none;
}

.vf-card-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 2px;
  padding: 9px 14px;
  border: 1px solid #745a11;
  color: var(--gold);
  text-transform: uppercase;
  font: 800 9px/1 ui-monospace, monospace;
  letter-spacing: 0.1em;
}

.vf-product-card-missing-asset {
  display: none;
}

.vf-card-category {
  display: inline-flex;
  width: fit-content;
  color: var(--green);
  font: 700 10px/1 ui-monospace, monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vf-product-card-muted {
  opacity: .82;
  border-style: dashed;
}

.vf-product-card-muted .vf-card-link {
  border-color: #4b4b42;
  color: #a9a89f;
}

.download-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0 clamp(16px, 2vw, 42px) 30px;
}

.download-card,
.service-card {
  border: 1px solid #3a3115;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 196, 0, 0.08), transparent 44%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(2,3,2,.95));
  box-shadow: 0 20px 60px rgba(0,0,0,.24);
}

.download-card {
  display: grid;
  gap: 12px;
  align-items: start;
  min-height: 140px;
  padding: 13px;
  color: inherit;
  text-decoration: none;
}

.download-card img {
  display: block;
  width: 100%;
  height: 84px;
  object-fit: contain;
  object-position: center;
  border: 1px solid #2e2812;
  background: #050705;
}

.download-card div {
  display: grid;
  gap: 5px;
}

.download-card span {
  color: var(--green);
  font: 700 10px/1 ui-monospace, monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.download-card strong,
.service-card h3 {
  color: var(--text);
  font-size: 16px;
  line-height: 1.06;
}

.download-card p,
.service-card small {
  margin: 0;
  color: #a9a89f;
  font-size: 12px;
  line-height: 1.42;
}

.service-card {
  display: grid;
  gap: 10px;
  min-height: 132px;
  padding: 16px;
}

.service-card p {
  margin: 0;
  color: var(--gold);
  font: 700 10px/1 ui-monospace, monospace;
  letter-spacing: 0.16em;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
  width: min(100%, 920px);
  margin: 0 auto;
}

.contact-copy {
  display: grid;
  align-content: start;
  gap: 16px;
  text-align: left;
}

.contact-copy p {
  margin: 0;
}

.contact-copy h2 {
  margin: 0;
}

.contact-copy span {
  max-width: 560px;
  color: #b4b5ab;
  line-height: 1.56;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.contact-actions a {
  min-width: 0;
}

.forge-cta {
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 48px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 196, 0, 0.12), transparent 30%),
    linear-gradient(180deg, #040504, #020302);
}

.forge-cta > div {
  max-width: 900px;
}

.forge-cta p {
  margin: 0;
  color: var(--green);
  font: 700 12px/1 ui-monospace, monospace;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.forge-cta h2 {
  margin: 12px 0 26px;
  font-size: clamp(32px, 4vw, 64px);
  line-height: 1.02;
}

.brand-rail {
  margin: 0 clamp(18px, 1.7vw, 34px);
  padding: 22px 16px;
  border: 1px solid #3a3115;
  border-top: 0;
  border-bottom: 0;
  background:
    linear-gradient(90deg, rgba(255, 196, 0, 0.04), rgba(0, 0, 0, 0.08), rgba(162, 255, 19, 0.05));
}

.brand-rail img {
  display: block;
  width: min(100%, 1180px);
  height: auto;
  margin-inline: auto;
  border: 1px solid #342c12;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.35);
}

.focus {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  align-items: stretch;
  gap: 0;
  min-height: 520px;
  margin: 0 clamp(18px, 1.7vw, 34px);
  border: 1px solid #3a3115;
  border-top: 0;
  border-bottom: 0;
  background: #040504;
  overflow: hidden;
}

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

.focus-copy {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(28px, 4vw, 54px);
  border-left: 1px solid #3a3115;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 196, 0, 0.14), transparent 38%),
    linear-gradient(180deg, #050705, #030403);
}

.focus-copy p {
  margin: 0;
  color: var(--green);
  font: 700 11px/1 ui-monospace, monospace;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.focus-copy h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(28px, 3vw, 54px);
  line-height: 1.02;
}

.focus-copy a {
  display: inline-flex;
  width: fit-content;
  padding: 12px 16px;
  border: 1px solid #745a11;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  font: 800 10px/1 ui-monospace, monospace;
}

.products article {
  display: grid;
  grid-template-columns: 56px 1fr;
  min-width: 0;
  min-height: 96px;
  border: 1px solid #594716;
  background: linear-gradient(145deg, #080a07, #030403);
  overflow: hidden;
}

.products article:nth-child(3) {
  border-color: #315064;
}

.products article:nth-child(4) {
  border-color: #58365d;
}

.products article:nth-child(6) {
  border-color: #536b12;
}

.product-media {
  display: grid;
  place-items: center;
  padding: 6px 5px;
  border-right: 1px solid #30280e;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 196, 0, 0.09), transparent 62%),
    #040504;
}

.products img {
  width: min(100%, 40px);
  height: auto;
  object-fit: cover;
}

.product-copy {
  display: grid;
  gap: 3px;
  align-content: center;
  padding: 6px 8px 6px 8px;
}

.product-copy span {
  color: #d7d6cf;
  font: 700 9px/1 ui-monospace, monospace;
  letter-spacing: 0.18em;
}

.products h3 {
  margin: 0;
  color: var(--green);
  font: 700 9px/1.08 ui-monospace, monospace;
}

.products article:nth-child(2) h3,
.products article:nth-child(5) h3 {
  color: var(--gold);
}

.products article:nth-child(3) h3 {
  color: var(--cyan);
}

.products article:nth-child(4) h3 {
  color: var(--violet);
}

.products p {
  min-height: 0;
  margin: 0;
  color: #a3a49b;
  font-size: 8px;
  line-height: 1.25;
}

.products a {
  display: inline-flex;
  width: fit-content;
  padding: 6px 9px;
  border: 1px solid #745a11;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  font: 800 7px/1 ui-monospace, monospace;
}

.trust {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin: 0 clamp(18px, 1.7vw, 34px) 34px;
  gap: 12px;
}

.trust > div {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 20px;
  border: 1px solid #3a3115;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 196, 0, 0.03), rgba(3, 4, 3, 0.98)),
    #040504;
}

.trust > div:last-child {
  border: 1px solid #3a3115;
}

.trust b {
  color: var(--green);
  font-size: 26px;
  font-weight: 400;
}

.trust span {
  display: grid;
  gap: 4px;
}

.trust strong {
  color: var(--green);
  font: 600 12px/1 ui-monospace, monospace;
  text-transform: uppercase;
}

.trust small {
  color: #9b9c94;
  font-size: 10px;
}

.contact {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 390px;
  padding: 60px 24px;
  border-top: 1px solid var(--line);
  overflow: hidden;
  text-align: center;
}

.contact > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.16;
  filter: saturate(0.6);
}

.contact > .contact-layout {
  position: relative;
}

.contact p {
  color: var(--green);
  font: 700 12px/1 ui-monospace, monospace;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.contact h2 {
  margin: 12px 0 28px;
  font-size: clamp(32px, 4vw, 64px);
  line-height: 1.02;
}

.site-disclaimer {
  display: grid;
  gap: 10px;
  margin: 18px clamp(20px, 4vw, 70px) 36px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 196, 0, 0.22);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 196, 0, 0.05), rgba(3, 4, 3, 0.94));
}

.site-disclaimer p {
  margin: 0;
  color: #b3b2a8;
  line-height: 1.58;
}

footer {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 30px clamp(20px, 4vw, 70px);
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(4, 5, 4, 0), rgba(4, 5, 4, 0.72));
  color: #898a82;
  font-size: 11px;
}

.footer-brand img {
  display: block;
  width: 88px;
  height: auto;
}

footer p {
  margin: 0;
  max-width: 470px;
}

.footer-copy {
  display: grid;
  gap: 6px;
}

.footer-contact {
  color: var(--gold);
  text-decoration: none;
}

.footer-disclaimer {
  display: block;
  max-width: 620px;
  color: #707168;
  line-height: 1.5;
}

footer nav {
  display: flex;
  gap: 18px;
}

footer nav a {
  color: #aaa;
  text-decoration: none;
}

footer small {
  color: #5e5f59;
}

@media (max-width: 1500px) {
  .hero {
    grid-template-columns: minmax(340px, 0.92fr) minmax(300px, 0.8fr) minmax(540px, 1.28fr);
  }

  .forge-hero {
    grid-template-columns: minmax(320px, 1fr) minmax(320px, 0.82fr);
  }

  .capabilities div {
    padding-inline: 6px;
  }

  .system-preview {
    margin-right: 12px;
  }

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

  .vf-product-grid-clean {
    padding-inline: clamp(18px, 1.7vw, 34px);
  }

  .products article {
    min-height: 148px;
  }

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

  .trust > div:nth-child(3) {
    border-right: 1px solid #3a3115;
  }

  .trust > div:nth-child(-n+3) {
    border-bottom: 1px solid #3a3115;
  }

  .download-grid,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-inline: 18px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: grid;
    gap: 4px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid var(--line-2);
    background: #050705;
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--green);
  }

  .main-nav {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    display: none;
    padding: 12px 20px;
    border-bottom: 1px solid var(--line-2);
    background: #030503;
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav > a,
  .nav-group > button {
    padding: 13px 0;
  }

  .dropdown {
    position: static;
    margin: 0 0 8px;
  }

  .header-actions {
    justify-self: end;
  }

  .portal-btn {
    display: none;
  }

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

  .forge-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .forge-hero-copy {
    order: 1;
  }

  .forge-hero-visual {
    order: 2;
    min-height: 420px;
  }

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

  .hero-copy {
    padding-bottom: 44px;
  }

  .hero-core {
    min-height: 420px;
  }

  .system-preview {
    grid-column: 1 / -1;
    margin: 0 20px 24px;
  }

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

  .vf-product-grid-clean {
    padding-bottom: 24px;
  }

  .products article {
    grid-template-columns: 54px 1fr;
    min-height: 94px;
  }

  .focus {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .focus-copy {
    border-left: 0;
    border-top: 1px solid #3a3115;
  }

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

  .trust > div,
  .trust > div:nth-child(3) {
    border-right: 1px solid #3a3115;
    border-bottom: 1px solid #3a3115;
  }

  .trust > div:nth-child(even) {
    border-right: 1px solid #3a3115;
  }

  .trust > div:nth-last-child(-n+2) {
    border-bottom: 1px solid #3a3115;
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 68px;
    padding: 0 14px;
  }

  .brand {
    grid-template-columns: 54px auto;
    column-gap: 10px;
  }

  .brand > img {
    width: 54px;
  }

  .brand::after {
    font-size: 18px;
  }

  .brand small {
    font-size: 6px;
    letter-spacing: 0.22em;
  }

  .menu-toggle {
    grid-column: 2;
  }

  .header-actions {
    display: none;
  }

  .main-nav {
    top: 68px;
  }

  .hero {
    display: block;
    min-height: auto;
  }

  .forge-hero {
    display: grid;
    gap: 18px;
    padding: 28px 14px 26px;
  }

  .forge-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(36px, 10.5vw, 54px);
    line-height: 0.95;
  }

  .forge-hero-copy .lead {
    font-size: 14px;
  }

  .hero-notes {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .forge-hero-visual {
    min-height: 320px;
  }

  .forge-hero-frame {
    width: calc(100% - 8px);
    padding: 12px;
  }

  .forge-section-head {
    padding: 20px 14px 18px;
  }

  .hero-copy {
    padding: 45px 20px 30px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(36px, 10.5vw, 54px);
    line-height: 0.95;
  }

  .lead {
    font-size: 14px;
  }

  .hero-copy h2 {
    font-size: 13px;
  }

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

  .capabilities div {
    padding: 12px 8px;
    border-bottom: 1px solid #4a3c16;
  }

  .capabilities div:nth-child(even) {
    border-right: 0;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .hero-actions a {
    min-width: 0;
    width: 100%;
    justify-content: center;
  }

  .hero-core {
    min-height: 380px;
  }

  .core-visual {
    width: calc(100% - 24px);
    padding: 22px 14px 16px;
  }

  .core-visual img {
    transform: scale(1.02);
  }

  .system-preview {
    margin: 0 12px 22px;
  }

  .preview-top {
    grid-template-columns: 1fr auto;
  }

  .preview-search {
    display: none;
  }

  .preview-body {
    grid-template-columns: 1fr;
  }

  .preview-body aside {
    display: none;
  }

  .dash-top,
  .dash-grid,
  .mini-systems {
    grid-template-columns: 1fr;
  }

  .panel {
    min-height: 0;
  }

  .global img {
    height: 180px;
  }

  .products {
    grid-template-columns: 1fr;
    padding: 20px 12px;
  }

  .products article {
    grid-template-columns: 56px 1fr;
    min-height: 92px;
  }

  .products img {
    width: min(100%, 38px);
    object-fit: contain;
  }

  .products p {
    min-height: 0;
  }

  .trust {
    grid-template-columns: 1fr;
    margin: 0 12px 22px;
  }

  .download-grid,
  .service-grid {
    grid-template-columns: 1fr;
    padding: 0 14px 24px;
  }

  .download-card,
  .service-card {
    min-height: 0;
  }

  .trust > div,
  .trust > div:nth-child(3),
  .trust > div:nth-last-child(-n+2) {
    border-right: 1px solid #3a3115;
    border-bottom: 1px solid #3a3115;
  }

  .trust > div:last-child {
    border-bottom: 1px solid #3a3115;
  }

  .contact {
    min-height: 330px;
  }

  .contact h2 {
    font-size: 36px;
  }

  .contact-layout {
    padding-inline: 14px;
  }

  .contact-actions a {
    min-width: 0;
    width: 100%;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 20px;
  }

  footer nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 430px) {
  .site-header {
    gap: 10px;
  }

  .main-nav {
    padding: 10px 14px 18px;
  }

  .forge-hero {
    padding-inline: 8px;
  }

  .forge-hero-copy {
    gap: 14px;
    min-width: 0;
    padding: 14px 12px;
    border-radius: 22px;
  }

  .forge-hero-copy .hero-kicker {
    font-size: 10px;
  }

  .forge-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(31px, 10.4vw, 42px);
    line-height: 0.92;
    overflow-wrap: anywhere;
  }

  .forge-hero-copy .lead {
    font-size: 13.5px;
    max-width: 100%;
  }

  .hero-notes div {
    min-height: 0;
    padding: 12px;
  }

  .hero-notes strong {
    font-size: 13px;
  }

  .hero-notes small {
    font-size: 9px;
  }

  .forge-hero-visual {
    min-width: 0;
    min-height: 272px;
  }

  .forge-hero-frame {
    width: 100%;
    max-width: 100%;
    padding: 12px;
    border-radius: 24px;
  }

  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-actions a {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

.public-status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 24px;
  margin-top: 10px;
  padding: 4px 9px;
  border: 1px solid rgba(212, 173, 74, 0.38);
  border-radius: 999px;
  color: #e7ca7a;
  background: rgba(212, 173, 74, 0.08);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.public-status--developer {
  border-color: rgba(93, 174, 211, 0.42);
  color: #a8d9ef;
  background: rgba(55, 142, 182, 0.09);
}

.public-status--internal {
  border-color: rgba(158, 171, 186, 0.36);
  color: #c8d0d9;
  background: rgba(135, 151, 169, 0.08);
}

.public-status--development {
  border-color: rgba(214, 139, 84, 0.4);
  color: #e8b48b;
  background: rgba(185, 104, 49, 0.09);
}

.human-systems {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 24px;
  align-items: stretch;
  max-width: 1220px;
  margin: 0 auto 76px;
  padding: 0 24px;
}

.human-systems-copy,
.human-system-card {
  border: 1px solid rgba(123, 158, 165, 0.23);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(17, 30, 39, 0.94), rgba(8, 15, 20, 0.98));
}

.human-systems-copy {
  padding: clamp(26px, 4vw, 50px);
}

.human-systems-copy h2 {
  max-width: 700px;
  margin: 12px 0 16px;
  color: #f2f5f4;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 0.98;
}

.human-systems-copy h2 span {
  color: #81b5b5;
}

.human-systems-copy > p:last-child,
.human-system-card > p {
  color: #a6b5ba;
  line-height: 1.7;
}

.human-system-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 310px;
  padding: clamp(28px, 5vw, 58px);
  overflow: hidden;
  text-decoration: none;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}

.human-system-card::before {
  position: absolute;
  top: -30%;
  right: -15%;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(129, 181, 181, 0.17);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(129, 181, 181, 0.035), 0 0 0 94px rgba(129, 181, 181, 0.018);
  content: "";
}

.human-system-card > * {
  position: relative;
}

.human-system-card h3 {
  margin: 22px 0 8px;
  color: #f2f5f4;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.95;
}

.human-system-card strong {
  margin-top: 22px;
  color: #9fd0ce;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.human-system-card:hover,
.human-system-card:focus-visible {
  border-color: rgba(129, 181, 181, 0.62);
  transform: translateY(-3px);
}

.human-system-card:focus-visible {
  outline: 3px solid #e7ca7a;
  outline-offset: 4px;
}

@media (max-width: 760px) {
  .human-systems {
    grid-template-columns: 1fr;
    margin-bottom: 48px;
    padding-inline: 14px;
  }

  .human-system-card {
    min-height: 270px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .human-system-card:hover,
  .human-system-card:focus-visible {
    transform: none;
  }
}

