/* ============================================
   SentryCam.AI — sentryai.cam marketing site
   ============================================ */

:root {
  /* Pulled from the SentryCam AI logo: blue arcs + red AI glow on near-black */
  --bg:        #05080f;          /* deep black like the logo backdrop */
  --bg-2:      #0a1018;
  --bg-3:      #111927;
  --line:      rgba(255,255,255,0.07);
  --line-2:    rgba(255,255,255,0.14);
  --text:      #eef3fb;
  --text-2:    #a8b3c7;
  --text-3:    #6e7892;
  --accent:    #1f8efb;          /* logo blue */
  --accent-2:  #56adff;
  --accent-3:  #6cc0ff;
  --silver:    #8a96a8;          /* metallic underside arcs */
  --silver-2:  #44505f;
  --red:       #ff2a2a;          /* the AI lens glow */
  --red-2:     #ff5151;
  --danger:    #f43f5e;
  --good:      #34d399;
  --radius:    14px;
  --radius-lg: 22px;
  --shadow:    0 20px 60px -20px rgba(0,0,0,0.7);
  --max:       1180px;
  --grad:      linear-gradient(135deg, #1f8efb 0%, #56adff 60%, #6cc0ff 100%);
  --grad-red:  linear-gradient(135deg, #ff2a2a 0%, #ff5151 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 8, 15, 0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; font-size: 18px; letter-spacing: -0.01em; color: var(--text); }
.brand__mark {
  width: 44px; height: 44px;
  object-fit: contain;
  display: inline-block;
  filter: drop-shadow(0 0 12px rgba(31,142,251,0.25));
  transition: filter .25s ease, transform .25s ease;
}
.brand:hover .brand__mark {
  filter: drop-shadow(0 0 16px rgba(255,42,42,0.55));
  transform: rotate(-8deg);
}
.brand__text { white-space: nowrap; }
.brand__accent { color: var(--accent); }
.brand--lg { font-size: 22px; }
.brand--lg .brand__mark { width: 56px; height: 56px; }

.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a { font-size: 14.5px; color: var(--text-2); font-weight: 500; transition: color .15s ease; }
.nav__links a:hover { color: var(--text); }
.nav__cta-secondary { padding: 6px 12px; border-radius: 999px; border: 1px solid var(--line-2); color: var(--text) !important; }
.nav__cta-secondary:hover { background: rgba(255,255,255,0.04); }

.nav__cta { display: flex; gap: 10px; align-items: center; }

@media (max-width: 920px) {
  .nav__links { display: none; }
}
@media (max-width: 540px) {
  .nav__cta .btn--ghost { display: none; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform .12s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.btn:active { transform: translateY(1px); }
.btn--sm { padding: 8px 14px; font-size: 13.5px; border-radius: 10px; }
.btn--lg { padding: 16px 22px; font-size: 16px; border-radius: 14px; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--grad);
  color: #05080f;
  box-shadow: 0 10px 30px -10px rgba(31, 142, 251, 0.55);
}
.btn--primary:hover { box-shadow: 0 14px 40px -10px rgba(31, 142, 251, 0.85); }

.btn--alert {
  background: var(--grad-red);
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(255, 42, 42, 0.55);
}
.btn--alert:hover { box-shadow: 0 14px 40px -10px rgba(255, 42, 42, 0.85); }

.btn--ghost {
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border-color: var(--line-2);
}
.btn--ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.22); }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 80px 0 90px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero__grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at top, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at top, #000 30%, transparent 80%);
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
}
.hero__glow--1 { width: 520px; height: 520px; background: #1f8efb; top: -140px; left: -120px; }
.hero__glow--2 { width: 540px; height: 540px; background: #ff2a2a; bottom: -200px; right: -160px; opacity: 0.22; }

/* Construction pole-camera anchor — bottom-right corner, fades toward center */
.hero__corner-photo {
  position: absolute;
  bottom: 0;
  right: 0;
  width: clamp(360px, 42vw, 580px);
  height: auto;
  opacity: 0.32;
  filter: saturate(0.85) brightness(0.75) contrast(1.05);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  /* Radial fade so the upper-left edge dissolves into the page */
  mask-image: radial-gradient(ellipse at 80% 90%, #000 30%, rgba(0,0,0,0.6) 55%, rgba(0,0,0,0) 85%);
  -webkit-mask-image: radial-gradient(ellipse at 80% 90%, #000 30%, rgba(0,0,0,0.6) 55%, rgba(0,0,0,0) 85%);
}
@media (max-width: 800px) {
  .hero__corner-photo { opacity: 0.18; width: 70vw; }
}


/* Giant translucent brand watermark behind hero content */
.hero__watermark {
  position: absolute;
  top: 50%;
  right: -120px;
  transform: translateY(-50%);
  width: min(820px, 60vw);
  height: auto;
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
  filter: blur(0.5px);
  z-index: 0;
  animation: slowSpin 90s linear infinite;
}
@keyframes slowSpin {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}
.hero__inner { position: relative; z-index: 1; }
@media (max-width: 960px) {
  .hero__watermark { right: -40%; opacity: 0.05; width: 110vw; }
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 56px 0 64px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 12px;
  border: 1px solid rgba(31,142,251,0.3);
  border-radius: 999px;
  background: rgba(31,142,251,0.07);
}
.eyebrow--alert {
  color: var(--red-2);
  border-color: rgba(255,42,42,0.35);
  background: rgba(255,42,42,0.08);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 14px var(--red);
  animation: pulse 1.4s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: 0.5; transform: scale(0.85); }
}

.hero__title {
  font-size: clamp(36px, 5.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 20px 0 18px;
  font-weight: 800;
}
.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  font-size: 18px;
  color: var(--text-2);
  max-width: 580px;
  margin: 0 0 28px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.hero__bullets {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 8px;
  color: var(--text-2);
  font-size: 14.5px;
}
.hero__bullets .check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(31,142,251,0.14); color: var(--accent);
  font-size: 12px; font-weight: 700; margin-right: 8px;
}

/* Mini camera lens — reuses the logo motif as a bullet icon */
.lens-mini {
  display: inline-block;
  width: 16px; height: 16px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #ff3030 0%, #ff3030 22%, transparent 30%),
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.4) 0%, transparent 30%),
    radial-gradient(circle at 50% 50%, #1a0608 0%, #05080f 70%);
  border: 1.5px solid #1f2530;
  box-shadow:
    0 0 0 1.5px #000,
    0 0 8px rgba(255,42,42,0.45);
  margin-right: 10px;
  vertical-align: -3px;
  animation: lensBlink 3s infinite;
}
@keyframes lensBlink {
  0%, 92%, 100% { box-shadow: 0 0 0 1.5px #000, 0 0 8px rgba(255,42,42,0.45); }
  94%, 98%      { box-shadow: 0 0 0 1.5px #000, 0 0 14px rgba(255,42,42,0.9); }
}

/* ============ HERO FORM ============ */
.hero__form {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.hero__form::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(31,142,251,0.45), transparent 50%, rgba(255,42,42,0.3));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.lead-form__title { margin: 0 0 4px; font-size: 22px; letter-spacing: -0.01em; }
.lead-form__sub   { margin: 0 0 18px; color: var(--text-2); font-size: 14px; }

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.field label { font-size: 13px; font-weight: 600; color: var(--text-2); }
.field input, .field select, .field textarea {
  font: inherit;
  background: rgba(11,18,32,0.6);
  border: 1px solid var(--line-2);
  color: var(--text);
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-3); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(31,142,251,0.18);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }

.field--check { margin-top: 4px; margin-bottom: 14px; }
.check-row { display: flex; align-items: center; gap: 10px; color: var(--text-2); font-size: 14px; }
.check-row input { width: 16px; height: 16px; accent-color: var(--accent); }

.honeypot {
  position: absolute !important;
  left: -10000px !important; top: auto !important;
  width: 1px !important; height: 1px !important;
  overflow: hidden !important;
}

.lead-form__legal { font-size: 11.5px; color: var(--text-3); margin-top: 12px; text-align: center; }

.form-status { margin-top: 12px; font-size: 14px; min-height: 1em; }
.form-status.success { color: var(--good); }
.form-status.error   { color: var(--danger); }

/* ============ TRUST STRIP ============ */
.trust {
  background: linear-gradient(180deg, rgba(31,142,251,0.04), transparent);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.trust__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust__stat strong {
  display: block;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.trust__stat span {
  display: block;
  font-size: 13px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
@media (max-width: 640px) {
  .trust__inner { grid-template-columns: repeat(2, 1fr); }
}

/* ============ GENERIC SECTION ============ */
.section { padding: 88px 0; }
.section--dark { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section__head--tight { margin-bottom: 28px; }
.section__head--tight .eyebrow { font-size: 13px; }
.section__title {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 16px 0 12px;
}
.section__sub { color: var(--text-2); font-size: 17px; margin: 0; }

/* ============ CARDS GRID ============ */
.cards-grid { display: grid; gap: 22px; }
.cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .cards-grid--3 { grid-template-columns: 1fr; } }

.card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color .2s ease, transform .2s ease;
}
.card:hover { border-color: rgba(31,142,251,0.4); transform: translateY(-2px); }

/* CCTV-style scan line that sweeps across the card on hover */
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(31,142,251,0) 48%,
    rgba(31,142,251,0.35) 50%,
    rgba(31,142,251,0) 52%,
    transparent 100%
  );
  transform: translateY(-100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease;
}
.card:hover::after {
  opacity: 1;
  animation: scan 1.6s linear infinite;
}
@keyframes scan {
  from { transform: translateY(-100%); }
  to   { transform: translateY(100%); }
}
.card__badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--grad);
  color: #05080f;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(31,142,251,0.1);
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}

/* Photo-topped product cards: photo fills the top, with a live status badge */
.card--with-media { padding-top: 0; }
.card--with-media .card__icon { display: none; }
.card__media {
  position: relative;
  margin: 0 -28px 18px;
  height: 240px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: #0a0d14;
}
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.card--with-media:hover .card__media img { transform: scale(1.04); }
.card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5,8,15,0.55) 100%);
  pointer-events: none;
}
.card__media-status {
  position: absolute;
  top: 14px; left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 11px;
  background: rgba(5,8,15,0.82);
  border: 1px solid rgba(255,42,42,0.4);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text);
  text-transform: uppercase;
  z-index: 2;
}
.card__media-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
  animation: pulse 1.4s infinite;
}
.card h3 { font-size: 20px; margin: 0 0 8px; letter-spacing: -0.01em; }
.card__sub { color: var(--text-2); font-size: 14.5px; margin: 0 0 16px; }
.card__list { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 8px; }
.card__list li {
  color: var(--text-2);
  font-size: 14px;
  padding-left: 22px;
  position: relative;
}
.card__list li::before {
  content: "→";
  position: absolute;
  left: 0; top: 0;
  color: var(--accent);
  font-weight: 700;
}
.card__price {
  background: rgba(11,18,32,0.5);
  border: 1px dashed var(--line-2);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 16px;
}
.card__price-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 4px;
}
.card__price-value {
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.card__price-value em {
  font-style: normal;
  color: var(--accent);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.card__price-unit {
  color: var(--text-2);
  font-size: 14px;
  font-weight: 600;
}

/* Tower plan toggle (Base / Pro) */
.plan-toggle {
  display: inline-flex;
  background: rgba(5,8,15,0.55);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 3px;
  margin-bottom: 16px;
  gap: 0;
}
.plan-tab {
  border: none;
  background: transparent;
  color: var(--text-2);
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 7px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.plan-tab:hover { color: var(--text); }
.plan-tab.is-active {
  background: var(--grad);
  color: #05080f;
  box-shadow: 0 4px 14px -6px rgba(31,142,251,0.6);
}

/* Show only the active plan's feature list */
.plan-features { display: none; }
.card--tower[data-active-plan="base"] .plan-features--base { display: grid; }
.card--tower[data-active-plan="pro"]  .plan-features--pro  { display: grid; }

/* ============ TOWER MARQUEE (real-deployment showcase) ============ */
.marquee {
  position: relative;
  padding: 64px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
/* Soft Tower 1 backdrop — confined to the LEFT half of the section,
   fades to transparent before reaching the inset Saltgrass photo */
.marquee__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 58%;
  height: 100%;
  object-fit: cover;
  object-position: center 75%;
  opacity: 0.7;
  filter: saturate(1) brightness(0.85);
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(90deg, #000 0%, #000 78%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 78%, transparent 100%);
}
/* Overlay only darkens where the photo is, so the right (inset photo) stays clean */
.marquee::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 58%;
  background:
    linear-gradient(90deg, rgba(5,8,15,0.55) 0%, rgba(5,8,15,0.20) 65%, transparent 100%),
    linear-gradient(180deg, rgba(5,8,15,0.40) 0%, rgba(5,8,15,0.10) 50%, rgba(5,8,15,0.45) 100%);
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 800px) {
  .marquee__bg, .marquee::before { width: 100%; }
  .marquee__bg { mask-image: linear-gradient(180deg, #000 0%, #000 70%, transparent 100%); }
}
.marquee__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: center;
}
.marquee__caption { text-shadow: 0 1px 8px rgba(0,0,0,0.5); }
.marquee__title { text-shadow: 0 2px 12px rgba(0,0,0,0.6); }
.marquee__copy { display: flex; flex-direction: column; gap: 14px; }
.marquee__tag {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 11px;
  background: rgba(5,8,15,0.75);
  border: 1px solid rgba(255,42,42,0.4);
  border-radius: 999px;
  color: var(--text);
}
.marquee__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
  animation: pulse 1.4s infinite;
}
.marquee__title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.15;
}
.marquee__caption {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-2);
  max-width: 540px;
}
.marquee__photo {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;            /* matches the square source photos */
  max-width: 340px;
  background: #0a0d14;
  border: 1px solid var(--line-2);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.6);
}
.marquee__photo img {
  width: 100%; height: 100%;
  object-fit: contain;            /* show the whole picture, no crop */
  object-position: center;
  background: #0a0d14;
}

/* ============ LIVE FEED treatment ============ */
.marquee__photo--feed {
  border-color: rgba(255,42,42,0.45);
  box-shadow:
    0 20px 50px -20px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,42,42,0.18),
    0 0 40px -10px rgba(255,42,42,0.35);
}

/* Vignette so the HUD reads on top */
.marquee__photo--feed::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.45) 0%, transparent 18%, transparent 80%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
  z-index: 1;
}

/* L-shaped corner brackets — like a viewfinder */
.feed-corner {
  position: absolute;
  width: 18px; height: 18px;
  border: 2px solid #ff5151;
  z-index: 3;
  filter: drop-shadow(0 0 6px rgba(255,42,42,0.55));
}
.feed-corner--tl { top: 10px; left: 10px;  border-right: none; border-bottom: none; }
.feed-corner--tr { top: 10px; right: 10px; border-left:  none; border-bottom: none; }
.feed-corner--bl { bottom: 10px; left: 10px;  border-right: none; border-top: none; }
.feed-corner--br { bottom: 10px; right: 10px; border-left:  none; border-top: none; }

/* HUD bars: top + bottom */
.feed-hud {
  position: absolute;
  left: 14px; right: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 3;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  pointer-events: none;
}
.feed-hud--top    { top: 14px; }
.feed-hud--bottom { bottom: 14px; }

.feed-rec, .feed-cam, .feed-time, .feed-label {
  background: rgba(5,8,15,0.72);
  padding: 3px 8px;
  border-radius: 4px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.feed-rec {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ff8080;
}
.feed-rec__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
  animation: pulse 1.4s infinite;
}
.feed-time { font-variant-numeric: tabular-nums; }
.feed-label { color: var(--accent-2); }

/* Slow-moving scan line — adds the "live feed" twitch */
.feed-scan {
  position: absolute;
  left: 0; right: 0;
  height: 60px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(255,255,255,0.06) 45%,
    rgba(255,255,255,0.10) 50%,
    rgba(255,255,255,0.06) 55%,
    transparent 100%);
  z-index: 2;
  pointer-events: none;
  animation: feedScan 6s linear infinite;
}
@keyframes feedScan {
  0%   { top: -60px; }
  100% { top: 100%; }
}
@media (max-width: 800px) {
  .marquee__inner { grid-template-columns: 1fr; gap: 28px; justify-items: start; }
  .marquee__photo { max-width: 320px; aspect-ratio: 1 / 1; }
}
@media (max-width: 480px) {
  .marquee { padding: 40px 0; }
  .marquee__photo { max-width: 100%; }
}

/* ============ (removed: FIELD DEPLOYMENTS GALLERY) ============ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line-2);
  background: #0a0d14;
  aspect-ratio: 3 / 4;
  transition: border-color .25s ease, transform .25s ease;
}
.gallery__item:hover {
  border-color: rgba(31,142,251,0.55);
  transform: translateY(-3px);
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery__item:hover img { transform: scale(1.05); }

/* Feature item gets an accent border + subtle blue glow */
.gallery__item--feature {
  border-color: rgba(31,142,251,0.5);
  box-shadow: 0 8px 28px -12px rgba(31,142,251,0.45);
}
.gallery__item--feature::before {
  content: "Featured";
  position: absolute;
  top: 12px; right: 12px;
  z-index: 3;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--grad);
  color: #05080f;
}

.gallery__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, transparent, rgba(5,8,15,0.92));
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 2;
}
.gallery__loc {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.005em;
}
.gallery__detail {
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.4;
}

.gallery__footnote {
  text-align: center;
  color: var(--text-2);
  font-size: 14.5px;
  margin: 28px 0 0;
}
.gallery__footnote a {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid rgba(31,142,251,0.4);
}
.gallery__footnote a:hover { color: var(--accent-2); border-color: var(--accent-2); }

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

/* ============ INDUSTRIES ============ */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .industry-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .industry-grid { grid-template-columns: 1fr; } }

.industry {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: border-color .2s ease, background .2s ease;
}
.industry:hover { border-color: rgba(31,142,251,0.4); background: rgba(31,142,251,0.04); }
.industry__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 11px;
  background: rgba(31,142,251,0.1);
  color: var(--accent);
  margin-bottom: 14px;
  transition: background .2s ease, color .2s ease;
}
.industry:hover .industry__icon {
  background: rgba(31,142,251,0.18);
  color: var(--accent-2);
}
.industry h4 { margin: 0 0 6px; font-size: 16px; letter-spacing: -0.01em; }
.industry p  { margin: 0; color: var(--text-2); font-size: 13.5px; line-height: 1.5; }

/* ============ STEPS ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.step__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 28px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 12px;
}
.step h4 { margin: 0 0 8px; font-size: 19px; letter-spacing: -0.01em; }
.step p  { margin: 0; color: var(--text-2); font-size: 14.5px; }

/* ============ CTA BAND ============ */
.cta-band {
  position: relative;
  background: linear-gradient(135deg, rgba(31,142,251,0.15), rgba(255,42,42,0.12));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 64px 0;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse at center, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000, transparent 75%);
  pointer-events: none;
}

/* CTA band with a real tower photo behind it */
.cta-band--photo { padding: 88px 0; background: #05080f; }
.cta-band__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 75%;       /* push view to the lower/darker portion */
  filter: brightness(0.32) saturate(1.1) contrast(1.05);
  z-index: 0;
}
/* Strong gradient overlay so headline is always readable */
.cta-band--photo::before {
  background:
    linear-gradient(90deg, rgba(5,8,15,0.85) 0%, rgba(5,8,15,0.55) 60%, rgba(5,8,15,0.78) 100%),
    linear-gradient(180deg, rgba(5,8,15,0.55) 0%, rgba(5,8,15,0.35) 50%, rgba(5,8,15,0.65) 100%);
  mask-image: none;
  -webkit-mask-image: none;
  z-index: 1;
}
.cta-band--photo .cta-band__inner { position: relative; z-index: 2; }
.cta-band--photo h2 { text-shadow: 0 2px 14px rgba(0,0,0,0.55); }
.cta-band--photo p { color: var(--text); opacity: 0.92; text-shadow: 0 1px 8px rgba(0,0,0,0.5); }
.cta-band__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 { margin: 0 0 8px; font-size: clamp(24px, 3vw, 32px); letter-spacing: -0.02em; }
.cta-band p  { margin: 0; color: var(--text-2); max-width: 580px; }
.cta-band__buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============ FOOTER ============ */
.footer { background: #060b16; padding-top: 56px; }
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 800px) { .footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__inner { grid-template-columns: 1fr; } }

.footer__brand .brand { margin-bottom: 12px; }
.footer__tag { color: var(--text-3); font-size: 14px; max-width: 340px; margin: 0 0 12px; }
.footer__contact-line {
  margin: 0;
  font-size: 14px;
  color: var(--text-2);
}
.footer__contact-line a { color: var(--accent); }
.footer__contact-line strong { color: var(--text); font-weight: 700; letter-spacing: 0.02em; }
.footer__col h5 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-3);
  margin: 0 0 14px;
  font-weight: 700;
}
.footer__col a {
  display: block;
  color: var(--text-2);
  font-size: 14.5px;
  margin-bottom: 8px;
  transition: color .15s ease;
}
.footer__col a:hover { color: var(--text); }

.footer__bottom {
  margin-top: 48px;
  border-top: 1px solid var(--line);
  padding: 20px 0;
  color: var(--text-3);
  font-size: 13px;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__legal a { color: var(--text-3); }
.footer__legal a:hover { color: var(--text); }
.footer__legal span { margin: 0 8px; }

/* ============ THANK YOU PAGE ============ */
.thanks {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.thanks__inner { max-width: 560px; }
.thanks__icon {
  width: 76px; height: 76px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(52,211,153,0.15);
  color: var(--good);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
}
.thanks h1 { font-size: clamp(28px, 4vw, 40px); letter-spacing: -0.02em; margin: 0 0 14px; }
.thanks p  { color: var(--text-2); font-size: 17px; margin: 0 0 28px; }
.thanks__buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
