/*! HTML5 Boilerplate v9.0.1 | MIT License | https://html5boilerplate.com/ */

/* ==========================================================================
   Base styles
   ========================================================================== */

html {
  font-size: 1em;
  line-height: 1.4;
}

::-moz-selection {
  background: #1e3a5f;
  color: #ffffff;
  text-shadow: none;
}

::selection {
  background: #1e3a5f;
  color: #ffffff;
  text-shadow: none;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #2a3442;
  margin: 1em 0;
  padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

/* ==========================================================================
   MotoEasy styles
   ========================================================================== */

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

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

body {
  min-height: 100vh;
  font-family:
    Inter,
    Arial,
    sans-serif;

  background:
    radial-gradient(circle at top left, #10203b 0%, transparent 40%),
    linear-gradient(135deg, #07111f 0%, #000000 100%);

  color: #ffffff;
}

.hero {
  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 24px;
}

.card {
  width: 100%;
  max-width: 680px;

  text-align: center;

  padding: 56px 40px;

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;

  background: rgba(255, 255, 255, 0.03);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.45);
}

.logo {
  width: 104px;
  height: 104px;

  margin-bottom: 28px;

  border-radius: 24px;
}

h1 {
  margin: 0 0 16px;

  font-size: 64px;
  font-weight: 700;
  line-height: 1;

  letter-spacing: -2px;
}

.subtitle {
  margin: 0 0 18px;

  font-size: 24px;
  font-weight: 500;

  color: #d9e7ff;
}

.description {
  max-width: 560px;

  margin: 0 auto;

  font-size: 18px;
  line-height: 1.7;

  color: #aeb9ca;
}

.links {
  margin-top: 36px;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;

  flex-wrap: wrap;
}

a {
  color: #79aefe;

  text-decoration: none;

  font-size: 16px;
  font-weight: 600;

  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

a:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

a:active {
  transform: translateY(0);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 768px) {
  .card {
    padding: 42px 24px;
    border-radius: 24px;
  }

  h1 {
    font-size: 48px;
    letter-spacing: -1px;
  }

  .subtitle {
    font-size: 20px;
  }

  .description {
    font-size: 16px;
  }

  .logo {
    width: 88px;
    height: 88px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 16px;
  }

  .card {
    padding: 36px 20px;
  }

  h1 {
    font-size: 40px;
  }

  .links {
    gap: 18px;
  }
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

.hidden,
[hidden] {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   Print styles
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #ffffff !important;
    color: #000000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }
}
