/* ──────────────────────────────────────────────
   NightDrop — Black + Neon Lime Design System
   ────────────────────────────────────────────── */
:root {
  --bg:         #000000;
  --bg-2:       #0A0A0A;
  --bg-3:       #111111;
  --fg:         #FFFFFF;
  --fg-dim:     #888888;
  --neon:       #39FF14;
  --neon-dim:   rgba(57,255,20,0.15);
  --neon-glow:  rgba(57,255,20,0.5);
  --neon-text:  #B3FF0F;
  --font-head:  'Bebas Neue', 'Oswald', Impact, sans-serif;
  --font-body:  'Inter', 'DM Sans', system-ui, sans-serif;
}

/* ── BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--neon); border-radius: 3px; }

/* ── NEON TEXT ── */
.neon { color: var(--neon); }

/* ── SECTION TAG ── */
.section-tag {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 1rem;
  display: block;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 6vw;
  background: var(--bg);
  overflow: hidden;
  position: relative;
}

/* Subtle neon grid overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(57,255,20,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57,255,20,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  z-index: 2;
  position: relative;
}

.hero-label {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--neon);
  font-weight: 500;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-label::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon-glow);
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 1.8rem;
  text-transform: uppercase;
}

.hero h1 .neon { text-shadow: 0 0 20px var(--neon-glow), 0 0 60px rgba(57,255,20,0.2); }

.hero .lede {
  font-size: 1rem;
  color: var(--fg-dim);
  max-width: 40ch;
  line-height: 1.8;
  font-weight: 300;
}

.hero-cta {
  margin-top: 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--neon);
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--neon);
  padding: 0.9rem 2rem;
  transition: all 0.2s ease;
  box-shadow: 0 0 15px rgba(57,255,20,0.15), inset 0 0 15px rgba(57,255,20,0.05);
}

.hero-cta:hover {
  background: var(--neon);
  color: #000;
  box-shadow: 0 0 30px rgba(57,255,20,0.5), 0 0 60px rgba(57,255,20,0.2);
}

/* Hero image panel */
.hero-image {
  position: relative;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-silhouette {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 2px;
  /* Neon edge glow via box-shadow */
  box-shadow:
    0 0 40px rgba(57,255,20,0.2),
    0 0 80px rgba(57,255,20,0.08);
  position: relative;
  z-index: 1;
}

/* Vignette overlay on image */
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 15%),
              linear-gradient(to left, var(--bg) 0%, transparent 15%),
              linear-gradient(to bottom, var(--bg) 0%, transparent 10%),
              linear-gradient(to top, var(--bg) 0%, transparent 10%);
  z-index: 2;
  pointer-events: none;
}

/* Vertical neon line between columns */
.hero::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--neon) 30%, var(--neon) 70%, transparent);
  opacity: 0.2;
  box-shadow: 0 0 10px var(--neon-glow);
}

/* ── DISCRETION ── */
.discretion {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 6vw;
  padding: 10vw 6vw;
  background: var(--bg-2);
  border-top: 1px solid rgba(57,255,20,0.08);
  border-bottom: 1px solid rgba(57,255,20,0.08);
}

.disc-visual {
  height: 65vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Neon delivery box illustration */
.box-illustration { position: relative; z-index: 2; }

.box-body {
  width: 60%;
  margin: 0 auto;
}

.box-lid {
  width: 100%;
  height: 12px;
  background: linear-gradient(to right, var(--neon), var(--neon-text));
  border-radius: 2px 2px 0 0;
  box-shadow: 0 0 20px var(--neon-glow);
}

.box-base {
  width: 100%;
  height: 70px;
  background: rgba(57,255,20,0.06);
  border: 1px solid rgba(57,255,20,0.25);
  border-top: none;
  border-radius: 0 0 4px 4px;
  position: relative;
  overflow: hidden;
}

.box-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(57,255,20,0.3), transparent);
}

.door-mat {
  width: 50%;
  margin: 10px auto 0;
  height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(57,255,20,0.15);
}

.mat-text {
  font-size: 0.45rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neon);
  font-family: var(--font-body);
  opacity: 0.7;
}

.ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(57,255,20,0.08) 0%, transparent 70%);
  filter: blur(30px);
}

.disc-content h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.disc-content h2 .neon { text-shadow: 0 0 20px var(--neon-glow); }

.disc-content > p {
  color: var(--fg-dim);
  font-size: 1rem;
  max-width: 44ch;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  font-weight: 300;
}

.disc-pillars { display: flex; flex-direction: column; gap: 1.4rem; }

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.pillar-icon {
  width: 8px;
  height: 8px;
  background: var(--neon);
  flex-shrink: 0;
  margin-top: 0.5rem;
  box-shadow: 0 0 8px var(--neon-glow);
  border-radius: 50%;
}

.pillar-title {
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  color: var(--fg);
}

.pillar-desc {
  font-size: 0.85rem;
  color: var(--fg-dim);
  font-weight: 300;
}

/* ── HOURS ── */
.hours {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 6vw;
  padding: 10vw 6vw;
  background: var(--bg);
}

.hours-content h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hours-content h2 .neon { text-shadow: 0 0 20px var(--neon-glow); }

.hours-content > p {
  color: var(--fg-dim);
  font-size: 1rem;
  max-width: 44ch;
  margin-bottom: 3rem;
  line-height: 1.8;
  font-weight: 300;
}

.clock-block { text-align: left; }

.clock-display {
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 400;
  color: var(--neon);
  line-height: 1;
  margin-bottom: 0.6rem;
  text-shadow: 0 0 30px var(--neon-glow), 0 0 60px rgba(57,255,20,0.15);
  letter-spacing: 0.05em;
}

.clock-display span {
  font-size: 2.2rem;
  opacity: 0.7;
  vertical-align: super;
}

.clock-label {
  font-size: 0.8rem;
  color: var(--fg-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 300;
}

.hours-visual {
  height: 55vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hours-clock {
  position: relative;
  z-index: 2;
  width: 65%;
  aspect-ratio: 1;
}

.big-clock-face {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(57,255,20,0.3);
  background: rgba(57,255,20,0.03);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(57,255,20,0.1), inset 0 0 40px rgba(57,255,20,0.03);
}

.big-clock-tick {
  position: absolute;
  width: 1px;
  height: 8%;
  background: rgba(57,255,20,0.5);
  left: 50%;
  transform: translateX(-50%);
}

.t12 { top: 5%; }
.t3  { top: 50%; right: 5%; transform: translateY(-50%) rotate(90deg); }
.t6  { bottom: 5%; transform: translateX(-50%) rotate(180deg); }
.t9  { top: 50%; left: 5%; transform: translateY(-50%) rotate(270deg); }

.big-clock-inner {
  width: 75%;
  height: 75%;
  position: relative;
}

.big-hand-hour {
  position: absolute;
  width: 3px;
  height: 30%;
  background: var(--neon);
  bottom: 0; left: 50%;
  transform: translateX(-50%) rotate(60deg);
  transform-origin: bottom center;
  border-radius: 3px;
  box-shadow: 0 0 10px var(--neon-glow);
}

.big-hand-minute {
  position: absolute;
  width: 2px;
  height: 42%;
  background: rgba(57,255,20,0.7);
  bottom: 0; left: 50%;
  transform: translateX(-50%) rotate(0deg);
  transform-origin: bottom center;
  border-radius: 2px;
}

.big-hand-second {
  position: absolute;
  width: 1px;
  height: 45%;
  background: rgba(57,255,20,0.35);
  bottom: 0; left: 50%;
  transform: translateX(-50%) rotate(180deg);
  transform-origin: bottom center;
}

.big-hand-center {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--neon);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 15px var(--neon-glow);
}

.big-clock-num {
  position: absolute;
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--neon);
  font-weight: 400;
  opacity: 0.8;
}

.num-2 { top: 8%; left: 50%; transform: translateX(-50%); }

.hours-ambient {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.light-ray {
  position: absolute;
  background: linear-gradient(to bottom, rgba(57,255,20,0.06), transparent);
  width: 1px;
  height: 200%;
  top: -50%;
}

.ray1 { left: 30%; transform: rotate(12deg); }
.ray2 { left: 68%; transform: rotate(-8deg); }

/* ── STOREFRONT ── */
.storefront {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 6vw;
  padding: 10vw 6vw;
  background: var(--bg-3);
  border-top: 1px solid rgba(57,255,20,0.06);
  border-bottom: 1px solid rgba(57,255,20,0.06);
}

.sf-visual {
  height: 60vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.store-building {
  width: 55%;
  position: relative;
  z-index: 2;
}

.store-sign {
  height: 22px;
  background: rgba(57,255,20,0.06);
  border: 1px solid rgba(57,255,20,0.25);
  border-radius: 2px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(57,255,20,0.1);
}

.sign-bar {
  width: 35%;
  height: 3px;
  background: var(--neon);
  opacity: 0.7;
  box-shadow: 0 0 8px var(--neon-glow);
}

.sign-glow {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 40px;
  background: radial-gradient(ellipse, rgba(57,255,20,0.2) 0%, transparent 70%);
  filter: blur(10px);
}

.store-windows {
  display: flex;
  gap: 8%;
  padding: 0 5%;
}

.sf-win {
  flex: 1;
  aspect-ratio: 3 / 4;
  background: rgba(57,255,20,0.08);
  border: 1px solid rgba(57,255,20,0.2);
  animation: winGlow 3s ease-in-out infinite;
}

.w-a { animation-delay: 0s; }
.w-b { animation-delay: 1s; }
.w-c { animation-delay: 2s; }

@keyframes winGlow {
  0%, 100% { background: rgba(57,255,20,0.05); border-color: rgba(57,255,20,0.15); }
  50% { background: rgba(57,255,20,0.2); border-color: rgba(57,255,20,0.4); box-shadow: 0 0 20px rgba(57,255,20,0.15); }
}

.store-ground {
  height: 4px;
  background: rgba(255,255,255,0.05);
  margin-top: 10px;
  border-radius: 2px;
  border: 1px solid rgba(57,255,20,0.1);
}

.sf-ambient {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 65%;
  background: radial-gradient(ellipse at 50% 80%, rgba(57,255,20,0.12) 0%, transparent 70%);
  filter: blur(25px);
}

.sf-content h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.sf-content h2 .neon { text-shadow: 0 0 20px var(--neon-glow); }

.sf-content > p {
  color: var(--fg-dim);
  font-size: 1rem;
  max-width: 44ch;
  margin-bottom: 2rem;
  line-height: 1.8;
  font-weight: 300;
}

.sf-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.sf-list li {
  font-size: 0.95rem;
  color: var(--fg-dim);
  padding-left: 1.4rem;
  position: relative;
  font-weight: 300;
}

.sf-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  background: var(--neon);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--neon-glow);
}

/* ── CLOSING ── */
.closing {
  padding: 12vw 6vw;
  text-align: center;
  background: var(--bg);
  border-top: 1px solid rgba(57,255,20,0.06);
  position: relative;
  overflow: hidden;
}

.closing-visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.closing-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(57,255,20,0.07) 0%, transparent 70%);
  filter: blur(40px);
}

.closing-lines {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.c-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(57,255,20,0.1), transparent);
}

.closing-statement {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  position: relative;
  z-index: 1;
}

.closing-statement em {
  font-style: normal;
  color: var(--neon);
  text-shadow: 0 0 30px var(--neon-glow), 0 0 60px rgba(57,255,20,0.15);
}

.closing-sub {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-dim);
  position: relative;
  z-index: 1;
  font-weight: 300;
}

/* ── FOOTER ── */
footer {
  padding: 3rem 6vw;
  background: var(--bg-2);
  text-align: center;
  border-top: 1px solid rgba(57,255,20,0.08);
}

.footer-brand {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--neon);
  text-shadow: 0 0 15px var(--neon-glow);
}

.footer-hours {
  font-size: 0.8rem;
  color: var(--neon);
  opacity: 0.8;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-disclaimer {
  font-size: 0.72rem;
  color: var(--fg-dim);
  font-weight: 300;
}

/* ── NEON BUTTON ── */
.btn-neon {
  display: inline-block;
  color: var(--neon);
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--neon);
  padding: 0.9rem 2.2rem;
  transition: all 0.2s ease;
  box-shadow: 0 0 15px rgba(57,255,20,0.12), inset 0 0 15px rgba(57,255,20,0.04);
}

.btn-neon:hover {
  background: var(--neon);
  color: #000;
  box-shadow: 0 0 35px rgba(57,255,20,0.5), 0 0 70px rgba(57,255,20,0.2);
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 15vw 6vw;
    gap: 12vw;
  }

  .hero::after { display: none; }

  .hero-image {
    height: 65vw;
    order: -1;
  }

  .hero h1 { font-size: clamp(3rem, 11vw, 5rem); }

  .discretion, .hours, .storefront {
    grid-template-columns: 1fr;
    gap: 10vw;
  }

  .disc-visual, .hours-visual, .sf-visual { height: 55vw; }

  .clock-display { font-size: 3.5rem; }
  .big-clock-num { font-size: 0.9rem; }

  .closing-statement { font-size: clamp(2rem, 8vw, 3rem); }
}