/* PBNow landing page: papel branco, texto preto, cor só nos traços. Mesmos tokens do app. */
:root {
  --bg: #ffffff;
  --panel: #ffffff;
  --panel-2: #f7f7f5;
  --hover: rgba(55, 53, 47, 0.06);
  --border: rgba(55, 53, 47, 0.16);
  --text: #191919;
  --text-2: #37352f;
  --muted: rgba(55, 53, 47, 0.62);
  --ink: #191919;
  --accent: #2383e2;
  --danger: #e03131;
  --radius: 6px;
  --shadow: 0 1px 2px rgba(15, 15, 15, 0.06), 0 2px 8px rgba(15, 15, 15, 0.05);
  --side-offense: #f76707;
  --pen-QB: #e03131;
  --pen-OL: #f76707;
  --pen-WR: #2f9e44;
  --pen-DL: #1c7ed6;
  --pen-LB: #7048e8;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  margin: 0;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, 'Apple Color Emoji', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--text);
}
.muted {
  color: var(--muted);
}

/* botões */
.btn {
  appearance: none;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: background 0.12s, border-color 0.12s;
}
.btn:hover {
  background: var(--hover);
}
.btn-primary {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.btn-primary:hover {
  background: #000;
}
.btn-lg {
  padding: 0.75rem 1.1rem;
  font-size: 1rem;
}
.logo {
  display: inline-block;
  height: 26px;
  width: auto;
  vertical-align: middle;
}
.logo-link {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius);
}
.logo-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* layout */
.lp {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  scroll-behavior: smooth;
}
.lp main {
  flex: 1;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
}
.lp h1,
.lp h2,
.lp h3 {
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.lp h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.6rem;
}
.lp h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.lp p {
  margin: 0;
}
.lp-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 0.7rem !important;
}
.lp-lead {
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--text-2);
  max-width: 40rem;
}
.lp-fineprint {
  font-size: 0.85rem;
  color: var(--muted);
}

/* cabeçalho fixo */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.lp-brand {
  display: inline-flex;
  align-items: center;
  margin-right: auto;
}
.lp-links {
  display: flex;
  gap: 0.25rem;
}
.lp-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.35rem 0.6rem;
  border-radius: var(--radius);
}
.lp-links a:hover {
  background: var(--hover);
}
.lp-nav-cta {
  padding: 0.4rem 0.9rem;
}

/* herói */
.lp-hero {
  padding: clamp(3rem, 8vw, 6rem) 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  max-width: 46rem;
}
.lp-hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.lp-hero-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.4rem;
}
.lp-secondary {
  color: var(--text-2);
}

/* quadro de exemplo: o produto é a ilustração */
.lp-board-section {
  padding: 0.5rem 0 3rem;
}
.lp-board {
  height: clamp(280px, 48vw, 520px);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}
.lp-board img {
  display: block;
  width: 100%;
  height: 100%;
}
.lp-caption {
  margin-top: 0.8rem !important;
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
}
.lp-ink {
  font-weight: 700;
}
.lp-ink-offense {
  color: var(--side-offense);
}
.lp-ink-error {
  color: var(--danger);
}

/* seções */
.lp-section {
  padding: 3.5rem 0;
  border-top: 1px solid var(--border);
}

/* passos numerados */
.lp-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.lp-steps li {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.lp-steps p {
  color: var(--text-2);
  font-size: 0.95rem;
}
.lp-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

/* cartões de recursos */
.lp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.lp-card {
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.lp-card p {
  color: var(--text-2);
  font-size: 0.92rem;
}
.lp-card-icon {
  font-size: 1.4rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

/* coach x atleta */
.lp-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.lp-panel {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.4rem;
}
.lp-panel h3 {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}
.lp-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.1rem 0.55rem;
}
.lp-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.lp-panel li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--text-2);
  font-size: 0.95rem;
}
.lp-panel li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
}
.lp-panel:first-child li::before {
  background: var(--side-offense);
}
.lp-panel:last-child li::before {
  background: var(--pen-WR);
}

/* perguntas (toggles do Notion) */
.lp-faq {
  max-width: 44rem;
}
.lp-faq details {
  border-top: 1px solid var(--border);
}
.lp-faq details:last-of-type {
  border-bottom: 1px solid var(--border);
}
.lp-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 0.9rem 0 0.9rem 1.6rem;
  font-weight: 600;
  position: relative;
  user-select: none;
}
.lp-faq summary::-webkit-details-marker {
  display: none;
}
.lp-faq summary::before {
  content: '▸';
  position: absolute;
  left: 0.2rem;
  color: var(--muted);
  transition: transform 0.15s;
}
.lp-faq details[open] summary::before {
  transform: rotate(90deg);
}
.lp-faq summary:hover {
  background: var(--hover);
  border-radius: var(--radius);
}
.lp-faq details p {
  padding: 0 0 1rem 1.6rem;
  color: var(--text-2);
  font-size: 0.95rem;
}

/* chamada final */
.lp-final {
  padding: 4rem 0 5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
}
.lp-final h2 {
  margin-bottom: 0.2rem;
}
.lp-final .lp-hero-actions {
  justify-content: center;
}

.lp-footer {
  border-top: 1px solid var(--border);
  padding: 1.2rem 24px;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
}
.lp-footer .logo {
  height: 20px;
}

@media (max-width: 900px) {
  .lp-steps,
  .lp-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .lp main {
    padding: 0 16px;
  }
  .lp-nav {
    padding: 8px 16px;
    gap: 0.75rem;
  }
  .lp-links {
    display: none;
  }
  .lp-steps,
  .lp-grid,
  .lp-two {
    grid-template-columns: 1fr;
  }
  .lp-section {
    padding: 2.5rem 0;
  }
  .lp-board {
    height: 62vw;
  }
  .lp-cta,
  .lp-secondary {
    width: 100%;
  }
  .lp-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    padding: 1.2rem 16px;
  }
}
