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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  transition: all 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.95);
  padding: 1rem 3rem;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.nav-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  transition: opacity 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  opacity: 0.7;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 2rem;
}

.hero-content {
  max-width: 800px;
}

.hero-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 2rem;
  border: 2px solid rgba(255, 255, 255, 0.15);
  transition: border-color 0.4s ease;
}

.hero-logo:hover {
  border-color: rgba(255, 255, 255, 0.6);
}

.hero-subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.outline-text {
  -webkit-text-stroke: 1.5px #fff;
  color: transparent;
}

.hero-tagline {
  font-size: 1.2rem;
  font-weight: 300;
  opacity: 0.7;
  margin-bottom: 2rem;
  font-style: italic;
}

.hero-badge {
  display: inline-block;
  padding: 0.6rem 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  transition: border-color 0.3s ease;
}

.hero-badge:hover {
  border-color: rgba(255, 255, 255, 0.6);
}


.section {
  padding: 6rem 0;
}

.section-alt {
  background: #0a0a0a;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.1rem;
  opacity: 0.6;
  max-width: 600px;
  margin-bottom: 3rem;
}

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

.about-card {
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.about-card:hover::before {
  transform: scaleX(1);
}

.about-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px);
}

.about-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
}

.about-card p {
  font-size: 0.95rem;
  opacity: 0.6;
  line-height: 1.7;
}

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

.detail-item {
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.detail-item:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.detail-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 0.8rem;
}

.detail-value {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.detail-sub {
  font-size: 0.85rem;
  opacity: 0.5;
}

.officers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.officer-card {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: all 0.3s ease;
  text-align: center;
}

.officer-card:hover {
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.officer-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.officer-role {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.4;
}

.officer-footnote {
  margin-top: 2.5rem;
  font-size: 0.9rem;
  opacity: 0.4;
  font-style: italic;
  text-align: center;
}

.constitution-content {
  max-width: 800px;
  margin-top: 3rem;
}

.const-article {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.const-article:last-of-type {
  border-bottom: none;
}

.const-article h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
  color: #fff;
}

.const-article p {
  font-size: 0.95rem;
  opacity: 0.6;
  line-height: 1.8;
}

.const-effective {
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  border-left: 2px solid rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  opacity: 0.5;
  letter-spacing: 0.1em;
}

.contact-content {
  max-width: 700px;
}

.contact-text {
  font-size: 1.15rem;
  opacity: 0.7;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  padding: 1.5rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.contact-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 0.4rem;
}

.contact-value {
  font-size: 1.05rem;
  font-weight: 500;
}

.footer {
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  opacity: 0.6;
}

.footer-brand {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  margin-bottom: 0.8rem;
}

.footer-text {
  font-size: 0.85rem;
  opacity: 0.4;
  margin-bottom: 0.3rem;
}

.footer-text.small {
  font-size: 0.75rem;
  opacity: 0.25;
  margin-top: 0.5rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

@media (max-width: 1024px) {
  .details-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 1.5rem;
  }

  .navbar.scrolled {
    padding: 0.8rem 1.5rem;
  }

  .nav-brand span {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.1rem;
    letter-spacing: 0.2em;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .hero {
    padding: 2rem 1.5rem;
  }

  .hero-logo {
    width: 90px;
    height: 90px;
  }

  .hero-title {
    font-size: clamp(2.5rem, 14vw, 5rem);
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .hero-badge {
    font-size: 0.65rem;
    padding: 0.5rem 1.2rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .about-card {
    padding: 1.8rem;
  }

  .details-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .detail-item {
    padding: 1.5rem;
  }

  .detail-value {
    font-size: 1.1rem;
  }

  .officers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .officer-card {
    padding: 1.2rem;
  }

  .section {
    padding: 4rem 0;
  }

  .section-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .section-desc {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .contact-text {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .contact-item {
    padding: 1.2rem 1.5rem;
  }

  .contact-value {
    font-size: 0.95rem;
  }

  .constitution-content {
    margin-top: 2rem;
  }

  .const-article {
    padding: 1.5rem 0;
  }

  .const-article p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.2rem;
  }

  .officers-grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .officer-card {
    padding: 1rem;
  }

  .officer-name {
    font-size: 0.9rem;
  }

  .hero-logo {
    width: 75px;
    height: 75px;
  }

  .hero-subtitle {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
  }

  .hero-title {
    font-size: clamp(2rem, 16vw, 4rem);
  }

  .footer {
    padding: 3rem 0;
  }
}

::selection {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

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

::-webkit-scrollbar-track {
  background: #000;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}
