/* Clear Cost Gutters — dark theme, simplified layout */
:root {
  --blue: #1a365d;
  --blue-light: #2c5282;
  --red: #dc2626;
  --red-hover: #b91c1c;
  --green: #059669;
  --bg: #2F3C47;
  --card-bg: #ffffff;
  --text: #1f2937;
  --text-muted: #4b5563;
  --white: #ffffff;
  --tap-min: 44px;
  --space: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}

/* Top bar — matches dark background */
.top-bar {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg);
  color: var(--white);
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
}

/* Page wrapper */
.lander {
  max-width: 480px;
  margin: 0 auto;
  padding: var(--space) var(--space);
}

/* White floating card */
.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--space-lg) var(--space);
}

/* Hero / headline block */
.hero {
  text-align: center;
  margin-bottom: var(--space);
}

.hero__headline {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.28;
  color: var(--text);
}

.hero__headline strong {
  color: var(--blue);
}

/* Red urgency line (no yellow box) */
.hero__urgency {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--red);
}

.hero__support {
  margin: 0 0 var(--space);
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--text-muted);
}

/* Hero image — larger, more prominent */
.hero__image-wrap {
  margin: 0 auto var(--space);
  max-width: 280px;
}

.hero__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
}

/* Eligibility list */
.eligibility {
  margin-bottom: var(--space);
  text-align: left;
}

.eligibility__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.eligibility__item {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.4;
}

.eligibility__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 1rem;
  height: 1rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23059669'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

/* CTA */
.cta-wrap {
  margin-bottom: var(--space);
}

.cta {
  display: block;
  width: 100%;
  min-height: var(--tap-min);
  padding: 0.875rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  color: var(--white);
  background: var(--red);
  border: none;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.35);
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
  -webkit-tap-highlight-color: transparent;
}

.cta:hover {
  background: var(--red-hover);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.cta:active {
  transform: scale(0.98);
}

/* Post-CTA trust — single item with green checkmark */
.post-cta-trust {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.post-cta-trust__item {
  position: relative;
  padding-left: 1.35rem;
}

.post-cta-trust__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1rem;
  height: 1rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23059669'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

/* Desktop */
@media (min-width: 600px) {
  .lander {
    max-width: 520px;
    padding: var(--space-xl) var(--space-lg);
  }

  .card {
    padding: var(--space-xl) 2rem;
  }

  .hero {
    margin-bottom: var(--space-lg);
  }

  .hero__headline {
    font-size: 1.625rem;
    margin: 0 0 0.35rem;
  }

  .hero__urgency {
    font-size: 1.125rem;
    margin: 0 0 0.35rem;
  }

  .hero__support {
    font-size: 0.9375rem;
    margin: 0 0 var(--space-lg);
  }

  .hero__image-wrap {
    max-width: 320px;
    margin: 0 auto var(--space-xl);
  }

  .eligibility {
    margin-bottom: var(--space-lg);
  }

  .eligibility__item {
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
  }

  .cta {
    padding: 1rem 1.5rem;
    font-size: 1.25rem;
  }

  .post-cta-trust {
    font-size: 0.875rem;
  }
}
