/* —— Tokens —— */
:root {
  --font: "IBM Plex Sans Arabic", system-ui, sans-serif;
  --green-forest: #0a2a22;
  --green-deep: #051410;
  --green-theme: #003d2e;
  --green-newsletter: #2d8b49;
  --green-title: #0f3d32;
  --mint: #42f5b0;
  --neon: #5dff9a;
  --white: #fff;
  --zinc-900: #18181b;
  --zinc-800: #27272a;
  --zinc-700: #3f3f46;
  --zinc-600: #52525b;
  --zinc-100: #f4f4f5;
  --header-max: 1400px;
  --content-max: 72rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--zinc-900);
  background: var(--white);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.btn:focus-visible,
.site-header__link--btn:focus-visible,
.site-header__lang:focus-visible,
.socials__a:focus-visible,
.footer__nav a:focus-visible,
.dropdown a:focus-visible {
  outline: 2px solid rgba(66, 245, 176, 0.9);
  outline-offset: 4px;
}

.btn {
  will-change: transform;
}

.btn:active {
  transform: translateY(1px);
}

.site-header__link--btn,
.site-header__lang {
  -webkit-tap-highlight-color: transparent;
}

.page {
  min-height: 100vh;
}

/* —— Fixed header —— */
.header-slot {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0.5rem 0.5rem 0;
  pointer-events: none;
}

@media (min-width: 768px) {
  .header-slot {
    padding: 0.75rem 1rem 0;
  }
}

.header-slot > * {
  pointer-events: auto;
  width: min(96vw, 1440px);
}

.site-header {
  width: 100%;
  transition:
    background 0.45s ease,
    border-radius 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease,
    backdrop-filter 0.45s ease;
  border-radius: 999px;
  background: transparent;
}

.site-header--solid {
  background: rgba(10, 42, 34, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
  .site-header--solid {
    border-radius: 999px;
  }
}

.site-header__inner {
  max-width: var(--header-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 1.15rem;
}

@media (min-width: 768px) {
  .site-header__inner {
    padding: 0.85rem 2rem;
  }
}

@media (min-width: 1024px) {
  .site-header__inner {
    padding: 0.9rem 2.75rem;
  }
}

.site-header__left,
.site-header__right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
.site-header__left,
.site-header__right {
    gap: 1rem;
  }
}

.site-header__logo {
  height: 2rem;
  width: auto;
}

@media (min-width: 768px) {
  .site-header__logo {
    height: 2.5rem;
  }
}

.site-header__vision {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding-inline-start: 1rem;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
}

@media (min-width: 640px) {
  .site-header__vision {
    display: flex;
  }
}

.site-header__vision-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  font-size: 10px;
  font-weight: 700;
}

.site-header__vision-text {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
}

.site-header__nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}

@media (min-width: 1024px) {
  .site-header__nav {
    display: flex;
    gap: 2.5rem;
    font-size: 15px;
  }
}

.site-header__link {
  transition: color 0.2s;
}

.site-header__link:hover {
  color: var(--white);
}

.site-header__link--btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.icon-chevron {
  width: 1rem;
  height: 1rem;
  opacity: 0.85;
}

.icon-chevron--sm {
  width: 0.875rem;
  height: 0.875rem;
  opacity: 0.7;
}

.icon-globe {
  width: 1rem;
  height: 1rem;
}

.site-header__dropdown-wrap {
  position: relative;
}

.dropdown {
  position: absolute;
  inset-inline-end: 0;
  top: 100%;
  margin-top: 0.75rem;
  min-width: 200px;
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.95);
  background: var(--green-deep);
  border-radius: 2rem;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 60;
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  pointer-events: none;
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms linear;
}

.dropdown[data-open="true"] {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  visibility: visible;
}

.dropdown a {
  display: block;
  padding: 0.5rem 0;
  transition: color 0.2s;
}

.dropdown a:hover {
  color: var(--mint);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .site-header__actions {
    gap: 1rem;
  }
}

.site-header__lang {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.5rem;
  border-radius: 999px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  transition: background 0.2s;
}

.site-header__lang-text {
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .site-header__lang {
    padding: 0.35rem 0.75rem;
  }
}

.site-header__lang:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.btn--outline-light {
  margin-top: 2.5rem;
  padding: 0.75rem 2.5rem;
  font-size: 0.875rem;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
}

.btn--outline-light:hover {
  background: var(--white);
  color: var(--green-forest);
}

.btn--outline-dark {
  margin-top: 2rem;
  padding: 0.625rem 2rem;
  font-size: 0.875rem;
  color: var(--zinc-900);
  border: 1px solid var(--zinc-900);
}

.btn--outline-dark:hover {
  background: var(--zinc-900);
  color: var(--white);
}

.btn--mint {
  margin-top: 2.5rem;
  padding: 0.875rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--zinc-900);
  background: var(--mint);
  box-shadow: 0 8px 24px rgba(6, 78, 59, 0.25);
}

@media (min-width: 768px) {
  .btn--mint {
    padding: 1rem 3.5rem;
    font-size: 1.25rem;
  }
}

.btn--mint:hover {
  background: var(--neon);
}

.btn--sm {
  margin-top: 0;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .btn--sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
  }
}

.btn--wide {
  margin-top: 0;
  padding: 0.75rem 2.5rem;
}

@media (min-width: 768px) {
  .btn--wide {
    padding: 0.875rem 3rem;
    font-size: 1rem;
  }
}

.btn--outline-light.btn--wide:hover {
  color: var(--green-newsletter);
}

/* —— Hero immersive —— */
.hero--immersive {
  position: relative;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.45) 40%, rgba(0, 0, 0, 0.72));
}

.hero__stripes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__stripe {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
}

.hero__stripe--a {
  inset-inline-start: -18%;
  top: 0;
  width: 52%;
  height: 135%;
  transform: skewX(-12deg);
}

.hero__stripe--b {
  inset-inline-end: -12%;
  top: -8%;
  width: 42%;
  height: 125%;
  transform: skewX(12deg);
  background: rgba(255, 255, 255, 0.055);
}

.hero__layer {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 7rem;
}

@media (min-width: 768px) {
  .hero__layer {
    padding-top: 8rem;
  }
}

.countdown {
  position: absolute;
  inset-inline-start: 1rem;
  top: 6rem;
  width: min(92vw, 280px);
  padding: 0.75rem 1rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

@media (min-width: 768px) {
  .countdown {
    inset-inline-start: 2.5rem;
    top: 7rem;
    padding: 1rem 1.25rem 1.1rem;
  }
}

@media (min-width: 1024px) {
  .countdown {
    top: 8rem;
  }
}

.countdown__label {
  margin: 0 0 0.5rem;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
  .countdown__label {
    font-size: 0.75rem;
  }
}

.countdown__digits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  font-family: ui-monospace, monospace;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--neon);
  text-shadow: 0 0 12px rgba(93, 255, 154, 0.45);
}

@media (min-width: 768px) {
  .countdown__digits {
    font-size: 2.25rem;
  }
}

.countdown__sep {
  color: rgba(93, 255, 154, 0.55);
}

.countdown__units {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 0.25rem;
  font-size: 11px;
  font-weight: 500;
  color: rgba(93, 255, 154, 0.9);
}

@media (min-width: 768px) {
  .countdown__units {
    gap: 2rem;
    font-size: 0.75rem;
  }
}

.hero__center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem 6rem;
}

.hero__title {
  margin: 0;
  max-width: 56rem;
  text-wrap: balance;
  font-size: clamp(1.5rem, 4vw, 3.35rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero__subtitle {
  margin: 1.25rem 0 0;
  max-width: 42rem;
  text-wrap: pretty;
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.85);
}

.hero__dates-bar {
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--white);
  padding: 1rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--zinc-800);
}

@media (min-width: 768px) {
  .hero__dates-bar {
    font-size: 1rem;
  }
}

/* —— Hero mint —— */
.hero--mint {
  position: relative;
  display: flex;
  min-height: 62vh;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero--mint {
    min-height: 70vh;
  }
}

.hero__img--fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay--dark {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero__mint-inner {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  padding: 0 1.5rem;
  text-align: center;
}

.hero__mint-text {
  margin: 0;
  text-wrap: balance;
  font-size: clamp(1.25rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--white);
}

/* —— Sections —— */
.section {
  padding: 4rem 1rem;
  scroll-margin-top: 7rem;
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 2.5rem;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 6rem 4rem;
  }
}

.section--white {
  background: var(--white);
}

.section--intro {
  padding-top: clamp(5.5rem, 7vw, 7rem);
  padding-bottom: clamp(5.5rem, 7vw, 7rem);
}

.section--intro .section__eyebrow {
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  font-weight: 500;
  color: #1f1f1f;
  letter-spacing: 0.01em;
}

.section--intro .section__title--lg {
  margin-top: 1.8rem;
  font-weight: 400;
  color: #0b2d25;
  font-size: clamp(2.9rem, 6vw, 5.2rem);
  line-height: 1.08;
}

.section--bordered {
  border-top: 1px solid var(--zinc-100);
}

.section--tight-top {
  padding-top: 1rem;
}

@media (min-width: 640px) {
  .section--tight-top {
    padding-top: 0.5rem;
  }
}

.section__eyebrow {
  margin: 0;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--zinc-600);
}

@media (min-width: 768px) {
  .section__eyebrow {
    font-size: 1rem;
  }
}

.section__eyebrow--on-dark {
  color: rgba(255, 255, 255, 0.75);
}

.section__title {
  margin: 1.5rem 0 0;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--zinc-900);
}

.section__title--lg {
  margin-inline: auto;
  margin-top: 1.5rem;
  max-width: 56rem;
  text-align: center;
  font-size: clamp(1.75rem, 3vw, 3rem);
}

.section__title--white {
  color: var(--white);
  margin-top: 0;
  font-size: clamp(2rem, 4vw, 3.75rem);
}

.video-card {
  position: relative;
  max-width: var(--content-max);
  margin: 3.5rem auto 0;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.section--intro .video-card {
  margin-top: clamp(3rem, 5vw, 3.75rem);
}

.video-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

@media (min-width: 768px) {
  .video-card__img {
    aspect-ratio: 21 / 9;
  }
}

.video-card__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: rgba(10, 42, 34, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s;
}

.video-card__play:hover {
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .video-card__play {
    width: 5rem;
    height: 5rem;
  }
}

.icon-play {
  width: 1.75rem;
  height: 1.75rem;
  margin-inline-start: 2px;
}

@media (min-width: 768px) {
  .icon-play {
    width: 2rem;
    height: 2rem;
  }
}

/* —— Stats —— */
.stats-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
  }
}

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

@media (min-width: 640px) {
  .stats-grid__nums {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-cell {
  padding: 0.5rem 0.75rem;
  text-align: center;
  border-inline-end: 1px solid #e4e4e7;
}

.stat-cell:nth-child(2n) {
  border-inline-end: none;
}

@media (min-width: 640px) {
  .stat-cell {
    padding: 0.5rem 1rem;
    border-inline-end: 1px solid #e4e4e7;
  }

  .stat-cell:nth-child(2n) {
    border-inline-end: 1px solid #e4e4e7;
  }

  .stat-cell:nth-child(4n) {
    border-inline-end: none;
  }
}

.stat-cell__n {
  display: block;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--zinc-900);
}

.stat-cell__l {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--zinc-600);
}

@media (min-width: 768px) {
  .stat-cell__l {
    font-size: 0.875rem;
  }
}

.stats-grid__copy p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--zinc-700);
}

@media (min-width: 768px) {
  .stats-grid__copy p {
    font-size: 1.125rem;
  }
}

/* —— Theme —— */
.section--theme {
  background: var(--green-theme);
  color: var(--white);
}

.theme-layout {
  max-width: var(--content-max);
  margin: 2.5rem auto 0;
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .theme-layout {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.theme-layout__visual {
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .theme-layout__visual {
    justify-content: flex-end;
  }
}

.hex-frame {
  position: relative;
  width: min(92vw, 380px);
  aspect-ratio: 1;
  clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0% 50%);
  box-shadow: 0 0 60px rgba(66, 245, 176, 0.25);
}

.hex-frame__ring {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 2px rgba(66, 245, 176, 0.8);
  pointer-events: none;
  z-index: 2;
}

.hex-frame__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hex-frame__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  z-index: 1;
  pointer-events: none;
}

.theme-layout__text {
  text-align: center;
}

@media (min-width: 1024px) {
  .theme-layout__text {
    text-align: start;
  }
}

.theme-layout__p {
  margin: 1.5rem auto 0;
  max-width: 28rem;
  text-wrap: pretty;
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 768px) {
  .theme-layout__p {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .theme-layout__p {
    margin-inline: 0;
  }
}

.theme-layout__text .btn--outline-light {
  margin-top: 2.5rem;
}

.theme-layout__text .btn--outline-light:hover {
  color: var(--green-theme);
}

/* —— Participate —— */
.split-hero {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  gap: 3rem;
  align-items: start;
}

.split-hero .section__title {
  margin-top: 0;
}

@media (min-width: 1024px) {
  .split-hero {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.split-hero__btn {
  margin-top: 2rem;
}

.split-hero__p {
  margin: 0;
  text-wrap: pretty;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--zinc-700);
}

@media (min-width: 768px) {
  .split-hero__p {
    font-size: 1.125rem;
  }
}

.gallery-row {
  max-width: var(--content-max);
  margin: 3.5rem auto 0;
  display: grid;
  overflow: hidden;
  border-radius: 0.75rem;
}

@media (min-width: 640px) {
  .gallery-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-row__cell {
  position: relative;
  min-height: 220px;
}

@media (min-width: 640px) {
  .gallery-row__cell {
    min-height: 300px;
  }
}

.gallery-row__cell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* —— Feature cards —— */
.feature-cards {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .feature-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
}

.feature-card {
  position: relative;
  display: flex;
  min-height: 200px;
  overflow: hidden;
  border-radius: 0.5rem;
}

@media (min-width: 640px) {
  .feature-card {
    min-height: 240px;
    border-radius: 0;
  }
}

.feature-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feature-card:hover .feature-card__bg {
  transform: scale(1.05);
}

.feature-card__grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 42, 34, 0.95), rgba(10, 42, 34, 0.35), transparent);
}

.feature-card__row {
  position: relative;
  z-index: 2;
  margin-top: auto;
  display: flex;
  width: 100%;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.25rem;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .feature-card__row {
    font-size: 1.125rem;
  }
}

.feature-card__arrow {
  flex-shrink: 0;
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 0.25rem;
  transition: background 0.2s, color 0.2s;
}

.feature-card:hover .feature-card__arrow {
  background: var(--white);
  color: var(--green-forest);
}

/* —— News —— */
.news-head {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .news-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.news-head .section__title {
  margin-top: 0;
}

.news-head .btn--outline-dark {
  margin-top: 0;
}

.news-grid {
  max-width: var(--content-max);
  margin: 3rem auto 0;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-card {
  overflow: hidden;
  border-radius: 0.75rem;
  background: var(--zinc-100);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.news-card__thumb {
  aspect-ratio: 4 / 3;
  background-image: url("../assets/gg.webp");
  background-size: cover;
  background-repeat: no-repeat;
}

.news-card__body {
  padding: 1rem;
}

.news-card__t {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--zinc-900);
}

.news-card__d {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
  color: var(--zinc-600);
}

/* —— Newsletter —— */
.section--newsletter {
  background: var(--green-newsletter);
  color: var(--white);
  padding-block: 4.75rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media (min-width: 768px) {
  .section--newsletter {
    padding-block: 5rem;
  }
}

.newsletter {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2rem;
}

@media (min-width: 768px) {
  .newsletter {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
  }
}

.newsletter__title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: start;
}

@media (min-width: 768px) {
  .newsletter__title {
    font-size: 1.875rem;
  }
}

.newsletter__p {
  margin: 1rem 0 0;
  max-width: 36rem;
  text-wrap: pretty;
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

@media (min-width: 768px) {
  .newsletter__p {
    font-size: 1rem;
    text-align: center;
    max-width: 42rem;
  }
}

.newsletter .btn--outline-light {
  margin-top: 0;
  align-self: stretch;
}

@media (min-width: 768px) {
  .newsletter .btn--outline-light {
    align-self: center;
  }
}

/* —— Footer —— */
.footer {
  position: relative;
  overflow: hidden;
  /* Wave is drawn inside newsletter (no intersection seam) */
  margin-top: 0;
  background: var(--green-theme);
  color: var(--white);
  padding: 4.5rem 1rem 2rem;
  z-index: 2;
}

@media (min-width: 768px) {
  .footer {
    padding: 5.25rem 2.5rem 2.5rem;
  }
}

.footer__glow {
  position: absolute;
  inset-inline-start: -6rem;
  top: -6rem;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: rgba(66, 245, 176, 0.15);
  filter: blur(48px);
  pointer-events: none;
}

@media (min-width: 768px) {
  .footer__glow {
    width: 380px;
    height: 380px;
  }
}

.footer__inner {
  position: relative;
  z-index: 3;
  max-width: var(--content-max);
  margin: 0 auto;
}

.footer__grid {
  display: grid;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: start;
  }
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: right;
}

@media (min-width: 768px) {
  .footer__nav {
    font-size: 1rem;
  }
}

.footer__nav-label {
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.footer__nav a:hover {
  color: var(--mint);
}

.footer__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: flex-start;
}

.footer__logo {
  height: 2.25rem;
  width: auto;
}

@media (min-width: 768px) {
  .footer__logo {
    height: 2.5rem;
  }
}

.footer__expo {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
}

.footer__about {
  text-align: left;
}

.footer__bie-label {
  margin: 1.5rem 0 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}

.footer__bie {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
}

.footer__link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(255, 255, 255, 0.4);
}

.footer__link:hover {
  color: var(--mint);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 2rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row-reverse;
    align-items: center;
    font-size: 0.875rem;
  }
}

.footer__bottom p {
  margin: 0;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}

.socials__a {
  display: flex;
  padding: 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  transition: border-color 0.2s, background 0.2s;
}

.socials__a:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

/* —— Reduced motion —— */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
