/* SHTS LLC — Broadcast & Live Events Rental
   Clean modern dark theme. Hand-built, responsive. */

:root {
  --bg: #0d1117;
  --bg-alt: #131b26;
  --panel: #182230;
  --line: #24303f;
  --text: #e8edf3;
  --text-dim: #9fb0c3;
  --accent: #2f81f7;
  --accent-hover: #4f9bff;
  --accent-soft: rgba(47,129,247,0.12);
  --radius: 12px;
  --maxw: 1140px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(13,17,23,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.brand { font-size: 20px; font-weight: 700; letter-spacing: 0.5px; display: inline-flex; align-items: center; }
.brand span { color: var(--accent); }
.brand-logo { height: 40px; width: auto; display: block; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--text-dim); font-size: 15px; font-weight: 500; transition: color .15s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--accent); color: #fff !important;
  padding: 9px 18px; border-radius: 8px; font-weight: 600 !important;
  transition: background .15s;
}
.nav-cta:hover { background: var(--accent-hover); }
.nav-toggle { display: none; background: none; border: 0; color: var(--text); font-size: 26px; cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
  padding: 104px 0 96px;
  background:
    radial-gradient(1200px 500px at 75% -10%, rgba(47,129,247,0.16), transparent 60%),
    linear-gradient(180deg, #0d1117 0%, #10161f 100%);
  border-bottom: 1px solid var(--line);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--accent);
  background: var(--accent-soft); padding: 6px 14px; border-radius: 100px; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(34px, 5vw, 56px); line-height: 1.08; font-weight: 800; letter-spacing: -0.5px; }
.hero p.lead { margin-top: 22px; font-size: 19px; color: var(--text-dim); max-width: 540px; }
.hero-actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-img {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  aspect-ratio: 4/3; background: var(--panel);
  display:flex; align-items:center; justify-content:center;
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; font-weight: 600; font-size: 15px;
  padding: 13px 26px; border-radius: 9px; cursor: pointer; border: 1px solid transparent;
  transition: all .15s;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Section headings ---------- */
.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2 { font-size: clamp(28px, 3.5vw, 38px); font-weight: 800; letter-spacing: -0.5px; }
.section-head p { margin-top: 14px; color: var(--text-dim); font-size: 17px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Cards / grid ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; transition: border-color .15s, transform .15s;
}
.card:hover { border-color: var(--accent); transform: translateY(-2px); }
.card .icon {
  width: 46px; height: 46px; border-radius: 10px; background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 18px;
}
.card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.card p { color: var(--text-dim); font-size: 15px; }

/* ---------- Gear list ---------- */
.gear-item {
  display: grid; grid-template-columns: 120px 1fr auto; gap: 24px; align-items: center;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 26px; margin-bottom: 16px;
}
.gear-thumb {
  width: 120px; height: 80px; border-radius: 8px; background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 26px;
  border: 1px solid var(--line);
}
.gear-thumb-img { background: #fff; padding: 8px; overflow: hidden; }
.gear-thumb-img img { width: 100%; height: 100%; object-fit: contain; }
.gear-info h3 { font-size: 18px; margin-bottom: 4px; }
.gear-info p { color: var(--text-dim); font-size: 14px; }
.gear-specs { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.gear-specs li {
  font-size: 12px; color: var(--text-dim); background: var(--bg-alt);
  padding: 4px 10px; border-radius: 6px; border: 1px solid var(--line);
}

/* ---------- Trust bar ---------- */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-alt); }
.trust .wrap { padding-top: 26px; padding-bottom: 26px; text-align: center; color: var(--text-dim); font-size: 15px; }
.trust strong { color: var(--text); }

/* ---------- Flagship logo strip ---------- */
.logostrip { background: var(--bg-alt); border-top: 1px solid var(--line); padding: 40px 0 20px; }
.logostrip .brands-label { text-align: center; font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-dim); margin-bottom: 26px; }
.logo-row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 40px 52px; max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
}
.logo-row img {
  height: 26px; width: auto; opacity: 0.7;
  transition: opacity .18s, transform .18s;
}
.logo-row img:hover { opacity: 1; transform: translateY(-2px); }
@media (max-width: 860px) {
  .logo-row { gap: 22px 30px; }
  .logo-row img { height: 20px; }
}

/* ---------- Brand marquee ---------- */
.brands {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg-alt); padding: 34px 0; overflow: hidden;
}
.brands-label {
  text-align: center; font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: 22px;
}
.marquee {
  display: flex; width: 100%; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex; flex-shrink: 0; align-items: center;
  gap: 44px; padding-right: 44px;
  animation: marquee-scroll 60s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font); font-size: 17px; font-weight: 700; white-space: nowrap;
  color: var(--text-dim); letter-spacing: 0.3px; transition: color .15s;
}
.marquee-track span:hover { color: var(--accent); }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .marquee { overflow-x: auto; }
}

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(90deg, var(--accent) 0%, #1e5fd6 100%); border-radius: 16px; padding: 52px; text-align: center; }
.cta-band h2 { font-size: 30px; font-weight: 800; color: #fff; }
.cta-band p { color: rgba(255,255,255,0.85); margin-top: 10px; font-size: 17px; }
.cta-band .btn { margin-top: 26px; background: #fff; color: var(--accent); }
.cta-band .btn:hover { background: #eef4ff; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 14px; color: var(--text-dim); font-weight: 500; }
.field input, .field textarea, .field select {
  background: var(--bg); border: 1px solid var(--line); border-radius: 9px;
  padding: 12px 14px; color: var(--text); font-family: inherit; font-size: 15px;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 120px; }

/* ---------- About ---------- */
.prose { max-width: 720px; }
.prose p { color: var(--text-dim); font-size: 17px; margin-bottom: 18px; }
.prose h3 { font-size: 22px; margin: 32px 0 12px; }
.stat-row { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 36px; }
.stat .n { font-size: 34px; font-weight: 800; color: var(--accent); }
.stat .l { color: var(--text-dim); font-size: 14px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-alt); padding: 48px 0 32px; }
.footer-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 28px; }
.footer-brand .brand { font-size: 22px; margin-bottom: 10px; }
.footer-brand p { color: var(--text-dim); font-size: 14px; max-width: 320px; }
.footer-col h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-dim); margin-bottom: 14px; }
.footer-col a { display: block; color: var(--text-dim); font-size: 15px; margin-bottom: 9px; transition: color .15s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { margin-top: 38px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--text-dim); font-size: 13px; text-align: center; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-img { order: -1; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--line); padding: 20px 24px; gap: 18px;
  }
  .nav-toggle { display: block; }
  .gear-item { grid-template-columns: 1fr; text-align: center; }
  .gear-thumb { margin: 0 auto; }
  .gear-specs { justify-content: center; }
  .cta-band { padding: 40px 24px; }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(6,10,15,0.9); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 88vh; width: auto; height: auto;
  background: #fff; border-radius: 12px; padding: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute; top: 22px; right: 28px;
  background: none; border: none; color: #fff; font-size: 40px; line-height: 1;
  cursor: pointer; opacity: 0.8;
}
.lightbox-close:hover { opacity: 1; }
