header {
  padding: 180px 8% 100px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

h1 {
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-gradient {
  background: linear-gradient(to right, #f8fafc, #94a3b8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subheading {
  font-size: clamp(18px, 3vw, 22px);
  color: var(--text-dim);
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding: 80px 8%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 64px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
}

.card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--primary);
}

.card p {
  color: var(--text-dim);
  font-size: 15px;
}

.comparison-container {
  margin-top: 48px;
  overflow-x: auto;
}

.comparison-grid {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 32px;
  min-width: 800px;
}

.comp-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  padding: 24px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.comp-header {
  background: rgba(255, 255, 255, 0.03);
  font-weight: 700;
  color: var(--text);
}

.comp-label {
  font-weight: 600;
  color: var(--text-dim);
}

.comp-value {
  text-align: center;
  font-weight: 500;
  font-size: 14px;
}

.highlight {
  color: var(--success);
  font-weight: 700;
}

.negative {
  color: var(--error);
}

footer {
  padding: 64px 8%;
  text-align: center;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 14px;
}

@media (max-width: 768px) {
  header {
    padding-top: 140px;
  }

  h1 {
    font-size: 48px;
  }
}

/* New Styles for Path Selections */
.hero-paths {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 60px;
}

.hero-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  width: 320px;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.hero-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.5);
}

.retro-path:hover {
  background: rgba(255, 255, 255, 0.05);
}

.ai-path:hover {
  background: rgba(99, 102, 241, 0.1);
}

.path-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.hero-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.hero-card p {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 24px;
  line-height: 1.5;
}

.skill-highlight {
  background: radial-gradient(circle at center, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
}

.skill-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
}

.terminal-window {
  background: #1e293b;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.terminal-header {
  background: #334155;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.terminal-title {
  color: #94a3b8;
  font-size: 12px;
  margin-left: 8px;
  font-family: monospace;
}

.terminal-body {
  padding: 24px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 14px;
  line-height: 1.6;
}

.terminal-body code {
  color: #e2e8f0;
}

.comment { color: #64748b; }
.success-msg { color: #22c55e; }
.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-hint {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.7;
  font-weight: 700;
  margin-top: -2px;
}

.skill-btn {
  background: var(--glass);
  border: 1px solid var(--border);
  box-shadow: none;
}

.skill-btn:hover {
  background: var(--border);
  border-color: var(--primary);
}

@media (max-width: 600px) {
  .nav-hint {
    display: none;
  }
}
