/* ── ZIP-CAM · Home ── */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Barlow:wght@300;400;500;600&family=Share+Tech+Mono&display=swap');
@import 'base.css';

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: 54px;
  background: rgba(7,9,13,0.96);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  z-index: 200;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background 0.3s;
}
#navbar.scrolled { background: rgba(7,9,13,0.99); }

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo svg rect, .nav-logo svg polygon { fill: white; }
.nav-logo svg circle { fill: var(--bg); }

.nav-links {
  display: flex; align-items: center; gap: 2.4rem;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--orange);
  transform: scaleX(0); transition: transform 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--orange); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-right {
  display: flex; align-items: center; gap: 14px;
}
.nav-status {
  display: flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted);
}
.nav-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  animation: parpadeo 2s ease-in-out infinite;
}
.rec-badge {
  display: flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  color: var(--red);
  border: 1px solid rgba(239,68,68,0.3);
  padding: 3px 8px; border-radius: 3px;
}
.rec-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
  animation: parpadeo 1s ease-in-out infinite;
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
  background: none; border: none;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
#hero {
  position: relative;
  width: 100%; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; z-index: 1; padding-top: 54px;
}
.hero-img {
  position: absolute; top: 0; right: 0;
  width: 62%; height: 100%;
  object-fit: cover; object-position: left center;
  z-index: 1; opacity: 0.7;
}
.hero-fade {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(to right, #07090d 30%, rgba(7,9,13,.88) 52%, rgba(7,9,13,.2) 78%, transparent 100%),
    linear-gradient(to top, rgba(7,9,13,.65) 0%, transparent 40%);
}
.hero-fade::before {
  content: '';
  position: absolute; top: 0; bottom: 0; left: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--orange), transparent);
  opacity: 0.55;
}

.hero-content {
  position: relative; z-index: 3;
  padding: 0 2.5rem; max-width: 620px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange-dim);
  border: 1px solid var(--orange-border);
  padding: 5px 14px; border-radius: 3px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 1.6rem;
  animation: fadeUp 0.5s ease forwards;
}
.badge-dot-live {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
  animation: pulse-ring 2s infinite;
}

.hero-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(72px, 12vw, 110px);
  font-weight: 800; line-height: 0.9;
  letter-spacing: -2px;
  animation: fadeUp 0.5s 0.1s ease both;
}
.brand-zip { color: #fff; }
.brand-cam { color: var(--orange); }

.hero-tagline {
  font-size: clamp(15px, 2.5vw, 19px);
  font-weight: 300; color: var(--text2);
  margin: 1.2rem 0 1rem;
  animation: fadeUp 0.5s 0.2s ease both;
}
.hero-desc {
  font-size: 13px; line-height: 1.75; color: var(--text2);
  max-width: 440px;
  animation: fadeUp 0.5s 0.25s ease both;
  border-left: 2px solid var(--orange-border);
  padding-left: 14px;
}

.hero-divider {
  width: 50px; height: 2px;
  background: linear-gradient(to right, var(--orange), transparent);
  margin: 1.8rem 0;
  animation: fadeUp 0.5s 0.3s ease both;
}

.hero-stats {
  display: flex; gap: 2rem; align-items: center;
  animation: fadeUp 0.5s 0.35s ease both;
  margin-bottom: 2rem;
}
.stat-item-hero { text-align: center; }
.stat-num-hero {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px; font-weight: 800; color: #fff;
}
.stat-lbl-hero {
  font-size: 10px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 1px;
}
.stat-divider { width: 1px; height: 36px; background: var(--border); }

.hero-cta {
  display: flex; gap: 12px; flex-wrap: wrap;
  animation: fadeUp 0.5s 0.4s ease both;
}

.hero-notice {
  font-size: 10px; color: var(--muted);
  font-family: var(--mono); letter-spacing: 0.5px;
  margin-top: 1.4rem;
  animation: fadeUp 0.5s 0.45s ease both;
}

/* side panel */
.hero-panel {
  position: absolute; right: 2rem; top: 50%;
  transform: translateY(-50%); z-index: 4;
  display: flex; flex-direction: column; gap: 10px;
}
.panel-card {
  background: rgba(10,14,22,0.85);
  border: 1px solid var(--border);
  border-radius: 6px; padding: 10px 14px;
  backdrop-filter: blur(8px);
  display: flex; align-items: center; gap: 8px;
}
.signal-bars { display: flex; align-items: flex-end; gap: 2px; height: 16px; }
.bar {
  width: 4px; background: var(--orange); border-radius: 2px;
  animation: parpadeo 2s ease-in-out infinite;
}
.bar:nth-child(1) { height: 4px; }
.bar:nth-child(2) { height: 7px; animation-delay: 0.2s; }
.bar:nth-child(3) { height: 11px; animation-delay: 0.4s; }
.bar:nth-child(4) { height: 16px; animation-delay: 0.6s; }
.panel-lbl {
  font-family: var(--mono); font-size: 10px;
  color: var(--text2); letter-spacing: 0.5px;
}

/* bottom ticker */
.hero-ticker {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 4;
  background: rgba(7,9,13,0.85);
  border-top: 1px solid var(--border);
  display: flex; align-items: center;
  padding: 10px 2.5rem; gap: 1.8rem;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.5px;
}
.ticker-item { display: flex; align-items: center; gap: 6px; color: var(--text2); }
.dot-green  { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.ticker-sep { width: 1px; height: 16px; background: var(--border); }

/* ── STATS BAND ── */
.stats-band {
  position: relative; z-index: 1;
  background: var(--bg3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 30px 2.5rem;
}
.stats-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 24px;
}
.stat-band-item { text-align: center; }
.stat-band-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 34px; font-weight: 800; color: var(--orange);
  line-height: 1;
}
.stat-band-lbl {
  font-size: 10px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-top: 4px;
}

/* ── SECTIONS ── */
.section {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto;
  padding: 80px 2.5rem;
}
.section-label {
  font-family: var(--mono); font-size: 10px;
  color: var(--orange); letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 7vw, 64px);
  font-weight: 800; line-height: 1;
  text-transform: uppercase; margin-bottom: 16px;
}
.section-title span { color: var(--orange); }
.section-sub {
  font-size: 14px; color: var(--text2); max-width: 520px;
  line-height: 1.75; margin-bottom: 48px;
}

/* Features grid */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.feat-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.feat-card:hover {
  border-color: var(--orange-border);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(255,85,0,0.12);
}
.feat-bg-num {
  position: absolute; top: 12px; right: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 56px; font-weight: 800;
  color: rgba(255,85,0,0.06); line-height: 1;
  pointer-events: none;
}
.feat-icon { width: 32px; height: 32px; margin-bottom: 16px; }
.feat-icon svg { width: 100%; height: 100%; }
.feat-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; margin-bottom: 10px;
}
.feat-text { font-size: 12px; color: var(--text2); line-height: 1.7; }

/* How it works */
.alt-bg {
  position: relative; z-index: 1;
  background: var(--bg3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.step-card {
  position: relative;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 20px;
  transition: border-color .25s;
}
.step-card:hover { border-color: var(--orange-border); }
.step-num {
  font-family: var(--mono); font-size: 10px;
  color: var(--orange); letter-spacing: 1px;
  margin-bottom: 14px;
}
.step-icon { width: 28px; height: 28px; margin-bottom: 12px; }
.step-icon svg { width: 100%; height: 100%; }
.step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 700;
  text-transform: uppercase; margin-bottom: 8px;
}
.step-text { font-size: 12px; color: var(--text2); line-height: 1.65; }
.step-arrow {
  position: absolute; top: 24px; right: -10px;
  width: 20px; height: 20px;
  background: var(--bg3);
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transform: rotate(45deg);
  z-index: 1;
}
.step-card:last-child .step-arrow { display: none; }

/* CTA */
.cta-section {
  position: relative; z-index: 1;
  background: linear-gradient(135deg, rgba(255,85,0,0.06) 0%, transparent 60%);
  border-top: 1px solid var(--orange-border);
  padding: 80px 2.5rem;
  text-align: center;
}
.cta-inner { max-width: 600px; margin: 0 auto; }
.cta-label {
  font-family: var(--mono); font-size: 10px;
  color: var(--orange); letter-spacing: 3px; margin-bottom: 12px;
}
.cta-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 6vw, 54px);
  font-weight: 800; text-transform: uppercase;
  line-height: 1; margin-bottom: 28px;
}
.cta-title span { color: var(--orange); }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  position: relative; z-index: 1;
  background: var(--bg3);
  border-top: 1px solid var(--border);
  padding: 56px 2.5rem 24px;
}
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.footer-logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 800;
}
.footer-logo-name .zip { color: #fff; }
.footer-logo-name .cam { color: var(--orange); }
.footer-desc { font-size: 12px; color: var(--muted); line-height: 1.7; max-width: 260px; }
.footer-col-title {
  font-family: var(--mono); font-size: 9px;
  color: var(--orange); letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 16px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: var(--muted); text-decoration: none;
  font-size: 12px; transition: color .2s;
}
.footer-links a:hover { color: var(--orange); }
.footer-contact p { font-size: 12px; color: var(--muted); margin-bottom: 7px; }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  padding-top: 20px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.footer-copy { font-size: 11px; color: var(--muted); }
.footer-ver { font-family: var(--mono); font-size: 10px; color: var(--muted); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  #navbar { padding: 0 1.2rem; }
  .nav-links { display: none; position: absolute; top: 54px; left: 0; right: 0;
    flex-direction: column; background: rgba(7,9,13,0.98);
    border-bottom: 1px solid var(--border);
    padding: 16px 1.2rem; gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--border); width: 100%; }
  .nav-links a:last-child { border-bottom: none; }
  .hamburger { display: flex; }
  .nav-status, .rec-badge { display: none; }
  .hero-content { padding: 0 1.2rem; }
  .hero-panel { display: none; }
  .hero-img { width: 100%; opacity: 0.25; }
  .hero-ticker { padding: 10px 1.2rem; gap: 1rem; font-size: 9px; }
  .ticker-sep { display: none; }
  .section { padding: 60px 1.2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .stats-band { padding: 24px 1.2rem; }
  .cta-section { padding: 60px 1.2rem; }
}
@media (max-width: 480px) {
  .hero-stats { gap: 1.2rem; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── LUCIDE ICONS in features/steps ── */
.feat-icon-wrap {
  width: 38px; height: 38px;
  background: var(--orange-dim);
  border: 1px solid var(--orange-border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feat-lucide {
  width: 20px; height: 20px;
  stroke: var(--orange); fill: none;
}
.step-icon-wrap {
  width: 34px; height: 34px;
  background: var(--orange-dim);
  border: 1px solid var(--orange-border);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.step-lucide {
  width: 17px; height: 17px;
  stroke: var(--orange); fill: none;
}

/* ── PHOTO SHOWCASE ── */
.photo-section {
  position: relative; z-index: 1;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 2.5rem;
}
.photo-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.photo-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 24px;
}
.chip {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--orange-dim);
  border: 1px solid var(--orange-border);
  color: var(--text2); font-size: 11px;
  padding: 4px 10px; border-radius: 20px;
  font-family: var(--mono); letter-spacing: 0.3px;
}
.chip svg { flex-shrink: 0; stroke: var(--orange); }

/* Photo grid */
.photo-imgs { display: flex; flex-direction: column; gap: 12px; }
.photo-main {
  position: relative;
  border-radius: 10px; overflow: hidden;
  border: 1px solid var(--border);
}
.photo-main img {
  width: 100%; height: 260px;
  object-fit: cover; display: block;
  filter: brightness(0.88);
  transition: filter .3s;
}
.photo-main:hover img { filter: brightness(1); }
.photo-badge-overlay {
  position: absolute; bottom: 12px; left: 12px;
  display: flex; align-items: center; gap: 6px;
  background: rgba(7,9,13,0.85);
  border: 1px solid var(--orange-border);
  padding: 5px 12px; border-radius: 4px;
  font-family: var(--mono); font-size: 10px;
  color: var(--text); letter-spacing: 0.5px;
  backdrop-filter: blur(6px);
}
.photo-badge-overlay svg { flex-shrink: 0; }

.photo-small-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 10px;
}
.photo-small {
  position: relative;
  border-radius: 8px; overflow: hidden;
  border: 1px solid var(--border);
}
.photo-small img {
  width: 100%; height: 90px;
  object-fit: cover; display: block;
  filter: brightness(0.8) saturate(0.7);
  transition: filter .3s;
}
.photo-small:hover img { filter: brightness(1) saturate(1); }
.photo-small-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(7,9,13,0.9));
  font-family: var(--mono); font-size: 8px;
  color: var(--text2); letter-spacing: 1px;
  padding: 8px 6px 5px;
  text-transform: uppercase;
}

/* footer link icons */
.footer-links a {
  display: flex; align-items: center; gap: 6px;
}
.footer-links a svg { flex-shrink: 0; stroke: var(--muted); }

@media (max-width: 900px) {
  .photo-inner { grid-template-columns: 1fr; gap: 32px; }
  .photo-section { padding: 60px 1.2rem; }
  .photo-main img { height: 200px; }
  .photo-small img { height: 70px; }
}
