/* BypassGPT site — no deps, system fonts, light/dark */
:root {
  --blue: #3E5BA9; --blue-dark: #2e4480; --ink: #1a2033; --muted: #5a6378;
  --bg: #ffffff; --bg-soft: #f4f6fb; --card: #ffffff; --border: #e3e7f0;
  --green: #34a853; --radius: 14px;
}
@media (prefers-color-scheme: dark) {
  :root { --ink: #eef1f8; --muted: #a3abc0; --bg: #0e1220; --bg-soft: #171c2e;
          --card: #1a2033; --border: #2a3149; --blue: #6f8ce0; --blue-dark: #8ba3ec; }
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font: 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
       color: var(--ink); background: var(--bg); -webkit-font-smoothing: antialiased; }
.wrap { max-width: 1060px; margin: 0 auto; padding: 0 22px; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

header.site { position: sticky; top: 0; background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); z-index: 10; }
header.site .wrap { display: flex; align-items: center; gap: 12px; padding-top: 10px; padding-bottom: 10px; }
header.site img { width: 34px; height: 34px; border-radius: 8px; }
header.site .name { font-weight: 700; }
header.site nav { margin-left: auto; display: flex; gap: 18px; font-size: 15px;
  align-items: center; white-space: nowrap; }
@media (max-width: 620px) {
  header.site nav { gap: 12px; font-size: 14px; }
  header.site nav a:not(.btn) { display: none; }
}

.btn { display: inline-block; background: var(--blue); color: #fff !important; font-weight: 650;
  padding: 13px 26px; border-radius: 12px; text-decoration: none !important; }
.btn:hover { background: var(--blue-dark); }
.btn.small { padding: 8px 16px; font-size: 15px; border-radius: 9px; }

.hero { padding: 72px 0 56px; background: linear-gradient(180deg, var(--bg-soft), var(--bg)); }
.hero .wrap { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero img.appicon { width: 76px; height: 76px; border-radius: 18px; box-shadow: 0 8px 28px rgba(0,0,0,.15); }
.hero h1 { font-size: 44px; line-height: 1.12; letter-spacing: -.5px; margin: 18px 0 14px; }
.hero p.sub { font-size: 20px; color: var(--muted); margin-bottom: 26px; }
.hero .stars { color: #f5a623; font-size: 15px; margin-top: 14px; }
.hero .phone { max-width: 320px; width: 100%; border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,.22); justify-self: center; }
@media (max-width: 800px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero h1 { font-size: 33px; }
  .hero .phone { max-width: 250px; }
}

section { padding: 58px 0; }
section.alt { background: var(--bg-soft); }
h2 { font-size: 30px; letter-spacing: -.3px; margin-bottom: 10px; }
.lede { color: var(--muted); font-size: 18px; max-width: 640px; margin-bottom: 34px; }

.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 800px) { .grid3, .grid2 { grid-template-columns: 1fr; } }
.card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; }
.card h3 { font-size: 19px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15.5px; }
.card .emoji { font-size: 26px; margin-bottom: 10px; display: block; }

.shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.shots img { width: 100%; border-radius: 20px; box-shadow: 0 12px 32px rgba(0,0,0,.14); }
@media (max-width: 800px) { .shots { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; } }

.steps { counter-reset: step; }
.steps .card { position: relative; padding-left: 68px; margin-bottom: 14px; }
.steps .card::before { counter-increment: step; content: counter(step);
  position: absolute; left: 22px; top: 22px; width: 32px; height: 32px; border-radius: 50%;
  background: var(--blue); color: #fff; font-weight: 700; display: flex;
  align-items: center; justify-content: center; }

.faq details { border: 1px solid var(--border); border-radius: 12px; background: var(--card);
  padding: 16px 20px; margin-bottom: 12px; }
.faq summary { font-weight: 650; cursor: pointer; }
.faq details p { margin-top: 10px; color: var(--muted); }

.cta-band { text-align: center; background: var(--blue); border-radius: 22px; padding: 52px 30px; }
.cta-band h2, .cta-band p { color: #fff; }
.cta-band p { opacity: .85; margin-bottom: 24px; }
.cta-band .btn { background: #fff; color: var(--blue) !important; }

footer.site { border-top: 1px solid var(--border); padding: 34px 0 46px; font-size: 14.5px;
  color: var(--muted); }
footer.site .cols { display: flex; flex-wrap: wrap; gap: 28px; justify-content: space-between; }

/* Guide/article pages */
article.guide { max-width: 720px; margin: 0 auto; padding: 48px 22px 20px; }
article.guide h1 { font-size: 36px; line-height: 1.15; letter-spacing: -.4px; margin-bottom: 12px; }
article.guide .meta { color: var(--muted); font-size: 15px; margin-bottom: 30px; }
article.guide h2 { font-size: 25px; margin: 38px 0 12px; }
article.guide h3 { font-size: 19px; margin: 26px 0 8px; }
article.guide p, article.guide li { margin-bottom: 14px; }
article.guide ul, article.guide ol { padding-left: 24px; margin-bottom: 16px; }
article.guide blockquote { border-left: 3px solid var(--blue); padding: 10px 18px;
  background: var(--bg-soft); border-radius: 0 10px 10px 0; margin: 18px 0; }
article.guide code, article.guide .prompt { background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 8px; padding: 2px 7px; font-size: 15px; }
article.guide .prompt { display: block; padding: 16px 18px; margin: 14px 0; white-space: pre-wrap;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 14.5px; }
.appbox { display: flex; gap: 16px; align-items: center; background: var(--bg-soft);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 20px; margin: 26px 0; }
.appbox img { width: 56px; height: 56px; border-radius: 13px; }
.appbox .t { font-weight: 700; }
.appbox .s { color: var(--muted); font-size: 14.5px; }
.appbox .btn { margin-left: auto; white-space: nowrap; }
@media (max-width: 620px) { .appbox { flex-wrap: wrap; } .appbox .btn { margin-left: 0; } }
