/* Home page sections — USA 250 story, products, fundraising */

.star-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  line-height: 1;
}

.star-row span {
  display: inline-block;
  line-height: 1;
}

.section {
  position: relative;
  padding: 88px 0;
}

.section h2,
.section h3 {
  margin: 0 0 14px;
  font-size: clamp(32px, 3vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

/* Product tiles inside sections — not display headings */
.section .usa250-product-body h3,
.section .product-card-body h3 {
  margin: 0 0 8px;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 900;
}

.section-white h2 {
  color: var(--text);
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-lead-dark {
  color: rgba(255, 255, 255, 0.84);
}

.section-head {
  margin-bottom: 34px;
}

.center-head {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 40px;
}

.two-col {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 30px;
  align-items: center;
}

.content-block p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.75;
}

.btn-gold {
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
  box-shadow: 0 10px 22px rgba(217, 164, 32, 0.22);
}

.btn-gold:hover {
  box-shadow: 0 16px 28px rgba(217, 164, 32, 0.28);
}

.btn-navy-cta {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  box-shadow: 0 10px 22px rgba(10, 30, 70, 0.16);
}

.btn-navy-cta:hover {
  background: var(--navy-2);
  border-color: var(--navy-2);
}

.button-row-center {
  justify-content: center;
  margin-top: 28px;
}

.feature-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  line-height: 1.6;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 900;
}

/* Homepage state picker — map + state list above USA 250 */
.home-states-picker {
  padding: clamp(48px, 5vw, 72px) 0 clamp(40px, 4vw, 56px);
}

.home-states-picker .container {
  width: min(1320px, calc(100% - 32px));
}

.home-states-head {
  max-width: 820px;
  margin: 0 auto clamp(28px, 3vw, 40px);
  text-align: center;
}

.home-states-head .section-kicker {
  display: block;
  margin-bottom: 12px;
  min-height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  color: var(--gold);
}

.home-states-head h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 900;
  color: var(--navy);
}

.home-states-head p {
  margin: 0;
  font-size: 17px;
  line-height: 1.72;
  font-weight: 500;
  color: var(--text-soft);
}

.home-states-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 24px;
  align-items: start;
  padding: 28px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--navy);
  background-image: url("../images/blue-bellino-texture.jpg");
  background-repeat: repeat;
  background-position: 0 0;
  background-size: min(420px, 92vw);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.home-states-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(10, 30, 70, 0.42) 0%,
    rgba(10, 30, 70, 0.62) 100%
  );
}

.home-states-map-block,
.home-states-sidebar {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.home-states-map-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 900;
  color: var(--red);
}

.home-states-map-title svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.home-states-map-frame {
  border: 1px solid var(--line);
  border-radius: 0;
  background: #f7f9fc;
  padding: 20px 24px;
}

.home-states-map-frame--interactive {
  min-height: 380px;
}

.home-states-map-host {
  display: block;
  width: 100%;
  position: relative;
  z-index: 2;
  line-height: 0;
  pointer-events: auto;
}

.home-states-map-host svg,
.home-states-map-host object,
.home-states-map-object,
.us-map-object {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  pointer-events: auto;
}

.home-states-map-host path {
  pointer-events: none;
}

.home-states-map-host path.bellino-state {
  cursor: pointer;
  pointer-events: auto;
}

.home-states-map-hint {
  margin: 14px 0 0;
  padding: 12px 16px;
  text-align: center;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
  color: var(--navy);
  background: #f7f9fc;
  border: 1px solid var(--line);
  border-radius: 0;
}

.home-states-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.home-states-sidebar-head h3 {
  margin: 0;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
}

.home-states-view-all {
  font-size: 13px;
  font-weight: 800;
  color: var(--gold);
  white-space: nowrap;
  text-decoration: none;
}

.home-states-view-all:hover {
  color: var(--red);
}

.home-states-list-scroll {
  position: relative;
  max-height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.home-states-list-scroll::before,
.home-states-list-scroll::after {
  content: "";
  position: absolute;
  left: 0;
  right: 8px;
  z-index: 2;
  height: 22px;
  pointer-events: none;
  border-radius: 14px;
}

.home-states-list-scroll::before {
  top: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 30, 70, 0.92) 0%,
    rgba(10, 30, 70, 0) 100%
  );
}

.home-states-list-scroll::after {
  bottom: 0;
  background: linear-gradient(
    0deg,
    rgba(10, 30, 70, 0.92) 0%,
    rgba(10, 30, 70, 0) 100%
  );
}

.home-states-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  max-height: 440px;
  padding: 8px 6px 8px 8px;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(217, 164, 32, 0.72) rgba(255, 255, 255, 0.08);
}

.home-states-list::-webkit-scrollbar {
  width: 7px;
}

.home-states-list::-webkit-scrollbar-track {
  margin: 8px 0;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

.home-states-list::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(217, 164, 32, 0.85) 0%, rgba(185, 136, 21, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.home-states-list::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
}

.home-state-link {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border: 1px solid rgba(10, 30, 70, 0.1);
  background: #fafbfc;
  text-decoration: none;
  transition:
    background 0.14s ease,
    border-color 0.14s ease,
    transform 0.14s ease;
}

.home-state-link:hover {
  background: #fff;
  border-color: rgba(225, 31, 45, 0.24);
  transform: translateX(2px);
}

.home-state-link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 36px;
  flex-shrink: 0;
}

.home-state-link-icon svg {
  display: block;
  width: 44px;
  height: 36px;
  overflow: visible;
}

.home-state-link-icon path {
  fill: var(--navy);
  transition: fill 0.14s ease;
}

.home-state-link:hover .home-state-link-icon path {
  fill: var(--red);
}

.home-state-link-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
}

.home-state-link-arrow {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-soft);
  transition: transform 0.14s ease, color 0.14s ease;
}

.home-state-link:hover .home-state-link-arrow {
  transform: translateX(3px);
  color: var(--red);
}

.home-states-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.home-states-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 16px;
  background: #f7f9fc;
  border: 1px solid var(--line);
  border-radius: 0;
}

.home-states-stat strong {
  display: block;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 900;
  color: var(--navy);
}

.home-states-stat span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-soft);
}

/* USA 250 story (after exclusive block) */
.usa250-section--exclusive .usa250-shell {
  width: min(1160px, calc(100% - 34px));
  padding-bottom: clamp(16px, 2.5vw, 28px);
}

.usa250-section--new2026 .usa250-shell {
  width: min(1160px, calc(100% - 34px));
  padding-bottom: clamp(16px, 2.5vw, 28px);
}

.usa250-section--story .usa250-shell {
  width: min(var(--container), calc(100% - 34px));
}

.usa250-section--new2026 {
  padding: 72px 0 0;
}

.about-section {
  padding-bottom: 0;
}

.summer-shop-band .usa250-section--story {
  position: relative;
  overflow: hidden;
  padding: 96px 0 56px;
  background-color: var(--navy);
}

.summer-shop-band .usa250-section--story::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(10, 30, 70, 0.42) 0%,
    rgba(10, 30, 70, 0.62) 100%
  );
}

.summer-shop-band .usa250-section--story .usa250-shell {
  position: relative;
  z-index: 1;
}

.usa250-shell--story {
  padding-bottom: 0;
}

.summer-shop-band .usa250-badge-bridge-wrap {
  position: relative;
  height: 0;
  z-index: 60;
  pointer-events: none;
}

.usa250-badge-bridge-wrap {
  position: relative;
  height: 0;
  z-index: 60;
  pointer-events: none;
}

.usa250-badge-bridge {
  margin: 0 auto;
  position: absolute;
  left: 50%;
  top: 18px;
  transform: translate(-50%, -50%);
  width: min(560px, calc(100% - 34px));
  max-width: 560px;
  text-align: center;
  padding: 18px 24px 16px;
  border: 1px solid rgba(19, 35, 62, 0.1);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(13, 27, 56, 0.1);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
  pointer-events: auto;
}

.usa250-badge-bridge:hover {
  transform: translate(-50%, calc(-50% - 4px));
  box-shadow: 0 20px 36px rgba(13, 27, 56, 0.14);
}

.usa250-mini-stars {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 18px;
}

.usa250-badge-bridge p {
  margin: 0;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}

.usa250-exclusive .usa250-story-card {
  margin: 34px 0 40px;
}

.usa250-story-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  width: 100%;
  margin: 0;
  height: clamp(280px, 42vw, 565px);
  max-height: 565px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow:
    0 20px 25px -5px rgba(10, 30, 70, 0.1),
    0 8px 10px -6px rgba(10, 30, 70, 0.08);
  overflow: hidden;
}

.usa250-story-card .usa250-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(24px, 3vw, 36px);
}

.usa250-story-card .usa250-copy h3 {
  margin-bottom: 12px;
  font-size: clamp(26px, 2.2vw, 40px);
  max-width: 28ch;
}

.usa250-story-card .usa250-copy > p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.65;
  max-width: 42ch;
}

.usa250-story-card .usa250-stat-card {
  padding: 18px 20px 16px;
  border-radius: 18px;
}

.usa250-story-card .usa250-stat-card strong {
  margin-bottom: 6px;
  font-size: clamp(34px, 3.5vw, 46px);
}

.usa250-story-card .usa250-stat-card p {
  font-size: 15px;
  line-height: 1.55;
}

.usa250-story-card .usa250-stat-stars {
  margin-bottom: 10px;
  font-size: 16px;
}

.usa250-story-card .usa250-stat-card-inline {
  max-width: 300px;
}

.usa250-story-card .usa250-bottom-ribbon {
  min-height: 46px;
  padding: 0 22px;
  margin-top: 16px;
  font-size: 13px;
}

.usa250-story-card .usa250-visual {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  height: 100%;
  border-left: 1px solid var(--line);
}

.usa250-copy h3 {
  margin: 0 0 18px;
  font-size: clamp(34px, 3.2vw, 60px);
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--navy);
  max-width: 620px;
}

.usa250-copy > p {
  margin: 0 0 28px;
  max-width: 620px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-soft);
}

.usa250-bottom-ribbon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  margin: 22px 0 0;
  background: linear-gradient(180deg, var(--red) 0%, #bf1722 100%);
  color: #fff;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 12px 22px rgba(225, 31, 45, 0.14);
}

.usa250-visual {
  position: relative;
  width: 100%;
}

.usa250-photo-panel {
  position: relative;
  flex: 1;
  min-height: 280px;
  overflow: hidden;
  background: #0f1f3d;
}

.usa250-story-card .usa250-photo-panel {
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
}

.usa250-story-card .usa250-photo-img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}

.usa250-photo-img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  display: block;
}

.usa250-story-card .usa250-photo-overlay {
  display: none;
}

.usa250-stat-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-bottom: 6px solid var(--blue-accent);
  border-radius: 24px;
  padding: 24px 26px 22px;
  box-shadow: 0 18px 34px rgba(10, 30, 70, 0.12);
}

.usa250-stat-card-inline {
  max-width: 360px;
}

.usa250-story-card .usa250-stat-card {
  box-shadow: none;
  background: #f7f9fc;
}

.usa250-stat-stars {
  justify-content: flex-start;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 18px;
}

.usa250-stat-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(42px, 5vw, 62px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: var(--navy);
}

.usa250-stat-card p {
  margin: 0;
  max-width: 235px;
  font-size: 16px;
  line-height: 1.65;
  color: #4c5f79;
}

/* Products */
.section.section-white.products-section {
  overflow: visible;
}

.products-section {
  padding-top: 56px;
}

.products-promo-marquee {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  margin: 0 0 28px;
  border-block: 1px solid rgba(10, 30, 70, 0.08);
  background: var(--navy);
  color: #fff;
}

.products-promo-marquee-track {
  display: flex;
  width: max-content;
  animation: products-promo-marquee 36s linear infinite;
}

.products-promo-marquee-group {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.products-promo-marquee-dot {
  color: var(--gold);
  font-size: 11px;
}

@keyframes products-promo-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .products-promo-marquee-track {
    animation: none;
  }
}

.products-head-large h2 {
  font-size: clamp(40px, 4vw, 68px);
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.products-section .section-kicker {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  min-height: auto;
  border-radius: 0;
  color: var(--gold);
}

.products-section > .container {
  width: min(1160px, calc(100% - 34px));
}

.product-grid:not(.product-grid--catalog) {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-grid:not(.product-grid--catalog) .product-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(5, 12, 28, 0.12);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-grid:not(.product-grid--catalog) .product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px rgba(5, 12, 28, 0.18);
}

.product-grid:not(.product-grid--catalog) .product-image-wrap {
  background: #f3f4f6;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.product-grid:not(.product-grid--catalog) .product-image-wrap img {
  width: 100%;
  height: 190px;
  object-fit: contain;
}

.product-grid:not(.product-grid--catalog) .product-card-body {
  padding: 22px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.product-grid:not(.product-grid--catalog) .product-card-body h3 {
  color: var(--text);
}

.product-grid:not(.product-grid--catalog) .product-card-subnote {
  display: flex;
  align-items: center;
  margin: -4px 0 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #8a96a8;
}

.product-grid:not(.product-grid--catalog) .swirl-underline {
  display: inline;
  text-decoration: underline;
  text-decoration-color: rgba(138, 150, 168, 0.5);
  text-underline-offset: 0.22em;
  text-decoration-thickness: 1px;
}

.product-grid:not(.product-grid--catalog) .swirl-underline::after {
  display: none;
}

.product-grid:not(.product-grid--catalog) .product-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

/* Fundraising — navy strip (homepage) */
.fundraising-section--navy h2 {
  letter-spacing: -0.04em;
  font-weight: 900;
}

.fundraising-head-accent {
  color: var(--gold);
}

.fundraising-band-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 22px);
  width: 100%;
  margin: 0;
  padding: 8px 20px;
  background: transparent;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.fundraising-band-strip-dot {
  color: var(--gold);
  font-size: 11px;
}

.fund-showcase {
  position: relative;
  width: 100%;
  min-height: clamp(280px, 36vw, 420px);
  aspect-ratio: 4 / 3;
  background: var(--navy);
  overflow: hidden;
}

.fund-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.85s ease;
  pointer-events: none;
}

.fund-slide.is-active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

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

.fund-showcase-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(10, 30, 70, 0) 45%,
    rgba(10, 30, 70, 0.55) 100%
  );
}

.fund-showcase-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px 22px;
}

.fund-showcase-arrow {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(10, 30, 70, 0.42);
  backdrop-filter: blur(6px);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.16s ease,
    border-color 0.16s ease,
    transform 0.16s ease;
}

.fund-showcase-arrow:hover {
  background: rgba(10, 30, 70, 0.72);
  border-color: rgba(255, 255, 255, 0.42);
  transform: translateY(-1px);
}

.fund-showcase-arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fund-showcase-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.fund-showcase-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition:
    width 0.2s ease,
    background 0.2s ease;
}

.fund-showcase-dot.is-active {
  width: 28px;
  background: var(--gold);
}

.fund-benefit-grid {
  list-style: none;
  flex: 1 1 auto;
  align-self: stretch;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 20px);
  min-height: 0;
}

.fund-benefit-grid li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  height: 100%;
  min-height: 0;
  padding: clamp(18px, 2.2vw, 24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.fund-benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold);
  font-size: 16px;
  line-height: 1;
}

.fund-benefit-grid strong {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.25;
}

.fund-benefit-grid p {
  margin: 0;
  font-size: clamp(14px, 1.15vw, 15px);
  line-height: 1.55;
}

.fund-panel-actions {
  flex-shrink: 0;
  margin-top: 0;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* Legacy carousel hooks (fundraising page) */
.fund-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #040d1c;
}

.fund-media-frame {
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.fund-media-bar {
  display: flex;
  flex-direction: column;
  background: #fff;
}

.fund-media-progress {
  height: 4px;
  background: var(--navy);
  overflow: hidden;
}

.fund-media-progress-bar {
  display: block;
  height: 100%;
  width: 33.333%;
  background: var(--red);
  transition: width 0.4s ease;
}

.fund-media-bar-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-top: 1px solid rgba(10, 30, 70, 0.08);
}

.fund-media-count {
  margin: 0;
  flex: 1;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  text-align: center;
}

.fund-media-btn {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(10, 30, 70, 0.1);
  border-radius: 0;
  background: #f4f6f9;
  color: var(--navy);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fund-media-btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fund-feature-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.fund-feature-list li {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
  color: var(--navy);
}

.fund-feature-list li::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 14px;
}

@media (prefers-reduced-motion: reduce) {
  .fund-media-progress-bar,
  .fund-slide,
  .home-states-list {
    transition: none;
    scroll-behavior: auto;
  }
}

@media (max-width: 1100px) {
  .home-states-grid {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .home-states-map-frame--interactive {
    min-height: 340px;
  }

  .home-states-list-scroll,
  .home-states-list {
    max-height: none;
  }

  .home-states-list-scroll::before,
  .home-states-list-scroll::after {
    content: none;
  }

  .usa250-story-card,
  .two-col {
    grid-template-columns: 1fr;
    height: auto;
    max-height: none;
  }

  .usa250-story-card .usa250-visual {
    min-height: 280px;
    border-left: none;
    border-top: 1px solid var(--line);
  }

  .usa250-story-card .usa250-visual img {
    height: 260px;
  }

  .fundraising-photo-card {
    max-width: none;
    justify-self: stretch;
  }

  .fund-showcase {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .fund-benefit-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .fund-benefit-grid li {
    height: auto;
    min-height: 0;
  }

  .product-grid:not(.product-grid--catalog) {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .home-states-picker {
    padding: 40px 0 32px;
  }

  .home-states-grid {
    padding: 16px;
  }

  .home-states-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-section {
    padding-top: 56px;
  }

  .products-promo-marquee-group {
    gap: 20px;
    padding: 12px 20px;
    font-size: 12px;
  }

  .product-grid:not(.product-grid--catalog) {
    grid-template-columns: 1fr;
  }

  .fundraising-stage-panel {
    padding: 0 4px;
  }

  .fund-panel-title {
    font-size: clamp(26px, 7vw, 36px);
  }

  .usa250-stat-card strong {
    font-size: 42px;
  }
}

