:root {
  color-scheme: dark;
  --bg: #050d18;
  --panel: rgba(9, 25, 44, 0.88);
  --panel-border: rgba(255, 206, 84, 0.26);
  --text: #f7f9fc;
  --muted: #c0cad8;
  --gold: #f0b42f;
  --gold-light: #ffe17a;
  --shadow: rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 210, 82, 0.16), transparent 19rem),
    radial-gradient(circle at 16% 88%, rgba(35, 145, 205, 0.16), transparent 24rem),
    linear-gradient(145deg, #030711 0%, var(--bg) 48%, #0a1d33 100%);
}

.landing {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(18px, 5vw, 42px);
}

.panel {
  width: min(620px, 100%);
  min-height: min(560px, calc(100svh - 36px));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(34px, 7vw, 72px) clamp(22px, 6vw, 64px);
  border: 1px solid var(--panel-border);
  border-radius: clamp(22px, 4vw, 30px);
  background: linear-gradient(180deg, rgba(14, 34, 59, 0.92), var(--panel));
  box-shadow: 0 30px 90px var(--shadow);
}

.logo {
  display: block;
  width: clamp(136px, 25vw, 178px);
  height: clamp(136px, 25vw, 178px);
  object-fit: contain;
  border-radius: clamp(22px, 4vw, 32px);
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.42));
}

.brand {
  margin: clamp(22px, 4.5vw, 32px) 0 0;
  color: var(--gold-light);
  font-size: clamp(1.18rem, 4vw, 1.56rem);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: clamp(0.14em, 1vw, 0.22em);
  text-transform: uppercase;
}

.domain {
  margin: clamp(24px, 4.5vw, 36px) 0 clamp(44px, 7vw, 62px);
  color: var(--gold-light);
  font-size: clamp(1.34rem, 5.6vw, 2.18rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: clamp(0.03em, 0.6vw, 0.08em);
  text-transform: lowercase;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.text {
  max-width: 500px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(0.98rem, 3.2vw, 1.1rem);
  line-height: 1.62;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  margin-top: clamp(28px, 5vw, 34px);
  padding: 0 27px;
  border-radius: 999px;
  color: #07111e;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-size: clamp(0.96rem, 3vw, 1rem);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 36px rgba(240, 180, 47, 0.26);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 44px rgba(240, 180, 47, 0.34);
}

.button:focus-visible {
  outline: 3px solid rgba(255, 225, 122, 0.44);
  outline-offset: 4px;
}

@media (max-width: 480px) {
  .landing {
    padding: 14px;
  }

  .panel {
    min-height: calc(100svh - 28px);
  }

  .brand {
    margin-top: 22px;
  }

  .domain {
    margin-top: 26px;
    margin-bottom: 40px;
  }
}

@media (max-width: 360px) {
  .logo {
    width: 120px;
    height: 120px;
  }

  .brand {
    font-size: 1.08rem;
    letter-spacing: 0.12em;
  }

  .domain {
    font-size: 1.42rem;
    margin-top: 24px;
    margin-bottom: 34px;
  }

  .text {
    font-size: 0.94rem;
  }
}
