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

:root {
  --bg: #05070f;
  --surface: rgba(12, 17, 31, 0.88);
  --surface-soft: rgba(14, 24, 48, 0.65);
  --surface-highlight: rgba(54, 86, 160, 0.45);
  --accent: #61f4b8;
  --accent-blue: #55c7ff;
  --text-primary: #f4f7ff;
  --text-secondary: rgba(244, 247, 255, 0.74);
  --text-muted: rgba(220, 226, 255, 0.52);
  --border: rgba(255, 255, 255, 0.08);
  --shadow-lg: 0 40px 120px rgba(8, 12, 28, 0.55);
  --shadow-md: 0 20px 60px rgba(6, 14, 36, 0.45);
  --font: 'Manrope', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text-primary);
  background:
    radial-gradient(circle at 0% -20%, rgba(75, 120, 255, 0.4), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(50, 200, 170, 0.22), transparent 45%),
    var(--bg);
  min-height: 100vh;
}

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

.page {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px clamp(18px, 4vw, 48px) 96px;
}

.bg-orb {
  position: fixed;
  pointer-events: none;
  width: 540px;
  height: 540px;
  filter: blur(120px);
  opacity: 0.7;
  z-index: -2;
}

.orb-one {
  top: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(98, 148, 255, 0.75), transparent 70%);
}

.orb-two {
  bottom: -240px;
  right: -180px;
  background: radial-gradient(circle, rgba(61, 222, 173, 0.62), transparent 75%);
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 18px;
  background: rgba(8, 12, 24, 0.6);
  border: 1px solid var(--border);
  border-radius: 18px;
  backdrop-filter: blur(20px);
  margin-bottom: clamp(32px, 6vw, 64px);
}

.brand-mark {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(130deg, #8bd3ff, #61f4b8);
  -webkit-background-clip: text;
  color: transparent;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.language-switch {
  display: inline-flex;
  padding: 4px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(12, 18, 32, 0.6);
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-btn:hover {
  color: var(--text-primary);
}

.lang-btn.active {
  background: linear-gradient(135deg, #61f4b8, #44c6f4);
  color: #031420;
  box-shadow: 0 12px 28px rgba(60, 210, 200, 0.35);
}

.top-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 600;
  font-size: 0.86rem;
  transition: all 0.2s ease;
}

.top-cta:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 6vw, 60px);
}

.hero-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 72px);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-kicker {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  font-weight: 600;
}

.hero-title {
  font-size: clamp(2.3rem, 5.2vw, 3.6rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-wrap: balance;
  max-width: clamp(560px, 60vw, 780px);
  text-shadow: 0 18px 48px rgba(18, 40, 92, 0.45);
}

.hero-lead {
  font-size: clamp(1.03rem, 2.2vw, 1.22rem);
  color: var(--text-secondary);
  max-width: clamp(520px, 52vw, 720px);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #61f4b8, #46bff3);
  color: #03212f;
  box-shadow: 0 24px 50px rgba(60, 192, 200, 0.38);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 70px rgba(60, 192, 200, 0.44);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-primary);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
}

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.panel-card {
  width: min(100%, 380px);
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(36, 44, 92, 0.68), rgba(17, 24, 56, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.panel-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

.panel-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--text-secondary);
}

.panel-list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.95rem;
}

.panel-list li::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-blue));
  box-shadow: 0 0 0 4px rgba(97, 244, 184, 0.15);
}

.panel-visual {
  padding: 18px;
  border-radius: 18px;
  background: rgba(12, 20, 46, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.panel-visual svg {
  width: 100%;
  filter: drop-shadow(0 24px 45px rgba(42, 120, 255, 0.25));
}

.panel-caption {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.68);
}

.panel-refresh {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
}

.panel-refresh::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent) 55%, transparent 100%);
  box-shadow: 0 0 0 4px rgba(97, 244, 184, 0.12);
}

.hero-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

.stat {
  padding: 20px 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.stat-value {
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.jobs-section {
  margin-top: clamp(70px, 12vw, 140px);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-eyebrow {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  font-weight: 600;
}

.section-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text-secondary);
}

.btn-refresh {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-refresh:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
}

.last-updated {
  font-size: 0.86rem;
  color: var(--text-muted);
}

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

.job-card {
  padding: 24px;
  border-radius: 24px;
  background: radial-gradient(circle at top right, rgba(97, 244, 184, 0.1), transparent 60%),
    var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.job-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 68px rgba(8, 18, 38, 0.55);
}

.job-chip {
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  background: rgba(255, 255, 255, 0.08);
}

.job-title {
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.35;
}

.job-location,
.job-salary {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.job-location svg,
.job-salary svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.job-description {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.job-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.job-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.45);
}

.contact-name {
  font-size: 0.95rem;
  font-weight: 600;
}

.job-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(97, 244, 184, 0.22), rgba(70, 164, 255, 0.22));
  border: 1px solid rgba(97, 244, 184, 0.35);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.job-link:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(97, 244, 184, 0.32), rgba(70, 164, 255, 0.32));
}

.job-link[aria-disabled='true'] {
  pointer-events: none;
  opacity: 0.5;
}

.job-card.skeleton {
  position: relative;
  overflow: hidden;
}

.job-card.skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.08) 50%, transparent 100%);
  animation: shimmer 1.4s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.jobs-empty {
  text-align: center;
  padding: 28px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(255, 255, 255, 0.14);
  color: var(--text-muted);
}

.jobs-help {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.jobs-help-card {
  width: min(100%, 880px);
  padding: clamp(24px, 4vw, 32px);
  border-radius: 24px;
  background: radial-gradient(circle at top left, rgba(70, 164, 255, 0.28), transparent 60%),
    rgba(12, 20, 42, 0.88);
  border: 1px solid rgba(97, 244, 184, 0.26);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(16px, 4vw, 28px);
  box-shadow: var(--shadow-lg);
}

.jobs-help-eyebrow {
  flex-basis: 100%;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(97, 244, 184, 0.88);
  font-weight: 700;
}

.jobs-help-title {
  flex: 1 1 240px;
  margin: 0;
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  font-weight: 700;
}

.jobs-help-text {
  flex: 2 1 320px;
  font-size: 0.98rem;
  margin: 0;
  color: var(--text-secondary);
}

.jobs-help-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent));
  color: #021320;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 22px 48px rgba(70, 190, 220, 0.35);
}

.jobs-help-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 64px rgba(70, 190, 220, 0.45);
}

.jobs-help-btn::after {
  content: '';
  width: 18px;
  height: 18px;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill=\"%23000\" d=\"M11.5 2.1a1.2 1.2 0 0 1 .9 0l9.5 3.4a1.2 1.2 0 0 1-.1 2.3l-4.7 2-1.3 6.1a1.2 1.2 0 0 1-1.9.8l-2.7-2.2-2.5 2a1.2 1.2 0 0 1-1.9-.8l-.1-2.6-3.2-1.7a1.2 1.2 0 0 1 0-2.2L11.5 2.1Zm1 1.8L3.8 6.8l3.3 1.8c.4.2.7.7.7 1.1l.1 2.7 2.5-2c.4-.3.9-.3 1.3 0l2.8 2.3 1.1-5.3c.1-.5.4-.9.9-1.1l3.4-1.4-8.4-3.1Z\"/></svg>')
    center / contain no-repeat;
  background: currentColor;
}

.advantages {
  margin-top: clamp(80px, 12vw, 150px);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section-title {
  font-size: clamp(1.9rem, 3.1vw, 2.4rem);
  font-weight: 700;
  max-width: 680px;
}

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

.adv-card {
  padding: 32px;
  border-radius: 24px;
  background: rgba(12, 18, 36, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.adv-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(97, 244, 184, 0.16);
  display: grid;
  place-items: center;
  color: var(--accent);
}

.adv-icon svg {
  width: 28px;
  height: 28px;
}

.adv-title {
  font-size: 1.2rem;
  font-weight: 700;
}

.adv-text {
  color: var(--text-secondary);
  font-size: 0.96rem;
  line-height: 1.6;
}

.cta-final {
  margin-top: clamp(80px, 14vw, 160px);
}

.cta-card {
  padding: clamp(32px, 6vw, 56px);
  border-radius: 28px;
  background: radial-gradient(circle at top left, rgba(97, 244, 184, 0.28), transparent 55%),
    linear-gradient(135deg, rgba(18, 28, 60, 0.9), rgba(9, 16, 34, 0.92));
  border: 1px solid rgba(97, 244, 184, 0.28);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.cta-eyebrow {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  color: rgba(5, 7, 15, 0.85);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.cta-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  max-width: 620px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer {
  margin-top: clamp(60px, 10vw, 120px);
  padding: 32px 0 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-brand {
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 15, 0.76);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 50;
}

.modal-backdrop.visible {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  width: min(94vw, 520px);
  background: linear-gradient(145deg, rgba(18, 30, 56, 0.95), rgba(8, 16, 32, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: clamp(28px, 5vw, 38px);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 40px 120px rgba(4, 10, 28, 0.65);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  font-size: 1.4rem;
  cursor: pointer;
}

.modal-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(97, 244, 184, 0.85);
  font-weight: 700;
}

.modal-title {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  line-height: 1.15;
}

.modal-text {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

.modal-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 18px;
  font-weight: 700;
  font-size: 0.95rem;
  background: linear-gradient(135deg, var(--accent-blue), #7af4c2);
  color: #04131e;
  box-shadow: 0 30px 70px rgba(80, 210, 230, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.modal-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 38px 90px rgba(80, 210, 230, 0.5);
}

.modal-note {
  margin: 0;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1024px) {
  .hero-body {
    grid-template-columns: 1fr;
  }

  .panel-card {
    width: 100%;
  }

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

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

@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .top-actions {
    justify-content: space-between;
  }

  .hero-cta,
  .cta-actions {
    flex-direction: column;
  }

  .btn,
  .cta-actions .btn {
    width: 100%;
  }

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

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

  .job-link {
    width: 100%;
    justify-content: center;
  }

  .jobs-help-card {
    align-items: flex-start;
  }

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

@media (max-width: 520px) {
  .page {
    padding-inline: 18px;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }

  .panel-card {
    padding: 24px;
  }

  .section-title,
  .cta-title {
    font-size: clamp(1.6rem, 6vw, 2.1rem);
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .jobs-help-card {
    padding: 24px;
  }
}
