:root {
  --bg: #071224;
  --bg-soft: #10243e;
  --surface: #122b49;
  --surface-alt: #0d1d33;
  --text: #e8eef9;
  --muted: #a6bddf;
  --primary: #d5ac4e;
  --danger: #d62839;
  --line: #24476d;
  --ok: #0f6b3f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1000px 500px at 8% -20%, rgba(213, 172, 78, 0.25), transparent),
    radial-gradient(1000px 600px at 100% 10%, rgba(214, 40, 57, 0.2), transparent),
    var(--bg);
}

h1,
h2,
h3 {
  font-family: "Merriweather", Georgia, serif;
  letter-spacing: 0.01em;
  margin: 0;
}

a {
  color: #d1e5ff;
}

.wrap {
  width: min(1180px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(7, 18, 36, 0.92);
  border-bottom: 1px solid rgba(36, 71, 109, 0.5);
}

.topbar-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.02rem;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
}

.nav a.active,
.nav a:hover {
  background: rgba(36, 71, 109, 0.5);
  color: white;
}

.hero,
.subhero {
  padding: 3.4rem 0 2.6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-visual img {
  max-width: 100%;
  width: min(420px, 100%);
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.45));
}

.kicker {
  margin: 0 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--primary);
}

h1 {
  font-size: clamp(1.6rem, 4vw, 2.85rem);
  line-height: 1.18;
}

.lead {
  margin-top: 1rem;
  color: var(--muted);
  max-width: 68ch;
  line-height: 1.65;
}

.hero-cta {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  display: inline-block;
  border: 1px solid transparent;
  padding: 0.8rem 1.15rem;
  border-radius: 0.65rem;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--danger), #ff4f5f);
  color: white;
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: #deebff;
}

.metrics {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.metric {
  background: rgba(18, 43, 73, 0.6);
  border: 1px solid rgba(36, 71, 109, 0.7);
  border-radius: 0.75rem;
  padding: 0.7rem 0.88rem;
  min-width: 155px;
}

.metric span {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
}

.metric small {
  color: var(--muted);
}

.section {
  padding: 1.2rem 0 3rem;
}

.section-alt {
  background: linear-gradient(180deg, rgba(13, 29, 51, 0.55), rgba(13, 29, 51, 0.25));
  border-top: 1px solid rgba(36, 71, 109, 0.5);
  border-bottom: 1px solid rgba(36, 71, 109, 0.5);
}

.section h2 {
  font-size: clamp(1.35rem, 2.4vw, 2.15rem);
  margin-bottom: 1.1rem;
}

.mission-home {
  max-width: 82ch;
}

.mission-home h2 {
  margin-bottom: 0.8rem;
}

.mission-home p {
  color: var(--muted);
  line-height: 1.7;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.card,
.offer-card,
.team-card,
.contact-card,
.media-item,
.info-card,
.form-card {
  background: linear-gradient(180deg, rgba(18, 43, 73, 0.88), rgba(13, 29, 51, 0.88));
  border: 1px solid rgba(36, 71, 109, 0.7);
  border-radius: 1rem;
  padding: 1rem;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
}

.card h3,
.offer-card h3,
.offer-card h2 {
  margin-bottom: 0.5rem;
}

.card p,
.offer-card p,
.team-card p,
.media-item p,
.legal-content p,
.prose p {
  color: var(--muted);
  line-height: 1.65;
}

.info-card ul {
  margin-top: 0.4rem;
  margin-bottom: 1rem;
  padding-left: 1rem;
  color: var(--muted);
}

.info-card li {
  margin-bottom: 0.45rem;
}

.offer-cards {
  display: grid;
  gap: 1rem;
}

.offer-grid {
  grid-template-columns: repeat(3, 1fr);
}

.offer-meta {
  color: #cfdcf3;
  font-size: 0.85rem;
  font-weight: 700;
}

.inline-link {
  color: #f2ca6d;
  font-weight: 800;
  text-decoration: none;
}

.inline-link:hover {
  text-decoration: underline;
}

.row-actions {
  display: flex;
  gap: 1rem;
}

.media-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 1rem;
  align-items: start;
}

.media-player-card,
.media-stage-copy,
.media-video-card {
  background: linear-gradient(180deg, rgba(18, 43, 73, 0.92), rgba(13, 29, 51, 0.92));
  border: 1px solid rgba(36, 71, 109, 0.74);
  border-radius: 1rem;
}

.media-player-card {
  overflow: hidden;
}

.media-player-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background:
    radial-gradient(900px 360px at 20% -10%, rgba(213, 172, 78, 0.24), transparent),
    rgba(7, 18, 36, 0.98);
}

.media-player-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.media-stage-sidebar {
  display: grid;
  gap: 1rem;
}

.media-stage-copy {
  padding: 1rem;
}

.media-stage-copy h2 {
  margin-bottom: 0.7rem;
}

.media-stage-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.media-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.media-video-card {
  padding: 0;
  cursor: pointer;
  text-align: left;
  color: inherit;
  font: inherit;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.media-video-card:hover,
.media-video-card.active {
  transform: translateY(-2px);
  border-color: rgba(242, 202, 109, 0.72);
  box-shadow: 0 18px 30px rgba(2, 8, 15, 0.28);
}

.media-video-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 1rem 1rem 0 0;
}

.media-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-play-badge {
  position: absolute;
  left: 0.8rem;
  bottom: 0.8rem;
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.58rem;
  border-radius: 999px;
  background: rgba(7, 18, 36, 0.88);
  border: 1px solid rgba(242, 202, 109, 0.68);
  color: #ffe3a8;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.media-video-body {
  display: grid;
  gap: 0.45rem;
  padding: 0.95rem 1rem 1rem;
}

.media-video-body strong {
  font-size: 1.02rem;
}

.media-video-body span:last-child {
  color: var(--muted);
  line-height: 1.6;
}

.prose {
  max-width: 78ch;
}

.form-wrap {
  max-width: 950px;
}

.form-card h2,
.support-main-card h2 {
  margin-bottom: 0.55rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.form-card label,
.support-main-card label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 700;
  color: #d5e5ff;
  margin-bottom: 0.7rem;
}

.checkbox-line {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 0.6rem !important;
  color: var(--muted) !important;
  font-weight: 500 !important;
}

.form-card input[type="text"],
.form-card input[type="email"],
.form-card input[type="number"],
.form-card input[type="url"],
.form-card select,
.form-card textarea,
.support-main-card input[type="text"],
.support-main-card input[type="email"],
.support-main-card input[type="number"],
.support-main-card input[type="url"],
.support-main-card select,
.support-main-card textarea {
  width: 100%;
  border: 1px solid rgba(36, 71, 109, 0.85);
  border-radius: 0.58rem;
  background: rgba(7, 18, 36, 0.62);
  color: #f2f6ff;
  padding: 0.72rem 0.78rem;
  font: inherit;
}

.form-card textarea,
.support-main-card textarea {
  resize: vertical;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus,
.support-main-card input:focus,
.support-main-card select:focus,
.support-main-card textarea:focus {
  outline: 2px solid rgba(213, 172, 78, 0.6);
  border-color: var(--primary);
}

.errorlist {
  margin: 0;
  padding-left: 1rem;
  color: #ff9da7;
  font-size: 0.88rem;
  font-weight: 700;
}

.support-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 1rem;
}

.support-hero {
  padding-bottom: 1.5rem;
}

.support-hero-metrics {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.support-hero-metrics article {
  border: 1px solid rgba(36, 71, 109, 0.75);
  border-radius: 0.85rem;
  padding: 0.75rem 0.85rem;
  background: linear-gradient(160deg, rgba(13, 29, 51, 0.8), rgba(18, 43, 73, 0.8));
}

.support-hero-metrics strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 900;
}

.support-hero-metrics span {
  color: #b7cae8;
  font-size: 0.88rem;
  line-height: 1.45;
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(290px, 0.55fr);
  gap: 1rem;
  align-items: start;
}

.support-main-card {
  background: linear-gradient(180deg, rgba(18, 43, 73, 0.92), rgba(13, 29, 51, 0.94));
  border: 1px solid rgba(36, 71, 109, 0.82);
  border-radius: 1rem;
  padding: 1.2rem;
}

.support-main-header h2 {
  margin-bottom: 0.45rem;
}

.support-main-header p {
  margin-top: 0;
  margin-bottom: 1.15rem;
  color: var(--muted);
}

.support-donation-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 0.95rem;
  margin-bottom: 1rem;
}

.support-amount-picker {
  border: 1px solid rgba(36, 71, 109, 0.75);
  border-radius: 0.95rem;
  padding: 0.95rem;
  background: linear-gradient(165deg, rgba(10, 24, 41, 0.76), rgba(15, 33, 57, 0.72));
}

.support-stage-title {
  margin: 0 0 0.65rem;
  color: #f6d887;
  font-size: 0.95rem;
  font-weight: 800;
}

.support-stage-title-muted {
  margin-top: 0.95rem;
  color: #d9e7ff;
}

.support-amount-grid {
  display: grid;
  gap: 0.65rem;
}

.support-amount-grid-primary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.support-amount-grid-secondary {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.support-amount-btn {
  min-height: 116px;
  justify-content: center;
  border-radius: 0.95rem;
  border-color: rgba(50, 90, 132, 0.9);
  background: linear-gradient(180deg, rgba(13, 29, 51, 0.9), rgba(7, 18, 36, 0.96));
  position: relative;
}

.support-amount-btn-highlight {
  border-color: rgba(242, 202, 109, 0.65);
  background: linear-gradient(165deg, rgba(214, 40, 57, 0.34), rgba(13, 29, 51, 0.96));
}

.support-amount-badge {
  align-self: flex-start;
  border: 1px solid rgba(242, 202, 109, 0.75);
  color: #ffd98e;
  border-radius: 999px;
  padding: 0.18rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.donation-amount-value {
  font-size: 1.25rem;
}

.support-custom-label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.95rem;
  margin-bottom: 0;
  color: #deebff;
  font-weight: 700;
}

.support-custom-label span {
  font-size: 0.92rem;
}

.support-live-summary {
  border: 1px solid rgba(214, 40, 57, 0.45);
  border-radius: 0.95rem;
  padding: 0.95rem;
  background: linear-gradient(170deg, rgba(38, 12, 20, 0.48), rgba(11, 24, 40, 0.9));
  display: flex;
  flex-direction: column;
}

.support-live-kicker {
  margin: 0;
  color: #f7d89a;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 800;
}

.support-live-amount {
  margin: 0.5rem 0 0.55rem;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.support-live-impact {
  margin: 0;
  color: #dce8fc;
  line-height: 1.6;
}

.support-live-note {
  margin: auto 0 0;
  padding-top: 0.95rem;
  color: #a8bfdf;
  font-size: 0.84rem;
  line-height: 1.5;
}

.support-donor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.support-submit-btn {
  width: 100%;
  margin-top: 0.4rem;
  padding-block: 0.9rem;
  font-size: 1.02rem;
}

.support-side-column {
  display: grid;
  gap: 0.8rem;
}

.support-side-card {
  background: linear-gradient(180deg, rgba(18, 43, 73, 0.9), rgba(13, 29, 51, 0.9));
  border: 1px solid rgba(36, 71, 109, 0.72);
  border-radius: 1rem;
  padding: 1rem;
}

.support-side-card h2,
.support-side-card h3 {
  margin-bottom: 0.6rem;
}

.support-side-card p,
.support-side-card ul {
  color: var(--muted);
  line-height: 1.6;
  margin-top: 0;
}

.support-side-card ul {
  padding-left: 1rem;
  margin-bottom: 0;
}

.support-side-card li {
  margin-bottom: 0.45rem;
}

.support-side-card-ghost {
  border-style: dashed;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.founder-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 0.95rem;
  background: linear-gradient(180deg, rgba(18, 43, 73, 0.92), rgba(13, 29, 51, 0.9));
  border: 1px solid rgba(36, 71, 109, 0.75);
  border-radius: 1rem;
  padding: 0.95rem;
}

.founder-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 0.8rem;
  border: 1px solid rgba(36, 71, 109, 0.8);
}

.founder-role {
  margin: 0 0 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
  font-weight: 800;
  color: #f2ca6d;
}

.founder-card h3 {
  margin-bottom: 0.45rem;
}

.founder-card p {
  margin-top: 0;
  color: var(--muted);
  line-height: 1.6;
}

.founder-disclaimer {
  margin: 1rem 0 0;
  color: #b5cae8;
  font-size: 0.9rem;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.activity-card {
  background: linear-gradient(180deg, rgba(18, 43, 73, 0.9), rgba(13, 29, 51, 0.9));
  border: 1px solid rgba(36, 71, 109, 0.72);
  border-radius: 1rem;
  padding: 1rem;
}

.activity-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
}

.activity-card h3 {
  margin-bottom: 0.45rem;
}

.activity-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.insight-card {
  background: linear-gradient(180deg, rgba(18, 43, 73, 0.92), rgba(13, 29, 51, 0.9));
  border: 1px solid rgba(36, 71, 109, 0.72);
  border-radius: 1rem;
  padding: 1rem;
}

.insight-card h3 {
  margin-bottom: 0.45rem;
}

.insight-card p {
  margin-top: 0;
  color: var(--muted);
  line-height: 1.6;
}

.partner-card-head {
  display: flex;
  align-items: center;
  min-height: 44px;
  margin-bottom: 0.4rem;
}

.partner-card-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.partner-card-photo {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 0.75rem;
  border: 1px solid rgba(36, 71, 109, 0.7);
  margin: 0.35rem 0 0.7rem;
}

.partners-band {
  border: 1px solid rgba(36, 71, 109, 0.74);
  border-radius: 1rem;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(18, 43, 73, 0.9), rgba(13, 29, 51, 0.9));
}

.partners-label {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #d7e7ff;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(36, 71, 109, 0.6);
}

.partners-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.2rem;
}

.partner-item img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  border-radius: 0.6rem;
  background: rgba(7, 18, 36, 0.45);
  border: 1px solid rgba(36, 71, 109, 0.5);
  padding: 0.4rem;
}

.partner-sep {
  width: 1px;
  height: 56px;
  background: rgba(36, 71, 109, 0.7);
}

.partner-name {
  color: #c6d9f5;
  font-size: 0.82rem;
  text-align: center;
  line-height: 1.45;
}

.media-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.media-highlight-card {
  background: linear-gradient(180deg, rgba(18, 43, 73, 0.9), rgba(13, 29, 51, 0.88));
  border: 1px solid rgba(36, 71, 109, 0.7);
  border-radius: 1rem;
  padding: 1rem;
}

.media-highlight-card h3 {
  margin-bottom: 0.45rem;
}

.media-highlight-card p {
  margin-top: 0;
  color: var(--muted);
  line-height: 1.6;
}

.civil-partner-intro {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 1rem;
}

.civil-partner-intro img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  border-radius: 0.75rem;
  border: 1px solid rgba(36, 71, 109, 0.7);
  background: rgba(7, 18, 36, 0.45);
  padding: 0.45rem;
}

.civil-partner-intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.photo-card {
  margin: 0;
  background: linear-gradient(180deg, rgba(18, 43, 73, 0.9), rgba(13, 29, 51, 0.9));
  border: 1px solid rgba(36, 71, 109, 0.7);
  border-radius: 0.85rem;
  overflow: hidden;
}

.photo-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.photo-card figcaption {
  color: #c9dbf6;
  font-size: 0.85rem;
  line-height: 1.45;
  padding: 0.65rem 0.72rem 0.78rem;
}

.bundle-strip {
  margin: 1rem 0 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(36, 71, 109, 0.8);
  border-radius: 0.95rem;
  background: linear-gradient(160deg, rgba(214, 40, 57, 0.24), rgba(11, 25, 42, 0.9));
  padding: 0.85rem 0.95rem;
}

.bundle-strip p {
  margin: 0;
  color: #d9e8ff;
  line-height: 1.5;
}

.bundle-strip strong {
  font-size: 1.1rem;
  color: #ffe2aa;
}

.bundle-strip span {
  color: #a8c2e8;
}

.corporate-offer-grid,
.variant-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.corporate-offer-card,
.variant-card {
  background: linear-gradient(180deg, rgba(18, 43, 73, 0.92), rgba(13, 29, 51, 0.92));
  border: 1px solid rgba(36, 71, 109, 0.74);
  border-radius: 1rem;
  padding: 1rem;
}

.corporate-offer-card h3,
.variant-card h3 {
  margin-bottom: 0.45rem;
}

.corporate-offer-card p,
.variant-card p,
.variant-card li {
  color: var(--muted);
  line-height: 1.6;
}

.corporate-sales-note,
.variant-sales {
  border-left: 3px solid rgba(242, 202, 109, 0.75);
  padding-left: 0.6rem;
  margin: 0.75rem 0;
}

.corporate-list {
  margin: 0.3rem 0 0.8rem;
  padding-left: 1rem;
}

.corporate-list li {
  margin-bottom: 0.35rem;
}

.variant-card h4 {
  margin: 0.6rem 0 0.25rem;
  font-size: 0.95rem;
}

.corp-hero .lead {
  max-width: 82ch;
}

.bundle-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: 1rem;
  align-items: stretch;
}

.bundle-overview-main,
.bundle-overview-price {
  border: 1px solid rgba(36, 71, 109, 0.74);
  border-radius: 1rem;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(18, 43, 73, 0.9), rgba(13, 29, 51, 0.88));
}

.bundle-overview-main p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.bundle-price-label {
  margin: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f2ca6d;
  font-weight: 800;
}

.bundle-price-value {
  margin: 0.35rem 0 0.4rem;
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
}

.bundle-price-secondary {
  margin: 0;
  color: #abc2e4;
}

.bundle-price-saving {
  margin: 0.55rem 0 0;
  color: #ffe2aa;
  font-weight: 800;
}

.comparison-wrap {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
  background: rgba(12, 26, 45, 0.72);
  border: 1px solid rgba(36, 71, 109, 0.7);
  border-radius: 0.8rem;
}

.comparison-table th,
.comparison-table td {
  padding: 0.72rem;
  border-bottom: 1px solid rgba(36, 71, 109, 0.52);
  vertical-align: top;
  text-align: left;
}

.comparison-table th {
  background: rgba(16, 35, 61, 0.82);
  color: #f2ca6d;
  font-size: 0.88rem;
  font-weight: 800;
}

.comparison-table td {
  color: #c6d9f5;
  font-size: 0.94rem;
  line-height: 1.5;
}

.pricing-table th,
.pricing-table td {
  min-width: 140px;
}

.pricing-table th:first-child,
.pricing-table td:first-child {
  min-width: 190px;
}

.pricing-table td:nth-child(2) {
  min-width: 260px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 1rem;
}

.detail-main,
.detail-box {
  background: linear-gradient(180deg, rgba(18, 43, 73, 0.9), rgba(13, 29, 51, 0.9));
  border: 1px solid rgba(36, 71, 109, 0.74);
  border-radius: 1rem;
  padding: 1rem;
}

.detail-main p {
  color: var(--muted);
  line-height: 1.65;
}

.detail-main h2,
.detail-main h3 {
  margin-bottom: 0.45rem;
}

.detail-main h3 {
  margin-top: 1rem;
}

.detail-side {
  display: grid;
  gap: 0.8rem;
}

.detail-box p {
  margin: 0.35rem 0;
  color: var(--muted);
}

.detail-box-accent {
  border-color: rgba(242, 202, 109, 0.5);
}

.program-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.program-nav-card,
.faq-card {
  background: linear-gradient(180deg, rgba(18, 43, 73, 0.88), rgba(13, 29, 51, 0.88));
  border: 1px solid rgba(36, 71, 109, 0.7);
  border-radius: 1rem;
  padding: 1rem;
}

.program-nav-card h3,
.faq-card h3 {
  margin-bottom: 0.45rem;
}

.program-nav-card p,
.faq-card p {
  color: var(--muted);
  line-height: 1.6;
  margin-top: 0;
}

.program-tag {
  display: inline-block;
  border: 1px dashed rgba(213, 172, 78, 0.7);
  color: #f2ca6d;
  border-radius: 999px;
  padding: 0.28rem 0.64rem;
  font-size: 0.84rem;
  font-weight: 700;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.donation-priority {
  margin: 0.85rem 0 1rem;
  border: 1px solid rgba(36, 71, 109, 0.75);
  border-radius: 0.95rem;
  padding: 0.95rem;
  background: linear-gradient(160deg, rgba(12, 26, 45, 0.7), rgba(16, 35, 61, 0.6));
}

.donation-priority-title {
  margin: 0 0 0.65rem;
  color: #f6d887;
  font-weight: 800;
}

.donation-priority-subtitle {
  margin: 0.85rem 0 0.55rem;
  color: #cadbf3;
  font-size: 0.95rem;
  font-weight: 700;
}

.donation-choices {
  display: grid;
  gap: 0.65rem;
}

.donation-choices-primary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.donation-choices-secondary {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.donation-amount-btn {
  border: 1px solid rgba(36, 71, 109, 0.9);
  border-radius: 0.8rem;
  background: rgba(7, 18, 36, 0.7);
  color: #e8f1ff;
  text-align: left;
  padding: 0.75rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.donation-amount-btn small {
  color: #a8bfdf;
  font-size: 0.78rem;
}

.donation-amount-btn-primary {
  background: linear-gradient(160deg, rgba(214, 40, 57, 0.28), rgba(12, 26, 45, 0.85));
}

.donation-amount-btn:hover {
  border-color: #f2ca6d;
  transform: translateY(-1px);
}

.donation-amount-btn.active {
  border-color: #f2ca6d;
  box-shadow: 0 0 0 1px rgba(242, 202, 109, 0.25), 0 8px 20px rgba(0, 0, 0, 0.35);
}

.donation-amount-value {
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.donation-custom-label {
  margin-top: 0.9rem;
  margin-bottom: 0 !important;
}

.donation-custom-label input {
  margin-top: 0.35rem;
}

.alerts {
  margin-top: 0.8rem;
}

.alert {
  border-radius: 0.7rem;
  padding: 0.78rem 0.95rem;
  margin-bottom: 0.65rem;
  border: 1px solid transparent;
  font-weight: 700;
}

.alert.success {
  background: rgba(15, 107, 63, 0.25);
  border-color: rgba(15, 107, 63, 0.55);
}

.alert.error {
  background: rgba(214, 40, 57, 0.2);
  border-color: rgba(214, 40, 57, 0.6);
}

.team-grid,
.contact-boxes,
.media-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.legal-content {
  max-width: 92ch;
}

.legal-content p {
  margin: 0.4rem 0;
}

.legal-content h2,
.legal-content h3 {
  margin: 1.3rem 0 0.6rem;
}

.footer {
  border-top: 1px solid rgba(36, 71, 109, 0.5);
  background: rgba(6, 14, 27, 0.7);
  margin-top: 2.2rem;
  padding: 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
  gap: 1rem;
}

.footer h3 {
  margin-bottom: 0.75rem;
  font-size: 1.08rem;
}

.footer p {
  margin: 0.24rem 0;
  color: var(--muted);
}

@media (max-width: 1020px) {
  .hero-grid,
  .support-grid,
  .media-stage {
    grid-template-columns: 1fr;
  }

  .founders-grid,
  .activity-grid,
  .insight-grid,
  .photo-grid,
  .media-video-grid,
  .media-highlights-grid,
  .corporate-offer-grid,
  .variant-grid,
  .bundle-overview,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .founder-card {
    grid-template-columns: 145px minmax(0, 1fr);
  }

  .support-layout,
  .support-donation-stage {
    grid-template-columns: 1fr;
  }

  .support-donor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .program-nav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-amount-grid-primary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .donation-choices-primary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-sep {
    display: none;
  }
}

@media (max-width: 720px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.85rem 0;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 0.45rem;
  }

  .pillars,
  .offer-grid,
  .team-grid,
  .contact-boxes,
  .media-list,
  .media-video-grid,
  .form-grid,
  .program-nav-grid,
  .faq-grid,
  .founders-grid,
  .activity-grid,
  .insight-grid,
  .media-stage,
  .photo-grid,
  .corporate-offer-grid,
  .media-highlights-grid,
  .variant-grid,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .founder-card {
    grid-template-columns: 1fr;
  }

  .founder-card img {
    height: 280px;
  }

  .donation-choices-primary,
  .donation-choices-secondary,
  .support-amount-grid-primary,
  .support-amount-grid-secondary,
  .support-donor-grid,
  .support-hero-metrics {
    grid-template-columns: 1fr;
  }

  .bundle-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .partners-row {
    flex-direction: column;
    align-items: stretch;
  }

  .partner-item {
    align-items: flex-start;
  }

  .partner-item img {
    width: 66px;
    height: 66px;
  }

  .civil-partner-intro {
    grid-template-columns: 1fr;
  }

  .hero,
  .subhero {
    padding-top: 2.4rem;
  }
}
