/* Shared styling for the Soar product pages.
   Lifted from fleet/index.html so the suite reads as one thing rather than five
   one-offs, plus the pieces the suite needs: a product switcher, honest status
   badges, and the before/after block that every product page is built around. */

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
body{background:var(--bg);color:var(--txt-body);font-family:'Inter',system-ui,sans-serif;
     font-size:17px;line-height:1.65;min-height:100dvh;-webkit-font-smoothing:antialiased}
a{color:var(--accent-text);text-decoration:none}
.wrap{max-width:1010px;margin:0 auto;padding:28px 22px 90px}

header.site{display:flex;align-items:center;justify-content:space-between;margin-bottom:34px;
            flex-wrap:wrap;gap:14px}
.wordmark{font-size:21px;font-weight:900;color:var(--txt);letter-spacing:-.02em}
.wordmark span{color:var(--accent-text)}
nav{display:flex;gap:20px;font-size:15px;align-items:center;flex-wrap:wrap}
nav a{color:var(--txt-body)}
nav a:hover{color:var(--txt)}

.btn{display:inline-block;background:var(--accent);color:var(--accent-ink);font-weight:800;padding:14px 26px;
     border-radius:12px;font-size:16px}
.btn.ghost{background:transparent;color:var(--txt);border:1px solid var(--line-strong)}
.btn.small{padding:9px 17px;font-size:14px;border-radius:10px}

h1{font-size:clamp(33px,5.2vw,55px);color:var(--txt);letter-spacing:-.03em;line-height:1.06;
   font-weight:900;margin-bottom:20px}
.lede{font-size:clamp(18px,2.1vw,21px);max-width:720px;margin-bottom:30px}
.hero-cta{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:13px}
.hero-note{font-size:14px;color:var(--txt-dim)}

h2{font-size:clamp(25px,3.3vw,33px);color:var(--txt);letter-spacing:-.02em;line-height:1.16;
   font-weight:800;margin-bottom:13px}
h3{font-size:18px;color:var(--txt);font-weight:700;margin-bottom:6px;letter-spacing:-.01em}
section{margin-top:78px}
.eyebrow{font-size:13px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;
         color:var(--accent-text);margin-bottom:11px}
.sub{max-width:680px;margin-bottom:28px}
p+p{margin-top:14px}

.grid{display:grid;gap:16px;grid-template-columns:repeat(auto-fit,minmax(255px,1fr))}
.grid.two{grid-template-columns:repeat(auto-fit,minmax(330px,1fr))}
.card{background:var(--card);border:1px solid var(--line);
      border-radius:16px;padding:22px 24px}
.card p{font-size:15px;color:var(--txt-body)}

ul.ticks{list-style:none;margin-top:14px}
ul.ticks li{padding:6px 0 6px 25px;position:relative;font-size:15.5px;color:var(--txt-body)}
ul.ticks li::before{content:"";position:absolute;left:2px;top:14px;width:9px;height:9px;
                    border-radius:50%;background:var(--accent)}

/* ── Product switcher ──────────────────────────────────────────────────────
   On every product page. Someone who lands on one product from a search should
   be able to see the rest without going back to the homepage. */
.suite{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:52px}
.suite a{font-size:14px;font-weight:600;padding:8px 15px;border-radius:999px;
         border:1px solid var(--line-strong);color:var(--txt-body);background:transparent}
.suite a:hover{color:var(--txt);border-color:var(--txt-dim)}
.suite a.on{background:var(--accent);color:var(--accent-ink);border-color:var(--accent)}

/* ── Status badges ─────────────────────────────────────────────────────────
   Every product says plainly where it is. An operator will forgive a roadmap and
   will not forgive discovering the hard way that something is not built yet. */
.status{display:inline-flex;align-items:center;gap:7px;font-size:12.5px;font-weight:800;
        letter-spacing:.07em;text-transform:uppercase;padding:5px 12px;border-radius:999px;
        margin-bottom:18px}
.status::before{content:"";width:7px;height:7px;border-radius:50%;background:currentColor}
.status.live{background:var(--ok-bg);color:var(--ok-text)}
.status.beta{background:var(--warn-bg);color:var(--warn-text)}
.status.soon{background:var(--line);color:var(--txt-dim)}

/* ── The before/after block ────────────────────────────────────────────────
   The spine of every product page: what you do today, and what changes. A feature
   list tells someone what exists; this tells them why they should care. */
.compare{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin-top:26px}
@media(max-width:760px){.compare{grid-template-columns:1fr}}
.compare>div{border-radius:18px;padding:26px 28px;border:1px solid var(--line)}
.compare .now{background:var(--card)}
.compare .now .who{color:var(--txt-dim)}
.compare .then{background:linear-gradient(180deg,rgba(245,158,11,.09),rgba(245,158,11,.02));
               border-color:var(--accent-soft)}
.compare .then .who{color:var(--accent-text)}
.compare .who{font-size:12.5px;font-weight:800;letter-spacing:.1em;text-transform:uppercase;
              margin-bottom:14px}
.compare ul{list-style:none}
.compare li{font-size:15.5px;padding:8px 0;border-bottom:1px solid var(--line);
            color:var(--txt-body)}
.compare li:last-child{border-bottom:0}

/* Pull-quote for the one number or claim that carries a section. */
.figure{border-left:3px solid var(--accent-text);padding:6px 0 6px 22px;margin:30px 0}
.figure b{display:block;color:var(--txt);font-size:clamp(26px,3.6vw,36px);font-weight:900;
          letter-spacing:-.02em;line-height:1.1}
.figure span{font-size:15px;color:var(--txt-body)}

/* Numbered how-it-works steps. */
ol.steps{list-style:none;counter-reset:s;margin-top:22px}
ol.steps li{counter-increment:s;position:relative;padding:0 0 24px 52px}
ol.steps li::before{content:counter(s);position:absolute;left:0;top:-2px;width:34px;height:34px;
     border-radius:10px;background:var(--accent-soft);color:var(--accent-text);font-weight:800;
     font-size:15px;display:grid;place-items:center}
ol.steps h3{margin-bottom:4px}
ol.steps p{font-size:15.5px;color:var(--txt-body)}

.note{background:var(--card);border:1px solid var(--line);
      border-left:3px solid var(--line-strong);border-radius:0 12px 12px 0;
      padding:18px 22px;font-size:15px;color:var(--txt-body);margin-top:26px}

footer{margin-top:96px;padding-top:26px;border-top:1px solid var(--line);
       font-size:14px;color:var(--txt-dim);display:flex;justify-content:space-between;
       gap:16px;flex-wrap:wrap}
footer a{color:var(--txt-body)}
