/* ───── @font-face: Geist ───── */
@font-face { font-family: 'Geist'; src: url('Fonts/Geist-Thin.ttf') format('truetype'); font-weight: 100; font-style: normal; font-display: swap; }
@font-face { font-family: 'Geist'; src: url('Fonts/Geist-ExtraLight.ttf') format('truetype'); font-weight: 200; font-style: normal; font-display: swap; }
@font-face { font-family: 'Geist'; src: url('Fonts/Geist-Light.ttf') format('truetype'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Geist'; src: url('Fonts/Geist-Regular.ttf') format('truetype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Geist'; src: url('Fonts/Geist-Medium.ttf') format('truetype'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Geist'; src: url('Fonts/Geist-SemiBold.ttf') format('truetype'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Geist'; src: url('Fonts/Geist-Bold.ttf') format('truetype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Geist'; src: url('Fonts/Geist-ExtraBold.ttf') format('truetype'); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: 'Geist'; src: url('Fonts/Geist-Black.ttf') format('truetype'); font-weight: 900; font-style: normal; font-display: swap; }

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  background: #0a0a0a;
}

.page-frame {
  position: relative;
}

/* Global header - scrolls with content */
.global-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
}


/* ───── Hero section ───── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem 4rem;
  background: transparent;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero__gradient-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  mix-blend-mode: color;
}

/* Hero header */
.hero-header {
  position: absolute;
  top: 2rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  z-index: 10;
}

.hero-nav {
  font-family: 'Geist', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s;
}

.hero-nav:hover {
  opacity: 0.8;
}

.hero-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 0;
}

.hero-logo img {
  height: 2.64rem;
  width: auto;
  display: block;
}

/* READ THIS strip */
.hero-read-this {
  position: fixed;
  left: 0;
  top: 50%;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: translateY(-50%) rotate(180deg);
  font-family: 'Geist', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #ffffff;
  background: #7ed957;
  padding: 0.8rem 0.5rem;
  text-decoration: none;
  z-index: 200;
  transition: background 0.2s;
}

.hero-read-this:hover {
  background: #8ee867;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
}

.hero__tagline {
  width: clamp(320px, 65vw, 640px);
  margin-bottom: calc(1rem + 100px);
}

.hero__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  margin-bottom: 2.5rem;
}

.hero__ctrl-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  opacity: 0.85;
  padding: 0.3rem;
  transition: opacity 0.2s;
}

.hero__ctrl-btn:hover {
  opacity: 1;
}

.hero-title {
  font-family: 'Geist', sans-serif;
  font-size: clamp(3rem, 8vw, 94px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 0.3rem;
  position: relative;
}

.hero-subtitle {
  font-family: 'Geist', sans-serif;
  font-size: clamp(1rem, 2.5vw, 33px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}

.hero-description {
  font-family: 'Geist', sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  margin-bottom: 2.5rem;
  text-align: center;
}

.hero-bubble {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: auto;
  opacity: 0.85;
  z-index: 5;
}

/* CTA button */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 354px;
  height: 65px;
  background: #F4FF00;
  color: #100B0C;
  font-family: 'Geist', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(244, 255, 0, 0.3);
}

.cta-button:active {
  transform: translateY(0);
}

/* ───── Section: Songs (second screen) ───── */
.section-songs {
  position: relative;
  padding: 6rem 2rem;
  background: transparent;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-songs__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.section-songs__headline {
  width: clamp(390px, 70vw, 700px);
  margin: 0 auto 2rem;
}


.section-songs__picture {
  display: block;
  max-width: 100%;
  width: clamp(390px, 85vw, 700px);
  margin: 2rem auto 0;
  border-radius: 12px;
}

/* ───── Section: Why ───── */
/* ───── Section: Why ───── */
.section-why {
  background: #0a0a0a;
  padding: 6rem 4rem;
  position: relative;
  overflow: hidden;
}

.section-why__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  z-index: 1;
}

.section-why__title {
  font-family: 'Geist', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.section-why__text {
  font-family: 'Geist', sans-serif;
  font-size: clamp(0.85rem, 1.6vw, 1rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 640px;
}

.section-why__statement {
  font-family: 'Geist', sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  text-transform: uppercase;
  margin-bottom: 3rem;
  max-width: 780px;
}

.section-why__subtitle {
  font-family: 'Geist', sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.2rem;
}

.section-why__list {
  list-style: none;
  margin: 0 0 4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.section-why__list li {
  font-family: 'Geist', sans-serif;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: color 0.25s ease;
}

.section-why__list li:hover {
  color: #F4FF00;
}

.section-why__list li {
  transition: color 0.25s ease;
  cursor: default;
}

.section-why__list li:hover {
  color: #F4FF00;
}

.section-why__list li::before {
  display: none;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stats__card {
  text-align: left;
}

.stats__number {
  display: block;
  font-family: 'Geist', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #ffe600;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stats__label {
  font-family: 'Geist', sans-serif;
  font-size: clamp(0.75rem, 1.3vw, 0.9rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  text-transform: uppercase;
}

/* ───── Section: Donate ───── */
.section-donate {
  position: relative;
  padding: 6rem 4rem;
  overflow: hidden;
  background: url('Gradient/Gradient.png') center / cover no-repeat fixed;
}

.section-donate__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
}

.section-donate__title {
  font-family: 'Geist', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  font-style: normal;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.section-donate__subtitle {
  font-family: 'Geist', sans-serif;
  font-size: clamp(0.85rem, 1.6vw, 1rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 3rem;
}

.section-donate__heading {
  font-family: 'Geist', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  font-style: normal;
  color: #F4FF00;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* Timeline */
.timeline {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 4rem;
}

.timeline__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.timeline__ops {
  font-family: 'Geist', sans-serif;
  font-size: clamp(0.65rem, 1.2vw, 0.8rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.4;
  margin-bottom: 0.3rem;
}

.timeline__ops small {
  font-size: inherit;
}

.timeline__year {
  font-family: 'Geist', sans-serif;
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.timeline__arrow {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.2rem;
  flex-shrink: 0;
}

/* Goal card */
.goal-card {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 3.5rem 3rem;
  margin-bottom: 2.5rem;
  text-align: center;
  background: #0a0a0a;
  margin-left: auto;
  margin-right: auto;
}

.goal-card__label {
  font-family: 'Geist', sans-serif;
  font-size: clamp(0.75rem, 1.3vw, 0.9rem);
  font-weight: 500;
  color: #F4FF00;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.goal-card__value {
  font-family: 'Geist', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
}

.section-donate__note {
  font-family: 'Geist', sans-serif;
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-align: center;
  margin-bottom: 2.5rem;
}

/* Donate button */
.donate-button {
  display: block;
  width: 354px;
  max-width: 100%;
  margin: 0 auto;
  font-family: 'Geist', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  color: #100B0C;
  background: #F4FF00;
  padding: 1.1rem 2rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.donate-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(244, 255, 0, 0.3);
}

.donate-button:active {
  transform: translateY(0);
}

/* ───── Section: About ───── */
.section-about {
  background: #0a0a0a;
  padding: 6rem 4rem;
}

.section-about__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.section-about__title {
  font-family: 'Geist', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #F4FF00;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.section-about__text {
  font-family: 'Geist', sans-serif;
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.section-about__photo {
  border-radius: 16px;
  overflow: hidden;
}

.section-about__photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* ───── Section: Testimonials ───── */
.section-testimonials {
  background: #0a0a0a;
  padding: 6rem 4rem;
}

.section-testimonials__inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
}

.section-testimonials__title {
  font-family: 'Geist', sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 800;
  color: #F4FF00;
  margin-bottom: 3rem;
  text-transform: uppercase;
}

/* Video grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.video-grid__item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  cursor: pointer;
  background: #1a1a1a;
}

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

.video-grid__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.2s, transform 0.2s;
}

.video-grid__play svg {
  width: 100%;
  height: 100%;
}

.video-grid__item:hover .video-grid__play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

/* Footer text */
.section-testimonials__footer {
  font-family: 'Geist', sans-serif;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

.testimonials-link {
  color: #F4FF00;
  text-decoration: underline;
  transition: opacity 0.2s;
}

.testimonials-link:hover {
  opacity: 0.8;
}

/* Video modal */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.video-modal.is-open {
  display: flex;
}

.video-modal__player {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  outline: none;
}

.video-modal__close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  z-index: 1001;
  line-height: 1;
}

.video-modal__close:hover {
  opacity: 1;
}

/* ───── Section: Support / Artists ───── */
/* ───── Section: Support / Singers ───── */
.section-support {
  position: relative;
  padding: 6rem 4rem;
  overflow: hidden;
  background: url('Gradient/Gradient.png') center / cover no-repeat fixed;
}

.section-support__inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
}

.section-support__title {
  font-family: 'Geist', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #F4FF00;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.section-support__text {
  font-family: 'Geist', sans-serif;
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 700px;
}

/* Singers grid */
.singers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1.5rem;
  margin-bottom: 4rem;
}

.singer-card {
  text-align: center;
}

.singer-card__photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  margin-bottom: 0.8rem;
}

.singer-card__photo > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.singer-card__badge {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #F4FF00;
  padding: 0.3rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.singer-card__name {
  font-family: 'Geist', sans-serif;
  font-size: clamp(0.75rem, 1.4vw, 0.95rem);
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}

.singer-card__song {
  font-family: 'Geist', sans-serif;
  font-size: clamp(0.65rem, 1.2vw, 0.8rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.singer-card--others {
  display: flex;
  align-items: center;
  justify-content: center;
}

.singer-card__others-text {
  font-family: 'Geist', sans-serif;
  font-size: clamp(0.75rem, 1.4vw, 0.95rem);
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
}

.goal-card--support {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.section-support__cta-note {
  font-family: 'Geist', sans-serif;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-align: center;
  margin-bottom: 1rem;
}

/* ───── Section: Radio ───── */
.section-radio {
  position: relative;
  background: transparent;
  padding: 6rem 2rem 5rem;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-radio__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
  text-align: center;
}

.section-radio__center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.section-radio__play {
  width: clamp(200px, 30vw, 320px);
  height: clamp(200px, 30vw, 320px);
  border-radius: 50%;
  background: rgba(160, 120, 200, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: background 0.3s, transform 0.3s;
}

.section-radio__play:hover {
  background: rgba(160, 120, 200, 0.8);
  transform: translate(-50%, -50%) scale(1.05);
}

.section-radio__play svg {
  width: 40%;
  height: 40%;
}

.section-radio__title {
  font-family: 'Geist', sans-serif;
  font-size: clamp(3rem, 9vw, 6rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.section-radio__subtitle {
  font-family: 'Geist', sans-serif;
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #ffffff;
  text-transform: uppercase;
  margin-top: 0.5rem;
  position: relative;
  z-index: 1;
}

.section-radio__icon {
  width: 2.5rem;
  height: auto;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
}

.section-radio__text {
  font-family: 'Geist', sans-serif;
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-top: 2rem;
}

.section-radio__glow {
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 50%;
  background: radial-gradient(
    ellipse at center bottom,
    rgba(180, 140, 40, 0.25) 0%,
    rgba(120, 80, 20, 0.1) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

/* ───── Section: CTA ───── */
.section-cta {
  position: relative;
  padding: 6rem 2rem 5rem;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: transparent;
}

.section-cta__video {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  object-position: center bottom;
  z-index: 0;
  pointer-events: none;
}

.section-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  width: 100%;
  text-align: center;
}

.section-cta__rule {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin-bottom: 3rem;
}

.section-cta__title {
  font-family: 'Geist', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #ffe600;
  line-height: 1.25;
  margin-bottom: 2.5rem;
}

/* Action card */
.action-card {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  text-align: left;
}

.action-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.action-card__row + .action-card__row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.action-card__info {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #ffffff;
  font-family: 'Geist', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
}

.action-card__info strong {
  font-weight: 700;
}

.action-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid #ffe600;
  color: #ffe600;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.action-card__btn {
  font-family: 'Geist', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: #0a0a0a;
  background: #ffe600;
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}

.action-card__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 230, 0, 0.3);
}

/* ───── Footer ───── */
.footer {
  background: #0a0a0a;
  padding: 3.5rem 3rem 0;
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 3rem;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 1.2rem;
}

.footer__logo img {
  height: 3rem;
  width: auto;
}

.footer__legal {
  font-family: 'Geist', sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.footer__col--partner {
  text-align: right;
}

.footer__col--contacts {
  text-align: right;
}

.footer__contact-name {
  display: block;
  font-family: 'Geist', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.4rem;
}

.footer__contact-heading {
  font-family: 'Geist', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 0.8rem;
}

.footer__contact-link {
  display: block;
  font-family: 'Geist', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}

.footer__contact-link:hover {
  color: #ffffff;
}

.footer__contact-link--no-hover:hover {
  color: rgba(255, 255, 255, 0.6);
}

.footer__bottom {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: 'Geist', sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__bottom-links {
  display: flex;
  gap: 2rem;
}

.footer__bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
  transition: color 0.2s;
}

.footer__bottom-links a:hover {
  color: #ffffff;
}

/* ───── Responsive ───── */
@media (max-width: 600px) {
  .hero {
    padding: 1.25rem 1rem 3rem;
  }

  .hero-header {
    padding: 0 1rem;
  }

  .hero-read-this {
    padding: 0.6rem 0.4rem;
    font-size: 0.6rem;
  }

  .page-frame {
    margin: 12px;
  }

  .hero-bubble {
    display: none;
  }

  .global-header {
    padding: 1rem;
  }


  .stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .section-why {
    padding: 4rem 1.25rem;
  }

  .cta-button {
    width: 100%;
    max-width: 354px;
    height: 56px;
    font-size: 0.9rem;
  }

  .section-donate {
    padding: 4rem 1.25rem;
  }

  .goal-card {
    padding: 2rem 1.25rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .goal-card__value {
    font-size: clamp(1rem, 5.5vw, 1.4rem);
    white-space: normal;
    overflow-wrap: break-word;
  }

  .timeline {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .timeline__arrow {
    transform: rotate(90deg);
    margin: 0;
  }

  .donate-button {
    width: 100%;
    max-width: 354px;
  }

  .section-about {
    padding: 4rem 1.25rem;
  }

  .section-testimonials {
    padding: 4rem 1.25rem;
  }

  .video-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .section-support {
    padding: 4rem 1.25rem;
  }

  .singers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
  }

  .section-cta {
    padding: 4rem 1.25rem 3rem;
  }

  .action-card {
    padding: 1rem 1.25rem;
  }

  .action-card__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .footer__inner {
    flex-direction: column;
    gap: 2rem;
  }

  .footer__col--partner {
    text-align: left;
  }

  .footer__col--contacts {
    text-align: left;
  }

  .footer {
    padding: 2.5rem 1.25rem 0;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .section-radio {
    padding: 4rem 1.25rem 3rem;
    min-height: 70vh;
  }

  .section-radio__icon {
    position: static;
    transform: none;
    margin: 1.5rem auto 0;
    display: block;
  }
}
