/* ── Enakeli — Landing Page Styles ── */

:root {
  --bg: #000000;
  --surface: #052019;
  --primary: #08D690;
  --primary-muted: #21AF80;
  --wall-red: #FF3B3B;
  --text: #FFFFFF;
  --text-muted: #D0D7D9;
  --error: #FF453A;
  --border-alpha: 0.24;
}

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

/* ── Base ── */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Space Mono', monospace;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.75;
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Header ── */
.site-header {
  padding: 1.5rem 0;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header .logo-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
}

.site-header .logo-small {
  width: 28px;
  height: 28px;
}

.site-header .wordmark {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-header nav a {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.site-header nav a:hover {
  color: var(--primary);
  opacity: 1;
}

/* ── Hero ── */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 0 4rem;
}

.hero-inner {
  animation: fadeIn 0.8s ease both;
}

.hero-logo {
  width: 140px;
  height: 140px;
  margin-bottom: 2rem;
  animation: logoGlow 3s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(8, 214, 144, 0.6));
}

.hero-title {
  font-size: 2.4rem;
  letter-spacing: 0.18em;
  margin-bottom: 1.2rem;
  color: var(--wall-red);
}

.hero-tagline {
  font-size: 0.95rem;
  color: var(--primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  min-height: 1.6em;
  margin-bottom: 1.8rem;
}

.hero-tagline .cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--primary);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: blink 0.7s step-end infinite;
}

.hero-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

/* ── Store Badges ── */
.store-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, var(--border-alpha));
  border-radius: 8px;
  color: var(--text);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.store-badge:hover {
  border-color: var(--primary);
  background: rgba(8, 214, 144, 0.06);
  opacity: 1;
}

.store-badge svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ── Footer ── */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, var(--border-alpha));
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-left {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.footer-right {
  display: flex;
  gap: 1.5rem;
}

.footer-right a {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-right a:hover {
  color: var(--primary);
  opacity: 1;
}

/* ── Privacy / Policy Page ── */
.page-content {
  flex: 1;
  padding: 3rem 0 4rem;
  animation: fadeIn 0.6s ease both;
}

.page-content h1 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.page-content .effective-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.page-content h2 {
  font-size: 1rem;
  color: var(--primary);
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

.page-content p,
.page-content ul {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.page-content ul {
  padding-left: 1.2rem;
}

.page-content li {
  margin-bottom: 0.4rem;
}

.page-content strong {
  color: var(--text);
}

.page-content a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Animations ── */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoGlow {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(8, 214, 144, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 45px rgba(8, 214, 144, 0.9));
  }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .hero-logo {
    width: 110px;
    height: 110px;
  }

  .hero-title {
    font-size: 1.8rem;
    letter-spacing: 0.14em;
  }

  .hero-tagline {
    font-size: 0.82rem;
  }

  .hero-desc {
    font-size: 0.8rem;
  }

  .site-footer .container {
    flex-direction: column;
    text-align: center;
  }

  .page-content h1 {
    font-size: 1.3rem;
  }
}
