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

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  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(12px, 1.5vw, 24px);
}

.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;
}

.nav-group {
  position: relative;
}

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

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

.dropdown {
  position: absolute;
  top: 100%;
  left: -14px;
  display: none;
  min-width: 220px;
  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 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,
.dropdown a.is-current {
  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;
}

.teaser-shell {
  width: min(100%, 1460px);
  margin: 0 auto;
  padding: 0 clamp(16px, 2.2vw, 38px) 52px;
}

.teaser-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.82fr);
  gap: clamp(22px, 3vw, 44px);
  align-items: center;
  min-height: auto;
  padding: clamp(26px, 3vw, 42px) 0 clamp(30px, 4vw, 52px);
  border-bottom: 1px solid var(--line);
}

body[data-product]:not([data-product="overview"]) .teaser-hero {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.56fr);
  align-items: start;
}

.teaser-copy {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(16px, 1.7vw, 24px);
  border: 1px solid rgba(255, 196, 0, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(2, 3, 2, 0.7)),
    rgba(2, 3, 2, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.032),
    0 14px 36px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.teaser-badge {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  max-width: 560px;
  padding: 10px 12px;
  border: 1px solid #423513;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 196, 0, 0.06), rgba(3, 4, 3, 0.94)),
    #040504;
}

.teaser-badge img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex: none;
}

.teaser-badge span {
  display: block;
  color: var(--green);
  font: 700 10px/1 ui-monospace, monospace;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.teaser-badge strong {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.06;
}

.teaser-badge small {
  display: block;
  margin-top: 5px;
  color: #a9a89f;
  font-size: 12px;
  line-height: 1.45;
}

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

.teaser-title {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(42px, 4vw, 68px);
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: break-word;
  word-break: normal;
}

body[data-product="overview"] .teaser-title {
  max-width: 100%;
  overflow-wrap: normal;
}

body[data-product]:not([data-product="overview"]) .teaser-title {
  max-width: 100%;
}

.teaser-title span,
.overview h2 span {
  color: var(--gold);
}

.teaser-subline {
  max-width: 30ch;
  margin: -2px 0 0;
  color: var(--gold);
  font-size: clamp(18px, 2vw, 30px);
  line-height: 1.08;
  text-wrap: balance;
}

.teaser-intro {
  max-width: 56ch;
  margin: 2px 0 0;
  color: #c5c3b9;
  font-size: 15px;
  line-height: 1.58;
  overflow-wrap: anywhere;
}

.teaser-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 430px;
}

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

.teaser-claim {
  width: min(100%, 320px);
  margin: 2px 0 2px;
}

.teaser-claim img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255, 196, 0, 0.12));
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 2px;
}

.fact {
  min-height: 104px;
  padding: 12px;
  border: 1px solid rgba(255, 204, 70, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 196, 0, 0.08), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(2, 3, 2, 0.95)),
    #040504;
  display: grid;
  gap: 6px;
  align-content: start;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

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

.fact strong {
  color: var(--text);
  font-size: 14px;
  line-height: 1.08;
}

.fact p {
  margin: 0;
  color: #b5b3aa;
  font-size: 11px;
  line-height: 1.42;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  overflow-wrap: anywhere;
}

.teaser-aside {
  position: relative;
  min-height: 0;
  width: min(100%, 460px);
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  border: 1px solid rgba(255, 204, 70, 0.18);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 196, 0, 0.1), transparent 34%),
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.035), transparent 28%),
    linear-gradient(180deg, rgba(2, 3, 2, 0.1), rgba(2, 3, 2, 0.18)),
    #040504;
  overflow: hidden;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.teaser-aside::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 196, 0, 0.075);
  pointer-events: none;
  border-radius: 14px;
}

.teaser-aside img {
  position: absolute;
  inset: 0;
  margin: auto;
  display: block;
  width: min(70%, 320px);
  height: auto;
  max-height: 66%;
  object-fit: contain;
  object-position: center;
  filter:
    saturate(1.04)
    contrast(1.03)
    drop-shadow(0 0 16px rgba(255, 196, 0, 0.12));
}

.teaser-aside img[data-asset="icon"] {
  width: min(64%, 270px);
  max-height: 60%;
  transform: none;
}

.teaser-aside[data-preview-label]::after {
  content: attr(data-preview-label);
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 16px;
  color: rgba(245, 243, 232, 0.7);
  font: 700 10px/1.45 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

body[data-product]:not([data-product="overview"]) .teaser-claim {
  width: min(100%, 264px);
  opacity: 0.92;
}

body[data-product]:not([data-product="overview"]) .teaser-aside {
  width: min(100%, 304px);
  aspect-ratio: 0.9;
}

body[data-product]:not([data-product="overview"]) .teaser-aside img[data-asset="icon"] {
  width: min(72%, 228px);
  max-height: 64%;
}

.teaser-aside img[data-asset="card"] {
  width: min(82%, 420px);
  max-height: 78%;
  padding: 0;
}

.overview {
  padding: 28px 0 12px;
}

.overview h2 {
  margin: 10px 0 18px;
  max-width: 820px;
  font-size: clamp(28px, 2.8vw, 48px);
  line-height: 1.02;
  text-wrap: balance;
}

.overview p {
  max-width: 760px;
  margin: 0;
  color: #b3b2a8;
  line-height: 1.58;
  overflow-wrap: anywhere;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.overview-card {
  display: grid;
  align-content: start;
  gap: 6px;
  min-height: 92px;
  padding: 9px;
  border: 1px solid rgba(255, 204, 70, 0.15);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 196, 0, 0.05), transparent 44%),
    linear-gradient(180deg, rgba(255, 196, 0, 0.03), rgba(3, 4, 3, 0.98));
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.14);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.overview-card.is-current {
  border-color: rgba(255, 212, 81, 0.38);
  box-shadow: 0 0 0 1px rgba(255, 196, 0, 0.1), 0 0 16px rgba(255, 196, 0, 0.055);
}

.overview-card:hover,
.overview-card:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 212, 81, 0.34);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  outline: none;
}

.overview-card img {
  width: 100%;
  height: 38px;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 196, 0, 0.05), transparent 50%),
    #040504;
}

.overview-card strong {
  color: var(--text);
  font-size: 13px;
  line-height: 1.08;
}

.overview-card p {
  margin: 0;
  color: #a3a49b;
  font-size: 9.5px;
  line-height: 1.38;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  overflow-wrap: anywhere;
}

.teaser-legal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  width: min(100%, 1080px);
  margin: 22px auto 8px;
  padding: 12px 14px;
  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));
}

.teaser-legal p {
  margin: 0;
  color: #b3b2a8;
  font-size: 13px;
  line-height: 1.52;
}

.teaser-legal a {
  color: var(--gold);
}

footer {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 20px;
  padding: 28px clamp(18px, 2.5vw, 46px);
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(4, 5, 4, 0), rgba(4, 5, 4, 0.72));
}

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

footer p {
  margin: 0;
  max-width: 640px;
  color: #9a998f;
  line-height: 1.55;
}

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

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

footer small {
  color: #5e5f59;
}

@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: 72px;
    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;
  }

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

  .teaser-aside {
    width: min(100%, 400px);
  }

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

  .teaser-badge {
    max-width: 540px;
  }

  .teaser-claim {
    width: min(100%, 360px);
  }

  .overview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 64px;
    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: 64px;
  }

  .teaser-shell {
    padding: 0 14px 36px;
  }

  .teaser-hero {
    gap: 16px;
    padding: 18px 0 24px;
  }

  body[data-product]:not([data-product="overview"]) .teaser-hero {
    grid-template-columns: 1fr;
  }

  .teaser-title {
    max-width: 100%;
    font-size: clamp(30px, 8.6vw, 44px);
    line-height: 0.92;
  }

  .teaser-subline {
    max-width: 100%;
    font-size: clamp(16px, 4.8vw, 22px);
    margin-top: 0;
  }

  .teaser-intro {
    font-size: 14px;
  }

  .teaser-copy {
    padding: 15px;
    border-radius: 18px;
  }

  .teaser-badge {
    grid-template-columns: auto 1fr;
    gap: 10px;
    padding: 10px 12px;
  }

  .teaser-badge img {
    width: 44px;
    height: 44px;
  }

  .teaser-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 100%;
  }

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

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

  .teaser-aside {
    width: min(100%, 300px);
    margin-inline: auto;
  }

  body[data-product]:not([data-product="overview"]) .teaser-aside {
    width: min(100%, 250px);
    aspect-ratio: 0.88;
  }

  .teaser-claim {
    width: min(100%, 260px);
  }

  body[data-product]:not([data-product="overview"]) .teaser-claim {
    width: min(100%, 212px);
  }

  .fact {
    min-height: 0;
    padding: 11px;
  }

  .fact strong {
    font-size: 13px;
  }

  .fact p {
    display: -webkit-box;
    font-size: 10.5px;
    -webkit-line-clamp: 2;
  }

  .overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .overview-card {
    min-height: 84px;
    padding: 9px;
  }

  .overview-card img {
    height: 34px;
  }

  .overview-card p {
    font-size: 9.5px;
  }

  .teaser-legal {
    grid-template-columns: 1fr;
  }

  footer {
    padding: 24px 14px 32px;
  }

  footer nav {
    gap: 12px 16px;
  }
}

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

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

  .teaser-shell {
    padding-inline: 12px;
  }

  .teaser-copy {
    gap: 14px;
    padding: 15px;
  }

  .teaser-title {
    font-size: clamp(28px, 10vw, 40px);
  }

  .teaser-subline {
    font-size: clamp(15px, 5vw, 20px);
  }

  .teaser-badge {
    padding: 9px 10px;
  }

  .teaser-badge strong {
    font-size: 15px;
  }

  .teaser-badge small {
    font-size: 11px;
  }

  .teaser-aside {
    width: min(100%, 270px);
    border-radius: 18px;
  }

  body[data-product]:not([data-product="overview"]) .teaser-aside {
    width: min(100%, 228px);
  }

  .teaser-aside::before {
    inset: 10px;
  }

  .overview-grid {
    gap: 7px;
  }

  .overview-card {
    min-height: 80px;
    gap: 6px;
    padding: 9px;
  }

  .overview-card strong {
    font-size: 13px;
  }
}

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