/* SiteProof marketing site — shared styles */
:root {
  --bg: #0d0d0f;
  --surface: #16161a;
  --card: #1e1e23;
  --card-border: #2c2c33;
  --text: #f5f2ee;
  --text-dim: #b3ada6;
  --text-faint: #8a857f;
  --brand: #ff6b35;
  --brand-soft: #ff8f5e;
  --brand-dark: #d94f1e;
  --green: #34c759;
  --max: 1100px;
  --radius: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; display: block; }

a { color: var(--brand-soft); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, .display {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.accent {
  color: var(--brand);
  font-style: italic;
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 13, 15, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
}
.logo:hover { text-decoration: none; }
.logo img { width: 32px; height: 32px; border-radius: 7px; }
.site-nav { display: flex; gap: 22px; margin-left: auto; align-items: center; }
.site-nav a { color: var(--text-dim); font-size: 15px; }
.site-nav a:hover { color: var(--text); text-decoration: none; }
.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand), var(--brand-soft));
  color: #fff !important;
  font-weight: 700;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(255, 107, 53, 0.35);
}
.btn:hover { text-decoration: none; filter: brightness(1.07); }
.btn-lg { font-size: 17px; padding: 14px 30px; }

@media (max-width: 720px) {
  .site-nav a:not(.btn) { display: none; }
}

/* ---------- hero ---------- */
.hero { padding: 72px 0 40px; overflow: hidden; }
.hero .wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.hero h1 { font-size: clamp(34px, 5vw, 56px); margin: 18px 0; }
.hero .kicker {
  color: var(--brand);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
}
.hero p.lede { color: var(--text-dim); font-size: 19px; max-width: 34em; }
.hero-ctas { display: flex; align-items: center; gap: 20px; margin-top: 30px; flex-wrap: wrap; }
.hero-ctas .store-badge img { height: 56px; width: auto; }
.hero-note { color: var(--text-faint); font-size: 14px; margin-top: 14px; }
.hero-shot img {
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55), 0 0 0 1px var(--card-border);
}
@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-shot { max-width: 340px; margin: 0 auto; }
}

/* ---------- trust strip ---------- */
.trust { border-block: 1px solid var(--card-border); background: var(--surface); }
.trust .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 36px;
  justify-content: center;
  padding: 18px 24px;
  color: var(--text-dim);
  font-size: 15px;
}
.trust span { display: flex; align-items: center; gap: 8px; }
.trust b { color: var(--text); }

/* ---------- sections ---------- */
section { padding: 76px 0; }
.section-head { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 14px; }
.section-head p { color: var(--text-dim); font-size: 18px; }

/* ---------- screenshots gallery ---------- */
.gallery {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 24px 20px;
  max-width: var(--max);
  margin: 0 auto;
  scrollbar-color: var(--card-border) transparent;
}
.gallery figure {
  flex: 0 0 250px;
  scroll-snap-align: center;
}
.gallery img {
  border-radius: 18px;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.45), 0 0 0 1px var(--card-border);
}
.gallery figcaption {
  color: var(--text-faint);
  font-size: 13.5px;
  margin-top: 10px;
  text-align: center;
  line-height: 1.4;
}
@media (min-width: 900px) {
  .gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 24px;
    overflow-x: visible;
    scroll-snap-type: none;
  }
  .gallery figure {
    flex: none;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

/* ---------- how it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.step {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 26px 22px;
}
.step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.15);
  color: var(--brand);
  font-weight: 800;
  margin-bottom: 14px;
}
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { color: var(--text-dim); font-size: 15px; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }

/* ---------- feature cards ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 26px 22px;
}
.feature .icon { font-size: 26px; margin-bottom: 12px; }
.feature h3 { font-size: 19px; margin-bottom: 8px; }
.feature p { color: var(--text-dim); font-size: 15px; }
@media (max-width: 900px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .features { grid-template-columns: 1fr; } }

/* ---------- guides ---------- */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.guide-card {
  display: block;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 22px 24px;
  color: var(--text);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.guide-card:hover { border-color: var(--brand); text-decoration: none; transform: translateY(-2px); }
.guide-card h3 { font-size: 18px; margin-bottom: 6px; color: var(--text); }
.guide-card p { color: var(--text-dim); font-size: 14.5px; }
.guide-card .more { color: var(--brand-soft); font-size: 14px; font-weight: 600; }
@media (max-width: 720px) { .guide-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; }
.faq details {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  margin-bottom: 12px;
  padding: 0 22px;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 17px;
  padding: 18px 0;
  list-style: none;
  position: relative;
  padding-right: 34px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand);
  font-size: 22px;
  font-weight: 400;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--text-dim); padding-bottom: 20px; font-size: 15.5px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, #b23a12, var(--brand) 55%, var(--brand-soft));
  border-radius: 24px;
  padding: 56px 40px;
  text-align: center;
  max-width: var(--max);
  margin: 0 24px;
}
@media (min-width: 1148px) { .cta-band { margin: 0 auto; } }
.cta-band h2 { font-size: clamp(28px, 3.6vw, 40px); color: #fff; margin-bottom: 12px; }
.cta-band p { color: rgba(255, 255, 255, 0.9); font-size: 18px; max-width: 34em; margin: 0 auto 26px; }
.cta-band .store-badge img { height: 58px; margin: 0 auto; }
.cta-band .fine { color: rgba(255, 255, 255, 0.75); font-size: 14px; margin-top: 16px; }

/* ---------- footer ---------- */
.site-footer {
  border-top: 1px solid var(--card-border);
  margin-top: 76px;
  padding: 44px 0 56px;
  color: var(--text-faint);
  font-size: 14.5px;
}
.site-footer .cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.site-footer h4 { color: var(--text); font-size: 15px; margin-bottom: 12px; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: var(--text-dim); }
.site-footer a:hover { color: var(--text); }
.site-footer .brandline { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; color: var(--text); font-weight: 700; }
.site-footer .brandline img { width: 28px; height: 28px; border-radius: 6px; }
@media (max-width: 720px) { .site-footer .cols { grid-template-columns: 1fr; } }

/* ---------- guide article pages ---------- */
.article { max-width: 760px; margin: 0 auto; padding: 48px 24px 0; }
.breadcrumbs { font-size: 14px; color: var(--text-faint); margin-bottom: 22px; }
.breadcrumbs a { color: var(--text-dim); }
.article h1 { font-size: clamp(30px, 4.2vw, 44px); margin-bottom: 18px; }
.article .lede { font-size: 19px; color: var(--text-dim); margin-bottom: 34px; }
.article h2 { font-size: 27px; margin: 44px 0 14px; }
.article h3 { font-size: 20px; margin: 30px 0 10px; }
.article p { margin-bottom: 16px; color: #d8d3cd; }
.article ul, .article ol { margin: 0 0 18px 24px; color: #d8d3cd; }
.article li { margin-bottom: 8px; }
.article strong { color: var(--text); }
.article .shot {
  margin: 30px auto;
  max-width: 320px;
}
.article .shot img {
  border-radius: 18px;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.45), 0 0 0 1px var(--card-border);
}
.article .shot figcaption { color: var(--text-faint); font-size: 13.5px; text-align: center; margin-top: 10px; }
.article .callout {
  background: rgba(255, 107, 53, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.35);
  border-radius: 14px;
  padding: 18px 22px;
  margin: 26px 0;
}
.article .callout p:last-child { margin-bottom: 0; }
.related { max-width: 760px; margin: 56px auto 0; padding: 0 24px; }
.related h2 { font-size: 22px; margin-bottom: 16px; }
.article-cta { margin: 48px 0 0; }
.article-cta .cta-band { padding: 44px 32px; }
