:root {
  --bg: #050505;
  --panel: #0c0c0f;
  --panel-light: #141419;
  --text: #f4f4f6;
  --muted: #b6b6c0;
  --red: #f10812;
  --red-dark: #9e050b;
  --blue: #00aaff;
  --green: #7ee000;
  --gold: #ffbf00;
  --purple: #a855f7;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(241, 8, 18, 0.16), transparent 34rem),
    radial-gradient(circle at top right, rgba(0, 170, 255, 0.14), transparent 34rem),
    var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(18px, 5vw, 70px);
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav a:hover { color: var(--text); }

.nav-cta {
  color: var(--text) !important;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: 0 0 22px rgba(241, 8, 18, 0.35);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 38px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 86px 22px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,5,5,0.96), rgba(5,5,5,0.46)),
    radial-gradient(circle at 20% 70%, rgba(241, 8, 18, 0.26), transparent 24rem),
    radial-gradient(circle at 80% 45%, rgba(0, 170, 255, 0.18), transparent 26rem);
  pointer-events: none;
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 42px;
  align-items: center;
  width: 100%;
}

.eyebrow {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 900;
  font-size: 0.78rem;
  margin: 0 0 14px;
}

h1, h2, h3 { line-height: 1.08; margin: 0; }

h1 {
  font-size: clamp(2.8rem, 7vw, 6rem);
  letter-spacing: -0.06em;
  max-width: 880px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.04em;
}

h3 { font-size: 1.25rem; }

.hero-subtitle {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.15rem;
  margin: 26px 0 22px;
}

.slogan {
  font-size: 1.05rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.slogan strong { color: var(--red); }

.hero-actions, .contact-card {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn.primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white;
  box-shadow: 0 0 30px rgba(241, 8, 18, 0.38);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--border);
}

.btn.secondary:hover {
  border-color: rgba(0, 170, 255, 0.55);
  box-shadow: 0 0 24px rgba(0, 170, 255, 0.15);
}

.btn.wide { width: 100%; }

.hero-showcase {
  position: relative;
  background: linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-showcase img {
  width: 100%;
  height: min(70vh, 740px);
  object-fit: cover;
  object-position: center;
  border-radius: 22px;
}

.hero-badge {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 18px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(12px);
  border-radius: 18px;
}

.hero-badge strong { display: block; }
.hero-badge span { color: var(--muted); }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding-top: 34px;
}

.trust-strip div {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.trust-strip strong { display: block; }
.trust-strip span { color: var(--muted); font-size: 0.92rem; }

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
  border-top: 1px solid var(--border);
}

.intro p, .section-heading p, .split p, .area-card p, .card p, .quote-box p, .legal-note, .small-note,
.tier-subtitle, .tier-performance, .tier-games, .crc-includes-panel p {
  color: var(--muted);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.wide-heading { max-width: 940px; }

.grid { display: grid; gap: 18px; }
.services-grid { grid-template-columns: repeat(4, 1fr); }
.two-grid { grid-template-columns: repeat(2, 1fr); }

.card, .quote-box, .area-card, .contact-card, .request-form, .gallery-feature, .tier-overview-card, .build-tier, .crc-includes-panel {
  background: linear-gradient(145deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.card {
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--blue));
  opacity: 0.85;
}

.card h3, .quote-box h3 { margin-bottom: 12px; }

.tier-overview-card {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
}

.tier-image-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--border);
  background: #000;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
}

.tier-image-button img {
  width: 100%;
  height: auto;
  transition: transform .25s ease;
}

.tier-image-button:hover img {
  transform: scale(1.015);
}

.build-tier-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.build-tier {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.build-tier::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  z-index: 2;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

.performance-tier::before { background: linear-gradient(90deg, var(--blue), #3b82f6); }
.elite-tier::before { background: linear-gradient(90deg, var(--purple), var(--blue)); }
.ultimate-tier::before { background: linear-gradient(90deg, var(--gold), var(--red)); }

.featured-tier {
  border-color: rgba(168, 85, 247, 0.45);
  background:
    radial-gradient(circle at top right, rgba(168, 85, 247, 0.14), transparent 22rem),
    linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025));
}

.build-tier > .tier-image-button {
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--border);
}

.build-tier > .tier-image-button img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
}

.tier-content {
  padding: 24px;
}

.tier-topline {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.tier-topline span {
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.82rem;
}

.tier-topline strong {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(241, 8, 18, 0.14);
  border: 1px solid rgba(241, 8, 18, 0.34);
  color: #fff;
  white-space: nowrap;
}

.tier-subtitle { margin: 12px 0 18px; }

.tier-specs {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.tier-specs li {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(0,0,0,0.22);
  color: var(--muted);
}

.tier-specs strong { color: var(--text); }

.crc-includes-panel {
  margin-top: 18px;
  background: linear-gradient(135deg, rgba(241, 8, 18, 0.08), rgba(0, 170, 255, 0.07));
}

.crc-includes-panel h3 { margin-bottom: 18px; }

.includes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.includes-grid span {
  display: block;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.24);
  color: var(--text);
  font-weight: 800;
  font-size: 0.94rem;
}

.gallery-feature {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 32px;
}

.gallery-feature img {
  width: 100%;
  border-radius: 18px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-item {
  position: relative;
  display: block;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  min-height: 260px;
  padding: 0;
  text-align: left;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform .25s ease;
}

.gallery-item:hover img { transform: scale(1.03); }

.gallery-item span {
  position: absolute;
  inset: auto 0 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.88));
}

.gallery-item strong { display: block; }
.gallery-item small { display: block; color: var(--muted); line-height: 1.3; margin-top: 4px; }

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 46px;
  align-items: start;
}

.steps { display: grid; gap: 16px; }

.step {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.035);
  border-radius: 18px;
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(241, 8, 18, 0.14);
  color: var(--red);
  font-weight: 900;
  border: 1px solid rgba(241, 8, 18, 0.36);
}

.step p { margin: 8px 0 0; color: var(--muted); }

.pricing-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, rgba(241, 8, 18, 0.08), rgba(0, 170, 255, 0.07));
  border: 1px solid var(--border);
  border-radius: 30px;
  margin-top: 60px;
  margin-bottom: 60px;
}

.quote-box ul {
  margin: 0 0 18px;
  padding-left: 20px;
  color: var(--text);
}

.small-note { font-size: 0.92rem; margin-bottom: 0; }
.highlight { min-height: 210px; }
.legal-note { margin-top: 24px; font-size: 0.95rem; }

.area-card p:first-child { margin-top: 0; }
.area-card p:last-child { margin-bottom: 0; }

.contact { padding-bottom: 90px; }

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  align-items: start;
}

.contact-card { flex-direction: column; }

.contact-details {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.96rem;
}

.request-form { display: grid; gap: 16px; }

label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 900;
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: rgba(5, 5, 5, 0.6);
  color: var(--text);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  outline: none;
}

textarea { resize: vertical; }

input:focus, select:focus, textarea:focus {
  border-color: rgba(0, 170, 255, 0.75);
  box-shadow: 0 0 0 4px rgba(0, 170, 255, 0.12);
}

.hidden-field { display: none; }

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 70px);
  border-top: 1px solid var(--border);
  color: var(--muted);
  background: #030303;
}

.footer a { color: var(--text); font-weight: 900; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(0,0,0,0.88);
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: min(1200px, 94vw);
  max-height: 82vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}

.lightbox-caption {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  max-width: min(900px, 90vw);
  padding: 14px 18px;
  background: rgba(0,0,0,0.68);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-align: center;
}

.lightbox-caption strong { display: block; }
.lightbox-caption span { color: var(--muted); }

.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-card {
  max-width: 720px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 42px;
  background: linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
  box-shadow: var(--shadow);
}

.thank-you-card img {
  width: 150px;
  margin: 0 auto 24px;
  border-radius: 18px;
}

.thank-you-card p { color: var(--muted); }

@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }

  .nav {
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(12, 12, 15, 0.98);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow);
  }

  .nav.open { display: flex; }

  .hero { min-height: auto; }

  .hero-content, .intro, .split, .pricing-panel, .contact-grid, .gallery-feature, .tier-overview-card {
    grid-template-columns: 1fr;
  }

  .hero-showcase { order: -1; }

  .hero-showcase img { max-height: 560px; }

  .two-grid, .services-grid, .trust-strip, .build-tier-grid, .includes-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .tier-topline { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  .brand span { display: none; }
  .section { padding: 64px 18px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .step { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer { flex-direction: column; }
  h1 { font-size: 2.7rem; }
  .hero-showcase img { height: 440px; }
  .lightbox-caption { display: none; }
}
