/* ============================================================
   SYNCHRONIZE365 · site.css
   Small site-specific additions layered on top of brand.css.
   Loaded AFTER brand.css and logos.css.
   ============================================================ */

/* Diagram figure: framed, light surface, caption */
.figure{background:var(--surface);border:1px solid var(--line);border-radius:var(--radius);
  padding:22px;box-shadow:var(--shadow-sm);margin-top:8px}
.figure img{width:100%;height:auto;border-radius:10px;display:block}
.figure figcaption{margin-top:14px;font-size:14.5px;color:var(--muted);text-align:center;
  font-family:"Sora",sans-serif;font-weight:500}

/* Two-column diagram + explanation row */
.diagram-row{display:grid;grid-template-columns:1.1fr .9fr;gap:40px;align-items:center}
.diagram-row.flip{direction:rtl}
.diagram-row.flip > *{direction:ltr}
@media(max-width:920px){ .diagram-row,.diagram-row.flip{grid-template-columns:1fr;gap:24px;direction:ltr} }

/* Spec list (used on How It Works for the side detail) */
.spec{list-style:none;display:grid;gap:14px;margin-top:8px}
.spec li{display:flex;gap:13px;align-items:flex-start}
.spec li .b{width:30px;height:30px;border-radius:9px;flex-shrink:0;display:flex;align-items:center;
  justify-content:center;background:color-mix(in srgb, var(--brand) 14%, #fff)}
.spec li .b svg{width:16px;height:16px;stroke:var(--brand-deep);fill:none;stroke-width:2}
.spec li b{font-family:"Sora",sans-serif;color:var(--slate-deep);font-size:15.5px;display:block}
.spec li span{color:var(--muted);font-size:14.5px}

/* Code-ish endpoint pill for the API section */
.api-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px;margin-top:8px}
@media(max-width:760px){ .api-grid{grid-template-columns:1fr} }
.api-card{background:var(--surface);border:1px solid var(--line);border-radius:14px;padding:22px 24px;box-shadow:var(--shadow-sm)}
.api-card .verb{display:inline-block;font-family:"Sora",sans-serif;font-weight:700;font-size:12px;letter-spacing:.06em;
  padding:4px 10px;border-radius:7px;color:#fff;background:var(--brand);margin-bottom:12px}
.api-card .path{font-family:ui-monospace,"SFMono-Regular",Menlo,Consolas,monospace;font-size:14px;color:var(--slate-deep);
  background:var(--bg);border:1px solid var(--line);border-radius:8px;padding:9px 12px;display:block;overflow-x:auto;white-space:nowrap}
.api-card p{color:var(--muted);font-size:14.5px;margin-top:12px}

/* ---- Hero data-transfer graphic (replaces parent mountains) ---- */
.sync-graphic{position:absolute;inset:0;display:flex;align-items:center;justify-content:center}
.sync-graphic svg{width:100%;height:auto;max-height:100%;
  filter:drop-shadow(0 18px 36px rgba(47,58,77,.12))}
@media(max-width:760px){
  .sync-graphic{padding:0 4px}
}
