@font-face {
  font-family: 'HelveticaNeue';
  src: local('HelveticaNeue'), local('Helvetica Neue');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'HelveticaNeue';
  src: local('HelveticaNeue-Bold'), local('Helvetica Neue Bold');
  font-weight: bold;
  font-style: normal;
}

:root {
  --color-primary: #EDFF00;
  --color-primary-hover: #d4e500;
  --color-bg: #141414;
  --color-bg-dark: #0a0a0a;
  --color-surface: #1a1a1a;
  --color-text: #FFFFFF;
  --color-text-muted: #AAAAAA;
  --color-danger: #e74c3c;
  --shadow-1: 0 2px 10px rgba(0, 0, 0, 0.15);
  --shadow-2: 0 4px 20px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 10px rgba(237, 255, 0, 0.2);
  --font-heading: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-mono: 'Roboto Mono', monospace;
  --border-radius: 8px;
  --transition-default: all 0.3s ease;
}

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

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

body {
  font-family: var(--font-body);
  background: linear-gradient(145deg, var(--color-bg) 0%, var(--color-bg-dark) 100%);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, var(--color-primary) 0%, #FFFFFF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

h2 {
  font-size: 1.8rem;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  text-align: center;
}

h4 {
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

small {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition-default);
}

a:hover {
  color: var(--color-primary-hover);
}

/* Utility Classes */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  min-height: 70vh;
}

.logo-animate {
  width: 200px;
  height: auto;
  margin-bottom: 2rem;
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.teaser {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
}

/* Countdown */
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-1);
}

.time-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0.5rem;
}

.time-separator {
  font-size: 2rem;
  font-weight: bold;
  margin: 0 0.5rem;
  color: var(--color-primary);
}

.number {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--color-primary);
  width: 70px;
  text-align: center;
  padding: 0.5rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--border-radius);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.label {
  font-size: 0.8rem;
  margin-top: 0.5rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Features */
.features {
  padding: 60px 0;
}

.section-title {
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 3rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--color-primary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  justify-content: center;
  justify-items: center;
}

@media (min-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 300px));
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}

.feature-card {
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  transition: var(--transition-default);
  box-shadow: var(--shadow-1);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2), var(--shadow-glow);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(237, 255, 0, 0.1);
  border-radius: 50%;
  padding: 15px;
}

.feature-icon svg {
  width: 30px;
  height: 30px;
  color: var(--color-primary);
}

/* Subscribe Form */
.subscribe {
  padding: 60px 20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.15);
  border-radius: var(--border-radius);
  margin: 0 auto 60px;
  max-width: 800px;
}

.email-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 30px auto;
}

.input-field {
  padding: 15px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  color: var(--color-text);
  font-size: 1rem;
  transition: var(--transition-default);
}

.input-field:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(237, 255, 0, 0.2);
}

.input-field::placeholder {
  color: var(--color-text-muted);
}

.btn-primary {
  padding: 15px 30px;
  background: var(--color-primary);
  color: #000000;
  border: none;
  border-radius: var(--border-radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-default);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-1);
}

.privacy-note {
  margin-top: 15px;
  display: block;
}

/* Trust Section */
.trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--border-radius);
  max-width: 400px;
}

.trust-badge svg {
  flex-shrink: 0;
  color: var(--color-primary);
}

.trust-badge p {
  margin: 0;
  font-size: 0.9rem;
}

/* Footer */
.coming-soon-footer {
  margin-top: 4rem;
  padding: 2rem 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition-default);
}

.social-icons a:hover {
  background: var(--color-primary);
  transform: translateY(-3px);
}

.social-icons img {
  width: 20px;
  height: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}

.footer-links a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--color-primary);
}

.copyright {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Responsive */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .countdown {
    flex-wrap: wrap;
  }
  
  .number {
    font-size: 2rem;
    width: 60px;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  
  .trust {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .countdown {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }
  
  .time-unit {
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
  }
  
  .time-separator {
    display: none;
  }
  
  .number {
    width: auto;
    padding: 5px 10px;
  }
  
  .label {
    margin-top: 0;
    margin-left: 10px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}
