@font-face {
  font-family: "Street Reich";
  src: url("Street Reich.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "Ghost Theory";
  src: url("Ghost theory 1.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Ghost Theory Alt";
  src: url("Ghost theory 2.ttf") format("truetype");
  font-display: swap;
}

:root {
  --black: #010101;
  --matte: rgba(0, 0, 0, 0.76);
  --matte-heavy: rgba(0, 0, 0, 0.84);
  --gold: #d6a24a;
  --gold-bright: #f4d68f;
  --gold-dark: #8f5d18;
  --parchment: #efe0b4;
  --muted: #d6c598;
  --border: rgba(214, 162, 74, 0.22);
  --sage-shadow: rgba(5, 43, 34, 0.24);
  --max: 1220px;
  --radius-lg: 30px;
  --radius-md: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #000;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--parchment);
  font-family: "Ghost Theory", Georgia, serif;
  background: transparent;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ================================
   VIDEO BACKGROUND
   This stays visible behind all content.
   No negative z-index.
   ================================ */

.site-bg-video {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  opacity: 1;
  filter: brightness(0.82) contrast(1.08) saturate(0.88);
  pointer-events: none;
}

.site-bg-shade {
  position: fixed;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.66),
      rgba(0, 0, 0, 0.42)
    ),
    radial-gradient(
      circle at 70% 35%,
      rgba(214, 162, 74, 0.08),
      transparent 34%
    );
  backdrop-filter: blur(2px);
  pointer-events: none;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 2;
}

/* ================================
   TYPOGRAPHY
   ================================ */

.metal-text,
.brand-name,
.company-name,
h1,
h2,
.hero-tag {
  background: linear-gradient(180deg, #ffe8a8 0%, #d9ab53 42%, #8f5d18 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter:
    drop-shadow(0 1px 0 rgba(0, 0, 0, 0.85))
    drop-shadow(0 0 14px rgba(214, 162, 74, 0.18));
}

.brand-name,
.company-name,
h1,
h2 {
  font-family: "Street Reich", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav-links {
  font-family: "Ghost Theory", Georgia, serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(3.1rem, 8vw, 7.1rem);
  line-height: 0.84;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.9;
}

h3 {
  font-family: "Ghost Theory", Georgia, serif;
  color: var(--gold-bright);
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.12;
  letter-spacing: 0.02em;
}

.lede {
  margin-top: 24px;
  max-width: 820px;
  color: rgba(239, 224, 180, 0.94);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.62;
}

.copy,
ul.copy,
ol.copy {
  color: rgba(239, 224, 180, 0.9);
  font-size: 1.18rem;
  line-height: 1.75;
}

.copy strong {
  color: #fff0bf;
}

.copy + .copy {
  margin-top: 18px;
}

/* ================================
   HEADER / NAVIGATION
   ================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 270px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(214, 162, 74, 0.2));
}

.brand-name {
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  line-height: 0.95;
}

.brand-sub {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
  font-family: "Ghost Theory", Georgia, serif;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.34);
  padding: 7px;
  border-radius: 999px;
}

.nav-links a {
  padding: 11px 15px;
  border-radius: 999px;
  color: rgba(239, 224, 180, 0.84);
  font-size: 1rem;
  font-weight: 700;
  transition: 160ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff1c4;
  background: rgba(214, 162, 74, 0.13);
  box-shadow: inset 0 0 0 1px rgba(214, 162, 74, 0.18);
}

/* ================================
   MAIN LAYOUT
   ================================ */

main {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

/* ================================
   HOME HERO
   No circuitry overlay here.
   Video shows behind this.
   ================================ */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 48px;
  padding: 88px 0 72px;
  min-height: calc(100vh - 82px);
}

.hero-copy,
.hero-art {
  position: relative;
  z-index: 2;
}

.hero-tag {
  font-family: "Street Reich", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.hero-art {
  min-height: 620px;
  display: grid;
  place-items: center;
}

.hero-emblem {
  width: min(720px, 105%);
  max-height: 720px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 24px rgba(214, 162, 74, 0.22))
    drop-shadow(0 0 70px rgba(0, 0, 0, 0.9));
}

/* ================================
   INTERIOR PAGE HERO
   No circuitry overlay here either.
   ================================ */

.page-title {
  padding: 88px 0 34px;
}

.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 42px;
  padding: 88px 0 44px;
  min-height: 540px;
}

.page-hero-copy,
.page-hero-art {
  position: relative;
  z-index: 2;
}

.page-hero-art {
  display: grid;
  place-items: center;
  min-height: 430px;
}

.page-hero-image {
  width: min(560px, 100%);
  max-height: 560px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 26px rgba(214, 162, 74, 0.24))
    drop-shadow(0 0 70px rgba(0, 0, 0, 0.92));
}

/* ================================
   BUTTONS
   ================================ */

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: "Ghost Theory", Georgia, serif;
  font-size: 1.05rem;
  color: #fff0c6;
  border: 1px solid rgba(214, 162, 74, 0.40);
  background: rgba(0, 0, 0, 0.42);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  cursor: pointer;
}

.button.secondary {
  background: rgba(214, 162, 74, 0.08);
}

.button:hover {
  border-color: rgba(244, 214, 143, 0.72);
  background: rgba(214, 162, 74, 0.12);
}

/* ================================
   SECTIONS / CARDS / PANELS
   Circuitry and geometry ONLY happen
   inside bordered boxes.
   ================================ */

.section {
  padding: 82px 0;
}

.section.compact {
  padding: 46px 0;
}

.section-panel,
.brand-card,
.preview-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.64);
  box-shadow:
    0 22px 68px rgba(0, 0, 0, 0.46),
    inset 0 0 36px rgba(214, 162, 74, 0.025),
    inset 0 0 24px rgba(5, 43, 34, 0.12);
}

.section-panel::before,
.brand-card::before,
.preview-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--circuit-image, none);
  background-size: cover;
  background-position: center;
  opacity: var(--circuit-opacity, 0.38);
  mix-blend-mode: screen;
  filter: brightness(0.92) contrast(1.06) saturate(0.9);
  pointer-events: none;
}

.section-panel::after,
.brand-card::after,
.preview-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.70),
      rgba(0, 0, 0, 0.50)
    );
  pointer-events: none;
}

.section-panel > *,
.brand-card > *,
.preview-card > * {
  position: relative;
  z-index: 2;
}

.section-panel {
  padding: clamp(28px, 5vw, 56px);
  border-radius: var(--radius-lg);
}

.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.brand-card {
  min-height: 280px;
  border-radius: var(--radius-md);
  padding: 30px;
}

.brand-card.tall {
  min-height: 340px;
}

.brand-card ul {
  margin: 18px 0 0 22px;
  padding: 0;
}

.brand-card li + li {
  margin-top: 8px;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.preview-card {
  border-radius: var(--radius-md);
  min-height: 100%;
}

.preview-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid rgba(214, 162, 74, 0.18);
  filter: brightness(0.88) contrast(1.06) saturate(0.92);
}

.preview-card h3,
.preview-card p {
  padding-left: 22px;
  padding-right: 22px;
}

.preview-card h3 {
  padding-top: 18px;
}

.preview-card p {
  padding-bottom: 22px;
}

/* ================================
   GLOBAL MIXED CARD BACKGROUNDS
   Safe background assets only.
   No metatron. No DOTD/D0TD.
   No logos. No personal icons.
   ================================ */

.card-grid > .brand-card:nth-child(11n + 1),
.preview-grid > .preview-card:nth-child(11n + 1) {
  --circuit-image: url("circuit1.png") !important;
  --circuit-opacity: 0.40 !important;
}

.card-grid > .brand-card:nth-child(11n + 2),
.preview-grid > .preview-card:nth-child(11n + 2) {
  --circuit-image: url("Circuits.png") !important;
  --circuit-opacity: 0.34 !important;
}

.card-grid > .brand-card:nth-child(11n + 3),
.preview-grid > .preview-card:nth-child(11n + 3) {
  --circuit-image: url("circuit2.png") !important;
  --circuit-opacity: 0.40 !important;
}

.card-grid > .brand-card:nth-child(11n + 4),
.preview-grid > .preview-card:nth-child(11n + 4) {
  --circuit-image: url("triangles.png") !important;
  --circuit-opacity: 0.30 !important;
}

.card-grid > .brand-card:nth-child(11n + 5),
.preview-grid > .preview-card:nth-child(11n + 5) {
  --circuit-image: url("circuit3.png") !important;
  --circuit-opacity: 0.40 !important;
}

.card-grid > .brand-card:nth-child(11n + 6),
.preview-grid > .preview-card:nth-child(11n + 6) {
  --circuit-image: url("octogons.png") !important;
  --circuit-opacity: 0.32 !important;
}

.card-grid > .brand-card:nth-child(11n + 7),
.preview-grid > .preview-card:nth-child(11n + 7) {
  --circuit-image: url("circuit4.png") !important;
  --circuit-opacity: 0.40 !important;
}

.card-grid > .brand-card:nth-child(11n + 8),
.preview-grid > .preview-card:nth-child(11n + 8) {
  --circuit-image: url("cubes.png") !important;
  --circuit-opacity: 0.32 !important;
}

.card-grid > .brand-card:nth-child(11n + 9),
.preview-grid > .preview-card:nth-child(11n + 9) {
  --circuit-image: url("circuit5.png") !important;
  --circuit-opacity: 0.40 !important;
}

.card-grid > .brand-card:nth-child(11n + 10),
.preview-grid > .preview-card:nth-child(11n + 10) {
  --circuit-image: url("diamonds.png") !important;
  --circuit-opacity: 0.32 !important;
}

.card-grid > .brand-card:nth-child(11n + 11),
.preview-grid > .preview-card:nth-child(11n + 11) {
  --circuit-image: url("circuit6.png") !important;
  --circuit-opacity: 0.40 !important;
}

/* ================================
   GLOBAL MIXED SECTION PANEL BACKGROUNDS
   Safe background assets only.
   ================================ */

.section:nth-of-type(11n + 1) > .section-panel {
  --circuit-image: url("circuit6.png") !important;
  --circuit-opacity: 0.32 !important;
}

.section:nth-of-type(11n + 2) > .section-panel {
  --circuit-image: url("Circuits.png") !important;
  --circuit-opacity: 0.28 !important;
}

.section:nth-of-type(11n + 3) > .section-panel {
  --circuit-image: url("triangles.png") !important;
  --circuit-opacity: 0.26 !important;
}

.section:nth-of-type(11n + 4) > .section-panel {
  --circuit-image: url("circuit2.png") !important;
  --circuit-opacity: 0.32 !important;
}

.section:nth-of-type(11n + 5) > .section-panel {
  --circuit-image: url("octogons.png") !important;
  --circuit-opacity: 0.28 !important;
}

.section:nth-of-type(11n + 6) > .section-panel {
  --circuit-image: url("cubes.png") !important;
  --circuit-opacity: 0.28 !important;
}

.section:nth-of-type(11n + 7) > .section-panel {
  --circuit-image: url("circuit3.png") !important;
  --circuit-opacity: 0.32 !important;
}

.section:nth-of-type(11n + 8) > .section-panel {
  --circuit-image: url("diamonds.png") !important;
  --circuit-opacity: 0.28 !important;
}

.section:nth-of-type(11n + 9) > .section-panel {
  --circuit-image: url("circuit4.png") !important;
  --circuit-opacity: 0.32 !important;
}

.section:nth-of-type(11n + 10) > .section-panel {
  --circuit-image: url("circuit1.png") !important;
  --circuit-opacity: 0.32 !important;
}

.section:nth-of-type(11n + 11) > .section-panel {
  --circuit-image: url("circuit5.png") !important;
  --circuit-opacity: 0.32 !important;
}

/* ================================
   LOGOS / CONTACT / TABLES
   ================================ */

.logo-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.logo-chip {
  max-height: 110px;
  width: auto;
  object-fit: contain;
  opacity: 0.96;
}

.founder-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 34px;
  align-items: center;
}

.founder-photo {
  width: 240px;
  border-radius: 22px;
  border: 1px solid rgba(214, 162, 74, 0.48);
  box-shadow:
    0 0 34px rgba(0, 0, 0, 0.72),
    0 0 22px rgba(214, 162, 74, 0.13);
  filter: brightness(0.82) contrast(1.04) saturate(0.92);
}

.contact-lines {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-line {
  padding: 16px 18px;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.36);
  border: 1px solid rgba(214, 162, 74, 0.15);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 26px;
  overflow: hidden;
  border-radius: 18px;
}

.data-table th,
.data-table td {
  padding: 16px 14px;
  border: 1px solid rgba(214, 162, 74, 0.15);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  font-family: "Street Reich", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  letter-spacing: 0.04em;
  background: rgba(214, 162, 74, 0.08);
  color: #f6db99;
}

/* ================================
   SUPPORT FORM
   ================================ */

.support-form {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  color: var(--gold-bright);
  font-size: 1rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(214, 162, 74, 0.28);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.52);
  color: var(--parchment);
  font-family: "Ghost Theory", Georgia, serif;
  font-size: 1.05rem;
  padding: 14px 16px;
  outline: none;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(244, 214, 143, 0.72);
  box-shadow: 0 0 0 3px rgba(214, 162, 74, 0.12);
}

.form-note {
  color: rgba(239, 224, 180, 0.72);
  font-size: 0.98rem;
  line-height: 1.5;
}

/* ================================
   FOOTER
   ================================ */

.site-footer {
  margin-top: 74px;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.58);
}

.footer-shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  color: var(--muted);
}

.footer-logo {
  height: 54px;
  width: auto;
  opacity: 0.85;
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 980px) {
  .nav-shell {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    border-radius: 18px;
  }

  .hero,
  .page-hero,
  .founder-card,
  .card-grid.two,
  .card-grid.three,
  .preview-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  .hero-art {
    min-height: 380px;
  }

  .hero-emblem {
    width: min(560px, 100%);
    max-height: 560px;
  }

  .page-hero {
    min-height: auto;
    padding-top: 56px;
  }

  .page-hero-art {
    min-height: 320px;
  }

  .page-hero-image {
    width: min(460px, 100%);
    max-height: 460px;
  }

  .founder-photo {
    width: 210px;
  }

  .footer-shell {
    flex-direction: column;
    align-items: flex-start;
  }
}