/* Boombree — landing & legal pages */
:root {
  --c1: #5B6CF5;
  --c2: #9C5BF5;
  --c3: #3FB6E8;
  --ink: #1a1c2e;
  --muted: #5b6072;
  --bg: #f7f8fc;
  --card: #ffffff;
  --line: #e9ebf3;
  --radius: 20px;
  --shadow: 0 18px 50px rgba(40, 40, 90, 0.12);
  --grad: linear-gradient(135deg, var(--c1) 0%, var(--c2) 55%, var(--c3) 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--c1); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, 92%); margin: 0 auto; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 248, 252, 0.82);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 66px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 20px; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand img { width: 34px; height: 34px; border-radius: 9px; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { color: var(--muted); font-weight: 600; font-size: 15px; }
.nav a:hover { color: var(--ink); text-decoration: none; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad); color: #fff; font-weight: 700;
  padding: 11px 20px; border-radius: 999px; font-size: 15px;
  box-shadow: 0 8px 22px rgba(91, 108, 245, 0.35);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); box-shadow: 0 12px 28px rgba(91, 108, 245, 0.42); }
.btn.ghost { background: #fff; color: var(--ink); border: 1px solid var(--line); box-shadow: none; }
@media (max-width: 720px){ .nav a:not(.btn){ display:none; } }

/* Hero */
.hero { position: relative; overflow: hidden; background: var(--grad); color: #fff; }
.hero::after {
  content:""; position:absolute; inset:0;
  background: radial-gradient(60% 60% at 80% 10%, rgba(255,255,255,.25), transparent 60%);
  pointer-events:none;
}
.hero .container {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center;
  padding: 84px 0 96px;
}
.hero h1 { font-size: clamp(34px, 5vw, 54px); line-height: 1.08; margin: 0 0 18px; font-weight: 800; letter-spacing: -0.5px; }
.hero p.lead { font-size: clamp(17px, 2.2vw, 21px); color: rgba(255,255,255,.92); margin: 0 0 30px; max-width: 40ch; }
.hero .cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero .btn { background: #fff; color: var(--c1); box-shadow: 0 10px 30px rgba(0,0,0,.18); }
.hero .btn.outline { background: rgba(255,255,255,.12); color:#fff; border:1px solid rgba(255,255,255,.5); box-shadow:none; }
.hero .note { font-size: 13.5px; color: rgba(255,255,255,.8); margin-top: 14px; }

/* Phone mockup */
.phone {
  width: 260px; margin: 0 auto;
  border-radius: 40px; padding: 12px;
  background: #0d0f1c;
  box-shadow: 0 30px 70px rgba(0,0,0,.35), inset 0 0 0 2px rgba(255,255,255,.08);
}
.phone img { border-radius: 30px; display:block; width:100%; }
.phone-wrap { position: relative; }
.phone-wrap .blob { position:absolute; inset:-10% -20%; background: radial-gradient(circle at 50% 40%, rgba(255,255,255,.35), transparent 60%); filter: blur(20px); z-index:0; }
.phone-wrap .phone { position: relative; z-index: 1; }
@media (max-width: 860px){
  .hero .container { grid-template-columns: 1fr; text-align: center; padding: 64px 0 72px; }
  .hero p.lead { margin-left:auto; margin-right:auto; }
  .hero .cta { justify-content: center; }
  .phone { margin-top: 8px; }
}

/* Sections */
section { padding: 84px 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 38px); margin: 0 0 12px; font-weight: 800; letter-spacing:-0.4px; }
.section-head p { color: var(--muted); font-size: 18px; margin: 0; }
.eyebrow { text-transform: uppercase; letter-spacing: 2px; font-size: 13px; font-weight: 800;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Feature grid */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px){ .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .grid { grid-template-columns: 1fr; } }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: 0 6px 24px rgba(40,40,90,.05);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .ic {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(91,108,245,.12); margin-bottom: 16px; font-size: 26px;
}
.card h3 { margin: 0 0 8px; font-size: 19px; }
.card p { margin: 0; color: var(--muted); font-size: 15.5px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 760px){ .steps { grid-template-columns: 1fr; } }
.step { text-align: center; padding: 10px; }
.step .num {
  width: 46px; height: 46px; border-radius: 50%; margin: 0 auto 14px;
  display: grid; place-items: center; font-weight: 800; color: #fff; background: var(--grad);
  box-shadow: 0 8px 20px rgba(91,108,245,.4);
}
.step h3 { margin: 0 0 6px; font-size: 18px; }
.step p { margin: 0; color: var(--muted); font-size: 15.5px; }

/* Gallery */
.gallery { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; }
.gallery .phone { width: 220px; }

/* Privacy band */
.band { background: var(--grad); color: #fff; border-radius: 28px; padding: 56px 40px; text-align: center; }
.band h2 { font-size: clamp(24px, 3vw, 34px); margin: 0 0 12px; }
.band p { color: rgba(255,255,255,.92); max-width: 620px; margin: 0 auto 20px; font-size: 17px; }

/* Footer */
.site-footer { background: #12142a; color: #b9bdd6; padding: 52px 0 34px; }
.site-footer .cols { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.site-footer .brand { color: #fff; }
.site-footer a { color: #c9cdea; }
.site-footer .links { display: flex; gap: 26px; flex-wrap: wrap; align-items: center; }
.site-footer .copy { margin-top: 30px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; font-size: 14px; color: #8a8fb0; }

/* Legal (privacy / terms) */
.legal { background: #fff; }
.legal .container { max-width: 820px; }
.legal-hero { background: var(--grad); color:#fff; padding: 64px 0 46px; }
.legal-hero h1 { font-size: clamp(30px, 4vw, 44px); margin: 0 0 8px; }
.legal-hero p { margin: 0; color: rgba(255,255,255,.9); }
.legal article { padding: 56px 0 80px; }
.legal article h2 { font-size: 23px; margin: 40px 0 12px; }
.legal article h3 { font-size: 18px; margin: 26px 0 8px; }
.legal article p, .legal article li { color: #33374a; font-size: 16px; }
.legal article ul { padding-left: 22px; }
.legal article li { margin: 6px 0; }
.legal .toc { background: var(--bg); border: 1px solid var(--line); border-radius: 16px; padding: 20px 24px; margin-top: 8px; }
.legal .toc a { font-weight: 600; }
.callout { background: #fff8ec; border: 1px solid #f2d9a8; border-radius: 14px; padding: 16px 20px; color: #7a5b1e; }
.updated { color: var(--muted); font-size: 15px; }
