/* ============================================================
   GENERIPRINTER — tokens
   ============================================================ */
:root{
  --electric: #0040FF;
  --electric-deep: #0030CC;
  --navy: #060B22;
  --navy-2: #0A1230;
  --paper: #F4F7FF;
  --paper-dim: #C9D3F2;
  --orange: #FF6A1A;
  --orange-2: #FF8A3D;
  --cyan: #00D4FF;
  --amber: #ff5e00f2;
  --logo-bg: #0033E6;

  --font-display: 'Space Grotesk', 'Arial Narrow', sans-serif;
  --font-body: 'IBM Plex Sans', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  --wrap: 1160px;
  --radius: 14px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background-color: var(--electric);
  background-image:
    linear-gradient(180deg, rgba(0,20,120,0.82) 0%, rgba(2,8,40,0.88) 55%, rgba(2,8,40,0.93) 100%),
    url('assets/bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--paper);
  font-family: var(--font-body);
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}

@media (max-width: 780px){
  /* fixed backgrounds are unreliable on mobile browsers */
  body{ background-attachment: scroll; }
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3{ font-family:var(--font-display); margin:0; }

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

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important; }
}

/* focus visibility */
a:focus-visible, button:focus-visible{
  outline:2px solid var(--cyan);
  outline-offset:3px;
  border-radius:4px;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 22px;
  border-radius:999px;
  font-family:var(--font-body);
  font-weight:600;
  font-size:0.95rem;
  border:1px solid transparent;
  cursor:pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-1px); }
.btn-orange{
  background: var(--orange);
  color: var(--navy);
}
.btn-orange:hover{ background: var(--orange-2); }
.btn-ghost{
  background: transparent;
  border-color: rgba(244,247,255,0.4);
  color: var(--paper);
}
.btn-ghost:hover{ border-color: var(--paper); background:rgba(244,247,255,0.08); }
.btn-lg{ padding:15px 28px; font-size:1rem; }

/* ============================================================
   Ambient scanline (subtle, page-level)
   ============================================================ */
.scanline{
  position:fixed;
  left:0; right:0; top:0;
  height:2px;
  background:linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity:0.6;
  animation: scan 7s linear infinite;
  z-index:60;
  pointer-events:none;
}
@keyframes scan{
  0%{ top:0; opacity:0; }
  5%{ opacity:.6; }
  95%{ opacity:.6; }
  100%{ top:100%; opacity:0; }
}

/* ============================================================
   Header
   ============================================================ */
.site-header{
  position:sticky; top:0; z-index:50;
  background: rgba(6,11,34,0.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(244,247,255,0.1);
}
.header-inner{
  display:flex; align-items:center; gap:20px;
  padding:12px 24px;
}
.brand{ display:flex; align-items:center; }
.brand-logo{
  height:44px;
  width:auto;
  background:var(--logo-bg);
  border-radius:8px;
  padding:4px 10px;
  border:1px solid rgba(0,212,255,0.35);
}
.nav{
  display:flex; gap:28px;
  margin-left:auto;
  font-weight:500;
  font-size:0.95rem;
}
.nav a{ opacity:0.85; transition:opacity .15s; padding:6px 2px; }
.nav a:hover{ opacity:1; }
.nav-cta{ flex-shrink:0; }
.nav-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:38px; height:38px;
  background:transparent;
  border:1px solid rgba(244,247,255,0.3);
  border-radius:8px;
  margin-left:6px;
}
.nav-toggle span{
  display:block; height:2px; width:18px; margin:0 auto;
  background:var(--paper);
}

@media (max-width: 860px){
  .nav{
    position:absolute;
    top:100%; left:0; right:0;
    flex-direction:column;
    background: var(--navy);
    padding:18px 24px 24px;
    gap:14px;
    border-bottom:1px solid rgba(244,247,255,0.1);
    display:none;
  }
  .nav.open{ display:flex; }
  .nav-cta{ display:none; }
  .nav-toggle{ display:flex; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero{
  padding:72px 0 60px;
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(600px 320px at 85% -10%, rgba(0,212,255,0.35), transparent 60%),
    radial-gradient(500px 300px at 10% 110%, rgba(26, 34, 255, 0.25), transparent 60%);
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap:48px;
  align-items:center;
}
.eyebrow, .section-eyebrow{
  font-family:var(--font-mono);
  font-size:0.8rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--cyan);
  margin:0 0 14px;
}
.hero-copy h1{
  font-size:clamp(2.2rem, 4.4vw, 3.4rem);
  line-height:1.06;
  font-weight:700;
  letter-spacing:-0.01em;
}
.hero-copy h1 span{ color:var(--amber); }
.hero-lead{
  margin:20px 0 28px;
  max-width:52ch;
  color:var(--paper-dim);
  font-size:1.05rem;
}
.hero-actions{
  display:flex; flex-wrap:wrap; gap:14px;
  margin-bottom:26px;
}
.hero-tags{
  display:flex; flex-wrap:wrap; gap:10px 18px;
  font-family:var(--font-mono);
  font-size:0.82rem;
  color:var(--paper-dim);
}
.hero-tags li{ position:relative; padding-left:16px; }
.hero-tags li::before{
  content:"";
  position:absolute; left:0; top:6px;
  width:7px; height:7px; border-radius:50%;
  background:var(--orange);
}
.hero-art{
  display:flex; justify-content:center;
}
.hero-logo{
  width:100%;
  max-width:420px;
  background:var(--logo-bg);
  border-radius:20px;
  padding:26px;
  border:1px solid rgba(0,212,255,0.3);
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
}

@media (max-width: 860px){
  .hero-inner{ grid-template-columns:1fr; }
  .hero-art{ order:-1; }
  .hero-logo{ max-width:280px; }
}

/* ============================================================
   Services
   ============================================================ */
.services{ padding:76px 0; }
.services h2{
  font-size:clamp(1.6rem, 3vw, 2.3rem);
  max-width:20ch;
  margin-bottom:36px;
}
.service-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
}
.service-card{
  background: rgba(244,247,255,0.06);
  border:1px solid rgba(244,247,255,0.14);
  border-radius: var(--radius);
  padding:26px 22px;
}
.service-icon{
  display:inline-flex;
  width:44px; height:44px;
  color:var(--cyan);
  margin-bottom:16px;
}
.service-icon svg{ width:100%; height:100%; }
.service-card h3{
  font-size:1.08rem;
  margin-bottom:10px;
}
.service-card p{
  color:var(--paper-dim);
  font-size:0.92rem;
  margin:0;
}

@media (max-width: 980px){
  .service-grid{ grid-template-columns:repeat(2, 1fr); }
}
@media (max-width: 560px){
  .service-grid{ grid-template-columns:1fr; }
}

/* ============================================================
   Inventory — toner photo carousel
   ============================================================ */
.inventory{
  padding:76px 0 88px;
  background: var(--navy);
}
.section-eyebrow-light{ color:var(--orange); }
.inventory h2.light{
  color:var(--paper);
  font-size:clamp(1.6rem, 3vw, 2.3rem);
  max-width:22ch;
}
.inventory-lead{
  color:var(--paper-dim);
  max-width:60ch;
  margin:14px 0 40px;
}

.toner-carousel{
  display:flex;
  align-items:center;
  gap:10px;
  max-width:100%;
}
.carousel-track{
  display:flex;
  gap:16px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  padding:6px 4px 18px;
  flex:1;
  scrollbar-width:thin;
  scrollbar-color: rgba(244,247,255,0.35) transparent;
}
.carousel-track::-webkit-scrollbar{ height:6px; }
.carousel-track::-webkit-scrollbar-thumb{ background:rgba(244,247,255,0.3); border-radius:99px; }
.carousel-track::-webkit-scrollbar-track{ background:transparent; }

.toner-card{
  flex:0 0 auto;
  scroll-snap-align:start;
  width:190px;
  background:var(--paper);
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 14px 30px rgba(0,0,0,0.3);
}
.toner-photo{
  width:100%;
  height:150px;
  background:#fff;
  overflow:hidden;
}
.toner-photo img{
  width:100%; height:100%;
  object-fit:contain;
  display:block;
}
.toner-name{
  margin:0;
  padding:10px 12px 12px;
  color:var(--navy);
  font-family:var(--font-mono);
  font-weight:600;
  font-size:0.86rem;
  text-align:center;
}

.carousel-btn{
  flex-shrink:0;
  width:42px; height:42px;
  border-radius:50%;
  border:1px solid rgba(244,247,255,0.3);
  background:rgba(244,247,255,0.08);
  color:var(--paper);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  transition: background .2s, border-color .2s, transform .15s;
}
.carousel-btn:hover{ background:rgba(0,212,255,0.18); border-color:var(--cyan); }
.carousel-btn:active{ transform:scale(0.94); }
.carousel-btn svg{ width:20px; height:20px; }

.inventory-note{
  margin:22px auto 0;
  max-width:60ch;
  text-align:center;
  color:var(--paper-dim);
  font-family:var(--font-mono);
  font-size:0.86rem;
}

@media (max-width:640px){
  .carousel-btn{ display:none; }
  .toner-card{ width:44vw; }
}

/* ============================================================
   Why
   ============================================================ */
.why{ padding:76px 0; }
.why-inner{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap:48px;
}
.why-copy h2{
  font-size:clamp(1.6rem, 3vw, 2.3rem);
  margin-bottom:16px;
}
.why-list{
  display:grid;
  gap:16px;
}
.why-list li{
  background: rgba(244,247,255,0.06);
  border:1px solid rgba(244,247,255,0.14);
  border-radius:var(--radius);
  padding:18px 20px;
  display:flex;
  flex-direction:column;
  gap:4px;
}
.why-list strong{
  font-family:var(--font-display);
  font-size:1.02rem;
}
.why-list span{
  color:var(--paper-dim);
  font-size:0.9rem;
}

@media (max-width: 860px){
  .why-inner{ grid-template-columns:1fr; }
}

/* ============================================================
   Contact
   ============================================================ */
.contact{
  padding:76px 0 90px;
  background: var(--navy);
  text-align:center;
}
.contact h2.light{
  color:var(--paper);
  font-size:clamp(1.6rem, 3vw, 2.3rem);
  max-width:26ch;
  margin:0 auto 40px;
}
.contact-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
  text-align:left;
}
.contact-card{
  background: rgba(244,247,255,0.06);
  border:1px solid rgba(244,247,255,0.16);
  border-radius: var(--radius);
  padding:24px;
  display:flex;
  flex-direction:column;
  gap:6px;
  transition: border-color .2s, background .2s, transform .15s;
}
.contact-card:hover{
  border-color: var(--cyan);
  background: rgba(0,212,255,0.08);
  transform:translateY(-2px);
}
.contact-label{
  font-family:var(--font-mono);
  font-size:0.74rem;
  letter-spacing:0.06em;
  color:var(--orange);
  text-transform:uppercase;
}
.contact-value{
  font-family:var(--font-display);
  font-size:1.3rem;
  font-weight:600;
}
.contact-value-sm{ font-size:1.02rem; word-break:break-word; }
.contact-cta{
  margin-top:8px;
  font-size:0.88rem;
  color:var(--cyan);
}
.contact-person{
  margin-top:36px;
  color:var(--paper-dim);
  font-family:var(--font-mono);
  font-size:0.9rem;
}

@media (max-width: 780px){
  .contact-grid{ grid-template-columns:1fr; }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer{
  padding:32px 0 40px;
  border-top:1px solid rgba(244,247,255,0.12);
}
.footer-inner{
  display:flex; align-items:center; gap:16px;
  flex-wrap:wrap;
}
.footer-logo{
  height:36px; width:auto;
  background:var(--logo-bg);
  border-radius:6px;
  padding:3px 8px;
  border:1px solid rgba(0,212,255,0.3);
}
.footer-inner p{
  color:var(--paper-dim);
  font-size:0.85rem;
  margin:0;
}

/* ============================================================
   Floating WhatsApp
   ============================================================ */
.float-whatsapp{
  position:fixed;
  right:20px; bottom:20px;
  width:56px; height:56px;
  border-radius:50%;
  background:#25D366;
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 12px 30px rgba(0,0,0,0.35);
  z-index:55;
  transition:transform .15s ease;
}
.float-whatsapp:hover{ transform:scale(1.06); }
.float-whatsapp svg{ width:28px; height:28px; }
