:root {
  --primary-dark: #1a1a1a;
  --primary-mid: #2d2d2d;
  --accent-gold: #c9a961;
  --text-light: #f5f5f5;
  --text-gray: #666;
  --border-light: #e0e0e0;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--primary-dark);
  line-height: 1.6;
  background: #ffffff;
  overflow-x: hidden;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-mid) 100%);
  color: var(--text-light);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 2rem;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(201, 169, 97, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 100%;
  width: 100%;
  text-align: center;
}

.hero-text-content {
  max-width: 800px;
  margin: 0 auto;
}

.logo-placeholder {
  margin-bottom: 1rem;
}

.logo-box {
  display: inline-block;
  padding: 0.5rem 0.5rem;
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  font-weight: 300;
}

.logo-box img {
  display: block;
  max-width: 100%;
  height: auto;
}

.hero-title {
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.accent-line {
  display: inline-block;
  width: 80px;
  height: 2px;
  background: var(--accent-gold);
  margin: 0 auto 2rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  color: rgba(245, 245, 245, 0.95);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.hero-description {
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(245, 245, 245, 0.8);
  margin-bottom: 3rem;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.coming-soon-badge {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--accent-gold);
  color: var(--primary-dark);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 3rem;
  animation: pulse 2s ease-in-out infinite;
}

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

/* Email Signup Form */
.signup-form {
  max-width: 500px;
  margin: 0 auto 3rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 8px;
}

.signup-form p {
  color: rgba(245, 245, 245, 0.85);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.form-group {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.form-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(201, 169, 97, 0.4);
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-dark);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: #ffffff;
}

.form-button {
  padding: 1rem 2rem;
  background: var(--accent-gold);
  color: var(--primary-dark);
  border: none;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.form-button:hover:not(:disabled) {
  background: var(--text-light);
  transform: translateY(-2px);
}

.form-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-note {
  font-size: 0.85rem;
  color: rgba(245, 245, 245, 0.6);
  font-style: italic;
}

/* Success and Error Messages */
.success-message,
.error-message {
  display: none;
  padding: 1rem;
  margin-bottom: 1rem;
  text-align: center;
  border-radius: 4px;
}

.success-message {
  background: rgba(76, 175, 80, 0.2);
  border: 1px solid rgba(76, 175, 80, 0.5);
  color: var(--text-light);
}

.error-message {
  background: rgba(244, 67, 54, 0.2);
  border: 1px solid rgba(244, 67, 54, 0.5);
  color: var(--text-light);
}

.success-message.show,
.error-message.show {
  display: block;
}

/* Features Section */
.features-section {
  background: #ffffff;
  padding: 4rem 2rem;
}

.features-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #f9f9f9;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--accent-gold);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.5;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.feature-text {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* Footer */
.footer {
  position: relative;
  margin-top: 0;
  padding: 3rem 2rem;
  text-align: center;
  background: var(--primary-dark);
  color: rgba(245, 245, 245, 0.7);
}

.footer-text {
  color: rgba(245, 245, 245, 0.5);
  font-size: 0.85rem;
}

.footer-links {
  margin-top: 0.5rem;
}

.footer-link {
  color: rgba(245, 245, 245, 0.6);
  text-decoration: none;
  margin: 0 1rem;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--accent-gold);
}

.policy-page {
  min-height: 100vh;
  background: #ffffff;
  padding: 2rem;
  }
  
  .policy-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-mid) 100%);
    color: var(--text-light);
    padding: 3rem 2rem;
    text-align: center;
    margin: -2rem -2rem 3rem;
  }
  
  .policy-header h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
  }
  
  .policy-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
  }
  
  .policy-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-dark);
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-gold);
  }
  
  .policy-content p {
    margin-bottom: 1rem;
    color: var(--text-gray);
  }
  
  .policy-content ul {
    margin: 1rem 0 1rem 2rem;
    color: var(--text-gray);
  }
  
  .policy-content li {
    margin-bottom: 0.5rem;
  }
  
  .policy-content strong {
    color: var(--primary-dark);
    font-weight: 500;
  }
  
  .last-updated {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-style: italic;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
  }
  
  .back-link {
    display: inline-block;
    margin: 2rem 0;
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
  }
  
  .back-link:hover {
    text-decoration: underline;
  }
  
  .language-selector {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 100;
  }
  
  .language-selector button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(201, 169, 97, 0.5);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
  }
  
  .language-selector button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-gold);
  }
  
  .language-selector button.active {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-dark);
    font-weight: 500;
  }
  
  .document-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: var(--primary-dark, #1a1a2e);
    color: var(--text-light, #e8e8e8);
    min-height: 100vh;
  }
  
  .document-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--accent-gold, #c9a961);
  }
  
  .document-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold, #c9a961);
    margin-bottom: 0.5rem;
  }
  
  .document-subtitle {
    font-size: 1rem;
    color: var(--text-muted, #a0a0a0);
  }
  
  .last-updated {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted, #a0a0a0);
    margin-bottom: 3rem;
    font-style: italic;
  }
  
  .document-content h2 {
    font-size: 1.75rem;
    color: var(--accent-gold, #c9a961);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
  }
  
  .document-content h3 {
    font-size: 1.3rem;
    color: var(--text-light, #e8e8e8);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
  }
  
  .document-content p {
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: var(--text-light, #e8e8e8);
  }
  
  .document-content ul, .document-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }
  
  .document-content li {
    line-height: 1.8;
    margin-bottom: 0.75rem;
    color: var(--text-light, #e8e8e8);
  }
  
  .document-content strong {
    color: var(--accent-gold, #c9a961);
  }
  
  .back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--accent-gold, #c9a961);
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
  }
  
  .back-link:hover {
    opacity: 0.7;
  }
  
  .contact-section {
    background: rgba(201, 169, 97, 0.1);
    border-left: 3px solid var(--accent-gold, #c9a961);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
  }
   
/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 4rem 1.5rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .form-group {
    flex-direction: column;
  }
  
  .form-button {
    width: 100%;
  }
  
  .features-preview {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-link {
    display: block;
    margin: 0.5rem 0;
  }

  .policy-header h1 {
    font-size: 2rem;
  }
  
  .policy-content {
    padding: 0 1rem;
  }

  .language-selector {
    position: relative;
    top: auto;
    right: auto;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .language-selector button {
    margin: 0.25rem;
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }

  .document-container {
    padding: 2rem 1.5rem;
  }
  
  .document-title {
    font-size: 2rem;
  }
  
  .document-content h2 {
    font-size: 1.5rem;
  }
  
  .document-content h3 {
    font-size: 1.2rem;
  }
}