:root {
  --bg: #0A0C10;
  --panel: rgba(255,255,255,0.05);
  --panel2: rgba(255,255,255,0.08);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.70);
  --line: rgba(255,255,255,0.12);
  --amber: #FF9F1A;
  --gold: #D8A441;
  --red: #8B1E1E;
  --orange: #E85D04;
  --black: #0B0D10;
  --radius: 18px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 800px at 70% -10%, rgba(255,159,26,0.12), transparent 60%),
              radial-gradient(900px 700px at 10% 20%, rgba(107,110,114,0.10), transparent 55%),
              var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(10,12,16,0.72);
  border-bottom: 1px solid var(--line);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

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

.brand__mark {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(255,159,26,0.35);
  background: linear-gradient(135deg, rgba(255,159,26,0.20), rgba(216,164,65,0.08));
  font-family: Orbitron, Inter, sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand__text strong {
  display: block;
  font-family: Orbitron, Inter, sans-serif;
  letter-spacing: 0.5px;
}
.brand__text em {
  display: block;
  font-style: normal;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-weight: 600;
}
.nav a:hover { color: var(--text); text-decoration: none; }

.navbtn {
  display: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  color: var(--text);
  padding: 10px 12px;
  font-size: 18px;
  cursor: pointer;
}

.mobile {
  border-top: 1px solid var(--line);
  padding: 10px 16px 14px;
  display: grid;
  gap: 10px;
  background: rgba(10,12,16,0.88);
}
.mobile a {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  color: var(--muted);
  font-weight: 600;
}
.mobile a:hover { color: var(--text); }

.hero {
  position: relative;
  padding: 80px 0 34px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,12,16,0.65) 0%, rgba(10,12,16,0.92) 70%),
    url("assets/hero_fortress.png") center/cover no-repeat;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.02);
}

.hero__content {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: rgba(255,255,255,0.78);
  margin: 0 0 12px;
}
.kicker::before {
  content: "";
  width: 9px; height: 9px;
  border-radius: 99px;
  background: var(--amber);
  box-shadow: 0 0 0 6px rgba(255,159,26,0.12);
}

h1 {
  margin: 0 0 10px;
  font-family: Orbitron, Inter, sans-serif;
  font-size: clamp(34px, 4.2vw, 56px);
  letter-spacing: 0.02em;
}

.sub {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  max-width: 52ch;
}

.cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  text-decoration: none !important;
}
.btn:hover { background: rgba(255,255,255,0.10); }
.btn--primary {
  border-color: rgba(255,159,26,0.35);
  background: linear-gradient(135deg, rgba(255,159,26,0.22), rgba(216,164,65,0.10));
}
.btn--primary:hover {
  background: linear-gradient(135deg, rgba(255,159,26,0.28), rgba(216,164,65,0.14));
}
.btn--ghost {
  background: rgba(255,255,255,0.04);
}

.badges {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.badge {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
}

.hero__card .card {
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(10,12,16,0.62);
  padding: 18px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.45);
}
.card__title {
  font-family: Orbitron, Inter, sans-serif;
  letter-spacing: 0.05em;
  font-size: 12px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 12px;
}
.card__line {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.card__line:first-of-type { border-top: 0; }
.card__footer {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.10);
  color: var(--muted);
}
.dot {
  width: 10px; height: 10px; border-radius: 99px;
}
.dot.amber { background: var(--amber); box-shadow: 0 0 0 5px rgba(255,159,26,0.14); }
.dot.red { background: var(--red); box-shadow: 0 0 0 5px rgba(139,30,30,0.14); }
.dot.blue { background: #4c7aa6; box-shadow: 0 0 0 5px rgba(76,122,166,0.14); }

.strip {
  padding: 52px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}

h2 {
  margin: 0 0 18px;
  font-family: Orbitron, Inter, sans-serif;
  letter-spacing: 0.02em;
  font-size: 26px;
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.panel {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  padding: 16px;
}
.panel h3 {
  margin: 0 0 8px;
  font-size: 16px;
}
.panel p { margin: 0; color: var(--muted); }

.showcase {
  padding: 58px 0;
}
.showcase__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.muted { color: var(--muted); }

.shots {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.shot {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}
.shot img {
  width: 100%;
  display: block;
  aspect-ratio: 9/16;
  object-fit: cover;
}
.shot figcaption {
  padding: 10px 12px;
  border-top: 1px solid var(--line);
  color: rgba(255,255,255,0.82);
  font-weight: 700;
}

.callout {
  margin-top: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,159,26,0.22);
  background: linear-gradient(135deg, rgba(255,159,26,0.14), rgba(255,255,255,0.03));
  padding: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.callout h3 { margin: 0 0 6px; }
.callout p { margin: 0; color: var(--muted); max-width: 70ch; }

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}
.pillrow {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill {
  border: 1px solid var(--line);
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.82);
  font-weight: 700;
  font-size: 12px;
}
.poster {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  position: relative;
}
.poster img {
  width: 100%;
  display: block;
  aspect-ratio: 16/12;
  object-fit: cover;
}
.poster__tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(10,12,16,0.72);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 700;
}

.contact {
  padding: 58px 0 32px;
}
.contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
  margin-top: 16px;
}
.contact__card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  padding: 16px;
}
.contact__card h3 { margin: 0 0 8px; }
.row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
label { display: grid; gap: 6px; margin-top: 10px; }
label span { font-weight: 700; color: rgba(255,255,255,0.85); font-size: 13px; }
input, textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(10,12,16,0.55);
  color: var(--text);
  padding: 12px 12px;
  font: inherit;
}
input:focus, textarea:focus {
  outline: 2px solid rgba(255,159,26,0.25);
  border-color: rgba(255,159,26,0.22);
}
code {
  padding: 2px 6px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
}
.tiny { margin: 10px 0 0; font-size: 12px; color: rgba(255,255,255,0.70); min-height: 16px; }

.footer {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero__content { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .shots, .grid3 { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .nav { display: none; }
  .navbtn { display: inline-flex; }
}
