/* Donations Express — financial security landing theme */

:root {
  --navy: #1a3352;
  --navy-dark: #0f2340;
  --navy-mid: #2c5282;
  --teal: #2a9d8f;
  --teal-dark: #1f7a6f;
  --forest: #2d6a4f;
  --forest-light: #40916c;
  --trust-blue: #3d6a8c;
  --slate: #5c6b7a;
  --slate-light: #8b9aab;
  --ink: #1a2332;
  --ink-muted: #5c6b7a;
  --surface: #ffffff;
  --surface-alt: #eef1f5;
  --surface-warm: #f7f8fa;
  --border: #d4dce6;
  --gold: #b8860b;
  --gold-light: #d4a843;
  --success: #52b788;
  --shadow: 0 4px 24px rgba(26, 51, 82, 0.08);
  --shadow-lg: 0 16px 48px rgba(26, 51, 82, 0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --max-width: 1140px;
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  /* semantic aliases */
  --brand: var(--teal);
  --brand-dark: var(--teal-dark);
  --brand-light: #e6f4f2;
  --accent: var(--forest);

  /* dashboard showcase (from product UI) */
  --dash-navy: #34495e;
  --dash-navy-dark: #2c3e50;
  --dash-slate: #778ca3;
  --dash-slate-light: #a4b0be;
  --dash-bg: #f8f9fa;
  --dash-card: #ffffff;
  --dash-border: #e9ecef;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--surface-warm);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--navy-mid); text-decoration: none; }
a:hover { color: var(--teal-dark); text-decoration: underline; }

/* Buttons are links — keep readable colors (override global anchor styles) */
a.btn,
a.btn:hover,
a.btn:visited {
  text-decoration: none;
}

a.btn--primary,
a.btn--primary:visited,
a.btn--primary:hover {
  color: #fff;
}

a.btn--navy,
a.btn--navy:visited,
a.btn--navy:hover {
  color: #fff;
}

a.btn--outline,
a.btn--outline:visited {
  color: var(--navy);
  border-color: var(--navy-mid);
}

a.btn--outline:hover {
  color: var(--navy-dark);
}

a.btn--ghost-white,
a.btn--ghost-white:visited,
a.btn--ghost-white:hover {
  color: #fff;
}

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

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(26, 51, 82, 0.04);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.site-logo img { height: 48px; width: auto; }

.site-logo__text {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  text-decoration: none;
}

.site-logo__text span { color: var(--teal); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
}

.site-nav a:hover { color: var(--navy-mid); }

.site-nav a.btn--outline {
  color: var(--navy);
  border-color: var(--navy-mid);
}

.site-nav a.btn--primary {
  color: #fff;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--navy);
  padding: 0.25rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn--primary {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(42, 157, 143, 0.35);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--navy-mid) 100%);
  color: #fff;
}

.btn--navy {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(26, 51, 82, 0.3);
}

.btn--navy:hover { color: #fff; filter: brightness(1.08); }

.btn--outline {
  background: var(--surface);
  color: var(--navy);
  border-color: var(--navy-mid);
  box-shadow: 0 1px 3px rgba(26, 51, 82, 0.08);
}

.btn--outline:hover {
  background: var(--surface-alt);
  border-color: var(--navy);
  color: var(--navy-dark);
}

.btn--ghost-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--ghost-white:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn--lg { padding: 0.9rem 1.85rem; font-size: 1.05rem; }

/* ── Trust bar ── */
.trust-bar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.65rem 0;
  font-size: 0.92rem;
}

.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-bar__icon {
  width: 28px;
  height: 28px;
  background: rgba(42, 157, 143, 0.25);
  border: 1px solid rgba(82, 183, 136, 0.4);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

/* ── Hero ── */
.hero {
  background: linear-gradient(160deg, #eef2f6 0%, #fff 40%, #e8f0ee 100%);
  padding: 3.5rem 0 4.5rem;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(26, 51, 82, 0.03) 100%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--navy);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.hero__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero__lead {
  font-size: 1.08rem;
  color: var(--slate);
  margin: 0 0 1.75rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 420px;
}

.hero__stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--teal);
}

.hero__stat strong {
  display: block;
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1.2;
}

.hero__stat span {
  font-size: 0.875rem;
  color: var(--slate);
  font-weight: 500;
}

.hero__visual {
  position: relative;
  width: 100%;
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero__visual-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  background: var(--surface);
}

.hero__visual-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__badge {
  background: var(--surface);
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  font-size: 0.94rem;
  line-height: 1.5;
  border: 1px solid var(--border);
  border-left: 4px solid var(--forest);
}

.hero__badge strong {
  color: var(--forest);
  display: block;
  font-size: 1.05rem;
}

/* ── Sections ── */
.section { padding: 5rem 0; }

.section--alt { background: var(--surface-alt); }

.section--navy {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
}

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.section__header h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 0.75rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.section--navy .section__header h2 { color: #fff; }

.section__header p {
  color: var(--ink-muted);
  margin: 0;
  font-size: 1.05rem;
}

.section--alt .section__header p {
  color: var(--slate);
}

.section--navy .section__header p { color: rgba(255, 255, 255, 0.88); }

.section__label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-mid);
  margin-bottom: 0.5rem;
}

.section--navy .section__label {
  color: #7ecfb8;
}

.section--alt .section__label {
  color: var(--forest);
}

/* ── Feature cards with hex icons ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.feature-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: var(--teal);
}

.feature-card__hex {
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  color: var(--teal);
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--navy);
}

.feature-card p {
  margin: 0;
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ── Use cases — chevron ribbons ── */
.use-cases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.use-case {
  position: relative;
  padding: 1.35rem 1.5rem 1.35rem 1.25rem;
  background: var(--surface);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%);
  border-radius: 4px;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--navy-mid);
}

.use-case:nth-child(2) { border-left-color: var(--teal); }
.use-case:nth-child(3) { border-left-color: var(--forest); }
.use-case:nth-child(4) { border-left-color: var(--trust-blue); }

.use-case h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: var(--navy);
}

.use-case p {
  margin: 0;
  color: var(--slate);
  font-size: 0.95rem;
}

/* ── How it works — staggered chevrons ── */
.steps-ribbon {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 720px;
  margin: 0 auto;
}

.step-ribbon {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  color: #fff;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%, 16px 50%);
  padding-left: 1.5rem;
}

.step-ribbon:nth-child(1) { background: linear-gradient(90deg, var(--navy-mid), var(--navy)); margin-left: 0; }
.step-ribbon:nth-child(2) { background: linear-gradient(90deg, var(--teal), var(--teal-dark)); margin-left: 2rem; }
.step-ribbon:nth-child(3) { background: linear-gradient(90deg, var(--forest), var(--forest-light)); margin-left: 4rem; }

.step-ribbon__num {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.step-ribbon__content h3 {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
}

.step-ribbon__content p {
  margin: 0;
  font-size: 0.88rem;
  opacity: 0.9;
}

.step-ribbon__hex {
  width: 44px;
  height: 44px;
  opacity: 0.85;
}

/* ── Pricing — premium cards ── */
.section--pricing {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(42, 157, 143, 0.08) 0%, transparent 55%),
    linear-gradient(180deg, var(--surface-alt) 0%, #e4eaef 45%, var(--surface-alt) 100%);
}

.section--pricing::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(61, 106, 140, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(184, 134, 11, 0.05) 0%, transparent 35%);
  pointer-events: none;
}

.section--pricing .container {
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: stretch;
  padding-top: 2.75rem;
}

.pricing-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px 10px 22px 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.pricing-card:hover {
  box-shadow:
    var(--shadow-lg),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transform: translateY(-6px);
}

.pricing-card--featured {
  border: 2px solid var(--teal);
  border-top: none;
  border-radius: 0 0 22px 22px;
  box-shadow:
    0 24px 56px rgba(42, 157, 143, 0.26),
    0 0 0 1px rgba(42, 157, 143, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transform: scale(1.05);
  z-index: 2;
  overflow: visible;
}

.pricing-card--featured:hover {
  transform: scale(1.05) translateY(-6px);
  box-shadow:
    0 28px 64px rgba(42, 157, 143, 0.32),
    0 0 0 1px rgba(42, 157, 143, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

/* Integrated folder-tab for featured plan */
.pricing-card__ribbon {
  position: absolute;
  top: -2.65rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-width: 12.5rem;
  background: linear-gradient(180deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.55rem 1.5rem 0.65rem;
  border-radius: 10px 10px 0 0;
  white-space: nowrap;
  box-shadow: 0 -4px 20px rgba(42, 157, 143, 0.4);
  border: 2px solid var(--teal);
  border-bottom: none;
  z-index: 3;
}

.pricing-card__ribbon::before,
.pricing-card__ribbon::after {
  content: "";
  position: absolute;
  bottom: -1px;
  width: 14px;
  height: 14px;
  background: var(--teal-dark);
}

.pricing-card__ribbon::before {
  left: -13px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.pricing-card__ribbon::after {
  right: -13px;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.pricing-card__ribbon-star {
  color: #ffe566;
  font-size: 0.95rem;
  line-height: 1;
  text-shadow: 0 1px 2px rgba(26, 51, 82, 0.25);
}

.pricing-card__header {
  padding: 2.25rem 1.5rem 1.5rem;
  text-align: center;
  position: relative;
  border-radius: 10px 10px 0 0;
}

.pricing-card--featured .pricing-card__header {
  border-radius: 0;
  padding-top: 2.5rem;
}

.pricing-card__header--basic {
  background: linear-gradient(180deg, #e8eef3 0%, var(--surface) 100%);
  border-bottom: 3px solid var(--trust-blue);
}

.pricing-card__header--grower {
  background: linear-gradient(180deg, #d4f0eb 0%, #edf9f7 40%, var(--surface) 100%);
  border-bottom: 3px solid var(--teal);
}

.pricing-card__header--gold {
  background: linear-gradient(180deg, #f5ecd4 0%, #faf6eb 50%, var(--surface) 100%);
  border-bottom: 3px solid var(--gold);
}

/* Tier hex icons — hero visual anchor */
.pricing-card__icon {
  width: 5.5rem;
  height: 6rem;
  margin: 0 auto 0.85rem;
  filter: drop-shadow(0 10px 20px rgba(26, 51, 82, 0.18));
  transition: transform 0.3s, filter 0.3s;
}

.pricing-card:hover .pricing-card__icon {
  transform: translateY(-4px) scale(1.04);
  filter: drop-shadow(0 14px 28px rgba(26, 51, 82, 0.22));
}

.pricing-card--featured .pricing-card__icon {
  filter: drop-shadow(0 12px 24px rgba(42, 157, 143, 0.35));
}

.pricing-card--featured:hover .pricing-card__icon {
  filter: drop-shadow(0 16px 32px rgba(42, 157, 143, 0.42));
}

.pricing-card__icon-svg {
  display: block;
  width: 100%;
  height: 100%;
}

.pricing-card__tier-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}

.pricing-card__header--basic .pricing-card__tier-label {
  color: var(--trust-blue);
  background: rgba(61, 106, 140, 0.12);
  border: 1px solid rgba(61, 106, 140, 0.2);
}

.pricing-card__header--grower .pricing-card__tier-label {
  color: var(--teal-dark);
  background: rgba(42, 157, 143, 0.14);
  border: 1px solid rgba(42, 157, 143, 0.25);
}

.pricing-card__header--gold .pricing-card__tier-label {
  color: #8b6914;
  background: rgba(184, 134, 11, 0.14);
  border: 1px solid rgba(184, 134, 11, 0.25);
}

.pricing-card__header h3 {
  margin: 0;
  font-size: 1.45rem;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pricing-card--featured .pricing-card__header h3 {
  color: var(--teal-dark);
}

.pricing-card__price {
  font-size: 2.75rem;
  font-weight: 800;
  margin: 0.4rem 0 0;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.03em;
}

.pricing-card__price--custom {
  font-size: 2rem;
  background: linear-gradient(135deg, var(--gold) 0%, #8b6914 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pricing-card__price small {
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate);
  letter-spacing: 0;
}

.pricing-card__tagline {
  font-size: 0.92rem;
  color: var(--slate);
  margin: 0.65rem 0 0;
  font-weight: 500;
  line-height: 1.45;
  max-width: 16rem;
  margin-inline: auto;
}

.pricing-card__body {
  padding: 1.35rem 1.5rem 1.85rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pricing-card__body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
}

.pricing-card__body li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.6rem 0;
  font-size: 0.925rem;
  color: var(--ink-muted);
  border-bottom: 1px solid var(--surface-alt);
  line-height: 1.45;
}

.pricing-card__body li:last-child { border-bottom: none; }

.pricing-card__check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(82, 183, 136, 0.15);
  color: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  margin-top: 0.05rem;
}

.pricing-card--featured .pricing-card__check {
  background: rgba(42, 157, 143, 0.18);
  color: var(--teal-dark);
}

.pricing-card--gold .pricing-card__check {
  background: rgba(184, 134, 11, 0.15);
  color: #8b6914;
}

.pricing-card__note {
  font-size: 0.875rem;
  color: var(--slate);
  margin-bottom: 1rem;
  padding: 0.65rem 0.85rem;
  background: var(--surface-alt);
  border-radius: 8px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--trust-blue);
  line-height: 1.45;
}

.pricing-promise {
  text-align: center;
  max-width: 38rem;
  margin: 2.5rem auto 0;
  font-size: 1.02rem;
  color: var(--slate);
  line-height: 1.6;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  border: 1px solid rgba(212, 220, 230, 0.8);
}

.pricing-card .btn { width: 100%; margin-top: auto; }

/* ── Security band ── */
.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.security-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.security-item__icon {
  font-size: 1.75rem;
  margin-bottom: 0.65rem;
}

.security-item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  color: #fff;
}

.security-item p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

/* ── CTA band ── */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(42, 157, 143, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.cta-band .container { position: relative; }

.cta-band__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.cta-band h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  line-height: 1.2;
}

.cta-band__lead {
  margin: 0 0 2rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.25rem;
  width: 100%;
}

.cta-band__actions .btn {
  min-width: 200px;
  margin: 0;
}

.cta-band__divider {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  font-weight: 500;
  flex-shrink: 0;
}

.cta-band__contact {
  margin: 1.75rem 0 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
}

.cta-band__contact a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-band__contact a:hover {
  color: #fff;
  opacity: 0.9;
}

/* ── Footer ── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.78);
  padding: 3rem 0 2rem;
  font-size: 0.925rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer h4 {
  color: #fff;
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}

.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.4rem; }
.site-footer a { color: rgba(255, 255, 255, 0.85); }
.site-footer a:hover { color: #fff; }

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
}

/* ── Platform showcase (dashboard + CMS previews) ── */
.platform-showcase {
  padding: 4rem 0 5rem;
  background: linear-gradient(180deg, var(--surface-warm) 0%, var(--dash-bg) 100%);
}

.platform-showcase__intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.platform-showcase__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: start;
}

.dash-panel,
.cms-panel {
  background: var(--dash-card);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.12);
  border: 1px solid var(--dash-border);
  overflow: hidden;
}

.dash-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--dash-navy-dark) 0%, var(--dash-navy) 100%);
  color: #fff;
  padding: 1rem 1.25rem;
  border-radius: 14px 14px 0 0;
}

.dash-panel__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.dash-panel__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dash-panel__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
}

.dash-panel__nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
}

.dash-panel__nav-btn {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 6px;
  font-size: 0.75rem;
  cursor: default;
}

.dash-panel__body { padding: 1.25rem; }

.dash-panel__subtitle {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dash-slate);
  margin: 0 0 0.85rem;
}

/* Summary stat cards */
.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.dash-stat {
  background: var(--dash-bg);
  border: 1px solid var(--dash-border);
  border-radius: 10px;
  padding: 1rem 0.85rem;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.04);
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dash-stat--hero {
  background: linear-gradient(145deg, var(--dash-navy-dark) 0%, var(--dash-navy) 100%);
  border-color: var(--dash-navy-dark);
  color: #fff;
  box-shadow: 0 6px 20px rgba(44, 62, 80, 0.25);
}

.dash-stat__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.35rem;
}

.dash-stat__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.dash-stat--hero .dash-stat__icon {
  background: rgba(255, 255, 255, 0.15);
}

.dash-stat:not(.dash-stat--hero) .dash-stat__icon {
  background: rgba(119, 140, 163, 0.15);
  color: var(--dash-navy);
}

.dash-stat__value {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0.5rem 0 0.15rem;
}

.dash-stat--hero .dash-stat__value { font-size: 1.5rem; }

.dash-stat__label {
  font-size: 0.72rem;
  color: var(--dash-slate);
  margin: 0;
  line-height: 1.35;
}

.dash-stat--hero .dash-stat__label { color: rgba(255, 255, 255, 0.75); }

/* Chart row */
.dash-charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.dash-chart {
  background: var(--dash-bg);
  border: 1px solid var(--dash-border);
  border-radius: 10px;
  padding: 0.85rem;
}

.dash-chart h4 {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dash-navy-dark);
}

.dash-chart svg { width: 100%; height: auto; }

/* Top funds bars */
.dash-funds { margin-bottom: 0.75rem; }

.dash-fund-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
}

.dash-fund-row span:first-child {
  color: var(--dash-navy);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dash-fund-row span:last-child {
  color: var(--dash-slate);
  font-weight: 600;
}

.dash-fund-bar {
  grid-column: 1 / -1;
  height: 8px;
  background: var(--dash-border);
  border-radius: 4px;
  overflow: hidden;
}

.dash-fund-bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--dash-slate) 0%, var(--dash-navy) 100%);
  border-radius: 4px;
}

/* Monthly intensity heatmap */
.dash-intensity h4 {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dash-navy-dark);
}

.dash-intensity__months {
  display: flex;
  gap: 4px;
}

.dash-intensity__month {
  flex: 1;
  text-align: center;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--dash-slate);
  padding: 0.5rem 0.15rem;
  background: var(--dash-border);
  border-radius: 4px;
  min-height: 36px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.dash-intensity__month--peak {
  background: var(--dash-navy);
  color: #fff;
}

.dash-panel__caption {
  font-size: 0.78rem;
  color: var(--dash-slate);
  text-align: center;
  margin: 0.75rem 0 0;
  font-style: italic;
}

/* CMS campaign panel */
.cms-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.15rem;
  border-bottom: 1px solid var(--dash-border);
  background: var(--dash-bg);
}

.cms-panel__badge {
  background: var(--forest);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
}

.cms-panel__title {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dash-navy-dark);
}

.cms-panel__body {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 0;
}

.cms-panel__form { padding: 1rem 1.15rem; }

.cms-panel__section-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dash-slate);
  margin: 0 0 0.65rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--teal);
  display: inline-block;
}

.cms-panel__toggles {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}

.cms-panel__toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--dash-navy);
}

.cms-panel__toggle input {
  accent-color: var(--dash-navy);
}

.cms-panel__field {
  margin-bottom: 0.65rem;
}

.cms-panel__field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--dash-slate);
  margin-bottom: 0.2rem;
}

.cms-panel__field .cms-panel__input {
  display: block;
  width: 100%;
  padding: 0.4rem 0.55rem;
  font-size: 0.78rem;
  border: 1px solid var(--dash-border);
  border-radius: 6px;
  background: #fff;
  color: var(--dash-navy-dark);
}

.cms-panel__field .cms-panel__textarea {
  min-height: 52px;
  resize: none;
  line-height: 1.4;
}

.cms-panel__media {
  background: var(--dash-bg);
  border-left: 1px solid var(--dash-border);
  padding: 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.cms-panel__thumb {
  width: 90px;
  height: 90px;
  border-radius: 10px;
  background: linear-gradient(135deg, #fce4ec 0%, #fff3e0 100%);
  border: 1px solid var(--dash-border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.62rem;
  font-weight: 700;
  color: #c0392b;
  line-height: 1.25;
  padding: 0.35rem;
}

.cms-panel__media-btn {
  width: 100%;
  padding: 0.4rem;
  font-size: 0.68rem;
  font-weight: 600;
  background: var(--dash-navy-dark);
  color: #fff;
  border: none;
  border-radius: 6px;
  text-align: center;
}

.cms-panel__caption {
  font-size: 0.78rem;
  color: var(--dash-slate);
  text-align: center;
  margin: 0.75rem 1rem 1rem;
  font-style: italic;
}

.platform-showcase__cta {
  text-align: center;
  margin-top: 2rem;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 480px; margin: 0 auto; width: 100%; }
  .hero__stats { max-width: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .security-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; padding-top: 2.75rem; gap: 2rem; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-6px); }
  .pricing-card__icon { width: 5rem; height: 5.5rem; }
  .pricing-promise { border-radius: var(--radius); }
  .step-ribbon:nth-child(2),
  .step-ribbon:nth-child(3) { margin-left: 0; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .platform-showcase__grid { grid-template-columns: 1fr; }
  .dash-stats { grid-template-columns: repeat(2, 1fr); }
  .dash-charts { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .cta-band__divider { display: none; }
  .cta-band__actions { flex-direction: column; width: 100%; max-width: 320px; }
  .cta-band__actions .btn { width: 100%; min-width: 0; }

  .nav-toggle { display: block; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    gap: 0.75rem;
  }

  .site-nav.is-open { display: flex; }

  .features-grid,
  .use-cases,
  .security-grid { grid-template-columns: 1fr; }

  .hero { padding: 2.5rem 0 3rem; }
  .section { padding: 3rem 0; }
  .hero__stats { grid-template-columns: 1fr; }
  .trust-bar__inner { gap: 0.75rem 1.25rem; }
  .dash-stats { grid-template-columns: 1fr; }
  .cms-panel__body { grid-template-columns: 1fr; }
  .cms-panel__media { border-left: none; border-top: 1px solid var(--dash-border); flex-direction: row; flex-wrap: wrap; justify-content: center; }
}
