/* ══════════════════════════════════════
   MOG MATES — styles.css
   ══════════════════════════════════════ */

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

:root {
  --purple:      #8A2BE2;
  --purple-light:#9B6FF0;
  --purple-glow: rgba(138,43,226,.25);
  --bg:          #0A0A0F;
  --surface:     #111118;
  --border:      rgba(255,255,255,.08);
  --text:        #F0EEFF;
  --muted:       #6B6680;
  --font-display:'Bricolage Grotesque', sans-serif;
  --font-body:   'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* subtle radial glow at top */
  background-image: radial-gradient(ellipse 70% 40% at 50% 0%, rgba(138,43,226,.18) 0%, transparent 70%);
}

/* ═══════════════════════════════
   SHARED HEADER
═══════════════════════════════ */
.site-header {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 48px 24px 0;
}

.site-header-logo-link {
  display: block;
  transition: transform .18s ease;
}
.site-header-logo-link:hover { transform: translateY(-2px); }

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
.hero {
  flex: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 64px 24px 40px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 560px;
  width: 100%;
}

/* Logo */
.logo-wrap {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  box-shadow: 0 0 40px var(--purple-glow);
  overflow: hidden;
  animation: fadein .6s ease both;
}

.logo-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

/* Wordmark */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 4rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1;
  color: var(--text);
  animation: fadein .6s .1s ease both;
}

.hero-title .accent { color: var(--purple-light); }

/* Tagline */
.tagline {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--purple-light);
  animation: fadein .6s .2s ease both;
}

/* Sub-copy */
.sub {
  margin-top: 16px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
  animation: fadein .6s .3s ease both;
}


/* ═══════════════════════════════
   COMING SOON BADGE
═══════════════════════════════ */
.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  padding: 14px 28px;
  background: var(--surface);
  border: 1px solid rgba(138,43,226,.4);
  border-radius: 100px;
  animation: fadein .6s .4s ease both;
}

.coming-soon-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple-light);
  box-shadow: 0 0 8px var(--purple-light);
  animation: pulse 2s ease-in-out infinite;
}

.coming-soon-text {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple-light);
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--purple-light); }
  50%       { opacity: .5; box-shadow: 0 0 4px var(--purple-light); }
}

/* ═══════════════════════════════
   FEATURES
═══════════════════════════════ */
.features-section {
  width: 100%;
  max-width: 680px;
  padding: 8px 20px 16px;
  animation: fadein .5s .5s ease both;
}

.features-heading {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--purple-light);
  text-align: center;
  margin-bottom: 16px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--surface);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background .2s;
}

.feature-card:first-of-type {
  border-top: 1px solid var(--border);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  box-shadow: 0 4px 32px rgba(0,0,0,.35);
}

.feature-card:last-of-type {
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.feature-icon-wrap {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(123,63,228,.25), rgba(123,63,228,.08));
  border: 1px solid rgba(123,63,228,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-top: 2px;
}

.feature-text { flex: 1; min-width: 0; }

.feature-title {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .3px;
  color: var(--purple-light);
  margin-bottom: 5px;
  text-transform: uppercase;
}

.feature-desc {
  font-size: .87rem;
  line-height: 1.6;
  color: var(--muted);
}

@media (min-width: 640px) {
  .feature-card { padding: 24px 28px; gap: 22px; }
  .feature-icon-wrap { width: 56px; height: 56px; font-size: 1.6rem; }
  .feature-title { font-size: .95rem; }
  .feature-desc { font-size: .92rem; }
}

/* ═══════════════════════════════
   SOCIAL
═══════════════════════════════ */
.social-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 24px 48px;
  animation: fadein .6s .5s ease both;
}

.social-label {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  transition: border-color .2s, background .2s, color .2s;
}
.social-pill:hover {
  border-color: var(--purple-light);
  background: rgba(138,43,226,.08);
  color: var(--purple-light);
}

.social-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
footer {
  padding: 20px 24px 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

footer a {
  color: var(--muted);
  text-decoration: none;
  font-size: .8rem;
  transition: color .2s;
}
footer a:hover { color: var(--purple-light); }

.dot, .copy {
  color: var(--muted);
  font-size: .8rem;
}

.copy-link {
  color: var(--muted);
  font-size: .8rem;
  text-decoration: none;
  transition: color .2s;
}
.copy-link:hover { color: var(--purple-light); }

/* ═══════════════════════════════
   ANIMATION
═══════════════════════════════ */
@keyframes fadein {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════
   DESKTOP (≥ 640px)
═══════════════════════════════ */
/* (store badges and QR section removed — coming soon badge shown universally) */

/* ═══════════════════════════════
   INNER PAGES (privacy / terms)
═══════════════════════════════ */
.page {
  max-width: 700px;
  width: 100%;
  padding: 60px 24px 80px;
  line-height: 1.8;
}
.page h1 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.page .updated {
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 36px;
}
.page h2 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--purple-light);
  margin: 32px 0 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.page p { color: #a09ab8; margin-bottom: 12px; }
.back {
  display: inline-block;
  margin-top: 40px;
  color: var(--purple-light);
  text-decoration: none;
  font-weight: 600;
}
.back:hover { text-decoration: underline; }
