:root {
  /* Brand colours based on JOB STRIKES logo */
  --bg-page: #ffffff;
  --bg-elevated: rgba(12, 24, 46, 0.96);       /* deep navy */
  --bg-elevated-soft: rgba(18, 35, 66, 0.82);  /* softer navy */
  --border-subtle: rgba(148, 163, 184, 0.28);

  --accent: #1578d4;                           /* primary blue */
  --accent-soft: rgba(21, 120, 212, 0.18);     /* soft blue glow */
  --accent-strong: #21b0ff;                    /* lighter cyan blue */

  --text-main: #f9fafb;
  --text-muted: #b0becd;
  --text-soft: #7b8798;

  --danger: #f97373;
  --success: #22c55e;

  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --shadow-soft: 0 18px 45px rgba(5, 10, 25, 0.9);
}


/* Reset-ish */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}
.logo-img {
  height: 32px;          /* adjust to fit your logo */
  width: auto;
  display: block;
}


body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;

  /* Lighter navy background */
  background: radial-gradient(
      circle at top,
      #132033 0%,
      #0060ef 45%,
      #070f1f 100%
    );

  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}



/* Utility */
.container {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: radial-gradient(
      circle at top left,
      rgba(21, 120, 212, 0.1),
      transparent 60%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(33, 176, 255, 0.08),
      transparent 55%
    );
}


.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  margin-bottom: 0.75rem;
}

.section-header p {
  margin: 0;
  color: var(--text-soft);
}

/* Header / Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(2, 6, 23, 0.95),
    rgba(2, 6, 23, 0.75),
    transparent
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1rem;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 0.98rem;
  text-transform: uppercase;
}

.logo-mark {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 0.65rem;
  background: conic-gradient(
    from 160deg,
    #22d3ee,
    #4f46e5,
    #22c55e,
    #f59e0b,
    #22d3ee
  );
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.5);
}

.logo-text {
  background: linear-gradient(120deg, #e5e7eb, #ffffff);
  -webkit-background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  font-size: 0.92rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  padding-bottom: 0.2rem;
  transition: color 0.18s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  transition: width 0.2s ease;
}

.nav-links a:hover {
  color: #e5e7eb;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  gap: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.55rem 1.3rem;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease,
    border-color 0.16s ease, background 0.16s ease, color 0.16s ease;
  white-space: nowrap;
}

.btn-lg {
  padding: 0.7rem 1.6rem;
  font-size: 0.96rem;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--accent),
    var(--accent-strong)
  );
  color: #0b1020;
  box-shadow: 0 14px 35px rgba(56, 189, 248, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 45px rgba(56, 189, 248, 0.45);
  filter: brightness(1.02);
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.9);
  color: var(--text-main);
  border-color: rgba(148, 163, 184, 0.35);
}

.btn-secondary:hover {
  border-color: rgba(148, 163, 184, 0.7);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: rgba(148, 163, 184, 0.4);
}

.btn-ghost:hover {
  color: #e5e7eb;
  border-color: rgba(148, 163, 184, 0.85);
  transform: translateY(-1px);
}

/* Hero */
.hero {
  padding: 5.5rem 0 4.75rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 2.75rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 0.8rem 0 0.75rem;
}

.gradient-text {
  background: linear-gradient(120deg, var(--accent-strong), var(--accent));
  -webkit-background-clip: text;
  color: transparent;
}


.hero-subtitle {
  margin: 0 0 1.6rem;
  color: var(--text-soft);
  max-width: 32rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.23rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background: radial-gradient(
    circle at top left,
    rgba(33, 176, 255, 0.25),
    rgba(33, 176, 255, 0.05)
  );
  border: 1px solid rgba(33, 176, 255, 0.45);
  color: #e0f2fe;
}


.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.hero-meta-number {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  color: #e5e7eb;
}

/* Hero card */
.hero-card {
  background: radial-gradient(
      circle at top,
      rgba(20, 179, 247, 0.08),
      transparent 60%
    ),
    var(--bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  padding: 1.4rem 1.3rem 1.5rem;
  backdrop-filter: blur(18px);
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.1rem;
}

.badge {
  font-size: 0.75rem;
  padding: 0.22rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: #e5e7eb;
}

.chip {
  font-size: 0.78rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #e0f2fe;
}


.hero-card-body {
  background: rgba(15, 23, 42, 0.9);
  border-radius: calc(var(--radius-lg) - 0.35rem);
  padding: 1.1rem 1rem 1.1rem;
  border: 1px dashed rgba(148, 163, 184, 0.4);
}

.hero-job {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.hero-job h3 {
  font-size: 1rem;
  margin: 0 0 0.12rem;
}

.hero-job-company {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.hero-job-score {
  font-weight: 600;
  font-size: 1.1rem;
  color: #06fb5c;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.hero-list li + li {
  margin-top: 0.3rem;
}

.hero-card-button {
  width: 100%;
  margin-top: 0.2rem;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.6rem;
}

.feature-card {
  background: var(--bg-elevated-soft);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  padding: 1.4rem 1.3rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.6);
  transition: transform 0.16s ease, box-shadow 0.16s ease,
    border-color 0.16s ease, background 0.16s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(5, 10, 25, 0.95);
  border-color: rgba(33, 176, 255, 0.75);
  background: radial-gradient(
      circle at top left,
      rgba(33, 176, 255, 0.16),
      transparent 60%
    ),
    var(--bg-elevated-soft);
}


.feature-icon {
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
}

.feature-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* Steps / How it works */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.step {
  background: rgba(15, 23, 42, 0.92);
  border-radius: var(--radius-md);
  padding: 1.35rem 1.3rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  position: relative;
}

.step-number {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.86rem;
  font-weight: 600;
  background: radial-gradient(circle at top left, var(--accent-strong), var(--accent));
  box-shadow: 0 12px 28px rgba(21, 120, 212, 0.65);
  margin-bottom: 0.6rem;
}


.step h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
}

.step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* AI section */
.ai-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 2.4rem;
  align-items: center;
}

.ai-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  margin-bottom: 0.6rem;
}

.ai-copy p {
  margin: 0 0 1rem;
  color: var(--text-soft);
}

.ai-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
}

.ai-list li {
  position: relative;
  padding-left: 1.3rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.ai-list li + li {
  margin-top: 0.35rem;
}

.ai-list li::before {
  content: "•";
  position: absolute;
  left: 0.2rem;
  top: 0.1rem;
  color: #a855f7;
}

.ai-panel {
  background: radial-gradient(
      circle at top right,
      rgba(168, 85, 247, 0.24),
      transparent 55%
    ),
    rgba(15, 23, 42, 0.96);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 1.4rem 1.3rem;
  box-shadow: var(--shadow-soft);
  font-size: 0.88rem;
}

.ai-message {
  border-radius: 0.9rem;
  padding: 0.85rem 0.9rem;
  margin-bottom: 0.7rem;
}

.ai-message-user {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.ai-message-bot {
  background: rgba(15, 118, 110, 0.22);
  border: 1px solid rgba(45, 212, 191, 0.8);
}

.ai-message-bot ul {
  margin: 0.4rem 0 0.5rem 1.1rem;
  padding: 0;
}

/* Employers */
.employer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2.2rem;
  align-items: center;
}

.employer-grid p {
  color: var(--text-soft);
}

.employer-points ul {
  margin: 0 0 1rem 1.1rem;
  padding: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* CTA */
.cta-section {
  padding: 4rem 0 4.5rem;
}

.cta-inner {
  background: radial-gradient(
      circle at top left,
      rgba(21, 120, 212, 0.32),
      transparent 55%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(33, 176, 255, 0.28),
      transparent 55%
    );
  border-radius: var(--radius-lg);
  padding: 2.2rem 2.1rem;
  border: 1px solid rgba(148, 163, 184, 0.55);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.3rem;
  box-shadow: var(--shadow-soft);
}
