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

:root {
  color-scheme: dark;
  --bg: #0b1330;
  --bg-alt: #101c44;
  --panel: rgba(17, 30, 74, 0.75);
  --panel-solid: #14214f;
  --panel-soft: rgba(20, 33, 79, 0.6);
  --accent: #ff8a1f;
  --accent-soft: #ffb36b;
  --cyan: #2eb6ff;
  --text: #f4f7ff;
  --muted: #b9c3e6;
  --border: rgba(46, 182, 255, 0.2);
  --shadow: 0 24px 60px rgba(6, 12, 38, 0.55);
}

body {
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at top left, #1a2a66 0%, #0b1330 50%, #090f24 100%);
  color: var(--text);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1240px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(8, 16, 43, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 30px rgba(4, 8, 24, 0.35);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(9, 15, 36, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.logo-image {
  width: 180px;
  height: 80px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  padding: 10px;
  box-shadow: 0 10px 26px rgba(46, 182, 255, 0.2);
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1b4aa8, #2eb6ff);
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow: 0 10px 26px rgba(46, 182, 255, 0.35);
}

.logo-title {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-weight: 500;
  color: var(--muted);
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(12, 19, 45, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle-label span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
  opacity: 0;
}

.nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8a1f, #ffb36b);
  color: #1a1d2b;
  font-weight: 700;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: translateX(-130%);
  transition: transform 0.6s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 138, 31, 0.25);
}

.btn:hover::after {
  transform: translateX(130%);
}

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

.hero {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(46, 182, 255, 0.18);
}

.hero::before {
  top: -180px;
  left: -200px;
  background: radial-gradient(circle, rgba(46, 182, 255, 0.18), transparent 65%);
}

.hero::after {
  right: -200px;
  bottom: -240px;
  background: radial-gradient(circle, rgba(255, 138, 31, 0.2), transparent 70%);
}

.hero-sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(46, 182, 255, 0.08), transparent 35%, transparent 70%);
  background-size: 200% 200%;
  animation: sheen 8s ease infinite;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.7rem;
  color: var(--accent-soft);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-lead,
.lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.2rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
}

.hero-stats h3 {
  font-size: 1.6rem;
  color: var(--accent-soft);
}

.hero-stats p {
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-card {
  position: relative;
  background: linear-gradient(145deg, rgba(24, 36, 84, 0.95), rgba(12, 18, 42, 0.95));
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid rgba(46, 182, 255, 0.25);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 2px solid rgba(46, 182, 255, 0.35);
  opacity: 0.8;
}

.hero-card::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 2px solid rgba(255, 138, 31, 0.25);
}

.card-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.7rem;
  color: var(--accent-soft);
  margin-bottom: 1rem;
}

.hero-card h2 {
  font-size: 2.2rem;
  margin-bottom: 0.2rem;
}

.card-role {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.card-info {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.card-info span,
.contact-info span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-soft);
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.02);
}

.section-title {
  margin-bottom: 2.5rem;
}

.section-title h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem;
}

.card,
.listing,
.stat-card,
.about-panel {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 1.8rem;
  backdrop-filter: blur(8px);
}

.card h3,
.listing h3,
.stat-card h3 {
  margin-bottom: 0.6rem;
  color: var(--accent-soft);
}

.card p,
.listing p,
.stat-card p {
  color: var(--muted);
}

.listing-tag {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  margin-bottom: 0.9rem;
  color: var(--accent-soft);
}

.center {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: center;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.pill-row span {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--accent-soft);
}

.about-panel ul {
  list-style: none;
  display: grid;
  gap: 0.9rem;
  color: var(--muted);
}

.about-panel li::before {
  content: "◆";
  color: var(--accent-soft);
  margin-right: 0.6rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}

.contact-info {
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  background: var(--panel-soft);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(9, 13, 32, 0.85);
  color: var(--text);
  font-family: inherit;
}

.page-hero {
  padding: 4.5rem 0 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.breadcrumb {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.page-meta {
  display: grid;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.page-meta strong {
  color: var(--accent-soft);
  font-weight: 600;
}

.page-panel {
  background: var(--panel-soft);
  border-radius: 22px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.page-panel .hero-actions {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.page-panel .page-meta {
  margin-top: 0.8rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.tag-list span {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--accent-soft);
}

.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.6rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: grid;
  gap: 0.8rem;
}

.footer-logo {
  width: 200px;
  height: 90px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-note,
.footer-copy {
  color: var(--muted);
}

.footer-label {
  color: var(--accent-soft);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.6rem;
}

.footer-grid a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-grid a:hover {
  color: var(--accent-soft);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.6rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 19, 45, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-copy {
  text-align: center;
  font-size: 0.8rem;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: rgba(9, 15, 36, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "logo toggle"
      "links links";
    align-items: center;
    gap: 0.8rem 0.6rem;
  }

  .logo {
    grid-area: logo;
    justify-content: flex-start;
  }

  .nav-toggle-label {
    display: flex;
    grid-area: toggle;
    justify-self: end;
  }

  .nav-links {
    grid-area: links;
  }

  .nav-toggle:checked + .nav-toggle-label + .nav-links {
    display: flex;
  }

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

  .hero {
    padding: 3.5rem 0 3rem;
  }

  .hero-text {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    text-align: center;
  }
}

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

.glass {
  background: var(--panel-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 1.8rem;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.hero-badges {
  display: grid;
  gap: 1rem;
}

.badge {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  background: rgba(13, 21, 52, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1f4dad, #2eb6ff);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}

.badge h4 {
  margin-bottom: 0.2rem;
}

.badge p {
  color: var(--muted);
  font-size: 0.9rem;
}

.focus-list {
  margin-top: 1.6rem;
  display: grid;
  gap: 0.8rem;
}

.focus-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 1rem;
  border-radius: 14px;
  background: rgba(15, 23, 54, 0.8);
  border: 1px solid rgba(46, 182, 255, 0.1);
  font-size: 0.9rem;
}

.focus-item strong {
  color: var(--accent-soft);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.4rem;
}

.metric-card {
  background: var(--panel-solid);
  border-radius: 18px;
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.metric-card h3 {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.metric-card span {
  color: var(--muted);
  font-size: 0.85rem;
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
}

.stack-card {
  background: var(--panel-solid);
  border-radius: 20px;
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stack-tags {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.stack-tags span {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(46, 182, 255, 0.1);
  color: var(--text);
  font-size: 0.78rem;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: center;
}

.list-check {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  color: var(--muted);
}

.list-check li::before {
  content: "✓";
  color: var(--accent);
  margin-right: 0.6rem;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.logo-tile {
  background: rgba(12, 19, 45, 0.8);
  border-radius: 16px;
  padding: 1rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 0.85rem;
}

.map-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}

.map-card {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  padding: 1.8rem;
  display: grid;
  gap: 1.2rem;
  backdrop-filter: blur(8px);
}

.map-card h3 {
  color: var(--accent-soft);
  font-size: 1.05rem;
}

.map-embed {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.map-embed iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}

.job-card {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 1.6rem;
  display: grid;
  gap: 0.8rem;
  backdrop-filter: blur(8px);
}

.job-card h3 {
  color: var(--accent-soft);
}

.job-meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.apply-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.6rem;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sheen {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-text,
.hero-card,
.section-title,
.page-panel,
.contact-form,
.card,
.listing,
.stat-card,
.about-panel,
.metric-card,
.stack-card,
.testimonial,
.timeline-item,
.logo-tile,
.map-card {
  animation: fadeUp 0.8s ease both;
}

.card,
.listing,
.stat-card,
.about-panel,
.metric-card,
.stack-card,
.testimonial,
.timeline-item,
.logo-tile,
.map-card,
.page-panel,
.contact-form {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover,
.listing:hover,
.stat-card:hover,
.about-panel:hover,
.metric-card:hover,
.stack-card:hover,
.testimonial:hover,
.timeline-item:hover,
.logo-tile:hover,
.map-card:hover,
.page-panel:hover,
.contact-form:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(6, 12, 38, 0.45);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  background: rgba(12, 19, 45, 0.8);
  border-radius: 16px;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonial {
  background: rgba(12, 19, 45, 0.9);
  border-radius: 20px;
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial p {
  color: var(--muted);
  margin-top: 0.6rem;
}

.cta {
  background: linear-gradient(135deg, rgba(46, 182, 255, 0.15), rgba(255, 138, 31, 0.15));
  border-radius: 26px;
  padding: 2.6rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}
