/* ============================
   SHARED CSS - ALL PAGES
============================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* --- COLOR TOKEN CLASSES --- */
.red {
  color: #15803d;
}

.orange {
  color: #22c55e;
}

.blue {
  color: #3b82f6;
}

.purple {
  color: #a855f7;
}

.green {
  color: #22c55e;
}

.cyan {
  color: #06b6d4;
}

.white {
  color: #fff;
}

.text-muted {
  color: #9ca3af;
}

/* ============================
   LOADING SCREEN
============================ */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: pulse-logo 1.2s ease-in-out infinite;
}

@keyframes pulse-logo {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.06);
    opacity: 0.85;
  }
}

.loader-logo svg {
  width: 48px;
  height: 56px;
}

.loader-brand {
  display: flex;
  flex-direction: column;
}

.loader-name {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

.loader-num {
  font-size: 0.85rem;
  color: #15803d;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.loader-bar-wrap {
  width: 220px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  overflow: hidden;
  position: relative;
}

.loader-bar {
  height: 100%;
  background: linear-gradient(90deg, #15803d, #22c55e, #15803d);
  background-size: 200% 200%;
  animation: barGradient 2s ease infinite;
  border-radius: 99px;
  width: 0%;
  transition: width 0.05s linear;
  box-shadow: 0 0 16px rgba(34, 197, 94, 0.8);
}

@keyframes barGradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.loader-text {
  font-size: 11px;
  color: #9ca3af;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ============================
   NAVBAR
============================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  transition: background 0.3s ease, height 0.3s ease;
}

.nav-logo a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo svg {
  width: 42px;
  height: 48px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #fff;
  text-transform: uppercase;
}

.logo-sub {
  font-size: 11px;
  color: #15803d;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.nav-links {
  /* Sit naturally in the flex row; the logo and nav-right push from each side */
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  /* Cap width so it can't grow into logo or lang btn */
  max-width: calc(100% - 400px);
  animation: navFadeDown 0.8s cubic-bezier(0.25, 1, 0.5, 1) backwards 0.2s;
}

@keyframes navFadeDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-links li a {
  display: block;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c2c2c2;
  border-radius: 50px;
  transition: color 0.3s, background 0.3s, transform 0.2s;
}

.nav-links li a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-links li a.active {
  background: #15803d;
  color: #fff;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* --- Hamburger Button --- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  border-radius: 8px;
  transition: background 0.2s;
  z-index: 1001;
  flex-shrink: 0;
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Mobile Nav Drawer --- */
#mobile-nav {
  display: none;
  position: fixed;
  top: 74px;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 16px 20px 24px;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
}

#mobile-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c2c2c2;
  border-radius: 12px;
  transition: color 0.2s, background 0.2s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

#mobile-nav a:last-child {
  border-bottom: none;
}

#mobile-nav a:hover,
#mobile-nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

#mobile-nav a.active {
  color: #22c55e;
}

#mobile-nav .mobile-join-btn {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #15803d;
  color: #fff !important;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  padding: 14px 20px;
  border-bottom: none !important;
  letter-spacing: 0.04em;
}

.lang-toggle {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  transition: border-color 0.2s, background 0.2s;
}

.lang-toggle:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

/* ============================
   FLOATING JOIN BUTTON
============================ */
.join-float {
  position: fixed;
  top: 74px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 998;
}

.join-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #111;
  font-size: 14px;
  font-weight: 800;
  padding: 10px 26px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  animation: btnFadeDown 0.8s cubic-bezier(0.25, 1, 0.5, 1) backwards 0.4s, pulseBtn 3s infinite 2s;
  white-space: nowrap;
}

@keyframes btnFadeDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseBtn {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
  }

  50% {
    box-shadow: 0 6px 36px rgba(21, 128, 61, 0.5);
  }
}

.join-btn:hover {
  background: #f5f5f5;
  transform: scale(1.08) translateY(-4px);
  box-shadow: 0 12px 36px rgba(21, 128, 61, 0.5);
  animation: none;
}

.join-red {
  color: #15803d;
  font-weight: 900;
}

/* ============================
   HERO
============================ */
.hero {
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 60px;
  background: #000;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* Removed align-items: center to prevent negative overflow on short screens */
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 60px;
  padding-right: 60px;
  gap: 40px;
  position: relative;
}

.hero::before {
  content: '';
  position: fixed;
  top: 30%;
  right: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(21, 128, 61, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-text {
  position: relative;
  z-index: 1;
  margin-block: auto;
  /* Safe vertical centering */
}

.hero-title {
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
}

.hero-number {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  font-style: italic;
  color: #15803d;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  color: #bbb;
  line-height: 1.7;
}

.hero-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-block: auto;
  /* Safe vertical centering */
}

.hero-logo svg {
  width: min(380px, 38vw);
  filter: drop-shadow(0 0 70px rgba(21, 128, 61, 0.5));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(1deg);
  }
}

/* ============================
   WAVE
============================ */
.wave {
  display: block;
  overflow: hidden;
  line-height: 0;
}

.wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ============================
   COMMUNITY SECTION (home)
============================ */
.community-section {
  background: #fdf5ec;
  padding: 80px 60px;
}

.community-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.community-inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin: 10px 0 16px;
}

.community-inner p {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.dot-orange {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
}

.community-list {
  list-style: none;
  margin-bottom: 24px;
}

.community-list li {
  display: flex;
  gap: 8px;
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 10px;
  align-items: flex-start;
}

.check {
  color: #22c55e;
  font-weight: 700;
  flex-shrink: 0;
}

.btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-orange {
  background: #22c55e;
  color: #fff;
  padding: 11px 24px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}

.btn-orange:hover {
  background: #16a34a;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
}

.btn-outline-dark {
  background: transparent;
  color: #111;
  border: 2px solid #ccc;
  padding: 11px 24px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  transition: border-color 0.2s;
  display: inline-block;
}

.btn-outline-dark:hover {
  border-color: #333;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.community-visual {
  display: flex;
  justify-content: center;
}

.flame-blob {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(300px, 38vw);
  height: min(300px, 38vw);
}

/* Dark backdrop so logo pops on any bg color */
.blob-backdrop {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.55) 0%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

/* Large breathing glow */
.blob-glow {
  position: absolute;
  inset: -22%;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(34, 197, 94, 0.30) 0%,
      rgba(21, 128, 61, 0.12) 45%,
      transparent 72%);
  pointer-events: none;
  z-index: 0;
  animation: blobGlowAnim 4s ease-in-out infinite;
}

/* Staggered ring pulses */
.blob-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(34, 197, 94, 0.65);
  pointer-events: none;
  z-index: 0;
  animation: blobRingPulse 3s ease-out infinite;
}

/* Logo stays on top of rings */
.flame-blob img,
.flame-blob svg {
  position: relative;
  z-index: 1;
  width: min(260px, 35vw);
  filter: drop-shadow(0 0 50px rgba(34, 197, 94, 0.55));
  animation: float 5s ease-in-out infinite;
}

@keyframes blobGlowAnim {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.75;
  }

  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}

@keyframes blobRingPulse {
  0% {
    transform: scale(0.45);
    opacity: 1;
  }

  100% {
    transform: scale(2.1);
    opacity: 0;
  }
}

/* ============================
   STATS SECTION
============================ */
.stats-section {
  background: #000;
  padding: 80px 60px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-card {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 24px 20px;
  transition: transform 0.2s, border-color 0.2s;
}

.stat-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(21, 128, 61, 0.3);
  box-shadow: 0 12px 32px rgba(21, 128, 61, 0.15);
}

.stat-num {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.stat-desc {
  font-size: 12px;
  color: #9ca3af;
  line-height: 1.5;
}

.stat-icon {
  font-size: 26px;
  margin-bottom: 8px;
}

/* ============================
   FRC SECTION
============================ */
.frc-section {
  background: linear-gradient(135deg, #1d4ed8 0%, #0ea5e9 100%);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.frc-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.frc-pretitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  position: relative;
}

.frc-title {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  position: relative;
}

.frc-subtitle {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  margin-bottom: 36px;
  position: relative;
}

.frc-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
  position: relative;
}

.frc-card {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 16px;
  padding: 28px 32px;
  min-width: 200px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
}

.frc-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.frc-card-icon {
  font-size: 44px;
  margin-bottom: 10px;
}

.frc-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 4px;
}

.frc-card p {
  font-size: 12px;
  color: #555;
  margin-bottom: 4px;
}

.frc-link {
  font-size: 12px;
  color: #1d4ed8;
  font-weight: 700;
}

.frc-season {
  font-size: 12px;
  color: #06b6d4;
  font-weight: 700;
}

.frc-dot {
  position: absolute;
  bottom: 8px;
  right: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.blue-dot {
  background: #3b82f6;
}

.cyan-dot {
  background: #06b6d4;
}

.frc-desc {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 24px 36px;
  max-width: 800px;
  margin: 0 auto 36px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #222;
  position: relative;
}

.frc-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.frc-photo-card {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 14px;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.frc-photo-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.frc-photo-placeholder {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 36px;
  color: rgba(255, 255, 255, 0.5);
  padding: 40px 20px;
  font-weight: 600;
}

.frc-photo-label {
  padding: 14px 16px;
  font-size: 13px;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
}

/* ============================
   WHY FRC
============================ */
.why-frc-section {
  background: linear-gradient(to bottom, #000 0%, #0f172a 100%);
  padding: 80px 60px;
  text-align: center;
}

.why-pre {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.why-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #15803d;
  line-height: 1.1;
  margin-bottom: 10px;
}

.why-underline {
  width: 60px;
  height: 3px;
  background: #15803d;
  margin: 0 auto 48px;
  border-radius: 2px;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-card {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.why-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(34, 197, 94, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.why-card-img {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  overflow: hidden;
}

.why-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-card-title {
  font-size: 14px;
  font-weight: 800;
  padding: 14px 14px 4px;
}

.why-card-desc {
  padding: 0 14px 14px;
  font-size: 12px;
  color: #9ca3af;
  line-height: 1.5;
}

/* ============================
   CTA
============================ */
.cta-section {
  background: #000;
  padding: 60px 40px 80px;
  display: flex;
  justify-content: center;
}

.cta-box {
  background: linear-gradient(135deg, #0f172a 0%, #1a0505 100%);
  border: 1px solid rgba(21, 128, 61, 0.2);
  border-radius: 24px;
  padding: 60px 48px;
  text-align: center;
  max-width: 680px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(21, 128, 61, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-pre {
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 4px;
  position: relative;
}

.cta-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  color: #15803d;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  position: relative;
}

.cta-bar {
  width: 50px;
  height: 3px;
  background: #15803d;
  margin: 14px auto;
  border-radius: 2px;
  position: relative;
}

.cta-sub {
  font-size: 0.9rem;
  color: #9ca3af;
  margin-bottom: 28px;
  position: relative;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.btn-red {
  background: #15803d;
  color: #fff;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}

.btn-red:hover {
  background: #166534;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 24px rgba(21, 128, 61, 0.3);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.25);
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 0.2s, transform 0.2s;
  display: inline-block;
}

.btn-outline-white:hover {
  border-color: #fff;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

/* ============================
   FOOTER
============================ */
footer {
  background: #0a0f1e;
  padding: 60px 60px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
}

.footer-logo {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 12px;
  color: #9ca3af;
  line-height: 1.7;
  margin-bottom: 4px;
}

.footer-stats {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer-stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 10px 14px;
  text-align: center;
  min-width: 64px;
}

.fs-i {
  font-size: 18px;
}

.fs-n {
  font-size: 16px;
  font-weight: 900;
}

.fs-l {
  font-size: 9px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.footer-col h4::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #15803d;
  display: block;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: #9ca3af;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
  margin-bottom: 18px;
  transition: background 0.2s;
}

.footer-contact:hover {
  background: rgba(255, 255, 255, 0.07);
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(21, 128, 61, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.contact-email {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

.contact-hint {
  font-size: 11px;
  color: #9ca3af;
}

.social-label {
  font-size: 10px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: border-color 0.2s, background 0.2s;
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #9ca3af;
}

.footer-bottom strong {
  color: #fff;
}

/* ============================
   PAGE-SPECIFIC — TEAM PAGE
============================ */
.team-hero {
  padding-top: 96px;
  background: #166534;
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.team-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
}

.team-hero p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 8px;
}

.shuffle-btn {
  display: inline-block;
  margin-top: 20px;
  background: #fff;
  color: #111;
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  user-select: none;
}

.shuffle-btn:hover {
  background: #f0f0f0;
}

.team-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: #000;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  transform: scaleX(1.05);
}

.team-section {
  background: #000;
  padding: 60px 60px;
}

.team-group-title {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  padding-bottom: 10px;
  border-bottom: 2px solid #15803d;
  max-width: 400px;
  margin: 0 auto 30px;
}

.member-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 60px;
}

.member-card {
  width: 200px;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  border: 2px solid #15803d;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.member-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 32px rgba(21, 128, 61, 0.25);
}

.member-dots {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  gap: 4px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 20px;
  padding: 3px 7px;
}

.mdot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.mdot-red {
  background: #15803d;
}

.mdot-blue {
  background: #3b82f6;
}

.mdot-green {
  background: #22c55e;
}

.mdot-orange {
  background: #22c55e;
}

.mdot-purple {
  background: #a855f7;
}

.mdot-cyan {
  background: #06b6d4;
}

.member-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-name {
  background: #15803d;
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  padding: 8px;
}

/* ============================
   ABOUT PAGE
============================ */
.about-section {
  background: #000;
  padding: 80px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 0.95rem;
  color: #bbb;
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-img {
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.07);
  background: #111;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}

.value-card {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 18px;
  border-left: 3px solid #15803d;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.value-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 24px rgba(21, 128, 61, 0.2);
}

.value-card h4 {
  font-size: 13px;
  font-weight: 800;
  color: #15803d;
  margin-bottom: 6px;
}

.value-card p {
  font-size: 12px;
  color: #9ca3af;
  line-height: 1.5;
}

/* ============================
   COMMUNITY PAGE
============================ */
.discord-section {
  background: #1e1b4b;
  padding: 60px;
}

.discord-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.discord-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.discord-text p {
  font-size: 0.9rem;
  color: #bbb;
  line-height: 1.7;
}

.discord-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.discord-visual {
  background: #7c3aed;
  border-radius: 16px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative;
}

.discord-free {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #7c3aed;
  border: 2px solid #fff;
  border-radius: 8px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
}

/* ============================
   ROBOT PAGE
============================ */
.robot-page {
  padding-top: 96px;
  background: linear-gradient(135deg, #0f0000 0%, #1a0000 100%);
  min-height: 100vh;
}

.robot-hero {
  padding: 60px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.robot-hero-text h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}

.robot-hero-text h1 span {
  color: #15803d;
  display: block;
}

.robot-hero-text>p {
  font-size: 0.85rem;
  color: #9ca3af;
  margin: 8px 0;
}

.robot-hero-text .robot-desc {
  font-size: 0.9rem;
  color: #bbb;
  line-height: 1.8;
  margin-top: 16px;
}

.robot-hero-text .robot-desc span {
  color: #22c55e;
  font-weight: 700;
}

.robot-award {
  margin-top: 20px;
  background: #ca8a04;
  border-radius: 10px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  max-width: 380px;
}

.robot-award-icon {
  font-size: 24px;
}

.robot-award-title {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.robot-photo {
  border-radius: 16px;
  border: 2px solid rgba(21, 128, 61, 0.4);
  overflow: hidden;
  background: #111;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  box-shadow: 0 0 40px rgba(21, 128, 61, 0.2);
}

.robot-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.robot-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px 60px;
}

.robot-stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
}

.robot-stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: #15803d;
}

.robot-stat-label {
  font-size: 11px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* Specs table */
.robot-specs {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px 60px;
}

.robot-specs h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #fff;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.spec-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(21, 128, 61, 0.15);
  border-radius: 12px;
  padding: 18px;
}

.spec-card h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #15803d;
  margin-bottom: 8px;
  font-weight: 800;
}

.spec-card p {
  font-size: 12px;
  color: #bbb;
  line-height: 1.6;
}

/* ============================
   BLOG PAGE
============================ */
.blog-section {
  padding-top: 96px;
  background: #000;
  min-height: 100vh;
  padding: 96px 60px 80px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s, box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.blog-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(21, 128, 61, 0.4);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: #1a2535;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-body {
  padding: 18px;
}

.blog-date {
  font-size: 11px;
  color: #9ca3af;
  margin-bottom: 8px;
}

.blog-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

.blog-card-excerpt {
  font-size: 12px;
  color: #9ca3af;
  margin-top: 8px;
  line-height: 1.5;
}

/* ============================
   ENROLL PAGE
============================ */
.enroll-page {
  padding-top: 96px;
  background: #000;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 80px;
}

.enroll-box {
  max-width: 600px;
  width: 100%;
  margin: 0 60px;
  text-align: center;
}

.enroll-box h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 8px;
}

.enroll-box h1 span {
  color: #15803d;
}

.enroll-box p {
  font-size: 0.95rem;
  color: #9ca3af;
  margin-bottom: 36px;
  line-height: 1.7;
}

.enroll-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 13px;
  color: #fff;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #15803d;
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-submit {
  background: #15803d;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 4px;
}

.form-submit:hover {
  background: #166534;
  transform: translateY(-2px);
}

/* ============================
   OUTREACH / PARTNERS SECTION
============================ */
.outreach-section {
  background: #000;
  padding: 60px;
}

.outreach-section h2 {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 8px;
  text-align: center;
}

.outreach-section .sub {
  text-align: center;
  color: #9ca3af;
  font-size: 0.9rem;
  margin-bottom: 36px;
}

.outreach-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.outreach-card {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 22px;
  border-top: 3px solid #22c55e;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s;
}

.outreach-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(34, 197, 94, 0.4);
  box-shadow: 0 12px 30px rgba(21, 128, 61, 0.15);
}

.outreach-card h4 {
  font-size: 13px;
  font-weight: 800;
  color: #22c55e;
  margin-bottom: 6px;
}

.outreach-card p {
  font-size: 12px;
  color: #9ca3af;
  line-height: 1.5;
}

/* ============================
   SCROLL & ENTER ANIMATIONS
============================ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.zoom-in {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.zoom-in.visible {
  opacity: 1;
  transform: scale(1);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Delays */
.d1 {
  transition-delay: 0.1s;
}

.d2 {
  transition-delay: 0.2s;
}

.d3 {
  transition-delay: 0.3s;
}

.d4 {
  transition-delay: 0.4s;
}

.d5 {
  transition-delay: 0.5s;
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 1024px) {
  .why-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .robot-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .specs-grid {
    grid-template-columns: 1fr 1fr;
  }

  .outreach-cards {
    grid-template-columns: 1fr 1fr;
  }

  #navbar {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  #mobile-nav {
    display: flex;
  }

  .nav-right .lang-toggle {
    /* Hide the desktop toggle on mobile */
    display: none;
  }

  /* Mobile-drawer lang button */
  #mobile-nav .mobile-lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.08em;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    cursor: pointer;
    background: transparent;
    color: #c2c2c2;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    width: 100%;
    margin-bottom: 4px;
  }

  #mobile-nav .mobile-lang-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
  }
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 96px 20px 60px;
    text-align: center;
  }

  .hero-logo {
    display: none;
  }

  .community-section {
    padding: 60px 20px;
  }

  .community-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .community-visual {
    display: none;
  }

  .stats-section {
    padding: 60px 20px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .discord-inner {
    grid-template-columns: 1fr;
  }

  .robot-hero {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  .robot-stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px 40px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .frc-photos {
    grid-template-columns: 1fr;
  }

  .why-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .specs-grid {
    grid-template-columns: 1fr;
  }

  .outreach-cards {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  footer {
    padding: 60px 20px 28px;
  }

  .team-section {
    padding: 60px 20px;
  }

  .about-section {
    padding: 60px 20px;
  }

  .frc-section {
    padding: 60px 20px;
  }

  .why-frc-section {
    padding: 60px 20px;
  }

  .outreach-section {
    padding: 60px 20px;
  }

  .robot-specs {
    padding: 0 20px 60px;
  }

  .discord-section {
    padding: 40px 20px;
  }

  .join-float {
    display: none;
  }

  .blog-section {
    padding: 96px 20px 60px;
  }

  .enroll-box {
    margin: 0 20px;
  }

  .cta-box {
    padding: 40px 24px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .why-cards {
    grid-template-columns: 1fr;
  }

  .robot-stats {
    grid-template-columns: 1fr 1fr;
  }

  .cta-btns {
    flex-direction: column;
  }

  .hero-title {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .frc-cards {
    flex-direction: column;
    align-items: center;
  }

  .frc-card {
    width: 100%;
    max-width: 300px;
  }
}