/* PhonePick marketing site. Shared by index, about, privacy and terms.
   The app pages get their shell from auth-guard.js instead. */

:root{color-scheme:light;
  --ink:#141719; --muted:#5f6b76; --line:#e2e6ea; --bg:#fff; --soft:#f7f9fb;
  --brand:#2563eb; --brand-ink:#1d4ed8;
  --wrap:1080px; --radius:12px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;background:var(--bg);color:var(--ink);
  font:16px/1.6 -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  -webkit-font-smoothing:antialiased}
.wrap{max-width:var(--wrap);margin:0 auto;padding:0 22px}
a{color:var(--brand)}

/* header */
header{border-bottom:1px solid var(--line);position:sticky;top:0;background:var(--bg);z-index:5}
header .wrap{display:flex;align-items:center;gap:22px;height:62px}
.brand{display:flex;align-items:center;gap:9px;font-weight:650;font-size:17px;
  color:var(--ink);text-decoration:none;margin-right:auto}
.bell{width:26px;height:26px;display:block;flex:none}
header nav{display:flex;gap:20px;align-items:center}
header nav a{color:var(--muted);text-decoration:none;font-size:14.5px;font-weight:500}
header nav a:hover{color:var(--ink)}
.btn{display:inline-block;background:var(--brand);color:#fff!important;text-decoration:none;
  padding:9px 17px;border-radius:9px;font-weight:600;font-size:14.5px;border:0;cursor:pointer}
.btn:hover{background:var(--brand-ink)}
.btn.ghost{background:none;color:var(--ink)!important;border:1px solid var(--line)}

/* type */
h1{font-size:clamp(30px,4.6vw,46px);line-height:1.12;letter-spacing:-.022em;margin:0 0 16px}
h2{font-size:clamp(21px,2.6vw,28px);line-height:1.2;letter-spacing:-.015em;margin:0 0 14px}
h3{font-size:17px;margin:0 0 7px;letter-spacing:-.006em}
p{margin:0 0 15px}
.lede{font-size:clamp(16.5px,1.9vw,19px);color:var(--muted);max-width:38em}
.eyebrow{font-size:12.5px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;
  color:var(--brand);margin:0 0 12px}
section{padding:64px 0;border-top:1px solid var(--line)}
section:first-of-type{border-top:0}
.soft{background:var(--soft)}

/* hero */
.hero{padding:76px 0 68px}
.hero .cta{display:flex;gap:11px;flex-wrap:wrap;margin-top:26px}
.hero .fine{margin-top:14px;font-size:13.5px;color:var(--muted)}

/* grids */
.grid{display:grid;gap:22px}
.g2{grid-template-columns:repeat(2,1fr)}
.g3{grid-template-columns:repeat(3,1fr)}
.card{border:1px solid var(--line);border-radius:var(--radius);padding:22px;background:var(--bg)}
.card p{margin:0;color:var(--muted);font-size:15px}
.num{width:26px;height:26px;border-radius:7px;background:var(--soft);color:var(--brand);
  display:grid;place-items:center;font-size:13px;font-weight:700;margin-bottom:12px}

/* pricing */
.plans{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:26px}
.plan{border:1px solid var(--line);border-radius:var(--radius);padding:24px;display:flex;flex-direction:column}
.plan.best{border-color:var(--brand);box-shadow:0 0 0 1px var(--brand)}
.plan .tag{font-size:12px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:var(--brand);margin-bottom:8px}
.plan .price{font-size:34px;font-weight:680;letter-spacing:-.02em}
.plan .per{font-size:14px;color:var(--muted);font-weight:400}
.plan ul{list-style:none;padding:0;margin:16px 0 20px;font-size:15px}
.plan li{padding:5px 0 5px 22px;position:relative;color:var(--muted)}
.plan li::before{content:"";position:absolute;left:2px;top:12px;width:9px;height:9px;
  border-radius:50%;background:color-mix(in srgb,var(--brand) 25%,transparent)}
.plan .btn{margin-top:auto;text-align:center}
.cur{display:inline-flex;border:1px solid var(--line);border-radius:9px;overflow:hidden;margin-left:12px;vertical-align:middle}
.cur button{background:none;border:0;padding:5px 12px;font:inherit;font-size:13px;color:var(--muted);cursor:pointer}
.cur button[aria-pressed="true"]{background:var(--brand);color:#fff}

/* prose (about, legal) */
.prose{max-width:44em}
.prose h2{margin-top:38px}
.prose h3{margin-top:26px}
.prose ul{padding-left:20px}
.prose li{margin-bottom:7px}
.prose table{width:100%;border-collapse:collapse;margin:18px 0;font-size:15px}
.prose th,.prose td{text-align:left;padding:9px 10px;border-bottom:1px solid var(--line);vertical-align:top}
.prose th{font-weight:650}
.updated{font-size:13.5px;color:var(--muted)}

/* footer */
footer{border-top:1px solid var(--line);padding:36px 0 44px;font-size:14px;color:var(--muted)}
footer .cols{display:flex;gap:44px;flex-wrap:wrap;margin-bottom:22px}
footer a{color:var(--muted);text-decoration:none;display:block;margin-bottom:7px}
footer a:hover{color:var(--ink)}
footer strong{display:block;color:var(--ink);font-size:13px;margin-bottom:9px}

@media (max-width:820px){
  .g2,.g3,.plans{grid-template-columns:1fr}
  header nav a:not(.btn){display:none}
  section{padding:48px 0}
  .hero{padding:52px 0 44px}
}

/* ============================ product mockups ============================
   Allo's site works because every section SHOWS the product instead of
   describing it. These are the pieces that let a marketing page do that: a
   panel that reads as interface, message bubbles, and small data rows.

   Everything shown in them is real product output — the SMS copy is the exact
   text functions/sms.js sends. A mockup that says something the product cannot
   say is a lie with a rounded border. */

.split{display:grid;grid-template-columns:1.02fr .98fr;gap:52px;align-items:center}
.panel{border:1px solid var(--line);border-radius:14px;background:var(--bg);
  box-shadow:0 1px 2px rgba(16,24,40,.04),0 12px 36px -12px rgba(16,24,40,.14);overflow:hidden}
.panel-bar{display:flex;align-items:center;gap:9px;padding:11px 14px;border-bottom:1px solid var(--line);
  background:var(--soft);font-size:13px;font-weight:600}
.panel-bar .live{margin-left:auto;font-weight:600;font-size:11.5px;letter-spacing:.04em;
  text-transform:uppercase;color:#0f7b3e;display:flex;align-items:center;gap:6px}
.panel-bar .live::before{content:"";width:7px;height:7px;border-radius:50%;background:#12a150}
.panel-body{padding:16px}
.panel .meta{font-size:12.5px;color:var(--muted)}

.tr{display:flex;gap:9px;margin-bottom:11px;font-size:14px;line-height:1.45}
.tr .w{flex:none;width:62px;font-size:11.5px;font-weight:700;letter-spacing:.03em;
  text-transform:uppercase;color:var(--muted);padding-top:3px}
.tr.ai .t{background:color-mix(in srgb,var(--brand) 9%,transparent);color:var(--ink)}
.tr .t{background:var(--soft);border-radius:10px;padding:8px 11px}

.rows{display:flex;flex-direction:column;gap:0}
.rows .r{display:flex;gap:10px;padding:10px 0;border-bottom:1px solid var(--line);font-size:14px}
.rows .r:last-child{border-bottom:0}
.rows .k{flex:none;width:96px;color:var(--muted);font-size:13px}
.rows .v{font-weight:500}

.pill{display:inline-block;background:color-mix(in srgb,var(--brand) 11%,transparent);
  color:var(--brand);border-radius:999px;padding:4px 11px;font-size:12.5px;font-weight:650;margin:0 6px 6px 0}
.chip{display:inline-block;border:1px solid var(--line);border-radius:8px;padding:5px 10px;
  font-size:12.5px;color:var(--muted);margin:0 6px 6px 0;background:var(--bg)}

.phone{max-width:290px;margin:0 auto;border:1px solid var(--line);border-radius:22px;
  padding:14px 12px 18px;background:var(--bg)}
.phone .top{text-align:center;font-size:12.5px;color:var(--muted);
  padding-bottom:11px;margin-bottom:12px;border-bottom:1px solid var(--line)}
.msg{max-width:86%;padding:9px 12px;border-radius:14px;font-size:13.5px;line-height:1.45;
  margin-bottom:8px;white-space:pre-wrap}
.msg.them{background:var(--soft);border-bottom-left-radius:4px}
.msg.us{background:var(--brand);color:#fff;margin-left:auto;border-bottom-right-radius:4px}
.msg + .stamp{font-size:11px;color:var(--muted);margin:-4px 0 10px}
.stamp.r{text-align:right}

.card.vis{padding:0;overflow:hidden;display:flex;flex-direction:column}
.card.vis .vis-top{padding:20px 22px 0}
.card.vis .vis-art{padding:14px 22px 20px;margin-top:auto}

.hero-wrap{background:
  radial-gradient(1100px 380px at 12% -8%, color-mix(in srgb,var(--brand) 11%,transparent), transparent 70%),
  radial-gradient(760px 300px at 92% 0%, color-mix(in srgb,var(--brand) 7%,transparent), transparent 65%)}

@media (max-width:900px){
  .split{grid-template-columns:1fr;gap:34px}
}

/* ============================ the demo player ===========================
   A real play button, because browsers block autoplay with sound and an
   autoplaying phone call would be hostile anyway. The transcript sits beside
   it and is always visible: most visitors never press play, and the transcript
   is the part that gets indexed. */
.player{border:1px solid var(--line);border-radius:14px;background:var(--card);padding:18px;
  box-shadow:0 1px 2px rgba(16,24,40,.04),0 12px 36px -12px rgba(16,24,40,.14)}
.player .head{display:flex;align-items:center;gap:11px;margin-bottom:14px}
.player .head b{font-size:14.5px}
.player .head .meta{margin-left:auto;font-size:12.5px;color:var(--muted);font-variant-numeric:tabular-nums}
.pbtn{width:52px;height:52px;border-radius:50%;border:0;background:var(--brand);color:#fff;
  cursor:pointer;display:grid;place-items:center;flex:none}
.pbtn:hover{background:var(--brand-ink)}
.pbtn svg{width:20px;height:20px;fill:currentColor}
.pline{display:flex;align-items:center;gap:14px}
.pbar{flex:1;height:6px;border-radius:3px;background:var(--line);position:relative;cursor:pointer}
.pbar .fill{position:absolute;inset:0 auto 0 0;width:0;border-radius:3px;background:var(--brand)}
.pbar .knob{position:absolute;top:50%;width:13px;height:13px;border-radius:50%;background:var(--brand);
  transform:translate(-50%,-50%);left:0;box-shadow:0 1px 3px rgba(0,0,0,.25)}
.ptime{font-size:12.5px;color:var(--muted);font-variant-numeric:tabular-nums;flex:none;min-width:82px;text-align:right}
.pnote{margin:13px 0 0;font-size:12.5px;color:var(--muted);line-height:1.5}

.script{border:1px solid var(--line);border-radius:14px;background:var(--card);overflow:hidden}
.script .bar{padding:11px 16px;border-bottom:1px solid var(--line);background:var(--soft);
  font-size:13px;font-weight:600}
.script .body{padding:14px 16px;max-height:430px;overflow-y:auto}
.script .line{display:flex;gap:10px;margin-bottom:10px;font-size:14px;line-height:1.5}
.script .line .who{flex:none;width:56px;font-size:11px;font-weight:700;letter-spacing:.04em;
  text-transform:uppercase;color:var(--muted);padding-top:3px}
.script .line.ai .who{color:var(--brand)}
.script .line .said{background:var(--soft);border-radius:10px;padding:8px 11px;flex:1}
.script .line.ai .said{background:color-mix(in srgb,var(--brand) 9%,transparent)}

/* ===========================================================================
   Sales sections added 10 Sep 2026 — the calculator, the comparison and the
   product tour. Everything here uses the visitor's OWN numbers or shows the
   real interface; there are no invented customers, counts or endorsements on
   this site and there must not be.
   =========================================================================== */

.calc{display:grid;grid-template-columns:1fr 1fr;gap:28px;align-items:center}
@media (max-width:820px){.calc{grid-template-columns:1fr;gap:22px}}
.calc .in label{display:block;font-size:13.5px;color:var(--muted);margin:16px 0 6px}
.calc .in label:first-child{margin-top:0}
.calc .in input[type=range]{width:100%;accent-color:var(--brand)}
.calc .in .val{font-weight:680;color:var(--ink);font-variant-numeric:tabular-nums}
.calc .in .row{display:flex;justify-content:space-between;align-items:baseline;gap:10px}
.calc .out{border:1px solid var(--line);border-radius:14px;background:var(--card);padding:26px 24px;text-align:center}
.calc .out .k{font-size:13px;color:var(--muted)}
.calc .out .big{font-size:46px;font-weight:700;letter-spacing:-.03em;line-height:1.05;margin:6px 0 2px;
  font-variant-numeric:tabular-nums;color:var(--brand)}
@media (max-width:520px){.calc .out .big{font-size:36px}}
.calc .out .per{font-size:13.5px;color:var(--muted)}
.calc .out hr{border:0;border-top:1px solid var(--line);margin:20px 0}
.calc .out .line{display:flex;justify-content:space-between;font-size:13.5px;padding:5px 0;text-align:left}
.calc .out .line b{font-variant-numeric:tabular-nums}
.calc .out .net{font-size:15px;font-weight:680}
.calc .note{font-size:12.5px;color:var(--muted);margin-top:16px;line-height:1.6}

.cmp{width:100%;border-collapse:collapse;font-size:14.5px;margin-top:6px}
.cmp th,.cmp td{padding:13px 12px;text-align:left;border-bottom:1px solid var(--line);vertical-align:top}
.cmp thead th{font-size:12px;letter-spacing:.05em;text-transform:uppercase;color:var(--muted);
  border-bottom:1px solid var(--line);white-space:nowrap}
.cmp tbody th{font-weight:600;color:var(--ink)}
.cmp td.us{background:color-mix(in srgb,var(--brand) 7%,transparent);font-weight:600}
.cmp thead th.us{background:color-mix(in srgb,var(--brand) 12%,transparent);color:var(--brand);
  border-radius:9px 9px 0 0}
.cmp .no{color:var(--muted)}
.cmp-scroll{overflow-x:auto}

.tour{display:grid;grid-template-columns:repeat(2,1fr);gap:18px;margin-top:8px}
@media (max-width:820px){.tour{grid-template-columns:1fr}}
.tour .t{border:1px solid var(--line);border-radius:14px;background:var(--card);overflow:hidden;
  display:flex;flex-direction:column}
.tour .t h3{margin:0;padding:16px 18px 4px;font-size:16px;letter-spacing:-.01em}
.tour .t p{margin:0;padding:0 18px 14px;font-size:13.5px;color:var(--muted);line-height:1.55}
.tour .shot{border-top:1px solid var(--line);background:var(--bg);padding:14px;margin-top:auto}
.tour .win{background:#fff;border:1px solid var(--line);border-radius:9px;overflow:hidden;
  font-size:11.5px;color:#141719}
.tour .win .hd{padding:7px 10px;border-bottom:1px solid var(--line);font-weight:700;font-size:10.5px;
  letter-spacing:.05em;text-transform:uppercase;color:#5f6b76;background:#f7f9fb}
.tour .win .bd{padding:10px}
.tour .tiles4{display:grid;grid-template-columns:repeat(4,1fr);gap:6px}
.tour .tiles4 div{background:#f7f9fb;border-radius:6px;padding:7px 6px;text-align:center}
.tour .tiles4 b{display:block;font-size:16px;letter-spacing:-.02em}
.tour .tiles4 span{font-size:9.5px;color:#5f6b76}
.tour .lrow{display:flex;gap:8px;align-items:baseline;padding:6px 0;border-top:1px solid #e2e6ea}
.tour .lrow:first-child{border-top:0}
.tour .lrow b{font-weight:650}
.tour .lrow span{color:#5f6b76;font-size:11px}
.tour .lrow .tag{margin-left:auto;font-size:9px;font-weight:700;text-transform:uppercase;
  letter-spacing:.04em;padding:2px 6px;border-radius:99px;background:#e8f0fe;color:#2563eb}
.tour .cols7{display:grid;grid-template-columns:repeat(7,1fr);gap:2px}
.tour .cols7 i{display:block;background:#e8f0fe;border-radius:2px}
.tour .cols7 i.on{background:#2563eb}
.tour .bars3 div{display:flex;align-items:center;gap:7px;padding:3px 0}
.tour .bars3 i{display:block;height:9px;background:#2563eb;border-radius:3px}
.tour .bars3 span{color:#5f6b76;width:64px;flex:none}

.close-cta{text-align:center;padding:8px 0 4px}
.close-cta h2{margin:0 0 8px}
.close-cta .lede{margin:0 auto 20px;max-width:36em}
.close-cta .cta{justify-content:center}

/* Per-trade FAQ on the landing pages. */
.faq details{border-bottom:1px solid var(--line);padding:15px 0}
.faq details:first-of-type{border-top:1px solid var(--line);margin-top:18px}
.faq summary{cursor:pointer;font-weight:650;font-size:16.5px;list-style:none;
  display:flex;align-items:flex-start;gap:10px;line-height:1.45}
.faq summary::-webkit-details-marker{display:none}
.faq summary::before{content:"+";flex:none;font-weight:400;color:var(--brand);font-size:20px;line-height:1.2}
.faq details[open] summary::before{content:"\2212"}
.faq details p{margin:10px 0 0 28px;line-height:1.65;color:var(--muted);max-width:62ch}
