/* SolicitorOS marketing site — one editorial system.
 *
 * This stylesheet had five identities stacked in it: a vibrant indigo-violet
 * SaaS base, an ink-and-brass letterhead, a "restraint" pass, a light
 * inversion of that, and finally the workspace blue. Each one was appended
 * rather than applied, so the page was assembled from whichever layer
 * happened to win the cascade — which is most of why it read as generated
 * rather than designed.
 *
 * There is one system now, and it is the one a law practice belongs in:
 * paper and ink, an editorial serif for display, hairlines instead of
 * shadows, square corners, and a single accent — the red of a law report —
 * used for section marks and nothing else. No gradient ever touches text.
 * No emoji stand in for icons. Evidence (a worked date, a rule number, a
 * SARS table) does the work decoration was doing badly.
 *
 * Everything below is written against the tokens in :root, so the system is
 * changed in one place, not in a sixth layer.
 */
:root{
  /* Paper and ink */
  --paper:#f6f4ef;--card:#fffdf8;--cream:#ede9df;
  --ink:#15171a;--ink2:#35393f;--muted:#5a6068;
  --hairline:#d9d3c6;--rule:#c9c2b4;
  /* The one accent, and the link blue that has always been ours */
  --seal:#7b2d26;--seal-on-dark:#d3a08f;
  --link:#0a4d8c;--link-strong:#083a6b;--link-soft:#dde6f0;
  --radius:2px;
  --display:"Fraunces",Georgia,"Times New Roman",serif;
  --text:Inter,system-ui,-apple-system,"Segoe UI",sans-serif;
  --mono:ui-monospace,"SFMono-Regular","Cascadia Mono","Segoe UI Mono","Roboto Mono",Menlo,Consolas,monospace;

  /* The names the rest of this file was written against. Pointing them at the
     system above re-skins every rule that uses them, instead of overriding
     each one by hand further down. */
  --ink-900:#15171a;--ink-950:#0d0f11;--line:#d9d3c6;--soft:#ede9df;--white:#fffdf8;
  --indigo:#0a4d8c;--indigo2:#083a6b;--violet:#7b2d26;--blue:#0a4d8c;--cyan:#0a4d8c;
  --pink:#7b2d26;--lime:#2f5d3f;--green:#2f5d3f;--amber:#8a5a12;
  --sos-blue:#0a4d8c;--sos-blue-strong:#083a6b;--sos-blue-soft:#dde6f0;
  --sos-navy:#15171a;--sos-navy-2:#1e2125;
  --sos-purple:#7b2d26;--sos-green:#2f5d3f;--sos-amber:#8a5a12;--sos-red:#a3271e;
  /* A solid where a gradient used to be: every background:var(--grad) becomes
     flat ink, which is what the system wants anyway. */
  --grad:#15171a;--grad-soft:#ede9df;
  --shadow:none;--shadow-sm:none;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body.sos-site{margin:0;font-family:var(--text);color:var(--ink2);background:var(--paper);-webkit-font-smoothing:antialiased}
h1,h2,h3,h4{font-family:var(--display);font-weight:600;color:var(--ink);letter-spacing:-.015em;text-wrap:balance}
a{color:var(--link);text-decoration:none;font-weight:500}
img{max-width:100%;height:auto}
.sos-container{max-width:1180px;margin:0 auto;padding:0 24px}


/* Header */
.sos-site-header{position:sticky;top:0;z-index:30;background:rgba(255,255,255,.82);backdrop-filter:blur(16px);border-bottom:1px solid var(--line)}
.sos-site-header .sos-container{display:flex;align-items:center;justify-content:space-between;height:74px;gap:18px}
.sos-site-logo{display:flex;align-items:center;gap:10px;color:var(--ink);font-weight:900;font-size:20px;font-family:var(--display)}
.sos-site-logo .sos-mark{flex-shrink:0}
.sos-site-nav{display:flex;gap:22px;align-items:center}
.sos-site-nav a{color:#3a4156}
.sos-site-nav a:hover{color:var(--indigo)}
.sos-nav-dropdown{position:relative;display:flex;align-items:center}
.sos-nav-trigger{display:inline-flex;align-items:center;gap:6px;border:0;background:transparent;color:#3a4156;font:inherit;cursor:pointer;padding:8px 0}
.sos-nav-trigger:hover,.sos-nav-dropdown:focus-within .sos-nav-trigger{color:var(--indigo)}
.sos-nav-trigger span{font-size:11px;line-height:1;transform:translateY(1px)}
.sos-nav-menu{position:absolute;top:calc(100% + 14px);right:0;width:244px;max-height:min(70vh,560px);overflow-y:auto;padding:10px;border:1px solid var(--line);border-radius:18px;background:#fff;box-shadow:0 24px 60px rgba(15,23,42,.14);opacity:0;visibility:hidden;transform:translateY(-6px);transition:opacity .15s ease,transform .15s ease,visibility .15s ease}
.sos-nav-menu::before{content:"";position:absolute;left:0;right:0;top:-16px;height:16px}
.sos-nav-dropdown:hover .sos-nav-menu,.sos-nav-dropdown:focus-within .sos-nav-menu{opacity:1;visibility:visible;transform:translateY(0)}
.sos-nav-menu a{display:block;padding:11px 12px;border-radius:12px;color:#253044;font-weight:700}
.sos-nav-menu a:hover,.sos-nav-menu a:focus-visible{background:var(--soft);color:var(--indigo)}

/* Buttons */
.sos-btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;background:var(--grad);background-size:160% 160%;color:#fff!important;border:0;border-radius:var(--radius);padding:13px 22px;font-weight:800;font-size:15px;cursor:pointer;box-shadow:0 14px 30px rgba(79,70,229,.32);transition:transform .18s ease,box-shadow .18s ease,background-position .4s ease}
.sos-btn:hover{transform:translateY(-2px);box-shadow:0 20px 42px rgba(79,70,229,.42);background-position:100% 0}
.sos-btn.ghost{background:#fff;color:var(--indigo)!important;border:1.5px solid #d9dcff;box-shadow:none}
.sos-btn.ghost:hover{border-color:var(--indigo);background:var(--soft)}
.sos-btn.lg{padding:16px 28px;font-size:16px}
.sos-trial-dock{display:none}

/* Kicker pill */
.sos-kicker{display:inline-flex;align-items:center;gap:8px;background:var(--grad-soft);color:var(--indigo);border:1px solid #e2e0ff;border-radius:var(--radius);padding:8px 14px;font-weight:800;font-size:13px;text-transform:uppercase;letter-spacing:.06em}

/* ---- HERO (vibrant mesh) ---- */
.sos-hero{position:relative;overflow:hidden;padding:84px 0 64px;background:var(--paper)}
.sos-hero::before,.sos-hero::after{content:"";position:absolute;border-radius:50%;filter:blur(60px);opacity:.55;z-index:0;animation:floaty 14s ease-in-out infinite}
.sos-hero::before{width:26rem;height:26rem;left:-6rem;top:-6rem;background:transparent}
.sos-hero::after{width:24rem;height:24rem;right:-5rem;bottom:-7rem;background:transparent;animation-delay:-7s}
@keyframes floaty{0%,100%{transform:translateY(0)}50%{transform:translateY(22px)}}
.sos-hero-grid{position:relative;z-index:1;display:grid;grid-template-columns:1.04fr .96fr;gap:48px;align-items:center}
.sos-hero h1{font-size:clamp(2.6rem,5.2vw,4.2rem);line-height:1.02;letter-spacing:-.04em;margin:16px 0 18px;max-width:15ch}
.sos-hero h1 .grad{color:var(--ink)}
.sos-hero p{font-size:1.22rem;color:#46506a;max-width:58ch;line-height:1.6}
.sos-hero-actions{display:flex;gap:14px;margin-top:28px;flex-wrap:wrap}
.sos-hero-trust{display:flex;gap:20px;flex-wrap:wrap;margin-top:28px;color:var(--muted);font-size:13px;font-weight:700}
.sos-hero-trust span{display:inline-flex;align-items:center;gap:6px}
.sos-hero-trust b{color:#f59e0b;letter-spacing:1px}

/* Hero product window */
.sos-hero-visual{position:relative;perspective:1600px}
.sos-hero-visual::before{content:"";position:absolute;inset:-14% -10% -10% -6%;background:transparent;filter:blur(12px);z-index:0}
.sos-hero-people{position:relative;z-index:2;margin:0 0 -18px 32px;display:grid;grid-template-columns:92px 1fr;gap:14px;align-items:center;max-width:440px;background:rgba(255,255,255,.92);border:1px solid rgba(231,233,243,.9);border-radius:20px;padding:12px;box-shadow:0 18px 42px rgba(17,12,46,.14);backdrop-filter:blur(12px)}
.sos-hero-people img{width:92px;height:72px;border-radius:14px;object-fit:cover;display:block}
.sos-hero-people strong{display:block;font-size:14px;letter-spacing:-.01em;color:var(--ink)}
.sos-hero-people span{display:block;font-size:12px;line-height:1.45;color:var(--muted);margin-top:3px}
.sos-window{position:relative;z-index:1;background:#fff;border:1px solid var(--line);border-radius:22px;overflow:hidden;box-shadow:0 50px 100px rgba(17,12,46,.26),0 16px 34px rgba(17,12,46,.1);transform:rotateY(-6deg) rotateX(3deg);transition:transform .6s ease}
.sos-hero-visual:hover .sos-window{transform:rotateY(0) rotateX(0)}
.sos-window-top{display:flex;align-items:center;gap:8px;padding:12px 16px;border-bottom:1px solid var(--line);background:#fbfbfe}
.sos-window-top .dot{width:11px;height:11px;border-radius:50%}
.sos-window-top .dot.r{background:#ff5f57}.sos-window-top .dot.y{background:#febc2e}.sos-window-top .dot.g{background:#28c840}
.sos-window-top strong{margin-left:8px;font-size:13px;color:#3a4156;font-weight:700;font-family:Inter}
.sos-window-top .live{margin-left:auto;font-style:normal;font-size:12px;font-weight:800;color:#16a34a}
.sos-window-body{display:grid;grid-template-columns:62px 1fr;min-height:386px}
.sos-mini-side{background:var(--cream);border-right:1px solid var(--line);display:flex;flex-direction:column;align-items:center;gap:12px;padding:16px 0}
.sos-mini-side b{width:34px;height:34px;border-radius:9px;background:var(--grad);display:grid;place-items:center}
.sos-mini-side span{width:26px;height:9px;border-radius:6px;background:#d6d9ee}
.sos-mini-side span.on{background:var(--indigo)}
.sos-mini-main{padding:18px}
.sos-mini-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:14px}
.sos-mini-head small{color:var(--muted);font-size:12px}
.sos-mini-head strong{display:block;font-size:18px;letter-spacing:-.02em;margin-top:2px}
.sos-mini-pill{background:var(--grad-soft);color:var(--indigo);border-radius:var(--radius);padding:6px 10px;font-size:12px;font-weight:800;white-space:nowrap}
.sos-mini-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-bottom:14px}
.sos-mini-stats>div{background:var(--soft);border:1px solid var(--line);border-radius:14px;padding:12px}
.sos-mini-stats b{font-size:20px;letter-spacing:-.02em;display:block}
.sos-mini-stats span{font-size:11px;color:var(--muted)}
.sos-mini-card{border:1px solid var(--line);border-radius:14px;padding:13px 14px;margin-bottom:10px;background:#fff}
.sos-mini-card.urgent{border-color:#ffd7d2;background:var(--card)}
.sos-mini-card.ai{border-color:#dcd6ff;background:var(--card)}
.sos-mini-card strong{display:block;font-size:14px;margin:7px 0 3px;letter-spacing:-.01em}
.sos-mini-card small{color:var(--muted);font-size:12px}
.sos-mini-tag{display:inline-flex;border-radius:var(--radius);padding:4px 9px;font-size:11px;font-weight:800}
.sos-mini-tag.red{background:#fde8e6;color:#d93025}.sos-mini-tag.blue{background:#eaeaff;color:var(--indigo)}.sos-mini-tag.green{background:#e6f4ea;color:#137333}
.sos-mini-row{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:2px}
.sos-mini-row>div{background:var(--soft);border:1px solid var(--line);border-radius:14px;padding:12px}
.sos-mini-row span{font-size:11px;color:var(--muted);display:block;margin-bottom:2px}
.sos-mini-row b{font-size:16px;letter-spacing:-.02em}

/* ---- Credibility strip ---- */
.sos-soft-bg{background:var(--soft)}
.sos-trustbar{border-top:1px solid var(--line);border-bottom:1px solid var(--line);background:#fff;padding:24px 0}
.sos-trustbar-label{text-align:center;color:var(--muted);font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.08em;margin:0 0 14px}
.sos-trustbar-items{display:flex;flex-wrap:wrap;gap:12px 26px;justify-content:center;color:#3a4156;font-weight:700;font-size:14px}
.sos-trustbar-items span{display:inline-flex;align-items:center;gap:7px;background:var(--soft);border:1px solid var(--line);border-radius:var(--radius);padding:9px 15px}

/* ---- Sections ---- */
.sos-section{padding:64px 0}
.sos-section h2{font-size:clamp(1.9rem,3.2vw,2.8rem);letter-spacing:-.035em;margin:8px 0 12px;line-height:1.08}
.sos-section .lead{color:var(--muted);max-width:72ch;font-size:1.1rem;line-height:1.6}
.sos-section-head{text-align:center;max-width:760px;margin:0 auto 36px}
.sos-section-head .lead{margin:0 auto}

/* People proof points */
.sos-people-section{background:#fff;padding-top:54px}
.sos-people-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.sos-people-grid figure{margin:0;background:#fff;border:1px solid var(--line);border-radius:20px;overflow:hidden;box-shadow:var(--shadow-sm)}
.sos-people-grid img{width:100%;aspect-ratio:4/3;object-fit:cover;display:block}
.sos-people-grid figcaption{display:block;padding:18px}
.sos-people-grid strong{display:block;font-family:var(--display);font-size:1rem;color:var(--ink);margin-bottom:6px}
.sos-people-grid span{display:block;color:var(--muted);font-size:14px;line-height:1.5}

/* Feature grid (vibrant icon cards) */
.sos-grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:32px}
.sos-feature{position:relative;background:#fff;border:1px solid var(--line);border-radius:20px;padding:26px;box-shadow:var(--shadow-sm);transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease;overflow:hidden}
.sos-feature::after{content:"";position:absolute;left:0;top:0;height:4px;width:100%;background:var(--grad);opacity:0;transition:opacity .2s ease}
.sos-feature:hover{transform:translateY(-4px);box-shadow:var(--shadow);border-color:#d9dcff}
.sos-feature:hover::after{opacity:1}
.sos-icon{width:46px;height:46px;border-radius:13px;display:grid;place-items:center;font-size:22px;margin-bottom:14px;color:#fff;background:var(--grad);box-shadow:0 10px 22px rgba(79,70,229,.3)}
.sos-icon.c1{background:var(--ink)}
.sos-icon.c2{background:var(--ink)}
.sos-icon.c3{background:var(--ink)}
.sos-icon.c4{background:var(--ink)}
.sos-icon.c5{background:var(--ink)}
.sos-icon.c6{background:var(--ink)}
.sos-feature h3{margin:4px 0 8px;font-size:1.25rem;letter-spacing:-.02em}
.sos-feature p{color:var(--muted);line-height:1.55;margin:0}
.sos-feature .tag{display:inline-flex;background:var(--grad-soft);color:var(--indigo);border-radius:var(--radius);padding:6px 11px;font-size:12px;font-weight:800;margin-bottom:10px}

/* ---- Feature spotlights ---- */
.sos-spotlights{display:grid;gap:56px}
.sos-spot{display:grid;grid-template-columns:1fr 1fr;gap:52px;align-items:center}
.sos-spot.reverse .sos-spot-copy{order:2}
.sos-spot.reverse .sos-spot-visual{order:1}
.sos-spot-copy h2{font-size:clamp(1.7rem,2.8vw,2.3rem);letter-spacing:-.03em;margin:10px 0 12px}
.sos-spot-copy h2 em{font-style:italic;color:var(--violet)}
.sos-check{list-style:none;padding:0;margin:18px 0 0;line-height:2;color:#3a4156;font-weight:600}
.sos-check li::before{content:"✓";color:#16a34a;font-weight:900;margin-right:10px}
.sos-panel-card{background:#fff;border:1px solid var(--line);border-radius:20px;padding:22px;box-shadow:var(--shadow)}
.sos-panel-head{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:6px}
.sos-panel-head strong{font-size:1.1rem;letter-spacing:-.02em}
.sos-panel-meta{color:var(--muted);font-size:13px;margin-bottom:14px}
.sos-chiprow{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:14px}
.sos-chiprow span{background:var(--soft);border:1px solid var(--line);border-radius:var(--radius);padding:6px 11px;font-size:12px;font-weight:700;color:#3a4156}
.sos-panel-line{display:flex;justify-content:space-between;padding:10px 0;border-top:1px solid var(--line);font-size:14px}
.sos-panel-line b{color:var(--muted);font-weight:700}
.sos-panel-alert{margin-top:12px;background:#fff7f6;border:1px solid #ffd7d2;color:#d93025;border-radius:12px;padding:10px 12px;font-size:13px;font-weight:700}
.sos-ai-field{background:var(--soft);border:1px solid var(--line);border-radius:10px;padding:8px 12px;margin-bottom:8px;font-size:13px;color:#3a4156}
.sos-ai-out{background:var(--card);border:1px solid #dcd6ff;border-radius:12px;padding:14px;font-size:13px;line-height:1.5;color:#1f2640;margin:6px 0 12px}
.sos-panel-foot{display:flex;align-items:center;gap:10px;font-size:12px;color:var(--muted)}

/* ---- Comparison table ---- */
.sos-compare{margin-top:30px;border:1px solid var(--line);border-radius:20px;overflow:hidden;box-shadow:var(--shadow-sm);background:#fff}
.sos-compare-row{display:grid;grid-template-columns:1.6fr 1fr 1fr;align-items:center;border-top:1px solid var(--line)}
.sos-compare-row:first-child{border-top:0}
.sos-compare-row>div{padding:16px 20px;font-size:14px}
.sos-compare-row>div:first-child{font-weight:700;color:var(--ink)}
.sos-compare-row .yes{background:transparent;color:var(--ink);border-left:1px solid var(--line);font-weight:600}
.sos-compare-row .no{color:var(--muted);border-left:1px solid var(--line)}
.sos-compare-head{background:var(--soft)}
.sos-compare-head>div{font-size:12px;text-transform:uppercase;letter-spacing:.05em;color:var(--muted);font-weight:800}
.sos-compare-head>div:nth-child(2){background:var(--grad);color:#fff}
.sos-fineprint{color:var(--muted);font-size:12px;margin-top:14px;max-width:84ch;line-height:1.5}

/* ---- Testimonial ---- */
.sos-quote{max-width:780px;margin:0 auto;text-align:center}
.sos-quote-stars{color:#f59e0b;font-size:20px;letter-spacing:3px}
.sos-quote blockquote{font-size:clamp(1.35rem,2.5vw,1.8rem);line-height:1.45;letter-spacing:-.02em;margin:14px 0 16px;color:var(--ink);font-family:var(--display);font-weight:600}
.sos-quote figcaption{color:var(--muted);font-weight:600}
.sos-quote figcaption b{color:var(--ink)}

/* ---- Pricing ---- */
.sos-pricing-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:34px}
.sos-price-card{position:relative;display:flex;flex-direction:column;background:#fff;border:1px solid var(--line);border-radius:22px;padding:26px;box-shadow:var(--shadow-sm);transition:transform .18s ease}
.sos-price-card:hover{transform:translateY(-4px)}
.sos-price-card.featured{border:1px solid var(--ink);background:var(--ink);box-shadow:none}
.sos-price-badge{position:absolute;top:-13px;left:24px;background:var(--grad);color:#fff;border-radius:var(--radius);padding:6px 13px;font-size:11px;font-weight:800;letter-spacing:.03em;box-shadow:0 8px 18px rgba(79,70,229,.4)}
.sos-price-card h3{margin:0 0 4px;font-size:1.2rem}
.sos-price-card .price{font-size:2.1rem;font-weight:800;letter-spacing:-.03em;margin:10px 0;font-family:var(--display);white-space:nowrap}
.sos-price-card p{color:var(--muted);margin:0 0 6px}
.sos-price-card .sos-price-tagline{color:#374151;font-weight:600;font-size:.92rem;line-height:1.45;margin:8px 0 4px;min-height:50px}
.sos-price-card .sos-price-size{color:var(--muted);font-size:.86rem;margin:0 0 4px}
.sos-price-card ul{list-style:none;padding:0;margin:14px 0;color:#3a4156;line-height:2;flex:1}
.sos-price-card ul li::before{content:"✓";color:#16a34a;font-weight:900;margin-right:8px}

/* ---- Security band ---- */
.sos-security{background:var(--ink);color:#fff;border-radius:28px;padding:46px;position:relative;overflow:hidden}
.sos-security::before{content:"";position:absolute;width:30rem;height:30rem;right:-8rem;top:-10rem;border-radius:50%;background:transparent;filter:blur(40px)}
.sos-security-head{position:relative}
.sos-security-head h2{color:#fff;margin:10px 0 8px}
.sos-security-head .sos-kicker{background:rgba(255,255,255,.1);color:#c7c4ff;border-color:rgba(255,255,255,.15)}
.sos-security-head p{color:rgba(255,255,255,.78);max-width:60ch}
.sos-security-grid{position:relative;display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:28px}
.sos-security-grid>div{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);border-radius:16px;padding:20px}
.sos-security-grid b{display:block;margin-bottom:6px}
.sos-security-grid span{color:rgba(255,255,255,.7);font-size:13px;line-height:1.5}

/* ---- Inner page hero ---- */
.sos-page-hero{position:relative;overflow:hidden;padding:72px 0 48px;text-align:center;background:var(--paper)}
.sos-page-hero .sos-container{position:relative;z-index:1;max-width:820px}
.sos-page-hero h1{font-size:clamp(2.3rem,4.4vw,3.4rem);letter-spacing:-.04em;line-height:1.05;margin:16px 0 14px}
.sos-page-hero h1 .grad{color:var(--ink)}
.sos-page-hero p{font-size:1.18rem;color:#46506a;max-width:62ch;margin:0 auto;line-height:1.6}
.sos-page-hero .sos-hero-actions{justify-content:center}

/* CTA */
.sos-cta{background:var(--grad);color:#fff;border-radius:28px;padding:52px;text-align:center;margin:40px 0;position:relative;overflow:hidden;box-shadow:0 30px 70px rgba(79,70,229,.35)}
.sos-cta::before{content:"";position:absolute;inset:0;background:transparent}
.sos-cta h2{color:#fff;margin:0 0 10px;position:relative}
.sos-cta p{color:rgba(255,255,255,.9);max-width:60ch;margin:0 auto 24px;position:relative}
.sos-cta .sos-btn{background:#fff;color:var(--indigo)!important;position:relative}

/* Prose (legal pages) */
.sos-prose{max-width:820px;margin:0 auto;line-height:1.7;color:#33405c}
.sos-prose h2{letter-spacing:-.03em}
.sos-prose h3{margin-top:28px}

/* Footer */
.sos-site-footer{border-top:1px solid var(--line);background:var(--soft);padding:48px 0 28px;color:var(--muted)}
.sos-footer-grid{display:grid;grid-template-columns:1.6fr 1fr 1fr;gap:32px}
.sos-footer-brand p{max-width:42ch;line-height:1.6;margin:14px 0 0}
.sos-site-footer h4{color:var(--ink);margin:0 0 12px;font-size:14px}
.sos-site-footer .sos-footer-grid a{display:block;color:#46506a;font-weight:600;margin-bottom:8px}
.sos-site-footer .sos-footer-grid a:hover{color:var(--indigo)}
.sos-footer-base{display:flex;justify-content:space-between;gap:20px;flex-wrap:wrap;margin-top:30px;padding-top:20px;border-top:1px solid var(--line);font-size:13px}

/* ---- Vibrant auth (login/signup) ---- */
.sos-authx{min-height:100vh;display:grid;grid-template-columns:1.05fr .95fr;background:#fff}
.sos-authx-aside{position:relative;overflow:hidden;color:#fff;padding:56px 52px;display:flex;flex-direction:column;justify-content:center;
  background:var(--ink)}
.sos-authx-aside::before{content:"";position:absolute;width:30rem;height:30rem;right:-10rem;top:-8rem;border-radius:50%;background:transparent;filter:blur(30px)}
.sos-authx-aside::after{content:"";position:absolute;width:24rem;height:24rem;left:-8rem;bottom:-9rem;border-radius:50%;background:transparent;filter:blur(36px)}
.sos-authx-aside>*{position:relative;z-index:1}
.sos-authx-logo{display:inline-flex;align-items:center;gap:10px;font-weight:900;font-size:22px;font-family:var(--display);color:#fff}
/* Explicit: this is an <a>, so it inherits nothing — the generic link blue
   won over the tinted aside's white and the wordmark sat blue-on-indigo. */
.sos-authx-logo .sos-mark{flex-shrink:0}
.sos-authx-aside h1{font-size:clamp(2rem,3.4vw,2.8rem);letter-spacing:-.03em;line-height:1.1;margin:26px 0 14px}
.sos-authx-aside p{color:rgba(255,255,255,.85);font-size:1.08rem;line-height:1.6;max-width:42ch}
.sos-authx-stats{display:flex;gap:14px;flex-wrap:wrap;margin-top:32px}
.sos-authx-stats div{background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.16);border-radius:16px;padding:14px 18px}
.sos-authx-stats strong{display:block;font-size:1.15rem;font-family:var(--display)}
.sos-authx-stats span{font-size:12px;color:rgba(255,255,255,.8)}
.sos-authx-trust{margin-top:30px;display:grid;gap:10px}
.sos-authx-trust div{display:flex;align-items:center;gap:10px;color:rgba(255,255,255,.9);font-weight:600}
.sos-authx-trust b{display:grid;place-items:center;width:22px;height:22px;border-radius:50%;background:rgba(255,255,255,.22);font-size:12px}
.sos-authx-main{padding:48px 52px;display:flex;align-items:center;overflow-y:auto}
.sos-authx-card{width:100%;max-width:520px;margin:0 auto}
.sos-authx-card h2{font-size:1.7rem;letter-spacing:-.02em;margin:0 0 6px}
.sos-authx-card .sub{color:var(--muted);margin:0 0 22px;line-height:1.55}
.sos-social{display:grid;gap:10px;margin-bottom:18px}
.sos-social a{display:flex;align-items:center;justify-content:center;gap:10px;border:1.5px solid var(--line);border-radius:12px;padding:12px;font-weight:700;color:#33405c;background:#fff;transition:border-color .15s ease,box-shadow .15s ease}
.sos-social a:hover{border-color:#c9cdf0;box-shadow:var(--shadow-sm)}
.sos-social img,.sos-social svg{width:20px;height:20px}
.sos-or{display:flex;align-items:center;gap:14px;color:var(--muted);font-size:13px;font-weight:600;margin:6px 0 18px}
.sos-or::before,.sos-or::after{content:"";flex:1;height:1px;background:var(--line)}
.sos-xform{display:grid;gap:14px}
.sos-xform-section{font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.06em;color:var(--seal);margin:14px 0 -2px}
.sos-xform-section:first-of-type{margin-top:0}
/* ── Conversion + beauty layer ── */
.sos-hero-microcopy{margin:10px 0 0;font-size:13.5px;font-weight:600;color:#5b6b8c}
.sos-conversion-band{padding:0 0 14px;background:#fff}
.sos-conversion-strip{display:flex;align-items:center;justify-content:space-between;gap:18px;margin:28px 0 0;padding:20px 22px;border:1px solid var(--hairline);border-radius:22px;background:transparent;box-shadow:0 16px 38px rgba(26,115,232,.08)}
.sos-conversion-strip span{display:block;color:var(--seal);font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.05em;margin-bottom:5px}
.sos-conversion-strip strong{display:block;color:#101828;font-family:var(--display);font-size:1.08rem;letter-spacing:-.02em}
.sos-conversion-strip p{margin:5px 0 0;color:#5b6478;font-size:14px;line-height:1.5}
.sos-conversion-strip .sos-btn{white-space:nowrap}
.sos-signup-fastlane{margin:0 0 18px;padding:16px 18px;border:1px solid var(--hairline);border-left:2px solid var(--seal);border-radius:16px;background:transparent}
.sos-signup-fastlane span{display:block;color:var(--seal);font-size:11px;font-weight:900;text-transform:uppercase;letter-spacing:.06em;margin-bottom:4px}
.sos-signup-fastlane strong{display:block;color:#101828;font-size:1rem;letter-spacing:-.01em}
.sos-signup-fastlane p{margin:5px 0 12px;color:#5b6478;font-size:13.5px;line-height:1.45}
.sos-signup-fastlane ul{list-style:none;display:flex;flex-wrap:wrap;gap:8px;margin:0;padding:0}
.sos-signup-fastlane li{background:transparent;color:var(--seal);border-radius:var(--radius);padding:6px 10px;font-size:12px;font-weight:800}
.sos-submit-proof{display:grid;gap:4px;padding:12px 14px;border-radius:14px;background:#f6f9ff;border:1px solid #e1ebff;color:#33405c}
.sos-submit-proof strong{font-size:13px;color:#101828}
.sos-submit-proof span{font-size:12.5px;line-height:1.45;color:#5b6478}
/* Honest numbers strip */
.sos-numbers{padding:34px 0}
.sos-numbers-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:14px;text-align:center}
.sos-numbers-grid div{background:#fff;border:1px solid #e7ebf3;border-radius:18px;padding:22px 16px;box-shadow:0 10px 26px rgba(16,24,40,.05)}
.sos-numbers-grid b{display:block;font-family:var(--display);font-size:2.1rem;letter-spacing:-.02em;color:var(--ink);line-height:1.1}
.sos-numbers-grid span{display:block;margin-top:6px;color:#5b6b8c;font-size:13.5px;font-weight:600;line-height:1.4}
/* How it works */
.sos-how{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin-top:34px}
.sos-how-step{position:relative;background:#fff;border:1px solid #e7ebf3;border-radius:20px;padding:28px 24px 24px;box-shadow:0 12px 30px rgba(16,24,40,.06);transition:transform .2s ease,box-shadow .2s ease}
.sos-how-step:hover{transform:translateY(-4px);box-shadow:0 20px 46px rgba(16,24,40,.10)}
.sos-how-step .num{position:absolute;top:-16px;left:24px;width:34px;height:34px;display:grid;place-items:center;border-radius:var(--radius);background:var(--seal);color:#fff;font-weight:800;font-size:15px;box-shadow:0 8px 18px rgba(26,115,232,.35)}
.sos-how-step h3{margin:4px 0 8px;font-size:1.05rem}
.sos-how-step p{color:#46506a;line-height:1.6;margin:0}
@media(max-width:860px){.sos-how{grid-template-columns:1fr}}
/* FAQ accordion (pure details/summary) */
.sos-faq{margin-top:26px;display:flex;flex-direction:column;gap:10px}
.sos-faq-item{background:#fff;border:1px solid #e7ebf3;border-radius:16px;padding:0;overflow:hidden;transition:box-shadow .2s ease}
.sos-faq-item[open]{box-shadow:0 12px 30px rgba(16,24,40,.07)}
.sos-faq-item summary{cursor:pointer;list-style:none;padding:18px 48px 18px 20px;font-weight:700;color:#182033;position:relative}
.sos-faq-item summary::-webkit-details-marker{display:none}
.sos-faq-item summary::after{content:'+';position:absolute;right:18px;top:50%;transform:translateY(-50%);width:26px;height:26px;display:grid;place-items:center;border-radius:var(--radius);background:transparent;color:var(--seal);font-weight:800;transition:transform .2s ease}
.sos-faq-item[open] summary::after{content:'–'}
.sos-faq-item p{margin:0;padding:0 20px 18px;color:#46506a;line-height:1.65}
/* Scroll reveal (JS-gated: .js on <html>; no-JS users see everything) */
.js .sos-reveal{opacity:0;transform:translateY(16px);transition:opacity .55s ease,transform .55s ease}
.js .sos-reveal.in{opacity:1;transform:none}
/* Pricing cards: depth + featured glow */
.sos-price-card{transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease}
.sos-price-card:hover{transform:translateY(-4px);box-shadow:0 18px 44px rgba(16,24,40,.10)}
.sos-price-card.featured{box-shadow:0 8px 40px rgba(26,115,232,.16),0 0 0 1px rgba(26,115,232,.10)}
.sos-price-card.featured:hover{box-shadow:0 22px 56px rgba(26,115,232,.22)}
/* Compare table rows respond */
.sos-compare-row{transition:background .15s ease}
.sos-compare-row:hover{background:#f6f9ff}

/* ── Feel: micro-interactions for the public site ── */
::selection{background:#cfe0ff;color:#0b1f3a}
.sos-btn{transition:transform .15s ease,box-shadow .15s ease,background .15s ease}
.sos-btn:hover{transform:translateY(-1px)}
.sos-btn:active{transform:translateY(0) scale(.98)}
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{outline:2px solid var(--seal);outline-offset:2px}
@media (prefers-reduced-motion: reduce){*,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}}
.sos-xform .row2{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.sos-xform label{font-size:13px;font-weight:700;color:#33405c;display:block;margin-bottom:6px}
/* 16px, not 15px: iOS Safari zooms the whole viewport when a focused field is
   under 16px, which jolts the page on every auth form on a phone. */
.sos-xform input,.sos-xform select{width:100%;border:1.5px solid var(--line);border-radius:12px;padding:12px 14px;font-size:16px;font-family:inherit;background:#fff;color:var(--ink)}
.sos-xform input:focus,.sos-xform select:focus{outline:0;border-color:var(--indigo);box-shadow:0 0 0 4px rgba(79,70,229,.12)}
/* Field messages: empty until there is something to say. */
.sos-field-msg{display:none;margin-top:6px;font-size:12.5px;font-weight:600;color:#b3261e}
.sos-field-msg:not(:empty){display:block}
.sos-xform input[aria-invalid=true]{border-color:#d93025;box-shadow:0 0 0 4px rgba(217,48,37,.12)}
.sos-field-rule{display:block;margin-top:6px;font-size:12.5px;color:var(--muted)}
.sos-field-rule.is-met{color:#137333}
.sos-pw{position:relative}
.sos-pw input{padding-right:64px}
.sos-pw-toggle{position:absolute;right:8px;top:50%;transform:translateY(-50%);min-height:32px;padding:0 10px;border:0;border-radius:8px;background:#eef2f9;color:#33405c;font:600 12.5px/1 inherit;cursor:pointer}
.sos-pw-toggle:hover{background:#e2e8f3}
/* font-family:inherit is already set on .sos-xform inputs; buttons were missed,
   so every auth submit rendered in the UA default while its form was Inter. */
.sos-xform .sos-btn{width:100%;padding:14px;font-family:inherit}
.sos-xform .agree{display:flex;gap:10px;font-size:13px;color:var(--muted);line-height:1.5}
.sos-xform .agree input{width:auto;margin-top:3px}
.sos-price-preview{display:block;margin-top:6px;color:var(--indigo);font-weight:700;font-size:13px}
.sos-authx-foot{margin-top:18px;color:var(--muted);font-size:14px}
.sos-authx-or{display:flex;align-items:center;gap:12px;margin:18px 0 14px;color:var(--muted);font-size:13px}
.sos-authx-or::before,.sos-authx-or::after{content:"";flex:1;height:1px;background:var(--line,#e5e9f2)}
.sos-link-form .sos-btn.secondary{width:100%;background:#fff;color:#0060b9!important;border:1.5px solid #0060b9;box-shadow:none}
.sos-link-form .sos-btn.secondary:hover{background:#eef4fb}
.sos-alert{background:#eef2ff;border:1px solid #d7defb;border-radius:12px;padding:12px 14px;margin-bottom:16px;color:#1f2640;font-size:14px}
.sos-alert.error{background:#fdecec;border-color:#f6c9c6;color:#b3261e}

/* Responsive */
@media(max-width:980px){
  .sos-site-nav a:not(.sos-btn){display:none}
  .sos-nav-dropdown{display:none}
  .sos-hero-grid{grid-template-columns:1fr;gap:34px}
  .sos-hero h1{max-width:none}
  .sos-window{transform:none}
  .sos-hero-visual{max-width:520px}
  .sos-hero-people{margin-left:0}
  .sos-grid3,.sos-pricing-grid{grid-template-columns:1fr 1fr}
  .sos-footer-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:860px){
  .sos-spot{grid-template-columns:1fr;gap:26px}
  .sos-spot.reverse .sos-spot-copy,.sos-spot.reverse .sos-spot-visual{order:0}
  .sos-security-grid{grid-template-columns:1fr 1fr}
  .sos-security,.sos-cta{padding:32px}
  .sos-authx{grid-template-columns:1fr}
  .sos-authx-aside{display:none}
  .sos-authx-main{padding:32px 22px}
}
@media(max-width:620px){
  body.sos-site{padding-bottom:88px}
  .sos-trial-dock{position:fixed;left:12px;right:12px;bottom:12px;z-index:80;display:flex;align-items:center;justify-content:space-between;gap:12px;background:rgba(255,255,255,.96);border:1px solid var(--hairline);border-radius:18px;padding:12px;box-shadow:0 18px 45px rgba(16,24,40,.18);backdrop-filter:blur(14px)}
  .sos-trial-dock{max-width:calc(100vw - 24px);box-sizing:border-box;overflow:hidden}
  .sos-trial-dock>div{min-width:0;flex:1 1 auto}
  .sos-trial-dock strong{display:block;color:#101828;font-size:13px;line-height:1.2;overflow-wrap:anywhere}
  .sos-trial-dock span{display:block;color:#5b6478;font-size:11.5px;line-height:1.25;margin-top:2px}
  .sos-trial-dock .sos-btn{padding:10px 13px;font-size:13px;white-space:nowrap;box-shadow:0 10px 22px rgba(79,70,229,.28)}
  .sos-conversion-strip{align-items:flex-start;flex-direction:column;padding:18px;margin-top:20px}
  .sos-conversion-strip .sos-btn{width:100%}
  .sos-authx-card h2{font-size:1.45rem;line-height:1.2}
  .sos-signup-fastlane{padding:14px}
  .sos-signup-fastlane ul{display:grid;grid-template-columns:1fr;gap:6px}
  .sos-grid3,.sos-pricing-grid,.sos-footer-grid{grid-template-columns:1fr}
  .sos-people-grid{grid-template-columns:1fr}
  .sos-hero-people{grid-template-columns:76px 1fr;margin-bottom:12px}
  .sos-hero-people img{width:76px;height:64px}
  .sos-xform .row2{grid-template-columns:1fr}
  .sos-compare-row{grid-template-columns:1fr}
  .sos-compare-row>div{border-left:0!important;padding:6px 18px}
  .sos-compare-row>div:first-child{padding-top:14px;font-size:15px}
  .sos-compare-head{display:none}
  .sos-compare-row .yes::before{content:"SolicitorOS — ";font-weight:800;color:var(--indigo)}
  .sos-compare-row .no::before{content:"Typical — ";font-weight:800;color:var(--muted)}
  .sos-security-grid{grid-template-columns:1fr}
  .sos-footer-base{flex-direction:column}
}

/* ---- SEO blog ---- */
.sos-blog-hero{padding-bottom:58px}
.sos-blog-section{padding:54px 0;background:#f8fafd}
.sos-blog-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.sos-blog-grid.small{grid-template-columns:repeat(3,minmax(0,1fr))}
.sos-blog-card{background:#fff;border:1px solid #e7ebf3;border-radius:20px;padding:24px;box-shadow:0 14px 34px rgba(16,24,40,.05);display:flex;flex-direction:column;min-height:280px}
.sos-blog-card-img{display:block;margin:-24px -24px 18px;border-radius:20px 20px 0 0;overflow:hidden;aspect-ratio:16/9}
.sos-blog-card-img img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .35s ease}
.sos-blog-card:hover .sos-blog-card-img img{transform:scale(1.04)}
.sos-blog-card-meta{display:flex;justify-content:space-between;gap:12px;color:#667085;font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.04em;margin-bottom:16px}
.sos-blog-card-meta span{color:var(--seal)}
.sos-blog-card h2{font-size:1.2rem;letter-spacing:-.02em;line-height:1.25;margin:0 0 10px}
.sos-blog-card h2 a{color:#182033}
.sos-blog-card p{color:#46506a;line-height:1.6;margin:0 0 18px;flex:1}
.sos-blog-read{font-weight:800;color:var(--seal)}
.sos-blog-pagination{margin-top:28px}
.sos-pagination{display:flex;flex-wrap:wrap;gap:8px;align-items:center;justify-content:center}
.sos-pagination .sos-page-link{display:inline-flex;align-items:center;justify-content:center;min-width:40px;height:40px;padding:0 14px;border-radius:10px;border:1px solid #e7ebf3;background:#fff;color:#46506a;font-weight:700;font-size:14px;text-decoration:none;transition:background .15s,border-color .15s,color .15s}
.sos-pagination a.sos-page-link:hover{background:var(--cream);border-color:var(--seal);color:var(--seal)}
.sos-pagination .sos-page-link.active{background:var(--ink);border-color:var(--seal);color:#fff}
.sos-pagination .sos-page-link.disabled,.sos-pagination .sos-page-link.dots{color:#676e82;background:transparent;border-color:transparent;cursor:default}
.sos-blog-empty{grid-column:1/-1}
.sos-blog-featured-img{background:#f8fafd;padding:0 0 42px}
.sos-blog-featured-img img{width:100%;border-radius:20px;display:block;aspect-ratio:16/9;object-fit:cover}
.sos-blog-article-hero{padding-bottom:48px}
.sos-blog-byline{display:flex;justify-content:center;gap:14px;flex-wrap:wrap;color:#667085;font-weight:700;margin-top:18px}
.sos-blog-article{padding:56px 0;background:#fff}
.sos-blog-article-grid{display:grid;grid-template-columns:minmax(0,760px) 320px;gap:42px;align-items:start}
.sos-blog-prose{font-size:1.06rem;line-height:1.85;color:#263042}
.sos-blog-prose h2{font-size:1.75rem;line-height:1.2;letter-spacing:-.02em;margin:42px 0 16px;color:#101828}
.sos-blog-prose h3{font-size:1.2rem;line-height:1.35;margin:28px 0 10px;color:#182033}
.sos-blog-prose p{margin:0 0 22px}
.sos-blog-prose ul{margin:0 0 28px;padding:0;list-style:none;display:grid;gap:10px}
.sos-blog-prose li{position:relative;padding-left:30px;color:#263042;line-height:1.7}
.sos-blog-prose li:before{content:"";position:absolute;left:0;top:.7em;width:10px;height:10px;border-radius:var(--radius);background:var(--ink);box-shadow:none}
.sos-blog-infographic{margin:34px 0;border:1px solid #dfe7f3;border-radius:22px;overflow:hidden;background:#f8fafd;box-shadow:0 16px 38px rgba(16,24,40,.06)}
.sos-blog-infographic img{display:block;width:100%;height:auto;aspect-ratio:1200/630;object-fit:cover;background:#f8fafd}
.sos-blog-infographic figcaption{margin:0;padding:13px 18px;border-top:1px solid #e7ebf3;color:#667085;font-size:13px;font-weight:700;background:#fff}
/* ── Editorial polish: premium long-form reading ── */
html{scroll-behavior:smooth}
.sos-blog-prose h2,.sos-blog-prose h3{scroll-margin-top:90px}
/* Lead-in: the first paragraph reads like a standfirst */
.sos-blog-prose>p:first-of-type{font-size:1.2rem;line-height:1.7;color:#1f2937;font-weight:450}
/* Each H2 carries a small gradient accent bar */
.sos-blog-prose h2{position:relative;padding-top:14px}
.sos-blog-prose h2::before{content:"";position:absolute;top:0;left:0;width:46px;height:4px;border-radius:var(--radius);background:var(--seal)}
.sos-blog-prose a{color:#1a4fd8;text-decoration:underline;text-underline-offset:2px;text-decoration-thickness:1px;transition:color .15s ease}
.sos-blog-prose a:hover{color:var(--seal)}
/* Infographics gain depth on hover */
.sos-blog-infographic{transition:transform .2s ease,box-shadow .2s ease}
.sos-blog-infographic:hover{transform:translateY(-3px);box-shadow:0 24px 52px rgba(16,24,40,.12)}
.sos-blog-featured-img img{transition:transform .4s ease}
.sos-blog-featured-img:hover img{transform:scale(1.012)}
@media (prefers-reduced-motion: reduce){html{scroll-behavior:auto}.sos-blog-infographic,.sos-blog-featured-img img{transition:none}}
.sos-internal-links{margin:36px 0;padding:24px;border:1px solid var(--hairline);border-radius:22px;background:transparent;box-shadow:0 16px 40px rgba(26,115,232,.08)}
.sos-internal-links h2{margin:0 0 8px;font-size:1.35rem}
.sos-internal-links p{margin:0 0 18px;color:#5f6b7c;font-size:.98rem;line-height:1.6}
.sos-internal-link-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.sos-internal-link{display:block;padding:15px 16px;border:1px solid #e6edf8;border-radius:16px;background:#fff;text-decoration:none;transition:border-color .2s ease,box-shadow .2s ease,transform .2s ease}
.sos-internal-link:hover{border-color:#bcd4ff;box-shadow:0 12px 26px rgba(16,24,40,.08);transform:translateY(-1px)}
.sos-internal-link span{display:block;margin-bottom:5px;color:var(--seal);font-size:11px;font-weight:900;text-transform:uppercase;letter-spacing:.05em}
.sos-internal-link strong{display:block;color:#101828;font-size:.98rem;line-height:1.35}
.sos-internal-link em{display:block;margin-top:6px;color:#667085;font-size:.86rem;line-height:1.45;font-style:normal}
.sos-blog-aside{position:sticky;top:94px;display:grid;gap:18px}
.sos-blog-aside>div{background:#f8fafd;border:1px solid #e7ebf3;border-radius:20px;padding:22px}
.sos-blog-aside h3{margin:0 0 8px;font-size:1rem}
.sos-blog-aside p{color:#46506a;line-height:1.55;margin:0 0 16px}
.sos-blog-aside-links{display:grid;gap:10px}
.sos-blog-aside-links a{display:block;padding:12px 13px;border:1px solid #e1e8f5;border-radius:14px;background:#fff;text-decoration:none}
.sos-blog-aside-links strong{display:block;color:#182033;font-size:.92rem;line-height:1.3}
.sos-blog-aside-links span{display:block;margin-top:5px;color:#667085;font-size:.82rem;line-height:1.45}
.sos-blog-tags{display:flex;gap:8px;flex-wrap:wrap}
.sos-blog-tags span{background:transparent;color:var(--seal);border-radius:var(--radius);padding:7px 10px;font-size:12px;font-weight:800}
@media(max-width:980px){.sos-blog-grid,.sos-blog-grid.small{grid-template-columns:1fr 1fr}.sos-blog-article-grid{grid-template-columns:1fr}.sos-blog-aside{position:static}}
@media(max-width:620px){.sos-blog-grid,.sos-blog-grid.small,.sos-internal-link-grid{grid-template-columns:1fr}.sos-blog-card{border-radius:18px}.sos-blog-section,.sos-blog-article{padding:34px 0}}

/* SolicitorOS Directory */
.sos-dir-hero{padding:88px 0 48px;background:var(--paper)}
.sos-dir-hero.compact{padding:64px 0 36px}
.sos-dir-hero h1{max-width:780px;font-size:4.2rem;line-height:1;letter-spacing:0;margin:10px 0 14px}
.sos-dir-hero p{max-width:760px;color:#5f6b7a;font-size:1.08rem;line-height:1.65}
.sos-dir-search{display:grid;grid-template-columns:2fr 1fr 1fr 1fr auto;gap:10px;margin-top:28px;background:#fff;border:1px solid #dfe7f3;border-radius:26px;padding:12px;box-shadow:0 18px 48px rgba(16,24,40,.09)}
.sos-dir-search input,.sos-dir-search select,.sos-dir-panel input,.sos-dir-panel select,.sos-dir-panel textarea{width:100%;border:1px solid #d8e0ec;border-radius:14px;padding:12px 13px;font:inherit;background:#fff;color:#111827}
.sos-dir-toggles{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}
.sos-dir-toggles label,.sos-check{display:inline-flex;align-items:center;gap:8px;color:#475467;font-weight:700;font-size:.9rem}
.sos-dir-toggles input,.sos-check input{width:auto}
.sos-dir-layout{display:grid;grid-template-columns:300px minmax(0,1fr);gap:26px;align-items:start}
.sos-dir-side,.sos-dir-panel{background:#fff;border:1px solid #e2e8f2;border-radius:24px;padding:22px;box-shadow:0 14px 36px rgba(16,24,40,.065)}
.sos-dir-side{position:sticky;top:90px}
.sos-dir-side p,.sos-dir-panel p{color:#5f6b7a;line-height:1.6}
.sos-dir-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(290px,1fr));gap:16px}
.sos-dir-card{display:flex;flex-direction:column;gap:13px;min-height:265px;background:#fff;border:1px solid #e2e8f2;border-radius:24px;padding:18px;color:#111827;box-shadow:0 12px 34px rgba(16,24,40,.06);transition:transform .16s,border-color .16s,box-shadow .16s}
.sos-dir-card:hover{transform:translateY(-3px);border-color:#b9d1ff;box-shadow:0 22px 48px rgba(26,115,232,.12)}
.sos-dir-card-top{display:flex;gap:13px;align-items:center}
.sos-dir-avatar{width:46px;height:46px;border-radius:16px;background:var(--ink);color:#fff;display:grid;place-items:center;font-weight:900}
.sos-dir-avatar.lg{width:72px;height:72px;border-radius:24px;font-size:1.4rem}
.sos-dir-card h3,.sos-profile-head h1{margin:0;color:#101828}
.sos-dir-card p{color:#5f6b7a;line-height:1.5;margin:0}
.sos-dir-meta{display:flex;gap:8px;flex-wrap:wrap;color:#667085;font-size:.88rem}
.sos-dir-tags{display:flex;gap:7px;flex-wrap:wrap;margin-top:auto}
.sos-dir-tags b,.sos-dir-tags a{display:inline-flex;background:#f2f6fd;border:1px solid #e0e8f5;border-radius:var(--radius);padding:6px 9px;font-size:.78rem;font-weight:850;color:#344054}
.sos-dir-tags .trust,.sos-check-list span{background:#ecfdf3;border-color:#bbf7d0;color:#15803d}
.sos-dir-card-actions{display:flex;justify-content:space-between;gap:8px;border-top:1px solid #edf1f7;padding-top:12px;font-size:.86rem;font-weight:850;color:var(--seal)}
.sos-profile-layout{display:grid;grid-template-columns:minmax(0,1fr) 360px;gap:26px;align-items:start}
.sos-profile-head{display:flex;gap:18px;align-items:center;margin-bottom:20px}
.sos-dir-panel{margin-bottom:18px}
.sos-dir-panel h2{margin:0 0 10px}
.sos-dir-panel.warning{background:#fffbeb;border-color:#fde68a}
.sos-dir-panel.subtle{background:#fbfcff}
.sos-dir-panel.sticky{position:sticky;top:90px}
.sos-dir-row{display:block;border:1px solid #edf1f7;border-radius:16px;padding:12px 14px;margin:8px 0;color:#101828;background:#fff}
.sos-dir-row strong{display:block}.sos-dir-row span{display:block;color:#667085;font-size:.9rem;margin-top:3px}
.sos-check-list{display:grid;gap:8px;margin:12px 0}.sos-check-list span{border-radius:var(--radius);padding:8px 10px;font-size:.84rem;font-weight:850}
.sos-dir-facts div{display:flex;justify-content:space-between;gap:12px;border-top:1px solid #edf1f7;padding:10px 0}
.sos-dir-facts dt{color:#667085}.sos-dir-facts dd{margin:0;font-weight:800;color:#101828}
.sos-dir-topic-grid,.sos-dir-article-grid,.sos-dir-info-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:14px;margin:18px 0 34px}
.sos-dir-topic-grid a,.sos-dir-article-grid a,.sos-dir-info-grid>div{background:#fff;border:1px solid #e2e8f2;border-radius:22px;padding:18px;color:#111827;box-shadow:0 10px 28px rgba(16,24,40,.055)}
.sos-dir-topic-grid span,.sos-dir-article-grid span{display:block;color:#667085;margin-top:5px;line-height:1.5}
.sos-prose{font-size:1.02rem;line-height:1.82;color:#263042}
.sos-form.two{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.sos-dir-checkboxes{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:8px;margin:12px 0}
.sos-dir-checkboxes label{display:flex;gap:8px;align-items:center;background:#f7faff;border:1px solid #e3ebf7;border-radius:12px;padding:9px 10px;font-size:.9rem;font-weight:700;color:#475467}
/* A tick box is a tick box: the form rule that stretches inputs to the full
   column width made these 93px wide and pushed their labels to the right. */
.sos-xform .sos-dir-checkboxes input[type=checkbox],
.sos-xform .sos-check input[type=checkbox]{width:auto;flex:0 0 auto}
.sos-hp{position:absolute!important;left:-9999px!important}
.sos-dir-empty{grid-column:1/-1;background:#fff;border:1px dashed #ccd6e5;border-radius:24px;padding:32px;text-align:center;color:#667085}
.sos-dir-home{display:grid;grid-template-columns:1fr 1.1fr;gap:26px;align-items:center;background:var(--card);border:1px solid #e3ebf7;border-radius:30px;padding:30px;box-shadow:0 18px 48px rgba(16,24,40,.07)}
.sos-dir-home .sos-dir-search{grid-template-columns:1fr 1fr 1fr auto;margin:0}
@media(max-width:980px){.sos-dir-hero h1{font-size:3rem}.sos-dir-search,.sos-dir-layout,.sos-profile-layout,.sos-dir-home,.sos-dir-home .sos-dir-search{grid-template-columns:1fr}.sos-dir-side,.sos-dir-panel.sticky{position:static}.sos-form.two{grid-template-columns:1fr}}@media(max-width:560px){.sos-dir-hero h1{font-size:2.35rem}}

/* ── The SA-risk suite section: editorial cards in the restraint system ── */
.sos-risk-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;margin-top:38px}
.sos-risk-card{background:#fff;border:1px solid var(--hairline);border-radius:16px;padding:26px 24px;transition:border-color .2s ease,transform .2s ease}
.sos-risk-card:hover{border-color:var(--ink-900);transform:translateY(-2px)}
.sos-risk-card .where{display:block;font-size:10.5px;font-weight:800;letter-spacing:.16em;text-transform:uppercase;color:#a5813c;margin-bottom:10px}
.sos-risk-card h3{font-family:"Fraunces",Georgia,serif;font-weight:650;font-size:1.15rem;margin:0 0 10px;color:#101828}
.sos-risk-card p{margin:0;color:#4a5468;line-height:1.65;font-size:14.5px}
@media(max-width:860px){.sos-risk-grid{grid-template-columns:1fr}}

/* ══ Client-facing auth-layout pages ═══════════════════════════════════════
   auth-layout loads marketing.css only, but the client portal, the public
   invoice, both password-reset screens and the deactivated-account page were
   written against .sos-auth-card and friends, which live in app.css and are
   therefore never delivered to them. Result: the two pages a firm's own
   clients actually see — their portal and the invoice they pay from —
   rendered as unstyled text on a bare background.

   Login and signup are unaffected: they use the newer .sos-authx-* system
   already defined above. These rules are additive and touch nothing else. */

.sos-auth{
    min-height:100vh;
    display:flex;
    align-items:flex-start;
    justify-content:center;
    padding:clamp(24px,6vw,64px) 20px;
    background:var(--sos-soft,#f6f8fb);
}
.sos-auth-card,
.sos-auth-info{
    /* Explicit flex sizing so the card fills up to its max-width instead of
       relying on width:100% resolving against a flex parent. */
    flex:1 1 auto;
    width:100%;
    max-width:520px;
    background:#fff;
    border:1px solid #e7ebf3;
    border-radius:18px;
    padding:clamp(24px,4vw,38px);
    box-shadow:0 10px 40px rgba(16,24,40,.07);
}
.sos-auth-card.wide{max-width:840px}
.sos-auth-card h1{font-size:clamp(1.4rem,3vw,1.9rem);line-height:1.2;margin:0 0 6px;letter-spacing:-.01em}
.sos-auth-card h2{font-size:1.05rem;margin:0 0 10px}
.sos-auth-card p{color:#5b6478;line-height:1.6}
.sos-auth .sos-logo{
    width:38px;height:38px;
    border:1px solid #e7ebf3;border-radius:10px;
    display:grid;place-items:center;
    color:var(--seal);font-weight:800;background:#fff;
}
.sos-auth .sos-muted{color:#667085;font-size:13.5px;line-height:1.55}
.sos-auth .sos-pill{
    display:inline-block;
    font-size:12px;background:#f8fafd;border:1px solid #eceff3;
    border-radius:var(--radius);padding:5px 11px;color:#3c4043;font-weight:600;
}
.sos-auth .sos-card{
    background:#fff;border:1px solid #e7ebf3;border-radius:12px;
    padding:14px 16px;
}
.sos-auth .sos-table{overflow-x:auto;border:1px solid #e8edf5;border-radius:14px;background:#fff}
.sos-auth .sos-table table{width:100%;border-collapse:collapse;font-size:13.5px}
.sos-auth .sos-table th{
    background:#f8fafd;color:#3c4043;font-size:11px;font-weight:700;
    text-transform:uppercase;letter-spacing:.06em;
    text-align:left;padding:10px 12px;white-space:nowrap;
}
.sos-auth .sos-table td{padding:10px 12px;border-top:1px solid #eef1f6;color:#374151}

/* ── Public invoice ─────────────────────────────────────────────────────── */
.sos-public-invoice-head{
    display:flex;align-items:flex-start;justify-content:space-between;
    gap:18px;flex-wrap:wrap;
    padding-bottom:16px;margin-bottom:18px;
    border-bottom:1px solid #e7ebf3;
}
.sos-public-invoice-head h1{margin:8px 0 2px;font-size:1.35rem}
.sos-public-invoice-head p{margin:0;font-size:13px;color:#667085}
.sos-public-invoice-head > div:last-child{text-align:right;display:flex;flex-direction:column;align-items:flex-end;gap:6px}
.sos-public-invoice-head > div:last-child strong{font-size:1rem;letter-spacing:.01em}

/* The one number the client came here for. */
.sos-client-pay-hero{
    display:flex;flex-direction:column;gap:2px;
    padding:18px 20px;margin-bottom:18px;
    border-radius:14px;
    background:var(--cream);
    border:1px solid #cfe0ff;
}
.sos-client-pay-hero span{font-size:12px;font-weight:700;letter-spacing:.07em;text-transform:uppercase;color:#5b6478}
.sos-client-pay-hero strong{font-size:clamp(1.8rem,5vw,2.4rem);line-height:1.1;color:#101828;font-variant-numeric:tabular-nums}
.sos-client-pay-hero p{margin:4px 0 0;font-size:13px;color:#5b6478}

.sos-public-invoice-grid{
    display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
    gap:18px;margin-bottom:4px;
}
.sos-public-invoice-grid h2{font-size:12px;font-weight:700;letter-spacing:.07em;text-transform:uppercase;color:#8a93a6;margin:0 0 8px}
.sos-public-invoice-grid p{margin:0 0 3px;font-size:13.5px;color:#374151;line-height:1.5}

.sos-invoice-totals{
    display:flex;flex-direction:column;gap:0;
    margin-left:auto;max-width:340px;
}
.sos-invoice-totals .row{
    display:flex;align-items:baseline;justify-content:space-between;gap:20px;
    padding:7px 0;font-size:13.5px;color:#5b6478;
    border-bottom:1px solid #f0f3f8;
}
.sos-invoice-totals .row strong{color:#101828;font-variant-numeric:tabular-nums}
.sos-invoice-totals .row.grand{border-top:1px solid #e7ebf3;border-bottom:none;padding-top:10px;font-size:15px}
.sos-invoice-totals .row.grand strong{font-size:1.05rem}
.sos-invoice-totals .row.paid strong{color:#15803d}
.sos-invoice-totals .row.balance{
    border:none;margin-top:6px;padding:10px 12px;border-radius:10px;
    background:#f8fafd;font-weight:700;
}
.sos-invoice-totals .row.balance strong{font-size:1.1rem}

@media(max-width:560px){
    .sos-public-invoice-head > div:last-child{text-align:left;align-items:flex-start}
    .sos-invoice-totals{max-width:none}
}

/* ═══ The editorial system ═══
   Everything above this line is layout: grids, tracks, spacing, the earned
   fixes for iOS zoom, tick-box sizing and tap targets. Everything below is
   the identity, said once. Paper, ink, one accent, hairlines, square
   corners, an editorial serif for display and a text face for reading.
   Nothing here is decoration for its own sake: if a rule cannot be defended
   to a solicitor reading the page, it is not in it. */

/* ── Type ───────────────────────────────────────────────────────────────
   Fraunces for display (it has the contrast and the bracketed serifs of a
   law report), Inter for reading, and the system monospace for anything
   that is a citation, a reference or a figure — the places a document uses
   a different face because the content is of a different kind. */
body.sos-site{font-family:var(--text);background:var(--paper);color:var(--ink2);font-size:16.5px;line-height:1.62}
h1,h2,h3,h4,
.sos-hero h1,.sos-page-hero h1,.sos-section h2,.sos-cta h2,.sos-dir-hero h1,
.sos-quote blockquote,.sos-price-card .price,.sos-price-card .sos-price-amount,
.sos-numbers-grid b,.sos-risk-card h3,.sos-people-grid strong,
.sos-conversion-strip strong,.sos-authx-logo,.sos-authx-stats strong,
.sos-site-logo,.sos-feature h3,.sos-blog-card h2,.sos-plan-everyone h2,
.sos-authx-card h2,.sos-auth-card h1,.sos-auth-card h2,.sos-spot-copy h2,
.sos-panel-head strong,.sos-mini-head strong,.sos-blog-prose h2,.sos-blog-prose h3{
  font-family:var(--display);font-weight:600;letter-spacing:-.015em;color:var(--ink)}
.sos-window-top strong,.sos-btn,.sos-xform input,.sos-xform select{font-family:var(--text)}

/* No run of text on this site is painted with a gradient. Three rules used
   to do it — the home headline, the inner-page headline and the numbers
   strip — and a clipped gradient is the single loudest tell that a page was
   assembled from a template rather than set. */
.sos-hero h1 .grad,.sos-page-hero h1 .grad,.sos-dir-hero h1 .grad,.sos-numbers-grid b{
  background:none!important;-webkit-background-clip:border-box!important;background-clip:border-box!important;
  -webkit-text-fill-color:currentColor!important;color:var(--ink);font-style:normal}

/* Citations, references and small labels: the document voice. */
.sos-kicker,.sos-section .sos-kicker,.sos-page-hero .sos-kicker,.sos-hero .sos-kicker,
.sos-feature .tag,.sos-risk-card .where,.sos-trustbar-label,.sos-trustbar-items span,
.sos-blog-card-meta,.sos-compare-head>div,.sos-internal-link span,.sos-signup-fastlane span,
.sos-conversion-strip span,.sos-price-badge{
  font-family:var(--mono);font-weight:500;letter-spacing:.09em;text-transform:uppercase}

/* ── Header ──────────────────────────────────────────────────────────── */
.sos-site-header{background:var(--paper);backdrop-filter:none;border-bottom:1px solid var(--ink)}
.sos-site-logo{color:var(--ink);font-weight:600;font-size:21px}
.sos-site-logo span{background:var(--ink);color:var(--paper);border-radius:var(--radius);box-shadow:none}
.sos-site-nav a,.sos-nav-trigger{color:var(--ink);font-weight:400}
.sos-site-nav a:hover,.sos-nav-trigger:hover,.sos-nav-dropdown:focus-within .sos-nav-trigger{color:var(--seal)}
.sos-nav-menu{border:1px solid var(--ink);border-radius:0;background:var(--card);box-shadow:6px 6px 0 rgba(21,23,26,.08)}
.sos-nav-menu a{color:var(--ink);border-radius:0;font-weight:400}
.sos-nav-menu a:hover,.sos-nav-menu a:focus-visible{background:var(--cream);color:var(--seal)}

/* ── Buttons: ink, square, no theatre ───────────────────────────────── */
.sos-btn{background:var(--ink);background-image:none!important;color:var(--paper)!important;
  border:1px solid var(--ink);border-radius:var(--radius);box-shadow:none;font-weight:500;
  padding:14px 26px;min-height:50px}
.sos-btn:hover{background:#000;border-color:#000;transform:none;box-shadow:none}
.sos-btn.ghost{background:transparent;border:1px solid var(--ink);color:var(--ink)!important}
.sos-btn.ghost:hover{background:var(--cream);border-color:var(--ink);color:var(--ink)!important}
.sos-btn.lg{padding:16px 30px}
.sos-site-nav .sos-btn,.sos-hero .sos-btn:not(.ghost){background:var(--ink);color:var(--paper)!important}
.sos-hero .sos-btn.ghost{background:transparent;border:0;border-bottom:1.5px solid var(--seal);border-radius:0;
  color:var(--ink)!important;padding:14px 4px;min-height:50px;text-decoration:none}
.sos-hero .sos-btn.ghost:hover{background:transparent;color:var(--seal)!important;border-bottom-color:var(--ink)}

/* ── Kickers: a rule and a small-caps label, not a pill ─────────────── */
.sos-kicker{background:transparent;border:0;padding:0;color:var(--seal);font-size:12px;gap:10px}
.sos-section .sos-kicker,.sos-page-hero .sos-kicker,.sos-hero .sos-kicker{color:var(--seal);font-size:12px}
.sos-kicker::before,.sos-section .sos-kicker::before,.sos-page-hero .sos-kicker::before{
  content:"";width:24px;height:1.5px;background:var(--seal);border-radius:0}

/* ── Hero: paper, and the sentence does the work ────────────────────── */
.sos-hero{background:var(--paper);border-bottom:1px solid var(--ink);padding:78px 0 70px}
.sos-hero::before{display:none}
.sos-hero::after{content:"";position:absolute;top:0;bottom:0;height:auto;left:clamp(16px,5vw,64px);right:auto;
  width:1px;border-radius:0;filter:none;opacity:1;animation:none;pointer-events:none;
  background:linear-gradient(to bottom,transparent,rgba(123,45,38,.30) 16%,rgba(123,45,38,.30) 84%,transparent)}
.sos-hero h1{font-size:clamp(2.4rem,4.4vw,3.8rem);line-height:1.05;letter-spacing:-.02em;color:var(--ink);max-width:17ch}
.sos-hero p{color:var(--ink2);font-size:1.16rem;line-height:1.62;max-width:48ch}
.sos-hero-microcopy{color:var(--muted);font-weight:400}
.sos-hero .sos-hero-trust{color:var(--muted)}
.sos-hero .sos-hero-trust span{color:var(--muted);font-family:var(--mono);font-size:11.5px;letter-spacing:.08em;text-transform:uppercase}
.sos-hero-trust b{color:var(--seal);letter-spacing:1px}

/* The illustrated workspace: a document on the page, with one offset block
   behind it. It is the only shadow on the site, and it is not a blur. */
.sos-hero-visual::before{display:none}
.sos-window{transform:none;border:1px solid var(--ink);border-radius:0;box-shadow:10px 10px 0 #e6e0d4}
.sos-window-top{background:var(--card);border-bottom:1px solid var(--ink)}
.sos-window-top .dot{display:none}
.sos-window-top strong{color:var(--ink);font-weight:500}
.sos-window-top .live{color:var(--sos-green);font-family:var(--mono);font-size:11px;letter-spacing:.08em;text-transform:uppercase}
.sos-mini-side{background:var(--cream);border-right:1px solid var(--hairline)}
.sos-mini-side b{background:var(--ink);border-radius:var(--radius)}
.sos-mini-side span{background:var(--rule)}
.sos-mini-side span.on{background:var(--seal)}
.sos-mini-pill{background:var(--cream);color:var(--ink);border-radius:var(--radius);font-family:var(--mono);font-size:11px;letter-spacing:.06em;text-transform:uppercase}
.sos-mini-stats>div,.sos-mini-row>div{background:var(--card);border:1px solid var(--hairline);border-radius:0}
.sos-mini-card{border:1px solid var(--hairline);border-radius:0;background:var(--card)}
.sos-mini-card.urgent{border-color:#e0c3bf;background:var(--card)}
.sos-mini-card.ai{border-color:var(--hairline);background:var(--card)}
.sos-mini-tag{border-radius:var(--radius);font-family:var(--mono);font-size:10.5px;letter-spacing:.06em;text-transform:uppercase;font-weight:500}
.sos-hero-people{background:var(--card);border:1px solid var(--ink);border-radius:0;backdrop-filter:none;box-shadow:6px 6px 0 #e6e0d4}
.sos-hero-people img{border-radius:0;filter:saturate(.92)}
.sos-hero-people strong{color:var(--ink)}
.sos-hero-people span{color:var(--muted)}

/* ── Sections ───────────────────────────────────────────────────────── */
.sos-section{padding:84px 0}
.sos-section h2{font-size:clamp(1.9rem,3.1vw,2.6rem);line-height:1.1;color:var(--ink)}
.sos-section .lead{color:var(--ink2)}
.sos-soft-bg{background:var(--cream)}
.sos-people-section{background:var(--paper)}
.sos-people-grid figure{background:var(--card);border:1px solid var(--hairline);border-radius:0;box-shadow:none}
.sos-people-grid img{border-radius:0;filter:saturate(.9)}
.sos-people-grid span{color:var(--muted)}

/* ── Cards: hairline, flat, and hover means intent ──────────────────── */
.sos-feature,.sos-how-step,.sos-faq-item,.sos-numbers-grid div,.sos-price-card,
.sos-risk-card,.sos-blog-card,.sos-panel-card,.sos-blog-aside>div,.sos-internal-link,
.sos-plan-everyone,.sos-compare,.sos-blog-infographic{
  background:var(--card);border:1px solid var(--hairline);border-radius:0;box-shadow:none}
.sos-feature:hover,.sos-how-step:hover,.sos-price-card:hover,.sos-risk-card:hover,
.sos-internal-link:hover,.sos-blog-infographic:hover{
  border-color:var(--ink);box-shadow:none;transform:none}
.sos-feature::after{display:none}
.sos-feature p,.sos-how-step p,.sos-risk-card p,.sos-blog-card p{color:var(--ink2)}

/* Features read as a numbered index, which is how a practitioner reads a
   list of anything. The emoji that used to sit in these boxes — a padlock, a
   banknote, a stethoscope — said nothing a numeral does not say better. */
.sos-grid3{counter-reset:feat}
.sos-feature{counter-increment:feat;padding:26px 24px}
.sos-grid3 .sos-icon,.sos-grid3 .sos-icon:empty{
  font-size:0!important;width:auto!important;height:auto!important;background:none!important;
  box-shadow:none!important;border-radius:0!important;display:block;margin:0 0 12px}
.sos-grid3 .sos-icon::before{content:counter(feat,decimal-leading-zero);font-family:var(--mono);
  font-size:12px;font-weight:500;letter-spacing:.1em;color:var(--seal)}
.sos-icon{background:var(--ink);border-radius:var(--radius);box-shadow:none;color:var(--paper)}
.sos-feature .tag{background:transparent;border:0;padding:0;color:var(--muted);font-size:10.5px;margin-bottom:8px}
.sos-feature h3{margin:2px 0 8px;font-size:1.18rem}

/* Spotlights, panels and tick lists */
.sos-spot-copy h2 em{font-style:normal;color:var(--seal)}
.sos-check{color:var(--ink2);font-weight:400}
.sos-check li::before{content:"\2014";color:var(--seal);font-weight:400;margin-right:10px}
.sos-chiprow span{background:var(--cream);border:1px solid var(--hairline);border-radius:var(--radius);color:var(--ink2);font-weight:400}
.sos-panel-line{border-top:1px solid var(--hairline)}
.sos-panel-line b{color:var(--muted);font-weight:400}
.sos-panel-alert{background:var(--card);border:1px solid #e0c3bf;border-left:3px solid var(--seal);color:var(--ink2);border-radius:0;font-weight:400}
.sos-ai-field{background:var(--cream);border:1px solid var(--hairline);border-radius:0;color:var(--ink2)}
.sos-ai-out{background:var(--card);border:1px solid var(--hairline);border-left:3px solid var(--seal);border-radius:0;color:var(--ink2)}

/* ── The comparison table reads as a table ──────────────────────────── */
.sos-compare{overflow:hidden}
.sos-compare-row{border-top:1px solid var(--hairline)}
.sos-compare-row>div:first-child{color:var(--ink);font-weight:400}
.sos-compare-row .yes{background:transparent;color:var(--ink);border-left:1px solid var(--hairline);font-weight:500}
.sos-compare-row .no{color:var(--muted);border-left:1px solid var(--hairline)}
.sos-compare-head{background:var(--cream)}
.sos-compare-head>div{color:var(--muted);font-size:10.5px}
.sos-compare-head>div:nth-child(2){background:var(--ink);color:var(--paper)}
.sos-compare-row:hover{background:var(--cream)}

/* ── Numbers, steps and questions ───────────────────────────────────── */
.sos-numbers-grid div{background:transparent;border:0;border-left:2px solid var(--seal);border-radius:0;text-align:left;padding:4px 0 4px 18px}
.sos-numbers-grid b{font-family:var(--display);font-size:2.5rem;font-weight:600;letter-spacing:-.02em;color:var(--ink)}
.sos-numbers-grid span{color:var(--muted);font-weight:400}
.sos-how-step .num{background:var(--ink);border-radius:var(--radius);box-shadow:none;font-family:var(--mono);font-weight:500;font-size:13px}
.sos-faq-item[open]{box-shadow:none;border-color:var(--ink)}
.sos-faq-item summary{color:var(--ink);font-weight:500}
.sos-faq-item summary::after{background:transparent;color:var(--seal);border-radius:0;font-weight:400}
.sos-faq-item p{color:var(--ink2)}

/* ── Trustbar ───────────────────────────────────────────────────────── */
.sos-trustbar{background:var(--cream);border-top:1px solid var(--hairline);border-bottom:1px solid var(--hairline)}
.sos-trustbar-label{color:var(--muted);font-size:11px}
.sos-trustbar-items span{background:transparent;border:0;padding:0;color:var(--ink2);font-size:11.5px}

/* ── Pricing: a tariff, and the popular plan is the ink one ─────────── */
.sos-price-card{padding:26px 24px}
.sos-price-card .price{font-size:2.2rem;font-weight:600;letter-spacing:-.02em}
.sos-price-card ul li::before{content:"\2014";color:var(--seal);font-weight:400;margin-right:9px}
.sos-price-card ul{color:var(--ink2);line-height:1.85}
.sos-price-badge{background:var(--seal);color:var(--paper);border-radius:0;box-shadow:none;font-size:10px;padding:5px 10px}
.sos-price-card.featured{background:var(--ink);border:1px solid var(--ink);box-shadow:none;background-image:none}
.sos-price-card.featured :is(h3,h2,strong,b),
.sos-price-card.featured :is(.price,.sos-price-amount){color:var(--paper)}
.sos-price-card.featured :is(p,li,span,small){color:#c9c4b8}
.sos-price-card.featured ul li::before{color:var(--seal-on-dark)}
.sos-price-card.featured::before{background:var(--seal);color:var(--paper)}
.sos-price-card.featured .sos-btn{background:var(--paper);border-color:var(--paper);color:var(--ink)!important}
.sos-price-card.featured .sos-btn:hover{background:#fff;border-color:#fff}
.sos-plan-everyone{padding:24px 28px}
.sos-plan-everyone li::before{content:"\2014";color:var(--seal);font-weight:400}
.sos-plan-everyone li{color:var(--ink2)}

/* ── The two dark moments: the security band and the closing note ───── */
.sos-security{background:var(--ink);color:var(--paper);border-radius:0;padding:46px}
.sos-security::before{display:none}
.sos-security-head h2{color:var(--paper)}
.sos-security-head .sos-kicker{background:transparent;border:0;color:var(--seal-on-dark)}
.sos-security-head .sos-kicker::before{background:var(--seal-on-dark)}
.sos-security-head p{color:#c9c4b8}
.sos-security-grid>div{background:transparent;border:0;border-top:1px solid #3a3d42;border-radius:0;padding:18px 0 0}
.sos-security-grid b{color:var(--paper);font-family:var(--display);font-weight:600}
.sos-security-grid span{color:#c9c4b8}
.sos-cta{background:var(--ink);color:var(--paper);border-radius:0;border-top:0;box-shadow:none;padding:52px}
.sos-cta::before{display:none}
.sos-cta h2,.sos-cta h3,.sos-cta strong{color:var(--paper)}
.sos-cta p,.sos-cta li,.sos-cta span,.sos-cta small{color:#c9c4b8}
.sos-cta .sos-kicker{color:var(--seal-on-dark)}
.sos-cta .sos-kicker::before{background:var(--seal-on-dark)}
.sos-cta .sos-btn{background:var(--paper);border-color:var(--paper);color:var(--ink)!important}
.sos-cta .sos-btn:hover{background:#fff;border-color:#fff}
/* The same block on paper. Used where two of them sit side by side and only
   one may be the dark moment; the accent has to come back down to the seal. */
.sos-cta.light{background:var(--card);border:1px solid var(--hairline);color:var(--ink2)}
.sos-cta.light h2,.sos-cta.light h3,.sos-cta.light strong{color:var(--ink)}
.sos-cta.light p,.sos-cta.light li,.sos-cta.light span,.sos-cta.light small{color:var(--ink2)}
.sos-cta.light .sos-kicker{color:var(--seal)}
.sos-cta.light .sos-kicker::before{background:var(--seal)}
.sos-cta.light .sos-btn{background:var(--ink);border-color:var(--ink);color:var(--paper)!important}
.sos-cta.light .sos-btn:hover{background:#000;border-color:#000}
.sos-cta.light .sos-btn.ghost{background:transparent;border:1px solid var(--ink);color:var(--ink)!important}

/* ── Inner page and directory heroes ────────────────────────────────── */
.sos-page-hero,.sos-dir-hero{background:var(--paper);border-bottom:1px solid var(--ink)}
.sos-page-hero{padding:64px 0 46px;text-align:left}
.sos-page-hero .sos-container{max-width:1180px}
.sos-page-hero h1,.sos-dir-hero h1{color:var(--ink);letter-spacing:-.02em;line-height:1.06}
.sos-page-hero h1{font-size:clamp(2.2rem,4vw,3.2rem);max-width:19ch}
.sos-page-hero p,.sos-dir-hero p{color:var(--ink2);margin:0;max-width:60ch}
.sos-page-hero .sos-hero-actions{justify-content:flex-start}
.sos-dir-hero h1{font-size:clamp(2.4rem,4.6vw,3.6rem);letter-spacing:-.02em}

/* ── Prose and the blog ─────────────────────────────────────────────── */
.sos-prose{color:var(--ink2)}
.sos-blog-section{background:var(--cream)}
.sos-blog-article{background:var(--paper)}
.sos-blog-prose{color:var(--ink2)}
.sos-blog-prose>p:first-of-type{color:var(--ink);font-weight:400}
.sos-blog-prose h2{padding-top:14px;border-top:1px solid var(--hairline)}
.sos-blog-prose h2::before{display:none}
.sos-blog-prose li:before{background:var(--seal);box-shadow:none;width:5px;height:5px;border-radius:0;top:.78em}
.sos-blog-prose a{color:var(--link);text-decoration:underline;text-underline-offset:3px}
.sos-blog-prose a:hover{color:var(--seal)}
.sos-blog-card-img,.sos-blog-card-img img,.sos-blog-featured-img img{border-radius:0}
.sos-blog-card-meta span,.sos-blog-read{color:var(--seal)}
.sos-blog-card h2 a{color:var(--ink)}
.sos-blog-tags span{background:transparent;border:1px solid var(--hairline);color:var(--ink2);border-radius:0;font-family:var(--mono);font-size:11px;font-weight:400}
.sos-blog-infographic figcaption{background:var(--card);border-top:1px solid var(--hairline);color:var(--muted);font-weight:400;font-family:var(--mono);font-size:11.5px}
.sos-internal-links{background:transparent;border:0;border-top:2px solid var(--ink);border-radius:0;box-shadow:none;padding:24px 0 0}
.sos-internal-link span{color:var(--seal);font-size:10.5px}
.sos-internal-link strong{color:var(--ink);font-family:var(--display);font-weight:600}
.sos-internal-link em{color:var(--muted)}
.sos-blog-aside>div{background:var(--card)}
.sos-blog-aside-links a{background:var(--card);border:1px solid var(--hairline);border-radius:0}
.sos-blog-aside-links strong{color:var(--ink)}
.sos-blog-aside-links span{color:var(--muted)}
.sos-pagination .sos-page-link{border:1px solid var(--hairline);border-radius:0;background:var(--card);color:var(--ink2);font-weight:400}
.sos-pagination a.sos-page-link:hover{background:var(--cream);border-color:var(--ink);color:var(--ink)}
.sos-pagination .sos-page-link.active{background:var(--ink);border-color:var(--ink);color:var(--paper)}

/* ── The conversion strips ──────────────────────────────────────────── */
.sos-conversion-band{background:var(--paper)}
.sos-conversion-strip{background:transparent;border:0;border-top:2px solid var(--ink);border-radius:0;box-shadow:none;padding:22px 0 0}
.sos-conversion-strip span{color:var(--seal);font-size:11px}
.sos-conversion-strip strong{color:var(--ink);font-size:1.15rem}
.sos-conversion-strip p{color:var(--ink2)}
.sos-signup-fastlane{background:transparent;border:0;border-left:2px solid var(--seal);border-radius:0;padding:4px 0 4px 16px}
.sos-signup-fastlane span{color:var(--seal);font-size:10.5px}
.sos-signup-fastlane strong{color:var(--ink);font-family:var(--display);font-weight:600}
.sos-signup-fastlane p{color:var(--ink2)}
.sos-signup-fastlane li{background:transparent;border:1px solid var(--hairline);color:var(--ink2);border-radius:0;font-weight:400}
.sos-submit-proof{background:var(--cream);border:1px solid var(--hairline);border-radius:0;color:var(--ink2)}
.sos-submit-proof strong{color:var(--ink)}
.sos-submit-proof span{color:var(--muted)}
.sos-trial-dock{background:var(--card);border:1px solid var(--ink);border-radius:0;box-shadow:6px 6px 0 rgba(21,23,26,.12)}

/* ── Quote ──────────────────────────────────────────────────────────── */
.sos-quote blockquote{color:var(--ink);font-weight:500;font-style:normal}
.sos-quote blockquote::before{content:"\201C";display:block;font-size:3rem;line-height:.6;color:var(--seal);font-style:normal;margin-bottom:12px}
.sos-quote-stars{color:var(--seal);font-size:16px}
.sos-quote figcaption{color:var(--muted);font-weight:400}
.sos-quote figcaption b{color:var(--ink);font-weight:500}

/* ── Footer ─────────────────────────────────────────────────────────── */
.sos-site-footer{background:var(--paper);border-top:1px solid var(--ink);color:var(--muted)}
.sos-site-footer h4{color:var(--ink);font-family:var(--mono);font-size:11px;font-weight:500;letter-spacing:.09em;text-transform:uppercase}
.sos-site-footer .sos-footer-grid a{color:var(--ink2);font-weight:400}
.sos-site-footer .sos-footer-grid a:hover{color:var(--seal)}
.sos-footer-base{border-top:1px solid var(--hairline);color:var(--muted)}

/* ── Sign-in and sign-up ────────────────────────────────────────────── */
.sos-authx{background:var(--paper)}
.sos-authx-aside{background:var(--ink)}
.sos-authx-aside::before,.sos-authx-aside::after{display:none}
.sos-authx-aside h1{color:var(--paper)}
.sos-authx-aside p{color:#c9c4b8}
.sos-authx-stats div{background:transparent;border:0;border-top:1px solid #3a3d42;border-radius:0;padding:14px 0 0}
.sos-authx-stats strong{color:var(--paper)}
.sos-authx-stats span{color:#c9c4b8}
.sos-authx-trust div{color:#e3dfd4;font-weight:400}
.sos-authx-trust b{background:transparent;color:var(--seal-on-dark);border-radius:0}
.sos-authx-card .sub{color:var(--muted)}
.sos-authx-foot,.sos-authx-or{color:var(--muted)}
.sos-social a{border:1px solid var(--hairline);border-radius:var(--radius);color:var(--ink2);background:var(--card);font-weight:400}
.sos-social a:hover{border-color:var(--ink);box-shadow:none}
.sos-or::before,.sos-or::after,.sos-authx-or::before,.sos-authx-or::after{background:var(--hairline)}

/* ── Forms ──────────────────────────────────────────────────────────── */
.sos-xform label{color:var(--ink);font-weight:500}
.sos-xform input,.sos-xform select,.sos-xform textarea{border:1px solid var(--rule);border-radius:var(--radius);background:var(--card);color:var(--ink)}
.sos-xform input:focus,.sos-xform select:focus,.sos-xform textarea:focus{border-color:var(--ink);box-shadow:0 0 0 3px rgba(21,23,26,.10)}
.sos-xform-section{color:var(--seal);font-family:var(--mono);font-size:11px;letter-spacing:.09em}
.sos-field-rule{color:var(--muted)}
.sos-field-rule.is-met{color:var(--sos-green)}
.sos-pw-toggle{background:var(--cream);color:var(--ink2);border-radius:var(--radius)}
.sos-pw-toggle:hover{background:var(--rule)}
.sos-alert{background:var(--cream);border:1px solid var(--hairline);border-left:3px solid var(--ink);border-radius:0;color:var(--ink2)}
.sos-alert.error{background:#f7ece9;border-color:#e0c3bf;border-left-color:var(--seal);color:#7b2d26}
.sos-price-preview{color:var(--seal);font-weight:500}
.sos-link-form .sos-btn.secondary{background:transparent;border:1px solid var(--ink);color:var(--ink)!important}
.sos-link-form .sos-btn.secondary:hover{background:var(--cream)}

/* ── The SA-risk suite ──────────────────────────────────────────────── */
.sos-risk-card{padding:26px 24px}
.sos-risk-card .where{color:var(--seal);font-size:10.5px}
.sos-risk-card h3{font-family:var(--display);color:var(--ink);font-size:1.18rem}

/* The six tinted chips the feature cards used to carry. Outside the numbered
   index they are a rule in the accent, not a coloured tile. */
.sos-icon.c1,.sos-icon.c2,.sos-icon.c3,.sos-icon.c4,.sos-icon.c5,.sos-icon.c6{background:var(--ink)}

/* ── Directory ──────────────────────────────────────────────────────── */
.sos-dir-search{background:var(--card);border:1px solid var(--ink);border-radius:0;box-shadow:none}
.sos-dir-search input,.sos-dir-search select,
.sos-dir-panel input,.sos-dir-panel select,.sos-dir-panel textarea{
  border:1px solid var(--rule);border-radius:var(--radius);background:var(--card);color:var(--ink)}
.sos-dir-home{background:var(--card);border:1px solid var(--hairline);border-radius:0;box-shadow:none}
.sos-dir-empty{background:var(--card);border:1px dashed var(--rule);border-radius:0;color:var(--muted)}
.sos-dir-checkboxes label{background:var(--card);border:1px solid var(--hairline);border-radius:var(--radius);color:var(--ink2);font-weight:400}
.sos-dir-toggles label,.sos-dir-toggles,.sos-dir-side p,.sos-dir-panel p{color:var(--ink2);font-weight:400}
.sos-dir-side,.sos-dir-panel,.sos-dir-card,.sos-dir-row,
.sos-dir-topic-grid a,.sos-dir-article-grid a,.sos-dir-info-grid>div{
  background:var(--card);border:1px solid var(--hairline);border-radius:0;box-shadow:none}
.sos-dir-card:hover,.sos-dir-topic-grid a:hover,.sos-dir-article-grid a:hover{
  transform:none;border-color:var(--ink);box-shadow:none}
.sos-dir-avatar{background:var(--ink);color:var(--paper);border-radius:var(--radius);
  font-family:var(--display);font-weight:600}
.sos-dir-avatar.lg{border-radius:var(--radius)}
.sos-dir-card h3,.sos-profile-head h1,.sos-dir-row strong{color:var(--ink)}
/* A panel heading sits in a 300px column and is matched by the section
   heading size, which is written for a full-width line. In a serif that is
   three lines of display type where one line of a subhead belongs. */
.sos-dir-side h2,.sos-dir-side h3,.sos-dir-panel h2,.sos-dir-panel h3{font-size:1.15rem;line-height:1.28;letter-spacing:-.01em}
.sos-dir-card p,.sos-dir-topic-grid span,.sos-dir-article-grid span,.sos-dir-row span{color:var(--muted)}
.sos-dir-meta{color:var(--muted)}
.sos-dir-tags b,.sos-dir-tags a,.sos-check-list span{
  background:transparent;border:1px solid var(--hairline);border-radius:var(--radius);
  color:var(--ink2);font-family:var(--mono);font-size:11px;font-weight:400;letter-spacing:.04em}
.sos-dir-tags .trust,.sos-check-list span{border-color:#bdcbc0;color:#24513a}
.sos-dir-card-actions{border-top:1px solid var(--hairline);color:var(--link);font-weight:500}
.sos-dir-panel.warning{background:#f5f0e2;border-color:#ddd0a8}
.sos-dir-panel.subtle{background:var(--cream)}
.sos-dir-facts div{border-top:1px solid var(--hairline)}
.sos-dir-facts dt{color:var(--muted)}
.sos-dir-facts dd{color:var(--ink);font-weight:500}
.sos-auth .sos-pill{background:transparent;border:1px solid var(--hairline);border-radius:var(--radius);
  color:var(--ink2);font-family:var(--mono);font-size:11px;font-weight:400;letter-spacing:.05em}

/* ── Selection, focus and motion ────────────────────────────────────── */
::selection{background:#e6dcc9;color:var(--ink)}
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{outline:2px solid var(--seal);outline-offset:2px}
.sos-btn:hover,.sos-btn:active{transform:none}

/* ── Links and navigation ────────────────────────────────────────────────
   Scoped away from the header and footer navigation, whose links stay ink
   until hover: a nav where every item is blue reads as if everything is the
   current page. */
body.sos-site a{color:var(--link)}
.sos-site-header .sos-site-nav a,
.sos-site-header .sos-nav-menu a,
.sos-site-header .sos-nav-trigger{color:var(--ink)}
.sos-site-header .sos-site-nav a:hover,
.sos-site-header .sos-nav-menu a:hover,
.sos-site-header .sos-nav-menu a:focus-visible,
.sos-site-header .sos-nav-trigger:hover{color:var(--seal)}
.sos-site-header .sos-site-nav .sos-btn{color:var(--paper)!important}
.sos-site-footer a{color:var(--ink2)}
.sos-site-footer a:hover{color:var(--seal)}
/* The wordmark is an <a>, so it needs to say ink at least as loudly as the
   generic link colour or the whole mark comes out blue — the one bright
   thing left on the page, which is precisely what it must not be. */
body.sos-site a.sos-site-logo{color:var(--ink)}
body.sos-site a.sos-site-logo:hover{color:var(--ink)}
body.sos-site a.sos-authx-logo,.sos-authx-logo{color:var(--paper);font-family:var(--display);font-weight:600}
body.sos-site .sos-authx-main a{color:var(--link)}

/* ── Contrast, measured on the new palette ───────────────────────────────
   Every run of text checked against the background actually painted behind
   it, not the one its own rule names. The four that used to fail:

     muted  #5a6068 on paper #f6f4ef   5.78:1
     seal   #7b2d26 on paper #f6f4ef   8.53:1
     link   #0a4d8c on paper #f6f4ef   7.80:1
     paper  #f6f4ef on ink   #15171a  16.7:1

   On ink, secondary text is #c9c4b8 (8.7:1) and the accent is a lightened
   seal, #d3a08f (8.0:1) — the dark seal itself is unreadable there. */
.sos-hero .sos-btn.ghost,.sos-btn.ghost{color:var(--ink)!important}
.sos-authx-list li,.sos-trial-points li{color:var(--ink2)}
.sos-mini-tag.red{color:#7b2d26;background:#f2e4e1}
.sos-mini-tag.blue{color:var(--link-strong);background:var(--link-soft)}
.sos-mini-tag.green{color:#24513a;background:#dfe9e1}
.sos-mini-tag.amber{color:#6b4610;background:#f1e7d2}

/* Some cards carry a marker with no glyph in it. Outside the numbered
   feature index it becomes a small solid rule in the accent, never a big
   pale square, which reads as a picture that failed to load. */
.sos-icon:empty{width:22px;height:3px;border-radius:0;background:var(--seal);margin-bottom:14px}

/* Client-facing pages that borrow this stylesheet: the portal, the invoice a
   client pays from, and the password screens. */
.sos-auth{background:var(--paper)}
.sos-auth-card,.sos-auth-info{border-color:var(--hairline);border-radius:0;box-shadow:none;background:var(--card)}
.sos-auth-card h1,.sos-auth-card h2{font-family:var(--display);font-weight:600;color:var(--ink)}
.sos-auth-card p,.sos-auth .sos-muted{color:var(--muted)}
.sos-auth .sos-logo{color:var(--ink);border-color:var(--hairline)}
.sos-auth .sos-card,.sos-auth .sos-table{border-color:var(--hairline)}
.sos-auth .sos-table th{background:var(--cream);color:var(--ink2);font-family:var(--mono);font-size:11px;letter-spacing:.08em;text-transform:uppercase;font-weight:500}
.sos-client-pay-hero{background:var(--cream);border-color:var(--hairline);border-radius:0}
.sos-client-pay-hero strong{color:var(--ink);font-family:var(--display)}
.sos-client-pay-hero span,.sos-client-pay-hero p{color:var(--muted)}
.sos-invoice-totals .row strong{color:var(--ink)}
.sos-invoice-totals .row.paid strong{color:var(--sos-green)}
.sos-invoice-totals .row.balance{background:var(--cream)}

/* The results line ran its two halves together ("1 profilesFree public
   directory") because nothing ever styled it. */
.sos-dir-results-head{display:flex;align-items:baseline;gap:10px;margin-bottom:14px;flex-wrap:wrap}
.sos-dir-results-head strong{color:var(--ink);font-weight:600}
.sos-dir-results-head span{color:var(--muted);font-size:13px}
.sos-dir-results-head span::before{content:"\00B7";margin-right:10px;color:var(--rule)}

/* What every plan includes, said once instead of repeated down four columns. */
.sos-plan-everyone{max-width:900px;margin:34px auto 0;padding:24px 28px}
.sos-plan-everyone h2{font-family:var(--display);font-size:22px;margin:0 0 4px;color:var(--ink)}
.sos-plan-everyone>p{margin:0 0 14px;color:var(--muted);font-size:14px}
.sos-plan-everyone ul{list-style:none;margin:0;padding:0;display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:8px 24px}
.sos-plan-everyone li{position:relative;padding-left:24px;color:var(--ink2);font-size:14px;line-height:1.5}
.sos-plan-everyone li::before{content:"\2014";position:absolute;left:0;top:0;color:var(--seal);font-weight:400}
@media(max-width:560px){.sos-plan-everyone{padding:18px}}

/* ── The site on a phone ─────────────────────────────────────────────────
   Measured at 390 by 844 with a touch device: nothing scrolls sideways and
   nothing fails contrast, but several things were laid out or sized for a
   mouse. Everything below is scoped to the phone. */
@media(max-width:700px){
  /* A rule written for the directory toggles also caught the trust list on
     the AI section, laying a three-item list out as one inline row. With
     390px to share, every item wrapped after two words. */
  .sos-check{display:flex;flex-direction:column;align-items:flex-start;gap:8px;
    line-height:1.45;font-size:.95rem}
  .sos-check li{display:flex;align-items:flex-start;gap:2px}

  /* Small caps at ten and a half pixels are a desktop indulgence. */
  .sos-feature .tag,.sos-risk-card .where{font-size:11.5px}
  .sos-kicker,.sos-section .sos-kicker,.sos-page-hero .sos-kicker,.sos-hero .sos-kicker{font-size:12px}
  .sos-trustbar-items span{font-size:12px}

  /* The hero's margin rule is a wide-screen flourish; at 390px it sits on
     top of the first word and reads as a rendering fault. */
  .sos-hero::after{display:none}
  /* And the one offset block on the page needs the room it does not have. */
  .sos-window,.sos-hero-people,.sos-trial-dock{box-shadow:none}

  /* A grid item's min-width is auto, so it refuses to shrink below the widest
     thing inside it. On a 360px phone the illustrated workspace held the hero
     column open at 345px inside a 312px box and nine pixels were clipped off
     the right of both columns. Let the tracks and their contents shrink. */
  .sos-hero-grid,.sos-spot,.sos-people-grid,.sos-grid3{grid-template-columns:minmax(0,1fr)}
  .sos-hero-copy,.sos-hero-visual,.sos-spot>*,.sos-feature{min-width:0}
  .sos-window,.sos-hero-people{max-width:100%;min-width:0}
  .sos-window *{min-width:0}

  /* The API reference is a real table and cannot be made narrow without
     lying about it. Let the table scroll inside its own box rather than
     push the whole page sideways: at 360px it was 105px over. */
  .sos-dev table,.sos-prose table,.sos-blog-prose table{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}

  .sos-hero{padding:48px 0 44px}
  .sos-section{padding:52px 0}
  .sos-hero h1{font-size:2.35rem;max-width:none}
  .sos-security,.sos-cta{padding:28px 22px}
}

/* Finger-sized targets wherever there is a finger, which includes a tablet
   at 768px, not only a phone under 700. Sizing only: no layout moves here. */
@media (hover: none) and (pointer: coarse){
  .sos-site-logo{min-height:44px;display:inline-flex;align-items:center}
  .sos-site-nav .sos-btn,.sos-trial-dock .sos-btn{min-height:44px;padding-top:0;padding-bottom:0}
  .sos-site-footer .sos-footer-grid a{min-height:40px;display:flex;align-items:center;margin-bottom:0}
  .sos-feature h3 a,.sos-blog-card h3 a,.sos-dir-panel a,.sos-dir-card a,
  .sos-dir-side>a:not(.sos-btn){display:inline-flex;align-items:center;min-height:44px}
  /* .sos-xform .agree input pins width:auto at a higher weight, so this has to
     be said at the same weight or the box stays 13px wide and 20px tall. */
  input[type="checkbox"],input[type="radio"],
  .sos-xform .agree input[type="checkbox"],
  .sos-tool-form .chk input[type="checkbox"],
  .sos-xform .sos-dir-checkboxes input[type="checkbox"],
  .sos-xform .sos-check input[type="checkbox"],
  .sos-dir-checkboxes input[type="checkbox"]{width:20px;height:20px;flex:none}
  input[type="range"]{height:44px}
  input[type="text"],input[type="email"],input[type="tel"],input[type="number"],
  input[type="password"],input[type="search"],input[type="date"],select{min-height:44px}
}

/* Signup on a phone: the form first */
/* At 360px the reassurance panel (251px) and the "what happens next" box
   (118px) put the first field at 455px and the button at 1,045px, a screen
   and a half down. 653 people opened this form in 45 days and 117 typed
   anything. On a phone the heading and its one line already say "no card,
   no sales call"; the panels return on wider screens. */
@media(max-width:720px){
  .sos-signup-fastlane{display:none}
  .sos-submit-proof{display:none}
  .sos-authx-card h2{font-size:1.35rem;line-height:1.2;margin-bottom:4px}
  .sos-authx-card .sub{margin-bottom:14px}
}

@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}
  html{scroll-behavior:auto}
}
