/* =================================================================
   BondOS — App Preview · Premium styling
   Theme: Deep navy + cyan/teal accent, dark-glass cards
   ================================================================= */

:root {
  --bp-bg:       #060B14;
  --bp-bg-2:     #0A1628;
  --bp-surface:  rgba(20, 32, 52, 0.55);
  --bp-border:   rgba(120, 200, 230, 0.14);
  --bp-text:     #F4F8FB;
  --bp-text-2:   #B5C2D2;
  --bp-text-3:   #7A8AA0;
  --bp-cyan:     #00D4FF;
  --bp-cyan-2:   #0EA5E9;
  --bp-success:  #22D89E;
  --bp-radius:   20px;
  --bp-radius-sm:12px;
  --bp-shadow:   0 20px 60px -20px rgba(0, 212, 255, 0.20);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body.app-preview-body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bp-bg);
  color: var(--bp-text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

a { color: inherit; text-decoration: none; transition: color .2s ease; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }

/* ─── Background mesh ─────────────────────────────────────────── */
.bp-mesh {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  overflow: hidden;
}
.bp-mesh-blob {
  position: absolute;
  width: 60vw; height: 60vw;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
  animation: bp-drift 24s ease-in-out infinite alternate;
}
.bp-mesh-blob-a { background: radial-gradient(circle, #00D4FF 0%, transparent 70%); top: -20%; left: -10%; }
.bp-mesh-blob-b { background: radial-gradient(circle, #6366F1 0%, transparent 70%); bottom: -25%; right: -15%; animation-duration: 30s; animation-direction: alternate-reverse; }
.bp-mesh-blob-c { background: radial-gradient(circle, #22D89E 0%, transparent 70%); top: 35%; right: 25%; opacity: 0.25; animation-duration: 36s; }
.bp-mesh-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at top, black 30%, transparent 75%);
}
@keyframes bp-drift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(40px, -40px) scale(1.15); }
}

/* All content sits above the mesh */
.bp-notice, .bp-nav, main, .bp-footer { position: relative; z-index: 1; }

/* ─── Top notice bar ──────────────────────────────────────────── */
.bp-notice {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 10px 24px;
  font-size: 13px; color: var(--bp-text-2);
  background: linear-gradient(90deg, rgba(0,212,255,0.08), rgba(99,102,241,0.08));
  border-bottom: 1px solid var(--bp-border);
  text-align: center;
}
.bp-notice strong { color: var(--bp-cyan); font-weight: 600; }
.bp-notice a { color: var(--bp-cyan); font-weight: 600; }
.bp-notice a:hover { color: #fff; }
.bp-notice-pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--bp-cyan);
  box-shadow: 0 0 0 0 rgba(0,212,255,0.5);
  animation: bp-pulse 2s infinite;
}
@keyframes bp-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0,212,255,0.55); }
  70%  { box-shadow: 0 0 0 12px rgba(0,212,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,212,255,0); }
}

/* ─── Nav ─────────────────────────────────────────────────────── */
.bp-nav {
  padding: 18px 0;
  border-bottom: 1px solid var(--bp-border);
  background: rgba(6,11,20,0.7);
  backdrop-filter: blur(16px);
  position: sticky; top: 0; z-index: 50;
}
.bp-nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.bp-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: 0.08em; }
.bp-brand-lockup { display: block; width: 150px; max-width: min(150px, 44vw); height: auto; }
.bp-footer .bp-brand-lockup { width: 154px; max-width: min(154px, 48vw); }
.bp-brand-text { font-size: 15px; color: var(--bp-text); display: inline-flex; align-items: baseline; }
.bp-brand-os {
  background: linear-gradient(135deg, var(--bp-cyan, #00D4FF) 0%, #6366F1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 900;
  letter-spacing: 0.06em;
  margin-left: 1px;
  filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.35));
}
.bp-brand-tag {
  font-size: 10px; letter-spacing: 0.18em; color: var(--bp-cyan);
  border: 1px solid var(--bp-cyan); padding: 3px 8px; border-radius: 4px;
  font-weight: 600;
}
.bp-nav-links {
  display: flex; gap: 28px; align-items: center;
  font-size: 14px; color: var(--bp-text-2); font-weight: 500;
}
.bp-nav-links a:hover { color: var(--bp-text); }
.bp-nav-back { color: var(--bp-text-3) !important; }
.bp-cta-soft {
  font-size: 14px; font-weight: 600; padding: 10px 18px;
  border: 1px solid var(--bp-cyan); color: var(--bp-cyan); border-radius: 10px;
  transition: all .2s ease;
}
.bp-cta-soft:hover { background: var(--bp-cyan); color: var(--bp-bg); }

/* ─── Hero ────────────────────────────────────────────────────── */
.bp-hero { padding: 90px 24px 60px; }
.bp-hero-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 80px; align-items: center;
}
@media (max-width: 960px) {
  .bp-hero-inner { grid-template-columns: 1fr; gap: 50px; }
}
.bp-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--bp-cyan); margin-bottom: 28px;
  padding: 8px 14px; border: 1px solid var(--bp-border); border-radius: 100px;
  background: rgba(0,212,255,0.06);
}
.bp-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--bp-cyan); }
.bp-hero-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(40px, 5.6vw, 72px);
  font-weight: 700; line-height: 1.05; letter-spacing: -0.02em;
  margin: 0 0 24px;
}
.bp-gradient-text {
  background: linear-gradient(135deg, var(--bp-cyan) 0%, #6366F1 50%, #C084FC 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: inline-block;
}
.bp-hero-sub {
  font-size: 18px; color: var(--bp-text-2); line-height: 1.7; max-width: 560px;
  margin: 0 0 32px;
}
.bp-hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px;
}
.bp-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px; border-radius: 12px; font-weight: 600; font-size: 15px;
  border: 1px solid transparent; transition: all .2s ease;
  text-decoration: none;
}
.bp-btn-primary {
  background: linear-gradient(135deg, var(--bp-cyan), var(--bp-cyan-2));
  color: var(--bp-bg);
  box-shadow: 0 14px 40px -12px rgba(0,212,255,0.45);
}
.bp-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 50px -10px rgba(0,212,255,0.55); }
.bp-btn-ghost {
  background: rgba(255,255,255,0.04); border-color: var(--bp-border); color: var(--bp-text);
}
.bp-btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(120,200,230,0.3); }
.bp-hero-bullets { display: grid; gap: 10px; }
.bp-hero-bullets li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--bp-text-2);
}
.bp-tick {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(34,216,158,0.18); color: var(--bp-success);
  font-size: 13px; font-weight: 700;
}

/* Phone mockup */
.bp-hero-visual { display: flex; justify-content: center; }
.bp-phone {
  position: relative;
  width: 320px; height: 660px;
  border-radius: 44px;
  background: linear-gradient(180deg, #0F1A2E 0%, #050810 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 50px 100px -30px rgba(0, 50, 100, 0.5),
              0 0 60px -10px rgba(0,212,255,0.18);
  padding: 14px;
  transform: perspective(1500px) rotateY(-6deg) rotateX(2deg);
}
.bp-phone-notch {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 24px; border-radius: 14px;
  background: #000;
  z-index: 2;
}
.bp-phone-screen {
  position: absolute; inset: 14px;
  border-radius: 32px;
  background: linear-gradient(180deg, #0A1628 0%, #060B14 100%);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.bp-screen-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px 8px;
  font-size: 12px; font-weight: 600; color: var(--bp-text-2);
}
.bp-screen-bar-icons { display: flex; gap: 4px; align-items: center; }
.bp-screen-content {
  flex: 1; padding: 14px 18px 22px;
  display: flex; flex-direction: column; gap: 16px;
}
.bp-screen-greeting .bp-screen-eyebrow {
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--bp-cyan); margin: 0 0 6px; font-weight: 600;
}
.bp-screen-greeting h2 { font-size: 22px; margin: 0 0 4px; font-weight: 700; }
.bp-screen-greeting h2 span { color: var(--bp-cyan); }
.bp-screen-greeting .bp-screen-sub { font-size: 13px; color: var(--bp-text-2); margin: 0; line-height: 1.5; }
.bp-screen-card {
  background: linear-gradient(135deg, rgba(0,212,255,0.10) 0%, rgba(99,102,241,0.06) 100%);
  border: 1px solid rgba(0,212,255,0.18);
  border-radius: 18px; padding: 16px;
}
.bp-screen-card-tag {
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--bp-cyan); margin-bottom: 10px;
}
.bp-screen-card h3 { margin: 0 0 8px; font-size: 18px; line-height: 1.3; }
.bp-screen-card p  { margin: 0 0 14px; font-size: 13px; color: var(--bp-text-2); line-height: 1.5; }
.bp-screen-card-foot { display: flex; justify-content: space-between; align-items: center; }
.bp-screen-card-time { font-size: 12px; color: var(--bp-text-3); }
.bp-screen-card-btn {
  background: var(--bp-cyan); color: var(--bp-bg);
  border: none; border-radius: 10px; padding: 9px 16px;
  font-size: 12px; font-weight: 700;
}
.bp-screen-streak {
  background: rgba(255,255,255,0.04);
  border-radius: 16px; padding: 14px 16px;
  border: 1px solid var(--bp-border);
}
.bp-screen-streak-label { font-size: 11px; color: var(--bp-text-3); text-transform: uppercase; letter-spacing: 0.14em; }
.bp-screen-streak-num { font-size: 32px; font-weight: 800; color: var(--bp-text); margin: 4px 0; }
.bp-screen-streak-num span { font-size: 12px; font-weight: 500; color: var(--bp-text-3); margin-left: 6px; }
.bp-screen-streak-dots { display: flex; gap: 6px; }
.bp-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.bp-dot-on { background: var(--bp-cyan); }
.bp-dot-now { background: linear-gradient(135deg, var(--bp-cyan), #C084FC); animation: bp-pulse 2s infinite; }
.bp-screen-bottom-cta {
  margin-top: auto;
  background: linear-gradient(135deg, var(--bp-cyan), var(--bp-cyan-2));
  color: var(--bp-bg);
  border: none; border-radius: 14px;
  padding: 14px; font-size: 14px; font-weight: 700;
}

/* Trust strip */
.bp-trust-strip {
  max-width: 1280px; margin: 60px auto 0; padding: 0 24px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
  font-size: 13px; color: var(--bp-text-3);
}
.bp-trust-strip > span:first-child { color: var(--bp-text-2); font-weight: 600; }
.bp-trust-item { color: var(--bp-text-2); }

/* ─── Sections (shared) ────────────────────────────────────────── */
.bp-section { padding: 80px 24px; }
.bp-section-darker { background: rgba(0,0,0,0.25); border-top: 1px solid var(--bp-border); border-bottom: 1px solid var(--bp-border); }
.bp-section-inner { max-width: 1280px; margin: 0 auto; }
.bp-section-header { text-align: center; max-width: 780px; margin: 0 auto 50px; }
.bp-section-tag {
  display: inline-block; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--bp-cyan); font-weight: 600;
  padding: 6px 14px; border: 1px solid var(--bp-border); border-radius: 100px;
  background: rgba(0,212,255,0.05);
  margin-bottom: 18px;
}
.bp-section-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(32px, 4.4vw, 50px);
  line-height: 1.12; margin: 0 0 18px; font-weight: 700; letter-spacing: -0.015em;
}
.bp-section-sub { font-size: 16px; color: var(--bp-text-2); line-height: 1.7; max-width: 640px; margin: 0 auto; }

/* Reveal anim */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ─── Tour grid ────────────────────────────────────────────────── */
.bp-tour-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.bp-tour-card {
  background: var(--bp-surface);
  border: 1px solid var(--bp-border);
  border-radius: var(--bp-radius);
  padding: 28px 24px;
  backdrop-filter: blur(10px);
  transition: all .25s ease;
}
.bp-tour-card:hover { transform: translateY(-4px); border-color: rgba(0,212,255,0.35); box-shadow: var(--bp-shadow); }
.bp-tour-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(0,212,255,0.18), rgba(99,102,241,0.10));
  color: var(--bp-cyan); margin-bottom: 18px;
}
.bp-tour-card h3 { margin: 0 0 8px; font-size: 18px; font-weight: 700; }
.bp-tour-card p { margin: 0; font-size: 14px; color: var(--bp-text-2); line-height: 1.6; }

/* ─── Screens grid ─────────────────────────────────────────────── */
.bp-screens-grid {
  display: grid; gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.bp-screen-card-frame {
  margin: 0;
  display: flex; flex-direction: column; gap: 16px;
}
.bp-screen-mock {
  width: 100%; aspect-ratio: 9/19;
  border-radius: 28px;
  background: linear-gradient(180deg, #0A1628, #060B14);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 30px 60px -25px rgba(0,212,255,0.30);
  padding: 12px;
}
.bp-mock-bar {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: var(--bp-text-3); padding: 6px 4px 12px;
  letter-spacing: 0.06em;
}
.bp-mock-body {
  flex: 1; padding: 8px 6px; display: flex; flex-direction: column; gap: 12px;
}
/* Per-screen variants */
.bp-mock-home .bp-mock-greeting { font-size: 14px; font-weight: 700; }
.bp-mock-card-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
.bp-mock-card-mini {
  background: rgba(255,255,255,0.05); padding: 14px 8px;
  border-radius: 12px; font-size: 11px; text-align: center;
  border: 1px solid var(--bp-border);
}
.bp-mock-feature-card {
  background: linear-gradient(135deg, rgba(0,212,255,0.16), rgba(99,102,241,0.10));
  padding: 18px 14px; border-radius: 14px;
  font-size: 12px; font-weight: 600;
  border: 1px solid rgba(0,212,255,0.25);
}
.bp-mock-coach { gap: 8px; }
.bp-mock-bubble { padding: 8px 10px; border-radius: 12px; font-size: 11px; line-height: 1.4; max-width: 88%; }
.bp-mock-bubble-coach { background: rgba(255,255,255,0.06); align-self: flex-start; }
.bp-mock-bubble-user { background: var(--bp-cyan); color: var(--bp-bg); align-self: flex-end; font-weight: 500; }
.bp-mock-input { margin-top: auto; padding: 10px; border-radius: 12px; background: rgba(255,255,255,0.04); font-size: 11px; color: var(--bp-text-3); border: 1px solid var(--bp-border); text-align: center; }
.bp-mock-mission .bp-mock-mission-tag { font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bp-cyan); }
.bp-mock-mission h4 { margin: 6px 0; font-size: 14px; font-weight: 700; }
.bp-mock-mission p { margin: 0; font-size: 11px; color: var(--bp-text-2); line-height: 1.45; }
.bp-mock-action-row { margin-top: auto; display: flex; gap: 6px; }
.bp-mock-action-row button { flex: 1; padding: 8px; font-size: 11px; border-radius: 10px; border: none; background: var(--bp-cyan); color: var(--bp-bg); font-weight: 700; }
.bp-mock-action-soft { background: transparent !important; color: var(--bp-text-3) !important; border: 1px solid var(--bp-border) !important; }
.bp-mock-journal { align-items: center; justify-content: center; }
.bp-mock-journal-meta { font-size: 10px; color: var(--bp-text-3); }
.bp-mock-mic {
  position: relative;
  width: 80px; height: 80px;
  margin: 16px 0;
  display: flex; align-items: center; justify-content: center;
}
.bp-mock-mic-dot {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--bp-cyan), var(--bp-cyan-2));
  position: relative; z-index: 2;
}
.bp-mock-mic-rings::before, .bp-mock-mic-rings::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--bp-cyan); opacity: 0;
  animation: bp-mic 2s infinite;
}
.bp-mock-mic-rings::after { animation-delay: 1s; }
@keyframes bp-mic {
  0% { transform: scale(0.6); opacity: 0.7; }
  100% { transform: scale(1.4); opacity: 0; }
}
.bp-mock-journal-pulse { font-family: monospace; font-size: 14px; color: var(--bp-cyan); letter-spacing: 0.1em; }
.bp-mock-journal-meta-foot { font-size: 9px; color: var(--bp-text-3); margin: 0; text-align: center; }
.bp-mock-patterns h4 { margin: 0 0 10px; font-size: 13px; font-weight: 700; }
.bp-mock-bar-chart { display: grid; gap: 8px; }
.bp-mock-bar-row { display: flex; justify-content: space-between; font-size: 11px; padding: 8px 10px; background: rgba(255,255,255,0.04); border-radius: 10px; border: 1px solid var(--bp-border); }
.bp-mock-bar-up { color: var(--bp-success); font-weight: 700; }
.bp-mock-bar-down { color: #F87171; font-weight: 700; }

.bp-screen-card-frame figcaption h4 { margin: 0 0 4px; font-size: 16px; font-weight: 700; }
.bp-screen-card-frame figcaption p { margin: 0; font-size: 13px; color: var(--bp-text-2); line-height: 1.5; }

/* ─── Tech grid ────────────────────────────────────────────────── */
.bp-tech-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.bp-tech-card {
  background: var(--bp-surface);
  border: 1px solid var(--bp-border);
  border-radius: var(--bp-radius);
  padding: 26px 24px;
  backdrop-filter: blur(10px);
}
.bp-tech-tag {
  display: inline-block; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--bp-cyan); font-weight: 600; margin-bottom: 12px;
}
.bp-tech-card h4 { margin: 0 0 8px; font-size: 16px; font-weight: 700; }
.bp-tech-card p { margin: 0; font-size: 13px; color: var(--bp-text-2); line-height: 1.6; }
.bp-tech-card code {
  font-size: 12px;
  background: rgba(0,212,255,0.08);
  padding: 2px 6px; border-radius: 4px;
  color: var(--bp-cyan);
}

/* ─── FAQ ──────────────────────────────────────────────────────── */
.bp-faq-inner { max-width: 800px; }
.bp-faq { display: grid; gap: 12px; }
.bp-faq details {
  background: var(--bp-surface);
  border: 1px solid var(--bp-border);
  border-radius: var(--bp-radius-sm);
  padding: 18px 22px;
  backdrop-filter: blur(8px);
  transition: border-color .2s ease;
}
.bp-faq details[open] { border-color: rgba(0,212,255,0.30); }
.bp-faq summary {
  cursor: pointer; font-weight: 600; font-size: 15px; list-style: none;
  position: relative; padding-right: 30px;
}
.bp-faq summary::-webkit-details-marker { display: none; }
.bp-faq summary::after {
  content: '+'; position: absolute; right: 0; top: 50%;
  transform: translateY(-50%); font-size: 22px; color: var(--bp-cyan);
  transition: transform .2s ease;
}
.bp-faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.bp-faq details p { margin: 12px 0 0; font-size: 14px; color: var(--bp-text-2); line-height: 1.7; }
.bp-faq code {
  font-size: 13px; background: rgba(0,212,255,0.08); color: var(--bp-cyan);
  padding: 2px 6px; border-radius: 4px;
}

/* ─── Final CTA ─────────────────────────────────────────────────── */
.bp-section-cta { padding: 100px 24px; }
.bp-cta-block {
  max-width: 720px; margin: 0 auto; text-align: center;
  background: linear-gradient(135deg, rgba(0,212,255,0.14) 0%, rgba(99,102,241,0.08) 100%);
  border: 1px solid rgba(0,212,255,0.28);
  border-radius: 28px;
  padding: 56px 40px;
  backdrop-filter: blur(14px);
}
.bp-cta-title { font-size: clamp(28px, 4vw, 42px); margin: 0 0 14px; font-weight: 700; }
.bp-cta-sub { font-size: 16px; color: var(--bp-text-2); margin: 0 0 28px; line-height: 1.6; }
.bp-cta-form {
  display: flex; gap: 10px; flex-wrap: wrap; max-width: 540px; margin: 0 auto 16px;
}
.bp-cta-form input {
  flex: 1; min-width: 220px;
  padding: 14px 16px; font-size: 14px; font-family: inherit;
  background: rgba(255,255,255,0.04); border: 1px solid var(--bp-border);
  border-radius: 12px; color: var(--bp-text);
  outline: none;
}
.bp-cta-form input:focus { border-color: var(--bp-cyan); }
.bp-cta-form input::placeholder { color: var(--bp-text-3); }
.bp-cta-note { font-size: 12px; color: var(--bp-text-3); max-width: 480px; margin: 0 auto; line-height: 1.6; }

/* ─── Footer ───────────────────────────────────────────────────── */
.bp-footer {
  border-top: 1px solid var(--bp-border);
  padding: 30px 24px;
  font-size: 13px; color: var(--bp-text-3);
}
.bp-footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  align-items: center;
}
.bp-footer-links { display: flex; gap: 22px; }
.bp-footer-links a:hover { color: var(--bp-text); }

/* ─── Maya-pivot additions ─────────────────────────────────────── */

/* Serif headlines (Fraunces) for warmth — distinguishes BondOS from CharmEngine */
.bp-title-fraunces {
  font-family: 'Fraunces', 'Space Grotesk', serif !important;
  font-weight: 600 !important;
  letter-spacing: -0.02em !important;
}
.bp-hero-title-quiet {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  letter-spacing: -0.025em;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1.02;
  text-transform: lowercase;
}
.bp-hero-sub-quiet { font-size: 19px; max-width: 580px; line-height: 1.75; }

/* Hero qualifying waitlist form */
.bp-hero-form {
  display: grid; grid-template-columns: 1.4fr 1.2fr auto; gap: 10px;
  max-width: 620px; margin: 24px 0 12px;
}
@media (max-width: 720px) { .bp-hero-form { grid-template-columns: 1fr; } }
.bp-hero-form input,
.bp-hero-form select {
  padding: 14px 16px; font-size: 14px; font-family: inherit;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--bp-border);
  border-radius: 12px; color: var(--bp-text);
  outline: none; transition: border-color .15s ease;
}
.bp-hero-form input::placeholder, .bp-hero-form select { color: var(--bp-text-3); }
.bp-hero-form input:focus, .bp-hero-form select:focus { border-color: var(--bp-cyan); }
.bp-hero-form select {
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='%23B5C2D2' d='M6 8 1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 30px;
}
.bp-hero-form-note {
  font-size: 12px; color: var(--bp-text-3); margin: 0 0 22px;
  max-width: 540px; line-height: 1.6;
}
.bp-hero-form-note a { color: var(--bp-cyan); }

/* Section padding tweak for warmth — more breathing room */
.bp-section-tight { padding: 70px 24px; }

/* Avatar cards (who this is for) */
.bp-avatars {
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1100px; margin: 0 auto;
}
.bp-avatar-card {
  background: var(--bp-surface);
  border: 1px solid var(--bp-border);
  border-radius: 24px;
  padding: 32px 28px;
  backdrop-filter: blur(12px);
  position: relative;
  transition: all .25s ease;
}
.bp-avatar-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 212, 255, 0.30);
  box-shadow: var(--bp-shadow);
}
.bp-avatar-mark {
  font-family: 'Fraunces', serif;
  font-size: 28px; font-weight: 600;
  background: linear-gradient(135deg, var(--bp-cyan), #6366F1);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  margin-bottom: 14px; line-height: 1;
}
.bp-avatar-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500; font-size: 22px;
  margin: 0 0 14px; line-height: 1.3;
  color: var(--bp-text);
  text-transform: lowercase;
}
.bp-avatar-card > p {
  margin: 0 0 16px;
  font-size: 14px; line-height: 1.7;
  color: var(--bp-text-2);
}
.bp-avatar-card .bp-avatar-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--bp-cyan);
  border-left: 2px solid var(--bp-cyan);
  padding: 8px 0 8px 16px;
  margin: 0;
  line-height: 1.6;
}

/* Privacy promise grid (numbered, anti-Replika) */
.bp-promise-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.bp-promise-card {
  background: var(--bp-surface);
  border: 1px solid var(--bp-border);
  border-radius: 20px;
  padding: 28px 26px;
  backdrop-filter: blur(10px);
}
.bp-promise-num {
  font-family: 'Fraunces', serif;
  font-size: 36px; font-weight: 600;
  background: linear-gradient(135deg, var(--bp-cyan), #6366F1);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1; margin-bottom: 14px;
}
.bp-promise-card h4 {
  font-family: 'Fraunces', serif;
  font-weight: 500; font-size: 18px;
  margin: 0 0 10px; line-height: 1.35;
  color: var(--bp-text);
}
.bp-promise-card p {
  margin: 0; font-size: 14px; line-height: 1.7; color: var(--bp-text-2);
}
.bp-promise-card a { color: var(--bp-cyan); }
.bp-promise-card code {
  font-size: 12px;
  background: rgba(0, 212, 255, 0.10);
  color: var(--bp-cyan);
  padding: 2px 6px; border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
}

/* Avatar lowercase headlines on small layouts */
.bp-avatar-card h3, .bp-promise-card h4 { text-transform: lowercase; }

/* CTA form 3-field */
.bp-cta-form {
  display: grid; grid-template-columns: 1.4fr 1.2fr auto; gap: 10px;
  max-width: 640px; margin: 0 auto 18px;
}
@media (max-width: 720px) { .bp-cta-form { grid-template-columns: 1fr; } }
.bp-cta-form select {
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='%23B5C2D2' d='M6 8 1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 30px;
  padding: 14px 16px; font-size: 14px; font-family: inherit;
  background-color: rgba(255,255,255,0.04);
  border: 1px solid var(--bp-border);
  border-radius: 12px; color: var(--bp-text);
}

/* Lowercase styling for the warmer surfaces */
.bp-eyebrow span:not(.bp-eyebrow-dot) { text-transform: lowercase; }
.bp-section-tag { text-transform: lowercase; letter-spacing: 0.14em; }
.bp-cta-title, .bp-cta-form input::placeholder, .bp-cta-form select { text-transform: lowercase; }

/* ═════════════════════════════════════════════════════════════════
   BondOS visual identity — distinct from CharmEngine
   - Fraunces serif headlines (warm, editorial)
   - Colored feature icons (legacy heritage: cyan/pink/amber/violet/emerald)
   - Stats with icon-on-left layout (vs CharmEngine's number-bold)
   - Centered hero with phone showcase
   - Soft organic curves vs hard hexagons
   ═════════════════════════════════════════════════════════════════ */

/* Use Fraunces from a separate import — fall back to Inter if not loaded */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&display=swap');

/* All BondOS section titles get Fraunces */
.bp-section-title,
.bp-cta-title,
.bp-hero-title,
.bp-tour-card h3,
.bp-step-body h3,
.bp-promise-card h4,
.bp-testimonial blockquote,
.bp-screen-greeting h2,
.bp-screen-card h3 {
  font-family: 'Fraunces', 'Space Grotesk', 'Inter', serif !important;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.bp-hero-title { font-weight: 500; }
.bp-section-title { font-weight: 600; }

/* Stat bar — BondOS-specific: icon left + number/label right (NOT CharmEngine's centered stack) */
.bp-stats {
  padding: 50px 24px;
  border-top: 1px solid var(--bp-border);
  border-bottom: 1px solid var(--bp-border);
  background: rgba(0, 212, 255, 0.03);
  position: relative; z-index: 1;
}
.bp-stats-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.bp-stat-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--bp-border);
  border-radius: 16px;
  transition: all .25s ease;
}
.bp-stat-item:hover { transform: translateY(-2px); border-color: rgba(0, 212, 255, 0.30); }
.bp-stat-icon {
  flex-shrink: 0;
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(0,212,255,0.18), rgba(99,102,241,0.10));
  color: var(--bp-cyan);
}
.bp-stat-body { display: flex; flex-direction: column; gap: 4px; }
.bp-stat-value {
  font-family: 'Fraunces', serif;
  font-size: 26px; font-weight: 700;
  color: var(--bp-text); line-height: 1;
}
.bp-stat-label {
  font-size: 13px; color: var(--bp-text-3);
  text-transform: lowercase; letter-spacing: 0.02em;
}

/* Colored feature icons (legacy heritage) — each card gets its own colored icon background */
.bp-tour-grid .bp-tour-card:nth-child(1) .bp-tour-icon {
  background: linear-gradient(135deg, #00D4FF, #0EA5E9);
  color: #FFFFFF;
}
.bp-tour-grid .bp-tour-card:nth-child(2) .bp-tour-icon {
  background: linear-gradient(135deg, #EC4899, #F43F5E);
  color: #FFFFFF;
}
.bp-tour-grid .bp-tour-card:nth-child(3) .bp-tour-icon {
  background: linear-gradient(135deg, #F59E0B, #F97316);
  color: #FFFFFF;
}
.bp-tour-grid .bp-tour-card:nth-child(4) .bp-tour-icon {
  background: linear-gradient(135deg, #8B5CF6, #6366F1);
  color: #FFFFFF;
}
.bp-tour-grid .bp-tour-card:nth-child(5) .bp-tour-icon {
  background: linear-gradient(135deg, #10B981, #14B8A6);
  color: #FFFFFF;
}
.bp-tour-grid .bp-tour-card:nth-child(6) .bp-tour-icon {
  background: linear-gradient(135deg, #06B6D4, #3B82F6);
  color: #FFFFFF;
}

/* Testimonial: stars + quote first, then avatar+name (legacy heritage layout) */
.bp-test-stars {
  font-size: 18px; color: #F59E0B;
  letter-spacing: 2px;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 6px rgba(245, 158, 11, 0.45));
}
.bp-testimonial blockquote {
  font-family: 'Fraunces', serif !important;
  font-size: 17px;
  font-weight: 500 !important;
  line-height: 1.7;
  font-style: italic;
  color: var(--bp-text);
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}
.bp-testimonial figcaption {
  display: flex; align-items: center; gap: 14px;
  padding-top: 16px; border-top: 1px solid var(--bp-border);
}
.bp-test-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--bp-cyan), #6366F1);
  color: var(--bp-bg); font-weight: 800; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.30);
}
.bp-test-name { font-weight: 700; color: var(--bp-text); display: block; font-size: 14px; }
.bp-test-role { font-size: 12px; color: var(--bp-text-3); display: block; }

/* Mobile menu */
.bp-mobile-toggle { display: none; background: none; border: none; color: var(--bp-text); cursor: pointer; padding: 8px; }
.bp-mobile-menu {
  display: none; flex-direction: column;
  background: rgba(6, 11, 20, 0.95);
  border-top: 1px solid var(--bp-border);
  padding: 16px 24px;
  backdrop-filter: blur(16px);
}
.bp-mobile-menu.is-open { display: flex; }
.bp-mobile-menu a { padding: 12px 0; font-size: 15px; color: var(--bp-text-2); border-bottom: 1px solid var(--bp-border); }
.bp-mobile-menu a:last-child { border-bottom: none; }
.bp-mobile-cta { background: var(--bp-cyan); color: var(--bp-bg) !important; padding: 12px 18px !important; border-radius: 10px; margin-top: 8px; font-weight: 700 !important; text-align: center; }

@media (max-width: 880px) {
  .bp-nav-links { display: none; }
  .bp-mobile-toggle { display: block; }
}

/* Support form 2-column */
.bp-form-row-2 {
  display: grid; gap: 14px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 540px) { .bp-form-row-2 { grid-template-columns: 1fr; } }

/* Support form */
.bp-support-form {
  display: grid; gap: 18px;
  background: var(--bp-surface); border: 1px solid var(--bp-border);
  border-radius: 24px; padding: 36px 32px;
  backdrop-filter: blur(12px);
}

/* CTA trust pills */
.bp-cta-trust {
  display: flex; flex-wrap: wrap; gap: 18px; justify-content: center;
  margin-top: 24px; font-size: 12px; color: var(--bp-text-3);
}
.bp-cta-trust span { display: inline-flex; align-items: center; gap: 6px; }
.bp-cta-trust svg { color: var(--bp-cyan); }

/* CTA form (3-field) */
.bp-cta-form {
  display: grid; grid-template-columns: 1.4fr 1.2fr auto; gap: 10px;
  max-width: 660px; margin: 0 auto;
}
@media (max-width: 720px) { .bp-cta-form { grid-template-columns: 1fr; } }

.bp-form-status { font-size: 13px; color: var(--bp-cyan); margin: 12px 0 0; text-align: center; min-height: 18px; }

/* Hero form (3-field) */
.bp-hero-form {
  display: grid; grid-template-columns: 1.4fr 1.2fr auto; gap: 10px;
  max-width: 620px; margin: 24px 0 12px;
}
@media (max-width: 720px) { .bp-hero-form { grid-template-columns: 1fr; } }
.bp-hero-form input, .bp-hero-form select, .bp-cta-form input, .bp-cta-form select {
  padding: 14px 16px; font-size: 14px; font-family: inherit;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--bp-border);
  border-radius: 12px; color: var(--bp-text);
  outline: none;
}
.bp-hero-form select, .bp-cta-form select {
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='%23B5C2D2' d='M6 8 1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 30px;
}
.bp-hero-form-note { font-size: 12px; color: var(--bp-text-3); margin: 0 0 22px; line-height: 1.6; max-width: 540px; }

/* Persistent footer lead-capture overlay (existing) */
/* ─── Persistent footer lead-capture overlay ───────────────────── */
.bp-floor-cta {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  z-index: 40;
  background: linear-gradient(135deg, rgba(0,212,255,0.18) 0%, rgba(99,102,241,0.14) 100%);
  border: 1px solid rgba(0,212,255,0.35);
  border-radius: 18px;
  padding: 14px 18px;
  backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 24px 60px -10px rgba(0, 30, 60, 0.5);
  max-width: 980px; margin-left: auto; margin-right: auto;
  transform: translateY(0);
  transition: transform .35s ease, opacity .35s ease;
}
.bp-floor-cta.is-hidden { transform: translateY(150%); opacity: 0; pointer-events: none; }
.bp-floor-text { font-size: 13px; color: var(--bp-text); font-weight: 500; line-height: 1.4; }
.bp-floor-text strong { color: var(--bp-cyan); }
.bp-floor-actions { display: flex; gap: 8px; align-items: center; }
.bp-floor-actions .bp-btn-primary { padding: 8px 14px; font-size: 13px; }
.bp-floor-close {
  background: none; border: none; color: var(--bp-text-3);
  font-size: 18px; cursor: pointer; padding: 4px 8px;
}
.bp-floor-close:hover { color: var(--bp-text); }

@media (max-width: 600px) {
  .bp-floor-cta { padding: 10px 12px; flex-direction: column; align-items: stretch; gap: 10px; }
}

/* ─── Insights — rich blog grid (BondOS theme) ───────────────── */
.ce-insight-tag, .ce-insights-meta-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 12px; border: 1px solid var(--bp-border);
  border-radius: 6px;
}
.ce-insight-featured {
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px;
  background: var(--bp-surface); border: 1px solid var(--bp-border);
  border-radius: 28px; overflow: hidden;
  backdrop-filter: blur(12px); transition: all .25s ease;
}
.ce-insight-featured:hover { border-color: rgba(0,212,255,0.30); box-shadow: var(--bp-shadow); }
@media (max-width: 880px) { .ce-insight-featured { grid-template-columns: 1fr; } }
.ce-insight-featured-image { background: #060B14; min-height: 320px; }
.ce-insight-featured-body { padding: 36px 32px; display: flex; flex-direction: column; gap: 14px; }
.ce-insight-featured-body h2 {
  font-family: 'Fraunces', serif !important;
  font-size: clamp(22px, 2.5vw, 30px); line-height: 1.25; margin: 0; font-weight: 600;
}
.ce-insight-featured-body h2 a:hover { color: var(--bp-cyan); }
.ce-insight-featured-body p { font-size: 15px; color: var(--bp-text-2); line-height: 1.7; margin: 0; }
.ce-insight-featured-meta {
  display: flex; flex-wrap: wrap; gap: 8px;
  font-size: 12px; color: var(--bp-text-3);
  font-family: 'JetBrains Mono', monospace;
}

.ce-insight-image-placeholder {
  width: 100%; height: 100%; min-height: 240px;
  position: relative;
  display: flex; align-items: flex-end; padding: 18px;
  background: linear-gradient(135deg, #0F1A2E 0%, #060B14 50%, #0A1628 100%);
  overflow: hidden;
}
.ce-insight-image-placeholder::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 120%; height: 120%; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0,212,255,0.20) 0%, transparent 60%);
  filter: blur(40px);
}
.ce-insight-image-placeholder::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.10) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  pointer-events: none;
}
.bp-image-2::before { background: radial-gradient(circle, rgba(99,102,241,0.20) 0%, transparent 60%); }
.bp-image-3::before { background: radial-gradient(circle, rgba(236,72,153,0.20) 0%, transparent 60%); }
.bp-image-4::before { background: radial-gradient(circle, rgba(34,216,158,0.20) 0%, transparent 60%); }
.bp-image-5::before { background: radial-gradient(circle, rgba(245,158,11,0.20) 0%, transparent 60%); }
.bp-image-6::before { background: radial-gradient(circle, rgba(192,132,252,0.20) 0%, transparent 60%); }
.bp-image-7::before { background: radial-gradient(circle, rgba(139,92,246,0.20) 0%, transparent 60%); }

.ce-insight-image-tag {
  position: relative; z-index: 2;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  background: rgba(0,0,0,0.40); padding: 5px 10px; border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.10);
}

.ce-insight-card-rich {
  display: flex; flex-direction: column;
  background: var(--bp-surface); border: 1px solid var(--bp-border);
  border-radius: 20px; overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all .25s ease;
}
.ce-insight-card-rich:hover { transform: translateY(-3px); border-color: rgba(0,212,255,0.30); box-shadow: var(--bp-shadow); }
.ce-insight-card-image { width: 100%; aspect-ratio: 16/9; background: #060B14; }
.ce-insight-card-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.ce-insight-card-body h3 {
  font-family: 'Fraunces', serif !important;
  font-size: 18px; font-weight: 600; line-height: 1.3; margin: 0;
}
.ce-insight-card-body h3 a:hover { color: var(--bp-cyan); }
.ce-insight-card-body p { font-size: 14px; color: var(--bp-text-2); line-height: 1.65; margin: 0; flex: 1; }

.ce-insight-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.ce-insight-cat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; padding: 8px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--bp-border);
  color: var(--bp-text-2);
  border-radius: 100px;
  cursor: pointer; transition: all .15s ease;
}
.ce-insight-cat:hover { border-color: rgba(0,212,255,0.30); color: var(--bp-text); }
.ce-insight-cat-active { background: var(--bp-cyan); border-color: var(--bp-cyan); color: var(--bp-bg); }

/* ─── DSR form ─────────────────────────────────────────────────── */
.bp-dsr-form {
  display: grid; gap: 18px;
  background: var(--bp-surface);
  border: 1px solid var(--bp-border);
  border-radius: 24px;
  padding: 36px 32px;
  backdrop-filter: blur(12px);
  margin-top: 12px;
}
.bp-form-row { display: grid; gap: 6px; }
.bp-form-row label {
  font-size: 13px; font-weight: 600; color: var(--bp-text);
  text-transform: lowercase;
}
.bp-form-row small { font-size: 12px; color: var(--bp-text-3); margin-top: 2px; }
.bp-form-row input[type="text"],
.bp-form-row input[type="email"],
.bp-form-row select,
.bp-form-row textarea {
  padding: 12px 14px;
  font-size: 14px; font-family: inherit;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--bp-border); border-radius: 10px;
  color: var(--bp-text); outline: none;
  transition: border-color .15s ease;
}
.bp-form-row input:focus,
.bp-form-row select:focus,
.bp-form-row textarea:focus { border-color: var(--bp-cyan); }
.bp-form-row select {
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='%23B5C2D2' d='M6 8 1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 30px;
}
.bp-form-row textarea { resize: vertical; min-height: 88px; }
.bp-form-row-check label {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 13px; font-weight: 400; color: var(--bp-text-2);
  line-height: 1.6; cursor: pointer; text-transform: none;
}
.bp-form-row-check input[type="checkbox"] {
  margin-top: 2px; flex-shrink: 0;
  width: 18px; height: 18px;
  accent-color: var(--bp-cyan);
}
.bp-form-note {
  font-size: 12px; color: var(--bp-text-3); margin: 12px 0 0;
  line-height: 1.7; text-align: center;
}
.bp-form-note a { color: var(--bp-cyan); }

/* ─── Responsive ───────────────────────────────────────────────── */
@media (max-width: 760px) {
  .bp-nav-links { display: none; }
  .bp-section { padding: 60px 20px; }
  .bp-hero { padding: 60px 20px 40px; }
}
