/* Site stylesheet: one small file, no frameworks.
   Brand accent: --accent (change it once, the whole site follows).
   Display type: Archivo Black (loaded in the page head). */
:root {
  --accent: #c0392b;
  --ink: #0f172a;
  --ink-2: #101623;
  --paper: #ffffff;
  --line: #e8ecf0;
  --text: #1a202c;
  --muted: #64748b;
  --faint: #a0aec0;
  --green: #0ea45f;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; background: var(--paper); color: var(--text); -webkit-font-smoothing: antialiased; display: flex; flex-direction: column; min-height: 100vh; }
body > footer.site { margin-top: auto; }
img { max-width: 100%; display: block; }
a { color: var(--accent); }

.display, h1.display, h2.display { font-family: "Archivo Black", -apple-system, sans-serif; font-weight: 400; letter-spacing: -.01em; }

/* ---------- chrome ---------- */
.topbar { position: sticky; top: 0; z-index: 900; background: #000; padding: 16px 30px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.topbar .logo { color: #fff; text-decoration: none; font-family: "Archivo Black", -apple-system, sans-serif; font-size: 1.1rem; letter-spacing: -.01em; }
.topbar .logo img { height: 46px; } /* drop a logo <img> inside .logo when you have one */
.topbar nav { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.topbar nav a { color: #fff; text-decoration: none; font-size: 1rem; font-weight: 700; }
.topbar nav a:hover, .topbar nav a.on { color: var(--accent); }
.topbar nav a.cta { background: var(--accent); color: #fff; padding: 13px 20px; border-radius: 10px; box-shadow: 0 6px 16px -6px rgba(99,102,241,.55); }
.topbar nav a.cta:hover { color: #fff; filter: brightness(1.08); }
@media (max-width: 860px) { .topbar { padding: 12px 18px; } .topbar .logo { font-size: .95rem; } .topbar .logo img { height: 34px; } .topbar nav { gap: 14px; } .topbar nav a { font-size: .82rem; } .topbar nav a.cta { padding: 9px 14px; } .topbar nav a.hide-m { display: none; } }

.section { padding: 64px 22px; }
.section.tight { padding: 44px 22px; }
.inner { max-width: 1020px; margin: 0 auto; }
.inner.narrow { max-width: 760px; }
.center { text-align: center; }
.eyebrow { display: inline-block; font-size: 11.5px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.eyebrow.chip { background: var(--accent); color: #fff; letter-spacing: .14em; padding: 6px 14px; border-radius: 99px; }
h1.hero-h { font-size: clamp(2rem, 5vw, 3.1rem); line-height: 1.08; margin-bottom: 16px; }
h2.sec-h { font-size: clamp(1.5rem, 3.6vw, 2.3rem); line-height: 1.12; margin-bottom: 14px; }
.hero-h .hl, .sec-h .hl { color: var(--accent); }
.lede { font-size: 1.08rem; color: var(--muted); line-height: 1.7; max-width: 640px; }
.center .lede { margin-left: auto; margin-right: auto; }

/* light accent-tinted hero band; add a background-image here when you have one */
.hero { background: linear-gradient(180deg, #eef2ff 0%, #fff 75%); padding-top: 84px; }

.btn { display: inline-block; background: var(--accent); color: #fff; font-size: 1rem; font-weight: 800; padding: 15px 32px; border-radius: 10px; text-decoration: none; border: none; cursor: pointer; font-family: inherit; box-shadow: 0 10px 26px -10px rgba(99,102,241,.55); }
.btn:hover { filter: brightness(1.06); }
.btn.green { background: var(--green); box-shadow: 0 10px 26px -10px rgba(14,164,95,.5); }
.btn.ghost { background: transparent; color: var(--text); border: 1.5px solid #d6dee8; box-shadow: none; }
.btn.ghost.dark { color: #fff; border-color: rgba(255,255,255,.35); }
.btn.dark { background: var(--ink); box-shadow: 0 10px 26px -12px rgba(15,23,42,.5); }
.btn.white { background: #fff; color: var(--ink); box-shadow: 0 10px 26px -12px rgba(0,0,0,.6); }
.note { font-size: .8rem; color: var(--faint); font-weight: 600; margin-top: 12px; }

/* ---------- cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; text-align: left; }
.card { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 24px; display: flex; flex-direction: column; box-shadow: 0 10px 30px rgba(0,0,0,.06); }
.card.hot { border: 2px solid var(--accent); box-shadow: 0 14px 40px -12px rgba(99,102,241,.3); position: relative; }
.card .tag { align-self: flex-start; font-size: .62rem; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; background: var(--accent); color: #fff; padding: 4px 10px; border-radius: 99px; margin-bottom: 12px; }
.card .tag.free { background: var(--green); }
.card .tag.dark { background: var(--ink); }
.card h3 { font-size: 1.12rem; font-weight: 900; margin-bottom: 6px; }
.card .price { font-size: 1.35rem; font-weight: 900; color: var(--accent); margin-bottom: 8px; }
.card .price small { font-size: .74rem; color: var(--muted); font-weight: 700; }
.card p { font-size: .9rem; color: var(--muted); line-height: 1.6; flex: 1; margin-bottom: 16px; }
.card .btn { text-align: center; padding: 13px 18px; font-size: .95rem; }
.card img.thumb { border-radius: 10px; margin-bottom: 14px; }

/* ---------- card thumb badges + horizontal cards ---------- */
.thumbwrap { position: relative; margin-bottom: 14px; }
.thumbwrap img { border-radius: 10px; width: 100%; aspect-ratio: 16/10; object-fit: cover; margin: 0; }
.thumbwrap .ov { position: absolute; top: 10px; left: 10px; font-size: .6rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; padding: 5px 10px; border-radius: 99px; background: var(--accent); color: #fff; }
.thumbwrap .ov.r { left: auto; right: 10px; background: #ffd21e; color: #111; }
.thumbwrap .ov.dark { background: var(--ink); }
.hcards { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 18px; }
.hcard { display: grid; grid-template-columns: 150px 1fr; gap: 18px; background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 18px; box-shadow: 0 10px 30px rgba(0,0,0,.06); text-align: left; align-items: center; }
.hcard img { width: 100%; height: 100%; min-height: 150px; object-fit: cover; border-radius: 10px; }
.hcard h3 { font-size: 1.08rem; font-weight: 900; margin-bottom: 6px; }
.hcard p { font-size: .88rem; color: var(--muted); line-height: 1.55; margin-bottom: 12px; }
@media (max-width: 480px) { .hcard { grid-template-columns: 1fr; } .hcard img { max-height: 170px; min-height: 0; } }

/* ---------- testimonials ---------- */
.testi { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; align-items: start; }
.tcard { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 18px; box-shadow: 0 10px 30px rgba(0,0,0,.06); text-align: left; }
.tcard img.shot { width: 100%; border-radius: 10px; margin-bottom: 14px; }
.tcard .who { display: flex; align-items: center; gap: 12px; }
.tcard .who img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.tcard .who b { display: block; font-size: .95rem; }
.tcard .who small { display: block; color: var(--muted); font-size: .78rem; line-height: 1.4; margin-top: 2px; }
.tcard img.stars { height: 14px; width: auto; margin-top: 6px; }

/* ---------- CTA panel ---------- */
.cta-panel { background: var(--ink); border-radius: 20px; padding: 46px 40px; display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap; }
.cta-panel h2 { color: #fff; font-size: clamp(1.5rem, 3.4vw, 2.1rem); margin-bottom: 10px; }
.cta-panel p { color: rgba(255,255,255,.75); font-size: 1.05rem; line-height: 1.6; max-width: 420px; }

/* ---------- stats strip ---------- */
.proofstrip { background: var(--ink-2); padding: 46px 22px; }
.proofstrip .grid { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 22px; text-align: center; }
.proofstrip .v { font-size: 2.2rem; font-weight: 900; color: var(--accent); line-height: 1; }
.proofstrip .l { font-size: .85rem; font-weight: 700; color: #fff; margin-top: 8px; line-height: 1.4; }

/* ---------- checkmark list ---------- */
.checks { list-style: none; margin: 16px 0 18px; text-align: left; }
.checks li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; font-weight: 600; padding: 7px 0; line-height: 1.5; }
.checks li::before { content: '\2713'; color: var(--accent); font-weight: 900; flex-shrink: 0; }

/* ---------- faq ---------- */
.faq details { border: 1px solid var(--line); border-radius: 12px; margin-bottom: 10px; background: var(--paper); }
.faq summary { cursor: pointer; font-weight: 800; font-size: .98rem; padding: 16px 18px; list-style: none; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 18px; color: var(--accent); font-weight: 900; }
.faq details[open] summary::after { content: '\2212'; }
.faq details p { padding: 0 18px 16px; color: var(--muted); font-size: .93rem; line-height: 1.65; }

/* ---------- forms (see stack-forms.js) ---------- */
.fform { max-width: 460px; margin: 0 auto; text-align: left; background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 26px 22px; box-shadow: 0 14px 40px rgba(0,0,0,.08); }
.fform label { display: block; font-size: 13px; font-weight: 700; margin: 12px 0 5px; }
.fform input, .fform textarea { width: 100%; padding: 12px 14px; font-size: 15px; border: 1.5px solid #d6dee8; border-radius: 9px; font-family: inherit; }
.fform input:focus, .fform textarea:focus { outline: none; border-color: var(--accent); }
.fform .btn { width: 100%; margin-top: 16px; }
.fform .err { display: none; color: #dc2626; font-size: 13px; margin-top: 10px; }
.fform .done { display: none; background: #e9f9f0; color: #177245; border-radius: 10px; padding: 14px 16px; font-size: 14.5px; font-weight: 600; margin-top: 10px; }
.fform .hp { position: absolute; left: -9999px; top: -9999px; }

/* ---------- legal ---------- */
.legal h2 { font-size: 1.15rem; font-weight: 900; margin: 26px 0 8px; }
.legal p { color: var(--muted); font-size: .94rem; line-height: 1.7; margin-bottom: 12px; }

/* ---------- footer ---------- */
footer.site { background: #000; padding: 52px 22px 30px; }
footer.site .grid { max-width: 1020px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 34px; }
footer.site .flogo { color: #fff; font-family: "Archivo Black", -apple-system, sans-serif; font-size: 1.05rem; margin-bottom: 14px; }
footer.site .tag { color: rgba(255,255,255,.55); font-size: .86rem; line-height: 1.6; max-width: 240px; }
footer.site .socials { margin-top: 16px; display: flex; gap: 14px; }
footer.site .socials a, footer.site .col a { color: rgba(255,255,255,.65); font-size: .9rem; text-decoration: none; }
footer.site .socials a { font-weight: 700; font-size: .85rem; }
footer.site .col a { display: block; padding: 5px 0; }
footer.site .col a:hover, footer.site .socials a:hover { color: var(--accent); }
footer.site .colh { color: #fff; font-size: .78rem; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 14px; }
footer.site .base { max-width: 1020px; margin: 34px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.4); font-size: .8rem; text-align: center; }
