:root {
  --blue-deep: #050f1f;
  --blue-mid: #0d2649;
  --blue-bright: #1565c0;
  --blue-electric: #1e88e5;
  --blue-light: #42a5f5;
  --orange-fire: #ff6b00;
  --orange-vivid: #ff8c00;
  --orange-glow: #ffa726;
  --white: #ffffff;
  --off-white: #e8edf7;
  --gray-light: #b0bec5;
  --gray-soft: rgba(176, 190, 197, 0.72);
  --border-orange: rgba(255, 107, 0, 0.2);
  --border-blue: rgba(66, 165, 245, 0.16);
  --panel-dark: rgba(255, 255, 255, 0.03);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--blue-deep);
  color: var(--white);
  font-family: "Barlow", sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--blue-deep);
}

::-webkit-scrollbar-thumb {
  background: var(--orange-fire);
  border-radius: 999px;
}

nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 999;
  height: 72px;
  padding: 0 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(5, 15, 31, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 107, 0, 0.25);
}

.nav-logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.9rem;
  letter-spacing: 5px;
  color: var(--orange-fire);
  text-decoration: none;
  text-shadow: 0 0 18px rgba(255, 107, 0, 0.28);
}

.nav-logo span {
  color: var(--blue-light);
}

.nav-logo-with-image {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-logo-image {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-logo-text {
  display: inline-block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  height: 100%;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-item > a {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0 1.05rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.25s ease;
}

.nav-item > a:hover {
  color: var(--orange-fire);
}

.arrow {
  display: inline-block;
  font-size: 0.58rem;
  transition: transform 0.25s ease;
}

.nav-item:hover .arrow {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  background: rgba(5, 15, 31, 0.98);
  border: 1px solid rgba(255, 107, 0, 0.18);
  border-top: 2px solid var(--orange-fire);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown a {
  display: block;
  padding: 0.82rem 1.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gray-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown a:last-child {
  border-bottom: none;
}

.dropdown a:hover {
  background: rgba(255, 107, 0, 0.08);
  color: var(--orange-glow);
}

.nav-buy {
  color: var(--orange-fire) !important;
  border: 1px solid rgba(255, 107, 0, 0.4);
  padding: 0.5rem 1rem !important;
  margin-left: 0.55rem;
  height: auto !important;
}

.nav-buy:hover {
  background: rgba(255, 107, 0, 0.08);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 107, 0, 0.25);
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--orange-fire);
  display: block;
}

.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 998;
  display: none;
  flex-direction: column;
  padding: 1rem 1.25rem 1.5rem;
  background: rgba(5, 15, 31, 0.98);
  border-bottom: 1px solid rgba(255, 107, 0, 0.2);
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--off-white);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-buy {
  color: var(--orange-fire) !important;
}

.divider {
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--orange-fire) 30%,
    var(--blue-electric) 70%,
    transparent
  );
}

section {
  padding: 7rem 5rem;
}

.section-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange-fire);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: 2px;
  margin-bottom: 1.4rem;
}

.section-title span {
  color: var(--blue-light);
}

.section-body {
  max-width: 640px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.82;
  color: var(--gray-light);
}

.factor-side-title {
  font-size: 2.2rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 9rem 5rem 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/images/hero-f20f.jpg");
  background-size: cover;
  background-position: center top;
  filter: brightness(0.26) saturate(0.7);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(5, 15, 31, 0.86) 35%, rgba(255, 107, 0, 0.08) 100%),
    radial-gradient(ellipse at 82% 50%, rgba(21, 101, 192, 0.28) 0%, transparent 55%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 59px,
      rgba(255, 255, 255, 0.018) 60px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 59px,
      rgba(255, 255, 255, 0.018) 60px
    );
}

.hero > * {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.8rem;
  padding: 0.42rem 1.08rem;
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 107, 0, 0.38);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange-glow);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--orange-fire);
  animation: pulse 2s infinite;
}

.hero h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4.4rem, 10vw, 9.5rem);
  line-height: 0.9;
  letter-spacing: 3px;
  color: var(--white);
}

.hero h1 .accent {
  display: block;
  color: var(--orange-fire);
}

.hero h1 .sub-accent {
  color: var(--blue-light);
}

.hero-quote {
  margin-top: 1.9rem;
  max-width: 580px;
  padding-left: 1.35rem;
  border-left: 3px solid var(--orange-fire);
  font-size: 1.02rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.75;
  color: var(--gray-light);
}

.hero-subtitle {
  margin-top: 1.15rem;
  max-width: 540px;
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--off-white);
  opacity: 0.84;
}

.hero-cta {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 2.2rem;
  text-decoration: none;
  cursor: pointer;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn-primary {
  background: var(--orange-fire);
  color: var(--white);
  border: none;
  font-weight: 800;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn-primary:hover {
  background: var(--orange-vivid);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--blue-light);
  border: 1px solid rgba(66, 165, 245, 0.4);
  font-weight: 700;
}

.btn-secondary:hover {
  border-color: var(--blue-light);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  left: 5rem;
  bottom: 2.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-light);
  opacity: 0.45;
}

.hero-scroll::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gray-light);
}

.identity {
  background: radial-gradient(ellipse at 90% 20%, rgba(21, 101, 192, 0.2) 0%, transparent 50%), var(--blue-mid);
}

.identity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
}

.id-card {
  position: relative;
  overflow: hidden;
  padding: 2.2rem;
  background: var(--panel-dark);
  border: 1px solid var(--border-orange);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.id-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--orange-fire), var(--blue-electric));
}

.id-card:hover {
  border-color: rgba(255, 107, 0, 0.46);
  transform: translateY(-3px);
}

.id-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.14rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange-glow);
  margin-bottom: 1.15rem;
}

.id-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.id-card li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.55;
  color: var(--off-white);
}

.id-card li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--orange-fire);
  font-size: 0.76rem;
}

.id-card strong {
  color: var(--white);
  font-weight: 600;
}

.mission {
  background: var(--blue-deep);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.mission-img {
  position: relative;
  overflow: hidden;
  height: 460px;
}

.mission-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.85);
}

.mission-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.15), rgba(5, 15, 31, 0.4));
}

.mission-img-badge {
  position: absolute;
  left: 1.4rem;
  bottom: 1.4rem;
  z-index: 2;
  padding: 0.5rem 1.15rem;
  background: var(--orange-fire);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 3px;
  color: var(--white);
}

.mission-quote {
  margin-top: 2rem;
  padding: 1.5rem 1.7rem;
  background: rgba(255, 107, 0, 0.06);
  border-left: 3px solid var(--orange-fire);
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.72;
  color: var(--off-white);
}

.factor {
  background: radial-gradient(ellipse at 20% 50%, rgba(255, 107, 0, 0.07) 0%, transparent 50%), var(--blue-mid);
}

.factor-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-bottom: 4rem;
  align-items: start;
}

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

.stage-card {
  position: relative;
  overflow: hidden;
  padding: 1.85rem;
  border: 1px solid var(--border-blue);
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.stage-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 0, 0.35);
}

.stage-num {
  position: absolute;
  top: 0.45rem;
  right: 1rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(255, 107, 0, 0.13);
}

.stage-tag {
  margin-bottom: 0.55rem;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange-glow);
}

.stage-card h4 {
  margin-bottom: 0.72rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--white);
}

.stage-card p {
  font-size: 0.86rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--gray-light);
}

.stage-keys {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin-top: 0.9rem;
}

.key-pill {
  padding: 0.22rem 0.62rem;
  background: rgba(30, 136, 229, 0.1);
  border: 1px solid rgba(30, 136, 229, 0.22);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue-light);
}

.day21 {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  margin-top: 3rem;
  padding: 2.35rem 2.8rem;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.14), rgba(21, 101, 192, 0.14));
  border: 1px solid rgba(255, 107, 0, 0.38);
}

.day21-num {
  flex-shrink: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--orange-fire);
}

.day21 p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.72;
  color: var(--off-white);
}

.day21 strong {
  color: var(--orange-glow);
  font-weight: 700;
}

.flaca {
  background: var(--blue-deep);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.flaca-img-wrap {
  position: relative;
  overflow: hidden;
  height: 460px;
}

.flaca-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.82);
  transition: transform 0.6s ease;
}

.flaca-img-wrap:hover img {
  transform: scale(1.04);
}

.flaca-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 15, 31, 0.82) 0%, transparent 50%);
}

.flaca-img-label {
  position: absolute;
  left: 1.45rem;
  bottom: 1.45rem;
  z-index: 2;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 4px;
  color: var(--orange-fire);
}

.lines {
  background: radial-gradient(ellipse at 80% 30%, rgba(30, 136, 229, 0.11) 0%, transparent 50%), var(--blue-mid);
}

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

.line-card {
  position: relative;
  overflow: hidden;
  height: 320px;
}

.line-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(0.65);
  transition: filter 0.4s ease, transform 0.5s ease;
}

.line-card:hover img {
  filter: brightness(0.55) saturate(0.82);
  transform: scale(1.05);
}

.line-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange-fire), var(--blue-electric));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.line-card:hover::after {
  transform: scaleX(1);
}

.line-overlay {
  position: absolute;
  inset: 0;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(5, 15, 31, 0.92) 0%, rgba(5, 15, 31, 0.2) 60%, transparent 100%);
  transition: background 0.4s ease;
}

.line-card:hover .line-overlay {
  background: linear-gradient(to top, rgba(255, 107, 0, 0.22) 0%, rgba(5, 15, 31, 0.62) 60%, transparent 100%);
}

.line-overlay h3 {
  margin-bottom: 0.62rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.04rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange-glow);
}

.line-overlay p {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--gray-light);
}

.governance {
  background: var(--blue-deep);
}

.gov-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.4rem;
}

.gov-card {
  padding: 2rem;
  background: rgba(13, 38, 73, 0.55);
  border: 1px solid rgba(66, 165, 245, 0.13);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.gov-card:hover {
  border-color: rgba(255, 107, 0, 0.35);
  transform: translateY(-3px);
}

.gov-role {
  margin-bottom: 0.55rem;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange-fire);
}

.gov-name {
  margin-bottom: 0.82rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.24rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--white);
}

.gov-card p {
  font-size: 0.86rem;
  font-weight: 300;
  line-height: 1.62;
  color: var(--gray-light);
}

.gov-badge {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.25rem 0.7rem;
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.28);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange-glow);
}

.gov-card-highlight {
  background: rgba(255, 107, 0, 0.04);
  border-color: rgba(255, 107, 0, 0.18);
}

.gov-name-highlight {
  color: var(--orange-fire);
}

.gov-quote {
  font-style: italic;
  font-size: 1.05rem !important;
  color: var(--off-white) !important;
  line-height: 1.65 !important;
}

.koin {
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 107, 0, 0.11) 0%, transparent 60%), var(--blue-mid);
}

.koin .section-label,
.koin .section-title {
  text-align: center;
}

.koin-sub {
  max-width: 620px;
  margin: 0 auto 2.8rem;
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.72;
  color: var(--gray-light);
}

.token-status-card {
  max-width: 760px;
  margin: 0 auto 3rem;
  padding: 1.8rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 107, 0, 0.22);
}

.token-status-label {
  margin-bottom: 0.85rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange-fire);
}

.token-status-card p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--off-white);
}

.koin-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  max-width: 980px;
  margin: 0 auto 3rem;
}

.koin-step {
  padding: 2rem 1.45rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 107, 0, 0.18);
}

.koin-step-num {
  margin-bottom: 0.8rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  line-height: 1;
  color: rgba(255, 107, 0, 0.22);
}

.koin-step p {
  font-size: 0.83rem;
  font-weight: 400;
  line-height: 1.62;
  color: var(--off-white);
}

.koin-contract {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  padding: 1.5rem 2.4rem;
  max-width: 760px;
  margin: 0 auto;
  background: rgba(255, 107, 0, 0.06);
  border: 1px solid rgba(255, 107, 0, 0.33);
}

.contract-label {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange-glow);
}

.contract-addr {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 1.4px;
  color: var(--blue-light);
  word-break: break-all;
}

.copy-btn {
  padding: 0.75rem 1.2rem;
  min-height: auto;
  font-weight: 700;
  border: 1px solid rgba(66, 165, 245, 0.35);
  background: transparent;
  color: var(--white);
}

.copy-btn:hover {
  border-color: var(--blue-light);
  color: var(--blue-light);
  transform: translateY(-1px);
}

.koin-cta {
  justify-content: center;
  margin-top: 2rem;
}

footer {
  background: var(--blue-deep);
  border-top: 1px solid rgba(255, 107, 0, 0.18);
  padding: 4rem 5rem 2.4rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 2.8rem;
}

.footer-brand-logo {
  display: block;
  margin-bottom: 1rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 5px;
  color: var(--orange-fire);
}

.footer-brand-logo span {
  color: var(--blue-light);
}

.footer-brand p {
  max-width: 320px;
  font-size: 0.87rem;
  font-weight: 300;
  line-height: 1.72;
  color: var(--gray-light);
}

.footer-col h4 {
  margin-bottom: 1.1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange-fire);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.62rem;
}

.footer-col li {
  font-size: 0.87rem;
  font-weight: 300;
  color: var(--gray-light);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.73rem;
  color: rgba(176, 190, 197, 0.45);
  letter-spacing: 1px;
}

.footer-motto {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 3px;
  color: var(--orange-fire);
  opacity: 0.66;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}

@media (max-width: 1200px) {
  nav,
  section,
  footer {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .hero {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .hero-scroll {
    left: 3rem;
  }
}

@media (max-width: 960px) {
  nav {
    padding: 0 1.4rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
  }

  section {
    padding: 5rem 1.5rem;
  }

  .hero {
    min-height: auto;
    padding: 7rem 1.5rem 4.5rem;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 13vw, 6rem);
  }

  .hero-scroll {
    display: none;
  }

  .identity-grid,
  .mission,
  .factor-intro,
  .flaca,
  .gov-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .factor-stages {
    grid-template-columns: 1fr;
  }

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

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

  .mission-img,
  .flaca-img-wrap {
    height: 380px;
  }

  .day21 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
  }

  footer {
    padding: 3rem 1.5rem 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .nav-logo-image {
    width: 34px;
    height: 34px;
  }

  .hero-badge {
    letter-spacing: 2px;
    font-size: 0.62rem;
    padding: 0.4rem 0.85rem;
  }

  .section-title {
    font-size: 2.45rem;
  }

  .mission-img,
  .flaca-img-wrap,
  .line-card {
    height: 300px;
  }

  .lines-grid,
  .koin-steps {
    grid-template-columns: 1fr;
  }

  .koin-contract {
    width: 100%;
    padding: 1.3rem 1rem;
  }

  .token-status-card {
    padding: 1.4rem 1rem;
  }

  .contract-label {
    letter-spacing: 2px;
  }

  .contract-addr {
    font-size: 0.78rem;
  }

  .btn-primary,
  .btn-secondary,
  .copy-btn {
    width: 100%;
  }

  .hero-cta,
  .koin-cta {
    width: 100%;
  }
}

@media (max-width: 960px) and (orientation: landscape) {
  nav {
    height: 64px;
  }

  .mobile-menu {
    top: 64px;
    max-height: calc(100vh - 64px);
  }

  .hero {
    padding-top: 6rem;
    padding-bottom: 3rem;
  }

  .hero-badge {
    margin-bottom: 1rem;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 8vw, 4.8rem);
  }

  .hero-quote {
    margin-top: 1rem;
    font-size: 0.92rem;
    max-width: 720px;
  }

  .hero-subtitle {
    margin-top: 0.8rem;
    max-width: 760px;
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .hero-cta {
    margin-top: 1.4rem;
  }

  section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .mission-img,
  .flaca-img-wrap,
  .line-card {
    height: 260px;
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding-top: 5.5rem;
    padding-bottom: 2.5rem;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 7vw, 4rem);
  }

  .hero-badge {
    font-size: 0.58rem;
    letter-spacing: 2px;
    padding: 0.32rem 0.7rem;
  }

  .hero-quote,
  .hero-subtitle {
    max-width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    min-height: 42px;
    padding: 0.75rem 1.4rem;
    font-size: 0.7rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .section-body,
  .token-status-card p,
  .koin-step p {
    font-size: 0.9rem;
  }
}