/* --------------------------------------------------------------- Defensive reset. The existing site styles bare elements (h2, p, img, table...), so neutralise the properties most likely to leak in before our own rules run. Everything below is scoped to .sog-home and cannot affect the rest of the site. --------------------------------------------------------------- */
.sog-home,
.sog-home *{
  border:0;
  outline:0;
  margin:0;
  padding:0;
  background:none;
  list-style:none;
  text-decoration:none;
  box-shadow:none;
  float:none;
  letter-spacing:normal;
  text-transform:none;
  text-align:left;
  font-family:inherit;
  font-style:normal;
  vertical-align:baseline;
}
.sog-home button{
  -webkit-appearance:none;
  appearance:none;
}
.sog-home img{
  max-width:100%;
  height:auto;
}
.sog-home table{
  border-collapse:collapse;
}
.sog-home{
  --cyan:#29ABE2;
  --cyan-dk:#1487C4;
  --navy:#0E2438;
  --ink:#12222F;
  --ink-2:#4A5C6B;
  --ink-3:#7A8B98;
  --paper:#FFFFFF;
  --wash:#F1F5F8;
  --wash-2:#E4EDF3;
  --rule:#D8E3EA;
  --rule-2:#BFCFDA;
  --gold:#C8801A;
  --ok:#1E7A4F;
  --no:#C0392B;
  --disp:"Gotham","Open Sans",-apple-system,"Segoe UI",sans-serif;
  --body:"Open Sans",-apple-system,"Segoe UI",sans-serif;
  --mono:ui-monospace,"SFMono-Regular",Menlo,Consolas,monospace;
}
.sog-home{
  background:var(--paper);
  color:var(--ink);
  font-family:var(--body);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
.sog-home *{
  box-sizing:border-box;
}
.sog-home h1,
.sog-home h2,
.sog-home h3,
.sog-home h4{
  font-family:var(--disp);
  margin:0;
  text-wrap:balance;
  letter-spacing:-.02em;
}
.sog-home p{
  margin:0;
}
.sog-home img{
  display:block;
}
.sog-home a{
  color:inherit;
}
.sog-home .sog-wrap{
  max-width:1120px;
  margin:0 auto;
  padding:0 24px;
}
.sog-home .sog-eyebrow{
  font-family:var(--mono);
  font-size:11px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--cyan-dk);
}
.sog-home .sog-btn{
  display:inline-block;
  font-family:var(--disp);
  font-weight:600;
  border-radius:4px;
  text-decoration:none;
  text-align:center;
  border:0;
  cursor:pointer;
}
.sog-home .sog-btn-p{
  background:var(--cyan-dk);
  color:#fff;
  padding:13px 26px;
  font-size:16px;
}
.sog-home .sog-btn-p:hover{
  background:#0F73A8;
}
.sog-home .sog-btn-s{
  background:#fff;
  color:var(--navy);
  border:1.5px solid var(--rule-2);
  padding:12px 26px;
  font-size:16px;
}
.sog-home .sog-btn-s:hover{
  border-color:var(--cyan-dk);
  color:var(--cyan-dk);
}

/* hero */
.sog-home .sog-hero{
  position:relative;
  background:var(--navy);
  overflow:hidden;
}

/* object-position keeps the gauge on top of the tank in frame as the crop tightens */
.sog-home .sog-hero img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:50% 26%;
  opacity:.88;
}
.sog-home .sog-hero .sog-scrim{
  position:absolute;
  inset:0;
  background:linear-gradient(96deg,rgba(12,32,50,.93) 0%,rgba(12,32,50,.86) 32%,rgba(12,32,50,.5) 58%,rgba(12,32,50,.12) 100%);
}

@media(max-width:900px){
  .sog-home .sog-hero img{
    opacity:.55;
    object-position:50% 40%;
  }
  .sog-home .sog-hero .sog-scrim{
    background:linear-gradient(180deg,rgba(12,32,50,.86) 0%,rgba(12,32,50,.9) 100%);
  }
}
.sog-home .sog-hero .sog-wrap{
  position:relative;
  padding-top:76px;
  padding-bottom:76px;
}
.sog-home .sog-hero-in{
  max-width:640px;
  color:#fff;
  position:relative;
}
.sog-home .sog-hero-in > *{
  position:relative;
  z-index:1;
}
.sog-home .sog-hero h1{
  font-size:clamp(34px,5.2vw,56px);
  font-weight:600;
  line-height:1.05;
}
.sog-home .sog-hero .sog-sub{
  font-family:var(--disp);
  font-weight:400;
  font-size:clamp(18px,2.3vw,23px);
  color:#BFE3F6;
  margin-top:16px;
}
.sog-home .sog-hero p.sog-body{
  font-size:17px;
  color:#D3E2EC;
  margin-top:18px;
  max-width:52ch;
}
.sog-home .sog-hero .sog-cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:30px;
}
.sog-home .sog-hero .sog-cta .sog-btn-s{
  background:transparent;
  color:#fff;
  border-color:rgba(255,255,255,.45);
}
.sog-home .sog-hero .sog-cta .sog-btn-s:hover{
  background:rgba(255,255,255,.1);
  color:#fff;
  border-color:#fff;
}

/* wider viewport crops harder, so give the hero more height and let more light through */

@media(min-width:1500px){
  .sog-home .sog-hero .sog-wrap{
    padding-top:104px;
    padding-bottom:104px;
  }
  .sog-home .sog-hero img{
    opacity:.96;
    object-position:50% 24%;
  }

  /* the wide-screen scrim only unifies the photo; text contrast is handled below */
  .sog-home .sog-hero .sog-scrim{
    background:linear-gradient(96deg,rgba(12,32,50,.6) 0%,rgba(12,32,50,.4) 40%,rgba(12,32,50,.14) 75%,rgba(12,32,50,.06) 100%);
  }

  /* a scrim anchored to the copy column, so the rest of the photo can stay bright */
  .sog-home .sog-hero-in:before{
    content:"";
    position:absolute;
    z-index:0;
    top:-104px;
    bottom:-104px;
    left:-100vw;
    right:-160px;
    background:linear-gradient(to right,rgba(12,32,50,.82) 0%,rgba(12,32,50,.82) 80%,rgba(12,32,50,0) 100%);
    pointer-events:none;
  }
}

@media(min-width:2000px){
  .sog-home .sog-hero .sog-wrap{
    padding-top:128px;
    padding-bottom:128px;
  }
  .sog-home .sog-hero img{
    opacity:1;
    object-position:50% 22%;
  }
  .sog-home .sog-hero-in:before{
    top:-128px;
    bottom:-128px;
    right:-220px;
  }
}

/* proof band */
.sog-home .sog-proof{
  background:var(--wash);
  border-bottom:1px solid var(--rule);
}
.sog-home .sog-proof .sog-wrap{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1px;
  background:var(--rule);
  border-left:1px solid var(--rule);
  border-right:1px solid var(--rule);
  padding:0;
  max-width:1120px;
}
.sog-home .sog-pf{
  background:var(--wash);
  padding:24px 22px;
}
.sog-home .sog-pf .sog-n{
  font-family:var(--disp);
  font-weight:600;
  font-size:26px;
  line-height:1.1;
  color:var(--navy);
}
.sog-home .sog-pf .sog-l{
  font-size:13.5px;
  color:var(--ink-2);
  margin-top:5px;
  line-height:1.4;
}

@media(max-width:760px){
  .sog-home .sog-proof .sog-wrap{
    grid-template-columns:repeat(2,1fr);
  }
}
/* Two 1fr columns cannot shrink below their content, and "Danbury, CT" at 26px plus
   44px of cell padding put the proof bar 6px past a 320px viewport. Trimming the
   horizontal padding gives back 24px across the pair. */
@media(max-width:420px){
  .sog-home .sog-pf{
    padding:20px 16px;
  }
}
.sog-home section.sog-pad{
  padding:76px 0;
}
.sog-home .sog-shead{
  max-width:640px;
  margin-bottom:34px;
}
.sog-home .sog-shead h2{
  font-size:clamp(27px,3.6vw,37px);
  font-weight:600;
  margin-top:10px;
  line-height:1.14;
}
.sog-home .sog-shead p{
  color:var(--ink-2);
  margin-top:12px;
  font-size:17px;
}

/* selector */
.sog-home .sog-sel{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  align-items:start;
}
.sog-home .sog-card{
  border:1px solid var(--rule);
  border-radius:6px;
  background:#fff;
  overflow:hidden;
  position:relative;
  display:flex;
  flex-direction:column;
}
.sog-home .sog-card.sog-hero-card{
  border:2px solid var(--cyan-dk);
  box-shadow:0 14px 40px -18px rgba(20,135,196,.5);
}
.sog-home .sog-tag{
  position:absolute;
  top:0;
  right:0;
  z-index:3;
  background:var(--cyan-dk);
  color:#fff;
  font-family:var(--mono);
  font-size:10.5px;
  letter-spacing:.13em;
  text-transform:uppercase;
  padding:7px 14px;
  border-bottom-left-radius:6px;
}
.sog-home .sog-tag.sog-alt{
  background:var(--wash-2);
  color:var(--ink-2);
}
.sog-home .sog-gal{
  position:relative;
  background:#fff;
  border-bottom:1px solid var(--rule);
  overflow:hidden;
}
.sog-home .sog-galtrack{
  display:flex;
  transition:transform .35s ease;
}
.sog-home .sog-galtrack img{
  flex:0 0 100%;
  width:100%;
  aspect-ratio:4/3;
  object-fit:contain;
  background:#fff;
  padding:10px;
}
.sog-home .sog-galnav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:2;
  width:38px;
  height:38px;
  border-radius:50%;
  border:1px solid var(--rule);
  background:rgba(255,255,255,.92);
  color:var(--navy);
  font-size:22px;
  line-height:1;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:var(--disp);
  padding:0 2px 3px;
}
.sog-home .sog-galnav:hover{
  background:#fff;
  border-color:var(--cyan-dk);
  color:var(--cyan-dk);
}
.sog-home .sog-galnav.sog-prev{
  left:10px;
}
.sog-home .sog-galnav.sog-next{
  right:10px;
  padding:0 0 3px 3px;
}
.sog-home .sog-galdots{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:10px;
  display:flex;
  justify-content:center;
  gap:7px;
  z-index:2;
  background:rgba(255,255,255,.88);
  padding:7px 11px;
  border-radius:20px;
}
.sog-home .sog-galdots button{
  width:8px;
  height:8px;
  padding:0;
  border-radius:50%;
  cursor:pointer;
  border:0;
  background:var(--rule-2);
}
.sog-home .sog-galdots button[aria-current="true"]{
  background:var(--cyan-dk);
  width:20px;
  border-radius:4px;
}

@media(prefers-reduced-motion:reduce){
  .sog-home .sog-galtrack{
    transition:none;
  }
}
.sog-home .sog-card .sog-body{
  padding:24px 26px 28px;
  display:flex;
  flex-direction:column;
  flex:1;
}
.sog-home .sog-card h3{
  font-size:24px;
  font-weight:600;
}
.sog-home .sog-card .sog-role{
  font-size:14.5px;
  color:var(--ink-2);
  margin-top:4px;
}
.sog-home .sog-stars{
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:14px;
  font-size:14px;
  color:var(--ink-2);
}
.sog-home .sog-stars b{
  font-family:var(--disp);
  font-weight:600;
  font-size:17px;
  color:var(--ink);
}
.sog-home .sog-st{
  color:var(--gold);
  letter-spacing:1px;
  font-size:15px;
}
.sog-home .sog-card ul{
  list-style:none;
  margin:18px 0 0;
  padding:0;
  font-size:15.5px;
}
.sog-home .sog-card li{
  display:flex;
  gap:10px;
  padding:6px 0;
  color:var(--ink-2);
}
.sog-home .sog-card li svg{
  flex:0 0 16px;
  margin-top:5px;
}
.sog-home .sog-card li b{
  color:var(--ink);
  font-weight:600;
}
.sog-home .sog-price{
  display:flex;
  align-items:baseline;
  gap:10px;
  margin-top:22px;
  font-family:var(--disp);
}
.sog-home .sog-price .sog-p{
  font-size:34px;
  font-weight:600;
}
.sog-home .sog-price .sog-ship{
  font-size:13.5px;
  color:var(--ink-3);
  font-family:var(--body);
}
.sog-home .sog-card .sog-btn{
  margin-top:16px;
  width:100%;
}
.sog-home .sog-note{
  font-size:13px;
  color:var(--ink-3);
  margin-top:12px;
  line-height:1.45;
}

@media(max-width:760px){
  .sog-home .sog-sel{
    grid-template-columns:1fr;
  }
}

/* fit finder */
.sog-home .sog-fit{
  background:var(--navy);
  color:#fff;
  border-radius:6px;
  padding:34px 34px 30px;
  margin-top:34px;
}
.sog-home .sog-fit h3{
  font-size:23px;
  font-weight:600;
  color:#fff;
}
.sog-home .sog-fit p.sog-i{
  color:#A9C6D9;
  font-size:15.5px;
  margin-top:8px;
  max-width:66ch;
}
.sog-home .sog-step{
  margin-top:26px;
}
.sog-home .sog-qhead{
  font-family:var(--disp);
  font-weight:600;
  font-size:19px;
  color:#fff;
  display:flex;
  align-items:center;
  gap:11px;
}
.sog-home .sog-qn{
  width:25px;
  height:25px;
  flex:0 0 25px;
  border-radius:50%;
  background:var(--cyan);
  color:var(--navy);
  font-size:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
}
.sog-home .sog-qsub{
  color:#A9C6D9;
  font-size:14.5px;
  margin-top:9px;
  max-width:62ch;
}
.sog-home .sog-tiles{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:18px;
}
.sog-home .sog-tile{
  background:rgba(255,255,255,.07);
  border:1.5px solid rgba(255,255,255,.22);
  border-radius:6px;
  padding:0 0 18px;
  cursor:pointer;
  text-align:left;
  color:#fff;
  font-family:var(--body);
  transition:.15s;
  overflow:hidden;
}
.sog-home .sog-tile:hover{
  background:rgba(255,255,255,.14);
  border-color:var(--cyan);
}
.sog-home .sog-tile .sog-pic{
  display:flex;
  align-items:center;
  justify-content:center;
  height:240px;
  background:#fff;
  padding:18px;
}
.sog-home .sog-tile .sog-pic img{
  max-height:100%;
  width:auto;
}
.sog-home .sog-tile .sog-t{
  display:block;
  font-family:var(--disp);
  font-weight:600;
  font-size:17px;
  margin-top:16px;
  padding:0 18px;
}
.sog-home .sog-tile .sog-d{
  display:block;
  color:#A9C6D9;
  font-size:13px;
  margin-top:4px;
  padding:0 18px;
}
.sog-home .sog-opts{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:18px;
}
.sog-home .sog-opts.sog-four{
  grid-template-columns:repeat(5,1fr);
}
.sog-home .sog-opt{
  background:rgba(255,255,255,.07);
  border:1.5px solid rgba(255,255,255,.22);
  color:#fff;
  border-radius:5px;
  padding:15px 14px;
  text-align:left;
  font-family:var(--body);
  font-size:14.5px;
  cursor:pointer;
  transition:.15s;
}
.sog-home .sog-opt:hover{
  background:rgba(255,255,255,.14);
  border-color:var(--cyan);
}
.sog-home .sog-opt .sog-t{
  font-family:var(--disp);
  font-weight:600;
  font-size:15.5px;
  display:block;
}
.sog-home .sog-opt .sog-d{
  color:#A9C6D9;
  font-size:12.5px;
  display:block;
  margin-top:3px;
}
.sog-home .sog-rothfam{
  margin:18px 0 0;
  background:#fff;
  border-radius:6px;
  padding:12px 12px 0;
}
.sog-home .sog-rothfam img{
  width:100%;
  height:auto;
  border-radius:4px;
}
.sog-home .sog-rothfam figcaption{
  font-size:13px;
  color:var(--ink-2);
  padding:10px 4px 12px;
  text-align:center;
  font-family:var(--body);
}
.sog-home .sog-fitout{
  margin-top:24px;
  background:#fff;
  border-radius:6px;
  padding:24px 26px;
  color:var(--ink);
}
.sog-home .sog-fitout .sog-rh{
  font-family:var(--disp);
  font-weight:600;
  font-size:21px;
  color:var(--navy);
}
.sog-home .sog-fitout .sog-rb{
  font-size:15.5px;
  color:var(--ink-2);
  margin-top:9px;
  max-width:62ch;
}
.sog-home .sog-bundle{
  border:1px solid var(--rule);
  border-radius:6px;
  padding:18px 20px;
  margin-top:16px;
}
.sog-home .sog-bundle.sog-rec{
  border:2px solid var(--cyan-dk);
  background:#F7FCFE;
}
.sog-home .sog-bundle .sog-bt{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  gap:14px;
  flex-wrap:wrap;
}
.sog-home .sog-bundle .sog-bn{
  font-family:var(--disp);
  font-weight:600;
  font-size:16.5px;
  color:var(--navy);
}
.sog-home .sog-bundle .sog-badge{
  font-family:var(--mono);
  font-size:10px;
  letter-spacing:.12em;
  text-transform:uppercase;
  background:var(--cyan-dk);
  color:#fff;
  padding:4px 9px;
  border-radius:3px;
}
.sog-home .sog-lines{
  list-style:none;
  margin:13px 0 0;
  padding:0;
}
.sog-home .sog-lines li{
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding:6px 0;
  font-size:14.5px;
  color:var(--ink-2);
  border-bottom:1px dotted var(--rule);
}
.sog-home .sog-lines li:last-child{
  border-bottom:0;
}
.sog-home .sog-lines a{
  color:var(--ink-2);
  text-decoration:underline;
  text-decoration-color:var(--rule-2);
  text-underline-offset:2px;
}
.sog-home .sog-lines a:hover{
  color:var(--cyan-dk);
  text-decoration-color:var(--cyan-dk);
}
.sog-home .sog-lines .sog-sku{
  font-family:var(--mono);
  font-size:11px;
  color:var(--ink-3);
  margin-left:7px;
}
.sog-home .sog-lines .sog-amt{
  font-variant-numeric:tabular-nums;
  color:var(--ink);
  white-space:nowrap;
}
.sog-home .sog-btot{
  display:flex;
  justify-content:space-between;
  gap:14px;
  margin-top:11px;
  padding-top:11px;
  border-top:1.5px solid var(--rule-2);
  font-family:var(--disp);
  font-weight:600;
  font-size:16px;
}
.sog-home .sog-bundle .sog-btn{
  margin-top:15px;
  width:100%;
}
.sog-home .sog-added{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  margin-top:15px;
}
.sog-home .sog-added .sog-ok{
  display:flex;
  align-items:center;
  gap:8px;
  font-family:var(--disp);
  font-weight:600;
  font-size:14.5px;
  color:var(--ok);
  white-space:nowrap;
}
.sog-home .sog-added .sog-ok svg{
  width:17px;
  height:17px;
  flex:0 0 17px;
}
.sog-home .sog-added .sog-btn{
  flex:1;
  min-width:170px;
  width:auto;
  margin-top:0;
}
.sog-home .sog-btn[disabled]{
  opacity:.62;
  cursor:default;
}
.sog-home .sog-carterr{
  margin-top:10px;
  font-size:13.5px;
  line-height:1.5;
  color:var(--no);
}
.sog-home .sog-carterr a{
  color:var(--no);
  text-decoration:underline;
  text-underline-offset:2px;
}
.sog-home .sog-fitout .sog-alt{
  font-size:14px;
  color:var(--ink-3);
  margin-top:16px;
  max-width:62ch;
}
.sog-home .sog-measure{
  margin-top:16px;
  background:#fff;
  border-radius:6px;
  padding:12px;
}
.sog-home .sog-measure img{
  width:100%;
  height:auto;
  border-radius:4px;
}
.sog-home .sog-measure .sog-mnote{
  font-size:13px;
  color:var(--ink-2);
  text-align:center;
  padding:10px 6px 4px;
  font-family:var(--body);
}
.sog-home .sog-fitout.sog-stop{
  border-top:4px solid var(--no);
}
.sog-home .sog-restart{
  margin-top:20px;
  background:rgba(255,255,255,.1);
  border:1.5px solid rgba(255,255,255,.38);
  color:#fff;
  font-family:var(--disp);
  font-weight:600;
  font-size:14.5px;
  border-radius:5px;
  padding:11px 20px;
  cursor:pointer;
}
.sog-home .sog-restart:hover{
  background:rgba(255,255,255,.2);
  border-color:var(--cyan);
}

@media(max-width:760px){
  .sog-home .sog-tiles{
    grid-template-columns:1fr;
  }
  .sog-home .sog-opts,
  .sog-home .sog-opts.sog-four{
    grid-template-columns:1fr 1fr;
  }
}

/* blind spot */
.sog-home .sog-blind{
  background:var(--wash);
}
.sog-home .sog-bs{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:start;
}
.sog-home .sog-bs figure{
  margin:0;
}
.sog-home .sog-sensorshot{
  margin:0 0 30px;
  background:#fff;
  border:1px solid var(--rule);
  border-radius:6px;
  padding:14px;
}
.sog-home .sog-sfframe{
  position:relative;
  display:block;
}
.sog-home .sog-sfmain{
  width:100%;
  height:auto;
  border-radius:4px;
}
.sog-home .sog-sfzoom{
  position:absolute;
  left:10px;
  bottom:10px;
  width:132px;
  height:132px;
  border-radius:50%;
  overflow:hidden;
  border:3px solid #fff;
  box-shadow:0 8px 24px -8px rgba(12,32,50,.55);
}
.sog-home .sog-sfzoom img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.sog-home .sog-sensorshot figcaption{
  font-size:13.5px;
  color:var(--ink-2);
  padding:13px 4px 15px;
  text-align:center;
}

@media(max-width:520px){
  .sog-home .sog-sfzoom{
    width:96px;
    height:96px;
  }
}
.sog-home .sog-readout{
  display:flex;
  gap:20px;
  align-items:flex-start;
  margin:20px 0 0;
  padding-top:20px;
  border-top:1px solid var(--rule-2);
  text-align:left;
}
.sog-home .sog-rnum{
  font-family:var(--disp);
  font-size:46px;
  font-weight:600;
  color:var(--cyan-dk);
  line-height:.95;
  letter-spacing:-.03em;
  white-space:nowrap;
  flex:0 0 auto;
}
.sog-home .sog-rnum span{
  font-size:15px;
  color:var(--ink-2);
  font-weight:500;
  letter-spacing:0;
}
.sog-home .sog-rtxt{
  font-size:14.5px;
  color:var(--ink-2);
  line-height:1.55;
}
.sog-home .sog-rtxt b{
  color:var(--ink);
  font-weight:600;
  display:block;
  margin-bottom:4px;
  font-size:15px;
}
.sog-home .sog-wins{
  list-style:none;
  margin:16px 0 0;
  padding:0;
  max-width:46ch;
}
.sog-home .sog-wins li{
  position:relative;
  padding:0 0 0 26px;
  margin-bottom:13px;
  font-size:15.5px;
  color:var(--ink-2);
}
.sog-home .sog-wins li:before{
  content:"";
  position:absolute;
  left:0;
  top:8px;
  width:11px;
  height:11px;
  border-radius:2px;
  background:var(--ok);
}
.sog-home .sog-wins b{
  color:var(--ink);
  font-weight:600;
}
.sog-home .sog-fnote{
  font-size:13.5px;
  color:var(--ink-3);
  margin-top:20px;
  max-width:46ch;
}

@media(max-width:820px){
  .sog-home .sog-bs{
    grid-template-columns:1fr;
    gap:32px;
  }
}

/* table */
.sog-home .sog-tw{
  overflow-x:auto;
  border:1px solid var(--rule);
  border-radius:6px;
}
.sog-home table{
  border-collapse:collapse;
  width:100%;
  min-width:640px;
  font-size:15px;
}
.sog-home th,
.sog-home td{
  padding:14px 18px;
  text-align:left;
  border-bottom:1px solid var(--rule);
}
.sog-home thead th{
  background:var(--wash);
  font-family:var(--disp);
  font-weight:600;
  font-size:15.5px;
  color:var(--navy);
  vertical-align:bottom;
}
.sog-home th.sog-c,
.sog-home td.sog-c{
  text-align:center;
  font-variant-numeric:tabular-nums;
}
.sog-home .sog-col-duo{
  background:#F2FAFE;
}
.sog-home thead .sog-col-duo{
  background:#E3F4FD;
}
.sog-home td.sog-win{
  background:#E7F6EE;
  color:#14603F;
  position:relative;
}
.sog-home td.sog-win strong{
  color:#14603F;
}
.sog-home td.sog-win:after{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:3px;
  background:var(--ok);
}
.sog-home .sog-duohead{
  display:flex;
  flex-direction:column;
  gap:3px;
  align-items:center;
}
.sog-home .sog-duohead span{
  font-family:var(--mono);
  font-size:9.5px;
  letter-spacing:.13em;
  color:#fff;
  background:var(--cyan-dk);
  padding:3px 8px;
  border-radius:3px;
  text-transform:uppercase;
}
.sog-home tbody tr:last-child td{
  border-bottom:0;
}
.sog-home .sog-grp td{
  background:var(--navy);
  color:#fff;
  font-family:var(--mono);
  font-size:10.5px;
  letter-spacing:.14em;
  text-transform:uppercase;
  padding:9px 18px;
}
.sog-home .sog-yes{
  color:var(--ok);
  font-weight:700;
}
.sog-home .sog-nope{
  color:var(--no);
  font-weight:700;
}
.sog-home td.sog-lab{
  font-weight:600;
  color:var(--ink);
}

/* buy direct */
.sog-home .sog-dbox{
  border:2px solid var(--cyan-dk);
  border-radius:8px;
  overflow:hidden;
  background:#fff;
}
.sog-home .sog-dhead{
  padding:30px 32px 26px;
  background:#F4FBFE;
  border-bottom:1px solid var(--rule);
}
.sog-home .sog-dhead h2{
  font-size:clamp(23px,3vw,30px);
  font-weight:600;
  color:var(--navy);
}
.sog-home .sog-dhead p{
  color:var(--ink-2);
  margin-top:10px;
  font-size:16px;
  max-width:62ch;
}
.sog-home .sog-dgrid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1px;
  background:var(--rule);
}
.sog-home .sog-d1{
  background:#fff;
  padding:24px 26px 26px;
}
.sog-home .sog-dn{
  font-family:var(--disp);
  font-weight:600;
  font-size:25px;
  color:var(--cyan-dk);
  line-height:1.1;
}
.sog-home .sog-dl{
  font-size:14.5px;
  color:var(--ink-2);
  margin-top:8px;
}

@media(max-width:860px){
  .sog-home .sog-dgrid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:520px){
  .sog-home .sog-dgrid{
    grid-template-columns:1fr;
  }
}

/* features */
.sog-home .sog-feat{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--rule);
  border:1px solid var(--rule);
  border-radius:6px;
  overflow:hidden;
}
.sog-home .sog-ft{
  background:#fff;
  padding:28px 26px 30px;
}
.sog-home .sog-ft .sog-ic{
  width:38px;
  height:38px;
  color:var(--cyan-dk);
}
.sog-home .sog-ft h3{
  font-size:18px;
  font-weight:600;
  margin-top:14px;
}
.sog-home .sog-ft p{
  font-size:15px;
  color:var(--ink-2);
  margin-top:8px;
}

@media(max-width:820px){
  .sog-home .sog-feat{
    grid-template-columns:1fr;
  }
}

/* usa */
.sog-home .sog-usa{
  background:var(--navy);
  color:#fff;
}
.sog-home .sog-usa-g{
  display:grid;
  grid-template-columns:1.05fr 1fr;
  gap:52px;
  align-items:center;
}
.sog-home .sog-usa h2{
  color:#fff;
}
.sog-home .sog-usa p{
  color:#B7D0E0;
  margin-top:14px;
  font-size:16.5px;
}
.sog-home .sog-usa .sog-eyebrow{
  color:var(--cyan);
}
.sog-home .sog-usa img{
  width:100%;
  border-radius:6px;
}
.sog-home .sog-usa .sog-stats{
  display:flex;
  gap:34px;
  margin-top:28px;
  flex-wrap:wrap;
}
.sog-home .sog-usa .sog-stats div .sog-n{
  font-family:var(--disp);
  font-size:27px;
  font-weight:600;
}
.sog-home .sog-usa .sog-stats div .sog-l{
  font-size:13px;
  color:#A9C6D9;
  margin-top:2px;
}

@media(max-width:820px){
  .sog-home .sog-usa-g{
    grid-template-columns:1fr;
    gap:32px;
  }
}

/* fuelsnap */
.sog-home .sog-fs{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:52px;
  align-items:center;
}
.sog-home .sog-fs img{
  width:100%;
  border-radius:6px;
}

@media(max-width:820px){
  .sog-home .sog-fs{
    grid-template-columns:1fr;
  }
}

/* reviews */
.sog-home .sog-rev{
  background:var(--wash);
}
.sog-home .sog-rating-row{
  display:flex;
  gap:40px;
  flex-wrap:wrap;
  align-items:flex-end;
  border-bottom:1px solid var(--rule);
  padding-bottom:26px;
  margin-bottom:30px;
}
.sog-home .sog-rr .sog-n{
  font-family:var(--disp);
  font-size:38px;
  font-weight:600;
  line-height:1;
  display:flex;
  align-items:baseline;
  gap:8px;
}
.sog-home .sog-rr .sog-n small{
  font-size:16px;
  color:var(--gold);
}
.sog-home .sog-rr .sog-l{
  font-size:13.5px;
  color:var(--ink-2);
  margin-top:6px;
}
.sog-home .sog-quotes{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.sog-home .sog-pull{
  margin:0 0 26px;
  padding:0 0 0 22px;
  border-left:4px solid var(--cyan-dk);
}
.sog-home .sog-pull p{
  font-family:var(--disp);
  font-weight:500;
  font-size:clamp(22px,3vw,30px);
  line-height:1.25;
  color:var(--navy);
  letter-spacing:-.015em;
}
.sog-home .sog-pull cite{
  font-style:normal;
  font-family:var(--mono);
  font-size:12.5px;
  color:var(--ink-3);
  display:block;
  margin-top:12px;
}
.sog-home .sog-q{
  background:#fff;
  border:1px solid var(--rule);
  border-radius:6px;
  padding:22px 24px;
  display:flex;
  flex-direction:column;
}
.sog-home .sog-qtop{
  display:flex;
  align-items:center;
  gap:9px;
  margin-bottom:12px;
}
.sog-home .sog-qtop .sog-st{
  font-size:13px;
}
.sog-home .sog-vp{
  font-family:var(--mono);
  font-size:9.5px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--ok);
}
.sog-home .sog-q p{
  font-size:15.5px;
  color:var(--ink);
  font-style:italic;
  flex:1;
}
.sog-home .sog-q .sog-who{
  font-size:13.5px;
  color:var(--ink-3);
  margin-top:14px;
  font-family:var(--mono);
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}
.sog-home .sog-own{
  font-size:9.5px;
  letter-spacing:.1em;
  text-transform:uppercase;
  background:var(--wash-2);
  color:var(--cyan-dk);
  padding:3px 8px;
  border-radius:3px;
}

@media(max-width:820px){
  .sog-home .sog-quotes{
    grid-template-columns:1fr;
  }
}

/* final */
.sog-home .sog-final{
  background:var(--cyan-dk);
  color:#fff;
  text-align:center;
  padding:64px 0;
}
.sog-home .sog-final h2{
  color:#fff;
  font-size:clamp(26px,3.4vw,36px);
  font-weight:600;
}
.sog-home .sog-final p{
  color:#D6EEFB;
  margin-top:12px;
  font-size:17px;
}
.sog-home .sog-final .sog-cta{
  display:flex;
  gap:12px;
  justify-content:center;
  margin-top:26px;
  flex-wrap:wrap;
}
.sog-home .sog-final .sog-btn-p{
  background:#fff;
  color:var(--cyan-dk);
}
.sog-home .sog-final .sog-btn-s{
  background:transparent;
  color:#fff;
  border-color:rgba(255,255,255,.5);
}
.sog-home :focus-visible{
  outline:2px solid var(--cyan);
  outline-offset:2px;
}

@media(prefers-reduced-motion:reduce){
  .sog-home *{
    transition:none!important;
  }
}

/* how it works: the 30-second video plus the three mechanical steps */
.sog-home .sog-hiwg{
  display:grid;
  grid-template-columns:1.25fr 1fr;
  gap:40px;
  align-items:start;
}
.sog-home .sog-vid video{
  width:100%;
  aspect-ratio:16/9;
  display:block;
  border-radius:6px;
  background:#000;
  box-shadow:0 18px 44px -22px rgba(14,36,56,.55);
}
.sog-home .sog-vid figcaption{
  margin-top:10px;
  font-size:13px;
  color:var(--ink-3);
}
.sog-home .sog-steps{
  display:flex;
  flex-direction:column;
  gap:22px;
  margin-top:4px;
}
.sog-home .sog-steps li{
  display:flex;
  gap:14px;
  align-items:flex-start;
  font-size:15.5px;
  color:var(--ink-2);
  line-height:1.55;
}
.sog-home .sog-steps b{
  color:var(--ink);
  font-weight:600;
}
.sog-home .sog-sn{
  flex:0 0 28px;
  width:28px;
  height:28px;
  border-radius:50%;
  background:var(--wash-2);
  color:var(--cyan-dk);
  font-family:var(--mono);
  font-size:13px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top:1px;
}

@media(max-width:860px){
  .sog-home .sog-hiwg{
    grid-template-columns:1fr;
    gap:28px;
  }
}

/* where the tank lives - shown inside the fit finder's white result card */
.sog-home .sog-env{
  margin:4px 0 20px;
  padding:15px 18px;
  border:1px solid var(--rule);
  border-radius:6px;
  background:var(--wash);
}
.sog-home .sog-envq{
  font-family:var(--disp);
  font-weight:600;
  font-size:15px;
  color:var(--ink);
  margin-bottom:10px;
}
.sog-home .sog-envopts{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.sog-home .sog-envb{
  font-family:var(--body);
  font-size:14px;
  color:var(--ink-2);
  background:#fff;
  border:1.5px solid var(--rule-2);
  border-radius:99px;
  padding:8px 16px;
  cursor:pointer;
}
.sog-home .sog-envb:hover{
  border-color:var(--cyan-dk);
  color:var(--cyan-dk);
}
.sog-home .sog-envb.sog-envon{
  background:var(--cyan-dk);
  border-color:var(--cyan-dk);
  color:#fff;
  font-weight:600;
}
.sog-home .sog-envnote{
  margin-top:12px;
  font-size:13.5px;
  line-height:1.55;
  color:var(--ink-2);
  border-left:2px solid var(--cyan);
  padding-left:11px;
}
