:root {
  --bg-dark: #050308;
  --bg-darker: #020107;
  --gold: #f6c453;
  --gold-soft: #f9e0a1;
  --text-main: #fdfdfd;
  --text-muted: #c8c8c8;
  --accent: #ffffff33;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ===============================
   BASE / BODY
================================= */
body {
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1b122a 0, var(--bg-dark) 40%, var(--bg-darker) 100%);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

/* ===============================
   GLOW BACKGROUND
================================= */
.glow-orbit {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.glow-orbit::before,
.glow-orbit::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 196, 83, 0.12), transparent 60%);
  filter: blur(2px);
}

.glow-orbit::before {
  top: -200px;
  left: -150px;
}

.glow-orbit::after {
  bottom: -200px;
  right: -150px;
}

/* ===============================
   MAIN CARD
================================= */
.card {
  max-width: 700px;
  width: 100%;
  border-radius: 1.75rem;
  padding: 2.5rem 2.25rem 2rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.65),
    0 0 0 1px rgba(255,255,255,0.03);
  backdrop-filter: blur(16px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

/* ===============================
   LOGO AREA
================================= */
.logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-inner {
  position: relative;
  padding: 1.2rem;
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at top, rgba(246, 196, 83, 0.12), transparent 65%),
    linear-gradient(145deg, rgba(0, 0, 0, 0.9), rgba(10, 10, 16, 0.95));
  border: 1px solid rgba(246, 196, 83, 0.45);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 18px 40px rgba(0, 0, 0, 0.8);
}

.logo-inner::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 1.2rem;
  border: 1px dashed rgba(246, 196, 83, 0.28);
  pointer-events: none;
}

.logo-inner img {
  display: block;
  max-width: 260px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ===============================
   TEXT CONTENT
================================= */
.content {
  text-align: left;
}

.eyebrow {
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--gold-soft);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}

.eyebrow .bar {
  width: 48px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(246, 196, 83, 0.9),
    transparent
  );
}

h1 {
  font-size: clamp(1.9rem, 2.3vw, 2.3rem);
  line-height: 1.12;
  margin-bottom: 0.6rem;
}

.highlight {
  background: linear-gradient(120deg, var(--gold), var(--gold-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tagline {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 1.4rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 0.78rem;
  color: var(--gold-soft);
  margin-bottom: 1.1rem;
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(246, 196, 83, 0.9);
}

.details {
  font-size: 0.82rem;
  color: var(--text-muted);
  opacity: 0.85;
}

.details strong {
  color: var(--gold-soft);
  font-weight: 600;
}

.divider {
  height: 1px;
  margin: 1.3rem 0 1rem;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );
  opacity: 0.4;
}

/* ===============================
   FOOTER
================================= */
.footer-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  opacity: 0.9;
}

.socials {
  display: inline-flex;
  gap: 0.8rem;
  font-size: 0.8rem;
}

.socials a {
  color: var(--gold-soft);
  text-decoration: none;
  padding-bottom: 1px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}

.socials a:hover {
  border-color: var(--gold-soft);
  transform: translateY(-1px);
}

/* ===============================
   ✅ MOBILE PORTRAIT FIX
================================= */
@media (max-width: 768px) {
  body {
    padding: 1rem;
  }

  .card {
    grid-template-columns: 1fr;
    padding: 1.75rem 1.25rem 1.5rem;
  }

  .logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 1.25rem;
  }

  .logo-inner {
    width: 100%;
    max-width: 240px;
    padding: 0.75rem;
  }

  .logo-inner img {
    max-width: 100%;
  }

  .content {
    text-align: center;
  }

  .footer-note {
    flex-direction: column;
  }
}
