:root {
  --bg: #000000;
  --bg-elev: #0f0f0f;
  --bg-card: #141414;
  --border: #262626;
  --text: #ffffff;
  --text-dim: #b5b5b5;
  --text-muted: #7a7a7a;
  --accent: #ffffff;
  --check: #ffffff;
  --radius: 14px;
  --radius-lg: 28px;
  --maxw: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.brand img { width: 40px; height: 40px; border-radius: 8px; background: #fff; }
.brand-name { font-size: 1rem; }
.brand-name span { display: block; font-size: 0.7rem; font-weight: 500; color: var(--text-dim); letter-spacing: 0.18em; text-transform: uppercase; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: var(--text-dim);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color .15s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform .15s ease, background .15s ease, color .15s ease;
  cursor: pointer;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
}
.btn-primary {
  background: var(--accent);
  color: #0a0a0a;
  border-color: var(--accent);
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-ghost:hover { background: var(--bg-elev); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 80px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.kicker .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--check);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
}
h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin-bottom: 20px;
}
h1 .accent {
  background: linear-gradient(180deg, #ffffff 0%, #b5b5b5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
h1 .huge { display: block; font-size: 1.15em; }
.lede {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-art {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(160deg, #1a1a1a, #0a0a0a);
  aspect-ratio: 4 / 5;
}
.hero-art img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  top: 18px; right: 18px;
  padding: 8px 14px;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* ---------- Sections ---------- */
section { padding: 80px 0; }
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.section-sub {
  color: var(--text-dim);
  font-size: 1.05rem;
  max-width: 620px;
  margin-bottom: 48px;
}

/* ---------- Features ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .2s ease, transform .2s ease;
}
.feature:hover { border-color: #3a3a3a; transform: translateY(-2px); }
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  margin-bottom: 18px;
  color: var(--text);
}
.feature h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.feature p { color: var(--text-dim); font-size: 0.95rem; }

/* ---------- How it works ---------- */
.how {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 12px;
}
.step {
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}
.step-num {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.step h4 { font-size: 1.05rem; margin-bottom: 6px; }
.step p { color: var(--text-dim); font-size: 0.9rem; }

/* ---------- CTA ---------- */
.cta-banner {
  margin: 0 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  border: 1px solid var(--border);
  padding: 56px 40px;
  text-align: center;
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
}
.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.cta-banner p { color: var(--text-dim); margin-bottom: 28px; }
.contact-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 32px;
  margin-top: 60px;
}
.foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.foot-links { display: flex; gap: 22px; }
.foot-links a:hover { color: var(--text); }

/* ---------- Jobs page ---------- */
.jobs-hero {
  padding: 96px 0 40px;
  text-align: center;
}
.jobs-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
.jobs-hero .lede { margin: 20px auto 0; }

.empty-state {
  margin: 60px auto 0;
  max-width: 640px;
  padding: 56px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
}
.empty-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  margin: 0 auto 20px;
  color: var(--text-dim);
}
.empty-state h2 {
  font-size: 1.5rem;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.empty-state p { color: var(--text-dim); margin-bottom: 28px; }

.interest-card {
  margin: 60px auto 0;
  max-width: 640px;
  padding: 40px;
  background: linear-gradient(135deg, #161616, #0c0c0c);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}
.interest-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.interest-card p { color: var(--text-dim); margin-bottom: 24px; font-size: 0.95rem; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero { padding: 64px 0 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .features { grid-template-columns: 1fr; }
  .how { grid-template-columns: repeat(2, 1fr); }
  section { padding: 60px 0; }
  .nav-links a:not(.btn) { display: none; }
}
@media (max-width: 540px) {
  .how { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 24px; }
  .empty-state, .interest-card { padding: 36px 24px; }
}
