:root {
  --bg-primary: #0a0a0b;
  --bg-secondary: #111113;
  --bg-card: #161618;
  --bg-card-hover: #1c1c1f;
  --fg-primary: #f0ece4;
  --fg-secondary: #9a9590;
  --fg-muted: #5c5955;
  --accent: #e8823a;
  --accent-soft: rgba(232, 130, 58, 0.12);
  --accent-glow: rgba(232, 130, 58, 0.25);
  --border: rgba(255, 255, 255, 0.06);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg-primary);
  color: var(--fg-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === HERO === */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  background: 
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(232, 130, 58, 0.06) 0%, transparent 70%),
    var(--bg-primary);
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 40px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  color: var(--fg-primary);
}

.hero h1 .accent {
  color: var(--accent);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-secondary);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  max-width: 180px;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* === PROBLEM === */
.problem {
  padding: 100px 24px;
  background: var(--bg-secondary);
}

.problem-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.problem-tag,
.roles-tag,
.verticals-tag {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}

.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 56px;
  max-width: 700px;
}

.strikethrough {
  text-decoration: line-through;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
  transition: background 0.2s;
}

.problem-card:hover {
  background: var(--bg-card-hover);
}

.problem-icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
  opacity: 0.8;
}

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.problem-card p {
  font-size: 0.95rem;
  color: var(--fg-secondary);
  line-height: 1.65;
}

/* === ROLES === */
.roles {
  padding: 100px 24px;
  background: var(--bg-primary);
}

.roles-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.roles h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}

.roles-sub {
  font-size: 1.05rem;
  color: var(--fg-secondary);
  margin-bottom: 52px;
  max-width: 560px;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.role-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: all 0.2s;
}

.role-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(232, 130, 58, 0.15);
}

.role-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.role-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
}

.role-status {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 10px;
  border-radius: 100px;
}

.role-card p {
  font-size: 0.92rem;
  color: var(--fg-secondary);
  line-height: 1.6;
}

/* === VERTICALS === */
.verticals {
  padding: 100px 24px;
  background: var(--bg-secondary);
}

.verticals-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.verticals h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 48px;
}

.verticals-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vertical-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.2s;
}

.vertical-item:first-child {
  border-top: 1px solid var(--border);
}

.vertical-item:hover {
  padding-left: 12px;
}

.vertical-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  white-space: nowrap;
}

.vertical-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  text-align: right;
  max-width: 400px;
}

/* === CLOSING === */
.closing {
  padding: 120px 24px;
  background: 
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(232, 130, 58, 0.07) 0%, transparent 70%),
    var(--bg-primary);
  text-align: center;
}

.closing-inner {
  max-width: 750px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 24px;
}

.closing h2 .accent {
  color: var(--accent);
}

.closing-sub {
  font-size: 1.05rem;
  color: var(--fg-secondary);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
}

/* === FOOTER === */
.site-footer {
  padding: 40px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg-primary);
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--fg-primary);
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* Landing page hero needs top offset for fixed nav */
.hero { padding-top: 160px; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero { padding: 100px 20px 60px; min-height: auto; }
  .hero-stat-row { flex-direction: column; gap: 24px; }
  .stat-divider { width: 40px; height: 1px; }
  .problem-grid { grid-template-columns: 1fr; }
  .roles-grid { grid-template-columns: 1fr; }
  .vertical-item { flex-direction: column; align-items: flex-start; gap: 6px; }
  .vertical-desc { text-align: left; max-width: none; }
  .problem, .roles, .verticals { padding: 64px 20px; }
  .closing { padding: 80px 20px; }
}