* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background: #07152f;
  color: #ffffff;
  overflow: hidden;
}

body {
  min-height: 100svh;
}

.page-shell {
  width: 100vw;
  height: 100svh;
  padding: clamp(10px, 1.5vw, 22px);
}

.landing {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: clamp(18px, 2vw, 34px);
  background: #07152f;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  isolation: isolate;
}

.background-photo {
  position: absolute;
  inset: 0;
  background-image: url("images/hero.jpg");
  background-size: cover;
  background-position: center center;
  transform: scale(1.01);
  z-index: -3;
}

.shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 13, 32, 0.98) 0%, rgba(3, 13, 32, 0.82) 28%, rgba(3, 13, 32, 0.30) 58%, rgba(3, 13, 32, 0.65) 100%),
    linear-gradient(0deg, rgba(3, 13, 32, 0.96) 0%, rgba(3, 13, 32, 0.15) 45%, rgba(3, 13, 32, 0.52) 100%);
  z-index: -2;
}

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: clamp(16px, 2vw, 30px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(20px, 2vw, 34px);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: clamp(42px, 4.5vw, 68px);
  aspect-ratio: 1;
  border-radius: 18px;
  background: linear-gradient(135deg, #0d6efd, #103c91);
  box-shadow: 0 14px 28px rgba(13, 110, 253, 0.35);
  font-weight: 900;
}

.top-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 20px;
  color: #ffffff;
  text-decoration: none;
  background: rgba(2, 18, 46, 0.78);
  backdrop-filter: blur(14px);
}

.phone-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #0d6efd;
}

.top-phone small,
.top-phone strong {
  display: block;
  line-height: 1.05;
}

.top-phone small {
  font-size: 13px;
  color: #bcd4ff;
  font-weight: 700;
}

.top-phone strong {
  margin-top: 4px;
  font-size: clamp(18px, 2vw, 28px);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(290px, 0.92fr) minmax(260px, 0.72fr);
  align-items: end;
  gap: clamp(18px, 4vw, 70px);
  height: calc(100% - 170px);
  padding: 0 clamp(18px, 4vw, 70px) clamp(24px, 4vw, 70px);
}

.copy {
  max-width: 680px;
  align-self: center;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(13, 110, 253, 0.18);
  color: #c9ddff;
  font-size: clamp(12px, 1.1vw, 15px);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(54px, 8vw, 136px);
  line-height: 0.84;
  letter-spacing: -0.08em;
  font-weight: 900;
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.42);
}

h1 span {
  color: #2f7dff;
}

.tagline {
  width: min(560px, 100%);
  margin: clamp(18px, 2vw, 28px) 0 0;
  color: #eef5ff;
  font-size: clamp(17px, 1.5vw, 24px);
  line-height: 1.35;
  font-weight: 600;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(22px, 3vw, 42px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 16px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -0.02em;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: linear-gradient(135deg, #0d6efd, #0644b8);
  box-shadow: 0 18px 34px rgba(13, 110, 253, 0.32);
}

.btn.ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.hiring-card {
  justify-self: end;
  align-self: end;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  width: min(430px, 100%);
  padding: clamp(18px, 2vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.92), rgba(5, 39, 101, 0.92));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
}

.hiring-icon {
  display: grid;
  place-items: center;
  width: clamp(54px, 5vw, 72px);
  height: clamp(54px, 5vw, 72px);
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  font-size: clamp(26px, 3vw, 34px);
}

.hiring-card p {
  margin: 0;
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.hiring-card span {
  display: block;
  margin-top: 10px;
  color: #e8f1ff;
  font-size: clamp(13px, 1.2vw, 17px);
  line-height: 1.35;
  font-weight: 600;
}

.bottom-info {
  position: absolute;
  left: clamp(14px, 2vw, 28px);
  right: clamp(14px, 2vw, 28px);
  bottom: clamp(14px, 2vw, 28px);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.bottom-info article {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: clamp(12px, 1.5vw, 18px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(2, 18, 46, 0.72);
  backdrop-filter: blur(16px);
}

.bottom-info span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(13, 110, 253, 0.18);
  color: #65a0ff;
  font-size: 23px;
  font-weight: 900;
}

.bottom-info strong,
.bottom-info small {
  display: block;
}

.bottom-info strong {
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 900;
}

.bottom-info small {
  margin-top: 4px;
  color: #cddcff;
  font-size: clamp(11px, 1vw, 14px);
  line-height: 1.25;
}

@media (max-width: 900px) {
  .page-shell {
    padding: 0;
  }

  .landing {
    border-radius: 0;
  }

  .background-photo {
    background-position: center top;
  }

  .shade {
    background:
      linear-gradient(180deg, rgba(3, 13, 32, 0.96) 0%, rgba(3, 13, 32, 0.72) 42%, rgba(3, 13, 32, 0.95) 100%),
      linear-gradient(90deg, rgba(3, 13, 32, 0.72), rgba(3, 13, 32, 0.42));
  }

  .topbar {
    padding: 16px;
  }

  .brand span:last-child {
    font-size: 20px;
  }

  .top-phone {
    padding: 9px 11px;
    border-radius: 16px;
  }

  .phone-icon {
    display: none;
  }

  .top-phone small {
    font-size: 11px;
  }

  .top-phone strong {
    font-size: 15px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    align-content: center;
    height: calc(100% - 150px);
    padding: 0 18px 118px;
    gap: 18px;
  }

  .copy {
    align-self: end;
  }

  h1 {
    font-size: clamp(56px, 18vw, 92px);
  }

  .tagline {
    font-size: 16px;
    max-width: 360px;
  }

  .actions {
    gap: 10px;
    margin-top: 20px;
  }

  .btn {
    min-height: 46px;
    padding: 0 16px;
    border-radius: 13px;
    font-size: 14px;
  }

  .hiring-card {
    justify-self: stretch;
    align-self: end;
    padding: 14px;
    border-radius: 20px;
  }

  .hiring-icon {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }

  .hiring-card p {
    font-size: 24px;
  }

  .hiring-card span {
    font-size: 13px;
  }

  .bottom-info {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    left: 8px;
    right: 8px;
    bottom: 8px;
  }

  .bottom-info article {
    flex-direction: column;
    text-align: center;
    gap: 5px;
    padding: 8px 4px;
    border-radius: 14px;
  }

  .bottom-info span {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    font-size: 16px;
  }

  .bottom-info strong {
    font-size: 11px;
  }

  .bottom-info small {
    display: none;
  }
}

@media (max-width: 420px) {
  .brand-mark {
    width: 38px;
    border-radius: 13px;
  }

  .brand span:last-child {
    font-size: 17px;
  }

  .top-phone strong {
    font-size: 13px;
  }

  .eyebrow {
    font-size: 10px;
    margin-bottom: 10px;
  }

  .hero-content {
    padding-inline: 14px;
    padding-bottom: 104px;
  }

  .actions {
    flex-direction: column;
    align-items: stretch;
    width: min(260px, 100%);
  }

  .hiring-card {
    grid-template-columns: 1fr;
  }

  .hiring-icon {
    display: none;
  }
}
