/* Copyright (c) 2026 Romzally Enterprises. All rights reserved. */

/* One stylesheet for the whole site. Same-origin, no webfonts, no external
   requests of any kind -- a carrier compliance reviewer screenshots these pages
   with an automated fetcher, and anything that loads slowly or fails from a
   third party is a page that renders wrong at exactly the wrong moment. */

:root {
  --ink: #14181f;
  --body: #3c4553;
  --muted: #6b7684;
  --rule: #e2e6ec;
  --bg: #ffffff;
  --tint: #f6f8fb;
  --accent: #1f4f7a;
  --accent-soft: #e8f0f7;
  --gold: #b0791f;
  --on-accent: #ffffff;
}
@media (prefers-color-scheme: dark) {
  :root {
    --ink: #f0f3f7; --body: #c3cbd6; --muted: #8b95a3; --rule: #262c36;
    --bg: #12151a; --tint: #171b22; --accent: #7fb3e0; --accent-soft: #1a2733;
    --gold: #d9a441; --on-accent: #0d1116;
  }
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--body);
  line-height: 1.65;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 58rem; margin: 0 auto; padding: 0 1.5rem; }
.wrap.narrow { max-width: 44rem; }

h1, h2, h3 { color: var(--ink); line-height: 1.25; }
a { color: var(--accent); }
ul { padding-left: 1.25rem; }
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  background: rgba(127,127,127,.15); padding: .1rem .35rem; border-radius: 3px; font-size: .92em;
}

/* ---- site chrome ---- */

.topbar { border-bottom: 1px solid var(--rule); background: var(--bg); }
.topbar .wrap { display: flex; flex-wrap: wrap; align-items: baseline; gap: 1.25rem; padding-top: 1rem; padding-bottom: 1rem; }
.brand {
  font-weight: 800; letter-spacing: -.01em; color: var(--ink); text-decoration: none;
  font-size: 1.05rem; margin-right: auto;
}
.topbar nav a { font-size: .93rem; text-decoration: none; }
.topbar nav a:hover { text-decoration: underline; }
.topbar nav a + a { margin-left: 1.1rem; }

.pagehead { background: var(--tint); border-bottom: 1px solid var(--rule); padding: 2.75rem 0 2.25rem; }
.pagehead h1 { font-size: 1.8rem; margin: 0 0 .35rem; }
.pagehead .sub { color: var(--muted); margin: 0; }
.eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: .6rem;
}

main { padding: 2rem 0 3rem; }
main h2 { font-size: 1.2rem; margin: 2.4rem 0 .5rem; }
main h2:first-child { margin-top: 0; }
main h3 { font-size: 1rem; margin: 1.5rem 0 .35rem; }

footer {
  border-top: 1px solid var(--rule); padding: 2rem 0 3.5rem;
  font-size: .875rem; color: var(--muted);
}
footer a { color: inherit; }
footer nav a + a { margin-left: 1.1rem; }

/* ---- hero (home + product) ---- */

.hero { background: var(--tint); border-bottom: 1px solid var(--rule); padding: 4rem 0 3.5rem; }
.hero h1 { font-size: clamp(2rem, 5.5vw, 3rem); letter-spacing: -.02em; margin: 0 0 .6rem; }
.hero .tagline { font-size: clamp(1.05rem, 2.4vw, 1.35rem); color: var(--ink); max-width: 34rem; margin: 0 0 1rem; }
.hero .lede { max-width: 38rem; margin: 0 0 2rem; font-size: 1.03rem; }

.wordmark { font-size: clamp(2.5rem, 8vw, 4.25rem); font-weight: 800; letter-spacing: -.03em; margin: 0 0 .5rem; }

.badge {
  display: inline-block; font-size: .74rem; letter-spacing: .09em; text-transform: uppercase;
  font-weight: 700; color: var(--gold); border: 1px solid currentColor;
  border-radius: 100px; padding: .28rem .85rem; margin-bottom: 1.25rem;
}

.cta {
  display: inline-block; background: var(--accent); color: var(--on-accent);
  text-decoration: none; font-weight: 600; padding: .78rem 1.45rem; border-radius: 6px;
  margin-right: .75rem;
}
.cta:hover { filter: brightness(1.08); }
.cta.ghost { background: transparent; color: var(--accent); border: 1px solid var(--rule); }
.cta-note { display: inline-block; color: var(--muted); font-size: .9rem; }

/* ---- blocks ---- */

section.band { padding: 3.25rem 0; border-bottom: 1px solid var(--rule); }
section.band.soft { background: var(--accent-soft); }
section.band h2 { font-size: 1.45rem; margin: 0 0 .5rem; }
.section-lede { color: var(--muted); max-width: 38rem; margin: 0 0 2rem; }

.grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); }
.card { border: 1px solid var(--rule); border-radius: 8px; padding: 1.2rem 1.35rem; background: var(--bg); }
.card h3 { font-size: 1rem; margin: 0 0 .4rem; }
.card p { margin: 0; font-size: .94rem; }
.card .tag {
  display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .5rem;
}

.steps { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); }
.step { border-top: 3px solid var(--accent); padding-top: 1rem; }
.step .n { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.step h3 { font-size: 1.02rem; margin: .35rem 0 .4rem; }
.step p { margin: 0; font-size: .94rem; }

.stat-row { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr)); margin-top: 2.5rem; }
.stat .num { font-size: 2rem; font-weight: 800; color: var(--ink); line-height: 1.1; }
.stat .label { font-size: .9rem; color: var(--muted); }

.pills { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0; padding: 0; list-style: none; }
.pills li {
  border: 1px solid var(--rule); border-radius: 100px; padding: .35rem .9rem;
  font-size: .9rem; background: var(--tint); color: var(--ink);
}

.box { border: 1px solid var(--rule); border-radius: 8px; padding: 1.1rem 1.35rem; margin: 1.5rem 0; background: var(--tint); }
.box.legal { border: 2px solid #b34; background: transparent; }
.fine { font-size: .86rem; color: var(--muted); }
.fmt { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .88rem; }

/* ---- consent form ----
   The styling here is ordinary. The MARKUP is not: see the comment at the top
   of signup.html before changing anything about the checkbox. */

form.consent-form { border: 1px solid var(--rule); border-radius: 8px; padding: 1.5rem; margin: 1.5rem 0; }
form.consent-form label { display: block; font-weight: 600; color: var(--ink); margin-bottom: .3rem; font-size: .95rem; }
form.consent-form input[type=text],
form.consent-form input[type=email],
form.consent-form input[type=tel] {
  width: 100%; padding: .6rem .7rem; font-size: 1rem; border: 1px solid var(--rule);
  border-radius: 5px; background: var(--bg); color: var(--body); margin-bottom: 1.1rem;
}
.consent-row {
  display: flex; gap: .75rem; align-items: flex-start; background: var(--tint);
  border: 1px solid var(--rule); border-radius: 6px; padding: 1rem; margin: 1.25rem 0;
}
.consent-row input { margin-top: .35rem; flex: 0 0 auto; width: 1.1rem; height: 1.1rem; }
.consent-row label { font-weight: 400; font-size: .9rem; margin: 0; color: var(--body); }
button {
  background: var(--accent); color: var(--on-accent); border: 0; font-weight: 600;
  font-size: 1rem; padding: .75rem 1.5rem; border-radius: 6px; cursor: pointer;
}
button:hover { filter: brightness(1.08); }
