/* FutureBridge Consulting — payment portal design system
   (matches futurebridgeconsulting.com: dark navy, DM Sans, Instrument Serif) */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: hsl(222 60% 5%);
  --surface: hsl(222 50% 9%);
  --surface-alt: hsl(222 45% 12%);
  --text: hsl(0 0% 96%);
  --muted: hsl(220 15% 55%);
  --muted-2: hsl(220 15% 40%);
  --stroke: hsl(222 30% 18%);
  --accent: hsl(227 100% 60%);
  --accent-glow: hsl(227 100% 65%);
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 1040px; margin: 0 auto; padding: 0 24px; }

em.brand {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-glow) 50%, #89AACC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Header ---- */
header {
  border-bottom: 1px solid var(--stroke);
  background: hsl(222 60% 5% / 0.85);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
.logo { font-size: 19px; font-weight: 700; letter-spacing: -0.02em; color: var(--text); text-decoration: none; }
.nav-links { display: flex; gap: 22px; }
.nav-links a { font-size: 13.5px; font-weight: 500; color: var(--muted); text-decoration: none; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }

/* ---- Hero ---- */
.hero { text-align: center; padding: 72px 0 56px; }
.hero .lock-icon {
  width: 52px; height: 52px;
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
}
.hero .lock-icon svg { width: 24px; height: 24px; color: var(--accent); }
.hero h1 { font-size: 34px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 12px; }
.hero p { font-size: 15px; line-height: 24px; color: var(--muted); max-width: 560px; margin: 0 auto; }

/* ---- Packages ---- */
.section-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); text-align: center; margin-bottom: 10px;
}
.section-title { font-size: 24px; font-weight: 600; text-align: center; margin-bottom: 10px; }
.section-sub {
  font-size: 14px; line-height: 22px; color: var(--muted);
  text-align: center; max-width: 520px; margin: 0 auto 36px;
}
.packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  padding-bottom: 64px;
}
.pkg {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pkg h3 { font-size: 16px; font-weight: 600; }
.pkg p { font-size: 13.5px; line-height: 21px; color: var(--muted); flex: 1; }
.pkg .pkg-note {
  font-size: 12px; font-weight: 500; color: var(--muted-2);
  border-top: 1px solid var(--stroke); padding-top: 12px; margin-top: 4px;
}

/* ---- Assurance strip ---- */
.assure {
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  background: var(--surface);
  padding: 36px 0;
  margin-bottom: 64px;
}
.assure-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.assure-item h4 { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.assure-item p { font-size: 13px; line-height: 20px; color: var(--muted); }

/* ---- Stripe badge ---- */
.stripe-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
}
.stripe-badge b { color: var(--text); font-weight: 700; letter-spacing: -0.01em; }
.stripe-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: #635BFF; }

/* ---- Policy pages ---- */
.policy { max-width: 720px; margin: 0 auto; padding: 56px 24px 80px; }
.policy h1 { font-size: 28px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 8px; }
.policy .updated { font-size: 13px; color: var(--muted-2); margin-bottom: 36px; }
.policy h2 { font-size: 17px; font-weight: 600; margin: 28px 0 10px; }
.policy p, .policy li { font-size: 14px; line-height: 23px; color: var(--muted); }
.policy ul { padding-left: 20px; margin: 8px 0; }
.policy a { color: var(--accent-glow); text-decoration: none; }
.policy a:hover { text-decoration: underline; }

/* ---- Footer ---- */
footer {
  border-top: 1px solid var(--stroke);
  padding: 28px 0 34px;
  text-align: center;
}
.foot-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 18px; margin-bottom: 14px; }
.foot-links a { font-size: 13px; font-weight: 500; color: var(--muted); text-decoration: none; }
.foot-links a:hover { color: var(--text); }
.foot-legal { font-size: 12px; line-height: 19px; color: var(--muted-2); max-width: 640px; margin: 0 auto; }
.foot-legal a { color: var(--muted); text-decoration: none; }
.foot-legal a:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .hero h1 { font-size: 27px; }
  .nav-links { gap: 14px; }
}
