/* Weird Korea — site styles
   A dark, slightly eerie, neon-accented landing site. Plain CSS, no build. */

:root {
  --bg: #0c0a14;
  --bg-soft: #15121f;
  --surface: #1c1830;
  --ink: #f3f0ff;
  --ink-soft: #b8b2d6;
  --ink-faint: #7a7396;
  --accent: #ff3cac;
  --accent-2: #2afadf;
  --border: #2a2540;
  --radius: 14px;
  --maxw: 1080px;
  --font: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

h1, h2, h3 { line-height: 1.1; margin: 0 0 0.5em; font-weight: 800; letter-spacing: -0.02em; }

/* --- header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(12, 10, 20, 0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.brand-mark {
  color: var(--accent);
  font-size: 1.4rem;
  line-height: 1;
  text-shadow: 0 0 16px rgba(255, 60, 172, 0.7);
}

.brand-name { font-size: 1.1rem; }

.brand-logo { display: block; height: 44px; width: auto; }

.site-nav { display: flex; gap: clamp(0.75rem, 2.5vw, 1.75rem); }
.site-nav a { color: var(--ink-soft); font-size: 0.95rem; transition: color 0.15s; }
.site-nav a:hover { color: var(--ink); }

/* --- hero --- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 12vw, 8rem) clamp(1rem, 4vw, 2.5rem) clamp(3rem, 8vw, 6rem);
}

.hero-inner { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; }

.hero h1 {
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  margin-bottom: 0.4em;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-2);
  margin: 0 0 1.1rem;
}

.lede {
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  color: var(--ink-soft);
  max-width: 38ch;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2rem; }

.hero-glow {
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 720px;
  max-height: 720px;
  background: radial-gradient(circle, rgba(255, 60, 172, 0.35), transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(42, 250, 223, 0.22), transparent 55%);
  filter: blur(20px);
  pointer-events: none;
}

/* --- buttons --- */
.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  transition: transform 0.12s, box-shadow 0.2s, background 0.2s;
  border: 1px solid transparent;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: linear-gradient(120deg, var(--accent), #ff7ac4);
  color: #fff;
  box-shadow: 0 8px 30px rgba(255, 60, 172, 0.35);
}
.btn-primary:hover { box-shadow: 0 10px 36px rgba(255, 60, 172, 0.5); }

.btn-ghost { border-color: var(--border); color: var(--ink); }
.btn-ghost:hover { border-color: var(--accent-2); color: var(--accent-2); }

/* --- sections --- */
.section { padding: clamp(3rem, 8vw, 5.5rem) clamp(1rem, 4vw, 2.5rem); }
.section-inner { max-width: var(--maxw); margin: 0 auto; }
.section h2 { font-size: clamp(1.8rem, 4.5vw, 2.8rem); }
.section-lede { color: var(--ink-soft); font-size: 1.1rem; max-width: 52ch; }

.app { background: var(--bg-soft); border-block: 1px solid var(--border); }

.pill {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  background: rgba(42, 250, 223, 0.12);
  color: var(--accent-2);
  border: 1px solid rgba(42, 250, 223, 0.35);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

/* --- store badges --- */
.store-badges { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.8rem; }
.store-badge {
  display: inline-flex;
  flex-direction: column;
  padding: 0.7rem 1.3rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  opacity: 0.85;
  cursor: default;
}
.store-badge strong { font-size: 1.05rem; }
.store-badge small { color: var(--ink-faint); font-size: 0.8rem; }

/* --- events --- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 360px));
  gap: 1.25rem;
  margin-top: 2rem;
}

.event-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  transition: transform 0.15s, border-color 0.2s;
}
.event-card:hover { transform: translateY(-3px); border-color: var(--accent); }

.event-date {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent-2);
  text-transform: uppercase;
}
.event-title { font-size: 1.25rem; margin: 0.4rem 0 0.3rem; }
.event-meta { color: var(--ink-faint); font-size: 0.9rem; margin: 0 0 0.6rem; }
.event-body { color: var(--ink-soft); font-size: 0.97rem; }
.event-body :first-child { margin-top: 0; }
.event-body :last-child { margin-bottom: 0; }

.events-empty { color: var(--ink-faint); font-style: italic; margin-top: 1.5rem; }

/* --- footer --- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem clamp(1rem, 4vw, 2.5rem);
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink-faint);
  font-size: 0.9rem;
}
.footer-inner .brand-mark { font-size: 1.1rem; }

/* --- motion preference --- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
