@charset "UTF-8";
/* ---------------------------------------------------------------------------
   The palette is the product's own: #001e50 is the launcher icon's background
   and #d4a017 the gold in the mark, so the site and the app read as one thing.
   --------------------------------------------------------------------------- */
:root{
  --navy:#001e50; --navy-2:#00163c; --navy-soft:#0b2b63;
  --gold:#d4a017; --gold-2:#b8860b; --gold-soft:#fdf8e9;
  --ink:#101828; --ink-muted:#475467; --ink-faint:#7a8698;
  --line:#e4e7ec; --surface:#fff; --canvas:#f7f8fa;
  --radius:14px; --wrap:1120px;
}
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.01ms!important;transition-duration:.01ms!important}}
body{margin:0;background:var(--canvas);color:var(--ink);
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,"Segoe UI",sans-serif;
  line-height:1.6;-webkit-font-smoothing:antialiased}
img{max-width:100%;height:auto;display:block}
a{color:inherit}
h1,h2,h3{line-height:1.2;letter-spacing:-.02em;margin:0 0 .5em}
h1{font-size:clamp(2rem,5vw,3.4rem);font-weight:800}
h2{font-size:clamp(1.5rem,3.2vw,2.25rem);font-weight:700}
h3{font-size:1.0625rem;font-weight:700}
p{margin:0 0 1rem}
.wrap{max-width:var(--wrap);margin-inline:auto;padding-inline:20px}
.section{padding:clamp(56px,8vw,96px) 0}
/* The header is sticky, so an anchor jump would otherwise land the heading
   underneath it. Offset every jump target by a little more than its height. */
[id]{scroll-margin-top:84px}
.eyebrow{font-size:.75rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--gold-2);margin-bottom:.6rem}
.lede{font-size:clamp(1.02rem,1.6vw,1.18rem);color:var(--ink-muted);max-width:62ch}
.center{text-align:center}.center .lede{margin-inline:auto}

/* Skip link: this page is one long column and keyboard users should be able
   to jump the nav. */
.skip{position:absolute;left:-9999px}
.skip:focus{left:16px;top:16px;z-index:100;background:#fff;color:var(--navy);
  padding:10px 16px;border-radius:8px;box-shadow:0 4px 16px rgba(0,0,0,.2)}
:focus-visible{outline:3px solid var(--gold);outline-offset:3px;border-radius:6px}

/* header */
header{position:sticky;top:0;z-index:50;background:rgba(255,255,255,.88);
  backdrop-filter:blur(10px);border-bottom:1px solid var(--line)}
.nav{display:flex;align-items:center;gap:16px;height:68px}
.brand{display:flex;align-items:center;gap:10px;font-weight:800;letter-spacing:-.02em;
  text-decoration:none;font-size:1.05rem}
.brand img{width:34px;height:34px}
.nav-links{display:none;gap:26px;margin-left:auto;font-size:.9rem;font-weight:500}
.nav-links a{color:var(--ink-muted);text-decoration:none}
.nav-links a:hover{color:var(--ink)}
.nav-cta{margin-left:auto}
@media(min-width:880px){.nav-links{display:flex}.nav-cta{margin-left:0}}

/* buttons */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:12px 22px;border-radius:10px;font-weight:600;font-size:.95rem;
  text-decoration:none;border:1px solid transparent;cursor:pointer;
  transition:transform .12s ease,box-shadow .12s ease,background .12s ease}
.btn:hover{transform:translateY(-1px)}
.btn-primary{background:linear-gradient(180deg,var(--gold) 0%,var(--gold-2) 100%);
  color:#2a1f00;box-shadow:0 6px 18px rgba(184,134,11,.32)}
.btn-ghost{background:transparent;border-color:rgba(255,255,255,.35);color:#fff}
.btn-ghost.on-light{border-color:var(--line);color:var(--ink);background:var(--surface)}
.btn-sm{padding:9px 16px;font-size:.875rem}

/* hero */
.hero{background:
    radial-gradient(1100px 520px at 78% -8%,var(--navy-soft) 0%,transparent 60%),
    linear-gradient(160deg,var(--navy) 0%,var(--navy-2) 100%);
  color:#fff;padding:clamp(56px,8vw,104px) 0 clamp(64px,9vw,116px)}
.hero h1{color:#fff}
.hero .lede{color:#c9d4e6}
.hero-grid{display:grid;gap:48px;align-items:center}
@media(min-width:940px){.hero-grid{grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);gap:64px}}
.hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:28px}
.hero-note{margin-top:18px;font-size:.85rem;color:#9fb0cb}
.hero-card{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.14);
  border-radius:20px;padding:28px;backdrop-filter:blur(6px)}
.hero-card img{margin:0 auto 20px;width:132px;
  filter:drop-shadow(0 14px 30px rgba(0,0,0,.45))}
.tagline{display:flex;justify-content:center;gap:10px;flex-wrap:wrap;
  font-weight:700;letter-spacing:.02em;color:var(--gold)}
.tagline span::after{content:" ·";color:rgba(255,255,255,.3)}
.tagline span:last-child::after{content:""}

/* strip */
.strip{background:var(--surface);border-bottom:1px solid var(--line);padding:22px 0}
.strip ul{display:flex;flex-wrap:wrap;justify-content:center;gap:12px 34px;
  margin:0;padding:0;list-style:none;font-size:.875rem;color:var(--ink-muted);font-weight:500}
.strip li::before{content:"✓";color:var(--gold-2);font-weight:800;margin-right:8px}

/* cards */
.grid{display:grid;gap:20px}
.cols-2{grid-template-columns:1fr}
.cols-3{grid-template-columns:1fr}
@media(min-width:680px){.cols-2,.cols-3{grid-template-columns:repeat(2,1fr)}}
@media(min-width:980px){.cols-3{grid-template-columns:repeat(3,1fr)}}
.card{background:var(--surface);border:1px solid var(--line);border-radius:var(--radius);
  padding:26px;transition:box-shadow .16s ease,transform .16s ease}
.card:hover{box-shadow:0 10px 30px rgba(16,24,40,.07);transform:translateY(-2px)}
.card h3{margin-bottom:.35rem}
.card p{margin:0;color:var(--ink-muted);font-size:.94rem}
.ico{width:42px;height:42px;border-radius:11px;display:grid;place-items:center;
  background:var(--gold-soft);color:var(--gold-2);margin-bottom:16px}
.ico svg{width:21px;height:21px;stroke:currentColor;fill:none;stroke-width:1.9;
  stroke-linecap:round;stroke-linejoin:round}

/* how it works */
.steps{counter-reset:s}
.step{position:relative;padding-left:60px;margin-bottom:30px}
.step::before{counter-increment:s;content:counter(s);position:absolute;left:0;top:-2px;
  width:40px;height:40px;border-radius:50%;display:grid;place-items:center;
  background:var(--navy);color:var(--gold);font-weight:800}
.step h3{margin-bottom:.2rem}
.step p{margin:0;color:var(--ink-muted)}

/* pricing */
.price-wrap{display:grid;gap:20px;max-width:840px;margin-inline:auto}
@media(min-width:680px){.price-wrap{grid-template-columns:1fr 1fr}}
.price{background:var(--surface);border:1px solid var(--line);border-radius:var(--radius);padding:30px;text-align:center}
.price.featured{border-color:var(--gold);box-shadow:0 8px 30px rgba(184,134,11,.14);position:relative}
.badge{position:absolute;top:-12px;left:50%;transform:translateX(-50%);
  background:var(--gold);color:#2a1f00;font-size:.7rem;font-weight:800;
  letter-spacing:.08em;text-transform:uppercase;padding:5px 14px;border-radius:999px}
.amount{font-size:2.4rem;font-weight:800;letter-spacing:-.03em;margin:.2rem 0}
.amount small{font-size:.9rem;font-weight:500;color:var(--ink-muted);letter-spacing:0}
.price ul{list-style:none;margin:18px 0 0;padding:0;text-align:left;font-size:.92rem}
.price li{padding:7px 0 7px 26px;position:relative;color:var(--ink-muted)}
.price li::before{content:"✓";position:absolute;left:0;color:var(--gold-2);font-weight:800}
.note{font-size:.82rem;color:var(--ink-faint);max-width:60ch;margin:22px auto 0;text-align:center}

/* faq */
.faq{max-width:800px;margin-inline:auto}
details{background:var(--surface);border:1px solid var(--line);border-radius:12px;
  padding:18px 22px;margin-bottom:12px}
details[open]{box-shadow:0 6px 22px rgba(16,24,40,.06)}
summary{cursor:pointer;font-weight:600;list-style:none;display:flex;justify-content:space-between;gap:16px}
summary::-webkit-details-marker{display:none}
summary::after{content:"+";color:var(--gold-2);font-weight:800;font-size:1.3rem;line-height:1}
details[open] summary::after{content:"−"}
details p{margin:12px 0 0;color:var(--ink-muted);font-size:.94rem}

/* cta band */
.band{background:linear-gradient(160deg,var(--navy) 0%,var(--navy-2) 100%);color:#fff;text-align:center}
.band h2{color:#fff}.band .lede{color:#c9d4e6}
.band .hero-actions{justify-content:center}

/* footer */
footer{background:var(--navy-2);color:#93a4bf;padding:52px 0 30px;font-size:.9rem}
.f-grid{display:grid;gap:32px;margin-bottom:34px}
@media(min-width:760px){.f-grid{grid-template-columns:2fr 1fr 1fr}}
footer h4{color:#fff;font-size:.8rem;letter-spacing:.1em;text-transform:uppercase;margin:0 0 14px}
footer ul{list-style:none;margin:0;padding:0}
footer li{margin-bottom:9px}
footer a{color:#93a4bf;text-decoration:none}
footer a:hover{color:var(--gold)}
.f-brand{display:flex;align-items:center;gap:10px;color:#fff;font-weight:800;margin-bottom:12px}
.f-brand img{width:32px;height:32px}
.f-bottom{border-top:1px solid rgba(255,255,255,.1);padding-top:22px;
  display:flex;flex-wrap:wrap;gap:12px;justify-content:space-between;font-size:.82rem}

/* ===========================================================================
   Added when the site became more than one page: a real nav, a documentation
   layout, and a way to show screenshots at the size a phone actually renders.
   =========================================================================== */

/* nav — the links now point at pages, and one of them is the current page */
.nav-links a[aria-current="page"]{color:var(--ink);font-weight:700}
.nav-toggle{margin-left:auto;display:inline-grid;place-items:center;width:40px;height:40px;
  border:1px solid var(--line);border-radius:10px;background:var(--surface);cursor:pointer}
.nav-toggle svg{width:20px;height:20px;stroke:var(--ink);fill:none;stroke-width:2;stroke-linecap:round}
.nav-drawer{display:none;border-top:1px solid var(--line);background:var(--surface)}
.nav-drawer.open{display:block}
.nav-drawer ul{list-style:none;margin:0;padding:10px 20px 18px}
.nav-drawer li{margin:0}
.nav-drawer a{display:block;padding:12px 0;text-decoration:none;color:var(--ink-muted);
  border-bottom:1px solid var(--line);font-weight:500}
.nav-drawer a[aria-current="page"]{color:var(--ink);font-weight:700}
@media(min-width:880px){.nav-toggle,.nav-drawer{display:none}}

/* page head — the smaller navy band every inside page opens with */
.page-head{background:linear-gradient(160deg,var(--navy) 0%,var(--navy-2) 100%);
  color:#fff;padding:clamp(40px,6vw,72px) 0 clamp(44px,6vw,76px)}
.page-head h1{color:#fff;font-size:clamp(1.75rem,4vw,2.75rem)}
.page-head .lede{color:#c9d4e6}
.crumbs{font-size:.82rem;color:#9fb0cb;margin-bottom:14px}
.crumbs a{color:#c9d4e6;text-decoration:none}
.crumbs a:hover{color:var(--gold)}

/* screenshots — a phone frame keeps a 540x1212 capture from dominating a
   column of text, and the caption says what to look at. */
.shot{margin:0 0 8px}
.shot img{border:1px solid var(--line);border-radius:18px;background:#fff;
  box-shadow:0 10px 34px rgba(16,24,40,.10);margin-inline:auto;width:100%;max-width:270px}
.shot figcaption{font-size:.84rem;color:var(--ink-faint);text-align:center;margin-top:10px;
  max-width:34ch;margin-inline:auto}
.shot-row{display:grid;gap:26px;grid-template-columns:1fr;margin:28px 0}
@media(min-width:620px){.shot-row.two{grid-template-columns:repeat(2,1fr)}}
@media(min-width:900px){.shot-row.three{grid-template-columns:repeat(3,1fr)}}
.shot-wide img{max-width:320px}

/* a numbered walk-through: text on one side, the screen it describes on the other */
.walk{display:grid;gap:24px;align-items:start;padding:28px 0;border-top:1px solid var(--line)}
.walk:first-of-type{border-top:0}
@media(min-width:820px){.walk{grid-template-columns:minmax(0,1fr) 300px;gap:44px}
  .walk.flip{grid-template-columns:300px minmax(0,1fr)}.walk.flip .walk-text{order:2}}
.walk h3{display:flex;align-items:center;gap:12px;margin-bottom:.4rem}
.walk .n{flex:none;width:32px;height:32px;border-radius:50%;background:var(--navy);
  color:var(--gold);display:grid;place-items:center;font-size:.9rem;font-weight:800}
.walk p{color:var(--ink-muted)}
.walk ul{color:var(--ink-muted);padding-left:20px;margin:0 0 1rem}
.walk li{margin-bottom:6px}

/* documentation shell: sticky contents on the left, prose on the right */
.doc{display:grid;grid-template-columns:minmax(0,1fr);gap:36px;padding-block:clamp(36px,5vw,60px)}
@media(min-width:960px){.doc{grid-template-columns:236px minmax(0,1fr);gap:56px}}
.doc-nav{font-size:.92rem}
@media(min-width:960px){.doc-nav{position:sticky;top:92px;align-self:start;max-height:calc(100vh - 120px);overflow:auto}}
.doc-nav h4{font-size:.72rem;letter-spacing:.12em;text-transform:uppercase;color:var(--ink-faint);margin:0 0 10px}
.doc-nav ul{list-style:none;margin:0 0 22px;padding:0}
.doc-nav li{margin:0}
.doc-nav a{display:block;padding:7px 12px;border-radius:8px;text-decoration:none;color:var(--ink-muted)}
.doc-nav a:hover{background:var(--surface);color:var(--ink)}
.doc-nav a[aria-current="page"]{background:var(--gold-soft);color:var(--gold-2);font-weight:700}
.prose{max-width:72ch}
.prose h2{margin-top:2.2em;scroll-margin-top:92px}
.prose h2:first-child{margin-top:0}
.prose h3{margin-top:1.8em;font-size:1.05rem}
.prose p,.prose li{color:var(--ink-muted)}
.prose strong{color:var(--ink)}
.prose ul,.prose ol{padding-left:22px;margin:0 0 1.1rem}
.prose li{margin-bottom:8px}
.prose table{width:100%;border-collapse:collapse;margin:0 0 1.4rem;font-size:.92rem}
.prose th,.prose td{text-align:left;padding:10px 12px;border-bottom:1px solid var(--line);vertical-align:top}
.prose th{color:var(--ink);font-weight:700;background:var(--surface)}
.prose td{color:var(--ink-muted)}
.prose code{background:var(--surface);border:1px solid var(--line);border-radius:6px;
  padding:1px 6px;font-size:.88em;color:var(--ink)}

/* callouts */
.note-box{border:1px solid var(--line);border-left:4px solid var(--gold);background:var(--surface);
  border-radius:10px;padding:16px 20px;margin:0 0 1.4rem}
.note-box p{margin:0;font-size:.94rem}
.note-box strong{display:block;margin-bottom:4px;color:var(--ink)}
.note-box.warn{border-left-color:#c0392b}
.note-box.warn strong{color:#96271b}

/* next / previous links at the foot of a documentation page */
.doc-foot{display:flex;flex-wrap:wrap;gap:14px;justify-content:space-between;
  border-top:1px solid var(--line);margin-top:44px;padding-top:22px;font-size:.94rem}
.doc-foot a{text-decoration:none;font-weight:600;color:var(--gold-2)}
.doc-foot a:hover{color:var(--ink)}

/* a compact list of links, used on the documentation index and support page */
.linkcard{display:block;background:var(--surface);border:1px solid var(--line);
  border-radius:var(--radius);padding:22px 24px;text-decoration:none;
  transition:box-shadow .16s ease,transform .16s ease}
.linkcard:hover{box-shadow:0 10px 30px rgba(16,24,40,.07);transform:translateY(-2px)}
.linkcard h3{margin-bottom:.3rem;color:var(--ink)}
.linkcard p{margin:0;color:var(--ink-muted);font-size:.94rem}
.linkcard .kicker{font-size:.72rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;
  color:var(--gold-2);display:block;margin-bottom:8px}

/* contact rows on the support page */
.contact{display:flex;align-items:center;gap:14px;background:var(--surface);
  border:1px solid var(--line);border-radius:12px;padding:16px 20px;margin-bottom:12px;
  text-decoration:none}
.contact:hover{box-shadow:0 8px 24px rgba(16,24,40,.07)}
.contact .ico{margin:0}
.contact div{min-width:0}
.contact b{display:block;color:var(--ink)}
.contact span{color:var(--ink-muted);font-size:.92rem;word-break:break-word}

/* Narrow screens: a table whose columns cannot shrink would otherwise widen the
   whole document and push the text off the right edge of a phone. */
.prose th,.prose td{overflow-wrap:anywhere}
@media(max-width:520px){
  .prose table{font-size:.86rem}
  .prose th,.prose td{padding:9px 8px}
}

/* Below ~520px the brand, the menu button and the call to action together are
   wider than the screen, and a flex row that cannot fit widens the whole
   document — every section then hangs off the right edge. The drawer already
   carries the same link, so drop the button rather than shrink it. */
@media(max-width:520px){
  .nav{gap:12px}
  .nav-cta{display:none}
  .nav-toggle{margin-left:auto}
}

/* On a phone the documentation contents would push the article a screen and a
   half down the page, so below the two-column breakpoint it becomes a wrapped
   row of chips instead of a tall list. */
@media(max-width:959px){
  .doc-nav ul{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:18px}
  .doc-nav a{border:1px solid var(--line);background:var(--surface);border-radius:999px;
    padding:7px 14px;font-size:.86rem}
  .doc-nav h4{margin-bottom:8px}
}

/* ===========================================================================
   Blog: an index of cards, and long-form articles that reuse .prose.
   =========================================================================== */
.post-list{display:grid;gap:20px;grid-template-columns:1fr}
@media(min-width:760px){.post-list{grid-template-columns:repeat(2,1fr)}}
.post-card{display:flex;flex-direction:column;background:var(--surface);border:1px solid var(--line);
  border-radius:var(--radius);padding:26px 26px 24px;text-decoration:none;
  transition:box-shadow .16s ease,transform .16s ease}
.post-card:hover{box-shadow:0 10px 30px rgba(16,24,40,.08);transform:translateY(-2px)}
.post-card h3{font-size:1.15rem;margin-bottom:.45rem;color:var(--ink)}
.post-card p{color:var(--ink-muted);font-size:.94rem;margin:0 0 16px}
.post-card .more{margin-top:auto;font-weight:600;color:var(--gold-2);font-size:.9rem}
.post-card.lead{grid-column:1/-1}
@media(min-width:760px){.post-card.lead h3{font-size:1.5rem}}

.post-meta{display:flex;flex-wrap:wrap;gap:8px 16px;font-size:.82rem;color:var(--ink-faint);
  margin:0 0 14px}
.post-meta .tag{color:var(--gold-2);font-weight:700;letter-spacing:.08em;text-transform:uppercase;
  font-size:.72rem}
.page-head .post-meta{color:#9fb0cb}
.page-head .post-meta .tag{color:var(--gold)}

/* the takeaway box that opens every article */
.takeaway{background:var(--gold-soft);border:1px solid #f0e2b8;border-radius:12px;
  padding:20px 24px;margin:0 0 28px}
.takeaway h2{font-size:.78rem!important;letter-spacing:.12em;text-transform:uppercase;
  color:var(--gold-2);margin:0 0 10px!important}
.takeaway ul{margin:0;padding-left:20px}
.takeaway li{color:var(--ink);font-size:.94rem}

/* a figure that is a source note rather than a caption */
.source{font-size:.82rem;color:var(--ink-faint);border-top:1px solid var(--line);
  padding-top:14px;margin-top:28px}
.source a{color:var(--ink-muted)}

/* what to read next, at the foot of an article */
.next-reads{border-top:1px solid var(--line);margin-top:44px;padding-top:28px}
.next-reads h2{font-size:1.05rem!important;margin:0 0 16px!important}
.next-reads .grid{gap:14px}

/* Hero: two real app screens rather than an icon, so the first thing a visitor
   sees is the product. They sit side by side and shrink together. */
.hero-shots{display:flex;gap:14px;justify-content:center;align-items:flex-start}
.hero-shots img{width:clamp(120px,38vw,186px);border-radius:16px;border:1px solid rgba(255,255,255,.18);
  box-shadow:0 18px 44px rgba(0,0,0,.42);background:#fff}
.hero-shots img:first-child{transform:rotate(-2deg)}
.hero-shots img:last-child{transform:rotate(2deg)}
@media (prefers-reduced-motion:reduce){.hero-shots img{transform:none!important}}
.hero-card .platforms{display:flex;justify-content:center;gap:10px 18px;flex-wrap:wrap;
  margin-top:22px;font-size:.85rem;color:#c9d4e6}
.hero-card .platforms b{color:var(--gold)}

/* the "available on both" line that sits under the hero actions */
.badges{display:flex;flex-wrap:wrap;gap:10px;margin-top:22px}
.badge-pill{display:inline-flex;align-items:center;gap:8px;border:1px solid rgba(255,255,255,.28);
  border-radius:999px;padding:8px 16px;font-size:.85rem;font-weight:600;color:#fff}
.badge-pill svg{width:16px;height:16px;stroke:var(--gold);fill:none;stroke-width:2;
  stroke-linecap:round;stroke-linejoin:round}
.badge-pill.on-light{border-color:var(--line);color:var(--ink);background:var(--surface)}
.badge-pill.on-light svg{stroke:var(--gold-2)}

/* A documentation-width column with no sidebar beside it — blog posts and the
   site map. Without this they inherit the two-column grid and land in the
   236px contents column. */
.doc.solo{grid-template-columns:minmax(0,1fr)}
@media(min-width:960px){
  .doc.solo{grid-template-columns:minmax(0,1fr);max-width:820px;margin-inline:auto}
}
