/* ─── Local Font (Inter) ────────────────────────────────────────────────── */
@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: #070d1b;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

/* ─── Grid Background ───────────────────────────────────────────────────── */
.grid-bg {
  background-color: #070d1b;
  background-image:
    linear-gradient(rgba(213, 185, 90, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(213, 185, 90, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  position: relative;
}

.grid-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(213,185,90,.12) 0%, transparent 70%);
  pointer-events: none;
}

/* ─── Glow Accent ────────────────────────────────────────────────────────── */
.glow-gold {
  box-shadow: 0 0 40px rgba(213, 185, 90, 0.15);
}

/* ─── Badge ──────────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem 1.25rem;
  border: 1px solid rgba(213,185,90,.35);
  border-radius: 9999px;
  background: rgba(213,185,90,.07);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #d5b95a;
}

.badge-dot {
  width: 7px; height: 7px;
  border-radius: 9999px;
  background: #d5b95a;
  box-shadow: 0 0 8px #d5b95a;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.6; transform:scale(.8); }
}

/* ─── Service Cards ──────────────────────────────────────────────────────── */
.service-card {
  background: #0f1d36;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  padding: 2rem;
  transition: border-color .25s, transform .25s;
}
.service-card:hover {
  border-color: rgba(213,185,90,.35);
  transform: translateY(-3px);
}
.service-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(213,185,90,.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  color: #d5b95a;
}

/* ─── Warning Box ────────────────────────────────────────────────────────── */
.warning-box {
  background: rgba(15,29,54,.8);
  border: 1px solid rgba(213,185,90,.3);
  border-left: 4px solid #d5b95a;
  border-radius: 12px;
  padding: 1.75rem 2rem;
}

/* ─── Form Inputs ────────────────────────────────────────────────────────── */
.form-input {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  color: #fff;
  font-size: .95rem;
  padding: .85rem 1.2rem;
  width: 100%;
  transition: border-color .2s, background .2s;
  outline: none;
  font-family: inherit;
}
.form-input::placeholder { color: rgba(255,255,255,.35); }
.form-input:focus {
  border-color: rgba(213,185,90,.6);
  background: rgba(255,255,255,.07);
}

.btn-gold {
  background: #d5b95a;
  color: #070d1b;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: .95rem;
  padding: .85rem 1.75rem;
  cursor: pointer;
  transition: background .2s, transform .15s;
  white-space: nowrap;
  font-family: inherit;
}
.btn-gold:hover { background: #c4a94a; transform: translateY(-1px); }
.btn-gold:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: #d5b95a;
  border: 1.5px solid rgba(213,185,90,.5);
  border-radius: 10px;
  font-weight: 600;
  font-size: .95rem;
  padding: .85rem 1.75rem;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
}
.btn-outline:hover { background: rgba(213,185,90,.1); border-color: #d5b95a; }

/* ─── Trust Badges ───────────────────────────────────────────────────────── */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .5rem 1.1rem;
  border-radius: 9999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
}

/* ─── Launch Date Display ────────────────────────────────────────────────── */
.launch-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  background: rgba(15,29,54,.7);
  border: 1px solid rgba(213,185,90,.25);
  border-radius: 14px;
  padding: 1.25rem 2.5rem;
}

/* ─── Alert messages ──────────────────────────────────────────────────────── */
.alert-success {
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.3);
  border-radius: 10px;
  color: #86efac;
  padding: 1rem 1.25rem;
  font-size: .9rem;
}
.alert-error {
  background: rgba(239,68,68,.1);
  border: 1px solid rgba(239,68,68,.3);
  border-radius: 10px;
  color: #fca5a5;
  padding: 1rem 1.25rem;
  font-size: .9rem;
}

/* ─── Honeypot (hidden) ──────────────────────────────────────────────────── */
.hp-field { position:absolute; left:-9999px; opacity:0; pointer-events:none; tabindex:-1; }

/* ─── Admin ──────────────────────────────────────────────────────────────── */
.admin-table { width:100%; border-collapse:collapse; }
.admin-table th { background:#0a1628; color:#9ca3af; font-size:.75rem; text-transform:uppercase; letter-spacing:.08em; padding:.75rem 1rem; text-align:left; }
.admin-table td { padding:.75rem 1rem; border-bottom:1px solid rgba(255,255,255,.05); vertical-align:top; font-size:.875rem; }
.admin-table tr:hover td { background:rgba(213,185,90,.04); }

.stat-card {
  background:#0f1d36;
  border:1px solid rgba(255,255,255,.07);
  border-radius:12px;
  padding:1.5rem;
}

/* ─── Section divider ────────────────────────────────────────────────────── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(213,185,90,.2), transparent);
  margin: 0;
}
