/*




  __  __  __  __
/\ \/\ \/\ \/\ \
\ \ \ \ \ \ \ \ \
 \ \ \ \ \ \ \ \ \
  \ \ \_/ \ \ \_/ \
   \ `\___/\ `\___/
    `\/__/  `\/__/




*/

@font-face {
  font-family: 'Instrument Serif';
  font-style: normal;
  font-weight: normal;
  src: url('../fonts/InstrumentSerif.woff2') format('woff2');
  font-display: block;
}

@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: normal;
  src: url('../fonts/InstrumentSans.woff2') format('woff2');
  font-display: block;
}

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

html {
  font-size: 16px;
}

body {
  background: #FFFFFF;
  color: #7F7F8B;
  font: 400 1rem/1.6 'Instrument Sans', sans-serif;
  font-feature-settings: 'ss02' on;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a, a:link, a:visited, a:hover, a:active {
  color: #7F7F8B;
  outline: none;
  text-decoration: none;
}

main {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 4rem 2rem;
}

article {
  max-width: 520px;
  width: 100%;
  min-height: calc(100svh - 8rem);
  display: flex;
  flex-direction: column;
}

.headline {
  font: 400 2.75rem/1.2 'Instrument Serif', serif;
  color: #545465;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
  opacity: 0;
  animation: fadeIn 0.8s ease-out 0.2s forwards;
}

header {
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

.logo {
  color: #545465;
}

.manifesto {
  opacity: 0;
  animation: fadeIn 0.6s ease-out 0.2s forwards;
}

.belief {
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(12px);
  animation: revealUp 0.7s ease-out forwards;
  animation-delay: calc(0.3s + (var(--delay) * 0.15s));
}

.belief:last-child {
  margin-bottom: 0;
}

.manifesto {
  font-size: 0.95rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

.emphasis {
  color: #545465;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

.closing {
  margin-top: 1.5rem;
}

footer {
  margin-top: auto;
  padding-top: 4rem;
}

footer .cta {
  opacity: 0;
  animation: fadeIn 0.6s ease-out 1.1s forwards;
}

footer .company-name {
  display: block;
  opacity: 0;
  animation: fadeIn 0.6s ease-out 1.3s forwards;
}

.cta, .cta:link, .cta:visited, .cta:hover, .cta:active {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 20px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(to left,#099EF1 0%,#6863F8 16.67%,#D84FFA 33.33%,#F058C5 50%,#FF4F90 66.67%,#FF6558 83.33%,#FF891F 100%);
  color: #FFFFFF;
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0.01em;
  text-decoration: none;
  margin-bottom: 3rem;
}

.cta svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.cta:hover svg {
  transform: translateX(4px);
}

.company-name {
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #A9A9B2;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  html {
    font-size: 16px;
  }

  main {
    padding: 2.5rem 1.5rem;
  }

  header {
    margin-bottom: 2rem;
  }

  .belief {
    margin-bottom: 1rem;
  }

  footer {
    padding-top: 3rem;
  }
}

::selection {
  background: #A9A9B2;
  color: #FFFFFF;
}