/* =============================================
   8 DOT MEDIA — clean, bold, light blue accent
   ============================================= */

:root {
  --bg:       #0A0A0A;
  --bg-card:  #111111;
  --border:   #1E1E1E;
  --blue:     #BDE0F0;
  --blue-dim: #5A8FA0;
  --text:     #F0F0F0;
  --text-dim: #444444;
  --font:     'Inter', sans-serif;
  --mono:     'Space Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}

/* --- Nav --- */
nav {
  padding: 1.2rem 2.5rem;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  height: 32px;
  width: auto;
  filter: invert(1);
  opacity: 0.9;
}

/* --- Header --- */
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  text-align: center;
  padding: 4rem 2rem;
  gap: 2rem;
  border-bottom: 1px solid var(--border);
}

.hero-logo {
  width: min(360px, 72vw);
  height: auto;
  filter: invert(1);
  opacity: 0.95;
}

.tagline {
  font-size: 0.9rem;
  color: var(--text-dim);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--mono);
}

/* --- Sections --- */
section {
  max-width: 760px;
  margin: 0 auto;
  padding: 5rem 2rem;
  border-bottom: 1px solid var(--border);
}

section h2 {
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-family: var(--mono);
  margin-bottom: 2rem;
}

/* --- Brand grid --- */
.brand-grid {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.brand-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.4rem 1.8rem;
  background: var(--bg-card);
  text-decoration: none;
  color: var(--text);
  transition: background 0.15s;
  border-bottom: 1px solid var(--border);
}

.brand-card:last-child { border-bottom: none; }
.brand-card:not(.coming):hover { background: #161616; }
.brand-card.coming { opacity: 0.25; cursor: default; }

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-dim);
  flex-shrink: 0;
}

.brand-info { flex: 1; }

.brand-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.15rem;
}

.brand-desc {
  font-size: 0.82rem;
  color: var(--text-dim);
}

.arrow {
  color: var(--text-dim);
  font-size: 1.1rem;
  transition: transform 0.15s, color 0.15s;
}

.brand-card:not(.coming):hover .arrow {
  transform: translateX(4px);
  color: var(--blue);
}

/* --- About --- */
#about p {
  font-size: 1rem;
  color: var(--text-dim);
  font-weight: 300;
  max-width: 480px;
}

/* --- Footer --- */
footer {
  text-align: center;
  padding: 2.5rem;
  color: var(--text-dim);
  font-family: var(--mono);
  font-size: 0.78rem;
}

footer a { color: var(--text-dim); text-decoration: none; transition: color 0.15s; }
footer a:hover { color: var(--blue); }

@media (max-width: 600px) {
  .brand-card { padding: 1.1rem; gap: 1rem; }
  .arrow { display: none; }
}
