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

:root {
  --gold: #c8a96e;
  --gold-light: #e8c98a;
  --dark: #1a1612;
  --text: #2c2416;
  --muted: #7a6a52;
  --bg: #faf8f5;
  --card-bg: #ffffff;
  --border: #e8e0d0;
}

html, body {
  height: 100%;
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* ── FULL-PAGE CENTER ── */
.landing {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  position: relative;
  overflow: hidden;
}

/* subtle background pattern */
.landing::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(200, 169, 110, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(200, 169, 110, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

/* ── CARD ── */
.card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow:
    0 1px 3px rgba(0,0,0,0.04),
    0 8px 32px rgba(0,0,0,0.06),
    0 0 0 1px rgba(200,169,110,0.1);
}

/* ── ICON ── */
.icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #fdf6e8 0%, #f5e8c8 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  border: 1px solid rgba(200,169,110,0.25);
}

/* ── BRAND ── */
.brand-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.headline {
  font-size: 28px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.subtext {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 32px;
}

/* ── DIVIDER ── */
.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.divider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
}

/* ── STATUS BADGE ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fdf6e8;
  border: 1px solid rgba(200,169,110,0.3);
  color: #8a6b2e;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}

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

/* ── FOOTER NOTE ── */
.footer-note {
  margin-top: 32px;
  font-size: 12px;
  color: #bbb0a0;
  letter-spacing: 0.02em;
}

/* ── MOBILE ── */
@media (max-width: 480px) {
  .card {
    padding: 36px 24px;
    border-radius: 20px;
  }
  .headline {
    font-size: 24px;
  }
}
