/* ═══════════════════════════════════════════════════════════════════════════
   Purpose Career — Premium Design System
   Modern, animated, glassmorphic design for a career platform
   ═══════════════════════════════════════════════════════════════════════════ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Core Colors */
  --bg: #0a1628;
  --bg-2: #0f1f35;
  --bg-3: #162744;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.08);
  --surface-3: rgba(255, 255, 255, 0.12);
  --text: #f8fafc;
  --text-secondary: #cbd5e1;
  --muted: rgba(203, 213, 225, 0.72);
  --muted-2: rgba(203, 213, 225, 0.48);

  /* Gradient Colors - Blue & Green matching logo */
  --gradient-start: #1e4a7d;
  --gradient-mid: #2e7d32;
  --gradient-end: #7ed321;
  --gradient-accent: #4caf50;

  /* Semantic Colors - Blue & Green */
  --brand: #4caf50;
  --brand-glow: rgba(76, 175, 80, 0.35);
  --accent: #2563a8;
  --accent-glow: rgba(37, 99, 168, 0.35);
  --success: #4caf50;
  --warning: #f59e0b;
  --error: #f43f5e;

  /* Borders */
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.16);
  --border-glow: rgba(76, 175, 80, 0.25);

  /* Spacing & Sizing */
  --radius-sm: 12px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --container: 1180px;

  /* Shadows */
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.25);
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 60px rgba(76, 175, 80, 0.15);
  --shadow-glow-accent: 0 0 60px rgba(37, 99, 168, 0.15);

  /* Animations */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light Mode Support */
@media (prefers-color-scheme: light) {
  :root {
    --bg: #f8fafc;
    --bg-2: #f1f5f9;
    --bg-3: #e2e8f0;
    --surface: rgba(255, 255, 255, 0.9);
    --surface-2: rgba(255, 255, 255, 0.95);
    --surface-3: rgba(255, 255, 255, 1);
    --text: #0f172a;
    --text-secondary: #334155;
    --muted: rgba(51, 65, 85, 0.72);
    --muted-2: rgba(51, 65, 85, 0.48);
    --border: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(0, 0, 0, 0.16);
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Global Reset & Base Styles
   ═══════════════════════════════════════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

body {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-feature-settings: 'cv11', 'ss01';
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Animated Background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 50% -20%, rgba(34, 211, 238, 0.12), transparent 50%),
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(167, 139, 250, 0.1), transparent 45%),
    radial-gradient(ellipse 100% 80% at 20% 80%, rgba(236, 72, 153, 0.08), transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Noise texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

code {
  font-family: ui-monospace, 'SF Mono', 'Cascadia Code', 'Fira Code', Consolas, monospace;
  font-size: 0.9em;
  padding: 0.15em 0.45em;
  border-radius: 8px;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.2);
  color: var(--brand);
}

@media (prefers-color-scheme: light) {
  code {
    background: rgba(34, 211, 238, 0.08);
    border-color: rgba(34, 211, 238, 0.15);
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Layout Utilities
   ═══════════════════════════════════════════════════════════════════════════ */

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 20px;
  top: 16px;
  transform: translateY(-200%);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 600;
  z-index: 1000;
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Header & Navigation
   ═══════════════════════════════════════════════════════════════════════════ */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: linear-gradient(180deg, rgba(3, 7, 18, 0.85), rgba(3, 7, 18, 0.7));
  border-bottom: 1px solid var(--border);
}

@media (prefers-color-scheme: light) {
  .header {
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.9), rgba(248, 250, 252, 0.8));
  }
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}

/* Brand Logo */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.brand:hover {
  background: var(--surface);
}

.brand:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.brand__mark {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 24px var(--brand-glow);
  transition: box-shadow var(--transition);
}

.brand:hover .brand__mark {
  box-shadow: 0 0 32px var(--brand-glow), 0 0 48px var(--accent-glow);
}

.brand__text {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--text) 0%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}

.nav__toggle:hover {
  background: var(--surface-2);
  border-color: var(--border-hover);
}

.nav__toggle-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 18px;
}

.nav__toggle-lines::before,
.nav__toggle-lines::after {
  content: '';
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition);
}

.nav__toggle-lines::before {
  width: 100%;
}

.nav__toggle-lines::after {
  width: 70%;
}

.nav__panel {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__link {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: var(--radius);
  position: relative;
  transition: all var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width var(--transition);
}

.nav__link:hover {
  color: var(--text);
  background: var(--surface);
}

.nav__link:hover::after {
  width: calc(100% - 28px);
}

.nav__link:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Button Styles
   ═══════════════════════════════════════════════════════════════════════════ */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 600ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-sm);
}

.button:hover::before {
  transform: translateX(100%);
}

.button:active {
  transform: translateY(0);
}

.button:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.button--primary {
  background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 50%, var(--gradient-end) 100%);
  background-size: 200% 200%;
  border: none;
  color: white;
  box-shadow: 0 4px 24px rgba(34, 211, 238, 0.3);
  animation: gradientShift 4s ease infinite;
}

.button--primary:hover {
  box-shadow: 0 8px 32px rgba(34, 211, 238, 0.4), 0 0 60px rgba(139, 92, 246, 0.2);
}

.button--ghost {
  background: transparent;
  border-color: var(--border);
}

.button--ghost:hover {
  background: var(--surface);
  border-color: var(--border-glow);
}

.button--small {
  padding: 10px 16px;
  font-size: 0.9rem;
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Hero Section
   ═══════════════════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 48px;
  align-items: center;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(167, 139, 250, 0.12));
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 999px;
  color: var(--brand);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  margin-bottom: 20px;
  animation: fadeInUp 600ms ease-out;
}

.kicker::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--brand);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(0.9);
  }
}

.hero__title {
  font-size: clamp(2.8rem, 5vw + 1rem, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0;
  background: linear-gradient(135deg, var(--text) 0%, var(--text-secondary) 30%, var(--brand) 70%, var(--accent) 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleGradient 8s ease infinite, fadeInUp 800ms ease-out;
}

@keyframes titleGradient {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 52ch;
  margin: 24px 0 32px;
  line-height: 1.7;
  animation: fadeInUp 1000ms ease-out;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  animation: fadeInUp 1200ms ease-out;
}

.hero__trust {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: fadeInUp 1400ms ease-out;
}

.pill {
  border: 1px solid var(--border);
  background: var(--surface-2);
  backdrop-filter: blur(12px);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.pill:hover {
  border-color: var(--border-glow);
  background: var(--surface-3);
  transform: translateY(-2px);
}

/* Hero Card */
.hero__card {
  position: relative;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  animation: floatCard 6s ease-in-out infinite, fadeInUp 1000ms ease-out;
}

.hero__card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.3), transparent 40%, transparent 60%, rgba(167, 139, 250, 0.3));
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.hero__card:hover::before {
  opacity: 1;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stat {
  padding: 18px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.stat:hover {
  border-color: var(--border-glow);
  background: var(--surface-2);
  transform: translateY(-4px);
}

.stat__value {
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat__label {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 4px;
}

.hero__note {
  margin-top: 18px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}

/* Hero Background Elements */
.hero__bg {
  position: absolute;
  inset: -200px -30% auto -30%;
  height: 600px;
  background:
    radial-gradient(400px 400px at 30% 40%, rgba(34, 211, 238, 0.2), transparent 60%),
    radial-gradient(350px 350px at 70% 30%, rgba(167, 139, 250, 0.18), transparent 55%),
    radial-gradient(300px 300px at 50% 60%, rgba(236, 72, 153, 0.1), transparent 50%);
  filter: blur(60px);
  animation: bgPulse 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes bgPulse {

  0%,
  100% {
    opacity: 0.8;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Sections
   ═══════════════════════════════════════════════════════════════════════════ */

.section {
  padding: 100px 0;
  position: relative;
}

.section--alt {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section__head {
  max-width: 72ch;
  margin-bottom: 48px;
}

.section__head--row {
  max-width: none;
  display: flex;
  gap: 32px;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
}

.section__title {
  font-size: clamp(1.8rem, 2.5vw + 0.5rem, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin: 0;
}

.section__lead {
  margin: 16px 0 0;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Grid System
   ═══════════════════════════════════════════════════════════════════════════ */

.grid {
  display: grid;
  gap: 24px;
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Cards
   ═══════════════════════════════════════════════════════════════════════════ */

.card {
  position: relative;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.2), transparent 40%, transparent 60%, rgba(167, 139, 250, 0.2));
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.card:hover::before {
  opacity: 1;
}

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.2), rgba(167, 139, 250, 0.15));
  border: 1px solid rgba(34, 211, 238, 0.25);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--brand);
  box-shadow: 0 8px 24px rgba(34, 211, 238, 0.15);
  transition: all var(--transition);
}

.card:hover .card__icon {
  box-shadow: 0 12px 32px rgba(34, 211, 238, 0.25);
  transform: scale(1.05);
}

.card__title {
  margin: 18px 0 0;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.card__text {
  margin: 12px 0 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

.card--output {
  padding: 0;
  overflow: hidden;
}

.output {
  padding: 24px;
  min-height: 280px;
  white-space: pre-wrap;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Text Utilities
   ═══════════════════════════════════════════════════════════════════════════ */

.muted {
  color: var(--muted);
}

.fineprint {
  margin: 14px 0 0;
  color: var(--muted-2);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Forms
   ═══════════════════════════════════════════════════════════════════════════ */

.form {
  display: grid;
  gap: 20px;
}

.field {
  display: grid;
  gap: 10px;
}

label {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

input,
textarea {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 14px 16px;
  background: var(--surface);
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
  transition: all var(--transition);
}

input::placeholder,
textarea::placeholder {
  color: var(--muted-2);
}

input:hover,
textarea:hover {
  border-color: var(--border-hover);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.15);
}

@media (prefers-color-scheme: light) {

  input,
  textarea {
    background: rgba(255, 255, 255, 0.9);
  }
}

.form__status {
  min-height: 24px;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Jobs Section
   ═══════════════════════════════════════════════════════════════════════════ */

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

.jobs__controls {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.jobs__controls .field {
  min-width: 260px;
  flex: 1;
}

.jobs__controls input {
  min-width: 260px;
}

.jobs__empty {
  grid-column: 1 / -1;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 2px dashed var(--border);
  color: var(--text-secondary);
  background: var(--surface);
  text-align: center;
  font-weight: 600;
}

.job {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.job:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.job__title {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.3;
}

.job__meta {
  color: var(--text-secondary);
  font-weight: 600;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.9rem;
}

.job__tag {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.job__tag:hover {
  border-color: var(--border-glow);
  color: var(--brand);
}

.job__link {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(34, 211, 238, 0.3);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.15), rgba(167, 139, 250, 0.1));
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.job__link:hover {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.25), rgba(167, 139, 250, 0.2));
  transform: translateX(4px);
}

.job__source {
  color: var(--text-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.job__source:hover {
  color: var(--brand);
}

/* ═══════════════════════════════════════════════════════════════════════════
   Feature List
   ═══════════════════════════════════════════════════════════════════════════ */

.list {
  margin-top: 20px;
  display: grid;
  gap: 16px;
}

.list__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.5;
}

.dot {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-top: 5px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 0 20px var(--brand-glow);
  animation: dotPulse 2s ease-in-out infinite;
}

.list__item:nth-child(2) .dot {
  animation-delay: 0.3s;
}

.list__item:nth-child(3) .dot {
  animation-delay: 0.6s;
}

.list__item:nth-child(4) .dot {
  animation-delay: 0.9s;
}

@keyframes dotPulse {

  0%,
  100% {
    box-shadow: 0 0 20px var(--brand-glow);
  }

  50% {
    box-shadow: 0 0 30px var(--brand-glow), 0 0 40px var(--accent-glow);
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Footer
   ═══════════════════════════════════════════════════════════════════════════ */

.footer {
  padding: 60px 0 32px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer__name {
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.footer__tagline {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
}

.footer__links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer__links a {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.footer__links a:hover {
  background: var(--surface-2);
  color: var(--text);
}

.footer__bottom {
  margin-top: 32px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
}

.footer__bottom .muted {
  font-size: 0.9rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Toast Notifications
   ═══════════════════════════════════════════════════════════════════════════ */

.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 380px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.95));
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  box-shadow: var(--shadow-lg);
  transform: translateY(24px);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 1000;
}

.toast[data-open="true"] {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Responsive Design
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__card {
    max-width: 480px;
  }

  .jobs {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    width: calc(100% - 32px);
  }

  .hero {
    padding: 60px 0 50px;
  }

  .section {
    padding: 60px 0;
  }

  .grid--3,
  .grid--2 {
    grid-template-columns: 1fr;
  }

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

  .nav__toggle {
    display: flex;
  }

  .nav__panel {
    position: absolute;
    top: 70px;
    right: 16px;
    left: 16px;
    padding: 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: rgba(3, 7, 18, 0.95);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    transform-origin: top;
    transform: scaleY(0.95) translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    box-shadow: var(--shadow-lg);
  }

  @media (prefers-color-scheme: light) {
    .nav__panel {
      background: rgba(248, 250, 252, 0.98);
    }
  }

  .nav__panel[data-open="true"] {
    opacity: 1;
    transform: scaleY(1) translateY(0);
    pointer-events: auto;
  }

  .nav__link {
    padding: 14px 16px;
    border-radius: var(--radius);
  }

  .nav__link::after {
    display: none;
  }

  .section__head--row {
    flex-direction: column;
    align-items: stretch;
  }

  .jobs__controls {
    width: 100%;
  }

  .jobs__controls .field {
    min-width: 100%;
  }

  .jobs__controls input {
    min-width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Reduced Motion
   ═══════════════════════════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero__card {
    animation: none;
  }

  .hero__bg {
    animation: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Scrollbar Styling
   ═══════════════════════════════════════════════════════════════════════════ */

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--surface-3);
  border-radius: 10px;
  border: 2px solid var(--bg);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--border-hover);
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--surface-3) var(--bg);
}

/* ═══════════════════════════════════════════════════════════════════════════
   Selection Styling
   ═══════════════════════════════════════════════════════════════════════════ */

::selection {
  background: rgba(34, 211, 238, 0.3);
  color: var(--text);
}

::-moz-selection {
  background: rgba(34, 211, 238, 0.3);
  color: var(--text);
}