/* ============================================================
   cheapwarehouse.com — Bolt St landing page
   ============================================================ */

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

:root {
  --brand:        #F97316;
  --brand-dark:   #EA580C;
  --dark:         #0c0c0c;
  --dark-card:    #141414;
  --dark-card2:   #1c1c1c;
  --dark-border:  rgba(255,255,255,.07);
  --mid:          #374151;
  --muted:        #6B7280;
  --light:        #F9FAFB;
  --border:       #E5E7EB;
  --white:        #FFFFFF;
  --radius:       12px;
  --shadow:       0 1px 3px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.06);
  --shadow-lg:    0 8px 32px rgba(0,0,0,.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background: var(--white);
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── SCROLL ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity  .55s cubic-bezier(.22,1,.36,1),
    transform .55s cubic-bezier(.22,1,.36,1);
  transition-delay: var(--delay, 0s);
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .18s, border-color .18s, transform .12s;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
}
.btn:active { transform: scale(.98); }
.btn-sm  { padding: 8px 16px; font-size: 14px; }
.btn-lg  { padding: 15px 30px; font-size: 16px; }
.btn-full { width: 100%; }

/* Shimmer */
.btn-shimmer {
  overflow: hidden;
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
  isolation: isolate;
}
.btn-shimmer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 25%, rgba(255,255,255,.38) 50%, transparent 75%);
  transform: translateX(-150%);
  animation: shimmer-move 2.6s ease infinite;
  pointer-events: none;
}
@keyframes shimmer-move {
  0%   { transform: translateX(-150%); }
  55%  { transform: translateX(150%); }
  100% { transform: translateX(150%); }
}
.btn-shimmer:hover { background: var(--brand-dark); border-color: var(--brand-dark); }

/* Ghost (dark bg) */
.btn-ghost {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-color: rgba(255,255,255,.2);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.35); }

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--brand);
  border-color: currentColor;
}
.btn-outline:hover { background: var(--brand); color: var(--white); }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(12,12,12,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--dark-border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.logo {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.5px;
  color: var(--white);
}
.logo span { color: var(--brand); }

/* ── HERO ── */
.hero {
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
  position: relative;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(249,115,22,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,.035) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}
/* Vignette over grid */
.hero-bg-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, transparent 40%, var(--dark) 100%);
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 88px 24px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,.1);
  color: #fb923c;
  border: 1px solid rgba(249,115,22,.28);
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 16px;
  margin-bottom: 26px;
  letter-spacing: .2px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fb923c;
  flex-shrink: 0;
  animation: blink 2.2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .35; }
}

.hero h1 {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 22px;
}
.hero h1 .accent {
  background: linear-gradient(90deg, #f97316 0%, #fb923c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(16px, 2.2vw, 20px);
  color: rgba(255,255,255,.6);
  margin-bottom: 38px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}
.hero-sub strong { color: var(--white); font-weight: 700; }

.hero-cta-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Stats strip */
.hero-stats {
  border-top: 1px solid var(--dark-border);
  background: rgba(255,255,255,.025);
}
.stats-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 36px;
  gap: 5px;
}
.stat-number {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.5px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,.4);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .7px;
}
.stat-divider {
  width: 1px;
  background: var(--dark-border);
  align-self: stretch;
  margin: 14px 0;
}

/* ── GALLERY ── */
.gallery {
  background: #0c0c0c;
  padding: 0 0 48px;
  border-bottom: 1px solid var(--dark-border);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.85fr 1fr;
  gap: 6px;
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-main {
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/10;
  cursor: pointer;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.gallery-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.gallery-img {
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  cursor: pointer;
  background: #1a1a1a;
}
.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
/* Hover states */
.gallery-clickable:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s;
}
.gallery-overlay span {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.5);
  padding: 6px 16px;
  border-radius: 6px;
}
.gallery-clickable:hover .gallery-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.lightbox[hidden] { display: none; }
.lightbox-inner {
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.lightbox-inner img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
}
.lightbox-caption {
  color: rgba(255,255,255,.55);
  font-size: 13px;
  text-align: center;
}
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  z-index: 1001;
}
.lightbox-close:hover { background: rgba(255,255,255,.2); }
.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  z-index: 1001;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,.16); }

/* ── FEATURES (dark bento) ── */
.features {
  background: var(--dark);
  padding: 88px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  letter-spacing: -.5px;
  line-height: 1.15;
}
.section-sub {
  color: var(--muted);
  font-size: 16px;
  margin-top: 10px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.features .section-title { color: var(--white); }
.features .section-sub   { color: rgba(255,255,255,.45); }

/* Bento grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.bento-item {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 28px 26px;
  position: relative;
  overflow: hidden;
  transition: border-color .2s, transform .2s;
  cursor: default;
}
.bento-item:hover {
  border-color: rgba(249,115,22,.25);
  transform: translateY(-2px);
}
/* MagicCard-style spotlight glow — set via JS */
.bento-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: var(--spotlight, transparent);
  transition: background .1s;
}
.bento-wide { grid-column: span 2; }
.bento-full { grid-column: span 3; }

.bento-full-inner {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  justify-content: space-between;
}
.bento-address-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}
.address-line {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  font-weight: 500;
}

.bento-icon {
  font-size: 26px;
  margin-bottom: 14px;
  display: block;
  line-height: 1;
}
.bento-item h3 {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}
.bento-item p {
  color: rgba(255,255,255,.5);
  font-size: 14px;
  line-height: 1.65;
}

/* ── SPECS ── */
.specs {
  background: var(--white);
  padding: 88px 0;
}
.specs .section-title { color: var(--dark); }
.specs .section-sub   { color: var(--muted); }

.specs-table-wrap {
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.specs-table tr {
  border-bottom: 1px solid var(--border);
  transition: background .12s;
}
.specs-table tr:last-child { border-bottom: none; }
.specs-table tr:hover { background: var(--light); }
.specs-table td {
  padding: 13px 22px;
  line-height: 1.5;
  vertical-align: middle;
}
.spec-label {
  font-weight: 600;
  color: var(--mid);
  width: 200px;
  white-space: nowrap;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .3px;
}

/* ── WHO IT'S FOR ── */
.for-who {
  background: var(--light);
  padding: 88px 0;
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.who-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--brand);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: box-shadow .2s, transform .2s;
}
.who-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.who-icon {
  font-size: 26px;
  margin-bottom: 14px;
  display: block;
  line-height: 1;
}
.who-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
  color: var(--dark);
}
.who-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── PRICING ── */
.pricing {
  background: var(--white);
  padding: 88px 0;
  border-top: 1px solid var(--border);
}
.pricing-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}
.pricing-card {
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pricing-card.featured {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(249,115,22,.07), var(--shadow-lg);
}
.pricing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.pricing-size {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.5px;
}
.pricing-badge {
  background: rgba(249,115,22,.1);
  color: var(--brand);
  border: 1px solid rgba(249,115,22,.25);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 12px;
  letter-spacing: .2px;
}
.pricing-rate {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.rate-number {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
}
.rate-unit {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}
.pricing-monthly {
  font-size: 14px;
  color: var(--muted);
  margin-top: -12px;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--mid);
}

/* NNN explainer */
.nnn-explainer {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  font-size: 14px;
}
.nnn-explainer h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
}
.nnn-explainer p {
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 12px;
}
.nnn-explainer p:last-child { margin-bottom: 0; }
.nnn-explainer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0 0 14px;
  color: var(--mid);
}
.nnn-explainer ul li::before {
  content: '·';
  color: var(--brand);
  font-weight: 700;
  margin-right: 8px;
}
.nnn-explainer strong { color: var(--dark); }

/* ── QUOTE FORM ── */
.quote {
  padding: 88px 0;
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(249,115,22,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,.025) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}
.quote-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 64px;
  align-items: start;
}
.quote-copy h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 14px;
  line-height: 1.15;
}
.quote-copy p {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  margin-bottom: 24px;
  line-height: 1.7;
}
.quote-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.65);
  margin-bottom: 32px;
}
.quote-detail {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--dark-border);
  padding-top: 24px;
}
.detail-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,.75);
}
.detail-label {
  color: rgba(255,255,255,.35);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .6px;
  min-width: 56px;
  flex-shrink: 0;
}

.quote-form {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 13px;
  font-size: 14px;
  font-family: inherit;
  color: var(--dark);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  background: var(--white);
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(249,115,22,.12);
}
.form-disclaimer {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

.form-success {
  background: var(--white);
  border-radius: 16px;
  padding: 56px 36px;
  text-align: center;
  color: var(--dark);
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
}
.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #DCFCE7;
  color: #16A34A;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.form-success h3 { font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.form-success p  { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── FOOTER ── */
footer {
  background: #080808;
  color: rgba(255,255,255,.3);
  padding: 28px 0;
  border-top: 1px solid var(--dark-border);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
}
.footer-inner .logo { color: rgba(255,255,255,.7); font-size: 15px; }
.footer-tagline    { flex: 1; text-align: center; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .bento-full-inner { flex-direction: column; gap: 20px; }
  .bento-address-block { align-items: flex-start; }
}

@media (max-width: 900px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-wide { grid-column: span 2; }
  .bento-full { grid-column: span 2; }
  .who-grid   { grid-template-columns: 1fr 1fr; }
  .pricing-wrap { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .quote-inner  { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-side { grid-template-columns: repeat(4, 1fr); }
  .gallery-img  { aspect-ratio: 4/3; }
  .stats-row    { flex-wrap: wrap; justify-content: center; }
  .stat-item    { padding: 16px 24px; }
  .stat-divider { display: none; }
}

@media (max-width: 600px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-wide,
  .bento-full { grid-column: span 1; }
  .who-grid   { grid-template-columns: 1fr; }
  .gallery-side { grid-template-columns: 1fr 1fr; }
  .gallery-img  { aspect-ratio: 1; }
  .form-row     { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .footer-inner   { flex-direction: column; align-items: center; text-align: center; }
  .footer-tagline { display: none; }
  .quote-detail   { display: none; }
}
