/* Bridge funnel — self-contained. Brand tokens from the main theme, softened
   with rounded corners + social proof so it feels safe and trustworthy. */
:root {
  --bg:        #0D0D0F;
  --bg-2:      #111114;
  --card:      #16161A;
  --accent:    #1CDB71;
  --accent-2:  #17c463;
  --border:    #24242C;
  --text:      #FFFFFF;
  --text-2:    #9A9AA6;
  --text-3:    #5A5A6A;
  --radius:    18px;
  --radius-sm: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  background-image: radial-gradient(60% 40% at 50% -5%, rgba(28,219,113,0.06), transparent 70%);
}

/* ── Top bar ── */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { height: 68px; width: auto; display: block; }
.btn-ghost {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 22px;
  transition: border-color .15s, color .15s, background .15s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); background: rgba(28,219,113,0.06); }

/* ── Stage (content sits toward the top, compact) ── */
.stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding: 8px 20px 48px;
}

/* ── Card (wide / landscape, minimal) ── */
.card {
  width: 100%;
  max-width: 720px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 38px 44px 34px;
  text-align: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(28,219,113,0.35);
  background: rgba(28,219,113,0.07);
  border-radius: 999px;
  padding: 8px 16px;
  margin-bottom: 24px;
}
.pill-dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(28,219,113,0.2);
}

.headline {
  font-size: clamp(1.85rem, 6vw, 2.7rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin: 0 auto 16px;
  max-width: 640px;
}
.headline .hl { color: var(--accent); }

.subline {
  font-size: .95rem;
  line-height: 1.65;
  color: var(--text-2);
  max-width: 400px;
  margin: 0 auto 30px;
}

/* Trust badges */
.trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  margin-bottom: 34px;
}
.trust li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--text-2);
}
.trust svg {
  width: 16px; height: 16px; fill: none;
  stroke: var(--accent); stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

/* CTA */
.btn-primary {
  display: block;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  background: var(--accent);
  color: #04140b;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  padding: 18px 20px;
  box-shadow: 0 10px 30px rgba(28,219,113,0.28);
  transition: background .15s, transform .05s, box-shadow .15s;
}
.btn-primary:hover { background: var(--accent-2); box-shadow: 0 12px 36px rgba(28,219,113,0.36); }
.btn-primary:active { transform: translateY(1px); }

.ships {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: .74rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 14px;
}
.ships-flag { width: 18px; height: 18px; border-radius: 3px; object-fit: cover; display: block; }

/* ── Social proof ── */
.proof {
  width: 100%;
  max-width: 720px;
}
.proof-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}
.stars { color: #FFC53D; letter-spacing: 1px; font-size: .95rem; }
.proof-rating-txt { font-size: .82rem; color: var(--text-2); font-weight: 500; }

/* Three reviews in a row, left to right, under the card. */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.review {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  text-align: left;
}
.review .stars { font-size: .82rem; display: block; margin-bottom: 8px; }
.review blockquote {
  font-size: .88rem;
  line-height: 1.55;
  color: #D8D8DE;
  margin-bottom: 10px;
}
.review figcaption {
  font-size: .78rem;
  color: var(--text-2);
  font-weight: 500;
}
.verified { color: var(--accent); font-weight: 600; }

/* Tablet: reviews go 1 column, card narrows */
@media (max-width: 760px) {
  .card { max-width: 560px; padding: 42px 30px 36px; }
  .proof { max-width: 560px; }
  .reviews { grid-template-columns: 1fr; }
}

/* Mobile */
@media (max-width: 480px) {
  .topbar { padding: 14px 16px; }
  .brand img { height: 50px; }
  .btn-ghost { padding: 9px 16px; font-size: .78rem; }
  .card { padding: 32px 20px 28px; border-radius: 14px; }
  .headline { font-size: clamp(1.7rem, 8vw, 2.1rem); }
  .subline { font-size: .9rem; }
  .trust { gap: 8px 14px; }
  .stage { padding: 18px 14px 44px; gap: 20px; }
}
