/* === ELIGIBLED Marketing — Shared Styles === */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap');

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

:root {
  --bg-primary: #060810;
  --bg-secondary: #0c1019;
  --bg-card: #111622;
  --bg-card-hover: #161d2e;
  --border: #1a2236;
  --border-light: #243050;
  --text-primary: #e8edf5;
  --text-secondary: #9aa3b8;
  --text-muted: #606980;
  --tima-id: #2dd4a8;
  --tima-id-dim: rgba(45, 212, 168, 0.15);
  --tima-shield: #f59e0b;
  --tima-shield-dim: rgba(245, 158, 11, 0.15);
  --tima-creator: #a78bfa;
  --tima-creator-dim: rgba(167, 139, 250, 0.15);
  --danger: #ef4444;
  --success: #22c55e;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 3px; }

a { color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* === NAV === */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  background: rgba(6, 8, 16, 0.85);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
nav.scrolled { border-bottom-color: var(--border); }
nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--tima-id), #1a9e7a);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; color: #fff; letter-spacing: -0.5px;
}
.nav-logo-text { font-weight: 700; font-size: 18px; color: var(--text-primary); letter-spacing: -0.3px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: var(--text-secondary); text-decoration: none; font-size: 14px; font-weight: 500;
  transition: color 0.2s; letter-spacing: 0.2px;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a.active { color: var(--tima-id); }
.nav-cta {
  padding: 8px 20px; border-radius: 8px; font-size: 13px; font-weight: 600;
  background: var(--tima-id); color: #060810; text-decoration: none;
  transition: all 0.2s; letter-spacing: 0.2px;
}
.nav-cta:hover { background: #3ae8ba; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(45, 212, 168, 0.3); }
.nav-mobile { display: none; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-mobile span { display: block; width: 22px; height: 2px; background: var(--text-secondary); margin: 5px 0; transition: 0.3s; }

/* === BUTTONS === */
.btn {
  padding: 14px 32px; border-radius: 10px; font-size: 15px; font-weight: 600;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.25s; cursor: pointer; border: none; letter-spacing: 0.2px;
  font-family: inherit;
}
.btn-primary {
  background: var(--tima-id); color: #060810;
  box-shadow: 0 4px 24px rgba(45, 212, 168, 0.2);
}
.btn-primary:hover { background: #3ae8ba; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(45, 212, 168, 0.35); }
.btn-ghost {
  background: transparent; color: var(--text-primary);
  border: 1px solid var(--border-light);
}
.btn-ghost:hover { border-color: var(--text-secondary); background: rgba(255,255,255,0.03); }
.btn-shield { background: var(--tima-shield); color: #060810; box-shadow: 0 4px 24px rgba(245,158,11,0.2); }
.btn-shield:hover { background: #fbbf24; transform: translateY(-2px); }
.btn-creator { background: var(--tima-creator); color: #060810; box-shadow: 0 4px 24px rgba(167,139,250,0.2); }
.btn-creator:hover { background: #c4b5fd; transform: translateY(-2px); }

/* === SECTIONS === */
section { padding: 120px 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 2px; margin-bottom: 16px;
}
.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800; letter-spacing: -1.5px;
  line-height: 1.1; margin-bottom: 20px;
}
.section-desc {
  font-size: 17px; color: var(--text-secondary);
  max-width: 560px; line-height: 1.7; font-weight: 300;
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  padding: 160px 0 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(ellipse, rgba(45, 212, 168, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800; letter-spacing: -2px; line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero h1 span {
  background: linear-gradient(135deg, var(--tima-id), #80ffe0);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.page-hero p {
  font-size: 18px; color: var(--text-secondary); max-width: 600px;
  line-height: 1.7; font-weight: 300;
}

/* === CARDS === */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px;
  transition: all 0.3s;
}
.card:hover { border-color: var(--border-light); background: var(--bg-card-hover); transform: translateY(-2px); }

/* === FORMS === */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--text-secondary); margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.form-input {
  width: 100%; padding: 12px 16px; border-radius: 10px;
  background: var(--bg-secondary); border: 1px solid var(--border);
  color: var(--text-primary); font-family: inherit; font-size: 14px;
  transition: border-color 0.2s; outline: none;
}
.form-input:focus { border-color: var(--tima-id); }
.form-input::placeholder { color: var(--text-muted); }
textarea.form-input { min-height: 120px; resize: vertical; }
.form-select {
  width: 100%; padding: 12px 16px; border-radius: 10px;
  background: var(--bg-secondary); border: 1px solid var(--border);
  color: var(--text-primary); font-family: inherit; font-size: 14px;
  outline: none; cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23606980' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.form-select:focus { border-color: var(--tima-id); }

/* === FOOTER === */
footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand p { font-size: 14px; color: var(--text-secondary); margin-top: 12px; line-height: 1.6; max-width: 280px; }
.footer-col h5 {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 14px; color: var(--text-secondary);
  text-decoration: none; padding: 4px 0; transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid var(--border);
  font-size: 13px; color: var(--text-muted);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--text-secondary); }

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile { display: block; }
  .nav-links.show {
    display: flex !important; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(6, 8, 16, 0.95); backdrop-filter: blur(20px);
    padding: 24px; gap: 16px; border-bottom: 1px solid var(--border);
  }
  section { padding: 80px 0; }
  .page-hero { padding: 120px 0 60px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
