:root {
  color-scheme: dark;
  --ink: #f7fbf7;
  --muted: rgba(247, 251, 247, 0.72);
  --line: rgba(247, 251, 247, 0.18);
  --surface: rgba(4, 12, 15, 0.52);
  --accent: #bff8da;
  --accent-strong: #f2d68c;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: #050b0f;
  color: var(--ink);
}

a {
  color: inherit;
}

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

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  padding: 28px clamp(20px, 5vw, 72px);
  isolation: isolate;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__image {
  background-image: url("assets/landingpage_background.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(2, 7, 10, 0.82), rgba(2, 7, 10, 0.58) 34%, rgba(2, 7, 10, 0.18) 68%, rgba(2, 7, 10, 0.08)),
    linear-gradient(180deg, rgba(2, 7, 10, 0.12), rgba(2, 7, 10, 0.36) 72%, rgba(2, 7, 10, 0.62));
}

.site-header,
.hero__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.site-header {
  align-self: start;
}

.brand,
.contact-link,
.hero__footer a {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand__mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0;
}

.contact-link,
.hero__footer {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.contact-link,
.hero__footer a,
.button {
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.contact-link:hover,
.hero__footer a:hover {
  color: var(--ink);
}

.hero__content {
  align-self: center;
  justify-self: center;
  width: min(1180px, 100%);
  padding: 14vh 0 11vh;
  text-align: left;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: clamp(0.78rem, 1.4vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(3.4rem, 8vw, 7.25rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: balance;
}

.lede {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.6;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  max-width: 620px;
  margin: 26px 0 0;
  padding: 0;
  color: rgba(247, 251, 247, 0.88);
  font-size: clamp(0.98rem, 1.5vw, 1.08rem);
  font-weight: 600;
  line-height: 1.35;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
}

.feature-list li::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.location {
  margin: 22px 0 0;
  color: var(--accent);
  font-size: clamp(0.92rem, 1.4vw, 1rem);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 34px;
  padding: 0 24px;
  border: 1px solid rgba(191, 248, 218, 0.62);
  border-radius: 999px;
  background: rgba(191, 248, 218, 0.13);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  backdrop-filter: blur(12px);
}

.button:hover {
  border-color: var(--accent-strong);
  background: rgba(242, 214, 140, 0.16);
  transform: translateY(-1px);
}

.hero__footer {
  align-self: end;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

@media (max-width: 680px) {
  .hero {
    min-height: 100svh;
    padding: 20px;
  }

  .site-header,
  .hero__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .contact-link {
    display: none;
  }

  .hero__content {
    padding: 9vh 0 8vh;
    text-align: left;
  }

  h1 {
    font-size: clamp(2.9rem, 17vw, 4.8rem);
  }

  .lede {
    margin-left: 0;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .hero__footer {
    font-size: 0.9rem;
  }

  .hero__footer span[aria-hidden="true"] {
    display: none;
  }
}
