/* --- DESIGN SYSTEM --- */
:root {
  --bg-color: #F9F9FA;
  --text-main: #111111;
  --text-muted: #666666;
  --accent: #CCFF00; /* Acid Green */
  --border: #E5E5E5;

  --font-head: 'Space Mono', monospace;
  --font-body: 'Inter', sans-serif;
}

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

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

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* --- UTILITIES --- */
.container {
  max-width: 1000px;
  margin: 0 auto;
  background: #ffffff;
  min-height: 100vh;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  position: relative;
}

.section-padding { padding: 80px 40px; }
.grid-line-top { border-top: 1px solid var(--border); }
.grid-line-bottom { border-bottom: 1px solid var(--border); }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; letter-spacing: -1px; }

.label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: block;
}

/* --- HEADER --- */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 40px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  z-index: 100;
}

.logo { font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; }
.logo span { color: var(--accent); }

.header-right { display: flex; align-items: center; gap: 20px; }

.capacity-badge {
  font-family: var(--font-head);
  font-size: 0.7rem;
  background: #f0f0f0;
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid #ddd;
}
.capacity-badge span { color: #e00; font-weight: bold; }

.nav-links { font-size: 0.85rem; font-weight: 600; }
.nav-links a:hover { color: #000; text-decoration: underline; }

/* --- HERO --- */
.hero { padding: 120px 40px 80px 40px; }
.hero h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 30px; }
.hero p { font-size: 1.1rem; color: var(--text-muted); max-width: 480px; margin-bottom: 40px; }

.hero-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 18px 35px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  border: 1px solid #000;
}
.hero-btn:hover { background: var(--accent); color: #000; border-color: #000; }

.platforms {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0.4;
  filter: grayscale(100%);
}
.platforms span { font-family: var(--font-head); font-size: 0.7rem; margin-right: 10px; }
.platforms svg { height: 24px; width: auto; }

/* --- TICKER --- */
.niche-ticker {
  background: #000;
  color: #fff;
  padding: 15px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-content {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  text-transform: uppercase;
  animation: marquee 20s linear infinite;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- WHY US --- */
.why-us { display: grid; grid-template-columns: repeat(3, 1fr); }
.feature-box { padding: 50px 40px; border-right: 1px solid var(--border); }
.feature-box:last-child { border-right: none; }
.feature-box h3 { font-size: 1.2rem; margin-bottom: 15px; }
.feature-box p { font-size: 0.95rem; color: var(--text-muted); }

/* --- ARCHETYPES --- */
.archetypes {
  background: #111;
  color: #fff;
}
.archetype-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.arche-card {
  border: 1px solid #333;
  padding: 30px;
  background: #1a1a1a;
  transition: 0.3s;
}
.arche-card:hover { border-color: var(--accent); }
.arche-icon {
  width: 40px; height: 40px; background: #333;
  margin-bottom: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); color: var(--accent);
}
.stat-line {
  display: flex; justify-content: space-between;
  font-family: var(--font-head); font-size: 0.75rem;
  border-bottom: 1px solid #333; padding: 10px 0; color: #888;
}
.stat-line span:last-child { color: #fff; }

/* --- PROCESS --- */
.process { background: #fff; color: var(--text-main); border-top: 1px solid var(--border); }
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 40px; }
.step-item { border-left: 2px solid #000; padding-left: 25px; }
.step-item h4 { font-size: 1.1rem; margin-bottom: 10px; color: #000; }
.step-item p { color: var(--text-muted); font-size: 0.95rem; }

/* --- FAQ --- */
.faq-section { background: #F9F9FA; border-top: 1px solid var(--border); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.faq-item h4 { margin-bottom: 10px; font-size: 1rem; }
.faq-item p { color: var(--text-muted); font-size: 0.95rem; }

/* --- CONTACT --- */
.split-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
}

.contact-card {
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-brand { background: #fff; border-right: 1px solid var(--border); }
.card-influencer { background: #FAFAFA; }

.contact-card h2 { font-size: 2rem; margin-bottom: 15px; }
.contact-card p { color: var(--text-muted); margin-bottom: 30px; max-width: 350px; }

.action-btn {
  display: inline-block;
  padding: 18px 30px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid #000;
  text-align: center;
  width: fit-content;
}

.btn-brand { background: var(--accent); color: #000; }
.btn-brand:hover { box-shadow: 4px 4px 0px #000; transform: translate(-2px, -2px); }

.btn-creator { background: #fff; color: #000; }
.btn-creator:hover { background: #000; color: #fff; }

/* --- FOOTER --- */
footer {
  padding: 40px;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: #fff;
  border-bottom: 5px solid var(--accent);
}

.trend-link {
  border-bottom: 1px solid #ccc;
  margin-right: 20px;
}
.trend-link:hover { border-bottom: 1px solid #000; color: #000; }

/* --- MOBILE --- */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; }
  .why-us, .process-grid, .faq-grid, .split-contact, .archetype-grid { grid-template-columns: 1fr; }
  .feature-box, .card-brand { border-right: none; border-bottom: 1px solid var(--border); }
  .container { border: none; }
  .platforms { flex-wrap: wrap; }
  .ticker-content { animation: none; white-space: normal; text-align: center; font-size: 0.7rem; }
  header { flex-direction: column; gap: 15px; align-items: flex-start; }
}
