/**
 * Shared funnel chrome — palette and typography aligned with root index.html
 * (Material-style navy / cool gray / soft background).
 */

@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --bg: #f6fafe;
  --text: #00152a;
  --heading: #00152a;
  --muted: #43474d;
  --muted-soft: #5c6470;
  --card: #ffffff;
  --accent: #00152a;
  --accent-dark: #44617d;
  --danger: #102a43;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(16, 42, 67, 0.08);
  --btn-shadow: 0 4px 20px rgba(16, 42, 67, 0.12);
  --link: #44617d;
  --link-hover: #00152a;
  --btn-alt-bg: #bfddfe;
  --btn-alt-color: #00152a;
}

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

body {
  margin: 0;
  font-family: Manrope, system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

.page-shell {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 24px 0 40px;
}

@media (min-width: 1024px) {
  .page-shell {
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
  }
}

.disclosure {
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
}

.disclosure p {
  margin: 0 0 10px;
}

.content-shell {
  background: var(--card);
  border-radius: 0;
  box-shadow: var(--shadow);
  overflow: hidden;
  border-top: 3px solid var(--danger);
}

.container-inner {
  padding: 24px;
}

.hero-banner {
  margin: 0 0 16px;
  display: block;
}

.hero-banner img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  color: var(--heading);
  font-family: Manrope, system-ui, sans-serif;
}

h1 {
  font-size: 40px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 30px;
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.01em;
}

p,
li {
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
}

ul {
  margin: 0 0 18px 24px;
}

.actions {
  margin-top: 24px;
}

.choice-grid {
  display: grid;
  gap: 12px;
}

.btn-link {
  appearance: none;
  border: 0;
  border-radius: 8px;
  padding: 14px 20px;
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  background: var(--accent);
  cursor: pointer;
  box-shadow: var(--btn-shadow);
  transition: transform 0.18s ease, opacity 0.18s ease, background 0.18s ease;
  min-width: 150px;
  text-align: center;
  display: inline-block;
}

.btn-link.is-assigning {
  opacity: 0.85;
  cursor: wait;
  pointer-events: none;
}

.btn-link:hover {
  transform: translateY(-1px);
  opacity: 0.96;
  background: var(--accent-dark);
}

.btn-link--above-10k {
  background: var(--btn-alt-bg);
  color: var(--btn-alt-color);
  box-shadow: 0 4px 16px rgba(16, 42, 67, 0.1);
}

.btn-link--above-10k:hover {
  background: var(--accent-dark);
  color: #fff;
}

.btn-link--above-15k {
  background: var(--accent-dark);
  color: #fff;
  box-shadow: 0 4px 20px rgba(16, 42, 67, 0.18);
}

.btn-link--above-15k:hover {
  background: var(--accent);
  color: #fff;
}

button {
  appearance: none;
  border: 0;
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  background: var(--accent);
  cursor: pointer;
  box-shadow: var(--btn-shadow);
  transition: transform 0.18s ease, opacity 0.18s ease, background 0.18s ease;
  min-width: 150px;
  text-align: center;
  display: block;
  width: 100%;
  font-family: inherit;
}

button:hover {
  transform: translateY(-1px);
  opacity: 0.96;
  background: var(--accent-dark);
}

.small-link {
  color: var(--link);
  margin-top: 16px;
  display: inline-block;
  font-weight: 500;
}

.small-link:hover,
.small-link:focus-visible {
  color: var(--link-hover);
  outline: none;
}

.call-cta {
  text-align: center;
  padding: 28px 16px;
}

.phone {
  margin: 10px 0 0;
  font-size: 34px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.call-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1rem;
  text-align: center;
}

.legal-section {
  margin: 0 0 24px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  .container-inner {
    padding: 16px;
  }

  .btn-link,
  button {
    width: 100%;
  }
}

/* Compact lander density */
.funnel-page--compact .page-shell {
  padding: 14px 0 28px;
}

.funnel-page--compact .container-inner {
  padding: 16px;
}

.funnel-page--compact h1 {
  font-size: 30px;
  line-height: 1.16;
  margin: 0 0 12px;
}

.funnel-page--compact .hero-banner {
  margin: 0 0 12px;
}

.funnel-page--compact .actions {
  margin-top: 16px;
}

@media (max-width: 760px) {
  .funnel-page--compact .container-inner {
    padding: 12px;
  }

  .funnel-page--compact h1 {
    font-size: 26px;
  }
}
