:root {
  --primary: #0e3b56;
  --primary-dark: #082b40;
  --text-main: #071725;
  --text-muted: #4d5c68;
  --white: #ffffff;
  --border: rgba(7, 23, 37, 0.12);
  --container-width: 1360px;
}

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

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

body {
  font-family: "Inter", sans-serif;
  color: var(--text-main);
  background: var(--white);
}

.landing-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(calc(100% - 40px), var(--container-width));
  margin-inline: auto;
}

/* Header */

.site-header {
  position: relative;
  z-index: 20;

  height: 84px;
  flex: 0 0 76px;

  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.header-content {
  height: 84px;

  display: flex;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-logo-image {
  display: block;

  width: 56px;
  height: 56px;
  min-width: 56px;
  max-width: 56px;
  min-height: 56px;
  max-height: 56px;

  object-fit: contain;
  object-position: center;

  flex: 0 0 56px;
}

.brand-name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.5px;
}

/* Hero */

.hero {
  position: relative;
  flex: 1;

  min-height: calc(100vh - 84px - 55px);

  display: flex;
  align-items: center;
  justify-content: center;

  background-image: url("/uv-hero-bg-v1.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background: rgba(255, 255, 255, 0.45);

  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;

  min-height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  padding-top: 64px;
  padding-bottom: 64px;
}

.hero-copy {
  width: 100%;
  max-width: 1000px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  margin-inline: auto;

  text-align: center;
}

/* Main title */

.hero-copy h1 {
  margin: 0;

  color: var(--text-main);

  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(56px, 5.3vw, 78px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -3.4px;

  text-align: center;
}

.hero-copy h1 span {
  display: block;
}

/* Subtitle */

.hero-copy p {
  max-width: 820px;

  margin: 26px auto 0;

  color: var(--text-muted);

  font-family: "Inter", sans-serif;
  font-size: clamp(21px, 1.7vw, 27px);
  font-weight: 400;
  line-height: 1.45;

  text-align: center;
}

.hero-copy p span {
  display: block;
}

/* Coming Soon */

.coming-soon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 46px;
  padding: 22px 48px;

  border: 1px solid rgba(14, 59, 86, 0.22);
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-dark);

  box-shadow:
    0 18px 40px rgba(7, 23, 37, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 4px;

  white-space: nowrap;
}

/* Footer */

.site-footer {
  position: relative;
  z-index: 10;

  min-height: 55px;
  flex: 0 0 55px;

  display: flex;
  align-items: center;

  background: var(--white);
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;

  padding-top: 16px;
  padding-bottom: 16px;

  color: var(--text-muted);

  font-size: 13px;
  line-height: 1.4;

  text-align: center;
}

/* Tablet */

@media (max-width: 900px) {
  .hero {
    background-position: 62% center;
  }

  .hero-overlay {
    background: rgba(255, 255, 255, 0.58);
  }

  .hero-content {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .hero-copy h1 {
    font-size: clamp(48px, 7vw, 64px);
    letter-spacing: -2.7px;
  }

  .hero-copy p {
    max-width: 700px;
    font-size: clamp(19px, 2.5vw, 23px);
  }

  .coming-soon {
    padding: 20px 42px;

    font-size: clamp(30px, 2.7vw, 42px);
    letter-spacing: 3px;
  }
}

/* Mobile */

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 28px), var(--container-width));
  }

  .site-header {
    height: 68px;
    flex-basis: 68px;
  }

  .brand-logo-image {
    width: 42px;
    height: 42px;
    min-width: 42px;
    max-width: 42px;
    min-height: 42px;
    max-height: 42px;

    flex-basis: 42px;
  }

  .brand-name {
    font-size: 18px;
  }

  .hero {
    min-height: calc(100vh - 68px - 55px);
    background-position: 67% center;
  }

  .hero-overlay {
    background: rgba(255, 255, 255, 0.64);
  }

  .hero-content {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .hero-copy h1 {
    font-size: 42px;
    line-height: 1.12;
    letter-spacing: -1.8px;
  }

  .hero-copy p {
    max-width: 100%;

    margin-top: 20px;

    font-size: 18px;
    line-height: 1.5;
  }

  .hero-copy p span {
    display: inline;
  }

  .coming-soon {
    width: 100%;

    margin-top: 36px;
    padding: 19px 16px;

    font-size: 29px;
    letter-spacing: 2px;

    white-space: nowrap;
  }

  .footer-content {
    font-size: 12px;
    line-height: 1.5;
  }
}
