/* Title Drift — marketing site. Light, restrained, same tokens as the app. */
:root {
  --bg:        #ffffff;
  --bg-2:      #f7f8fa;
  --ink:       #0f172a;
  --ink-2:     #475569;
  --ink-3:     #94a3b8;
  --line:      #e2e8f0;
  --line-2:    #cbd5e1;
  --accent:    #2563eb;          /* one flat accent, used everywhere, no gradients */
  --accent-d:  #1a4fd0;
  --accent-bg: #eef4ff;
  /* radius scale, locked: containers 10, controls 8, pills 999 */
  --r-box:     10px;
  --r-ctl:     8px;
  --ok:        #047857;
  --ok-bg:     #ecfdf5;
  --err:       #b91c1c;
  --err-bg:    #fef2f2;
  /* shadows tinted to the page hue, never pure black */
  --shadow:    0 1px 2px rgba(30,41,59,.05), 0 1px 3px rgba(30,41,59,.07);
  --shadow-md: 0 10px 28px -12px rgba(30,41,59,.22);
}
* { box-sizing: border-box; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font: 16px/1.6 Geist, ui-sans-serif, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-d); }
h1, h2, h3 { letter-spacing: -.03em; margin: 0; font-weight: 600; }
p { margin: 0; }
.shell { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.mono { font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
        font-size: .92em; font-feature-settings: "tnum" 1; }

/* ---------------------------------------------------------------- header */
.nav { position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,.82);
       backdrop-filter: saturate(180%) blur(10px);
       border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s; }
.nav.stuck { border-bottom-color: var(--line); box-shadow: 0 1px 0 rgba(30,41,59,.03); }
.nav .shell { display: flex; align-items: center; gap: 30px; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--ink);
         font-size: 15.5px; letter-spacing: -.02em; }
.logomark { width: 28px; height: 28px; flex: none; }
.sitelinks { display: flex; gap: 4px; }
.sitelinks a { color: var(--ink-2); font-size: 14.5px; padding: 7px 11px; border-radius: var(--r-ctl); }
.sitelinks a:hover { color: var(--ink); background: var(--bg-2); }
.navcta { margin-left: auto; display: flex; align-items: center; gap: 9px; }
@media (max-width: 900px) { .sitelinks { display: none; } }
@media (max-width: 520px) { .navcta .btn.ghost { display: none; } }

/* ---------------------------------------------------------------- buttons */
.btn { display: inline-flex; align-items: center; justify-content: center;
  font-size: 14.5px; font-weight: 500; padding: 9px 17px; border-radius: var(--r-ctl);
  transition: background .15s, transform .06s;
  border: 1px solid var(--line-2); background: #fff; color: var(--ink); white-space: nowrap; }
.btn:hover { background: var(--bg-2); color: var(--ink); }
.btn.primary { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn.primary:hover { background: var(--accent-d); color: #fff; }
.btn:active { transform: translateY(1px); }
.btn.ghost { border-color: var(--line-2); }
.btn.block { display: block; width: 100%; margin-top: 20px; text-align: center;
             padding: 11px 18px; line-height: 1.2; }

/* ---------------------------------------------------------------- hero */
.hero { padding: 74px 0 78px; position: relative; overflow: hidden; }
.hero::before {                       /* faint grid, the texture of a spreadsheet */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(var(--line) 1px, transparent 1px),
                    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(120% 80% at 78% 22%, #000 0%, transparent 62%);
          mask-image: radial-gradient(120% 80% at 78% 22%, #000 0%, transparent 62%);
  opacity: .5;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr;
             gap: 60px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px;
           font-weight: 500; color: var(--ink-2); background: #fff;
           border: 1px solid var(--line); border-radius: 999px; padding: 5px 13px 5px 10px; }
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.hero h1 { font-size: 47px; line-height: 1.08; max-width: 15ch; margin-top: 20px;
           font-weight: 600; letter-spacing: -.035em; }
.hero .lede { margin-top: 20px; max-width: 52ch; font-size: 17px; color: var(--ink-2); }
.cta { display: flex; gap: 10px; margin-top: 28px; flex-wrap: wrap; }
.micro { font-size: 13.5px; color: var(--ink-3); margin-top: 15px; }
.micro.center { text-align: center; margin-top: 26px; }
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 38px; }
  .hero h1 { font-size: 38px; max-width: 20ch; }
}
@media (max-width: 700px) { .hero { padding: 44px 0 40px; } .hero h1 { font-size: 32px; } }

/* the signature: your text against the live page, cycling through languages */
.compare { margin: 0; background: #fff; border: 1px solid var(--line); align-self: start;
           border-radius: var(--r-box); box-shadow: var(--shadow-md); overflow: hidden; }
.compare-head { display: flex; align-items: center; gap: 10px; padding: 12px 16px;
                border-bottom: 1px solid var(--line); background: var(--bg-2); }
.compare-head .asin { font-size: 12.5px; color: var(--ink); font-weight: 500; }
.compare-head .market { font-size: 12.5px; color: var(--ink-3); }
.verdict { margin-left: auto; font-size: 12.5px; font-weight: 600; padding: 3px 10px;
           border-radius: 999px; background: var(--ok-bg); color: var(--ok); }
.verdict.no { background: var(--err-bg); color: var(--err); }
.compare-row { padding: 15px 16px; border-bottom: 1px solid var(--line); }
.compare-row .lbl { display: block; font-size: 11px; text-transform: uppercase;
                    letter-spacing: .06em; color: var(--ink-3); font-weight: 500; }
.compare-row .txt { margin-top: 7px; font-size: 15.5px; color: var(--ink); line-height: 1.45;
                    min-height: 2.9em; }
.compare.mismatch .txt.found { color: var(--err); }
.compare-foot { display: flex; align-items: center; gap: 12px; padding: 11px 16px;
                color: var(--ink-3); font-size: 12.5px; }
.ticker { margin-left: auto; display: flex; gap: 5px; }
.ticker i { width: 5px; height: 5px; border-radius: 50%; background: var(--line-2);
            transition: background .3s; }
.ticker i.on { background: var(--accent); }
.compare.swap .compare-row .txt, .compare.swap .compare-head > * { animation: fadeIn .45s ease both; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(3px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .compare.swap * { animation: none !important; } }

/* ---------------------------------------------------------------- strip */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
         background: var(--bg-2); }
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 26px 24px; }
.metrics div { display: flex; flex-direction: column; gap: 2px; }
.metrics b { font-size: 21px; font-weight: 650; letter-spacing: -.02em; }
.metrics span { font-size: 13.5px; color: var(--ink-2); }
@media (max-width: 760px) { .metrics { grid-template-columns: repeat(2, 1fr); } }

/* ---------------------------------------------------------------- sections */
.block { padding: 76px 0; }
.block.alt { background: var(--bg-2); border-top: 1px solid var(--line);
             border-bottom: 1px solid var(--line); }
.block h2 { font-size: 30px; }
.section-lede { margin-top: 12px; max-width: 62ch; color: var(--ink-2); }
@media (max-width: 700px) { .block { padding: 52px 0; } .block h2 { font-size: 25px; } }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 36px; }
.steps article { border-top: 2px solid var(--ink); padding-top: 18px; }
.steps .num { display: block; font-size: 13px; font-weight: 650; color: var(--ink-3);
              margin-bottom: 6px; }
.steps h3 { font-size: 17px; margin-bottom: 8px; }
.steps p { color: var(--ink-2); font-size: 15px; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; gap: 22px; } }

.two-col { display: grid; grid-template-columns: 1fr 1.05fr; gap: 52px; align-items: start; }
.two-col p { color: var(--ink-2); margin-top: 14px; }
@media (max-width: 940px) { .two-col { grid-template-columns: 1fr; gap: 34px; } }

.ticks { list-style: none; padding: 0; margin: 18px 0 0; }
.ticks li { position: relative; padding-left: 26px; margin-bottom: 9px; color: var(--ink-2);
            font-size: 15px; }
.ticks li::before { content: ""; position: absolute; left: 4px; top: 8px; width: 6px; height: 10px;
  border: solid var(--ok); border-width: 0 2px 2px 0; transform: rotate(45deg); }

/* result sheet illustration */
         box-shadow: var(--shadow); overflow: hidden; font-size: 13px; }
  padding: 11px 14px; align-items: center; }
  font-size: 11px; text-transform: uppercase; letter-spacing: .045em; color: var(--ink-3);
  font-weight: 600; }
@media (max-width: 620px) { .sheet-head, .sheet-row { grid-template-columns: 1fr 1fr; } }

/* Peer facts, not a hierarchy: grouped by rules and space rather than boxed. */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px 40px; margin-top: 36px; }
.cards article { border-top: 1px solid var(--line-2); padding-top: 16px; }
.cards h3 { font-size: 15.5px; margin-bottom: 7px; letter-spacing: -.02em; }
.cards p { color: var(--ink-2); font-size: 14.5px; }
@media (max-width: 940px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cards { grid-template-columns: 1fr; } }

.markets { display: grid; grid-template-columns: repeat(auto-fill, minmax(178px, 1fr));
           gap: 8px; margin-top: 30px; }
.m { display: grid; grid-template-columns: 18px 1fr; align-items: center; gap: 4px 9px;
     padding: 10px 13px; background: #fff; border: 1px solid var(--line); border-radius: 8px;
     min-width: 0; }
.m .amz { width: 18px; height: 9px; fill: #FF9900; grid-row: 1; }
.m b { font-size: 13.5px; font-weight: 600; grid-row: 1; }
.m b::before { content: "amazon"; color: var(--ink-3); font-weight: 500; }
.m small { grid-column: 2; grid-row: 2; font-size: 11.5px; color: var(--ink-3);
           line-height: 1.25; }

/* ---------------------------------------------------------------- pricing */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 38px;
         align-items: start; }
.plan { border: 1px solid var(--line); border-radius: var(--r-box); padding: 26px; background: #fff;
        position: relative; }
.plan.featured { border-color: var(--accent); box-shadow: 0 6px 22px -8px rgba(37,99,235,.28); }
.plan .tag { position: absolute; top: -11px; left: 26px; background: var(--accent); color: #fff;
  font-size: 11.5px; font-weight: 600; padding: 3px 10px; border-radius: 20px; }
.plan h3 { font-size: 19px; }
.plan-for { margin-top: 6px; color: var(--ink-2); font-size: 14px; min-height: 42px; }
.plan ul { list-style: none; padding: 0; margin: 20px 0 0; border-top: 1px solid var(--line);
           padding-top: 18px; }
.plan li { position: relative; padding-left: 24px; margin-bottom: 9px; font-size: 14.5px;
           color: var(--ink-2); }
.plan li::before { content: ""; position: absolute; left: 3px; top: 7px; width: 5px; height: 9px;
  border: solid var(--accent); border-width: 0 2px 2px 0; transform: rotate(45deg); }
@media (max-width: 940px) { .plans { grid-template-columns: 1fr; } .plan-for { min-height: 0; } }

/* ---------------------------------------------------------------- closing */
.closing { padding: 72px 0; border-top: 1px solid var(--line); background: var(--bg-2);
           text-align: center; }
.closing h2 { font-size: 26px; }
.closing p { margin: 10px 0 24px; color: var(--ink-2); }

footer { border-top: 1px solid var(--line); padding: 30px 0 42px; }
footer .shell { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
footer nav { display: flex; gap: 20px; }
footer nav a { font-size: 14px; color: var(--ink-2); }
footer .brand.small { font-size: 14px; }
footer .brand.small .logomark { width: 22px; height: 22px; }
footer .micro { margin: 0 0 0 auto; max-width: 46ch; text-align: right; }
@media (max-width: 820px) { footer .micro { margin: 6px 0 0; text-align: left; } }

/* step illustrations: the artefacts themselves, not decoration */
.steps article { border-top: 2px solid var(--ink); padding-top: 16px; }
.steps .num { display: block; font-family: "Geist Mono", ui-monospace, monospace;
              font-size: 12px; font-weight: 500; color: var(--ink-3); margin-bottom: 14px; }
           padding: 12px; margin-bottom: 16px; }
              align-items: center; font-size: 11.5px; }
            align-items: center; font-size: 12px; }
                 border: 1px solid var(--line); border-radius: 5px; padding: 1px 7px;
                 font-size: 11px; }
                  border-radius: 5px; padding: 2px 9px; font-size: 11.5px; justify-self: start; }

/* Real product screenshots. The page shows the actual tool, not a drawing of it. */
/* The hero shot bleeds past the shell so the real UI is legible instead of
   shrunk to a thumbnail; the comparison card sits under its lower-left corner. */
.heroshot { position: relative; }
.heroshot img { width: 132%; max-width: none; height: auto; display: block;
                border-radius: var(--r-box); border: 1px solid var(--line);
                box-shadow: var(--shadow-md); }
@media (max-width: 1240px) { .heroshot img { width: 118%; } }
@media (max-width: 980px)  { .heroshot img { width: 100%; } }

.shot { margin: 34px 0 0; }
.shot img { width: 100%; height: auto; display: block; border-radius: var(--r-box);
            border: 1px solid var(--line); box-shadow: var(--shadow-md); background: #fff; }
.shot figcaption { margin-top: 12px; font-size: 13.5px; color: var(--ink-3); max-width: 62ch; }
.steps article { border-top: 2px solid var(--ink); padding-top: 16px; }

/* ---------------------------------------------------------------- 404 / thanks */
.notfound { padding: 96px 24px 110px; max-width: 640px; }
.notfound .code { font-family: "Geist Mono", ui-monospace, monospace; font-size: 13px;
                  color: var(--ink-3); letter-spacing: .08em; }
.notfound .code.ok { color: var(--ok); }
.notfound h1 { font-size: 34px; margin-top: 12px; letter-spacing: -.03em; }
.notfound .lede { margin-top: 14px; color: var(--ink-2); font-size: 17px; }
.notfound .cta { margin-top: 26px; }

/* ---------------------------------------------------------------- forms */
.formpage { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(0,.75fr);
            gap: 56px; padding: 60px 24px 90px; align-items: start; }
.formpage h1 { font-size: 34px; letter-spacing: -.03em; }
.formpage .lede { margin-top: 12px; color: var(--ink-2); max-width: 54ch; }
.formpage form { margin-top: 26px; }
.formpage label.field { display: block; margin-bottom: 16px; }
.formpage label.field > span { display: block; font-size: 13.5px; font-weight: 500;
                               color: var(--ink); margin-bottom: 6px; }
.formpage input[type=text], .formpage input[type=email], .formpage textarea {
  width: 100%; padding: 10px 13px; font: inherit; font-size: 15px; color: var(--ink);
  background: #fff; border: 1px solid var(--line-2); border-radius: var(--r-ctl);
  transition: border-color .12s, box-shadow .12s; }
.formpage textarea { font-family: inherit; resize: vertical; }
.formpage input:focus, .formpage textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(37,99,235,.14); }
.formpage [aria-invalid=true] { border-color: var(--err); }
.formpage [aria-invalid=true]:focus { box-shadow: 0 0 0 3px rgba(185,28,28,.13); }
.fielderr { display: block; margin-top: 6px; font-style: normal; font-size: 13px;
            color: var(--err); }
.formpage .two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.formaside { border: 1px solid var(--line); border-radius: var(--r-box); padding: 24px;
             background: var(--bg-2); }
.formaside h2 { font-size: 15px; letter-spacing: -.02em; }
.plainlist { margin: 14px 0 0; padding-left: 18px; color: var(--ink-2); font-size: 14.5px; }
.plainlist li { margin-bottom: 8px; }
.divider { height: 1px; background: var(--line); margin: 22px 0; }
.formaside .btn.block { display: block; width: 100%; text-align: center; margin-top: 14px; }
.formaside p.sm { font-size: 14px; margin-top: 8px; }
.muted { color: var(--ink-2); }
@media (max-width: 900px) { .formpage { grid-template-columns: 1fr; gap: 32px; padding-top: 40px; }
                            .formpage .two { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------- doc pages */
.doc { max-width: 760px; margin: 0 auto; padding: 56px 24px 90px; }
.doc h1 { font-size: 34px; letter-spacing: -.03em; }
.doc h2 { font-size: 19px; margin-top: 38px; letter-spacing: -.02em; }
.doc p, .doc li { color: var(--ink-2); margin-top: 12px; }
.doc ul { padding-left: 20px; }
.doc table { width: 100%; border-collapse: collapse; margin-top: 18px; font-size: 14.5px; }
.doc th { text-align: left; font-size: 12px; text-transform: uppercase; letter-spacing: .04em;
          color: var(--ink-3); padding: 0 12px 8px 0; border-bottom: 1px solid var(--line); }
.doc td { padding: 11px 12px 11px 0; border-bottom: 1px solid var(--line);
          vertical-align: top; color: var(--ink-2); }
.doc td:first-child { color: var(--ink); font-weight: 500; white-space: nowrap; }
.doc .notice { padding: 12px 15px; border-radius: var(--r-ctl); font-size: 14.5px; }
.doc .notice.err { background: var(--err-bg); color: var(--err); border: 1px solid #FECACA; }

/* ---------------------------------------------------------------- mobile CTA bar */
.mobilecta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
  display: none; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.94); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line); }
.mobilecta .btn { flex: 1; justify-content: center; }
@media (max-width: 700px) {
  .mobilecta { display: flex; }
  body.has-mobilecta { padding-bottom: 72px; }
  .cookiebar { bottom: 78px; }
}

/* ---------------------------------------------------------------- button loading */
.btn[data-busy] { pointer-events: none; opacity: .72; }

/* ------------------------------------------------------------------- FAQ ---
   Plain <details> so the answers are in the HTML for crawlers and answer
   engines whether or not anyone clicks. */
.qalist { border-top: 1px solid var(--line); }
.qa { border-bottom: 1px solid var(--line); }
.qa > summary {
  list-style: none; cursor: pointer; padding: 17px 34px 17px 0; position: relative;
  font-size: 16px; font-weight: 560; color: var(--ink); line-height: 1.4;
}
.qa > summary::-webkit-details-marker { display: none; }
.qa > summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 9px; height: 9px;
  border-right: 2px solid var(--ink-3); border-bottom: 2px solid var(--ink-3);
  transform: translateY(-70%) rotate(45deg); transition: transform .18s ease;
}
.qa[open] > summary::after { transform: translateY(-30%) rotate(-135deg); }
.qa > summary:hover { color: var(--accent-d); }
.qa > summary:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px;
                              border-radius: 4px; }
.qa p { margin: 0 0 20px; padding-right: 34px; font-size: 15px; line-height: 1.62;
        color: var(--ink-2); }
@media (max-width: 640px) {
  .qa > summary { font-size: 15px; padding-right: 28px; }
  .qa p { font-size: 14.5px; padding-right: 0; }
}
.qawrap { max-width: 760px; margin: 0 auto; }
.qawrap h2 { margin-bottom: 18px; }
