@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500&display=swap');

:root {
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.70);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
}

body {
  font-family: "Manrope", Arial, sans-serif;
  background: #111;
  color: var(--text);
}

.page {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 18, 29, 0.76) 0%, rgba(7, 18, 29, 0.43) 42%, rgba(7, 18, 29, 0.10) 100%),
    url("background.jpg") center center / cover no-repeat;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 13, 21, 0.10) 0%, rgba(5, 13, 21, 0.08) 55%, rgba(5, 13, 21, 0.35) 100%);
}

.content {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  padding: clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
}


.hero {
  margin-top: auto;
  margin-bottom: auto;
  transform: translateY(4%);
  max-width: 760px;
}

h1 {
  margin: 0;
  font-size: clamp(3.3rem, 7vw, 7.8rem);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.line {
  width: 68px;
  height: 1px;
  margin: clamp(2rem, 4vw, 3.2rem) 0;
  background: rgba(255,255,255,0.55);
}

p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: -0.02em;
}

footer {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  color: rgba(255,255,255,0.64);
  font-size: 0.88rem;
  font-weight: 400;
}

.separator {
  color: rgba(255,255,255,0.40);
}

@media (max-width: 700px) {
  .page {
    background-position: 58% center;
  }

  .content {
    padding: 2rem 1.5rem;
  }

  .hero {
    transform: none;
  }

  footer {
    font-size: 0.75rem;
    gap: 0.75rem;
  }
}
