:root {
  --bg-page: #f5f7fb;
  --bg-surface: #ffffff;
  --bg-soft: #eef2ff;
  --accent: #2563eb;
  --accent-soft: rgba(37, 99, 235, 0.12);
  --accent-strong: #1d4ed8;
  --text-main: #0f172a;
  --text-muted: #6b7280;
  --border-subtle: #e5e7eb;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.12);
  --radius-lg: 18px;
  --radius-xl: 24px;
  --transition-fast: 180ms ease-out;
  --transition-med: 220ms ease-out;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--bg-page);
  color: var(--text-main);
}

a {
  color: inherit;
  text-decoration: none;
}

/* Layout */

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* NAVBAR */

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(245, 247, 251, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(209, 213, 219, 0.8);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(circle at 25% 10%, #60a5fa, #2563eb 55%, #0f172a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9fafb;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 10px 18px rgba(37, 99, 235, 0.4);
}

.logo-text-main {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.logo-text-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.9rem;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.1rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, #2563eb, #0ea5e9);
  transition: width var(--transition-fast);
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: linear-gradient(
    to right,
    rgba(37, 99, 235, 0.1),
    rgba(37, 99, 235, 0.04)
  );
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--accent-strong);
  cursor: pointer;
  transition: background var(--transition-fast), box-shadow var(--transition-fast),
    transform var(--transition-fast);
}

.nav-cta:hover {
  background: linear-gradient(
    to right,
    rgba(37, 99, 235, 0.18),
    rgba(37, 99, 235, 0.08)
  );
  box-shadow: 0 18px 30px rgba(37, 99, 235, 0.25);
  transform: translateY(-1px);
}

/* HERO */

.hero {
  background: radial-gradient(circle at top left, #e0f2fe, #eef2ff 45%, #f5f7fb);
  padding: 3.5rem 1.5rem 3rem;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(209, 213, 219, 0.8);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #16a34a;
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  line-height: 1.08;
  margin-bottom: 0.7rem;
}

.hero-title span {
  color: var(--accent-strong);
}

.hero-subtitle {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 32rem;
  margin-bottom: 1.3rem;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 1.4rem;
}

.metric {
  min-width: 120px;
}

.metric-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.metric-value {
  font-size: 1.1rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn-primary {
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(to right, #2563eb, #0ea5e9);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.45);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    filter var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 26px 50px rgba(37, 99, 235, 0.55);
}

.btn-ghost {
  padding: 0.68rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-main);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: background var(--transition-fast), border-color var(--transition-fast),
    transform var(--transition-fast);
}

.btn-ghost:hover {
  background: #ffffff;
  border-color: var(--accent);
  transform: translateY(-1px);
}

/* HERO CAROUSEL */

.hero-carousel {
  position: relative;
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border: 1px solid rgba(209, 213, 219, 0.9);
}

.hero-slides {
  display: flex;
  transition: transform var(--transition-med);
}

.hero-slide {
  min-width: 100%;
  aspect-ratio: 16 / 10;
  position: relative;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide-caption {
  position: absolute;
  inset: auto 1.5rem 1.5rem 1.5rem;
  padding: 0.75rem 0.9rem;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.72);
  color: #f9fafb;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.hero-slide-caption span {
  font-size: 0.8rem;
  opacity: 0.9;
}

.hero-badge {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.18);
  font-size: 0.75rem;
}

.hero-controls {
  position: absolute;
  inset: auto 1.3rem 0.9rem 1.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

.hero-dots {
  display: flex;
  gap: 0.4rem;
  pointer-events: auto;
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  background: rgba(255, 255, 255, 0.85);
  opacity: 0.5;
  cursor: pointer;
  transition: opacity var(--transition-fast), transform var(--transition-fast),
    background var(--transition-fast), border-color var(--transition-fast);
}

.hero-dot.active {
  opacity: 1;
  background: var(--accent);
  border-color: var(--accent-strong);
  transform: scale(1.05);
}

.hero-arrows {
  display: flex;
  gap: 0.4rem;
  pointer-events: auto;
}

.hero-arrow-btn {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  background: rgba(248, 250, 252, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.hero-arrow-btn:hover {
  background: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.16);
}

/* SECTIONS BASE */

main {
  flex: 1;
}

section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.section-header {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section-eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.section-subtitle {
  font-size: 0.96rem;
  color: var(--text-muted);
}

/* ALTERNATING FEATURE SECTIONS */

.feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.4rem;
  align-items: center;
  margin-bottom: 3rem;
}

.feature:last-of-type {
  margin-bottom: 0;
}

.feature.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
}

@media (max-width: 900px) {
  .feature,
  .feature.reverse {
    grid-template-columns: minmax(0, 1fr);
  }
}

.feature-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--bg-surface);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-body {
  padding: 0.3rem 0;
}

.feature-tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-text {
  font-size: 0.96rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.feature-pill {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.78rem;
}

/* JOBS */

.jobs-section {
  background: #ffffff;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 1.6rem;
}

@media (max-width: 1000px) {
  .job-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .job-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.job-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    border-color var(--transition-fast);
  cursor: pointer;
}

.job-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(15, 23, 42, 0.12);
  border-color: rgba(37, 99, 235, 0.5);
}

.job-badge {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.job-title {
  font-size: 1.1rem;
  font-weight: 600;
}

.job-pay {
  font-size: 0.94rem;
  color: #15803d;
  font-weight: 500;
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.2rem;
}

.job-tag {
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: #eff6ff;
  font-size: 0.78rem;
  color: #1d4ed8;
}

.job-footer {
  margin-top: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.job-cta {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-strong);
}

/* CONTACT */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.8rem;
}

@media (max-width: 850px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.contact-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  padding: 1.2rem 1.3rem;
}

.contact-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.1rem;
}

.contact-card p {
  margin: 0 0 0.8rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-row {
  margin-bottom: 0.7rem;
  font-size: 0.9rem;
}

.contact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.contact-value {
  font-weight: 500;
}

.contact-form {
  display: grid;
  gap: 0.7rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.86rem;
}

.field label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.field input,
.field textarea,
.field select {
  padding: 0.55rem 0.7rem;
  border-radius: 12px;
  border: 1px solid rgba(209, 213, 219, 0.9);
  background: #ffffff;
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.4);
}

.field textarea {
  resize: vertical;
  min-height: 100px;
}

/* FOOTER */

footer {
  border-top: 1px solid var(--border-subtle);
  padding: 1.4rem 1.5rem 1.6rem;
  background: #ffffff;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
}
