:root {
  --bg-dark: #03152f;
  --bg-mid: #063d79;
  --bg-bright: #1186ff;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.92);
  --legal: rgba(255, 255, 255, 0.88);
  --link: #65f2ff;
  --orange: rgba(255, 125, 31, 0.9);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg-dark);
  color: var(--white);
}

body {
  min-height: 100vh;
}

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

a {
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: linear-gradient(180deg, #03214a 0%, #06386f 58%, #062b56 100%);
}

/* Background placeholder */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22; /* Replace/remove later when real background is used */
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 18, 43, 0.6), rgba(3, 24, 55, 0.3)),
    linear-gradient(135deg, rgba(3, 21, 47, 0.7), rgba(17, 134, 255, 0.12));
}

/* Decorative shapes similar to the reference */
.shape,
.line {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.shape-left-circle {
  left: -10vw;
  bottom: -13vw;
  width: 52vw;
  height: 52vw;
  min-width: 220px;
  min-height: 220px;
  max-width: 440px;
  max-height: 440px;
  border-radius: 50%;
  background: linear-gradient(135deg, #168dff 0%, #04366a 100%);
  opacity: 0.88;
}

.shape-right-panel {
  top: 0;
  right: -8vw;
  width: 34vw;
  height: 62vh;
  min-width: 180px;
  background: linear-gradient(180deg, #012e63 0%, #127ef0 100%);
  clip-path: polygon(30% 0, 100% 0, 72% 50%, 100% 100%, 28% 100%, 0 50%);
  opacity: 0.95;
}

.shape-bottom-outline {
  right: -38px;
  bottom: -32px;
  width: 130px;
  height: 170px;
  border: 1.5px solid var(--orange);
  border-radius: 36px;
  opacity: 0.9;
}

.line-top-left {
  top: 0;
  left: 24px;
  width: 210px;
  height: 275px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-right: none;
  border-bottom: none;
  border-radius: 0 0 0 34px;
  opacity: 0.45;
}

.line-bottom-left {
  left: -30px;
  bottom: 95px;
  width: 175px;
  height: 255px;
  border-left: 1.5px solid rgba(255, 255, 255, 0.92);
  border-top: 1.5px solid rgba(255, 255, 255, 0.92);
  transform: skewX(-28deg);
  opacity: 0.9;
}

.content {
  position: relative;
  z-index: 2;
  width: min(100%, 880px);
  min-height: min(100vh, 900px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding-top: 5vh;
  padding-bottom: 12vh;
}

.logo-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: clamp(90px, 17vh, 160px);
}

.logo-placeholder {
  width: min(340px, 62vw);  
  object-fit: contain;    
}

.info-wrap {
  width: min(100%, 720px);
  margin-top: 12rem;
}

.contact-line {
  margin: 0 0 8px;
  font-size: clamp(8px, 1.55vw, 18px);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--muted);
}

.address-line {
  margin: 0 0 18px;
  font-size: clamp(11px, 1.05vw, 15px);
  line-height: 1.35;
  font-weight: 700;
  color: var(--muted);
}

.legal-text {
  width: min(100%, 600px);
  margin: 0 auto 14px;
  font-size: clamp(8px, 0.72vw, 10px);
  line-height: 1.25;
  font-weight: 400;
  color: var(--legal);
}

.employment-wrap {
  margin: 0;
}

.employment-link {
  font-size: clamp(10px, 0.88vw, 12px);
  line-height: 1.2;
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Tablet */
@media (max-width: 900px) {
  .content {
    padding-top: 16vh;
    padding-bottom: 10vh;
  }

  .logo-wrap {
    margin-bottom: 110px;
  }

  .info-wrap {
    width: min(100%, 620px);
    margin-top: 6rem;
  }

  .shape-right-panel {
    width: 40vw;
    height: 52vh;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .hero {
    padding: 18px 12px;
  }  

  .logo-wrap {
    margin-bottom: 90px;
  }  

  .contact-line {
    font-size: 13px;
    line-height: 1.45;
  }

  .address-line {
    font-size: 11px;
    line-height: 1.45;
    padding-inline: 6px;
  }

  .legal-text {
    font-size: 8px;
    line-height: 1.35;
    width: min(100%, 310px);
  }

  .employment-link {
    font-size: 10px;
  }

  .shape-left-circle {
    width: 72vw;
    height: 72vw;
    left: -20vw;
    bottom: -20vw;
  }

  .shape-right-panel {
    width: 46vw;
    height: 38vh;
    right: -12vw;
  }

  .shape-bottom-outline {
    width: 90px;
    height: 130px;
    right: -24px;
    bottom: -18px;
    border-radius: 24px;
  }

  .line-top-left {
    left: 14px;
    width: 130px;
    height: 180px;
  }

  .line-bottom-left {
    left: -50px;
    bottom: 100px;
    width: 110px;
    height: 175px;
  }
}