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

:root {
  --color-blue: #2e3d54;
  --color-beige: #ebe6db;
  --color-white: #ffffff;
}

html {
  font-size: 16px;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: 'aglet-mono', monospace;
  margin: 0;
}

.hero {
  width: 100vw;
  height: 80vh;
  background-color: var(--color-blue);
  color: var(--color-beige);
  display: flex;
  align-items: center;
  padding-left: 6vw;
  padding-right: 6vw;
}

.hero-content {
}

.logo {
  margin-bottom: 2rem;
height: 67px;
  width: auto;
}

.footer {
  width: 100vw;
  height: 20vh;
  background-color: var(--color-beige);
  color: var(--color-blue);
  display: flex;
  align-items: center;
  padding-left: 6vw;
  padding-right: 6vw;
}

.headline {
  font-size: clamp(2rem, 5.5vw, 90px);
  font-weight: 200;
  line-height: 1.05;
  letter-spacing: -0.02em;
  word-spacing: -0.25em;
  text-transform: uppercase;
  color: var(--color-white);
margin-bottom: 6rem;
}

.headline span {
  display: block;
  white-space: nowrap;
}

.subcopy {
  font-size: 1.125rem;
  line-height: 1.6;
  opacity: 0.8;
  text-transform: uppercase;
}

.progress-section {
}

.progress-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--color-beige);
  border-radius: 8px;
  padding: 10px 15px;
}

.progress-label {
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 200;
  letter-spacing: -0.02em;
  white-space: nowrap;
  color: var(--color-blue);
}

.progress-track {
  flex: 1;
  height: 33px;
  background-color: var(--color-white);
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background-color: var(--color-blue);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}

.progress-shine {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: 999px 999px 0 0;
}

.contact-links {
  display: flex;
  gap: 3rem;
}

.contact-link {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 400;
  color: var(--color-blue);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
gap: 0.5em;
}

.contact-link .arrow {
  display: inline-block;
  height: 0.65em;
  width: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.contact-link:hover .arrow {
  transform: rotate(-90deg);
  filter: brightness(0) invert(1);
}

.contact-link:hover {
  color: var(--color-white);
  transform: translateY(-4px);
}

/* Small laptop */
@media (max-width: 1366px) {
  .hero {
    height: 75vh;
  }
  .footer {
    height: 25vh;
  }
  .logo {
    height: 60px;
  }
  .headline {
    margin-bottom: 4rem;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .hero {
    height: 72vh;
  }
  .footer {
    height: 28vh;
  }
  .logo {
    height: 50px;
  }
  .headline {
    margin-bottom: 3rem;
  }
}

/* Tablet portrait / large mobile */
@media (max-width: 768px) {
  .hero {
    height: 70vh;
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .footer {
    height: 30vh;
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .logo {
    height: 45px;
  }
  .headline {
    margin-bottom: 2.5rem;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .hero {
    height: 65vh;
  }
  .footer {
    height: 35vh;
  }
  .logo {
    height: 34px;
  }
  .headline {
    margin-bottom: 2rem;
  }
  .contact-links {
    flex-direction: column;
    gap: 1rem;
  }
}
