@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
  --bg-color: #040907;
  --panel-bg: rgba(9, 21, 16, 0.45);
  --border-color: rgba(243, 161, 82, 0.12);
  --border-focus: rgba(243, 161, 82, 0.4);
  
  --primary-gold: #e5a952;
  --primary-gold-rgb: 229, 169, 82;
  --dark-gold: #b37e33;
  --emerald-green: #10b981;
  --emerald-rgb: 16, 185, 129;
  --light-text: #e2e8f0;
  --muted-text: #94a3b8;
  
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  background-color: var(--bg-color);
  color: var(--light-text);
  font-family: var(--font-sans);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
  position: relative;
  padding: 3rem 1.5rem;
}

/* Background gradient blobs */
.bg-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
  mix-blend-mode: screen;
  animation: floatOrb 25s infinite alternate ease-in-out;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.35) 0%, rgba(0, 0, 0, 0) 70%);
  top: -15%;
  left: -10%;
}

.orb-2 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(229, 169, 82, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
  bottom: -20%;
  right: -10%;
  animation-duration: 35s;
  animation-delay: -5s;
}

.orb-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  top: 35%;
  left: 45%;
  transform: translate(-50%, -50%);
  animation-duration: 30s;
  animation-delay: -10s;
}

@keyframes floatOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(60px, 40px) scale(1.08);
  }
  100% {
    transform: translate(-30px, -60px) scale(0.92);
  }
}

/* Card Container */
.container {
  position: relative;
  z-index: 1;
  max-width: 820px;
  width: 100%;
  background: var(--panel-bg);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid var(--border-color);
  border-radius: 28px;
  padding: 4.5rem 4rem;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
  text-align: center;
  overflow: hidden;
}

/* Shine overlay effect */
.container::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.02) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  animation: shine 10s infinite ease-in-out;
  pointer-events: none;
}

@keyframes shine {
  0% { left: -150%; }
  25% { left: 150%; }
  100% { left: 150%; }
}

/* Badges */
.badge-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--emerald-green);
  padding: 0.55rem 1.1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.05);
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--emerald-green);
  border-radius: 50%;
  position: relative;
}

.status-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--emerald-green);
  border-radius: 50%;
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.8);
    opacity: 0;
  }
}

/* Logo styling */
.logo-area {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-icon-wrapper {
  background: rgba(229, 169, 82, 0.03);
  border: 1px solid rgba(229, 169, 82, 0.15);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  transition: var(--transition-smooth);
}

.logo-icon-wrapper::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px dashed rgba(229, 169, 82, 0.2);
  animation: rotateDashed 50s linear infinite;
}

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

.logo-icon-wrapper:hover {
  transform: translateY(-5px);
  border-color: rgba(229, 169, 82, 0.4);
  background: rgba(229, 169, 82, 0.08);
  box-shadow: 0 15px 35px rgba(229, 169, 82, 0.15);
}

.logo-svg {
  transition: var(--transition-smooth);
}

.logo-icon-wrapper:hover .logo-svg {
  transform: scale(1.05);
}

.logo-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #FFF 20%, #F5CE8B 60%, #C58A26 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.logo-tagline {
  font-size: 0.9rem;
  color: var(--primary-gold);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
}

.description {
  max-width: 620px;
  margin: 0 auto 3rem auto;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted-text);
}

/* Progress Bar */
.progress-container {
  max-width: 520px;
  margin: 0 auto 3rem auto;
  text-align: left;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
  color: var(--muted-text);
  letter-spacing: 0.03em;
}

.progress-status-text {
  font-weight: 500;
}

.progress-percentage {
  color: var(--primary-gold);
  font-weight: 700;
}

.progress-track {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--emerald-green), var(--primary-gold));
  border-radius: 10px;
  position: relative;
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.4);
  transition: width 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Countdown Timer */
.countdown-container {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  width: 90px;
  padding: 1.1rem 0;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
  transition: var(--transition-smooth);
}

.countdown-item:hover {
  border-color: rgba(229, 169, 82, 0.18);
  background: rgba(255, 255, 255, 0.035);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.countdown-val {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  background: linear-gradient(to bottom, #ffffff, #e2e8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.countdown-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-text);
  margin-top: 0.35rem;
  font-weight: 600;
}

/* Subscription Form */
.subscribe-form {
  max-width: 520px;
  margin: 0 auto 3.5rem auto;
}

.subscribe-input-group {
  display: flex;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 0.4rem;
  border-radius: 16px;
  transition: var(--transition-smooth);
}

.subscribe-input-group:focus-within {
  border-color: var(--border-focus);
  box-shadow: 0 0 20px rgba(229, 169, 82, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.subscribe-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  padding: 0.75rem 1.1rem;
  font-size: 0.95rem;
  font-family: var(--font-sans);
}

.subscribe-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.subscribe-btn {
  background: linear-gradient(135deg, #F3A152 0%, #C58A26 100%);
  color: #040907;
  border: none;
  outline: none;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.85rem;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(197, 138, 38, 0.25);
}

.subscribe-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(197, 138, 38, 0.4);
  background: linear-gradient(135deg, #ffb566 0%, #d5962f 100%);
}

.subscribe-btn:active {
  transform: translateY(1px);
}

.subscribe-note {
  font-size: 0.8rem;
  color: var(--muted-text);
  margin-top: 0.8rem;
  display: block;
}

.success-message {
  display: none;
  color: var(--emerald-green);
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 1.2rem;
  padding: 0.75rem 1.25rem;
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 10px;
  animation: fadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 3rem;
  margin-top: 1.5rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

.contact-card:hover {
  transform: translateY(-3px);
}

.contact-icon-wrapper {
  background: rgba(229, 169, 82, 0.03);
  border: 1px solid rgba(229, 169, 82, 0.12);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  margin-bottom: 0.3rem;
  transition: var(--transition-smooth);
}

.contact-card:hover .contact-icon-wrapper {
  background: var(--primary-gold);
  color: #040907;
  border-color: var(--primary-gold);
  box-shadow: 0 0 15px rgba(229, 169, 82, 0.35);
}

.contact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-text);
  font-weight: 600;
}

.contact-value {
  font-size: 0.9rem;
  color: #fff;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.contact-card:hover .contact-value {
  color: var(--primary-gold);
}

/* Footer / Copy */
.site-footer {
  margin-top: 3.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  body {
    padding: 1.5rem 1rem;
  }
  
  .container {
    padding: 3rem 1.75rem;
    border-radius: 20px;
  }
  
  .logo-title {
    font-size: 2.25rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 2.5rem;
  }
  
  .subscribe-input-group {
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
    gap: 0.75rem;
  }
  
  .subscribe-input {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    width: 100%;
    padding: 0.85rem 1.1rem;
  }
  
  .subscribe-input:focus {
    border-color: var(--border-focus);
    background: rgba(255, 255, 255, 0.04);
  }
  
  .subscribe-btn {
    width: 100%;
    padding: 0.9rem;
    border-radius: 12px;
  }
  
  .countdown-container {
    gap: 0.85rem;
  }
  
  .countdown-item {
    width: 72px;
    padding: 0.85rem 0;
    border-radius: 14px;
  }
  
  .countdown-val {
    font-size: 1.85rem;
  }
}
