*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --dark: #0A0E14;
  --dark-2: #111620;
  --dark-3: #1A2030;
  --text: #E8EAF0;
  --text-muted: #7A8499;
  --border: rgba(201, 168, 76, 0.2);
}

html, body {
  height: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--dark);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.blueprint-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(30, 60, 120, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.header {
  padding: 36px 0 0;
  display: flex;
  justify-content: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 8px;
}

.logo-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--gold);
  margin-top: 6px;
  text-transform: uppercase;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 0 40px;
  gap: 32px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 7vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -1px;
}

.title-accent {
  color: var(--gold);
  position: relative;
}

.title-accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.subtitle {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 560px;
}

.progress-section {
  width: 100%;
  max-width: 480px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.progress-percent {
  color: var(--gold);
}

.progress-track {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 100px;
  animation: fillProgress 2s ease-out 0.5s forwards;
}

@keyframes fillProgress {
  to { width: 72%; }
}

.countdown {
  display: flex;
  align-items: center;
  gap: 8px;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  min-width: 80px;
}

.countdown-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.countdown-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

.countdown-sep {
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 20px;
}

.notify-form {
  display: flex;
  width: 100%;
  max-width: 460px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--dark-3);
  transition: border-color 0.3s;
}

.notify-form:focus-within {
  border-color: var(--gold);
}

.notify-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
}

.notify-input::placeholder {
  color: var(--text-muted);
}

.notify-btn {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.notify-btn:hover {
  background: var(--gold-light);
}

.notify-success {
  font-size: 13px;
  color: var(--gold);
  display: none;
  margin-top: -16px;
}

.notify-success.show {
  display: block;
}

.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: 100%;
  margin-top: 8px;
}

.service-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  transition: border-color 0.3s, transform 0.3s;
  cursor: default;
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  color: var(--text);
}

.service-icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.footer {
  padding: 24px 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer p {
  font-size: 12px;
  color: var(--text-muted);
}

@media (max-width: 600px) {
  .services {
    grid-template-columns: repeat(2, 1fr);
  }

  .countdown-item {
    min-width: 60px;
    padding: 12px 10px;
  }

  .countdown-num {
    font-size: 26px;
  }

  .notify-form {
    flex-direction: column;
    border-radius: 12px;
  }

  .notify-btn {
    border-radius: 0 0 11px 11px;
  }
}

@media (max-width: 400px) {
  .services {
    grid-template-columns: 1fr 1fr;
  }
}
