@font-face {
  font-family: "MyFont1";
  src: url("../fonts/Bersan-vnlvE.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "MyFont2";
  src: url("../fonts/Emersion.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

:root {
  --bg: #1a1a1d;
  --surface: rgba(10, 10, 11, 0.85);
  --text: #f2f2f2;
  --muted: #a0a0a0;
  --accent: #bfff00;
  --accent-dark: #31400b;
  --max-width: 1200px;
  --section-pad: clamp(1rem, 3vw, 2.25rem);
  --radius: 12px;
  --text-sub: #7c7c7c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "MyFont2", sans-serif;
  font-size: clamp(0.9rem, 0.8rem + 0.3vw, 1.05rem);
  letter-spacing: 0.08rem;
  color: var(--muted);
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

main {
  isolation: isolate;
}

.content-wrap {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 0 var(--section-pad);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 72px;
  padding: 0 var(--section-pad);
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: background-color 0.25s ease, backdrop-filter 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.navbar.scrolled {
  background: var(--surface);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-family: "MyFont1", sans-serif;
  font-size: clamp(1rem, 0.95rem + 0.5vw, 1.3rem);
}

.navbar-logo {
  width: clamp(36px, 2.2vw + 20px, 54px);
  height: auto;
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: var(--radius);
  padding: 0.5rem 0.65rem;
  font-size: 1.1rem;
  color: var(--text);
  background: transparent;
  cursor: pointer;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.2vw, 1.5rem);
}

.nav-links a {
  position: relative;
  color: var(--text);
  font-size: clamp(0.92rem, 0.86rem + 0.28vw, 1.08rem);
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
  background: var(--accent);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--accent);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.section-panel {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  background-image: linear-gradient(to top, #0f0f11, rgba(0, 0, 0, 0.35));
  overflow: clip;
}

.hero-section {
  position: relative;
  isolation: isolate;
  background: url("../images/hero.jpeg") center / cover no-repeat;
}

.particle-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.gradient-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.3));
}
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: var(--opacity, 0.4);
  animation: float var(--duration, 16s) ease-in-out infinite alternate;
}

@keyframes float {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(var(--x-shift, 80px), var(--y-shift, -120px));
  }
}


#hero-content {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 72px var(--section-pad) clamp(4.25rem, 10vh, 6rem) var(--section-pad);
}

.hero-container {
  width: min(100%, 700px);
  margin-right: auto;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  color: var(--accent);
  background: rgba(26, 36, 9, 0.85);
  border: 1px solid var(--accent-dark);
  font-size: clamp(0.72rem, 0.68rem + 0.18vw, 0.82rem);
  letter-spacing: 0.12rem;
}

.hero-text {
  color: var(--text);
  font-size: clamp(2rem, 1.2rem + 3vw, 4.2rem);
  line-height: 1.06;
  max-width: 18ch;
  white-space: pre-line;
}

.hero-text span {
  color: var(--accent);
  text-shadow: 0 0 16px rgba(191, 255, 0, 0.6);
}

.hero-slogan {
  margin-top: 0.8rem;
  color: var(--text-sub);
  letter-spacing: 0.06rem;
  font-size: clamp(0.9rem, 0.82rem + 0.32vw, 1.08rem);
}

.hero-actions {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-btn,
.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.1rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.hero-btn {
  color: #202020;
  background: var(--accent);
}

.hero-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 16px rgba(191, 255, 0, 0.55);
}

.hero-btn-secondary {
  color: var(--text);
  border: 1px solid #d6d6d6;
}

.hero-btn-secondary:hover {
  color: #202020;
  background: #ffffff;
}

.hero-arrow-container {
  position: absolute;
  left: 50%;
  bottom: clamp(1rem, 3vh, 2rem);
  transform: translateX(-50%);
  display: flex;
  color: var(--accent);
}

.hero-arrow {
  font-size: 1.7rem;
  animation: bob 2.4s ease-in-out infinite;
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

.section-content {
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
}

.section-content h2 {
  color: #e7e7e7;
  font-size: clamp(1.4rem, 1.1rem + 1.8vw, 2.4rem);
}

#games {
  min-height: auto;
  align-items: start;
}

.games-content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(5rem, 9vh, 6.2rem) var(--section-pad) clamp(2.4rem, 6vh, 4.2rem);
}

.games-header {
  text-align: center;
  margin-bottom: clamp(1.2rem, 2.5vw, 1.9rem);
}

.games-title {
  font-family: "MyFont2", sans-serif;
  color: var(--text);
  font-size: clamp(1.7rem, 1.2rem + 2.2vw, 3.05rem);
  letter-spacing: 0.03em;
}

.games-subtitle {
  margin-top: 0.8rem;
  font-family: sans-serif;
  color: #a7adb7;
  font-size: clamp(0.9rem, 0.82rem + 0.32vw, 1.08rem);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.8vw, 1.15rem);
}

.game-card {
  position: relative;
  min-height: clamp(500px, 52vw, 680px);
  border-radius: 14px;
  overflow: hidden;
  background: #0e1014;
  isolation: isolate;
}

.game-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
  z-index: 4;
  transition: border-color 0.25s ease;
}

.game-card:hover:not(.suppress-hover)::after,
.game-card:focus-within::after,
.game-card.is-expanded::after {
  border-color: var(--accent);
}

.game-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.game-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 30%, rgba(6, 8, 12, 0.38) 76%, rgba(5, 7, 10, 0.76) 100%);
  z-index: 1;
}
.game-info {
  position: absolute;
  left: clamp(0.8rem, 1.2vw, 1.2rem);
  right: clamp(0.8rem, 1.2vw, 1.2rem);
  bottom: clamp(0.85rem, 1.4vw, 1.25rem);
  z-index: 2;
  display: grid;
  gap: 0.75rem;
  transform: translateY(0);
  transition: transform 0.84s cubic-bezier(0.22, 1, 0.36, 1);
}

.game-meta {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.game-pill,
.game-year {
  font-family: sans-serif;
}

.game-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.32rem 0.62rem;
  background: rgba(117, 158, 0, 0.12);
  border: 1px solid rgba(191, 255, 0, 0.58);
  color: #e7ff9f;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}

.game-year {
  color: #b1bac7;
  font-size: 0.78rem;
  letter-spacing: 0.02rem;
}

.game-name {
  color: #ffffff;
  font-family: "MyFont2", sans-serif;
  font-size: clamp(1.55rem, 1.15rem + 1vw, 2.2rem);
  line-height: 1.04;
  letter-spacing: 0.01em;
}

.game-reveal {
  display: grid;
  gap: 0.78rem;
  max-height: 0;
  overflow: hidden;
  transform: translateY(1.1rem);
  transition: max-height 0.92s cubic-bezier(0.22, 1, 0.36, 1), transform 0.84s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.62s ease;
}

.game-card:hover:not(.suppress-hover) .game-info,
.game-card:focus-within .game-info,
.game-card.is-expanded .game-info {
  transform: translateY(-0.3rem);
  transition-duration: 1.14s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.game-card:hover:not(.suppress-hover) .game-reveal,
.game-card:focus-within .game-reveal,
.game-card.is-expanded .game-reveal {
  max-height: 16rem;
  transform: translateY(0);
  transition-duration: 1.22s, 1.14s, 0.78s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1), cubic-bezier(0.16, 1, 0.3, 1), ease;
}


.game-copy,
.game-cta {
  font-family: sans-serif;
}

.game-copy {
  color: #e3e8ef;
  font-size: 0.92rem;
  line-height: 1.54;
}

.game-cta {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 8px;
  background: var(--accent);
  color: #101010;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01rem;
  padding: 0.74rem 1rem;
  transition: filter 0.2s ease;
}

.game-cta:hover,
.game-cta:focus-visible {
  filter: brightness(1.05);
}

@media (max-width: 980px) {
  .games-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .games-grid {
    grid-template-columns: 1fr;
  }

  .game-card {
    min-height: clamp(450px, 98vw, 560px);
    cursor: pointer;
  }

  .game-card .game-cta {
    pointer-events: none;
  }

  .game-card.is-expanded .game-cta,
  .game-card:focus-within .game-cta {
    pointer-events: auto;
  }
}
#news {
  min-height: auto;
  align-items: start;
}

.news-content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(5rem, 9vh, 6.2rem) var(--section-pad) clamp(2.4rem, 6vh, 4.2rem);
  font-family: sans-serif;
}

.news-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(1rem, 2.5vw, 1.55rem);
}

.news-title,
.news-view-all {
  font-family: "MyFont2", sans-serif;
  color: var(--text);
}

.news-title {
  font-size: clamp(1.35rem, 0.95rem + 1.8vw, 2.1rem);
  letter-spacing: 0.03em;
}

.news-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: clamp(0.78rem, 0.72rem + 0.35vw, 0.95rem);
  color: var(--accent);
  transition: color 0.2s ease;
}

.news-view-all:hover,
.news-view-all:focus-visible {
  color: #d3ff57;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.8vw, 1.15rem);
}

.news-card {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(30, 30, 34, 0.95);
  min-height: clamp(360px, 38vw, 460px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.news-card:hover {
  border-color: var(--accent);
}

.news-image-wrap {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.news-card:hover .news-image {
  transform: scale(1.06);
}

.news-tag {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent);
  color: #101010;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.38rem 0.6rem;
  text-transform: capitalize;
}

.news-card-body {
  padding: 0.95rem 0.95rem 1.05rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card-title {
  color: #ffffff;
  font-size: clamp(1.08rem, 0.96rem + 0.35vw, 1.22rem);
  line-height: 1.28;
}

.news-card-meta {
  margin-top: 0.5rem;
  color: #8b8b8b;
  font-size: 0.78rem;
  letter-spacing: 0.02rem;
}

.news-card-copy {
  margin-top: 0.62rem;
  color: #a7a7a7;
  font-size: 0.86rem;
  line-height: 1.56;
}

@media (max-width: 980px) {
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .news-header {
    margin-bottom: 0.9rem;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }
}

@property --ring-progress {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

#team {
  min-height: auto;
  align-items: start;
}

.team-content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(5rem, 9vh, 6.2rem) var(--section-pad) clamp(2.4rem, 6vh, 4.2rem);
  font-family: sans-serif;
}

.team-header {
  text-align: center;
  margin-bottom: clamp(2.1rem, 5vw, 3.4rem);
}

.team-kicker {
  margin: 0;
  color: var(--accent);
  font-size: clamp(0.9rem, 0.8rem + 0.34vw, 1.15rem);
  font-weight: 500;
  letter-spacing: 0.03rem;
  text-transform: uppercase;
}

.team-title {
  margin-top: clamp(0.85rem, 2vw, 1.35rem);
  color: #ffffff;
  font-family: "MyFont2", sans-serif;
  font-size: clamp(1.2rem, 1rem + 1.2vw, 2.1rem);
  letter-spacing: 0.04em;
}

.team-grid {
  margin-top: clamp(0.6rem, 1.5vw, 1rem);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(1rem, 2vw, 1.4rem) clamp(0.8rem, 1.5vw, 1.1rem) clamp(1.2rem, 2.4vw, 1.6rem);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(40, 40, 44, 0.95) 0%, rgba(40, 40, 44, 0.6) 44%, rgba(40, 40, 44, 0) 100%);
}

.team-photo-wrap {
  margin-bottom: 0.9rem;
}

.team-photo {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: clamp(164px, 15vw, 210px);
  height: clamp(164px, 15vw, 210px);
  border: 0;
  border-radius: 50%;
  background: transparent;
  padding: 0;
  cursor: pointer;
  isolation: isolate;
  outline: none;
}

.team-photo-image {
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  border-radius: 50%;
  overflow: hidden;
  display: block;
}

.team-photo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.team-photo-ring {
  position: absolute;
  inset: 8px;
  width: auto;
  height: auto;
  pointer-events: none;
  transform: rotate(180deg);
}

.team-photo-ring-base,
.team-photo-ring-accent {
  fill: none;
  stroke-width: 6;
}

.team-photo-ring-base {
  stroke: rgba(255, 255, 255, 0.24);
}

.team-photo-ring-accent {
  stroke: var(--accent);
  opacity: 0.7;
  stroke-linecap: round;
  stroke-dasharray: 295.3;
  stroke-dashoffset: 295.3;
  transition: stroke-dashoffset 0.7s ease;
}

.team-member:hover .team-photo-ring-accent,
.team-member:focus-within .team-photo-ring-accent,
.team-photo:focus-visible .team-photo-ring-accent {
  stroke-dashoffset: 0;
}

.team-member-name {
  color: #ffffff;
  font-family: "MyFont2", sans-serif;
  font-size: clamp(0.96rem, 0.9rem + 0.38vw, 1.2rem);
  letter-spacing: 0.03rem;
}

.team-member-role {
  margin-top: 0.35rem;
  color: var(--accent);
  font-size: clamp(0.76rem, 0.72rem + 0.2vw, 0.9rem);
  text-transform: uppercase;
}

.team-member-copy {
  margin-top: 0.55rem;
  color: var(--text-sub);
  font-size: clamp(0.8rem, 0.75rem + 0.2vw, 0.92rem);
  line-height: 1.55;
  width: 100%;
  max-width: none;
}


@media (max-width: 1040px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}
.about-content {
  min-height: 100svh;
  display: grid;
  align-items: center;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(5rem, 9vh, 6.5rem) var(--section-pad) clamp(2rem, 6vh, 4rem) var(--section-pad);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(420px, 1fr);
  gap: clamp(1rem, 2.4vw, 2rem);
  align-items: stretch;
}

.about-left-media,
.about-right-content {
  min-height: clamp(420px, 64vh, 760px);
}

.about-left-media.about-reveal,
.about-right-content.about-reveal {
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.75s ease;
  will-change: transform, opacity;
}

.about-left-media.about-reveal {
  transform: translateX(-56px);
}

.about-right-content.about-reveal {
  transform: translateX(56px);
}

.about-left-media.about-reveal.about-in-view,
.about-right-content.about-reveal.about-in-view {
  transform: translateX(0);
}

.about-image-placeholder,
.about-mission-image-placeholder {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.68);
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  display: grid;
  place-items: center;
  font-size: clamp(0.62rem, 0.56rem + 0.22vw, 0.76rem);
}

.about-left-media {
  display: grid;
  align-self: center;
}

.about-image-placeholder {
  min-height: 100%;
  position: relative;
  background: url("../images/hero2.png") center / cover no-repeat;
  color: transparent;
  overflow: hidden;
}


.about-right-content {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.about-kicker {
  color: var(--accent);
  font-size: clamp(0.68rem, 0.62rem + 0.22vw, 0.84rem);
  font-weight: 700;
  letter-spacing: 0.14rem;
}

.about-title {
  color: var(--text);
  font-family: "MyFont1", sans-serif;
  font-size: clamp(2rem, 1.3rem + 2.35vw, 3.45rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.about-pill {
  font-family: sans-serif;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(152, 171, 214, 0.24);
  color: var(--text-sub);
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  padding: 0.4rem 0.86rem;
  font-size: clamp(0.62rem, 0.58rem + 0.18vw, 0.76rem);
}
.about-mission-box {
  font-family: sans-serif;
  font-weight: 400;
  margin-top: 0.35rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  padding: clamp(1.1rem, 1.8vw, 1.55rem);
  display: grid;
  gap: 0.95rem;
}
.about-mission-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--accent);
  font-size: clamp(0.9rem, 0.8rem + 0.34vw, 1.15rem);
  font-weight: 500;
  letter-spacing: 0.02rem;
  text-transform: uppercase;
}

.about-mission-kicker::before {
  content: "";
  width: 3px;
  height: 1.12em;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(191, 255, 0, 0.45);
}

.about-mission-title {
  font-weight: 500;
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.05rem, 0.9rem + 1vw, 2rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
  word-spacing: 0.08em;
  white-space: normal;
  overflow-wrap: anywhere;
}


.about-mission-copy {
  color: var(--text-sub);
  letter-spacing: 0.02rem;
  line-height: 1.7;
  font-size: clamp(0.82rem, 0.75rem + 0.24vw, 0.98rem);
}

.about-mission-image-placeholder {
  min-height: clamp(160px, 24vh, 230px);
  margin-top: 0.2rem;
  border-radius: 10px;
  border: 1px solid var(--accent-dark);
  background: linear-gradient(180deg, rgba(16, 212, 105, 0.18), rgba(4, 10, 8, 0.7)), url("../images/hero3.jpeg") center bottom / cover no-repeat;
  color: transparent;
  overflow: hidden;
}

@media (max-width: 980px) {
  .about-grid {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .about-right-content {
    order: 1;
  }

  .about-left-media {
    order: 2;
  }

  .about-left-media,
  .about-right-content {
    min-height: auto;
  }

  .about-image-placeholder {
    min-height: clamp(240px, 45vh, 430px);
  }
}

@media (max-width: 640px) {
  .about-title {
    font-size: clamp(1.2rem, 8.5vw, 2.5rem);
    letter-spacing: 0.01em;
  }

  .about-mission-title {
  font-weight: 500;
    font-size: clamp(0.95rem, 6vw, 1.45rem);
  }
}
@media (max-width: 840px) {

.menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    right: var(--section-pad);
    left: var(--section-pad);
    display: grid;
    gap: 0.35rem;
    padding: 0.75rem;
    border-radius: var(--radius);
    background: rgba(8, 8, 9, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transform-origin: top;
    transform: scaleY(0);
    visibility: hidden;
    pointer-events: none;
  }

  .nav-links.open {
    transform: scaleY(1);
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 0.65rem 0.55rem;
  }

  .hero-container {
    width: min(100%, 560px);
  }

  .hero-badge {
    margin-bottom: 0.75rem;
    font-size: 0.68rem;
  }

  .hero-text {
    font-size: clamp(1.7rem, 7.4vw, 2.85rem);
    max-width: 16ch;
  }

  .hero-slogan {
    margin-top: 0.65rem;
    font-size: 0.86rem;
  }

  .hero-actions {
    margin-top: 0.95rem;
    flex-direction: column;
    align-items: stretch;
    width: min(100%, 20rem);
    gap: 0.55rem;
  }

  .hero-btn,
  .hero-btn-secondary {
    width: 100%;
    padding: 0.72rem 0.95rem;
    font-size: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .particle,
  .hero-arrow {
    animation: none;
  }

  .about-left-media.about-reveal,
  .about-right-content.about-reveal {
    transform: none;
    transition: none;
  }
}


.fade_in_scale {
	animation: fadeInScale 1s ease-out;
}


@keyframes fadeInScale {
    from {
        transform: scale(0.9);
    }
    to {
        transform: scale(1);
    }
}































@media (min-width: 981px) {
  .about-grid {
    align-items: center;
  }
}





.news-read-more {
  margin-top: auto;
  padding-top: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03rem;
  text-transform: uppercase;
}

.news-read-more:hover,
.news-read-more:focus-visible {
  color: #d3ff57;
}



/* 1. Define the keyframes for the animation */
@keyframes fly-in-down {
  0% {
    /* Start off-screen above the element's final position. */
    /* Using translateY is performant as it only affects transforms, not layout. */
    transform: translateY(-100vh); 
    opacity: 0;
  }
  100% {
    /* End at the element's original position. */
    transform: translateY(0);
    opacity: 1;
  }
}

/* 2. Apply the animation to an element */
.fly-in-element {
  /* Link the keyframes to the element using the animation shorthand property */
  animation: fly-in-down 1s ease-out forwards;
  /* Ensure the element is hidden before the animation starts and stays visible after */
  opacity: 0; 
}






























































