:root{
  --bg:#F6F5F4;
  --card:#FFFFFF;
  --text:#111827;
  --muted:#6B7280;
  --border:rgba(17,24,39,.10);
  --shadow:0 1px 2px rgba(17,24,39,.06),0 6px 24px rgba(17,24,39,.06);
  --shadowHover:0 2px 6px rgba(17,24,39,.08),0 10px 30px rgba(17,24,39,.10);
  --radius:18px;
  --radiusSm:12px;
  --blue:#0175DE;
  --blueHover:#1D4ED8;
  --focus:rgba(37,99,235,.25);
  --max:1100px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
}

a{color:inherit;text-decoration:none}
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{
  outline:2px solid var(--focus);
  outline-offset:2px;
  border-radius:10px;
}

.container{max-width:var(--max);margin:0 auto;padding:0 20px}
.nav{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(246,245,244,.85);
  backdrop-filter:saturate(1.8) blur(10px);
  border-bottom:1px solid var(--border);
}
.navInner{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:14px 0}
.brand{display:flex;align-items:center;gap:10px;font-weight:700;letter-spacing:-.02em}
.brandLogo{
  width:28px;
  height:28px;
  border-radius:0px;
  display:block;
}
.navLinks{display:flex;align-items:center;gap:14px}
.navLinks a{color:var(--muted);font-weight:600;font-size:14px;padding:8px 10px;border-radius:10px}
.navLinks a:hover{color:var(--text);background:rgba(17,24,39,.04)}
.navCta{display:flex;align-items:center;gap:10px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:10px 14px;border-radius:12px;border:1px solid var(--border);
  background:var(--card);color:var(--text);font-weight:700;font-size:14px;
  box-shadow:0 1px 0 rgba(17,24,39,.03);
  transition:transform .12s ease,box-shadow .12s ease,background .12s ease,border-color .12s ease;
  cursor:pointer;
}
.btn:hover{transform:translateY(-1px);box-shadow:var(--shadow)}
.btnPrimary{background:var(--blue);border-color:rgba(37,99,235,.45);color:#fff}
.btnPrimary:hover{background:var(--blueHover)}
.btnGhost{background:transparent}
.btnSmall{padding:8px 10px;border-radius:11px;font-weight:700;font-size:13px}

.burger{display:none}
.burger button{padding:10px 12px}
.mobileMenu{display:none;padding:10px 0 18px}
.mobileMenu a{display:block;padding:10px 12px;border-radius:12px;color:var(--muted);font-weight:700}
.mobileMenu a:hover{background:rgba(17,24,39,.04);color:var(--text)}

.hero{padding:54px 0 18px}
.heroGrid{display:grid;grid-template-columns:1fr;gap:20px;align-items:start}
.kicker{color:var(--muted);font-weight:800;font-size:13px;letter-spacing:.08em;text-transform:uppercase}
.h1{font-size:44px;line-height:1.05;letter-spacing:-.05em;margin:10px 0 10px}
.sub{color:var(--muted);font-size:16px;max-width:52ch;margin:0 0 18px}
.heroActions{display:flex;flex-wrap:wrap;gap:10px;margin-top:16px}
.pillRow{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px}
.pill{display:inline-flex;align-items:center;gap:8px;padding:8px 10px;border-radius:999px;border:1px solid var(--border);background:rgba(255,255,255,.65);color:var(--muted);font-weight:700;font-size:13px}
.pillDot{width:8px;height:8px;border-radius:99px;background:#22C55E}

.card{
  background:var(--card);
  border:1px solid var(--border);

  box-shadow:0 1px 0 rgba(17,24,39,.03);
}
.cardPad{padding:18px}
.cardHover{transition:transform .14s ease,box-shadow .14s ease}
.cardHover:hover{transform:translateY(-2px);box-shadow:var(--shadowHover)}

.section{padding:28px 0}
.sectionTitle{font-size:18px;margin:0 0 10px;letter-spacing:-.02em}
.sectionSub{color:var(--muted);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}

.featureGrid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  align-items:stretch;
}
.featureCard{min-height:0}
.featureTitle{
  font-weight:900;
  font-size:16px;
  letter-spacing:-.02em;
  margin-bottom:6px;
}
.featureBody{color:var(--muted)}
.featureList{
  margin:12px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:8px;
}
.featureList li{
  color:var(--muted);
  padding-left:18px;
  position:relative;
}
.featureList li:before{
  content:"";
  width:6px;
  height:6px;
  border-radius:99px;
  background:rgba(17,24,39,.28);
  position:absolute;
  left:2px;
  top:.68em;
}

.productTop{display:flex;justify-content:space-between;align-items:flex-start;gap:12px}
.price{font-weight:900;font-size:18px;letter-spacing:-.03em}
.muted{color:var(--muted)}
.list{margin:12px 0 0;padding:0;list-style:none;display:grid;gap:8px}
.list li{display:flex;gap:10px;align-items:flex-start}
.check{
  flex:0 0 auto;
  width:18px;height:18px;border-radius:6px;background:rgba(34,197,94,.14);border:1px solid rgba(34,197,94,.35);
  display:inline-flex;align-items:center;justify-content:center;color:#16A34A;font-weight:900;font-size:13px;margin-top:2px
}

.shot{width:100%;height:auto;border-radius:14px;border:1px solid var(--border);display:block;background:#fff}
.videoEmbed{
  margin-top:10px;
  border-radius:14px;
  border:1px solid var(--border);
  overflow:hidden;
  background:#0B1220;
  aspect-ratio:16/9;
}
.videoEmbedLg{
  margin-top:14px;
  max-height:560px;
}
.videoEmbedEl{
  width:100%;
  height:100%;
  display:block;
  object-fit:contain;
  background:#0B1220;
}
.shotGrid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.shotCard{padding:10px}
.shotCard a{display:block}
.shotCard .shot{border-radius:14px}
.shotCard .shotLabel{margin:10px 4px 2px}
.shotWrap{padding:10px}
.shotLabel{margin:10px 2px 0;color:var(--muted);font-size:13px;font-weight:700}
.shotSection{margin:0 0 26px}
.shotSectionTitle{font-size:20px;letter-spacing:-.03em;margin:0 0 10px}
.shotSectionDesc{
  color:var(--muted);
  border-left:4px solid rgba(17,24,39,.12);
  padding:10px 12px;
  margin:0 0 14px;
  border-radius:12px;
  background:rgba(255,255,255,.55);
}
.shotSectionGrid{display:grid;gap:12px;align-items:start}
.shotSectionGrid.cols1{grid-template-columns:1fr}
.shotSectionGrid.cols2{grid-template-columns:repeat(2,1fr)}
.shotSectionGrid.cols3{grid-template-columns:repeat(3,1fr)}
.shotSectionGrid.cols2 .shotCard .shot{height:320px;object-fit:contain;background:#fff}
.shotSectionGrid.cols3 .shotCard .shot{height:240px;object-fit:contain;background:#fff}
.shotPlaceholder{
  border-radius:14px;border:1px dashed rgba(17,24,39,.22);
  background:rgba(255,255,255,.55);
  padding:18px;
  color:var(--muted);
  font-weight:800;
  min-height:160px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.accordion{display:grid;gap:10px}
.qa{border-radius:var(--radiusSm);border:1px solid var(--border);background:rgba(255,255,255,.7)}
.qa button{
  width:100%;
  text-align:left;
  background:transparent;
  border:0;
  padding:14px 14px;
  cursor:pointer;
  font-weight:800;
  display:flex;
  justify-content:space-between;
  gap:12px;
  color:var(--text);
}
.qa .answer{padding:0 14px 14px;color:var(--muted);display:none}
.qa[data-open="1"] .answer{display:block}
.chev{color:var(--muted);font-weight:900}

.footer{padding:30px 0 40px;border-top:1px solid var(--border);margin-top:26px}
.footerGrid{display:grid;grid-template-columns:1.3fr 1fr 1fr;gap:14px}
.fine{color:var(--muted);font-size:13px}
.footer a{color:var(--muted);font-weight:700}
.footer a:hover{color:var(--text)}

.pageHeader{padding:30px 0 10px}
.h2{font-size:28px;letter-spacing:-.04em;margin:6px 0}
.prose{color:var(--text)}
.prose p,.prose li{color:var(--muted)}
.prose p{margin:0 0 12px}
.prose h3{margin:16px 0 6px;letter-spacing:-.03em}
.prose h3 + p{margin-top:0}
.prose h5{margin:8px 0 4px;letter-spacing:-.02em;font-size:15px}
.prose h5:before{content:"• ";color:rgba(17,24,39,.55)}
.prose h5 + p{margin-top:0}
.prose ul{padding-left:18px}
.prose code{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New";font-size:.95em;background:rgba(17,24,39,.05);padding:2px 6px;border-radius:8px;color:var(--text)}

.callout{border-radius:16px;border:1px solid rgba(37,99,235,.22);background:rgba(37,99,235,.06);padding:14px}
.calloutTitle{font-weight:900;margin:0 0 6px}
.callout p{margin:0;color:var(--muted)}

@media (max-width: 980px){
  .heroGrid{grid-template-columns:1fr}
  .shotGrid{grid-template-columns:repeat(2,1fr)}
  .shotSectionGrid.cols3{grid-template-columns:repeat(2,1fr)}
  .grid3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .featureGrid{grid-template-columns:1fr}
  .footerGrid{grid-template-columns:1fr}
  .h1{font-size:38px}
  .navLinks{display:none}
  .burger{display:block}
  .mobileMenu[data-open="1"]{display:block}
}

@media (max-width: 640px){
  .shotSectionGrid.cols2{grid-template-columns:1fr}
  .shotSectionGrid.cols3{grid-template-columns:1fr}
  .shotSectionGrid.cols2 .shotCard .shot{height:auto}
  .shotSectionGrid.cols3 .shotCard .shot{height:auto}
}

