:root {
  --vh: 1vh;
  --ink: #ffffff;
  --page-pad: clamp(24px, 5vw, 84px);
  --logo-width: clamp(320px, 34vw, 500px);
  --nav-height: 64px;
}

* {
  box-sizing: border-box;
}

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

body {
  overflow: hidden;
  color: var(--ink);
  background: #030303;
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

img {
  display: block;
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.landing-shell {
  position: relative;
  display: block;
  min-height: calc(var(--vh) * 100);
  padding: var(--page-pad) var(--page-pad) calc(var(--nav-height) + var(--page-pad));
  overflow: hidden;
  isolation: isolate;
}

.landing-shell::before,
.landing-shell::after {
  position: absolute;
  content: "";
  inset: 0;
}

.landing-shell::before {
  z-index: -2;
  background-image: url("assets/bg-img/Desktop version.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.landing-shell::after {
  z-index: -1;
  background:
    radial-gradient(circle at center, rgb(0 0 0 / 0%) 0%, rgb(0 0 0 / 22%) 56%, rgb(0 0 0 / 58%) 100%),
    linear-gradient(180deg, rgb(0 0 0 / 12%) 0%, rgb(0 0 0 / 22%) 100%);
}

.brand-lockup {
  position: absolute;
  z-index: 1;
  top: 40%;
  left: 50%;
  width: min(100% - (var(--page-pad) * 2), 720px);
  transform: translate(-50%, -50%);
}

.brand-logo {
  width: var(--logo-width);
  max-width: 100%;
  height: auto;
  margin-inline: auto;
  filter: drop-shadow(0 18px 34px rgb(0 0 0 / 34%));
}

.announcement {
  position: absolute;
  z-index: 2;
  top: 72%;
  left: 50%;
  margin: 0;
  color: #fff;
  font-size: clamp(1rem, 1.35vw, 1.4rem);
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  text-shadow: 0 2px 10px rgb(0 0 0 / 55%);
  transform: translate(-50%, -50%);
}

.announcement a {
  color: #00b7ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.social-bar {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  height: var(--nav-height);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: linear-gradient(90deg, #00a3ff 0%, #0319db 100%);
}

.social-bar__link {
  display: grid;
  min-width: 0;
  place-items: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: opacity 180ms ease;
}

.social-bar__link:hover {
  opacity: 0.8;
}

.social-bar__link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -6px;
}

.social-icon {
  display: none;
}

@supports (min-height: 100dvh) {
  .landing-shell {
    min-height: 100dvh;
  }
}

@media (max-width: 768px) {
  :root {
    --page-pad: clamp(20px, 6vw, 42px);
    --logo-width: clamp(116px, 35vw, 146px);
    --nav-height: 0px;
  }

  body {
    overflow: hidden;
  }

  .landing-shell {
    padding: var(--page-pad);
  }

  .landing-shell::before {
    background-image: url("assets/bg-img/Phone version.png");
    background-position: center;
  }

  .brand-lockup {
    top: clamp(62px, 10vh, 78px);
    width: min(100% - 40px, 220px);
  }

  .announcement {
    top: 50%;
    width: min(calc(100% - 48px), 270px);
    font-size: clamp(0.54rem, 2.25vw, 0.66rem);
    font-weight: 700;
    line-height: 1.18;
  }

  .social-bar {
    right: auto;
    bottom: max(42px, calc(env(safe-area-inset-bottom) + 36px));
    left: 50%;
    display: flex;
    width: auto;
    height: auto;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: transparent;
    transform: translateX(-50%);
  }

  .social-bar__link {
    width: 18px;
    height: 22px;
    padding: 0;
    font-size: 0;
  }

  .social-bar__link--instagram {
    order: 2;
  }

  .social-bar__link--facebook {
    order: 1;
  }

  .social-bar__link--linkedin {
    order: 3;
  }

  .social-label {
    display: none;
  }

  .social-icon {
    display: block;
    width: 100%;
    height: 100%;
    color: #fff;
    fill: currentColor;
  }

  .social-icon--instagram {
    fill: none;
    stroke: currentColor;
    stroke-width: 4.4;
  }

  .social-icon--instagram circle:last-child {
    fill: currentColor;
    stroke: none;
  }
}

@media (max-width: 380px) {
  :root {
    --logo-width: 124px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
