/* Start custom CSS for html, class: .elementor-element-b395a10 */@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Space+Mono:ital,wght@0,400;0,700;1,400&family=DM+Sans:wght@400;500;700&display=swap');

:root {
  --cream: #0D0D0D;
  --dark-brown: #B2FF00;
  --warm-brown: #A0A0A0;
  --mustard: #B2FF00;
  --rust: #B2FF00;
  --olive: #8AE600;
  --navy: #111111;
  --paper: #161616;
  --ink: #FFFFFF;
  --red-accent: #B2FF00;
  --tape-yellow: rgba(178, 255, 0, 0.2);
  --shadow: rgba(0, 0, 0, 0.4);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: #0D0D0D;
  color: #FFFFFF;
  overflow-x: hidden;
}

/* NOISE TEXTURE OVERLAY */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* NAVIGATION */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 13, 13, 0.95);
  border-bottom: 1px solid rgba(178, 255, 0, 0.2);
  padding: 0.8rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 4px 20px var(--shadow);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #FFFFFF;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-logo span {
  color: #B2FF00;
}

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

.nav-links a {
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #888888;
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}

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

.nav-links a:hover {
  color: #B2FF00;
}

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

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

.hamburger span {
  width: 28px;
  height: 3px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: 0.3s;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  background:
    radial-gradient(circle at 20% 80%, rgba(178, 255, 0, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(178, 255, 0, 0.03) 0%, transparent 50%),
    #0D0D0D;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #B2FF00;
  border: 2px solid #B2FF00;
  padding: 0.5rem 1.5rem;
  margin-bottom: 2rem;
  position: relative;
  animation: fadeInDown 0.8s ease;
}

.hero-badge::before {
  content: '★';
  margin-right: 8px;
}

.hero-badge::after {
  content: '★';
  margin-left: 8px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero h1 .highlight {
  color: #B2FF00;
  position: relative;
  display: inline-block;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: -5px;
  right: -5px;
  height: 12px;
  background: var(--tape-yellow);
  z-index: -1;
  transform: rotate(-1deg);
}

.hero-subtitle {
  font-family: 'Space Mono', monospace;
  font-size: 1rem;
  color: #888888;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Mono', monospace;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #0D0D0D;
  background: #B2FF00;
  padding: 1rem 2.5rem;
  text-decoration: none;
  border: 3px solid #B2FF00;
  position: relative;
  transition: all 0.3s;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-cta:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 #B2FF00;
}

.hero-decor {
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: 15rem;
  font-weight: 900;
  color: rgba(178, 255, 0, 0.03);
  user-select: none;
  pointer-events: none;
}

.hero-decor.left {
  top: 10%;
  left: -5%;
  transform: rotate(-15deg);
}

.hero-decor.right {
  bottom: 5%;
  right: -5%;
  transform: rotate(10deg);
}

/* SECTION STYLES */
.section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #B2FF00;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #FFFFFF;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--mustard);
  margin: 1rem auto 0;
}

/* ABOUT SECTION */
.about-section {
  background: #111111;
  border-top: 1px solid rgba(178, 255, 0, 0.15);
  border-bottom: 1px solid rgba(178, 255, 0, 0.15);
  padding: 6rem 2rem;
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #A0A0A0;
  margin-bottom: 1.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-card {
  background: #1A1A1A;
  border: 2px solid rgba(178, 255, 0, 0.3);
  padding: 1.5rem;
  text-align: center;
  position: relative;
  transition: transform 0.3s;
}

.stat-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 5px 5px 0 rgba(178, 255, 0, 0.3);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #B2FF00;
}

.stat-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #777777;
  margin-top: 0.3rem;
}

/* DIVISIONS */
.divisions-section {
  padding: 6rem 2rem;
}

.divisions-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.division-card {
  background: #161616;
  border: 2px solid rgba(178, 255, 0, 0.15);
  padding: 2rem;
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
}

.division-card::before {
  content: attr(data-number);
  position: absolute;
  top: -10px;
  right: 15px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(178, 255, 0, 0.05);
  line-height: 1;
}

.division-card:hover {
  transform: translate(-5px, -5px);
  box-shadow: 8px 8px 0 rgba(178, 255, 0, 0.2);
  border-color: #B2FF00;
}

.division-icon {
  width: 50px;
  height: 50px;
  background: rgba(178, 255, 0, 0.15);
  border: 2px solid rgba(178, 255, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}

.division-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.3rem;
}

.division-duration {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #B2FF00;
  margin-bottom: 1.2rem;
}

.division-lead {
  font-size: 0.92rem;
  color: #A0A0A0;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.division-subtitle {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #777777;
  margin-bottom: 0.8rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
  padding-bottom: 0.5rem;
}

.division-reqs {
  list-style: none;
  margin-bottom: 1.5rem;
}

.division-reqs li {
  font-size: 0.9rem;
  color: #A0A0A0;
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.division-reqs li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #B2FF00;
  font-weight: 700;
}

.division-cta {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #0D0D0D;
  background: #B2FF00;
  padding: 0.8rem 1.8rem;
  text-decoration: none;
  border: 2px solid #B2FF00;
  transition: all 0.3s;
}

.division-cta:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
}

/* TIMELINE */
.timeline-section {
  background: #111111;
  padding: 6rem 2rem;
  color: #FFFFFF;
}

.timeline-section .section-label {
  color: #B2FF00;
}

.timeline-section .section-title {
  color: #FFFFFF;
}

.timeline-section .section-title::after {
  background: #B2FF00;
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: repeating-linear-gradient(to bottom,
      #B2FF00 0px,
      #B2FF00 8px,
      transparent 8px,
      transparent 16px);
}

.timeline-item {
  position: relative;
  padding-bottom: 3rem;
  opacity: 0;
  transform: translateX(-20px);
  animation: fadeInLeft 0.6s ease forwards;
}

.timeline-item:nth-child(1) {
  animation-delay: 0.1s;
}

.timeline-item:nth-child(2) {
  animation-delay: 0.2s;
}

.timeline-item:nth-child(3) {
  animation-delay: 0.3s;
}

.timeline-item:nth-child(4) {
  animation-delay: 0.4s;
}

.timeline-item:nth-child(5) {
  animation-delay: 0.5s;
}

.timeline-item:nth-child(6) {
  animation-delay: 0.6s;
}

.timeline-dot {
  position: absolute;
  left: -3rem;
  top: 5px;
  width: 28px;
  height: 28px;
  background: #B2FF00;
  border: 3px solid #111111;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  color: #0D0D0D;
  z-index: 1;
}

.timeline-date {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #B2FF00;
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.timeline-desc {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.7);
  line-height: 1.6;
}

.timeline-item.active .timeline-dot {
  background: #B2FF00;
  animation: pulse 2s infinite;
}

/* REQUIREMENTS SECTION */
.requirements-section {
  padding: 6rem 2rem;
  background: #0D0D0D;
}

.req-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.req-card {
  background: #161616;
  border: 2px solid rgba(178, 255, 0, 0.15);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}

.req-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 5px 5px 0 rgba(178, 255, 0, 0.2);
  border-color: #B2FF00;
}

.req-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.req-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.req-desc {
  font-size: 0.9rem;
  color: #888888;
  line-height: 1.6;
}

/* CTA SECTION */
.cta-section {
  background: #B2FF00;
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: 'DAFTAR SEKARANG';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  white-space: nowrap;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #0D0D0D;
  margin-bottom: 1rem;
}

.cta-text {
  font-family: 'Space Mono', monospace;
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #FFFFFF;
  background: #0D0D0D;
  padding: 1rem 2.5rem;
  text-decoration: none;
  border: 3px solid #0D0D0D;
  transition: all 0.3s;
}

.cta-btn:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.3);
  background: #1A1A1A;
}

/* REGISTRATION FORM — WIZARD STYLE (fixed colors, tidak ikut tema gelap/terang situs agar kontras selalu terjaga) */
.reg-form-wrapper {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 3rem auto 0;
  background: #FFFFFF;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  text-align: left;
}

.wizard {
  display: flex;
  min-height: 460px;
}

/* SIDEBAR */
.wizard-sidebar {
  width: 230px;
  flex-shrink: 0;
  background: #2A2750;
  padding: 2.2rem 1.6rem;
  display: flex;
  flex-direction: column;
}

.wizard-step-nav {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wizard-step-nav:last-child {
  border-bottom: none;
}

.wizard-step-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #6E6A99;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: background 0.3s, color 0.3s;
}

.wizard-step-nav.active .wizard-step-badge {
  background: #B2FF00;
  color: #0D0D0D;
}

.wizard-step-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.82rem;
  font-weight: 700;
  color: #ACA9CC;
  letter-spacing: 0.3px;
}

.wizard-step-nav.active .wizard-step-label {
  color: #FFFFFF;
}

/* MAIN PANEL */
.wizard-main {
  flex: 1;
  position: relative;
  background: #FFFFFF;
  padding: 2.6rem 2.6rem 5.5rem;
}

.wizard-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #0D0D0D;
  margin-bottom: 0.6rem;
}

.wizard-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* FLOATING-LABEL OUTLINED FIELDS */
.field-outline {
  position: relative;
  border: 1.5px solid #D9D9D9;
  border-radius: 10px;
  padding: 1.05rem 1rem 0.85rem;
  margin-bottom: 1.4rem;
  transition: border-color 0.25s;
}

.field-outline label {
  position: absolute;
  top: -0.55rem;
  left: 0.9rem;
  background: #FFFFFF;
  padding: 0 0.4rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888888;
}

.field-outline input,
.field-outline select,
.field-outline textarea {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: #1A1A1A;
  padding: 0;
}

.field-outline select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23555555' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.2rem center;
  padding-right: 1.6rem;
}

.field-outline-textarea textarea {
  min-height: 90px;
  resize: vertical;
}

.field-outline:focus-within {
  border-color: #B2FF00;
}

.reg-hint {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: #888888;
  margin-top: -0.6rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* NAV CONTROLS */
.wizard-nav {
  position: absolute;
  bottom: 1.8rem;
  right: 2.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.wizard-back {
  background: none;
  border: none;
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem;
  font-weight: 700;
  color: #777777;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wizard-back:hover {
  color: #0D0D0D;
}

.wizard-fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #B2FF00;
  border: none;
  color: #0D0D0D;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

.wizard-fab:hover {
  transform: scale(1.08);
}

.wizard-fab:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.reg-message {
  margin-top: 1rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem;
  text-align: left;
  min-height: 1.2em;
}

.reg-message.success { color: #1E8E3E; }
.reg-message.error { color: #D93025; }

@media (max-width: 700px) {
  .wizard {
    flex-direction: column;
  }

  .wizard-sidebar {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    padding: 1.2rem 1rem;
  }

  .wizard-step-nav {
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    border-bottom: none;
    padding: 0;
    text-align: center;
  }

  .wizard-step-label {
    font-size: 0.62rem;
  }

  .wizard-main {
    padding: 1.8rem 1.6rem 5rem;
  }

  .wizard-nav {
    right: 1.6rem;
    bottom: 1.4rem;
  }
}


/* FOOTER */
.footer {
  background: #0A0A0A;
  color: #FFFFFF;
  padding: 3rem 2rem;
  text-align: center;
  border-top: 2px solid rgba(178, 255, 0, 0.2);
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.footer-logo span {
  color: #B2FF00;
}

.footer-text {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: rgba(245, 240, 232, 0.5);
  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1.5rem 0;
  list-style: none;
}

.footer-links a {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: rgba(245, 240, 232, 0.6);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #B2FF00;
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(178, 255, 0, 0.4);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(178, 255, 0, 0);
  }
}

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

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

/* MARQUEE */
.marquee-strip {
  background: #111111;
  color: #B2FF00;
  padding: 0.8rem 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(178, 255, 0, 0.3);
  border-bottom: 1px solid rgba(178, 255, 0, 0.3);
}

.marquee-content {
  display: inline-block;
  animation: marquee 25s linear infinite;
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0D0D0D;
    border-bottom: 1px solid rgba(178, 255, 0, 0.2);
    padding: 1.5rem 2rem;
    gap: 1rem;
  }

  .hero {
    padding: 7rem 1.5rem 3rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

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

 
.divisions-grid {
 grid-template-columns: 1fr;
 padding: 0 !important;
}

  .timeline {
    padding-left: 2.5rem;
  }

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

  .hero-decor {
    display: none;
  }

  .cta-section::before {
    font-size: 3rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ==============================
   THEME TOGGLE BUTTON
   ============================== */
.theme-toggle {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid #B2FF00;
  background: #161616;
  color: #B2FF00;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.theme-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(178, 255, 0, 0.3);
}

.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }

/* ==============================
   LIGHT MODE OVERRIDES
   ============================== */
[data-theme="light"] body {
  background-color: #FAFAF7;
  color: #1A1A1A;
}

[data-theme="light"] .navbar {
  background: rgba(250, 250, 247, 0.95);
  border-bottom: 2px solid #2D6A2E;
  backdrop-filter: blur(10px);
}

[data-theme="light"] .nav-logo { color: #1B4A1C; }
[data-theme="light"] .nav-logo span { color: #2D6A2E; }
[data-theme="light"] .nav-links a { color: #5A5A5A; }
[data-theme="light"] .nav-links a::after { background: #2D6A2E; }
[data-theme="light"] .nav-links a:hover { color: #2D6A2E; }
[data-theme="light"] .hamburger span { background: #1B4A1C; }

[data-theme="light"] .marquee-strip {
  background: #1B4A1C;
  color: #A8D5A9;
  border-color: #2D6A2E;
}

[data-theme="light"] .hero {
  background:
    radial-gradient(circle at 20% 80%, rgba(45, 106, 46, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(45, 106, 46, 0.04) 0%, transparent 50%),
    #FAFAF7;
}

[data-theme="light"] .hero h1 { color: #1A1A1A; }
[data-theme="light"] .hero h1 .highlight { color: #2D6A2E; }
[data-theme="light"] .hero h1 .highlight::after { background: #E8F3E8; }
[data-theme="light"] .hero-badge { color: #2D6A2E; border-color: #2D6A2E; }
[data-theme="light"] .hero-subtitle { color: #5A5A5A; }
[data-theme="light"] .hero-decor { color: rgba(45, 106, 46, 0.04); }

[data-theme="light"] .hero-cta {
  color: #FFFFFF;
  background: #2D6A2E;
  border-color: #2D6A2E;
}

[data-theme="light"] .hero-cta:hover {
  background: #1B4A1C;
  border-color: #1B4A1C;
  box-shadow: 6px 6px 0 #2D6A2E;
}

[data-theme="light"] .section-label { color: #2D6A2E; }
[data-theme="light"] .section-title { color: #1A1A1A; }
[data-theme="light"] .section-title::after { background: #2D6A2E; }

[data-theme="light"] .about-section {
  background: #F0EDE6;
  border-color: #D4D0C8;
}

[data-theme="light"] .about-text p { color: #5A5A5A; }

[data-theme="light"] .stat-card {
  background: #FFFFFF;
  border-color: #2D6A2E;
}

[data-theme="light"] .stat-card:hover { box-shadow: 5px 5px 0 #2D6A2E; }
[data-theme="light"] .stat-number { color: #2D6A2E; }
[data-theme="light"] .stat-label { color: #5A5A5A; }

[data-theme="light"] .division-card {
  background: #FFFFFF;
  border-color: #D4D0C8;
}

[data-theme="light"] .division-card::before { color: rgba(45, 106, 46, 0.06); }

[data-theme="light"] .division-card:hover {
  box-shadow: 8px 8px 0 #2D6A2E;
  border-color: #2D6A2E;
}

[data-theme="light"] .division-icon {
  background: #E8F3E8;
  border-color: #2D6A2E;
}

[data-theme="light"] .division-title { color: #1B4A1C; }
[data-theme="light"] .division-duration { color: #2D6A2E; }
[data-theme="light"] .division-lead { color: #5A5A5A; }
[data-theme="light"] .division-subtitle { color: #5A5A5A; border-color: #D4D0C8; }
[data-theme="light"] .division-reqs li { color: #5A5A5A; }
[data-theme="light"] .division-reqs li::before { color: #2D6A2E; }

[data-theme="light"] .division-cta {
  color: #FFFFFF;
  background: #2D6A2E;
  border-color: #2D6A2E;
}

[data-theme="light"] .division-cta:hover {
  background: #1B4A1C;
  border-color: #1B4A1C;
}

[data-theme="light"] .timeline-section { background: #1B4A1C; }
[data-theme="light"] .timeline-section .section-label { color: #A8D5A9; }
[data-theme="light"] .timeline-section .section-title::after { background: #A8D5A9; }

[data-theme="light"] .timeline::before {
  background: repeating-linear-gradient(to bottom, #A8D5A9 0px, #A8D5A9 8px, transparent 8px, transparent 16px);
}

[data-theme="light"] .timeline-dot {
  background: #A8D5A9;
  border-color: #1B4A1C;
  color: #1B4A1C;
}

[data-theme="light"] .timeline-date { color: #A8D5A9; }
[data-theme="light"] .timeline-item.active .timeline-dot { background: #FFFFFF; }

[data-theme="light"] .requirements-section { background: #FAFAF7; }

[data-theme="light"] .req-card {
  background: #FFFFFF;
  border-color: #D4D0C8;
}

[data-theme="light"] .req-card:hover {
  box-shadow: 5px 5px 0 #2D6A2E;
  border-color: #2D6A2E;
}

[data-theme="light"] .req-title { color: #1B4A1C; }
[data-theme="light"] .req-desc { color: #5A5A5A; }

[data-theme="light"] .cta-section { background: #2D6A2E; }
[data-theme="light"] .cta-title { color: #FFFFFF; }
[data-theme="light"] .cta-text { color: rgba(255, 255, 255, 0.8); }

[data-theme="light"] .cta-btn {
  color: #2D6A2E;
  background: #FFFFFF;
  border-color: #FFFFFF;
}

[data-theme="light"] .cta-btn:hover {
  background: #FAFAF7;
  box-shadow: 6px 6px 0 #1B4A1C;
}

[data-theme="light"] .footer {
  background: #1B4A1C;
  border-color: #2D6A2E;
}

[data-theme="light"] .footer-logo span { color: #A8D5A9; }
[data-theme="light"] .footer-links a:hover { color: #A8D5A9; }

[data-theme="light"] .theme-toggle {
  background: #FFFFFF;
  border-color: #2D6A2E;
  color: #2D6A2E;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .theme-toggle:hover {
  box-shadow: 0 0 20px rgba(45, 106, 46, 0.2);
}

[data-theme="light"] .theme-toggle .icon-sun { display: block; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }

[data-theme="light"] .nav-links.active {
  background: #FAFAF7;
  border-color: #2D6A2E;
}/* End custom CSS */