:root {
  --bg: #0a0a0c;
  --bg-elevated: #111115;
  --surface: #18181c;
  --border: #2a2a30;
  --primary: #FF6B2C;
  --primary-glow: rgba(255, 107, 44, 0.15);
  --accent: #FFD166;
  --text-primary: #FAFAFA;
  --text-secondary: #A0A0B0;
  --text-muted: #606068;
  --success: #34D399;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--border) var(--bg);
}

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

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

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 60px;
  position: relative;
  background: radial-gradient(ellipse 80% 60% at 60% 30%, rgba(255,107,44,0.06) 0%, transparent 70%), var(--bg);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,44,0.1);
  border: 1px solid rgba(255,107,44,0.25);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 24px;
  width: fit-content;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-left h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.hero-left h1 .accent {
  color: var(--primary);
  position: relative;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 0 30px rgba(255,107,44,0.3);
}

.btn-primary:hover {
  background: #FF8147;
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(255,107,44,0.4);
}

.btn-large {
  padding: 18px 40px;
  font-size: 17px;
}

.cta-note {
  font-size: 13px;
  color: var(--text-muted);
}

/* DASHBOARD MOCK */
.hero-right {
  position: relative;
}

.dashboard-mock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 60px rgba(255,107,44,0.05);
  transform: perspective(1200px) rotateY(-5deg) rotateX(3deg);
  transition: transform 0.4s ease;
}

.dashboard-mock:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
}

.mock-header {
  background: var(--bg-elevated);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}

.mock-dots {
  display: flex;
  gap: 6px;
}

.mock-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}

.mock-dots span:first-child { background: #FF5F57; }
.mock-dots span:nth-child(2) { background: #FFBD2E; }
.mock-dots span:last-child { background: #28CA41; }

.mock-title {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.mock-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mock-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.mock-resume-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
}

.resume-header-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.resume-avatar {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: white;
  flex-shrink: 0;
}

.resume-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
}

.resume-role {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.ai-badge {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--primary-glow);
  border: 1px solid rgba(255,107,44,0.3);
  border-radius: 100px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
}

.resume-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.skill-tag {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 11px;
  color: var(--text-secondary);
}

.resume-score {
  display: flex;
  align-items: center;
  gap: 10px;
}

.score-label {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
}

.score-bar {
  flex: 1;
  height: 5px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.score-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), #FF9A5C);
  border-radius: 3px;
  transition: width 1s ease;
}

.score-pct {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  min-width: 36px;
  text-align: right;
}

.mock-interviews {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.interview-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.company-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.company-dot.tcs { background: #00A4E4; }
.company-dot.infosys { background: #007CC3; }
.company-dot.accenture { background: #A100FF; }

.company-name {
  font-size: 13px;
  font-weight: 600;
  flex: 1;
}

.interview-date {
  font-size: 11px;
  color: var(--text-muted);
}

.interview-type {
  font-size: 10px;
  background: var(--primary-glow);
  color: var(--primary);
  border-radius: 4px;
  padding: 2px 8px;
  font-weight: 600;
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 12px;
  animation: bounce 2.5s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* FEATURES */
.features {
  padding: 100px 60px;
  background: var(--bg-elevated);
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.features-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 60px;
  color: var(--text-primary);
}

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

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.25s ease;
}

.feature-card:hover {
  border-color: rgba(255,107,44,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.feature-card.highlight {
  border-color: rgba(255,107,44,0.5);
  background: linear-gradient(135deg, var(--surface), rgba(255,107,44,0.04));
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-glow);
  border: 1px solid rgba(255,107,44,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}

.feature-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-glow);
  border: 1px solid rgba(255,107,44,0.2);
  border-radius: 100px;
  padding: 4px 12px;
  display: inline-block;
}

/* STATS */
.stats {
  padding: 80px 60px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* CLOSING */
.closing {
  padding: 120px 60px;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(255,107,44,0.08) 0%, transparent 70%), var(--bg);
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.closing p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
}

.closing-cta {
  display: flex;
  justify-content: center;
}

/* FOOTER */
footer {
  padding: 40px 60px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--text-primary);
}

.brand-tagline {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  font-size: 12px;
  color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero { padding: 60px 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .features { padding: 60px 40px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { flex-wrap: wrap; }
  .stat-item { flex: 1 1 40%; }
  .stat-divider { display: none; }
  .closing { padding: 80px 40px; }
}

@media (max-width: 640px) {
  .hero { padding: 40px 24px; }
  .features { padding: 40px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .stats { padding: 40px 24px; }
  .stat-number { font-size: 36px; }
  .closing { padding: 60px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  footer { padding: 40px 24px; }
}