:root{
  --bg:#0b0d12;
  --panel:#121623;
  --panel2:#0f1320;
  --text:#e9eefc;
  --muted:#b7c1e6;
  --line:rgba(255,255,255,.08);
  --accent:#7aa2ff;
  --accent2:#5cf0b6;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: radial-gradient(1200px 700px at 20% 0%, rgba(122,162,255,.20), transparent 60%),
              radial-gradient(900px 600px at 80% 10%, rgba(92,240,182,.12), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.5;
}

a{color:inherit;text-decoration:none}
.wrap{max-width:1100px;margin:0 auto;padding:0 18px}

.site-header{
  position:sticky;top:0;z-index:10;
  background: rgba(11,13,18,.75);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
}


.logo-mark{
  width:34px;height:34px;border-radius:10px;
  display:grid;place-items:center;
  background: linear-gradient(135deg,var(--accent),var(--accent2));
  color:#07101a;font-weight:900;
}
.logo{
  display:flex;
  align-items:center;
  gap:14px;
}
.logo-img{
  width:64px;
  height:64px;

  /* tighter padding so the logo art fills the space */
  padding:6px;

  border-radius:14px;

  background:#ffffff;

  box-shadow:
    0 0 0 1px rgba(0,0,0,0.12),
    0 8px 20px rgba(0,0,0,0.45);

  object-fit:contain;
}

.logo-img{
  transition: transform .12s ease, background .12s ease, box-shadow .12s ease;
}
.logo:hover .logo-img{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.28);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.34) inset,
    0 14px 32px rgba(0,0,0,0.60);
}


.logo-text{font-weight:800;letter-spacing:0.3px}

.nav{display:flex;gap:16px;flex-wrap:wrap}
.nav a{color:var(--muted);font-weight:650}
.nav a:hover{color:var(--text)}

.hero{padding:54px 0 26px}
.hero-inner{display:grid;grid-template-columns:1.5fr 1fr;gap:22px;align-items:start}
.tag{display:inline-block;padding:7px 10px;border:1px solid var(--line);border-radius:999px;color:var(--muted);margin:0 0 12px}
h1{font-size:42px;line-height:1.1;margin:0 0 12px}
.sub{color:var(--muted);font-size:18px;margin:0 0 18px}

.cta-row{display:flex;gap:12px;flex-wrap:wrap;margin:10px 0 16px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:11px 14px;border-radius:12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  font-weight:750;
}
.btn:hover{border-color:rgba(255,255,255,.18)}
.btn.primary{
  border:0;
  background: linear-gradient(135deg,var(--accent),var(--accent2));
  color:#07101a;
}

.trust{display:grid;gap:8px;margin-top:12px}
.trust-item{
  padding:10px 12px;border:1px solid var(--line);border-radius:14px;
  background: rgba(255,255,255,.02);
  color:var(--muted);
}

.hero-card{
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border-radius:18px;
  padding:18px;
}
.hero-card h2{margin:0 0 10px;font-size:18px}
.hero-card ul{margin:0;padding-left:18px;color:var(--muted)}
.small{color:var(--muted);font-size:13px}

.section{padding:40px 0}
.section.alt{background: rgba(255,255,255,.02);border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
h2{font-size:28px;margin:0 0 14px}

.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.grid2{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}

.card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
  border-radius:18px;
  padding:16px;
}
.card h3{margin:0 0 6px}
.card p{margin:0;color:var(--muted)}

.steps{margin:0;padding-left:18px;color:var(--muted)}
.steps li{margin:10px 0}

.gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.ph{
  border:1px dashed rgba(255,255,255,.25);
  border-radius:18px;
  height:150px;
  display:grid;place-items:center;
  color:rgba(233,238,252,.55);
  background: rgba(255,255,255,.02);
}
.shot{
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  background: rgba(255,255,255,.02);
}

.shot img{
  width:100%;
  height:200px;
  object-fit:cover;
  display:block;
}

.note{
  margin-top:14px;
  padding:12px 14px;
  border:1px solid var(--line);
  border-radius:16px;
  background: rgba(122,162,255,.08);
  color:var(--muted);
}

.footer{padding:22px 0}
.footer-inner{display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap;color:var(--muted)}
.footer a:hover{color:var(--text)}

code{background:rgba(255,255,255,.06);padding:2px 6px;border-radius:8px}

@media (max-width: 880px){
  .hero-inner{grid-template-columns:1fr}
  .grid3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .gallery{grid-template-columns:repeat(2,1fr)}
  h1{font-size:36px}
}

=============================
INFILL SPACING CORRECTIONS
=============================

/* === FORCE infill list to match "icon left / text right" layout === */

.infill-item{
  display:flex !important;
  flex-direction:row !important;
  align-items:center !important;
  gap:12px !important;
  padding:10px 12px !important;
}

.infill-icon-sm{
  display:block !important;
  width:56px !important;   /* slightly bigger than 48 */
  height:56px !important;
  flex:0 0 56px !important;
  background:#fff !important;
  padding:6px !important;
  border-radius:12px !important;
  object-fit:contain !important;
}

/* keep text from wrapping under the icon */
.infill-text{
  display:block !important;
  min-width:0 !important;
}

/* keep the name+note as one tight block */
.infill-name{
  line-height:1.15 !important;
}

.infill-text .infill-note{
  margin-top:2px !important;
  line-height:1.2 !important;
}

/* === HARD OVERRIDE: Infill list alignment === */

.infill-compact{
  display:grid !important;
  gap:10px !important;
}

.infill-item{
  display:flex !important;
  flex-direction:row !important;
  align-items:center !important;
  justify-content:flex-start !important;
  flex-wrap:nowrap !important;
  gap:12px !important;

  padding:10px 12px !important;
  border:1px solid var(--line) !important;
  border-radius:14px !important;
  background: rgba(255,255,255,0.02) !important;
}

.infill-item img.infill-icon-sm{
  width:56px !important;    /* slightly bigger than 48 */
  height:56px !important;
  flex:0 0 56px !important;
  display:block !important;

  background:#fff !important;
  padding:6px !important;
  border-radius:12px !important;

  object-fit:contain !important;
  max-width:none !important;
}

.infill-text{
  display:flex !important;
  flex-direction:column !important;
  gap:2px !important;
  min-width:0 !important;
}

/* ===== Mobile: prevent nav wrapping, allow horizontal swipe ===== */
@media (max-width:700px){
  nav{
    flex-wrap:nowrap !important;
    overflow-x:auto !important;
    -webkit-overflow-scrolling:touch;
    gap:14px;
    padding-bottom:6px;
  }

  nav a{
    white-space:nowrap;
    flex:0 0 auto;
  }

  /* hide scrollbar (optional) */
  nav::-webkit-scrollbar{ display:none; }

  /* tighten header spacing a bit */
  .header-inner{
    align-items:flex-start;
    gap:12px;
  }

  .logo-img{
    width:48px;
    height:48px;
  }

  .logo-text{
    font-size:16px;
  }
}