:root {
  --bg-deep: #0a0e0d;
  --bg-panel: #111816;
  --bg-card: #151c19;
  --border: #2a3832;
  --text: #d4e0d8;
  --text-muted: #7a8f85;
  --accent: #c9a227;
  --accent-dim: #8a7020;
  --accent-glow: rgba(201, 162, 39, 0.35);
  --ok: #4ade80;
  --font-display: "Orbitron", sans-serif;
  --font-body: "Rajdhani", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg-deep);
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 14, 13, 0.92) 0%, var(--bg-deep) 40%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 79px,
      rgba(42, 56, 50, 0.12) 79px,
      rgba(42, 56, 50, 0.12) 80px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 79px,
      rgba(42, 56, 50, 0.08) 79px,
      rgba(42, 56, 50, 0.08) 80px
    );
  pointer-events: none;
  z-index: 0;
}

.noise {
  position: fixed;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.top {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 14, 13, 0.85);
  backdrop-filter: blur(12px);
}

.logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-decoration: none;
  text-shadow: 0 0 24px var(--accent-glow);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.75rem 1.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a:not(.btn) {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}

.nav a:not(.btn):hover {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s, color 0.2s;
}

.btn--primary {
  background: linear-gradient(145deg, var(--accent) 0%, var(--accent-dim) 100%);
  color: #0a0e0d;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3), 0 4px 20px var(--accent-glow);
}

.btn--primary:hover {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3), 0 6px 28px var(--accent-glow);
  filter: brightness(1.08);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn--outline:hover {
  background: rgba(201, 162, 39, 0.12);
}

.btn--lg {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

.btn--dark {
  background: var(--bg-deep);
  color: var(--text);
  border-color: var(--border);
}

.btn--dark:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--light {
  background: var(--accent);
  color: #0a0e0d;
  border-color: var(--accent);
}

.btn--light:hover {
  filter: brightness(1.1);
}

main {
  position: relative;
  z-index: 2;
}

.hero {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1fr 280px;
    padding-top: 4rem;
    padding-bottom: 5rem;
  }
}

.hero__grid {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 162, 39, 0.08), transparent 55%),
    linear-gradient(135deg, transparent 40%, rgba(42, 56, 50, 0.25) 100%);
  border-radius: 4px;
  pointer-events: none;
}

.hero__content {
  position: relative;
}

.hero__tag {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: #eef4ef;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}

.hero__lead {
  margin: 0 0 1.75rem;
  max-width: 36rem;
  color: var(--text-muted);
  font-size: 1.15rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  background: var(--bg-panel);
  box-shadow: inset 0 0 0 1px rgba(201, 162, 39, 0.06);
}

.tactical {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.tactical:last-child {
  border-bottom: none;
}

.tactical__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

.tactical__value {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.tactical__value--ok {
  color: var(--ok);
}

.section {
  padding: 3.5rem 1.5rem;
}

.section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #eef4ef;
}

.section__text {
  margin: 0 0 1.25rem;
  max-width: 42rem;
  color: var(--text-muted);
}

.promo--dark {
  background: linear-gradient(180deg, var(--bg-panel) 0%, var(--bg-deep) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
}

.link-arrow::after {
  content: "→";
  transition: transform 0.2s;
}

.link-arrow:hover::after {
  transform: translateX(4px);
}

.cards {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.card:hover {
  border-color: rgba(201, 162, 39, 0.4);
  box-shadow: 0 0 0 1px var(--accent-glow);
}

.card__icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
}

.card__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #eef4ef;
}

.card__text {
  margin: 0;
  font-size: 1rem;
  color: var(--text-muted);
}

.shots {
  border-top: 1px solid var(--border);
  background: var(--bg-deep);
}

.shots__intro {
  margin-bottom: 1.5rem;
}

.shots__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .shots__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.shot {
  margin: 0;
  padding: 0;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow:
    inset 0 0 0 1px rgba(201, 162, 39, 0.06),
    0 8px 32px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.shot:hover {
  border-color: rgba(201, 162, 39, 0.35);
  box-shadow:
    inset 0 0 0 1px rgba(201, 162, 39, 0.1),
    0 12px 40px rgba(0, 0, 0, 0.45);
}

.shot img {
  display: block;
  width: 100%;
  height: auto;
}

.promo--accent {
  background:
    linear-gradient(135deg, rgba(201, 162, 39, 0.18) 0%, transparent 50%),
    var(--bg-panel);
  border-top: 1px solid rgba(201, 162, 39, 0.25);
}

.promo__banner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .promo__banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}

.promo__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: #eef4ef;
}

.promo__sub {
  margin: 0;
  color: var(--text-muted);
}

.promo__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.foot {
  padding: 2rem 1.5rem;
  text-align: center;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.95rem;
}

.foot a {
  color: var(--accent);
  text-decoration: none;
}

.foot a:hover {
  text-decoration: underline;
}
