:root {
  --bg: #05080c;
  --bg-2: #0a1016;
  --bg-3: #0f1720;
  --panel: #101822;
  --panel-2: #131d28;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f3f4f6;
  --muted: #9aa4b2;
  --red: #b31217;
  --red-2: #e53935;
  --red-3: #ff4d4f;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  --max-width: 1200px;
  --radius: 10px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    linear-gradient(rgba(5, 8, 12, 0.92), rgba(5, 8, 12, 0.98)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 90px
    ),
    linear-gradient(180deg, #04070b 0%, #091018 45%, #05080c 100%);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

.container {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

/* HEADER */
.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 9, 13, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-box {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, #19212b, #0f151d);
  box-shadow: var(--shadow);
}

.logo-text h1 {
  font-size: 1.05rem;
  letter-spacing: 2px;
  color: #ffffff;
}

.logo-text span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.nav a {
  font-size: 0.92rem;
  color: #d5dbe3;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: 0.2s ease;
}

.nav a:hover {
  color: #ffffff;
}

/* HERO */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(7, 9, 13, 0.42), rgba(7, 9, 13, 0.94)),
    url("https://media.discordapp.net/attachments/1276863007309434941/1385185106452545596/hard_bank.png?ex=69d61ba8&is=69d4ca28&hm=9d55b2173d3b34debccffc56f19eef564ee722962653e76f4b4e361d5fd1c7d6&=&format=webp&quality=lossless&width=1313&height=875") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.18) 45%, rgba(0, 0, 0, 0.68) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.hero-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #d0d6de;
  margin-bottom: 12px;
}

.hero h2 {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95;
  letter-spacing: 3px;
  margin-bottom: 10px;
  color: #ffffff;
}

.hero h3 {
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #d6dce4;
  margin-bottom: 22px;
}

.hero-text {
  max-width: 760px;
  font-size: 1rem;
  color: #d5d9df;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 220px);
  gap: 14px;
}

.stat-card {
  background: rgba(16, 24, 34, 0.9);
  border: 1px solid var(--line);
  padding: 16px 18px;
  box-shadow: var(--shadow);
}

.stat-card strong {
  display: block;
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 4px;
}

.stat-card span {
  font-size: 0.9rem;
  color: var(--muted);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.2s ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, var(--red-3), var(--red));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.btn-outline {
  color: #fff;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.07);
}

.full {
  width: 100%;
}

/* GENERAL SECTIONS */
.unit-section,
.structure-section,
.join-section {
  padding: 82px 0;
}

.section-title {
  margin-bottom: 30px;
}

.section-title span {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #c8ced7;
  margin-bottom: 8px;
}

.section-title h2 {
  font-size: clamp(2rem, 5vw, 3.1rem);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-title p {
  max-width: 760px;
  color: var(--muted);
}

/* UNIT */
.unit-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
}

.unit-image-card,
.unit-info-card,
.structure-card,
.join-right {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.unit-image-card {
  overflow: hidden;
}

.unit-image-card img {
  min-height: 420px;
  height: 100%;
  object-fit: cover;
}

.image-caption {
  padding: 14px 16px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #d3d9e0;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.unit-info-card {
  padding: 26px;
}

.unit-info-card h3 {
  font-size: 1.45rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.unit-info-card p {
  color: #c8d0d9;
  margin-bottom: 22px;
}

.info-list {
  display: grid;
  gap: 12px;
}

.info-item {
  padding: 15px 16px;
  border-left: 3px solid var(--red-2);
  background: rgba(255, 255, 255, 0.03);
}

.info-item strong {
  display: block;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 4px;
}

.info-item span {
  font-size: 0.94rem;
  color: var(--muted);
}

/* STRUCTURE */
.structure-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0));
}

.structure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.structure-card {
  padding: 24px;
}

.card-index {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  font-weight: 800;
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-strong);
}

.structure-card h3 {
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.structure-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* JOIN */
.join-section {
  padding: 72px 0;
}

.join-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 380px;
  gap: 28px;
  align-items: start;
}

.join-left {
  max-width: 680px;
}

.join-left span {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #cfd5dc;
  margin-bottom: 8px;
}

.join-left h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.join-left p {
  color: var(--muted);
  margin-bottom: 18px;
}

.join-points {
  list-style: none;
  display: grid;
  gap: 10px;
}

.join-points li {
  position: relative;
  padding-left: 18px;
  color: #d9dee5;
  font-size: 0.95rem;
}

.join-points li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--red-2);
  position: absolute;
  left: 0;
  top: 8px;
}

.join-right {
  padding: 20px;
  max-width: 380px;
  width: 100%;
}

.join-right h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.join-right .btn {
  width: 100%;
  min-height: 44px;
  margin-bottom: 10px;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--line);
  background: #05080c;
}

.footer-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .unit-grid,
  .structure-grid,
  .join-wrapper {
    grid-template-columns: 1fr;
  }

  .join-right {
    max-width: 420px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
}

@media (max-width: 760px) {
  .topbar-inner {
    flex-direction: column;
    justify-content: center;
    padding: 14px 0;
  }

  .nav {
    justify-content: center;
    gap: 16px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 68px 0;
  }

  .hero h2 {
    font-size: 2.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .unit-image-card img {
    min-height: 260px;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    padding: 16px 0;
  }
}