@font-face {
  font-family: "Unytour Display Pro";
  src: url("fonts/UnytourDisplayPro.woff2") format("woff2"),
       url("fonts/UnytourDisplayPro.woff") format("woff"),
       url("fonts/UnytourDisplayPro.otf") format("opentype"),
       url("fonts/UnytourDisplayPro.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --display: "Unytour Display Pro", "Arial Narrow", "Helvetica Neue", sans-serif;
  --mono: "Everett Mono", ui-monospace, "SFMono-Regular", "Menlo", monospace;
}

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

::selection {
  background: #ff6a00;
  color: #fff;
}
::-moz-selection {
  background: #ff6a00;
  color: #fff;
}

html, body { height: 100%; }

html, body { overscroll-behavior: none; }

body {
  background: #000;
  color: #fff;
  font-family: var(--display);
  overflow-x: hidden;
}

/* Navbar: full-width, borderless; liquid-glass (black tones) only on hover */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 5%;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
.navbar:hover,
.navbar.is-scrolled {
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
}

.navbar__brand {
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
}

.navbar__logo {
  display: block;
  height: clamp(28px, 2.9vw, 38px);
  width: auto;
}

.navbar__links {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
  display: flex;
  gap: 40px;
}

.navbar__links a {
  font-family: "Twk Everett Regular", "Twk Everett", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.25s ease;
}
.navbar__links a:hover { opacity: 1; }

/* Each section is full screen */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  overflow: hidden;
  background: #000;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: left;
  width: 90%;
  margin: 0 auto;
  padding: 0 0 8vh;
}

.hero__title {
  font-family: var(--mono);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  word-spacing: -0.15em;
  line-height: 0.95;
  font-size: clamp(2.2rem, 7vw, 6rem);
  color: #fff;
}

.hero__desc {
  margin-top: 18px;
  font-family: "Twk Everett Regular", "Twk Everett", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #fff;
  opacity: 0.85;
}

.hero__actions {
  margin-top: 40px;
  margin-left: 0.5em;
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* Orange outline button: fills with orange on hover, text stays white */
.btn {
  display: inline-block;
  border: 1px solid #ff6a00;
  border-radius: 0;
  text-decoration: none;
  background: transparent;
  color: #fff;
  font-family: var(--mono);
  letter-spacing: 0.18em;
  font-size: clamp(0.72rem, 1.1vw, 0.9rem);
  padding: 13px 30px;
  cursor: pointer;
  transition: background 0.4s ease 0.12s, color 0.4s ease 0.12s, border-color 0.4s ease 0.12s, transform 0.4s ease 0.12s;
}
.btn:hover { background: #ff6a00; color: #fff; border-color: #ff6a00; }

/* Earth image anchored to bottom, blending into black */
.hero__earth {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1600px;
  z-index: 1;
  pointer-events: none;
}
.hero__earth img {
  display: block;
  width: 100%;
  height: auto;
}

/* Footer: full screen, matching section 1 dimensions */
.footer {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #000;
  padding: 0 24px;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.35) 50%,
    transparent
  );
}

.footer__content {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  display: flex;
  justify-content: flex-start;
}

.footer__wordmark {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  display: block;
  transform: scaleY(1.4);
  transform-origin: bottom;
  opacity: 0.18;
  pointer-events: none;
}

.footer__copy {
  position: relative;
  z-index: 1;
  font-family: "Helvetica Now Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 0.04em;
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  color: #fff;
  opacity: 0.5;
}

@media (max-width: 760px) {
  .hero__earth { width: 180%; max-width: none; }

  /* Keep navbar logo aligned with the footer copyright (both at 5%) */
  .navbar { padding: 12px 5%; gap: 12px; }
  .navbar__logo { height: 26px; }
  .navbar__links { gap: 18px; }
  .navbar__links a { font-size: 0.85rem; }

  .hero__actions { margin-top: 28px; }
  .btn { padding: 12px 26px; }

  /* Slightly stronger vertical scale so the wordmark stays prominent */
  .footer__wordmark { transform: scaleY(1.6); }
  .footer__content { bottom: 18px; }
}
