:root {
  --panel: #00558b;
  --button: #24bce6;
  --button-hover: #35c8ec;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  color: var(--text);
  background: #071014;
}

.page-shell {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: clamp(96px, 13vh, 152px) 24px clamp(52px, 8vh, 84px);
  isolation: isolate;
}

.page-shell::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background-image: var(--bg-image, url("assets/peak-forest.jpg"));
  background-position: center;
  background-size: cover;
  transform: scale(1.015);
}

.bg-peak {
  --bg-image: url("assets/peak-forest.jpg");
}

.bg-becke {
  --bg-image: url("assets/becke-bg.png");
}

.bg-fors {
  --bg-image: url("assets/fors-bg-flag.jpg");
}

.bg-becke::before {
  background-position: center 38%;
}

.bg-fors::before {
  background-position: center center;
}

.page-shell::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 46% 44%, rgba(6, 21, 25, 0.08), rgba(3, 8, 10, 0.4) 42%, rgba(1, 5, 7, 0.78) 100%),
    linear-gradient(180deg, rgba(1, 6, 8, 0.64), rgba(1, 7, 10, 0.44) 45%, rgba(0, 0, 0, 0.68));
}

.ambient-header {
  position: absolute;
  top: clamp(28px, 4.8vw, 54px);
  right: clamp(26px, 4vw, 52px);
  left: clamp(26px, 4vw, 52px);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  pointer-events: none;
}

.header-left {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 32px);
}

.menu-mark {
  display: inline-grid;
  width: 20px;
  gap: 6px;
}

.menu-mark span {
  display: block;
  height: 1px;
  background: currentColor;
}

.peak-wordmark {
  display: grid;
  gap: 2px;
  text-align: right;
}

.peak-wordmark span {
  font-size: 21px;
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: 4px;
}

.peak-wordmark small {
  font-size: 5px;
  font-weight: 700;
  letter-spacing: 1.1px;
}

.notice {
  position: relative;
  width: 720px;
  height: 448px;
  max-width: calc(100vw - 48px);
  background: var(--panel);
}

.sakra-logo {
  position: absolute;
  top: 37px;
  left: 64px;
  display: block;
  width: 128px;
  height: auto;
  filter: brightness(0) invert(1);
}

h1 {
  position: absolute;
  top: 104px;
  right: 62px;
  left: 62px;
  margin: 0;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.notice-copy {
  position: absolute;
  top: 168px;
  right: 55px;
  left: 55px;
  display: grid;
  gap: 15px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.16;
}

.notice-copy p {
  margin: 0;
}

.actions {
  position: absolute;
  right: 95px;
  bottom: 31px;
  left: 95px;
  display: flex;
  gap: 92px;
  align-items: center;
  justify-content: center;
}

.action-button {
  display: inline-flex;
  width: 218px;
  height: 53px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: var(--button);
  font-size: 16px;
  font-weight: 450;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.action-button:hover,
.action-button:focus-visible {
  background: var(--button-hover);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}

.action-button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.side-dots {
  position: absolute;
  right: clamp(28px, 3.8vw, 64px);
  top: 50%;
  display: grid;
  gap: 7px;
  transform: translateY(-50%);
  pointer-events: none;
}

.side-dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
}

.scroll-mark {
  position: absolute;
  bottom: clamp(30px, 4vw, 52px);
  left: clamp(30px, 4vw, 54px);
  width: 14px;
  height: 24px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  pointer-events: none;
}

.scroll-mark::after {
  position: absolute;
  top: 5px;
  left: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  content: "";
  background: rgba(255, 255, 255, 0.82);
  transform: translateX(-50%);
}

@media (max-width: 720px) {
  .page-shell {
    align-items: start;
    padding: 112px 18px 42px;
  }

  .ambient-header {
    top: 24px;
    right: 20px;
    left: 20px;
  }

  .header-left span:not(.menu-mark):not(:first-of-type) {
    display: none;
  }

  .notice {
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 30px 24px 26px;
  }

  .sakra-logo {
    position: static;
    display: block;
    width: 122px;
    margin-bottom: 18px;
  }

  h1 {
    position: static;
    margin-bottom: 24px;
    text-align: left;
    font-size: clamp(23px, 7vw, 26px);
  }

  .notice-copy {
    position: static;
    gap: 13px;
    font-size: 12px;
    line-height: 1.22;
  }

  .actions {
    position: static;
    grid-template-columns: 1fr;
    display: grid;
    gap: 14px;
    margin-top: 30px;
    padding: 0;
  }

  .action-button {
    width: 100%;
    min-height: 50px;
    height: auto;
  }

  .side-dots,
  .scroll-mark {
    display: none;
  }
}

@media (max-width: 380px) {
  .notice {
    padding-right: 20px;
    padding-left: 20px;
  }

  .action-button {
    font-size: 15px;
  }
}
