* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: #0f0f0f;
  color: #e6e6e6;
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body::selection {
  background-color: #f59e0b;
  color: #0f0f0f;
}

.bg-grid {
  background-image: linear-gradient(to right, #1b1b1b 1px, transparent 1px), linear-gradient(to bottom, #1b1b1b 1px, transparent 1px);
  background-size: 40px 40px;
}

.terminal-cursor::after {
  content: "_";
  animation: blink 1s step-start infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.5rem);
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.hidden {
  display: none;
}

.text-center {
  text-align: center;
}

@media (max-width: 768px) {
  .text-center-sm {
    text-align: center;
  }
}

.text-white {
  color: #ffffff;
}

.text-slate-300 {
  color: #e6e6e6;
}

.text-slate-400 {
  color: #b9b9b9;
}

.text-slate-500 {
  color: #8a8a8a;
}

.text-brand-accent {
  color: #f59e0b !important;
}

.text-brand-tech {
  color: rgb(24, 139, 86) !important;
}

.text-brand-error {
  color: #f54328 !important;
}

.text-green-400 {
  color: #4ade80 !important;
}

.text-green-500 {
  color: #22c55e !important;
}

.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.font-bold {
  font-weight: bold;
}

.font-mono {
  font-family: "JetBrains Mono", monospace;
}

.italic {
  font-style: italic;
}

.title-lg {
  font-size: 1.875rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 1rem;
}

.title-xl {
  font-size: 2.25rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 1rem;
}

.heading {
  font-size: 1.25rem;
  font-weight: bold;
  color: #ffffff;
  margin-top: 0.25rem;
  margin-bottom: 0.75rem;
}

.heading-flex {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: bold;
  color: #ffffff;
  margin-top: 0.25rem;
  margin-bottom: 1rem;
}

.subheading {
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.grid-12 {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 1024px) {
  .grid-12 {
    grid-template-columns: repeat(12, 1fr);
    gap: 4rem;
  }
}

.col-span-4 {
  grid-column: span 1;
}
@media (min-width: 1024px) {
  .col-span-4 {
    grid-column: span 4;
  }
}

.col-span-8 {
  grid-column: span 1;
}
@media (min-width: 1024px) {
  .col-span-8 {
    grid-column: span 8;
  }
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

@media (min-width: 1024px) {
  .lg-order-1 {
    order: 1;
  }
  .lg-order-2 {
    order: 2;
  }
}
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.flex-grow {
  flex-grow: 1;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .md-flex-row {
    flex-direction: row;
  }
}
.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mt-16 {
  margin-top: 4rem;
}

.pt-8 {
  padding-top: 2rem;
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.space-y-8 > * + * {
  margin-top: 2rem;
}

.space-x-6 > * + * {
  margin-left: 1.5rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.min-w-120 {
  min-width: 7.5rem;
}

.list-unstyled {
  list-style: none;
  padding: 0;
  margin: 0;
}

.min-h-screen {
  min-height: 100vh;
}

.card {
  background-color: #181818;
  padding: 2rem;
  border: 2px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.2s;
}
.card:hover {
  border: 2px dashed rgba(255, 255, 255, 0.1);
  border-color: rgba(182, 182, 182, 0.3);
}

.card-flex {
  display: flex;
  flex-direction: column;
}

.icon-box {
  width: 3rem;
  height: 3rem;
  background-color: rgba(245, 158, 11, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.icon-box-tech {
  background-color: rgba(14, 165, 233, 0.1);
}

.testimonial {
  background: rgba(24, 139, 86, 0.1);
  padding: 1.5rem;
  border-left: 4px solid #f59e0b;
  position: relative;
}

.testimonial-tech {
  border-left-color: rgb(24, 139, 86);
}

.testimonial-quote {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: rgba(255, 255, 255, 0.05);
  font-size: 2.25rem;
}

.testimonial-text {
  font-style: italic;
  color: #e6e6e6;
  margin-bottom: 1rem;
}

.testimonial-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-logo {
  width: 100px;
  height: 50px;
  flex-shrink: 0;
  margin-top: 1em;
  background-position: right top;
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
  opacity: 0.8;
}
.testimonial-logo:hover {
  opacity: 1;
  filter: brightness(1.2);
}

.testimonial-name {
  font-size: 0.875rem;
  font-weight: bold;
  color: #ffffff;
}

.testimonial-role {
  font-size: 0.75rem;
  color: #8a8a8a;
}

.code-block {
  background-color: #0f0f0f;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  color: #4ade80;
}

.training-testimonial {
  margin-top: 3rem;
  background: rgba(24, 139, 86, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 0;
  text-align: center;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.form-group {
  margin-bottom: 1rem;
}

.form-input {
  width: 100%;
  background-color: #181818;
  border: 1px solid #505050;
  border-radius: 0;
  padding: 1rem;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 0 1px #f59e0b;
  outline: none;
}

.form-textarea {
  width: 100%;
  background-color: #181818;
  border: 1px solid #505050;
  border-radius: 0;
  padding: 1rem;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  resize: vertical;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-textarea:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 0 1px #f59e0b;
  outline: none;
}

.form-input-error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 1px #ef4444 !important;
}

.form-submit {
  width: 100%;
  background-color: #f59e0b;
  color: #0f0f0f;
  font-weight: bold;
  padding: 1rem;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
  font-size: 1rem;
}
.form-submit:hover {
  background-color: #ffffff;
}

video.flex {
  width: 100%;
  height: auto;
}

.nav-container {
  position: fixed;
  width: 100%;
  z-index: 50;
  background: rgba(14, 14, 14, 0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #2e2e2e;
}

.nav-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .nav-inner {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .nav-inner {
    padding: 0 2rem;
  }
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.nav-logo {
  flex-shrink: 0;
  cursor: pointer;
  font-size: 1.7rem;
  color: #ffffff;
  letter-spacing: -0.05em;
  display: flex;
  align-items: center;
}
.nav-logo .logo-grid {
  margin-right: 0.5rem;
  scale: 0.6;
}
.nav-logo:hover > * {
  color: #ffffff !important;
}
.nav-logo {
  user-select: none;
}
.nav-logo > * {
  user-select: none;
}

.nav-desktop {
  display: none;
}
@media (min-width: 768px) {
  .nav-desktop {
    display: block;
  }
}

.nav-menu {
  margin-left: 2.5rem;
  display: flex;
  align-items: baseline;
  gap: 2rem;
}

.nav-link {
  padding: 0.5rem 0.75rem;
  border-radius: 0;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  color: #e6e6e6;
  transition: color 0.2s;
}
.nav-link:hover {
  color: #f59e0b;
}

.nav-link-cta {
  background-color: #f59e0b;
  color: #0f0f0f;
  padding: 0.5rem 1.25rem;
  border-radius: 0;
  font-weight: bold;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background-color 0.2s;
}
.nav-link-cta:hover {
  background-color: #ffffff;
}

.nav-mobile-btn {
  display: block;
  background: none;
  border: none;
  color: #d1d5db;
  cursor: pointer;
  font-size: 1.5rem;
  padding: 0.5rem;
}
@media (min-width: 768px) {
  .nav-mobile-btn {
    display: none;
  }
}
.nav-mobile-btn:hover {
  color: #ffffff;
}
.nav-mobile-btn:focus {
  outline: none;
}

.nav-mobile-menu {
  background-color: #181818;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.5rem;
}
@media (min-width: 768px) {
  .nav-mobile-menu {
    display: none;
  }
}
.nav-mobile-menu.hidden {
  display: none;
}

.nav-mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
@media (min-width: 640px) {
  .nav-mobile-menu-inner {
    padding: 0 0.75rem;
  }
}

.nav-mobile-link {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 0;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  color: #e6e6e6;
  transition: color 0.2s;
}
.nav-mobile-link:hover {
  color: #f59e0b;
}
.nav-mobile-link.tech:hover {
  color: rgb(24, 139, 86);
}
.nav-mobile-link.green:hover {
  color: #4ade80;
}
.nav-mobile-link.cta {
  font-weight: bold;
  color: #f59e0b;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
  overflow: hidden;
  background-image: url("../bg_level.png");
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
}

.hero-content {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 640px) {
  .hero-content {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .hero-content {
    padding: 0 2rem;
  }
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-subtitle {
  margin-top: 1rem;
  max-width: 42rem;
  font-size: 1.25rem;
  color: #b9b9b9;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-btn-primary {
  padding: 1rem 2rem;
  border-radius: 0;
  background-color: #f59e0b;
  color: #0f0f0f;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.2s;
}
.hero-btn-primary:hover {
  background-color: #ffffff;
  transform: translateY(-0.25rem);
}

.hero-btn-secondary {
  padding: 1rem 2rem;
  border-radius: 0;
  border: 1px solid #686868;
  color: #e6e6e6;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}
.hero-btn-secondary:hover {
  border-color: #f59e0b;
  color: #f59e0b;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  width: 100%;
  display: flex;
  justify-content: center;
  animation: bounce 2s infinite;
}

.hero-scroll-link {
  color: #8a8a8a;
  text-decoration: none;
  transition: color 0.2s;
}
.hero-scroll-link:hover {
  color: #ffffff;
}

:root {
  --orange: #f39c12;
  --green: #1e8449;
  --size: 64px; /* Size of each cube face */
}

.logo-grid {
  display: grid;
  height: 100%;
  grid-template-columns: repeat(3, var(--size));
  grid-template-rows: repeat(4, var(--size));
  gap: 4px; /* Grid spacing */
  justify-content: center;
  align-content: center;
}

.logo-grid-sm {
  grid-template-columns: repeat(3, 16px);
  grid-template-rows: repeat(4, 16px);
  gap: 2px;
}

.logo-grid-lg {
  grid-template-columns: repeat(3, 32px);
  grid-template-rows: repeat(4, 32px);
  gap: 4px;
}

.logo-grid .cell {
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: rotateY(-90deg);
  animation: flipIn 0.8s ease-out forwards;
  animation-delay: var(--d);
  transition: all 0.2s ease-in-out;
}
.logo-grid .cell:hover {
  background-color: white;
}

.cell.orange {
  background-color: var(--orange);
}

.cell.green {
  background-color: var(--green);
}

.cell.empty {
  visibility: hidden;
}

/* The Top-Left Triangle */
.tri-tl {
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  filter: drop-shadow(0 0 0 2px #ffffff);
}

@keyframes flipIn {
  0% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  100% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
.section {
  padding: 2rem 0;
}
@media (min-width: 1024px) {
  .section {
    padding: 6rem 0;
  }
}

.section-border {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-bg {
  background-color: #181818;
}

section#build {
  background-image: url("../bg_code.png");
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
}

section#training {
  background-image: url("../bg_unity_editor_01.png");
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
}

section#contact {
  background-image: url("../bg_level.png");
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
}

.footer-section {
  padding: 6rem 0;
  background: linear-gradient(to bottom, #0f0f0f, #000000);
  position: relative;
  overflow: hidden;
}

.footer-grid {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

.footer-content {
  position: relative;
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.footer-title {
  font-size: 2.25rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 2rem;
}

.footer-description {
  color: #b9b9b9;
  margin-bottom: 2.5rem;
  font-size: 1.125rem;
}

.footer-form {
  max-width: 28rem;
  margin: 0 auto;
  text-align: left;
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  color: #8a8a8a;
  font-size: 0.875rem;
  gap: 1rem;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    gap: 0;
  }
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social-link {
  color: #8a8a8a;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-social-link:hover {
  color: #ffffff;
}

.icon {
  width: 220px;
  height: 220px;
  display: block;
  pointer-events: none;
  user-select: none;
  position: absolute;
  left: 50%;
  margin: -110px auto;
  transform: translateX(-50%);
}
.icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #0f0f0f;
  border: 1px solid;
  transform: rotate(45deg) scale(0.7);
  z-index: -1;
}
.icon::after {
  content: "";
  width: 100%;
  height: 100%;
  background-size: cover;
  position: relative;
  display: block;
}

.icon-cog::after {
  background-image: url("../icon_cog.png");
}

.icon-heart::after {
  background-image: url("../icon_heart.png");
  top: 5px;
  scale: 90%;
}

.icon-rocket::after {
  background-image: url("../icon_rocket.png");
  left: -24px;
  top: 15px;
}

.section-padded {
  padding-top: 12rem;
  padding-bottom: 12rem;
}

.section-padded-btm {
  padding-bottom: 12rem;
}

.icon-xl {
  position: absolute;
  margin: -32px 0 0 -256px;
  display: none;
}
@media (min-width: 1680px) {
  .icon-xl {
    display: block;
  }
}

@keyframes fadeIn {
  0% {
    translate: 0 100px;
    transform: scale(0.6);
    opacity: 0;
  }
  80% {
    translate: 0 50px;
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    translate: 0 0;
    transform: scale(1);
    opacity: 1;
  }
}
img.icon-small {
  max-height: 80px;
  max-width: 200px;
}

.icons-list {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
}
.icons-list > img {
  margin: 1.25rem 1.5rem;
}

:root {
  --depth: 344px; /* Thickness of the logo */
  --size: 344px; /* Size of each cube face */
}

.cube {
  width: var(--size);
  height: var(--size);
  position: relative;
  transform-style: preserve-3d;
  perspective: none;
  scale: 0.6;
  transform: rotateX(-15deg) rotateY(-135deg);
  transform-origin: center center;
  animation: spin 5s infinite linear;
}
.cube .face {
  background-color: transparent !important;
}

@keyframes spin {
  0% {
    transform: rotateX(-15deg) rotateY(-135deg);
  }
  100% {
    transform: rotateX(-15deg) rotateY(-495deg);
  }
}
.face {
  position: absolute;
  width: var(--size);
  height: var(--size);
  border: 2px dashed rgba(255, 255, 255, 0.527);
}

.front {
  transform: rotateY(0deg) translateZ(calc(var(--depth) / 2));
}

.back {
  transform: rotateY(180deg) translateZ(calc(var(--depth) / 2));
}

.right {
  width: var(--depth);
  transform: rotateY(90deg) translateZ(calc(var(--size) - var(--depth) / 2));
}

.left {
  width: var(--depth);
  transform: rotateY(-90deg) translateZ(calc(var(--depth) / 2));
}

.top {
  height: var(--depth);
  transform: rotateX(90deg) translateZ(calc(var(--depth) / 2));
}

.bottom {
  height: var(--depth);
  transform: rotateX(-90deg) translateZ(calc(var(--size) - var(--depth) / 2));
}

/*# sourceMappingURL=main.css.map */