/* Bob Haircut Filter — landing styles. Dark monochrome + single gold accent,
   matching the app's own BobTheme (#0B0B0C bg, white text) and the App Store
   marketing screenshots (gold headline accent). Restrained, no gradients. */
:root {
  --bg: #0B0B0C;
  --bg-deep: #000000;
  --card: #151517;
  --card-hi: #1D1D20;
  --border: rgba(255, 255, 255, 0.10);
  --border-hi: rgba(255, 255, 255, 0.18);
  --ink: #F6F6F7;
  --ink-soft: #A8A8AC;
  --ink-dim: #6E6E73;
  --gold: #C9A24B;
  --gold-soft: rgba(201, 162, 75, 0.14);
}

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

html { scroll-behavior: smooth; }

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

a { color: inherit; }
img, video { max-width: 100%; height: auto; display: block; }

main { overflow-x: hidden; }

section { padding: 68px 20px; }
.wrap { max-width: 1040px; margin: 0 auto; }
.narrow { max-width: 720px; margin: 0 auto; }

/* Nav */
nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1080px; margin: 0 auto; padding: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 16px; text-decoration: none; letter-spacing: -0.2px; }
.brand img { width: 28px; height: 28px; border-radius: 8px; }
.nav-cta {
  background: var(--ink); color: #000; text-decoration: none;
  padding: 9px 18px; border-radius: 100px; font-weight: 700; font-size: 13px;
  transition: opacity 0.15s ease;
}
.nav-cta:hover { opacity: 0.85; }

/* Hero */
.hero { text-align: center; padding-top: 34px; padding-bottom: 46px; }
.eyebrow {
  display: inline-block; color: var(--gold);
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
  padding: 7px 15px; border: 1px solid var(--border-hi); border-radius: 100px;
  margin-bottom: 24px;
}
h1 {
  font-size: clamp(33px, 6vw, 58px);
  line-height: 1.06; letter-spacing: -1.4px; font-weight: 800;
  margin-bottom: 18px;
}
h1 .accent { color: var(--gold); }
.hero-sub {
  color: var(--ink-soft); font-size: clamp(16px, 2.2vw, 19px);
  max-width: 560px; margin: 0 auto 30px;
}

.cta-row { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.btn-store {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: #000; text-decoration: none;
  padding: 15px 30px; border-radius: 14px; font-weight: 700; font-size: 16px;
  transition: opacity 0.15s ease;
}
.btn-store:hover { opacity: 0.85; }
.btn-store svg { width: 20px; height: 20px; }
.cta-note { color: var(--ink-dim); font-size: 13px; }

/* Hero video */
.hero-video {
  margin: 44px auto 0; width: 232px; border-radius: 26px; overflow: hidden;
  border: 1px solid var(--border); background: #000;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.hero-video video { width: 100%; aspect-ratio: 480 / 560; object-fit: cover; }

.trust-strip {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px;
  margin-top: 34px; color: var(--ink-soft); font-size: 13px; font-weight: 500;
}
.trust-strip span { display: inline-flex; align-items: center; gap: 7px; }
.trust-strip .dot { color: var(--gold); }

/* Section headings */
h2 {
  font-size: clamp(24px, 3.6vw, 34px); letter-spacing: -0.8px; font-weight: 800;
  margin-bottom: 14px; text-align: center;
}
.section-sub { color: var(--ink-soft); text-align: center; max-width: 560px; margin: 0 auto 40px; }

/* Reveal strip */
.reveal-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.reveal-item { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; background: var(--card); }
.reveal-item img { aspect-ratio: 400 / 392; object-fit: cover; width: 100%; }
.reveal-item span {
  display: block; text-align: center; font-size: 12px; color: var(--ink-soft);
  padding: 9px 6px; border-top: 1px solid var(--border);
}

/* Before / after */
.ba {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 620px; margin: 0 auto;
}
.ba figure { border: 1px solid var(--border); border-radius: 18px; overflow: hidden; background: var(--card); }
.ba img { width: 100%; aspect-ratio: 480 / 430; object-fit: cover; }
.ba figcaption {
  text-align: center; font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 11px; color: var(--ink-soft); border-top: 1px solid var(--border);
}
.ba figure.is-after figcaption { color: var(--gold); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step {
  background: var(--card); border: 1px solid var(--border); border-radius: 18px;
  padding: 26px 22px;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 10px; background: var(--gold-soft);
  color: var(--gold); font-weight: 800; font-size: 15px; margin-bottom: 14px;
}
.step h3 { font-size: 17px; margin-bottom: 6px; }
.step p { color: var(--ink-soft); font-size: 14px; }

/* Feature list */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.feature {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  padding: 20px; display: flex; gap: 14px; align-items: flex-start;
}
.feature .fi { color: var(--gold); font-size: 18px; line-height: 1.3; }
.feature h3 { font-size: 15px; margin-bottom: 4px; }
.feature p { color: var(--ink-soft); font-size: 13.5px; }

/* Screens */
.screens { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 760px; margin: 0 auto; }
.screens a { text-decoration: none; }
.screens figure { border: 1px solid var(--border); border-radius: 18px; overflow: hidden; background: var(--card); }
.screens img { width: 100%; aspect-ratio: 1242 / 2688; object-fit: cover; }
.screens figcaption { text-align: center; font-size: 12.5px; color: var(--ink-soft); padding: 10px; border-top: 1px solid var(--border); }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item h3 { font-size: 16px; margin-bottom: 7px; }
.faq-item p { color: var(--ink-soft); font-size: 14.5px; }

/* Blog teaser */
.post-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.post-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  padding: 20px; text-decoration: none; transition: border-color 0.15s ease;
}
.post-card:hover { border-color: var(--border-hi); }
.post-card .cat { color: var(--gold); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; }
.post-card h3 { font-size: 15px; margin: 8px 0 6px; line-height: 1.35; }
.post-card p { color: var(--ink-soft); font-size: 13px; }

/* Final CTA */
.final-cta { text-align: center; }
.final-cta h2 { margin-bottom: 10px; }
.final-cta p { color: var(--ink-soft); margin-bottom: 26px; }

/* Footer */
footer { border-top: 1px solid var(--border); padding: 34px 20px; text-align: center; }
footer .links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; margin-bottom: 14px; }
footer a { color: var(--ink-soft); text-decoration: none; font-size: 13px; }
footer a:hover { color: var(--ink); }
footer .copy { color: var(--ink-dim); font-size: 12px; }
footer .disclaimer { color: var(--ink-dim); font-size: 11.5px; max-width: 640px; margin: 12px auto 0; }

/* Article pages */
.article { max-width: 720px; margin: 0 auto; padding: 40px 20px 20px; }
.article .kicker { color: var(--gold); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; }
.article h1 { font-size: clamp(26px, 4.4vw, 38px); text-align: left; margin: 12px 0 10px; }
.article .meta { color: var(--ink-dim); font-size: 13px; margin-bottom: 28px; }
.article h2 { text-align: left; font-size: 22px; margin: 30px 0 10px; }
.article h3 { font-size: 17px; margin: 22px 0 8px; }
.article p, .article li { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 14px; }
.article ul, .article ol { margin: 0 0 14px 22px; }
.article a { color: var(--gold); }
.article img { border-radius: 14px; border: 1px solid var(--border); margin: 20px 0; max-width: 440px; width: 100%; }
.article .cta-box {
  background: var(--card); border: 1px solid var(--border); border-radius: 18px;
  padding: 26px; text-align: center; margin: 34px 0 10px;
}
.article .cta-box h3 { margin-bottom: 6px; }
.article .cta-box p { margin-bottom: 16px; font-size: 14px; }
.crumbs { display: block; max-width: 720px; margin: 0 auto; padding: 20px 20px 0; font-size: 13px; color: var(--ink-dim); }
.crumbs a { color: var(--ink-soft); text-decoration: none; }

.hub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.hub-cat { margin-bottom: 34px; }
.hub-cat h2 { text-align: left; font-size: 20px; margin-bottom: 14px; }

@media (max-width: 860px) {
  .steps, .features, .post-list, .hub-grid { grid-template-columns: 1fr; }
  .reveal-grid { grid-template-columns: repeat(2, 1fr); }
  .screens { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  section { padding: 52px 18px; }
  .screens { grid-template-columns: 1fr; max-width: 320px; }
}
