/* Book A Bro — bookabro.app
   Look 2 "Daylight Clean" — static teaser/waitlist page */

:root {
  --bg: #fcfdfe;
  --bg-alt: #f4f7fa;
  --panel: #ffffff;
  --border: #e4e8ee;
  --navy: #0a1020;
  --teal: #02a3a9;
  --teal-dark: #018a90;
  --teal-soft: #e0f6f6;
  --text: #1e2636;
  --grey: #6c7688;
  --grey-dim: #96a2ac;
  --radius-lg: 24px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --max-w: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

img, svg { display: block; }

/* ---------- Brand wordmark ---------- */
.brand {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.2px;
  color: var(--navy);
  white-space: nowrap;
}
.brand .bro {
  color: var(--teal);
  font-style: italic;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  font-size: 16px;
  border-radius: 999px;
  padding: 16px 28px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--teal);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(2, 163, 169, 0.25);
}
.btn-primary:hover { background: var(--teal-dark); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 14px 26px;
}
.btn-outline:hover { background: var(--navy); color: #fff; }

.btn-light {
  background: #ffffff;
  color: var(--navy);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 14px;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 253, 254, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 24px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-weight: 500;
  font-size: 16px;
  color: var(--grey);
}
.nav-links a:hover { color: var(--navy); }

.nav-cta { display: none; }
@media (min-width: 860px) {
  .nav-cta { display: inline-flex; }
}

.nav-toggle {
  display: inline-flex;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
@media (min-width: 860px) {
  .nav-toggle { display: none; }
  .nav-links { display: flex; }
}
.nav-links { display: none; }
@media (min-width: 860px) {
  .nav-links { display: flex; }
}
.nav-links.open { display: flex; }
@media (max-width: 859px) {
  .nav-links.open {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    border-bottom: 1px solid var(--border);
    gap: 20px;
  }
  .nav-links.open .nav-cta-mobile { display: inline-flex; }
}
.nav-cta-mobile { display: none; }

/* ---------- Section scaffolding ---------- */
section { padding: 96px 0; }
.eyebrow {
  color: var(--teal);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.section-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 20px;
  line-height: 1.15;
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-sub { color: var(--grey); font-size: 18px; line-height: 1.6; margin: 0; }

.alt-bg { background: var(--bg-alt); }

/* ---------- Hero ---------- */
.hero { padding-top: 88px; padding-bottom: 60px; }
.hero .wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 960px) {
  .hero .wrap { grid-template-columns: 1.05fr 0.95fr; }
}

.tag-pill {
  display: inline-block;
  background: var(--teal-soft);
  color: var(--teal);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.4px;
  padding: 10px 20px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.12;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 22px;
}
.hero h1 .accent { color: var(--teal); }

.hero-sub {
  font-size: 20px;
  color: var(--grey);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 0 18px;
}
.hero-tagline {
  font-weight: 600;
  color: var(--teal);
  font-size: 18px;
  margin: 0 0 34px;
}

.hero-visual {
  position: relative;
  height: 420px;
}
.card-cluster { position: relative; width: 100%; height: 100%; }
.profile-card {
  position: absolute;
  width: 230px;
  border-radius: 22px;
  background: #fff;
  border: 2px solid var(--border);
  box-shadow: 0 24px 48px rgba(10, 16, 32, 0.10);
  overflow: hidden;
}
.profile-card .photo {
  height: 178px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-card .photo .lock-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(8, 14, 26, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-card .body { padding: 14px 16px 18px; }
.profile-card .tag {
  display: inline-block;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  margin-bottom: 10px;
}
.profile-card .locked-label { font-size: 13px; color: var(--grey); margin: 0 0 8px; }
.stars { display: flex; gap: 3px; }
.stars svg { width: 14px; height: 14px; }

.card-1 { left: 0; top: 40px; transform: rotate(-6deg); }
.card-2 { left: 150px; top: 0; transform: rotate(4deg); z-index: 2; }
.card-3 { left: 300px; top: 60px; transform: rotate(-3deg); }
@media (max-width: 700px) {
  .hero-visual { height: 380px; }
  .profile-card { width: 190px; }
  .card-1 { left: 0; top: 60px; }
  .card-2 { left: 110px; top: 10px; }
  .card-3 { left: 220px; top: 80px; }
}

/* ---------- Trust strip ---------- */
.trust-strip { padding: 44px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-strip .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.trust-item .icon-circle {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--teal-soft);
  display: flex; align-items: center; justify-content: center;
}
.trust-item span { font-weight: 500; color: var(--grey); font-size: 16px; }
@media (max-width: 700px) {
  .trust-strip .wrap { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Categories ---------- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 900px) {
  .categories-grid { grid-template-columns: 1fr; }
}
.cat-card {
  background: var(--panel);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.cat-card .icon-circle {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--teal-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.cat-card h3 { font-size: 22px; margin: 0 0 12px; color: var(--navy); }
.cat-card p { margin: 0; color: var(--grey); line-height: 1.6; font-size: 16px; }

/* ---------- How it works (two perspectives) ---------- */
.perspectives {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 860px) {
  .perspectives { grid-template-columns: 1fr 1fr; }
}
.perspective-card {
  background: var(--panel);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.perspective-card .persp-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.persp-bro .persp-label { background: var(--navy); color: #fff; }
.persp-guest .persp-label { background: var(--teal-soft); color: var(--teal); }
.perspective-card h3 { font-size: 24px; margin: 0 0 24px; color: var(--navy); }

.step-row { display: flex; gap: 18px; padding: 16px 0; border-top: 1px solid var(--border); }
.step-row:first-of-type { border-top: none; }
.step-num {
  flex: none;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--bg-alt);
  color: var(--grey);
  font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.step-copy h4 { margin: 0 0 4px; font-size: 17px; color: var(--navy); }
.step-copy p { margin: 0; font-size: 15px; color: var(--grey); line-height: 1.5; }

/* ---------- Browse preview ---------- */
.browse-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .browse-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .browse-grid { grid-template-columns: 1fr; }
}
.browse-card {
  background: var(--panel);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.browse-card .photo {
  height: 190px;
  display: flex; align-items: center; justify-content: center;
}
.browse-card .photo .lock-badge {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(8, 14, 26, 0.72);
  display: flex; align-items: center; justify-content: center;
}
.browse-card .body { padding: 16px; }
.browse-card .tag {
  display: inline-block;
  background: var(--teal-soft); color: var(--teal);
  font-size: 12px; font-weight: 600;
  padding: 6px 12px; border-radius: 8px; margin-bottom: 10px;
}
.browse-card .locked-label { font-size: 13px; color: var(--grey); margin: 0 0 8px; }

.grad-1 { background: linear-gradient(135deg, #cfeeee, #79b8ba); }
.grad-2 { background: linear-gradient(135deg, #f4dee4, #c68194); }
.grad-3 { background: linear-gradient(135deg, #dcecd8, #8bb46c); }
.grad-4 { background: linear-gradient(135deg, #f0e8d0, #c2ac6e); }

.browse-note {
  text-align: center;
  color: var(--grey);
  font-size: 16px;
  margin-top: 40px;
}
.preview-flag {
  text-align: center;
  color: var(--grey-dim);
  font-size: 14px;
  margin-top: 8px;
  font-style: italic;
}

/* ---------- Follow the build ---------- */
.follow { text-align: center; }
.follow p { color: var(--grey); font-size: 18px; margin: 0 0 28px; }
.social-links { display: flex; justify-content: center; gap: 16px; }
.social-btn {
  display: inline-flex; align-items: center; gap: 10px;
  border: 2px solid var(--border);
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--navy);
}
.social-btn:hover { border-color: var(--teal); color: var(--teal); }

/* ---------- CTA banner + waitlist ---------- */
.cta-banner {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 56px;
  margin: 0 24px;
  max-width: calc(var(--max-w) - 48px);
  margin-left: auto; margin-right: auto;
}
.cta-banner h2 { color: #fff; font-size: 36px; margin: 0 0 6px; font-weight: 700; }
.cta-banner h2 .accent { color: var(--teal); }
.cta-banner p { color: #b9c2d4; font-size: 17px; max-width: 640px; line-height: 1.6; margin: 18px 0 34px; }

.form-note { color: #8993a8; font-size: 14px; margin-top: 16px; }

/* ---------- Footer ---------- */
footer { padding: 72px 0 40px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 860px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
.footer-col h4 { font-size: 15px; color: var(--navy); margin: 0 0 18px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--grey); font-size: 15px; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom { text-align: center; padding-top: 28px; }
.disclaimer { color: var(--grey-dim); font-size: 14px; max-width: 640px; margin: 0 auto 10px; line-height: 1.5; }
.copyright { color: var(--grey-dim); font-size: 14px; margin: 0; }

/* Utility */
.center { text-align: center; }

/* ---------- Legal pages (Terms / Privacy / Non-sexual Use Policy) ---------- */
.legal-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--grey);
  font-size: 15px;
}
.back-link:hover { color: var(--teal); }

.legal-page { padding: 64px 0 100px; }
.legal-page .wrap { max-width: 780px; }
.legal-page h1 { font-size: 38px; color: var(--navy); margin: 0 0 12px; }
.legal-updated { color: var(--grey-dim); font-size: 15px; margin: 0 0 32px; }

.draft-notice {
  background: var(--teal-soft);
  border: 1px solid #bfe6e6;
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 44px;
}
.draft-notice strong { color: var(--teal-dark); }

.legal-page h2 { font-size: 22px; color: var(--navy); margin: 40px 0 14px; }
.legal-page p { font-size: 16px; color: var(--text); line-height: 1.75; margin: 0 0 16px; }
.legal-page ul { margin: 0 0 16px; padding-left: 22px; }
.legal-page li { font-size: 16px; color: var(--text); line-height: 1.75; margin-bottom: 8px; }
.legal-page a.inline-link { color: var(--teal); text-decoration: underline; }
