:root {
  --ink: #111111;
  --ink-2: #1b1b1b;
  --paper: #ffffff;
  --paper-2: #f6f6f4;
  --text: #1a1a1a;
  --muted: #5f6368;
  --line: #e6e6e3;
  --yellow: #FFF9AE; --orange: #F15D22; --red: #D0232B; --blue: #00AEEF; --green: #00A94F;
  --radius: 16px;
  --max: 1080px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; color: var(--text); background: var(--paper);
  font: 17px/1.55 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
/* height:auto is load-bearing: every img carries width/height attributes so
   the browser can reserve space, and without this the attribute height wins
   over the CSS width and the image renders stretched. */
img { max-width: 100%; display: block; height: auto; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
h1, h2, h3 { line-height: 1.15; margin: 0 0 12px; letter-spacing: -0.01em; }
h1 { font-size: clamp(38px, 6vw, 64px); font-weight: 800; }
h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 750; }
h3 { font-size: 19px; font-weight: 650; }
p { margin: 0 0 14px; }
.muted { color: var(--muted); }
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 700; color: var(--orange); margin-bottom: 14px; }

/* nav */
.nav { position: sticky; top: 0; z-index: 10; background: rgba(17,17,17,.86); backdrop-filter: blur(10px); color: #fff; }
.nav .wrap { display: flex; align-items: center; gap: 22px; height: 60px; }
.nav .brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: .12em; text-decoration: none; }
.nav .brand img { width: 28px; height: 28px; }
.nav nav { margin-left: auto; display: flex; gap: 18px; font-size: 15px; }
.nav nav a { text-decoration: none; opacity: .85; }
.nav nav a:hover { opacity: 1; }
.nav .menu-btn { display: none; margin-left: auto; width: 44px; height: 44px; border: 0; background: none; color: #fff; cursor: pointer; border-radius: 10px; }
.nav .menu-btn:hover { background: rgba(255,255,255,.08); }
.nav .menu-btn svg { width: 24px; height: 24px; }
.nav .menu-btn .close, .nav .menu-btn[aria-expanded="true"] .open { display: none; }
.nav .menu-btn[aria-expanded="true"] .close { display: block; }

/* hero */
.hero { background: var(--ink); color: #fff; padding: 72px 0 0; overflow: hidden; }
.hero .wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: end; }
.hero .copy { padding-bottom: 72px; }
.hero .lede { font-size: 21px; color: rgba(255,255,255,.72); max-width: 520px; }
.hero .brandline { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.hero .brandline img { width: 72px; height: 72px; }
.hero .brandline .name { font-weight: 800; letter-spacing: .18em; font-size: 22px; }
.hero .brandline .sub { color: rgba(255,255,255,.6); font-size: 15px; }
.badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.badge { display: inline-flex; align-items: center; gap: 10px; border: 1px solid rgba(255,255,255,.25); border-radius: 12px; padding: 10px 16px; text-decoration: none; color: #fff; background: rgba(255,255,255,.04); }
.badge small { display: block; font-size: 11px; opacity: .7; letter-spacing: .04em; }
.badge b { display: block; font-size: 16px; }
.badge.soon { opacity: .55; pointer-events: none; }
.phone { width: min(320px, 80%); margin: 0 auto; border-radius: 36px; border: 6px solid #2a2a2a; background: #000; box-shadow: 0 30px 80px rgba(0,0,0,.6); overflow: hidden; transform: translateY(24px); }
.phone img { width: 100%; }

/* proof */
.proof { background: var(--ink-2); color: #fff; padding: 34px 0; border-top: 1px solid #242424; }
.proof .wrap { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: center; }
.proof p { margin: 0; color: rgba(255,255,255,.7); font-size: 15px; }
.logos { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.logos img { width: 44px; height: 44px; border-radius: 11px; background: #fff; }

/* sections */
section.block { padding: 88px 0; }
section.alt { background: var(--paper-2); }
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.shot { text-align: center; }
.shot .phone { transform: none; width: min(280px, 100%); border-width: 5px; box-shadow: 0 20px 50px rgba(0,0,0,.18); }
.shot h3 { margin-top: 20px; }
.tile { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.tile .dot { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 14px; color: #fff; font-size: 20px; }
.tile p { margin: 0; color: var(--muted); font-size: 15px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.code { background: var(--ink); color: #eee; border-radius: 12px; padding: 18px 20px; font: 14px/1.6 ui-monospace, SFMono-Regular, Menlo, monospace; overflow-x: auto; white-space: pre; }
.btn { display: inline-block; padding: 12px 20px; border-radius: 12px; text-decoration: none; font-weight: 650; background: var(--ink); color: #fff; }
.btn.light { background: #fff; color: var(--ink); }
.btn.ghost { background: transparent; border: 1px solid var(--line); color: var(--text); }
ul.checks { list-style: none; padding: 0; margin: 0 0 20px; }
ul.checks li { padding-left: 28px; position: relative; margin-bottom: 8px; }
ul.checks li::before { content: ""; position: absolute; left: 0; top: 9px; width: 14px; height: 14px; border-radius: 50%; background: var(--green); }

/* cta */
.cta { background: linear-gradient(135deg, #D0232B 0%, #F15D22 100%); color: #fff; padding: 88px 0; }
.cta h2 { color: #fff; }
.cta p { color: rgba(255,255,255,.88); max-width: 620px; }
.cta .btn.light { margin-top: 10px; }

/* footer */
footer { background: var(--ink); color: rgba(255,255,255,.72); padding: 44px 0; font-size: 14px; }
footer .wrap { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; align-items: center; }
footer nav { display: flex; gap: 18px; flex-wrap: wrap; }
footer a { color: #fff; text-decoration: none; }
footer .legal { width: 100%; color: rgba(255,255,255,.5); }

/* docs */
.doc { max-width: 760px; margin: 0 auto; padding: 64px 24px 96px; }
.doc h1 { font-size: 40px; }
.doc h2 { font-size: 24px; margin-top: 40px; }
.doc .updated { color: var(--muted); font-size: 14px; }

@media (max-width: 860px) {
  .hero .wrap, .grid3, .grid2, .split { grid-template-columns: 1fr; }
  .hero { padding-top: 44px; }
  .hero .copy { padding-bottom: 28px; }
  .hero .lede { font-size: 18px; }
  .phone { width: min(280px, 78%); }
  section.block { padding: 56px 0; }
  .cta { padding: 56px 0; }
  .proof .wrap { gap: 14px; }
  /* Navigation collapses into a menu button; the panel drops below the bar. */
  .nav .wrap { position: relative; }
  .nav .menu-btn { display: grid; place-items: center; }
  .nav nav { display: none; position: absolute; left: 0; right: 0; top: 60px; margin: 0; padding: 6px 0 10px; flex-direction: column; gap: 0; background: #111; border-bottom: 1px solid #2a2a2a; }
  .nav nav.open { display: flex; }
  .nav nav a { padding: 12px 24px; font-size: 17px; opacity: 1; }
  .nav nav a.hide-m { display: block; }
}

/* ---- forums directory ---- */
.dirhead { background: var(--ink); color: #fff; padding: 40px 0 32px; }
.dirhead h1 { font-size: clamp(30px, 4.5vw, 46px); margin-bottom: 10px; }
.dirhead .lede { color: rgba(255,255,255,.7); max-width: 640px; font-size: 17px; }
.crumbs { font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 14px; }
.crumbs a { color: rgba(255,255,255,.8); text-decoration: none; }
.crumbs span { margin: 0 6px; }
.filters { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
.filters input, .filters select {
  font: inherit; font-size: 16px; padding: 11px 14px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.06); color: #fff;
}
.filters input { flex: 1 1 280px; }
.filters input::placeholder { color: rgba(255,255,255,.45); }
.filters select option { color: #111; }
.dirhead .result { margin: 12px 0 0; font-size: 14px; color: rgba(255,255,255,.6); min-height: 20px; }
.dir { padding: 40px 24px 72px; }
.cat { margin-bottom: 44px; scroll-margin-top: 72px; }
.cat h2 { display: flex; align-items: center; gap: 12px; font-size: 24px; margin-bottom: 18px; }
.cat h2 .emoji { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; font-size: 20px; }
.cat h2 .count { font-size: 14px; font-weight: 500; color: var(--muted); background: var(--paper-2); padding: 3px 10px; border-radius: 20px; }
ul.forums { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 10px; }
ul.forums li { min-width: 0; }
ul.forums a {
  display: flex; gap: 12px; align-items: flex-start; text-decoration: none;
  border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; height: 100%; min-width: 0;
  background: #fff; transition: border-color .15s, transform .15s;
}
ul.forums a:hover { border-color: #c9c9c4; transform: translateY(-1px); }
ul.forums img, ul.forums .noicon {
  width: 40px; height: 40px; border-radius: 10px; flex: none; background: var(--paper-2); object-fit: cover;
}
ul.forums .noicon { display: grid; place-items: center; font-weight: 700; color: var(--muted); }
ul.forums .body { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
ul.forums b { font-size: 15.5px; font-weight: 650; line-height: 1.3; overflow-wrap: anywhere; }
ul.forums .host { font-size: 12.5px; color: var(--orange); word-break: break-all; }
ul.forums .desc { font-size: 13.5px; color: var(--muted); line-height: 1.4; margin-top: 3px; overflow-wrap: anywhere; }
ul.forums .stats { font-size: 12px; color: #8a8d91; margin-top: 4px; }
.empty { text-align: center; color: var(--muted); padding: 40px 0; }
@media (max-width: 860px) {
  .dir { padding: 28px 20px 56px; }
  footer .wrap { gap: 14px; }
  footer nav { gap: 14px; row-gap: 8px; }
  ul.forums { grid-template-columns: 1fr; }
  .cat { margin-bottom: 32px; }
}
.doc-crumbs { color: var(--muted); margin-bottom: 18px; }
.doc-crumbs a { color: var(--orange); text-decoration: none; }

/* ---- FAQ ---- */
.lede-doc { font-size: 18px; color: var(--muted); margin-bottom: 30px; }
details.qa { border-bottom: 1px solid var(--line); padding: 4px 0; }
details.qa summary { list-style: none; cursor: pointer; display: flex; align-items: flex-start; gap: 12px; padding: 16px 0; }
details.qa summary::-webkit-details-marker { display: none; }
details.qa summary::after {
  content: ""; margin-left: auto; flex: none; width: 10px; height: 10px; margin-top: 7px;
  border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted);
  transform: rotate(45deg); transition: transform .18s;
}
details.qa[open] summary::after { transform: rotate(-135deg); }
details.qa summary h2 { font-size: 18px; font-weight: 650; margin: 0; }
details.qa summary:hover h2 { color: var(--orange); }
details.qa > p { margin: 0 0 18px; color: var(--muted); max-width: 68ch; }
.doc h2.more { margin-top: 44px; }
