/* CrewFill — Snapshot-first elevated design system
   Official brand: navy #131E3A / orange #F0803A · Plus Jakarta Sans · 8pt grid
   Staging OK · HOLD: domain / Stripe / outbound */

@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap");

:root {
  --navy: #131E3A;
  --navy-deep: #0c1428;
  --navy-mid: #243656;
  --navy-soft: #3d5278;
  --copper: #F0803A;
  --copper-dark: #d96a28;
  --copper-soft: rgba(240, 128, 58, 0.12);

  --bg: #f7f9fc;
  --bg-alt: #eef2f8;
  --white: #ffffff;
  --text: #131E3A;
  --muted: #5a6a84;
  --border: #d8e0ec;
  --border-strong: #b8c5d8;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(19, 30, 58, 0.04), 0 14px 36px rgba(19, 30, 58, 0.07);
  --shadow-lg: 0 4px 8px rgba(19, 30, 58, 0.04), 0 28px 56px rgba(19, 30, 58, 0.11);

  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --max: 1120px;

  --logo-mark-h: 36px;
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

section[id], #top, #main {
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; display: block; }

a { color: var(--copper-dark); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--navy);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; text-decoration: none; }

.container {
  width: min(100% - 2.75rem, var(--max));
  margin-inline: auto;
}
.narrow { width: min(100% - 2.75rem, 680px); margin-inline: auto; }

/* ========== Header ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(240, 128, 58, 0.18);
  backdrop-filter: saturate(1.2) blur(14px);
  -webkit-backdrop-filter: saturate(1.2) blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  flex-shrink: 0;
}
.logo:hover { text-decoration: none; }

.logo-mark {
  height: var(--logo-mark-h);
  width: auto;
  display: block;
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.15rem;
  letter-spacing: -0.035em;
  font-weight: 700;
  line-height: 1;
  color: var(--navy);
}

.nav {
  display: none;
  align-items: center;
  gap: 0.25rem 1.6rem;
}
.nav a {
  color: var(--navy-soft);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav a:hover { color: var(--navy); }
.header-cta {
  flex-shrink: 0;
  margin-left: auto;
}
@media (min-width: 900px) {
  .nav { display: flex; margin-left: auto; }
  .header-cta { margin-left: 0; }
}

/* ========== Buttons ==========
   Copper fill = paid money actions only
   Navy outline = free Snapshot / secondary explore
   Ghost = email / low emphasis */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.3rem;
  border-radius: 10px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.925rem;
  letter-spacing: -0.01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, transform 0.12s ease;
  white-space: normal;
  text-align: center;
  line-height: 1.25;
}
@media (min-width: 480px) {
  .btn { white-space: nowrap; }
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:disabled, .btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-sm { padding: 0.5rem 0.95rem; font-size: 0.84rem; }
.btn-lg { padding: 1rem 1.65rem; font-size: 1.02rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--copper);
  color: #fff;
  border-color: var(--copper);
  box-shadow: 0 1px 2px rgba(217, 101, 40, 0.2), 0 6px 16px rgba(240, 122, 58, 0.28);
}
.btn-primary:hover {
  background: var(--copper-dark);
  border-color: var(--copper-dark);
  color: #fff;
  box-shadow: 0 2px 4px rgba(217, 101, 40, 0.25), 0 10px 24px rgba(240, 122, 58, 0.32);
}

/* Free Snapshot CTA — navy outline, not copper */
.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 1px 2px rgba(19, 30, 58, 0.04), 0 0 0 0 rgba(240, 128, 58, 0);
}
.btn-secondary:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  box-shadow: 0 2px 4px rgba(19, 30, 58, 0.12), 0 0 0 3px rgba(240, 128, 58, 0.18);
}

.btn-outline {
  background: var(--white);
  color: var(--navy);
  border-color: var(--border-strong);
}
.btn-outline:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--bg);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: var(--navy-soft);
  background: var(--bg);
}

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
  color: #fff;
}

/* ========== Trust strip ========== */
.trust-strip {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-bottom: 2px solid var(--copper);
}
.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 0;
  padding: 0.75rem 0;
  text-align: center;
}
.trust-strip span {
  white-space: nowrap;
  padding: 0 1.1rem;
  position: relative;
}
.trust-strip span + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--copper);
  opacity: 0.85;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 3px rgba(240, 128, 58, 0.18);
}
.trust-strip strong { color: #fff; font-weight: 600; }

/* ========== Hero ========== */
/* Background full-bleed; only the grid content is constrained */
.hero {
  display: grid;
  gap: 3rem;
  padding: 3.5rem max(1.375rem, calc((100% - var(--max)) / 2)) 4rem;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
  background:
    radial-gradient(ellipse 55% 50% at 92% 8%, rgba(240, 128, 58, 0.14), transparent 58%),
    radial-gradient(ellipse 45% 40% at 8% 20%, rgba(19, 30, 58, 0.06), transparent 55%),
    linear-gradient(180deg, #f5f7fb 0%, var(--white) 82%);
}

.hero-inner {
  width: 100%;
  margin: 0;
  min-width: 0;
}

@media (min-width: 960px) {
  .hero {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    padding: 5rem max(1.375rem, calc((100% - var(--max)) / 2)) 5.5rem;
    gap: 3.5rem;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.15rem;
  padding: 0.38rem 0.85rem;
  background: rgba(19, 30, 58, 0.06);
  color: var(--navy-soft);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.eyebrow-free {
  background: linear-gradient(135deg, rgba(240, 128, 58, 0.12), rgba(19, 30, 58, 0.05));
  color: var(--navy);
  border: 1px solid rgba(240, 128, 58, 0.28);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}
.eyebrow-free::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 3px rgba(240, 128, 58, 0.22);
  flex-shrink: 0;
}

.hero h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.9rem, 4.2vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: -0.038em;
  font-weight: 700;
  color: var(--navy);
  max-width: 16ch;
}

.hero-lead {
  margin: 0 0 2rem;
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 34rem;
  line-height: 1.75;
}
.hero-lead strong { color: var(--navy); font-weight: 600; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.85rem;
  align-items: center;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--navy-soft);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.hero-trust li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 3px rgba(240, 128, 58, 0.18);
  flex-shrink: 0;
}

.hero-visual {
  padding: 0 1.25rem;
  display: flex;
  justify-content: center;
}
@media (min-width: 960px) {
  .hero-visual { padding: 0; justify-content: flex-end; }
}

.hero-card {
  width: min(100%, 400px);
  background: var(--white);
  border: 1px solid rgba(216, 224, 236, 0.95);
  border-radius: 20px;
  box-shadow:
    0 1px 2px rgba(19, 30, 58, 0.04),
    0 22px 48px rgba(19, 30, 58, 0.1),
    0 0 0 1px rgba(240, 128, 58, 0.08);
  overflow: hidden;
  position: relative;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--copper), rgba(240, 128, 58, 0.15) 70%, transparent);
  z-index: 1;
}
.hero-card-top {
  background:
    radial-gradient(ellipse 80% 70% at 100% 0%, rgba(240, 128, 58, 0.22), transparent 55%),
    linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 1.65rem 1.55rem 1.35rem;
  color: #fff;
}
.hero-card-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 214, 180, 0.78);
  margin: 0 0 0.5rem;
}
.hero-card-title {
  margin: 0 0 1.2rem;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.hero-card-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}
.metric {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.7rem 0.45rem;
  text-align: center;
}
.metric-val {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.hero-card-metrics .metric:first-child {
  background: rgba(240, 128, 58, 0.16);
  border-color: rgba(240, 128, 58, 0.35);
}
.hero-card-metrics .metric:first-child .metric-val {
  color: #ffd2b0;
}
.metric-label {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.62rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.hero-card-body {
  padding: 1.2rem 1.55rem 1.4rem;
  background: var(--white);
}
.hero-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--bg-alt);
  font-size: 0.9rem;
}
.hero-card-row:last-child { border-bottom: none; }
.hero-card-row span { color: var(--muted); }
.hero-card-row strong { color: var(--navy); font-weight: 600; }
.badge-ok {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.85rem;
}
.badge-ok::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(240, 128, 58, 0.14);
  box-shadow: inset 0 0 0 3.5px var(--copper);
}
.badge-free {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
}

/* ========== Sections ========== */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg); }
.section-navy {
  background: var(--navy);
  color: #fff;
}
.section-navy h2 { color: #fff; }

.section-lead {
  margin: -0.1rem 0 2.5rem;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 38rem;
  line-height: 1.7;
}
.section-lead.light { color: rgba(255, 255, 255, 0.72); }

.section-head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}
.section-head .section-lead { margin-bottom: 0; }

h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  letter-spacing: -0.032em;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--navy);
}

/* Offer facts */
.facts {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 720px) {
  .facts { grid-template-columns: repeat(4, 1fr); }
}
.fact {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.15rem;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.fact::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(240, 128, 58, 0.55), transparent);
  opacity: 0.7;
}
.fact:hover {
  border-color: rgba(240, 128, 58, 0.35);
  box-shadow: 0 2px 4px rgba(19, 30, 58, 0.04), 0 16px 32px rgba(19, 30, 58, 0.08);
  transform: translateY(-2px);
}
.fact:first-child .fact-val { color: var(--copper); }
.fact-val {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
  line-height: 1.1;
}
.fact-label {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
}

/* Steps */
.steps {
  display: grid;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 720px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1040px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
}

.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.65rem 1.4rem;
  box-shadow: var(--shadow);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: -0.02em;
}
.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.925rem;
  line-height: 1.65;
}

/* Pricing */
.pricing-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 860px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  position: relative;
}
.price-card-free {
  border-color: var(--navy);
  box-shadow: 0 1px 2px rgba(19, 30, 58, 0.06), 0 18px 40px rgba(19, 30, 58, 0.1);
  background: linear-gradient(180deg, #f7f9fc 0%, #fff 45%);
  order: -1;
}
.price-card-free .price-features li::before {
  background: var(--navy);
}
@media (min-width: 860px) {
  .price-card-free { order: 0; transform: scale(1.02); z-index: 1; }
}
.price-card-featured {
  border-color: rgba(240, 122, 58, 0.45);
  box-shadow: 0 1px 2px rgba(240, 122, 58, 0.06), 0 12px 28px rgba(240, 128, 58, 0.1);
  background: linear-gradient(180deg, #fffaf7 0%, #fff 42%);
}
.price-badge {
  position: absolute;
  top: -0.6rem;
  left: 1.35rem;
  margin: 0;
  padding: 0.22rem 0.65rem;
  background: var(--navy);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 999px;
}
.price-badge-paid {
  background: var(--copper);
}
.price-amount {
  margin: 0.35rem 0 0.2rem;
  font-size: 2.35rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--navy);
  line-height: 1.05;
}
.price-per {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: -0.01em;
}
.price-note {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.875rem;
}
.price-features {
  margin: 0 0 1.6rem;
  padding: 0;
  list-style: none;
  flex: 1;
}
.price-features li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.35rem;
  color: var(--navy-soft);
  font-size: 0.925rem;
  border-top: 1px solid var(--bg-alt);
}
.price-features li:first-child { border-top: none; }
.price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--navy-soft);
}
.price-card-featured .price-features li::before {
  background: var(--copper);
}

.pricing-footnote {
  margin: 1.75rem 0 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}
.pricing-footnote a { font-weight: 600; }

/* Guarantee */
.guarantee-inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.85rem;
  box-shadow: var(--shadow);
}
@media (min-width: 640px) {
  .guarantee-inner {
    grid-template-columns: auto 1fr;
    gap: 2rem;
    padding: 2.35rem 2.5rem;
  }
}
.guarantee-icon { width: 64px; height: 64px; flex-shrink: 0; }
.guarantee-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.guarantee-inner strong { color: var(--navy); }

/* Trust / TCPA note */
.trust-panel {
  display: grid;
  gap: 1.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 720px) {
  .trust-panel { grid-template-columns: repeat(3, 1fr); }
}
.trust-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow);
}
.trust-item h3 { margin-bottom: 0.55rem; }
.trust-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.925rem;
  line-height: 1.65;
}

/* Chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.chip {
  display: inline-block;
  padding: 0.5rem 0.95rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.01em;
}

/* FAQ */
.faq-list { display: grid; gap: 0.65rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.1rem 1.2rem;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  padding: 1.05rem 0;
  list-style: none;
  letter-spacing: -0.015em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--navy-soft);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  margin: 0 0 1.1rem;
  color: var(--muted);
  padding-right: 1.5rem;
  font-size: 0.975rem;
}

/* CTA band */
.section-cta {
  background:
    radial-gradient(ellipse 70% 80% at 20% 100%, rgba(240, 128, 58, 0.14), transparent 50%),
    var(--navy);
  color: #fff;
  padding: 5rem 0;
}
.cta-box { text-align: center; }
.section-cta h2 { color: #fff; margin-bottom: 0.8rem; }
.section-cta p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0 auto 1.85rem;
  font-size: 1.05rem;
  max-width: 34rem;
}
.section-cta .hero-actions {
  justify-content: center;
  margin-bottom: 0;
}
.section-cta .btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.section-cta .btn-secondary:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

/* ========== Footer ========== */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.65);
  padding: 3.25rem 0 2rem;
  font-size: 0.875rem;
}
.footer-inner { display: grid; gap: 2rem; }
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 28rem;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
.footer-logo:hover { text-decoration: none; }
.footer-logo .logo-mark {
  height: 36px;
  display: none; /* obsolete; footer uses dark wordmark PNG */
}
.footer-logo .logo-text {
  color: #fff;
  font-size: 1.05rem;
}
.footer-brand > p {
  margin: 0;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}
.footer-legal {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.58);
  max-width: 36rem;
}
.footer-col h4 {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-items: flex-start;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 500;
}
.footer-links a:hover { color: var(--copper); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-copy, .footer-privacy {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-as-seen {
  margin: 0;
  flex-basis: 100%;
  display: flex;
  justify-content: flex-start;
}
.footer-saasdir {
  display: inline-block;
  line-height: 0;
  opacity: 0.85;
}
.footer-saasdir:hover { opacity: 1; }
.footer-saasdir img {
  display: block;
  height: 36px;
  width: auto;
  max-width: 160px;
}

@media (min-width: 800px) {
  .footer-inner {
    grid-template-columns: 1.4fr 0.6fr 0.6fr;
    gap: 2.5rem;
  }
  .footer-bottom { grid-column: 1 / -1; }
}

/* ========== Form pages (snapshot + intake) ========== */
.page-hero {
  padding: 3.25rem 0 2.25rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 55% at 100% 0%, rgba(240, 128, 58, 0.12), transparent 55%),
    linear-gradient(180deg, #f5f7fb 0%, var(--white) 100%);
  border-bottom: 1px solid var(--border);
  box-shadow: inset 0 -1px 0 rgba(240, 128, 58, 0.12);
}
.page-hero h1 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  letter-spacing: -0.032em;
  color: var(--navy);
}
.page-hero p {
  margin: 0;
  color: var(--muted);
  max-width: 36rem;
  line-height: 1.7;
}
.intake-note {
  margin: 1.35rem 0 0;
  padding: 0.95rem 1.1rem;
  background: rgba(19, 30, 58, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 500;
}
.intake-form {
  display: grid;
  gap: 1.75rem;
  padding: 2.75rem 0 4.5rem;
}
.form-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.65rem;
  box-shadow: var(--shadow);
}
.form-section h2 {
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--bg-alt);
}
.form-grid {
  display: grid;
  gap: 1.1rem;
}
@media (min-width: 640px) {
  .form-grid.cols-2 { grid-template-columns: 1fr 1fr; }
}
.field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color 0.15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(19, 30, 58, 0.1);
}
.field textarea { min-height: 96px; resize: vertical; }
.field .hint {
  margin: 0.3rem 0 0;
  font-size: 0.75rem;
  color: var(--muted);
}
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.form-actions .muted {
  font-size: 0.85rem;
  color: var(--muted);
}
.checkbox-field {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--navy-soft);
  line-height: 1.55;
}
.checkbox-field input {
  margin-top: 0.25rem;
  width: 1rem;
  height: 1rem;
  accent-color: var(--navy);
  flex-shrink: 0;
}

.snapshot-deliverables {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}
.snapshot-deliverables li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: var(--navy-soft);
  font-size: 0.95rem;
}
.snapshot-deliverables li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 0.55rem;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 3px rgba(240, 128, 58, 0.2);
  flex-shrink: 0;
}

/* Logo lockup */

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none !important;
}
.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 9px; /* echo monogram squircle at small size */
}
.logo-text {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.04em;
  color: var(--navy);
  line-height: 1;
}
.logo-text span.fill-accent {
  /* optional */
}

/* Official Bricolage wordmark lockup */
.logo-lockup {
  height: 28px;
  width: auto;
  display: block;
}
.logo-mark { display: none; }
.logo-text { display: none; }


/* Dark wordmark on navy footer / bands */
.logo-lockup-dark {
  height: 28px;
  width: auto;
  display: block;
}


/* ========== Snapshot conversion (2026-09-10) ========== */
.form-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.25rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}
.form-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-soft);
  letter-spacing: -0.01em;
}
.form-trust li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 3px rgba(240, 128, 58, 0.18);
  flex-shrink: 0;
}

.snapshot-layout {
  display: grid;
  gap: 1.75rem;
  padding: 2.25rem 0 4rem;
}
@media (min-width: 900px) {
  .snapshot-layout {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
    width: min(100% - 2.75rem, 960px);
  }
}
.snapshot-layout .intake-form {
  padding: 0;
  gap: 1.25rem;
}

.field-span { grid-column: 1 / -1; }
.field-count {
  float: right;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.req {
  color: var(--copper);
  font-weight: 700;
}
.form-legal {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--muted);
}
.form-alt-email {
  margin: 0.25rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}
.form-alt-email a { font-weight: 600; }

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.snapshot-aside {
  display: grid;
  gap: 1rem;
}
.aside-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  box-shadow: var(--shadow);
}
.aside-card h3 {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.aside-card p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}
.aside-card-quiet {
  background: var(--bg);
  box-shadow: none;
}
.aside-steps {
  margin: 0;
  padding: 0 0 0 1.15rem;
  color: var(--navy-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}
.aside-steps li + li { margin-top: 0.55rem; }
.aside-steps strong { color: var(--navy); }

.success-panel {
  margin: 3rem 0 4.5rem;
  padding: 2rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}
.success-panel h2 {
  margin: 0 0 0.75rem;
  color: var(--navy);
  letter-spacing: -0.03em;
}
.success-panel p {
  margin: 0 0 1.35rem;
  color: var(--muted);
}
.success-panel .btn { margin-inline: auto; }

/* Mobile header / hero polish */
@media (max-width: 479px) {
  .container { width: min(100% - 2rem, var(--max)); }
  .narrow { width: min(100% - 2rem, 680px); }
  .hero { padding-top: 2.5rem; padding-bottom: 2.75rem; gap: 2rem; }
  .hero h1 { max-width: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .header-inner { gap: 0.75rem; }
  .logo-lockup { height: 24px; }
  .trust-strip span { white-space: normal; padding: 0.15rem 0.75rem; }
  .form-actions { flex-direction: column; align-items: stretch; }
  .form-actions .btn { width: 100%; }
}


/* ========== Overnight conversion 2026-09-11 ========== */
.trust-micro {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  background: rgba(19, 30, 58, 0.04);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--navy-soft);
}
.trust-micro strong { color: var(--navy); }
.aside-trust {
  margin: 0;
  padding: 0 0 0 1.1rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--navy-soft);
}
.aside-trust li + li { margin-top: 0.5rem; }
.aside-trust strong { color: var(--navy); }


/* Search Launch merchant microcopy */
.price-micro {
  margin: 0.65rem 0 0;
  font-size: 0.78rem;
  line-height: 1.35;
  color: #5a6578;
  text-align: center;
}
.success-softclose {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  border: 1px solid #e5e8ef;
  border-radius: 12px;
  background: #f8f9fc;
}
.success-softclose p {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: #2a3344;
}
.success-softclose .price-micro {
  margin-top: 0.5rem;
}
