@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
:root {
  --alpha: 0.8;
  --radius: 0.5rem;
  --background-site: rgb(16, 31, 38);
  --background-site-alpha: rgba(16, 31, 38, 0.5);
  --background: rgb(1, 44, 64);
  --background-alpha: rgba(1, 44, 64, var(--alpha));
  --foreground: rgb(255, 255, 255);
  --foreground-alpha: rgba(255, 255, 255, var(--alpha));
  --card: rgb(0, 38, 50);
  --card-alpha: rgba(0, 38, 50, var(--alpha));
  --card-foreground: rgb(255, 255, 255);
  --card-foreground-alpha: rgba(255, 255, 255, var(--alpha));
  --popover: rgb(0, 62, 88);
  --popover-alpha: rgba(0, 62, 88, var(--alpha));
  --popover-foreground: rgb(255, 255, 255);
  --popover-foreground-alpha: rgba(255, 255, 255, var(--alpha));
  --primary: rgb(8, 106, 148);
  --primary-alpha: rgba(8, 106, 148, 0.25);
  --primary-foreground: rgb(255, 255, 255);
  --primary-foreground-alpha: rgba(255, 255, 255, var(--alpha));
  --secondary: rgb(0, 38, 50);
  --secondary-alpha: rgba(0, 38, 50, var(--alpha));
  --secondary-foreground: rgb(255, 255, 255);
  --secondary-foreground-alpha: rgba(255, 255, 255, var(--alpha));
  --muted: rgb(0, 62, 88);
  --muted-alpha: rgba(0, 62, 88, var(--alpha));
  --muted-foreground: rgb(105, 210, 255);
  --muted-foreground-alpha: rgba(105, 210, 255, var(--alpha));
  --accent: rgb(0, 62, 88);
  --accent-alpha: rgba(0, 62, 88, var(--alpha));
  --accent-foreground: rgb(255, 255, 255);
  --accent-foreground-alpha: rgba(255, 255, 255, var(--alpha));
  --destructive: rgb(134, 26, 26);
  --destructive-alpha: rgba(134, 26, 26, var(--alpha));
  --destructive-foreground: rgb(255, 255, 255);
  --destructive-foreground-alpha: rgba(255, 255, 255, var(--alpha));
  --border: rgb(8, 106, 148);
  --border-alpha: rgba(8, 106, 148, var(--alpha));
  --input: rgb(0, 38, 50);
  --input-alpha: rgba(0, 38, 50, var(--alpha));
  --ring: rgb(8, 106, 148);
  --ring-alpha: rgba(8, 106, 148, var(--alpha));
}

body {
  background: radial-gradient(60vw at var(--cursor-x) var(--cursor-y), var(--primary-alpha), var(--background-site) 80%);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: var(--border-alpha);
}

html {
  font-size: 16px;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-feature-settings: normal;
  font-variation-settings: normal;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  color: var(--foreground);
  background-color: var(--background-site);
  min-height: 100vh;
  margin: 0;
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: default;
  display: flex;
  flex-direction: column;
  transition: background-position 0.1s ease;
}

a {
  color: inherit;
  text-decoration: inherit;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--primary);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
}

p {
  text-align: justify;
}

ul, ol {
  padding-left: 3em;
}

/*
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-weight: 500;
  transition: all 0.2s ease;

  &--primary {
    background-color: rgb(var(--primary));
    color: black;

    &:hover {
      background-color: darken(var(--primary), 10%);
      color: black;
    }
  }

  &--secondary {
    border: 1px solid rgb(var(--border));
    background-color: transparent;
    color: black;

    &:hover {
      background-color: rgba(var(--primary), 0.1);
      color: black;
    }
  }
}
*/
.buttons {
  display: flex;
  gap: 1em;
  margin-top: 1em;
}
@media (min-width: 640px) {
  .buttons {
    flex-direction: row;
  }
}

.button, .image-text-block__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 8px;
}
.button:hover, .image-text-block__button:hover {
  color: var(--foreground);
  background-color: var(--accent);
  border-color: var(--primary);
}
.button--primary {
  background-color: var(--muted);
  border: 1px solid var(--secondary);
  color: #fff;
}
.button--primary:hover {
  background-color: var(--accent);
  border: 1px solid var(--secondary);
  color: #fff;
}
.button--secondary {
  border: 1px solid var(--border);
  background-color: transparent;
  color: white;
}
.button--secondary:hover {
  background-color: var(--primary-alpha);
  color: white;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  height: 3.5rem;
  background-color: var(--background-alpha);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--foreground-alpha);
}
.header__content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.header__logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1.25rem;
  margin-right: 2rem;
}
.header__logo-image {
  height: 32px;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.header__nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem;
  transition: color 0.2s ease;
}
.header__nav-link:hover {
  color: var(--primary);
}

.main {
  flex: 1;
  position: relative;
  min-height: calc(100vh - 3.5rem - 218px);
  overflow: hidden;
}
.main__content {
  position: relative;
  z-index: 1;
  padding: 2rem 0;
  margin: auto;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-align: center;
  background: linear-gradient(to bottom right, var(--foreground) 30%, var(--foreground-alpha), var(--foreground-alpha));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-grid {
  display: grid;
  gap: 3rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-end {
  padding-top: 3rem;
  font-size: 15px;
  text-align: justify;
}

.contact-info__item {
  margin-bottom: 2rem;
}
.contact-info__item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.contact-info__item p, .contact-info__item a {
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s ease;
}
.contact-info__item p:hover, .contact-info__item a:hover {
  color: var(--foreground);
}

.form__group {
  margin-bottom: 1.5rem;
}
.form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.form input, .form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-alpha);
  border-radius: var(--radius);
  background-color: var(--card);
  color: var(--foreground);
  font-size: 0.875rem;
  transition: border-color 0.2s ease;
}
.form input:focus, .form textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.form textarea {
  resize: vertical;
}

.footer {
  text-align: center;
  border-top: 1px solid var(--foreground-alpha);
  padding-top: 2rem;
  margin-top: auto;
  background-color: var(--card-alpha);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.footer__content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer__content {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__section {
  flex: 1;
  min-width: 200px;
}
.footer__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--foreground);
}
.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__links li {
  margin-bottom: 0.5rem;
}
.footer__links a {
  color: var(--muted-foreground);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}
.footer__links a:hover {
  color: var(--foreground);
}
.footer__bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-top: 1px solid var(--border-alpha);
  text-align: center;
}
.footer__copyright {
  text-align: center;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate-fade-in {
  animation: fadeIn 0.3s ease-in-out;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta {
  border-top: 1px solid var(--border-alpha);
  border-bottom: 1px solid var(--border-alpha);
  padding: 3em 0;
  text-align: center;
  background: radial-gradient(var(--secondary), transparent);
}
.cta__content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2em;
}
.cta__title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
}
.cta__text {
  text-align: center;
  color: var(--muted-foreground);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

.features {
  padding: 3em 0;
}
@media (min-width: 768px) {
  .features {
    padding: 8rem 0;
  }
}
.features__header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 58rem;
  margin-left: auto;
  margin-right: auto;
}
.features__title {
  font-size: 1.875rem;
  line-height: 1.1;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media (min-width: 640px) {
  .features__title {
    font-size: 1.875rem;
  }
}
@media (min-width: 768px) {
  .features__title {
    font-size: 3rem;
  }
}
.features__subtitle {
  color: var(--muted-foreground);
  font-size: 1rem;
  margin-top: 1rem;
  text-align: justify;
  gap: 0.75em;
  display: flex;
  flex-direction: column;
}
@media (min-width: 640px) {
  .features__subtitle {
    font-size: 1.125rem;
  }
}
.features__grid {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  gap: 2rem;
  padding: 2rem;
  grid-template-columns: 1fr;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  position: relative;
  border: 1px solid var(--border-alpha);
  border-radius: var(--radius);
  background-color: var(--background-alpha);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(8px);
  padding: 2rem;
}
.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.feature__header {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.feature__icon {
  width: 32px;
  height: 32px;
  color: currentColor;
}
.feature__title {
  font-size: 1.125rem;
  font-weight: bold;
}
.feature__description {
  color: var(--muted-foreground);
  text-align: justify;
  margin-top: 0.5rem;
}

.founder-card {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  position: relative;
  border: 1px solid var(--border-alpha);
  border-radius: var(--radius);
  background-color: var(--background-alpha);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(8px);
}
.founder-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.founder-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.founder-card__image {
  width: 150px;
  height: 150px;
  object-fit: cover;
  object-position: center;
  border-radius: 999999px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  margin: 20px auto;
}
.founder-card__content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 1rem;
  width: 100%;
}
.founder-card__name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 0;
  position: relative;
}
.founder-card__name::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 2px;
  background-color: var(--primary);
}
.founder-card__role {
  text-align: center;
  color: var(--muted-foreground);
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
}
.founder-card__bio {
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.7;
  text-align: justify;
  margin: 0;
}
.founder-card__social {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.founder-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  flex: 1;
  margin: 0 auto;
  justify-content: center;
}

.founders {
  padding: 1rem;
}
.founders__header {
  text-align: center;
  margin-bottom: 2rem;
}
.founders__header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 0;
}
.founders__header p {
  text-align: center;
  color: var(--muted-foreground);
  font-size: 1.25rem;
  margin: 0;
}
.founders__grid {
  display: grid;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 1rem;
  justify-content: center;
  max-width: 1400px;
  margin: auto;
}
@media (min-width: 1024px) {
  .founders__grid {
    padding: 2rem;
    grid-template-columns: repeat(3, 1fr);
  }
}

.hero {
  padding: 3em 0;
  text-align: center;
  margin-top: -2rem;
  display: flex;
  min-height: 500px;
}
.hero__content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2em;
}
.hero__title {
  background: linear-gradient(to bottom right, var(--foreground) 30%, var(--foreground-alpha), var(--foreground-alpha));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.2;
  background-color: rgba(0, 0, 0, 0.5);
  text-shadow: 0 4px 10px black;
  color: white;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 3.5rem;
  }
}
.hero__subtitle {
  color: var(--foreground);
  text-shadow: 0 1px 2px black;
  font-size: 1.3rem;
  max-width: 900px;
  margin: 0 auto;
}

.position-card {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  position: relative;
  border: 1px solid var(--border-alpha);
  border-radius: var(--radius);
  background-color: var(--background-alpha);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(8px);
}
.position-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.position-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.position-card--closed::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 10px, rgba(0, 0, 0, 0.1) 10px, rgba(0, 0, 0, 0.1) 20px);
  z-index: 1;
  pointer-events: none;
}
.position-card--closed .position-card__content {
  opacity: 0.7;
}
.position-card--closed .position-card__apply-button {
  opacity: 0.5;
  cursor: not-allowed;
}
.position-card__header {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.position-card__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 0;
}
.position-card__department {
  color: var(--primary);
  font-size: 0.875rem;
  margin: 0;
}
.position-card__content {
  padding: 0 1.5rem;
  flex-grow: 1;
}
.position-card__description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.position-card__requirements {
  margin-bottom: 1rem;
}
.position-card__requirements h4 {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}
.position-card__requirements ul {
  list-style-type: disc;
  list-style-position: inside;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
  padding-left: 0;
}
.position-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.position-card__tags span {
  display: flex;
  align-items: center;
  border-radius: 9999px;
  border: 1px solid var(--border-alpha);
  padding: 0.5rem 1rem;
  background-color: var(--background-alpha);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background-color: var(--primary-alpha);
  color: var(--muted-foreground);
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
}
.position-card__tags span:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.positions {
  padding: 2rem;
}
@media (min-width: 768px) {
  .positions {
    padding: 8rem 0;
  }
}
.positions__header {
  text-align: center;
  margin-bottom: 3rem;
}
.positions__header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 0;
}
.positions__header p {
  padding-top: 2rem;
  color: var(--muted-foreground);
  text-shadow: 0 1px 2px black;
  font-size: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}
.positions__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  padding: 2rem;
  max-width: 1400px;
  margin: auto;
}
@media (min-width: 768px) {
  .positions__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1280px) {
  .positions__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.tag-list__tag {
  display: flex;
  align-items: center;
  border-radius: 9999px;
  border: 1px solid var(--border-alpha);
  padding: 0.5rem 1rem;
  background-color: var(--background-alpha);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tag-list__tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.industry-card {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  position: relative;
  border: 1px solid var(--border-alpha);
  border-radius: var(--radius);
  background-color: var(--background-alpha);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(8px);
}
.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.industry-card__image-container {
  aspect-ratio: 1/1;
  height: calc(width * 1 / 1);
  overflow: hidden;
  max-height: 250px;
  width: 100%;
  position: relative;
}
@supports not (aspect-ratio: 1/1) {
  .industry-card__image-container {
    position: relative;
  }
  .industry-card__image-container::before {
    display: block;
    content: "";
    width: 100%;
    padding-top: 100%;
  }
  .industry-card__image-container > .content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}
.industry-card__image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  margin: auto;
}
.industry-card__image:hover {
  transform: scale(1.05);
}
.industry-card__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.industry-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 0;
}
.industry-card__subtitle {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0;
}
.industry-card__description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}
.industry-card__social {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}
.industry-card__social-link {
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}
.industry-card__social-link:hover {
  color: var(--primary);
}
.industry-card__social-icon {
  width: 1.25rem;
  height: 1.25rem;
}

@media (min-width: 640px) {
  .industries {
    padding: 2rem;
  }
}
@media (min-width: 768px) {
  .industries {
    padding: 8rem 0;
  }
}
.industries__header {
  text-align: center;
  margin-bottom: 2rem;
}
.industries__header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 0;
}
.industries__header p {
  text-align: center;
  color: var(--muted-foreground);
  font-size: 1.25rem;
  margin: 0;
}
.industries__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(1, 1fr);
  max-width: 1400px;
  margin: auto;
}
@media (min-width: 640px) {
  .industries__grid {
    padding: 2rem;
  }
}
@media (min-width: 768px) {
  .industries__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1280px) {
  .industries__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.image-text-block {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  position: relative;
  border: 1px solid var(--border-alpha);
  border-radius: var(--radius);
  background-color: var(--background-alpha);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(8px);
  max-width: 58rem;
  margin: 2rem auto;
}
.image-text-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.image-text-block__inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
@media (max-width: 768px) {
  .image-text-block__inner {
    flex-direction: column !important;
    gap: 1rem;
  }
}
.image-text-block--right .image-text-block__inner {
  flex-direction: row-reverse;
}
.image-text-block--left .image-text-block__inner {
  flex-direction: row;
}
.image-text-block--right .image-text-block__image {
  border-left: 1px solid var(--border-alpha);
  border-right: none;
}
@media (max-width: 768px) {
  .image-text-block--right .image-text-block__image {
    border-left: none;
    border-bottom: 1px solid var(--border-alpha);
  }
}
.image-text-block--left .image-text-block__image {
  border-right: 1px solid var(--border-alpha);
  border-left: none;
}
@media (max-width: 768px) {
  .image-text-block--left .image-text-block__image {
    border-right: none;
    border-bottom: 1px solid var(--border-alpha);
  }
}
.image-text-block__image {
  flex: 1 1 40%;
  min-width: 0;
}
.image-text-block__image img {
  width: 100%;
  height: auto;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.image-text-block__image-title {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  color: var(--foreground);
  background: var(--background-alpha);
  border: 1px solid var(--border-alpha);
  border-radius: var(--radius);
  padding: 0.3em 0.8em;
}
.image-text-block__content {
  flex: 1 1 60%;
  padding: 1em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}
.image-text-block__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.image-text-block__icon {
  border: 1px solid var(--border-alpha);
  border-radius: 4px;
  padding: 0.2em 0.6em;
  font-size: 1rem;
  color: var(--muted-foreground);
  background: var(--background-alpha);
  margin-right: 0.5rem;
}
.image-text-block__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 0;
}
.image-text-block__description {
  font-size: 1rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  gap: 0.75em;
  display: flex;
  flex-direction: column;
}
.image-text-block__footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
  margin-top: auto;
}
@media (max-width: 768px) {
  .image-text-block__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
.image-text-block__footer-text {
  font-size: 1rem;
  color: var(--muted-foreground);
}
.richtext-container {
  padding: 3em 0;
  margin: auto;
  max-width: 58rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  text-align: justify;
}

@keyframes ripple {
  0% {
    opacity: 0;
    background-size: 0 0;
    transform: scale(0.1);
    -webkit-mask-image: radial-gradient(circle at center, black 0%, black 0%, transparent 2%, transparent 100%);
    mask-image: radial-gradient(circle at center, black 0%, black 0%, transparent 2%, transparent 100%);
  }
  10% {
    opacity: 1;
    background-size: 16px 16px;
    transform: scale(0.2);
    -webkit-mask-image: radial-gradient(circle at center, black 0%, black 8%, transparent 12%, transparent 100%);
    mask-image: radial-gradient(circle at center, black 0%, black 8%, transparent 12%, transparent 100%);
  }
  20% {
    transform: scale(0.3);
    -webkit-mask-image: radial-gradient(circle at center, black 0%, black 18%, transparent 22%, transparent 100%);
    mask-image: radial-gradient(circle at center, black 0%, black 18%, transparent 22%, transparent 100%);
  }
  30% {
    transform: scale(0.4);
    -webkit-mask-image: radial-gradient(circle at center, black 0%, black 28%, transparent 32%, transparent 100%);
    mask-image: radial-gradient(circle at center, black 0%, black 28%, transparent 32%, transparent 100%);
  }
  40% {
    transform: scale(0.5);
    -webkit-mask-image: radial-gradient(circle at center, transparent 0%, black 38%, transparent 42%, transparent 100%);
    mask-image: radial-gradient(circle at center, transparent 0%, black 38%, transparent 42%, transparent 100%);
  }
  50% {
    transform: scale(0.6);
    -webkit-mask-image: radial-gradient(circle at center, transparent 0%, black 48%, transparent 52%, transparent 100%);
    mask-image: radial-gradient(circle at center, transparent 0%, black 48%, transparent 52%, transparent 100%);
  }
  60% {
    transform: scale(0.7);
    -webkit-mask-image: radial-gradient(circle at center, transparent 0%, black 58%, transparent 62%, transparent 100%);
    mask-image: radial-gradient(circle at center, transparent 0%, black 58%, transparent 62%, transparent 100%);
  }
  70% {
    transform: scale(0.8);
    -webkit-mask-image: radial-gradient(circle at center, transparent 0%, black 68%, transparent 72%, transparent 100%);
    mask-image: radial-gradient(circle at center, transparent 0%, black 68%, transparent 72%, transparent 100%);
  }
  80% {
    transform: scale(0.9);
    -webkit-mask-image: radial-gradient(circle at center, transparent 0%, black 78%, transparent 82%, transparent 100%);
    mask-image: radial-gradient(circle at center, transparent 0%, black 78%, transparent 82%, transparent 100%);
  }
  90% {
    transform: scale(0.95);
    -webkit-mask-image: radial-gradient(circle at center, transparent 0%, black 88%, transparent 92%, transparent 100%);
    mask-image: radial-gradient(circle at center, transparent 0%, black 88%, transparent 92%, transparent 100%);
  }
  100% {
    opacity: 0;
    background-size: 0 0;
    transform: scale(1);
    -webkit-mask-image: radial-gradient(circle at center, transparent 0%, transparent 100%);
    mask-image: radial-gradient(circle at center, transparent 0%, transparent 100%);
  }
}
@keyframes ripple-dark {
  0% {
    background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0) 5%, rgba(255, 255, 255, 0) 100%);
  }
  25% {
    background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0.13) 15%, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0) 100%);
  }
  50% {
    background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.13) 35%, rgba(255, 255, 255, 0.13) 45%, rgba(255, 255, 255, 0) 55%, rgba(255, 255, 255, 0) 100%);
  }
  75% {
    background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 45%, rgba(255, 255, 255, 0.13) 75%, rgba(255, 255, 255, 0.13) 85%, rgba(255, 255, 255, 0) 95%, rgba(255, 255, 255, 0) 100%);
  }
  100% {
    background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%);
  }
}
.cpu-architecture {
  offset-anchor: 10px 0px;
  animation: animation-path;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.75, -0.01, 0, 0.99);
}

.cpu-architecture-container {
  position: relative;
  margin: 2em;
}

.cpu-architecture-container-inner {
  color: var(--border-alpha);
  background-color: var(--background-alpha);
  border: 1px solid var(--border-alpha);
  border-radius: var(--radius);
  position: relative;
  max-width: 600px;
  max-height: 300px;
  min-width: 300px;
  min-height: 150px;
  width: 100%;
  height: 100%;
  margin: auto;
}

.cpu-line-1 {
  offset-path: path("M 10 20 h 79.5 q 5 0 5 5 v 30");
  animation-duration: 5s;
  animation-delay: 1s;
}

.cpu-line-2 {
  offset-path: path("M 180 10 h -69.7 q -5 0 -5 5 v 40");
  animation-delay: 6s;
  animation-duration: 2s;
}

.cpu-line-3 {
  offset-path: path("M 130 20 v 21.8 q 0 5 -5 5 h -25");
  animation-delay: 4s;
  animation-duration: 6s;
}

.cpu-line-4 {
  offset-path: path("M 170 80 v -21.8 q 0 -5 -5 -5 h -65");
  animation-delay: 3s;
  animation-duration: 3s;
}

.cpu-line-5 {
  offset-path: path("M 135 65 h 15 q 5 0 5 5 v 10 q 0 5 -5 5 h -39.8 q -5 0 -5 -5 v -35");
  animation-delay: 9s;
  animation-duration: 4s;
}

.cpu-line-6 {
  offset-path: path("M 94.8 95 v -46");
  animation-delay: 3s;
  animation-duration: 7s;
}

.cpu-line-7 {
  offset-path: path("M 88 88 v -15 q 0 -5 -5 -5 h -10 q -5 0 -5 -5 v -5 q 0 -5 5 -5 h 28");
  animation-delay: 4s;
  animation-duration: 4s;
}

.cpu-line-8 {
  offset-path: path("M 30 30 h 25 q 5 0 5 5 v 6.5 q 0 5 5 5 h 35");
  animation-delay: 3s;
  animation-duration: 3s;
}

@keyframes animation-path {
  0% {
    offset-distance: 0%;
  }
  100% {
    offset-distance: 100%;
  }
}
@keyframes database-animation-path {
  0% {
    offset-distance: 0%;
  }
  100% {
    offset-distance: 100%;
  }
}
.database {
  offset-anchor: 10px 0px;
  animation: database-animation-path;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  animation-duration: 4s;
  animation-delay: 1s;
}

.db-light-1 {
  offset-path: path("M 31 10 v 15 q 0 5 5 5 h 59 q 5 0 5 5 v 25");
}

.db-light-2 {
  offset-path: path("M 77 10 v 10 q 0 5 5 5 h 13 q 5 0 5 5 v 25");
}

.db-light-3 {
  offset-path: path("M 124 10 v 10 q 0 5 -5 5 h -14 q -5 0 -5 5 v 25");
}

.db-light-4 {
  offset-path: path("M 170 10 v 15 q 0 5 -5 5 h -60 q -5 0 -5 5 v 25");
}

.database-container {
  position: relative;
  margin: 2em;
}

.database-container-inner {
  color: var(--border-alpha);
  background-color: var(--background-alpha);
  border: 1px solid var(--border-alpha);
  border-radius: var(--radius);
  position: relative;
  max-width: 600px;
  min-height: 300px;
  margin: auto;
}

.database-box {
  color: var(--muted-foreground);
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1em;
}

.database-shadow {
  position: absolute;
  bottom: -4px;
  height: 100px;
  width: 62%;
  border-radius: 0.5rem;
  background-color: var(--accent-alpha);
  opacity: 0.3;
  padding-bottom: 1em;
}

.database-title {
  position: absolute;
  top: -3px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border-alpha);
  background-color: #101112;
  font-size: 10px;
  margin-top: 5px;
}
@media (min-width: 640px) {
  .database-title {
    top: -4px;
    padding: 0.375rem 0.5rem;
  }
}

.database-circle {
  position: absolute;
  bottom: -8px;
  z-index: 30;
  display: grid;
  place-items: center;
  height: 60px;
  width: 60px;
  border-radius: 9999px;
  border-top: 1px solid var(--border-alpha);
  background-color: #141516;
  font-weight: 600;
  font-size: 0.75rem;
  margin: auto;
}

.database-content {
  position: relative;
  z-index: 10;
  display: flex;
  height: 150px;
  width: 100%;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0.5rem;
  border: 1px solid var(--border-alpha);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.database-badge {
  position: absolute;
  bottom: 2rem;
  z-index: 10;
  display: flex;
  height: 1.75rem;
  align-items: center;
  gap: 0.5rem;
  padding: 0 0.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-alpha);
  background-color: #101112;
  font-size: 0.75rem;
}
.database-badge-left {
  left: 3rem;
}
.database-badge-right {
  right: 4rem;
  display: none;
}
@media (min-width: 640px) {
  .database-badge-right {
    display: flex;
  }
}

.database-circles {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: var(--accent-alpha);
  display: flex;
  justify-content: center;
  align-items: center;
}
.database-circles > div {
  position: absolute;
  border-radius: 9999px;
  border-top: 1px solid var(--border-alpha);
  opacity: 0.5;
  animation: database-circle-pulse 2s infinite;
  transform: translateX(-50%);
}
.database-circles > div.database-circle-1 {
  bottom: -50px;
  height: 100px;
  width: 100px;
  animation-delay: 0s;
}
.database-circles > div.database-circle-2 {
  bottom: -75px;
  height: 145px;
  width: 145px;
  animation-delay: 0.25s;
}
.database-circles > div.database-circle-3 {
  bottom: -100px;
  height: 190px;
  width: 190px;
  animation-delay: 0.5s;
}
.database-circles > div.database-circle-4 {
  bottom: -120px;
  height: 235px;
  width: 235px;
  animation-delay: 0.75s;
}

@keyframes database-circle-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}/*# sourceMappingURL=main.css.map */