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

:root {
  --navy: #0a1628;
  --navy-light: #132847;
  --gold: #d4af37;
  --gold-light: #f0d889;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --gray: #6c757d;
  --gray-light: #e9ecef;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--navy);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* Particle Background */
#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(135deg, #0a1628 0%, #1a2845 100%);
}

#particles::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(212, 175, 55, 0.3), transparent),
    radial-gradient(2px 2px at 60% 70%, rgba(212, 175, 55, 0.3), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(1px 1px at 80% 10%, rgba(255, 255, 255, 0.2), transparent);
  background-size: 200% 200%;
  animation: particleMove 20s linear infinite;
}

@keyframes particleMove {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

/* Split Container */
.split-container {
  display: flex;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

/* Left Side - Dark */
.left-side {
  flex: 1;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 60px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.left-side::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.05) 0%,
    transparent 70%
  );
  animation: rotateGlow 20s linear infinite;
}

@keyframes rotateGlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.left-content {
  max-width: 500px;
  position: relative;
  z-index: 2;
}

/* Logo Section */
.logo-section {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 1s ease-out;
}

.scales-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  color: var(--gold);
  animation: scaleFloat 3s ease-in-out infinite;
}

@keyframes scaleFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

.main-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 8px;
  margin-bottom: 10px;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.subtitle-text {
  font-size: 1rem;
  letter-spacing: 4px;
  color: var(--gold-light);
  font-weight: 300;
}

/* Tagline */
.tagline {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
  animation: fadeIn 1s ease-out 0.5s both;
}

.tagline .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.tagline p {
  color: var(--white);
  font-size: 0.95rem;
  font-style: italic;
  white-space: nowrap;
}

/* Features */
.features {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-box {
  border-left: 3px solid var(--gold);
  padding-left: 25px;
  transition: all 0.3s ease;
  animation: fadeInLeft 1s ease-out calc(0.8s + var(--delay)) both;
}

.feature-box:nth-child(1) {
  --delay: 0s;
}
.feature-box:nth-child(2) {
  --delay: 0.2s;
}
.feature-box:nth-child(3) {
  --delay: 0.4s;
}

.feature-box:hover {
  border-left-width: 5px;
  transform: translateX(10px);
}

.feature-number {
  display: block;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.feature-box h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 600;
}

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

/* Right Side - Light */
.right-side {
  flex: 1;
  background: var(--white);
  padding: 60px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.right-side::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.03) 0%,
    transparent 100%
  );
  pointer-events: none;
}

.right-content {
  max-width: 550px;
  position: relative;
  z-index: 2;
}

/* Status Badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 30px;
  animation: fadeInDown 1s ease-out;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.coming-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.coming-desc {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 50px;
  font-weight: 300;
  animation: fadeInUp 1s ease-out 0.4s both;
}

/* Countdown */
.countdown-wrapper {
  margin-bottom: 50px;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.countdown-title {
  font-size: 0.85rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-weight: 600;
}

.countdown-grid {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.time-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 15px;
  padding: 25px 20px;
  min-width: 90px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(10, 22, 40, 0.15);
  transition: transform 0.3s ease;
}

.time-box:hover {
  transform: translateY(-5px);
}

.time-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.time-label {
  font-size: 0.7rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.time-separator {
  font-size: 2rem;
  color: var(--navy);
  font-weight: 700;
}

/* Contact Card */
.contact-card {
  background: var(--off-white);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 30px;
  border: 1px solid var(--gray-light);
  animation: fadeInUp 1s ease-out 0.8s both;
}

.contact-card h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 25px;
  font-weight: 600;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-item svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-label {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-item a {
  font-size: 1rem;
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--gold);
}

/* Footer */
.footer-note {
  text-align: center;
  animation: fadeIn 1s ease-out 1s both;
}

.footer-note p {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 300;
  margin-bottom: 8px;
}

.footer-note p:last-child {
  margin-bottom: 0;
}

.developer-credit {
  font-size: 0.8rem;
  margin-top: 8px;
}

.developer-credit a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.developer-credit a:hover {
  color: var(--navy);
  text-decoration: underline;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .split-container {
    flex-direction: column;
  }

  .left-side,
  .right-side {
    padding: 50px 40px;
  }

  .main-title {
    font-size: 3rem;
  }

  .coming-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .left-side,
  .right-side {
    padding: 40px 30px;
  }

  .main-title {
    font-size: 2.5rem;
    letter-spacing: 4px;
  }

  .coming-title {
    font-size: 2rem;
  }

  .countdown-grid {
    justify-content: center;
  }

  .time-box {
    min-width: 75px;
    padding: 20px 15px;
  }

  .time-value {
    font-size: 2rem;
  }

  .contact-card {
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .left-side,
  .right-side {
    padding: 30px 20px;
  }

  .main-title {
    font-size: 2rem;
    letter-spacing: 3px;
  }

  .scales-icon {
    width: 70px;
    height: 70px;
  }

  .coming-title {
    font-size: 1.8rem;
  }

  .coming-desc {
    font-size: 1rem;
  }

  .time-box {
    min-width: 65px;
    padding: 15px 10px;
  }

  .time-value {
    font-size: 1.5rem;
  }

  .time-separator {
    font-size: 1.5rem;
  }

  .contact-card {
    padding: 25px;
  }
}
