@font-face { font-family: "Geist"; font-style: normal; font-weight: 400 800; font-display: optional; src: url(/fonts/Geist-0.woff2) format("woff2"); }

:root {
  color-scheme: light;
  --bg: #ffffff;
  --bg-2: #f5f5f7;
  --line: #e4e4ea;
  --ink: #0a0a0e;
  --ink-2: #26262d;
  --muted: #5d5d69;
  --gold: #f5b82e;
  --gold-ink: #7a5300;
  --ok: #0b7a4e;
  --warn: #8a5300;
  --focus: #1f4fd8;
  --btn: #0a0a0e;
  --btn-ink: #ffffff;
  --shadow: 0 1px 0 rgba(10, 10, 14, 0.04), 0 30px 70px -40px rgba(12, 12, 40, 0.38);
  --sans: "Geist", "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --bg: #0b0b0e;
    --bg-2: #141418;
    --line: #26262e;
    --ink: #f2f2f5;
    --ink-2: #d9d9e0;
    --muted: #a3a3b0;
    --gold-ink: #f5c65a;
    --ok: #4fd6a0;
    --warn: #f0b35a;
    --focus: #8aa6ff;
    --btn: #f2f2f5;
    --btn-ink: #0b0b0e;
    --shadow: 0 0 0 1px #24242c, 0 30px 80px -40px rgba(0, 0, 0, 0.8);
  }
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 72px; }
body { margin: 0; background: var(--bg); color: var(--ink); font: 400 16px/1.55 var(--sans); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
a { color: inherit; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; border-radius: 4px; }
.wrap { width: min(1160px, 100% - 32px); margin-inline: auto; }
.narrow { width: min(760px, 100% - 32px); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 16px; top: 12px; z-index: 20; background: var(--btn); color: var(--btn-ink); padding: 10px 14px; border-radius: 8px; }

/* Header */
.top { position: sticky; top: 0; z-index: 10; background: color-mix(in srgb, var(--bg) 88%, transparent); backdrop-filter: saturate(1.5) blur(14px); -webkit-backdrop-filter: saturate(1.5) blur(14px); border-bottom: 1px solid var(--line); }
.top .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 60px; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 700; font-size: 16.5px; letter-spacing: -0.01em; }
.brand svg { width: 28px; height: 28px; border-radius: 7px; }
@media (prefers-color-scheme: dark) { .brand svg { box-shadow: 0 0 0 1px #2c2c34; } }
.top nav { display: flex; align-items: center; gap: 24px; font-size: 14.5px; }
.top nav a:not(.btn) { text-decoration: none; color: var(--muted); }
.top nav a:not(.btn):hover { color: var(--ink); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 40px; padding: 0 18px; border-radius: 999px; font-weight: 600; font-size: 14.5px; text-decoration: none; transition: background-color 0.15s ease, transform 0.15s ease; }
.btn:active { transform: translateY(1px); }
.btn-lg { min-height: 48px; padding: 0 22px; font-size: 15.5px; }
.btn-solid { background: var(--btn); color: var(--btn-ink); }
.btn-solid:hover { background: var(--ink-2); }
.btn-quiet { background: var(--bg-2); color: var(--ink); box-shadow: inset 0 0 0 1px var(--line); }
.btn-quiet:hover { background: var(--line); }

/* Hero */
.hero { padding: clamp(56px, 9vw, 110px) 0 clamp(40px, 6vw, 72px); overflow: hidden; }
.hero .wrap:first-child { text-align: center; display: grid; justify-items: center; }
.kicker { margin: 0 0 18px; font-size: 13.5px; font-weight: 600; color: var(--muted); }
.hero h1 { margin: 0; max-width: 17ch; font-size: clamp(40px, 6.4vw, 76px); line-height: 1.02; letter-spacing: -0.042em; font-weight: 700; }
.lede { margin: 22px 0 0; max-width: 620px; font-size: clamp(17px, 1.6vw, 19.5px); line-height: 1.55; color: var(--muted); }
.actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 30px; }

/* The stage: desktop window with the phone in front */
.stage { position: relative; margin-top: clamp(48px, 7vw, 80px); min-height: 690px; }
.stage .dk { width: calc(100% - 180px); }
.phone-col { position: absolute; right: 0; top: 88px; z-index: 2; }
.stage-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px 24px; width: calc(100% - 340px); margin-top: 28px; }
.stage-note { margin: 0; font-size: 14px; color: var(--muted); }

/* Screens keep their own light palette in both page themes, like real screenshots */
.dk, .ph { --s-bg: #ffffff; --s-2: #f3f3f6; --s-3: #e6e6ec; --s-ink: #0a0a0e; --s-muted: #5f5f6c; --s-ok: #0b7a4e; --s-warn: #8a5300; color: var(--s-ink); }
.vg { display: inline-block; width: var(--w, 80px); max-width: 100%; height: 0.72em; border-radius: 6px; background: currentColor; opacity: 0.16; filter: blur(1.2px); vertical-align: middle; }
.av { display: inline-block; width: 26px; height: 26px; border-radius: 8px; background: hsl(var(--h, 220) 42% 60%); flex: none; }
.av.sm { width: 22px; height: 22px; border-radius: 50%; }

.dk { border-radius: 14px; overflow: hidden; background: var(--s-bg); box-shadow: var(--shadow), 0 0 0 1px rgba(10, 10, 14, 0.08); }
.dk-chrome { display: flex; align-items: center; gap: 7px; height: 38px; padding: 0 14px; background: #1a1a20; }
.dk-chrome b { font-size: 12.5px; font-weight: 600; color: #a9a9b6; }
.dk-body { display: grid; grid-template-columns: 200px minmax(0, 1fr); min-height: 440px; }
.dk-rail { background: #111116; color: #e8e8ee; padding: 14px 12px; display: grid; gap: 6px; align-content: start; }
.dk-rail-h { font-weight: 600; font-size: 12.5px; color: #a3a3b0; padding: 4px 8px 8px; }
.dk-store { all: unset; display: flex; align-items: center; gap: 10px; min-height: 44px; padding: 6px 8px; border-radius: 10px; cursor: pointer; }
.dk-store .vg { opacity: 0.35; }
.dk-store:hover { background: #1c1c23; }
.dk-store.on { background: #26262e; }
.dk-store:focus-visible { outline: 2px solid var(--gold); }
.dk-add { margin-top: 8px; padding: 10px 8px; border-radius: 10px; font-weight: 600; font-size: 13px; color: #f7d27d; background: rgba(245, 184, 46, 0.12); }
.dk-main { padding: 18px 22px 22px; display: grid; gap: 16px; align-content: start; }
.tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.tabs button, .ph-tabs button, .seg button { all: unset; min-height: 36px; padding: 0 14px; display: inline-flex; align-items: center; border-radius: 999px; font-weight: 600; font-size: 13.5px; cursor: pointer; }
.tabs button { color: var(--s-muted); background: var(--s-2); }
.tabs button:hover { background: var(--s-3); }
.tabs button.on { background: var(--s-ink); color: #fff; }
.tabs button:focus-visible, .ph-tabs button:focus-visible, .seg button:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; }
.dk-tiles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.dk-tile { display: grid; gap: 10px; padding: 14px 16px; border-radius: 12px; background: var(--s-2); }
.dk-tile span { font-size: 13px; color: var(--s-muted); }
.dk-tile .vg { height: 1.1em; opacity: 0.22; }
.list { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.list li { display: flex; align-items: center; gap: 12px; min-height: 48px; padding: 8px 12px; border-radius: 10px; font-size: 14.5px; }
.list li:nth-child(odd) { background: var(--s-2); }
.list.rows li .st { margin-left: auto; }
.list .bar { flex: 1; max-width: 180px; height: 6px; border-radius: 3px; background: var(--s-3); overflow: hidden; }
.list .bar i { display: block; height: 100%; background: var(--s-ink); border-radius: 3px; }
.note { margin: 0; font-size: 14px; color: var(--s-muted); }
.dk.swap .dk-main { animation: swap 0.3s ease; }
@keyframes swap { from { opacity: 0.4; } to { opacity: 1; } }

.st { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: 13px; white-space: nowrap; }
.st::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.st.ok { color: var(--ok); }
.st.warn { color: var(--warn); }
.dk .st.ok, .ph .st.ok { color: var(--s-ok); }
.dk .st.warn, .ph .st.warn { color: var(--s-warn); }

.seg { display: inline-flex; gap: 4px; padding: 4px; border-radius: 999px; background: var(--bg-2); box-shadow: inset 0 0 0 1px var(--line); }
.seg button { color: var(--muted); }
.seg button.on { background: var(--btn); color: var(--btn-ink); }

.ph { width: 290px; height: 590px; border-radius: 46px; background: #0b0b0f; padding: 11px; display: grid; grid-template-rows: auto 1fr auto; box-shadow: 0 0 0 1px #2a2a32, 0 40px 80px -30px rgba(12, 12, 40, 0.55); }
.ph > * { background: #fbfbfd; }
.ph-bar { display: flex; justify-content: space-between; align-items: center; padding: 14px 24px 6px; border-radius: 35px 35px 0 0; font-weight: 600; font-size: 13px; }
.ph-icons { width: 44px; height: 10px; border-radius: 3px; background: currentColor; opacity: 0.8; }
.ph-screen { padding: 8px 16px; overflow: hidden; }
.ph-view .ph-h { margin: 6px 0 12px; font-size: 26px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; }
.ph-card { display: flex; justify-content: space-between; align-items: center; min-height: 52px; padding: 0 14px; margin-bottom: 8px; border-radius: 14px; background: #fff; box-shadow: 0 0 0 1.5px #ececf1; font-size: 14px; }
.ph-card span { color: var(--s-muted); }
.ph-card .vg { opacity: 0.25; }
.ph-list { list-style: none; margin: 12px 0 0; padding: 0; display: grid; gap: 8px; }
.ph-list li { display: flex; align-items: center; gap: 10px; min-height: 44px; padding: 0 12px; border-radius: 12px; background: #fff; box-shadow: 0 0 0 1.5px #ececf1; font-size: 13.5px; }
.ph-list.rows li .st { margin-left: auto; }
.ph-list .dot { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.ph-list .dot.warn { background: var(--s-warn); }
.ph-list .dot.ok { background: var(--s-ok); }
.ph-tabs { display: grid; grid-template-columns: repeat(3, 1fr); padding: 8px 10px 18px; border-radius: 0 0 35px 35px; }
.ph-tabs button { justify-content: center; min-height: 44px; font-size: 12.5px; color: var(--s-muted); }
.ph-tabs button.on { color: var(--s-ink); background: var(--s-2); }
.ph.android { border-radius: 28px; }
.ph.android .ph-bar { border-radius: 18px 18px 0 0; }
.ph.android .ph-tabs { border-radius: 0 0 18px 18px; }
.ph.android .ph-view .ph-h { font-size: 22px; font-weight: 600; }
.ph.android .ph-card, .ph.android .ph-list li { border-radius: 10px; }

/* Sections */
.band { padding: clamp(64px, 9vw, 112px) 0; background: var(--bg-2); border-block: 1px solid var(--line); }
.section { padding: clamp(64px, 9vw, 112px) 0; }
.band h2, .section h2, .cta h2 { margin: 0; font-size: clamp(30px, 3.6vw, 46px); line-height: 1.08; letter-spacing: -0.035em; font-weight: 700; }
.pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.app-card { padding: clamp(22px, 3vw, 32px); border-radius: 18px; background: var(--bg); box-shadow: 0 0 0 1px var(--line); }
.app-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 8px 16px; }
.app-head h3 { margin: 0; font-size: 21px; letter-spacing: -0.02em; }
.app-sys { margin: 6px 0 0; color: var(--muted); font-size: 15px; }
.facts { display: grid; gap: 18px; margin: 24px 0 0; padding-top: 22px; border-top: 1px solid var(--line); }
.facts dt { font-weight: 600; font-size: 15.5px; }
.facts dd { margin: 4px 0 0; color: var(--muted); font-size: 15px; }
.band-foot { max-width: 720px; margin: 32px 0 0; color: var(--muted); font-size: 16.5px; }
.more { font-weight: 600; color: var(--ink); text-underline-offset: 4px; text-decoration-color: var(--gold); text-decoration-thickness: 2px; white-space: nowrap; }
.more:hover { color: var(--gold-ink); }

.table-wrap { margin-top: 32px; overflow-x: auto; border-radius: 16px; box-shadow: 0 0 0 1px var(--line); }
.cmp { width: 100%; min-width: 620px; border-collapse: collapse; font-size: 15px; }
.cmp th, .cmp td { padding: 16px 20px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.cmp thead th { font-size: 14px; font-weight: 700; background: var(--bg-2); }
.cmp tbody th { width: 22%; font-weight: 600; color: var(--muted); }
.cmp tbody tr:last-child > * { border-bottom: 0; }

.dark { background: #0b0b0e; color: #f2f2f5; }
@media (prefers-color-scheme: dark) { .dark { background: #141418; border-block: 1px solid var(--line); } }
.grid4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; margin-top: 40px; }
.grid4 > div { padding-top: 18px; border-top: 2px solid #2e2e36; }
.grid4 h3 { margin: 0; font-size: 17px; }
.grid4 p { margin: 8px 0 0; color: #a9a9b6; font-size: 15px; }

.faq { margin-top: 28px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 64px; cursor: pointer; font-weight: 600; font-size: 17px; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; flex: none; width: 10px; height: 10px; border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted); transform: translateY(-3px) rotate(45deg); transition: transform 0.2s ease; }
.faq details[open] summary::after { transform: translateY(2px) rotate(225deg); }
.faq details p { margin: 0 0 22px; max-width: 640px; color: var(--muted); }

.cta { padding: clamp(72px, 10vw, 128px) 0; text-align: center; border-top: 1px solid var(--line); }
.cta p { margin: 12px auto 28px; color: var(--muted); font-size: 17px; }

/* Footer */
.foot { padding: 48px 0 36px; background: var(--bg-2); border-top: 1px solid var(--line); font-size: 14.5px; }
.foot-cols { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px; }
.foot-brand p { margin: 12px 0 0; color: var(--muted); max-width: 260px; }
.foot-h { margin: 0 0 12px; font-size: 13.5px; font-weight: 700; }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.foot ul a { color: var(--muted); text-decoration: none; }
.foot ul a:hover { color: var(--ink); }
.legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); }
.legal a { color: var(--ink); font-weight: 600; text-decoration: none; }
.legal a:hover { text-decoration: underline; }

@media (max-width: 980px) {
  .stage { min-height: 0; display: grid; justify-items: center; }
  .stage .dk { width: 100%; }
  .phone-col { position: static; margin-top: 28px; }
  .stage-foot { width: 100%; justify-content: center; text-align: center; flex-direction: column-reverse; }
  .grid4 { grid-template-columns: 1fr 1fr; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .top nav a:not(.btn) { display: none; }
  .pair { grid-template-columns: 1fr; }
  .dk-body { grid-template-columns: 1fr; min-height: 0; }
  .dk-rail { grid-auto-flow: column; grid-auto-columns: max-content; overflow-x: auto; align-items: center; }
  .dk-rail-h, .dk-add { display: none; }
  .dk-tiles { grid-template-columns: 1fr 1fr; }
  .dk-main { padding: 14px; }
  .list li { font-size: 13.5px; }
}
@media (max-width: 520px) {
  .grid4 { grid-template-columns: 1fr; }
  .actions { width: 100%; }
  .actions .btn { flex: 1 1 auto; }
  .ph { width: 100%; max-width: 300px; height: 580px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .dk.swap .dk-main { animation: none; }
  .btn, .faq summary::after { transition: none; }
}
@media (prefers-color-scheme: dark) { .ph { box-shadow: 0 0 0 1px #3a3a44, 0 40px 80px -30px rgba(0, 0, 0, 0.9); } }
.dk-rail, .tabs { scrollbar-width: none; }
.dk-rail::-webkit-scrollbar, .tabs::-webkit-scrollbar { display: none; }
@media (max-width: 520px) {
  .tabs { flex-wrap: nowrap; overflow-x: auto; margin-inline: -14px; padding-inline: 14px; }
  .tabs button { flex: none; }
}

/* Section heads */
.sec-head { display: grid; gap: 12px; max-width: 720px; }
.sec-head p { margin: 0; color: var(--muted); font-size: 17.5px; }
.sub-h { margin: 64px 0 0; font-size: 22px; letter-spacing: -0.02em; }

/* The back office window: a light screen in both page themes */
.bo { --s-bg: #ffffff; --s-2: #f3f3f6; --s-3: #e6e6ec; --s-ink: #0a0a0e; --s-muted: #5f5f6c; --s-ok: #0b7a4e; --s-warn: #8a5300; color: var(--s-ink); margin-top: 36px; border-radius: 14px; overflow: hidden; background: var(--s-bg); box-shadow: var(--shadow), 0 0 0 1px rgba(10, 10, 14, 0.08); }
.bo-bar { display: flex; align-items: center; gap: 10px; height: 38px; padding: 0 16px; background: #1a1a20; font-size: 12.5px; color: #a9a9b6; }
.bo-bar b { color: #e8e8ee; font-weight: 600; }
.bo-body { display: grid; grid-template-columns: 188px minmax(0, 1fr); min-height: 380px; }
.bo-nav { display: grid; align-content: start; gap: 4px; padding: 14px 10px; background: var(--s-2); border-right: 1px solid var(--s-3); }
.bo-nav button { all: unset; display: flex; align-items: center; min-height: 40px; padding: 0 12px; border-radius: 9px; font-size: 14px; font-weight: 600; color: var(--s-muted); cursor: pointer; }
.bo-nav button:hover { background: var(--s-3); }
.bo-nav button.on { background: var(--s-bg); color: var(--s-ink); box-shadow: 0 0 0 1px var(--s-3); }
.bo-nav button:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; }
.bo-panel { padding: 18px 22px 22px; min-width: 0; }
.bo-top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px 16px; margin-bottom: 14px; }
.bo-h { margin: 0; font-size: 19px; font-weight: 700; letter-spacing: -0.02em; }
.chips { display: flex; gap: 6px; flex-wrap: wrap; }
.chips span { padding: 6px 11px; border-radius: 999px; font-size: 12.5px; font-weight: 600; color: var(--s-muted); background: var(--s-2); }
.chips span.on { background: var(--s-ink); color: #fff; }
.bo-scroll { overflow-x: auto; scrollbar-width: thin; }
.bo-table { width: 100%; min-width: 560px; border-collapse: collapse; font-size: 14px; font-variant-numeric: tabular-nums; }
.bo-table th { padding: 10px 12px; text-align: left; font-size: 12.5px; font-weight: 600; color: var(--s-muted); border-bottom: 1px solid var(--s-3); }
.bo-table td { padding: 12px; border-bottom: 1px solid var(--s-2); }
.bo-table tr:last-child td { border-bottom: 0; }
.bo-table .num { text-align: right; }
.bo-table .mono { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 13px; color: var(--s-muted); }
.bo-table .dim { color: var(--s-muted); }
.bo .st { color: var(--s-muted); }
.bo .st.ok { color: var(--s-ok); }
.bo .st.warn { color: var(--s-warn); }

/* Tools */
.tools { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0 32px; margin: 20px 0 0; }
.tools > div { padding: 18px 0; border-top: 1px solid var(--line); }
.tools dt { font-weight: 600; font-size: 15.5px; }
.tools dd { margin: 4px 0 0; color: var(--muted); font-size: 14.5px; }
.brandline { margin-top: 48px; padding: clamp(22px, 3vw, 32px); border-radius: 18px; background: var(--bg-2); box-shadow: inset 0 0 0 1px var(--line); max-width: 820px; }
.brandline h3 { margin: 0; font-size: 19px; letter-spacing: -0.02em; }
.brandline p { margin: 8px 0 0; color: var(--muted); }

/* Connections */
.conn { list-style: none; margin: 32px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.conn li { display: grid; align-content: start; gap: 4px; padding: 16px 18px; border-radius: 14px; background: var(--bg-2); box-shadow: inset 0 0 0 1px var(--line); }
.conn b { font-size: 15.5px; }
.conn span { color: var(--muted); font-size: 14px; }

#connections { background: var(--bg-2); border-block: 1px solid var(--line); }
#connections .conn li { background: var(--bg); }

@media (max-width: 980px) {
  .tools, .conn { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .bo-body { grid-template-columns: 1fr; min-height: 0; }
  .bo-nav { display: flex; overflow-x: auto; scrollbar-width: none; border-right: 0; border-bottom: 1px solid var(--s-3); padding: 10px; }
  .bo-nav::-webkit-scrollbar { display: none; }
  .bo-nav button { flex: none; min-height: 36px; }
  .bo-panel { padding: 14px; }
}
@media (max-width: 560px) {
  .tools, .conn { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .bo-table { min-width: 0; font-size: 13px; }
  .bo-table th:nth-child(3), .bo-table td:nth-child(3) { display: none; }
  .bo-table th, .bo-table td { padding-inline: 8px; }
  .bo-table .st { white-space: normal; }
  .bo-table td:nth-child(2) { white-space: nowrap; }
}
