*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #08090a;
  --panel: rgba(18,19,21,.86);
  --text: #f6f5f1;
  --muted: #9ea1a7;
  --fire: #f28a16;
  --red: #a7251c;
  --border: rgba(255,255,255,.10);
}

html,
body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  background: var(--bg);
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  -webkit-text-size-adjust: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding:
    max(18px, env(safe-area-inset-top))
    14px
    max(18px, env(safe-area-inset-bottom));
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 15% 10%, rgba(167,37,28,.18), transparent 34%),
    radial-gradient(circle at 90% 80%, rgba(242,138,22,.09), transparent 35%),
    linear-gradient(180deg, #090a0b, #070809);
}

.page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  opacity: .15;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,.025) 0 1px,
      transparent 1px 9px
    );
}

.noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.014) 1px, transparent 1px);
  background-size: 30px 30px;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(65px);
  pointer-events: none;
  z-index: -2;
  animation: float 9s ease-in-out infinite alternate;
}

.glow-1 {
  width: 210px;
  height: 210px;
  top: 8%;
  right: -80px;
  background: rgba(167,37,28,.22);
}

.glow-2 {
  width: 170px;
  height: 170px;
  left: -80px;
  bottom: 10%;
  background: rgba(242,138,22,.13);
  animation-delay: -4s;
}

.card {
  width: min(100%, 520px);
  padding: 24px 18px 20px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.035), transparent 45%),
    var(--panel);
  box-shadow: 0 30px 90px rgba(0,0,0,.48);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  animation: enter .7s ease both;
}

.logo-wrap {
  width: 74px;
  height: 74px;
  min-width: 74px;
  max-width: 74px;
  min-height: 74px;
  max-height: 74px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.12);
  background: #101113;
}

.logo-wrap img {
  width: 66px !important;
  height: 66px !important;
  max-width: 66px !important;
  max-height: 66px !important;
  object-fit: contain !important;
  object-position: center !important;
}

.eyebrow {
  margin: 0 0 7px;
  color: var(--fire);
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .16em;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 11vw, 3.5rem);
  line-height: .95;
  letter-spacing: -.05em;
  font-weight: 1000;
}

.tagline {
  margin: 9px 0 16px;
  color: #c7c9cc;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .13em;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #ffd9c0;
  background: rgba(242,138,22,.10);
  border: 1px solid rgba(242,138,22,.22);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .11em;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--fire);
  box-shadow: 0 0 15px rgba(242,138,22,.75);
  animation: pulse 1.6s ease-in-out infinite;
}

.message {
  margin: 17px auto 0;
  max-width: 430px;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.55;
}

.quote {
  margin-top: 16px;
  padding: 13px 14px;
  border-radius: 16px;
  color: #e7e7e6;
  background:
    linear-gradient(90deg, rgba(167,37,28,.10), rgba(242,138,22,.05)),
    rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.07);
  font-size: .86rem;
  font-weight: 700;
}

.buttons {
  display: grid;
  gap: 9px;
  margin-top: 17px;
}

.btn {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 15px;
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.035);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .07em;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.btn.primary {
  border-color: rgba(242,138,22,.28);
  background:
    linear-gradient(135deg, rgba(242,138,22,.12), rgba(167,37,28,.10)),
    rgba(255,255,255,.025);
}

.btn:active {
  transform: scale(.985);
}

.socials {
  margin-top: 15px;
  color: #8d9197;
  font-size: .72rem;
}

.socials a {
  transition: color .2s ease;
}

.socials a:hover {
  color: #fff;
}

.socials span {
  margin: 0 7px;
  color: var(--red);
}

footer {
  margin-top: 20px;
}

.line {
  width: 48px;
  height: 2px;
  display: block;
  margin: 0 auto 8px;
  background: linear-gradient(90deg, transparent, var(--fire), transparent);
}

footer p {
  margin: 0;
  color: #656a70;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .18em;
}

@media (max-width: 359px) {
  .card {
    padding: 19px 13px 17px;
    border-radius: 21px;
  }

  .logo-wrap {
    width: 62px;
    height: 62px;
    min-width: 62px;
    max-width: 62px;
    min-height: 62px;
    max-height: 62px;
  }

  .logo-wrap img {
    width: 56px !important;
    height: 56px !important;
    max-width: 56px !important;
    max-height: 56px !important;
  }

  .message {
    font-size: .84rem;
  }
}

@media (max-height: 650px) {
  .page {
    place-items: start center;
    overflow-y: auto;
  }

  .card {
    margin-block: 4px;
  }

  .message {
    margin-top: 12px;
  }

  .quote,
  .buttons {
    margin-top: 12px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: .6;
    transform: scale(.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

@keyframes float {
  from {
    transform: translate3d(0,0,0);
  }
  to {
    transform: translate3d(10px,-14px,0);
  }
}

@keyframes enter {
  from {
    opacity: 0;
    transform: translateY(15px) scale(.99);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
