:root {
  --color-primary-900: #242d6b;
  --color-primary-500: #1a4fff;
  --color-primary-100: #ccd8ff;
  --color-success-500: #0dde34;
  --color-dark-900: #00020f;
  --color-dark-800: #131839;
  --color-dark-700: #202860;
  --color-light-300: #6d7792;
  --color-light-200: #a7adbe;
  --color-light-100: #ffffff;
  --font-family-display: "InterVariable";
  --font-family-body: "RethinkSansVariable";
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-family-body);
  color: var(--color-light-100);
}

body {
  background-color: var(--color-dark-900);
  overflow: hidden;
}

@font-face {
  font-family: InterVariable;
  src: url(/Fonts/InterVariable.woff2);
  font-weight: 300, 400, 500, 600;
}

@font-face {
  font-family: RethinkSansVariable;
  src: url(Fonts/RethinkSans-VariableFont_wght.woff2);
  font-weight: 300, 400, 500, 600;
}

h1 {
  font-size: 68px;
  font-weight: 700;
  line-height: 81.6px;
  font-family: var(--font-family-display);
  margin-bottom: 20px;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
}
nav {
  display: flex;
  justify-content: space-between;
  margin: 28px 48px 0;
  width: 100%;
  max-width: 1180px;
  align-items: center;
  border: 1px solid #242d6b;
  border-radius: 100px;
  padding: 8px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul a {
  text-decoration: none;
  color: var(--color-light-200);
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 100px;
  border: 1px solid transparent;
}

nav ul a:hover {
  color: var(--color-light-100);
  background-color: var(--color-dark-800);
  border: 1px solid var(--color-dark-700);
}

.button-std {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 20px;
  background-color: #1a4fff;
  border-radius: 100px;
  font-weight: 500;
}

.button-big {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 16px 33px;
  background: linear-gradient(180deg, #4d76ff 0%, #1a4fff 100%);
  font-weight: 500;
  width: fit-content;
  border-radius: 100px;
  box-shadow: 0px 1px 5px 0px #ffffff4d inset;
  box-shadow: 0px -1px 1px 0px #0000004d inset;
}

section.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 100px auto;
  background-image: url(/Assets/bg-svg.svg);
  background-position: center;
  object-fit: cover;
  height: 800px;
  background-repeat: no-repeat;
}

section.hero .content-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero .content-container {
  max-width: 780px;
  text-align: center;
}

.hero p {
  color: var(--color-light-200);
  margin-bottom: 20px;
  font-size: 18px;
}

.tagline {
  background-color: #ffffff12;
  backdrop-filter: blur(12px);
  box-shadow: 0px 8px 10.9px 0px #0003121f;
  box-shadow: 0px 1px 1px 0px #0003124d;
  backdrop-filter: blur(12px);
  border: 1px solid #ffffff1a;
  border-radius: 100px;
  padding: 8px 8px 8px 16px;
}

span.tagline {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-light-200);
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 20px;
}
span.tagline a {
  margin-left: 10px;
}

.spots-left {
  margin-top: 20px;
  color: var(--color-light-300);
}

.spots-left::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--color-success-500);
  border: 4px solid #032e16;
  margin-right: 4px;
}
.text-highlight {
  color: var(--color-primary-100);
  margin: 0 4px;
}

.button-sml {
  border-radius: 100px;
  padding: 4px 10px 4px 10px;
  gap: 2px;
  background-color: var(--color-primary-500);
}

.portfolio-preview-container {
  display: flex;
  margin-top: 50px;
  gap: 16px;
}

.preview-card {
  border-top: 1px solid #ffffff1a;
  border: 6px solid #ffffff0d;
  box-shadow: 0px 4px 4px 0px #00000040;
  border-radius: 16px;
}

.logo-names {
  display: flex;
  gap: 14px;
}

.sreview {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.sreview span {
  color: var(--color-light-200);
  margin: 10px 0 20px 0;
}
