/* ================================
   Design Tokens (from JSX theme)
================================ */

:root {
  /* Base background & text */
  --bg-gradient: linear-gradient(180deg, #071025 0%, #07131b 60%);
  --text-main: #e6eef6;
  --text-muted: #9aa6b2;

  /* Accent colors */
  --accent-purple: #7c3aed;
  --accent-cyan: #06b6d4;
  --accent-gradient: linear-gradient(90deg, #7c3aed, #06b6d4);

  /* Section gradients */
  --blue-gradient: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  --green-gradient: linear-gradient(135deg, #e8f5e9 0%, #a5d6a7 100%);
  --platinum-gradient: linear-gradient(
    135deg,
    #fafafa 0%,
    #e0e0e0 40%,
    #9e9e9e 100%
  );

  /* Borders */
  --green-border: #46cb48ff;
  --platinum-border: #daa400ff;

  /* Neutral surfaces */
  --glass-card: rgba(255, 255, 255, 0.02);
  --glass-strong: rgba(255, 255, 255, 0.04);

  /* Layout */
  --max-width: 1100px;
  --radius-lg: 16px;
  --radius-md: 12px;
}

/* ================================
   Global Reset
================================ */

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg-gradient);
  color: var(--text-main);
  line-height: 1.7;
}

/* ================================
   Layout
================================ */

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

/* ================================
   Navigation
================================ */

.nav {
  display: flex;
  justify-content: right;
  align-items: right;
  margin-bottom: 64px;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  margin-left: 28px;
  transition: color 0.25s ease;
}

.nav a:hover {
  color: var(--accent-cyan);
}

/* ================================
   Typography
================================ */

h1 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.15;
}

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

h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
}

p {
  margin: 0 0 16px;
}

ul {
  padding-left: 20px;
}

li {
  margin-bottom: 10px;
}

/* ================================
   Cards
================================ */

.card {
  background: var(--glass-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 32px;
}

/* Candidate card */
.card.candidate {
  background: var(--green-gradient);
  border: 3px solid var(--green-border);
  color: rgba(80, 80, 80, 1);
}

/* Recruiter card */
.card.recruiter {
  background: var(--platinum-gradient);
  border: 3px solid var(--platinum-border);
  color: rgba(80, 80, 80, 1);
}

/* Neutral glass card */
.card.glass {
  background: var(--glass-card);
}

/* ================================
   Feature Pills
================================ */

.pill-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
}

.pill {
  background: var(--blue-gradient);
  color: rgba(80, 80, 80, 1);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-weight: 700;
}

/* ================================
   Buttons
================================ */

.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.25);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent-cyan);
  color: var(--accent-cyan);
}

/* Recruiter CTA */
.btn-recruiter {
  background: var(--platinum-border);
  color: #fff;
}

/* ================================
   How It Works
================================ */

.steps {
  display: flex;
  gap: 24px;
  margin-top: 40px;
}

.step {
  background: var(--glass-card);
  border-radius: var(--radius-md);
  padding: 24px;
  flex: 1;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

/* ================================
   Footer (Letterhead style)
================================ */

footer {
  margin-top: 96px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 15px;
  color: var(--text-muted);
}

/* ================================
   Responsive
================================ */

@media (max-width: 900px) {
  .steps {
    flex-direction: column;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  .container {
    padding: 40px 20px;
  }
}

.container2 {
  display: flex; /* Makes the container a flex container */
  justify-content: left; /* Optional: distributes space between the boxes */
  align-items: baseline;
}

.box2 {
  flex: 1; /* Optional: ensures both boxes grow equally to fill the container */
  font-size: 0;
}
