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

:root {
  --accent: #f77a37;
  --accent2: #f88b51;
  --blue: #4c6bff;
  --text: #ffffff;
  --muted: #aeb6ca;
  --card: rgba(18, 22, 35, 0.78);
  --border: rgba(255, 255, 255, 0.09);
}

body {
  min-height: 100vh;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #070910;
  overflow-x: hidden;
}

/* =========================
   BACKGROUND
========================= */

.background {
  position: fixed;
  inset: 0;
  z-index: -2;

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(76, 107, 255, .28),
      transparent 35%
    ),
    radial-gradient(
      circle at 10% 90%,
      rgba(76, 107, 255, .12),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #060810 0%,
      #0b0e18 50%,
      #05060a 100%
    );
}

.background::after {
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(
      rgba(255,255,255,.018) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,.018) 1px,
      transparent 1px
    );

  background-size: 45px 45px;

  mask-image: linear-gradient(
    to bottom,
    black,
    transparent 90%
  );
}

/* =========================
   MAIN CONTAINER
========================= */

.container {
  width: min(92%, 620px);
  margin: 0 auto;
  padding: 0 0 35px;
  text-align: center;
}

/* =========================
   LOGO
========================= */

.hero {
  position: relative;

  width: 180px;
  height: 180px;

  margin: 35px auto 25px;

  overflow: hidden;

  border-radius: 24px;

  background: #080b12;

  border: 1px solid rgba(255,255,255,.1);

  box-shadow:
    0 15px 45px rgba(0,0,0,.45),
    0 0 30px rgba(76,107,255,.08);
}

.hero-logo {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transform: none;

  animation: none;
}

/* Remove the large image fade */

.hero::after {
  display: none;
}

.hero-fade {
  display: none;
}

/* =========================
   CONTENT
========================= */

.content {
  position: relative;
  z-index: 5;

  margin-top: 0;
}

/* =========================
   TITLE
========================= */

h1 {
  font-size: clamp(30px, 7vw, 46px);

  letter-spacing: -1.5px;

  margin-bottom: 8px;

  text-shadow:
    0 4px 20px rgba(0,0,0,.5);
}

.subtitle {
  color: var(--muted);

  font-size: 15px;

  margin-bottom: 30px;
}

/* =========================
   BUTTONS
========================= */

.buttons {
  display: flex;
  flex-direction: column;

  gap: 13px;
}

.button {
  display: grid;

  grid-template-columns: 46px 1fr 24px;

  align-items: center;

  gap: 12px;

  min-height: 76px;

  padding: 13px 18px;

  text-align: left;

  color: var(--text);

  text-decoration: none;

  background: var(--card);

  border: 1px solid var(--border);

  border-radius: 17px;

  backdrop-filter: blur(14px);

  box-shadow:
    0 12px 35px rgba(0,0,0,.22);

  transition:
    transform .2s ease,
    border-color .2s ease,
    background .2s ease,
    box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-3px);

  border-color: rgb(251,167,7);

  background: rgb(254,161,1);

  box-shadow:
    0 18px 45px rgba(0,0,0,.35),
    0 0 25px rgba(76,107,255,.08);
}

.button:active {
  transform: translateY(-1px) scale(.99);
}


/* =========================
   ICONS
========================= */

.icon {
  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;

  border-radius: 13px;

  font-size: 21px;

  background: rgba(76,107,255,.12);

  border: 1px solid rgba(76,107,255,.18);
}

.button strong {
  display: block;

  font-size: 16px;

  margin-bottom: 4px;
}

.button small {
  display: block;

  color: var(--muted);

  font-size: 12px;
}

/* =========================
   ARROW
========================= */

.arrow {
  color: #77809a;

  font-size: 28px;

  line-height: 1;

  transition:
    transform .2s ease,
    color .2s ease;
}

.button:hover .arrow {
  color: var(--accent2);

  transform: translateX(3px);
}

/* =========================
   FOOTER
========================= */

footer {
  margin-top: 30px;

  color: #6f778c;

  font-size: 11px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 480px) {

  .hero {
    height: 300px;
  }

  .hero-logo {
    object-position: center;
  }

  .content {
    margin-top: -25px;
  }

  h1 {
    font-size: 30px;
  }

  .subtitle {
    font-size: 14px;
  }

  .button {
    min-height: 70px;

    padding: 11px 14px;
  }

}