/* ---------- Design tokens ---------- */
:root {
  --bg: #0a0710;
  --bg-alt: #110b1c;
  --surface: #17101f;
  --surface-border: #2a2035;
  --white: #f6f4fa;
  --muted: #a89bbd;
  --gold: #e8c14f;
  --gold-bright: #f7d774;
  --purple: #9b4de0;
  --purple-bright: #b876f0;
  --gradient: linear-gradient(135deg, var(--gold) 0%, var(--purple) 100%);
  --max-width: 1180px;
  --radius: 14px;
  --font: 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.section-inner, .header-inner, .footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient);
  color: #14091f;
  box-shadow: 0 0 0 rgba(155, 77, 224, 0);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(155, 77, 224, 0.35);
}
.btn-outline {
  border: 1px solid var(--surface-border);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 7, 16, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--surface-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--white);
  flex-shrink: 0;
}
.logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--purple-bright);
}
.name-sol { color: #FFC324; }
.name-teki { color: var(--white); }

.main-nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}
.main-nav a:hover { color: var(--gold); }

.header-cta { flex-shrink: 0; padding: 10px 22px; font-size: 0.85rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 64px 24px 0;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  height: 100%;
  background-size: cover;
  background-position: 70% 45%;
  background-repeat: no-repeat;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(10, 7, 16, 0.75) 45%, var(--bg) 100%);
}
.hero-inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }

.signal-bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  border: 1px solid var(--surface-border);
  border-radius: 999px;
  padding: 8px 18px;
  margin-bottom: 32px;
}
.signal-bar .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}
.signal-bar .clock { color: var(--white); font-weight: 600; }
.signal-bar .location::before { content: '·'; margin-right: 10px; }

.hero-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}
.hero-avatar {
  width: clamp(56px, 8vw, 96px);
  height: clamp(56px, 8vw, 96px);
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(155, 77, 224, 0.25);
  flex-shrink: 0;
}
.hero-title {
  font-size: clamp(3rem, 10vw, 6.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}
.hero-tagline {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 48px;
  font-size: 1.05rem;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-copy .lead {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 16px;
}
.about-copy p { color: var(--muted); margin-bottom: 12px; }

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.stat {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-value { font-size: 1.4rem; font-weight: 800; color: var(--gold); }
.stat-label { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; }

/* ---------- Links grid ---------- */
.links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.link-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.link-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
  background: linear-gradient(160deg, var(--surface), rgba(155, 77, 224, 0.12));
}
.link-tag { font-size: 0.72rem; letter-spacing: 0.1em; color: var(--purple-bright); font-weight: 700; }
.link-name { font-size: 1.3rem; font-weight: 800; }
.link-handle { color: var(--muted); font-size: 0.9rem; }
.link-cta { margin-top: 8px; font-size: 0.85rem; font-weight: 700; color: var(--gold); }

/* ---------- Showcase ---------- */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.showcase-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.showcase-card p { color: var(--muted); font-size: 0.9rem; }
.showcase-embed {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 16 / 9;
}
.showcase-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.embed-placeholder {
  width: 100%; height: 100%;
  background: var(--surface);
  border: 1px dashed var(--surface-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 16px;
}
.play-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  color: #14091f;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}

/* ---------- Shop ---------- */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.shop-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--gold);
  background: var(--surface);
  padding: 16px;
  gap: 12px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.shop-card:hover { border-color: var(--purple-bright); transform: translateY(-4px); }
.shop-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: calc(var(--radius) - 6px);
  overflow: hidden;
}
.shop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shop-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 16px;
}
.shop-tag { font-size: 0.95rem; font-weight: 700; color: var(--purple-bright); }
.shop-name { font-weight: 800; font-size: 1.15rem; color: var(--white); }

.shop-grid-extra {
  display: none;
  margin-top: 24px;
}
.shop-grid-extra.open { display: grid; }

.shop-see-more {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 28px auto 0;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid var(--surface-border);
  background: transparent;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.shop-see-more:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Contact ---------- */
.contact-inner { text-align: center; }
.contact-inner .section-sub { margin: 0 auto 32px; }
.contact-email {
  display: inline-block;
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  border-bottom: 2px solid var(--surface-border);
  padding-bottom: 8px;
  transition: border-color 0.2s ease;
}
.contact-email:hover { border-color: var(--gold); }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--surface-border);
  padding: 40px 0;
  background: var(--bg-alt);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: 0.05em; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 0.85rem; color: var(--muted); }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.8rem; color: var(--muted); width: 100%; text-align: center; order: 3; }

@media (min-width: 640px) {
  .footer-copy { width: auto; text-align: right; order: 0; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .links-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }

  .main-nav.open {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--surface-border);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
  }

  .links-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
}
