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

:root {
  --bg-primary:   #0D0A0E;
  --bg-secondary: #1A1520;
  --gold:         #C9A84C;
  --gold-glow:    #F0C96A;
  --text:         #F5EDD8;
  --muted:        #8A7A6A;
  --border:       rgba(201,168,76,0.2);
  --error:        #CF6679;
  --success:      #6BAA75;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-primary);
  color: var(--text);
  font-family: 'Lato', sans-serif;
  overflow-x: hidden;
}

.gold { color: var(--gold); }

/* ── NAVBAR ── */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  position: relative;
  z-index: 10;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon { font-size: 24px; }

.logo-text {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  color: var(--gold);
  letter-spacing: 4px;
  font-weight: 600;
}

.nav-cta {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 10px 24px;
  border-radius: 30px;
  text-decoration: none;
  letter-spacing: 2px;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--bg-primary);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
    rgba(201,168,76,0.08) 0%,
    transparent 70%);
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px 80px;
  gap: 20px;
}

/* Symbol Ring Animation */
.symbol-ring {
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  animation: spin 20s linear infinite;
}

.ring-outer {
  width: 160px; height: 160px;
  animation-duration: 30s;
}

.ring-middle {
  width: 110px; height: 110px;
  animation-duration: 20s;
  animation-direction: reverse;
}

.ring-inner {
  width: 60px; height: 60px;
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.5);
  animation: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(201,168,76,0.2);
}

.center-symbol {
  color: var(--gold);
  font-size: 24px;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero-label {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  color: rgba(201,168,76,0.6);
  letter-spacing: 4px;
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted);
  font-style: italic;
  max-width: 560px;
  line-height: 1.7;
}

/* Price Row */
.price-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 8px 0;
}

.price-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 24px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 14px;
  gap: 4px;
}

.price-label {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 2px;
}

.price-amount {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
}

.price-sub {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  color: var(--muted);
}

.price-divider {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--muted);
  font-style: italic;
}

/* Buttons */
.btn-primary {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--bg-primary);
  background: var(--gold);
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 1.5px;
  transition: all 0.3s;
  box-shadow: 0 8px 32px rgba(201,168,76,0.25);
}

.btn-primary:hover {
  background: var(--gold-glow);
  box-shadow: 0 8px 40px rgba(201,168,76,0.4);
  transform: translateY(-2px);
}

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 80px 40px;
  text-align: center;
  background: var(--bg-secondary);
}

.section-label {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  color: rgba(201,168,76,0.6);
  letter-spacing: 4px;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 48px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.step-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: left;
  transition: border-color 0.3s;
}

.step-card:hover {
  border-color: rgba(201,168,76,0.5);
}

.step-number {
  font-family: 'Cinzel', serif;
  font-size: 36px;
  font-weight: 700;
  color: rgba(201,168,76,0.2);
  margin-bottom: 12px;
}

.step-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.step-card p {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── SIGNUP SECTION ── */
.signup-section {
  padding: 80px 24px;
  display: flex;
  justify-content: center;
}

.signup-container {
  width: 100%;
  max-width: 520px;
}

.signup-header {
  text-align: center;
  margin-bottom: 40px;
}

.signup-icon { font-size: 48px; }

.signup-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--muted);
  font-style: italic;
  margin-top: 8px;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.label-icon { font-size: 14px; }

.form-input {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--text);
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}

.form-input:focus {
  border-color: var(--gold);
}

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

/* Date input color fix */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.5) sepia(1) saturate(2) hue-rotate(5deg);
  cursor: pointer;
}

.form-hint {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  color: rgba(138,122,106,0.7);
  font-style: italic;
}

/* Error & Success */
.error-box, .success-box {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 10px;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
}

.error-box {
  background: rgba(207,102,121,0.1);
  border: 1px solid rgba(207,102,121,0.3);
  color: var(--error);
}

.success-box {
  background: rgba(107,170,117,0.1);
  border: 1px solid rgba(107,170,117,0.3);
  color: var(--success);
}

/* Submit Button */
.btn-submit {
  background: var(--gold);
  color: var(--bg-primary);
  border: none;
  border-radius: 12px;
  padding: 16px;
  font-family: 'Cinzel', serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(201,168,76,0.2);
}

.btn-submit:hover {
  background: var(--gold-glow);
  box-shadow: 0 4px 28px rgba(201,168,76,0.35);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-loader {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(13,10,14,0.3);
  border-top-color: var(--bg-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.login-link {
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: var(--muted);
}

.gold-link {
  color: var(--gold);
  text-decoration: none;
}

.gold-link:hover { text-decoration: underline; }

/* ── DOWNLOAD ── */
.download-section {
  padding: 80px 24px;
  text-align: center;
  background: var(--bg-secondary);
}

.download-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 36px;
}

.download-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s;
  min-width: 200px;
}

.btn-download:hover {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201,168,76,0.1);
}

.download-icon { font-size: 28px; }

.btn-download div {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.download-label {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1px;
}

.download-platform {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  color: var(--text);
  font-weight: 600;
}

.apk-note {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  color: var(--muted);
  margin-top: 24px;
  line-height: 1.8;
}

/* ── FOOTER ── */
.footer {
  padding: 40px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: var(--muted);
  font-style: italic;
}

.footer-copy {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  color: rgba(138,122,106,0.5);
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .navbar { padding: 20px 20px; }
  .price-row { flex-direction: column; gap: 12px; }
  .how-it-works { padding: 60px 20px; }
  .steps-grid { grid-template-columns: 1fr; }
  .download-buttons { flex-direction: column; align-items: center; }
}