/* ============================================
   BLEEZY CAREERS — Custom Theme
   Palette: Terracotta + Gold + Deep Forest
   ============================================ */

:root {
  --bg: #FDFAF6;
  --surface: #F4EFE8;
  --text: #1C1C1C;
  --text-muted: #6B6358;
  --accent: #C9501A;
  --accent-warm: #E8763B;
  --accent-gold: #B8860B;
  --dark: #0D1A14;
  --border: #E4DDD3;

  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 clamp(24px, 6vw, 80px);
  overflow: hidden;
  background: var(--dark);
}

.hero-geo {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.geo-1 {
  width: 500px;
  height: 500px;
  background: #C9501A;
  opacity: 0.25;
  top: -100px;
  left: -150px;
}

.geo-2 {
  width: 350px;
  height: 350px;
  background: #B8860B;
  opacity: 0.18;
  bottom: -80px;
  right: 10%;
}

.geo-3 {
  width: 250px;
  height: 250px;
  background: #E8763B;
  opacity: 0.15;
  top: 30%;
  left: 40%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 80, 26, 0.15);
  border: 1px solid rgba(201, 80, 26, 0.4);
  color: #F4A97E;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: #4CAF50;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.25);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.25); }
  50% { box-shadow: 0 0 0 6px rgba(76, 175, 80, 0.1); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: normal;
  color: #F4A97E;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 44px;
  max-width: 460px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
  line-height: 1.3;
}

.stat-div {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}

/* ---- CV Preview Card ---- */

.hero-cv-preview {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.cv-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 28px 28px 20px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
  transform: rotate(-1.5deg);
}

.cv-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1.5px solid var(--border);
}

.cv-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.cv-title {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  margin-top: 2px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cv-contact {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: flex-end;
  font-size: 10px;
  color: var(--text-muted);
}

.cv-section {
  margin-bottom: 14px;
}

.cv-section-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 5px;
  text-transform: uppercase;
}

.cv-section-content {
  font-size: 11px;
  color: var(--text);
  line-height: 1.5;
}

.cv-job {
  margin-bottom: 10px;
}

.cv-job-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 3px;
}

.cv-job-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--dark);
}

.cv-job-date {
  font-size: 10px;
  color: var(--text-muted);
}

.cv-job-bullets {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 10px;
}

.cv-job-bullets span {
  font-size: 10px;
  color: var(--text);
  line-height: 1.4;
}

.cv-job-bullets span::before {
  content: '– ';
  color: var(--accent);
}

.cv-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.cv-skill-tag {
  font-size: 9px;
  padding: 3px 8px;
  background: var(--surface);
  border-radius: 4px;
  color: var(--text-muted);
  font-weight: 500;
  border: 1px solid var(--border);
}

.cv-ai-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #F0F7F4 0%, #E8F5E9 100%);
  border: 1px solid #A5D6A7;
  border-radius: 8px;
  padding: 8px 12px;
  margin-top: 10px;
  font-size: 10px;
  font-weight: 600;
  color: #2E7D32;
}

.ai-icon {
  font-size: 14px;
}

/* ============================================
   FEATURES
   ============================================ */

.features {
  padding: clamp(60px, 10vw, 120px) clamp(24px, 6vw, 80px);
  background: var(--bg);
}

.features-header {
  margin-bottom: 56px;
}

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

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

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

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}

.feature-card--wide {
  grid-column: span 2;
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-icon--warm {
  background: linear-gradient(135deg, #FDF0EB 0%, #FAE3D6 100%);
  color: var(--accent);
}

.feature-icon--gold {
  background: linear-gradient(135deg, #FDF8E8 0%, #F5ECC4 100%);
  color: var(--accent-gold);
}

.feature-content h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.feature-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- Pricing ---- */

.pricing-preview {
  border-top: 1px solid var(--border);
  padding-top: 48px;
}

.pricing-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
  text-align: center;
}

.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}

.pricing-tier {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}

.pricing-tier--featured {
  background: var(--dark);
  border-color: var(--dark);
  position: relative;
}

.pricing-tier--featured .tier-name,
.pricing-tier--featured .tier-price,
.pricing-tier--featured .tier-desc {
  color: #FFFFFF;
}

.pricing-tier--featured .tier-price {
  color: #F4A97E;
}

.pricing-tier--featured .tier-desc {
  color: rgba(255,255,255,0.6);
}

.tier-badge {
  display: inline-block;
  background: var(--accent);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 99px;
  margin-bottom: 12px;
}

.tier-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.tier-price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 10px;
}

.tier-period {
  font-size: 16px;
  font-weight: 500;
}

.tier-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================
   CLOSER
   ============================================ */

.closer {
  position: relative;
  padding: clamp(80px, 12vw, 140px) clamp(24px, 6vw, 80px);
  overflow: hidden;
}

.closer-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0D1A14 0%, #15291E 60%, #1C3522 100%);
}

.closer-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.closer-tagline {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 169, 126, 0.8);
  margin-bottom: 20px;
}

.closer-headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.closer-body {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  padding: 28px clamp(24px, 6vw, 80px);
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 60px;
    gap: 40px;
  }

  .hero-inner {
    max-width: 100%;
  }

  .hero-cv-preview {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card--wide {
    grid-column: span 1;
  }

  .pricing-tiers {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 16px;
  }

  .stat-num {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .features {
    padding: 48px 20px;
  }

  .closer {
    padding: 64px 20px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}