/* === Continuity Office — Theme: Modern Signal (V4: single warm field) === */

:root {
  --bg: #251002;
  --bg2: #181509;
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.74);
  --faint: rgba(255, 255, 255, 0.58);
  --line: rgba(255, 255, 255, 0.16);
  --accent: #a78bfa;
  --accent2: #67e8f9;
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.38);
  --radius: 22px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(900px 700px at 10% 10%, rgba(167, 139, 250, 0.13), transparent 60%),
    radial-gradient(900px 700px at 80% 10%, rgba(103, 232, 249, 0.11), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2) 46%, var(--bg));
  line-height: 1.55;
}
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 4px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(47, 32, 24, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:16px; }
.brand { display:flex; align-items:center; gap:10px; font-weight:700; letter-spacing:0.2px; }
.brand-mark {
  width: 28px; height: 28px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(167,139,250,0.28), rgba(103,232,249,0.22));
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: var(--shadow);
  display:grid; place-items:center;
}
.nav { display:flex; align-items:center; gap:18px; flex-wrap:wrap; justify-content:flex-end; }
.nav a { color: var(--muted); font-size: 14px; }
.nav a:hover { color: var(--text); text-decoration:none; }

.btn {
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 16px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-weight: 650;
  cursor: pointer;
  transition: transform 120ms ease, background 160ms ease, border-color 160ms ease;
}
.btn:hover { transform: translateY(-1px); background: rgba(255,255,255,0.10); text-decoration:none; }
.btn-small { padding: 10px 12px; border-radius: 13px; font-size: 14px; }
.btn-ghost { background: transparent; border: 1px solid var(--line); }
.btn-ghost:hover { background: rgba(255,255,255,0.06); }

/* Inputs */
input, textarea, select {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.22);
  color: var(--text);
  outline: none;
}
select { width: auto; }
input:focus, textarea:focus, select:focus {
  border-color: rgba(103,232,249,0.55);
  box-shadow: 0 0 0 4px rgba(103,232,249,0.12);
}

.section { padding: 72px 0; }
.section.alt {
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.03), transparent);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-head { max-width: 840px; margin-bottom: 28px; }
.section-head h2 { margin:0 0 10px; font-size: clamp(22px, 2.3vw, 30px); }
.section-head p { margin:0; color: var(--muted); }

.hero { padding: 78px 0 46px; }
.hero-grid { display:grid; grid-template-columns: 1.25fr 0.75fr; gap: 26px; align-items:start; }
.eyebrow { margin:0 0 10px; color: var(--faint); font-size: 14px; text-transform: uppercase; letter-spacing: 0.28px; }
h1 { margin: 0 0 12px; font-size: clamp(36px, 5vw, 68px); line-height: 0.98; letter-spacing: -1.8px; }
.lede { margin: 0 0 18px; color: var(--muted); font-size: 18px; max-width: 62ch; }
.cta-row { display:flex; gap:12px; flex-wrap:wrap; margin: 18px 0 16px; }

.trust-row { display:flex; gap:10px; flex-wrap:wrap; }
.trust-pill {
  border:1px solid var(--line);
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  background: rgba(255,255,255,0.04);
}

.hero-card, .offer-card, .mini-card, .form, .contact-card, .faq details {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card { padding: 18px; }
.card-title { margin:0 0 12px; font-size: 16px; color: rgba(103,232,249,0.92); }
.checklist { margin:0; padding-left: 18px; color: var(--muted); }
.checklist li { margin: 10px 0; }
.micro { margin: 12px 0 0; color: var(--faint); font-size: 13px; }

.note {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px dashed rgba(255,255,255,0.22);
  color: var(--muted);
  background: rgba(255,255,255,0.03);
}

.grid-5 { display:grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.mini-card { padding: 14px; box-shadow: none; }
.mini-card h3 { margin:0 0 6px; font-size: 14px; }
.mini-card p { margin:0; color: var(--muted); font-size: 13px; }

.offer-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.offer-card { padding: 18px; display:flex; flex-direction:column; gap: 10px; box-shadow: none; }
.offer-card.featured {
  background: linear-gradient(180deg, rgba(167,139,250,0.16), rgba(255,255,255,0.05));
  border-color: rgba(103,232,249,0.32);
}
.offer-kicker { margin:0; color: var(--faint); font-size: 12px; text-transform: uppercase; letter-spacing: 0.28px; }
.offer-card h3 { margin:0; font-size: 18px; }
.offer-card p { margin:0; color: var(--muted); }
.bullets { margin: 6px 0 0; padding-left: 18px; color: var(--muted); }
.bullets li { margin: 8px 0; }
.offer-actions { margin-top: auto; padding-top: 10px; }

.faq details { padding: 12px 14px; margin-bottom: 10px; box-shadow: none; }
.faq summary { cursor:pointer; font-weight: 650; }
.faq .faq-body p { margin: 10px 0 0; color: var(--muted); }

.contact-grid { display:grid; grid-template-columns: 1fr 0.9fr; gap: 18px; align-items:start; }
.form { padding: 16px; box-shadow: none; }
label { display:grid; gap:6px; margin-bottom:12px; font-size:13px; color: var(--muted); }

.site-footer { border-top: 1px solid var(--line); padding: 26px 0; color: var(--faint); }
.footer-inner { display:flex; justify-content:space-between; gap: 12px; flex-wrap:wrap; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: 1fr 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) { .grid-5 { grid-template-columns: 1fr; } }
