/* shared.css — Interactive Studios Design System */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800;900&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&family=DM+Mono:wght@300;400;500&display=swap');

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

:root {
  --bg:        #111111;
  --bg2:       #181818;
  --bg3:       #1e1e1e;
  --surface:   #222222;
  --surface2:  #2a2a2a;
  --surface3:  #333333;
  --border:    rgba(255,255,255,0.06);
  --border2:   rgba(255,255,255,0.11);
  --border3:   rgba(255,255,255,0.18);
  --white:     #ffffff;
  --offwhite:  #f0f0f0;
  --muted:     rgba(255,255,255,0.5);
  --dim:       rgba(255,255,255,0.28);
  --faint:     rgba(255,255,255,0.10);

  --blue:      #3b7cf5;
  --red:       #e84040;
  --green:     #3ec97a;
  --purple:    #9c6cf5;

  --radius:    10px;
  --radius-lg: 16px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--offwhite);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 62px;
  background: rgba(17,17,17,0.90);
  backdrop-filter: blur(24px) saturate(1.3);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-emblem {
  width: 34px; height: 34px;
  background: var(--white);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.nav-emblem span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 15px;
  color: #111;
  letter-spacing: 0.01em;
  line-height: 1;
}

.nav-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 7px;
  transition: color 0.18s, background 0.18s;
}

.nav-links a:hover { color: var(--white); background: var(--surface); }
.nav-links a.active { color: var(--white); background: var(--surface); }

.nav-cta {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #111 !important;
  background: var(--white) !important;
  padding: 7px 18px !important;
  border-radius: 7px !important;
  letter-spacing: 0.03em !important;
  transition: opacity 0.18s !important;
}
.nav-cta:hover { opacity: 0.86 !important; background: var(--white) !important; }

/* ─── ANNOUNCEMENT BAND ─── */
.announce {
  display: none;
  position: fixed;
  top: 62px; left: 0; right: 0;
  z-index: 499;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 8px 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  overflow: hidden;
}

.announce-pill {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #111;
  background: var(--white);
  padding: 3px 9px;
  border-radius: 4px;
  flex-shrink: 0;
}

.announce-track { overflow: hidden; flex: 1; }

.announce-text {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.13em;
  color: var(--muted);
  white-space: nowrap;
  display: inline-block;
  animation: marquee 28s linear infinite;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── PAGE OFFSET ─── */
.page-top { padding-top: 62px; }

/* ─── FOOTER ─── */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: var(--bg2);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-sub {
  font-size: 12px;
  color: var(--dim);
  margin-top: 5px;
  font-weight: 300;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.18s;
}
.footer-links a:hover { color: var(--white); }


/* ─── FOOTER CREDIT ─── */
.footer-credit {
  border-top: 1px solid var(--border);
  padding: 14px 0;
}

.footer-credit-inner {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--dim);
  line-height: 1.7;
}

.footer-credit-inner a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border2);
  transition: color 0.18s, border-color 0.18s;
}
.footer-credit-inner a:hover {
  color: var(--white);
  border-bottom-color: var(--border3);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.footer-copy {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--dim);
  line-height: 1.8;
}
.footer-copy strong { color: var(--muted); font-weight: 500; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: var(--radius);
  padding: 13px 28px;
  cursor: pointer;
  border: none;
  transition: all 0.18s;
  line-height: 1;
}

.btn-white { background: var(--white); color: #111; }
.btn-white:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,255,255,0.12); }

.btn-outline { background: transparent; color: var(--offwhite); border: 1px solid var(--border3); }
.btn-outline:hover { border-color: rgba(255,255,255,0.35); background: var(--surface); }

.btn-surface { background: var(--surface2); color: var(--offwhite); border: 1px solid var(--border2); }
.btn-surface:hover { background: var(--surface3); transform: translateY(-1px); }

/* ─── SECTION LABEL ─── */
.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 18px;
}
.label::before { content: ''; display: block; width: 16px; height: 1px; background: var(--dim); }

/* ─── STATUS DOTS ─── */
.status-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.dot-live  { background: #4ade80; box-shadow: 0 0 7px rgba(74,222,128,0.55); animation: blink 2.2s ease-in-out infinite; }
.dot-soon  { background: #666; }
.dot-dev   { background: #60a5fa; opacity: 0.75; }

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

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

/* ─── RESPONSIVE NAV ─── */
@media (max-width: 820px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .announce { padding: 8px 20px; }
}
