:root {
  color-scheme: light;
  --ink: #102233;
  --muted: #5f6d78;
  --paper: #ffffff;
  --line: rgb(255 255 255 / 34%);
  --accent: #007c83;
  --accent-dark: #005e64;
  --sun: #f2b763;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #0f2228;
  color: var(--paper);
}

.page-shell {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  z-index: -3;
  background-image: url("./assets/hotel-terrace-remote-work.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgb(10 25 31 / 88%) 0%, rgb(10 25 31 / 72%) 38%, rgb(10 25 31 / 22%) 68%, rgb(10 25 31 / 6%) 100%),
    linear-gradient(180deg, rgb(10 25 31 / 34%) 0%, rgb(10 25 31 / 12%) 52%, rgb(10 25 31 / 52%) 100%);
}

.topbar,
.hero-content {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-weight: 850;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgb(255 255 255 / 14%);
  backdrop-filter: blur(12px);
}

.status {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgb(255 255 255 / 12%);
  padding: 8px 13px;
  font-size: 0.88rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.hero-content {
  display: flex;
  min-height: calc(100vh - 96px);
  flex-direction: column;
  justify-content: center;
  padding: 54px 0 72px;
}

.kicker {
  margin: 0 0 18px;
  color: var(--sun);
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 770px;
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.04;
}

.lead {
  max-width: 660px;
  margin: 0;
  color: rgb(255 255 255 / 84%);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.proof-strip {
  display: grid;
  width: min(760px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 38px;
  background: var(--line);
}

.proof-strip div {
  background: rgb(255 255 255 / 13%);
  padding: 17px 18px;
  backdrop-filter: blur(14px);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  font-size: 1.02rem;
}

.proof-strip span {
  margin-top: 3px;
  color: rgb(255 255 255 / 72%);
  font-size: 0.91rem;
}

@media (max-width: 740px) {
  .hero {
    min-height: auto;
  }

  .hero-image {
    background-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgb(10 25 31 / 92%) 0%, rgb(10 25 31 / 68%) 54%, rgb(10 25 31 / 86%) 100%),
      linear-gradient(90deg, rgb(10 25 31 / 60%), rgb(10 25 31 / 10%));
  }

  .topbar {
    align-items: flex-start;
  }

  .brand span:last-child {
    max-width: 210px;
    line-height: 1.15;
  }

  .hero-content {
    min-height: calc(100vh - 94px);
    padding: 40px 0 42px;
  }

  h1 {
    font-size: clamp(2.15rem, 11vw, 3.4rem);
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }
}
