@charset "UTF-8";

/* src/styles/index.scss */
@layer properties;
@layer theme, base, components, utilities;
@layer theme {
  :root,
  :host {
    --font-sans:
      ui-sans-serif,
      system-ui,
      sans-serif,
      "Apple Color Emoji",
      "Segoe UI Emoji",
      "Segoe UI Symbol",
      "Noto Color Emoji";
    --font-mono:
      ui-monospace,
      SFMono-Regular,
      Menlo,
      Monaco,
      Consolas,
      "Liberation Mono",
      "Courier New",
      monospace;
    --color-white: #fff;
    --spacing: 0.25rem;
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-3xl--line-height: calc(2.25 / 1.875);
    --font-weight-bold: 700;
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --default-transition-duration: 150ms;
    --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}
@layer base {
  *,
  ::after,
  ::before,
  ::backdrop,
  ::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html,
  :host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  b,
  strong {
    font-weight: bolder;
  }
  code,
  kbd,
  samp,
  pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub,
  sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol,
  ul,
  menu {
    list-style: none;
  }
  img,
  svg,
  video,
  canvas,
  audio,
  iframe,
  embed,
  object {
    display: block;
    vertical-align: middle;
  }
  img,
  video {
    max-width: 100%;
    height: auto;
  }
  button,
  input,
  select,
  optgroup,
  textarea,
  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::-moz-placeholder {
    opacity: 1;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
    ::-moz-placeholder {
      color: currentcolor;
      @supports (color: color-mix(in lab, red, red)) {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
    ::placeholder {
      color: currentcolor;
      @supports (color: color-mix(in lab, red, red)) {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit,
  ::-webkit-datetime-edit-year-field,
  ::-webkit-datetime-edit-month-field,
  ::-webkit-datetime-edit-day-field,
  ::-webkit-datetime-edit-hour-field,
  ::-webkit-datetime-edit-minute-field,
  ::-webkit-datetime-edit-second-field,
  ::-webkit-datetime-edit-millisecond-field,
  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button,
  input:where([type=button], [type=reset], [type=submit]),
  ::file-selector-button {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
  }
  ::-webkit-inner-spin-button,
  ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden=until-found])) {
    display: none !important;
  }
}
@layer utilities {
  .visible {
    visibility: visible;
  }
  .container {
    width: 100%;
    @media (width >= 40rem) {
      max-width: 40rem;
    }
    @media (width >= 48rem) {
      max-width: 48rem;
    }
    @media (width >= 64rem) {
      max-width: 64rem;
    }
    @media (width >= 80rem) {
      max-width: 80rem;
    }
    @media (width >= 96rem) {
      max-width: 96rem;
    }
  }
  .grid {
    display: grid;
  }
  .rounded {
    border-radius: 0.25rem;
  }
  .border {
    border-style: var(--tw-border-style);
    border-width: 1px;
  }
  .p-4 {
    padding: calc(var(--spacing) * 4);
  }
  .text-center {
    text-align: center;
  }
  .text-justify {
    text-align: justify;
  }
  .font-mono {
    font-family: var(--font-mono);
  }
  .font-sans {
    font-family: var(--font-sans);
  }
  .text-3xl {
    font-size: var(--text-3xl);
    line-height: var(--tw-leading, var(--text-3xl--line-height));
  }
  .font-bold {
    --tw-font-weight: var(--font-weight-bold);
    font-weight: var(--font-weight-bold);
  }
  .underline {
    text-decoration-line: underline;
  }
  .shadow-none {
    --tw-shadow: 0 0 #0000;
    box-shadow:
      var(--tw-inset-shadow),
      var(--tw-inset-ring-shadow),
      var(--tw-ring-offset-shadow),
      var(--tw-ring-shadow),
      var(--tw-shadow);
  }
  .outline {
    outline-style: var(--tw-outline-style);
    outline-width: 1px;
  }
  .transition {
    transition-property:
      color,
      background-color,
      border-color,
      outline-color,
      text-decoration-color,
      fill,
      stroke,
      --tw-gradient-from,
      --tw-gradient-via,
      --tw-gradient-to,
      opacity,
      box-shadow,
      transform,
      translate,
      scale,
      rotate,
      filter,
      backdrop-filter,
      display,
      content-visibility,
      overlay,
      pointer-events;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }
}
* {
  font-family: "Inter", sans-serif;
}
.section-secondary {
  background-color: #D9D9D9;
}
.hero-banner-wrapper {
  min-height: 550px;
}
#ts-particles {
  position: absolute;
  width: 100%;
  height: 550px;
  z-index: -1;
}
.navbar {
  background-color: #0A1128;
  position: static;
  width: 100%;
  z-index: 9999;
}
.navbar ul li a {
  color: #FFF;
}
.navbar ul li .nav-link.active {
  color: #54B3D6;
}
.home-card-title {
  font-weight: 300;
}
.about-card-title {
  font-weight: 300;
}
.objective-card-title {
  font-weight: bold;
}
.card-body {
  padding-top: 5%;
}
.about-card {
  padding-bottom: 3%;
}
.about-desc {
  text-align: center;
  padding-top: 1%;
  padding-left: 10%;
  padding-right: 10%;
}
.about-card-body {
  padding-top: 2%;
  width: 97%;
}
.research-card {
  margin-top: 2%;
  margin-bottom: 2%;
  border-radius: 10px;
  border: 1px solid #808080;
}
.research-img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 315px;
  width: 100%;
}
.hamburger {
  width: 2rem;
  height: 2rem;
  display: flex;
  justify-content: space-around;
  flex-flow: row wrap;
  z-index: 10;
}
.hamburger-menu {
  position: absolute;
  top: 2%;
  right: 2%;
}
.burger {
  width: 2rem;
  height: 0.25rem;
  border-radius: 10px;
  background-color: white;
  transform-origin: 1px;
  transition: all 0.3s linear;
}
.menu-items {
  color: #fff;
  padding-top: 2%;
  padding-left: 2%;
}
.mobile-menu-bar {
  background-color: #0A1128;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
}
.lab-heads-list {
  padding: 10px;
  position: relative;
  text-align: left;
}
.lab-heads-list:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 1px;
  background-color: #000;
  width: calc(100% - 200px);
}
.current-members-list {
  padding: 10px;
  position: relative;
  text-align: left;
}
.current-members-list:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 1px;
  background-color: #000;
  width: calc(100% - 300px);
}
.staff-list {
  padding: 10px;
  position: relative;
  text-align: left;
}
.staff-list:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 1px;
  background-color: #000;
  width: calc(100% - 110px);
}
.alumni-list {
  padding: 10px;
  position: relative;
  text-align: left;
}
.alumni-list:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 1px;
  background-color: #000;
  width: calc(100% - 150px);
}
.member-card {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-shrink: 0;
  border-radius: 25px;
  background: #FFF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  position: relative;
  margin: 10px;
}
.member-card-link {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
}
.card-img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: left;
  object-position: left;
  grid-area: 1/1/3/4;
  width: 95px;
  height: 98px;
  border-radius: 50%;
  margin-left: 5%;
  padding: 10px;
}
.member-card-body {
  grid-area: 1/5/3/10;
  margin-left: -20px;
  padding: 5px;
}
.member-card-footer {
  grid-area: 2/5/2/10;
  margin-left: -15px;
}
.btn {
  margin: 3px;
}
.models-title-card {
  height: 100%;
}
.models-title {
  position: relative;
  text-align: left;
  margin: 10px;
  font-size: 40;
}
.no-model-card {
  position: relative;
  padding-top: 15%;
  opacity: 0.6;
}
.model-tab {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  font-size: 0;
  text-align: left;
}
.model-tab > input {
  position: absolute;
  left: -9999px;
}
.model-tab > label {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  cursor: pointer;
  transition: all 0.1s;
  -o-transition: all 0.1s;
  -ms-transition: all 0.1s;
  -moz-transition: all 0.1s;
  -webkit-transition: all 0.1s;
}
.model-tab > input:checked + label {
  cursor: default;
}
.model-tab > ul {
  list-style: none;
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  font-size: 13px;
}
.model-tab > ul,
.model-tab > ul > li {
  height: 100vh;
}
.model-tab > ul > li {
  position: absolute;
  width: 100%;
  overflow: auto;
  padding: 30px 40px 40px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  opacity: 0;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.model-tab > .tab-content-first:checked ~ ul .tab-content-first,
.model-tab > .tab-content-2:checked ~ ul .tab-content-2,
.model-tab > .tab-content-3:checked ~ ul .tab-content-3 {
  z-index: 1;
  top: 0;
  left: 0;
  opacity: 1;
  -webkit-transform: scale(1, 1);
  -webkit-transform: rotate(0deg);
}
.model-tab > label {
  padding: 0 20px;
  background: #e5e5e5;
  font-size: 13px;
  line-height: 49px;
}
.model-tab > label:hover {
  background: #f2f2f2;
}
.model-tab > input:checked + label {
  background: #fff;
}
.model-tab > ul {
  background: #fff;
  text-align: left;
}
.model-tab-steps > label:hover {
  background: #e5e5e5;
}
.model-tab-theme-1 > label {
  margin: 0 5px 5px 0;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 2px rgba(0, 0, 0, 0.2);
  color: #808080;
  opacity: 0.8;
}
.model-tab-theme-1 > label:hover {
  background: #fff;
  opacity: 1;
}
.model-tab-theme-1 > input:checked + label {
  margin-bottom: 0;
  padding-bottom: 5px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  color: #2b82d9;
  opacity: 1;
}
.model-tab-theme-1 > ul {
  border-radius: 5px;
  box-shadow: 0 3px rgba(0, 0, 0, 0.2);
}
.model-tab-theme-1 > .tab-content-first:checked ~ ul {
  border-top-left-radius: 0;
}
.select-category {
  vertical-align: middle;
  text-align: center;
  padding-top: 2%;
  opacity: 70%;
}
.form-control {
  width: 100%;
  height: 50%;
  margin-bottom: 45px;
}
.card {
  min-height: 20rem;
  margin-bottom: 10px;
}
.card-title {
  font-weight: 700;
  font-size: 32px;
  opacity: 0.5;
  padding-bottom: 3%;
}
.card-body {
  padding: 5%;
}
.card-lines {
  display: flex;
  justify-content: space-between;
}
.result-labels {
  text-align: left;
  display: inline-block;
  font-weight: 400;
  font-size: 150%;
  opacity: 0.5;
}
.result-result {
  text-align: right;
  display: inline-block;
  font-weight: 700;
  font-size: 145%;
  opacity: 0.5;
}
.button-panel-left {
  margin-bottom: 10px;
}
.button-panel-right {
  margin-bottom: 10px;
}
#drag-file-element {
  position: absolute;
  width: 100%;
  height: 100%;
}
#form-file-upload {
  height: 100%;
  width: 100%;
  text-align: center;
  position: absolute;
}
#classification-input-file-upload {
  display: none;
}
#classification-label-file-upload {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background-color: #f8fafc;
  overflow: hidden;
}
#classification-label-file-upload.drag-active {
  background-color: #ffffff;
}
#segmentation-input-file-upload {
  display: none;
}
#segmentation-label-file-upload {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background-color: #f8fafc;
  overflow: hidden;
}
#segmentation-label-file-upload.drag-active {
  background-color: #ffffff;
}
#obj-detect-input-file-upload {
  display: none;
}
#obj-detect-label-file-upload {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background-color: #f8fafc;
  overflow: hidden;
}
#obj-detect-label-file-upload.drag-active {
  background-color: #ffffff;
}
.tooltip {
  position: absolute;
  color: #000;
  padding: 8px;
  font-size: 16px;
  opacity: 0.9;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 4px;
  z-index: 1;
}
.result-container {
  position: relative;
  height: 100%;
}
.classif-uploaded-image {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.od-uploaded-image {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.seg-uploaded-image {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.upload-button {
  cursor: pointer;
  padding: 0;
  font-size: 1rem;
  border: none;
  background-color: transparent;
}
.upload-button:hover {
  text-decoration-line: underline;
}
.prog-bar-col {
  margin-bottom: 44px;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.progress-spinner-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 25vh;
}
.progress-spinner {
  display: inline-block;
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-left-color: #007bff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  animation: spin 1s linear infinite;
}
.progress-bar-container {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 18px;
}
.progress-bar {
  height: 6px;
  background-color: rgba(5, 114, 206, 0.2);
  width: 100%;
  overflow: hidden;
}
.progress-bar-value {
  width: 100%;
  height: 100%;
  background-color: rgb(5, 114, 206);
  animation: indeterminateAnimation 1s infinite linear;
  transform-origin: 0% 50%;
}
@keyframes indeterminateAnimation {
  0% {
    transform: translateX(0) scaleX(0);
  }
  40% {
    transform: translateX(0) scaleX(0.4);
  }
  100% {
    transform: translateX(100%) scaleX(0.5);
  }
}
.output-image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background-color: #f8fafc;
  overflow: hidden;
}
:root {
  --color-ateneo-blue: #10069F;
  --color-ateneo-blue-dark: #08045C;
  --color-ateneo-blue-ink: #0A1128;
  --color-ateneo-blue-light: #E8ECFF;
  --color-white: #FFFFFF;
  --color-off-white: #F7F8FA;
  --color-border: #D8DDE8;
  --color-text: #101828;
  --color-text-muted: #475467;
  --color-gold: #F2C94C;
  --color-cyan: #2F80ED;
}
body {
  margin: 0;
  color: #101828;
  background: #FFFFFF;
}
a {
  color: inherit;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid #2F80ED;
  outline-offset: 2px;
}
.alive-landing {
  min-height: 100vh;
  color: #101828;
  background: #FFFFFF;
}
.alive-container {
  width: min(1120px, 100% - 32px);
  margin: 0 auto;
}
.alive-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 0 max(24px, (100vw - 1120px) / 2);
  color: #FFFFFF;
  background: #0A1128;
  border-bottom: 4px solid #10069F;
}
.alive-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  color: #FFFFFF;
  text-decoration: none;
}
.alive-brand img {
  display: block;
  width: 54px;
  height: 54px;
  -o-object-fit: contain;
  object-fit: contain;
}
.alive-brand span,
.alive-brand strong,
.alive-brand small {
  display: block;
}
.alive-brand strong {
  color: #FFFFFF;
  font-size: 1rem;
  line-height: 1.1;
}
.alive-brand small {
  max-width: 220px;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.25;
}
.alive-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.9375rem;
  font-weight: 600;
}
.alive-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #FFFFFF;
  text-decoration: none;
}
.alive-nav a::after {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 2px;
  content: "";
  background: #F2C94C;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}
.alive-nav a:hover::after {
  transform: scaleX(1);
}
.alive-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 48px;
  align-items: center;
  width: min(1120px, 100% - 32px);
  min-height: min(720px, 100vh - 76px);
  margin: 0 auto;
  padding: 48px 0 56px;
}
.alive-hero__content {
  max-width: 660px;
}
.alive-eyebrow,
.alive-kicker {
  margin: 0 0 16px;
  color: #10069F;
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
}
.alive-hero h1 {
  margin: 0;
  color: #0A1128;
  font-size: clamp(2.2rem, 4.35vw, 4.15rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}
.alive-hero h1 span {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: clamp(3.2rem, 4.65vw, 4.65rem);
}
.alive-initial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(2.75rem, 4.4vw, 4.15rem);
  height: clamp(2.75rem, 4.4vw, 4.15rem);
  border: 2px solid #10069F;
  color: #FFFFFF;
  background: #10069F;
  font-weight: 900;
  line-height: 1;
  flex: 0 0 auto;
}
.alive-hero__lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: #475467;
  font-size: 1.1875rem;
  line-height: 1.75;
}
.alive-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.alive-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid #10069F;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}
.alive-button:hover {
  transform: translateY(-1px);
}
.alive-button--primary {
  color: #FFFFFF;
  background: #10069F;
}
.alive-button--primary:hover {
  background: #08045C;
  border-color: #08045C;
}
.alive-button--secondary {
  color: #10069F;
  background: #FFFFFF;
}
.alive-button--secondary:hover {
  color: #08045C;
  border-color: #08045C;
}
.alive-hero__visual {
  width: 100%;
}
.alive-visual-panel {
  border: 1px solid #D8DDE8;
  border-radius: 0;
  background: #FFFFFF;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
}
.alive-visual-panel__header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 14px 16px;
  color: #FFFFFF;
  background: #0A1128;
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    "Liberation Mono",
    monospace;
  font-size: 0.75rem;
}
.alive-visual-panel__header a {
  color: #FFFFFF;
  text-decoration: none;
}
.alive-visual-panel__header a:hover {
  text-decoration: underline;
}
.alive-vision-frame {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #E8ECFF;
}
.alive-vision-frame img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.alive-logo-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(16, 6, 159, 0.08) 1px,
      transparent 1px),
    linear-gradient(
      0deg,
      rgba(16, 6, 159, 0.08) 1px,
      transparent 1px),
    #F7F8FA;
  background-size: 32px 32px;
}
.alive-logo-stage::before,
.alive-logo-stage::after {
  position: absolute;
  content: "";
  border: 1px solid #D8DDE8;
  pointer-events: none;
}
.alive-logo-stage::before {
  inset: 36px;
}
.alive-logo-stage::after {
  inset: 64px;
  border-color: rgba(16, 6, 159, 0.35);
}
.alive-logo-stage img {
  position: relative;
  z-index: 1;
  width: min(64%, 320px);
  aspect-ratio: 1/1;
  -o-object-fit: contain;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(16, 24, 40, 0.18));
  animation: aliveLogoFloat 5.5s ease-in-out infinite;
}
.alive-logo-stage__scan {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -18%;
  width: 18%;
  background: rgba(47, 128, 237, 0.14);
  border-right: 1px solid rgba(47, 128, 237, 0.28);
  animation: aliveLogoScan 4.8s linear infinite;
}
@keyframes aliveLogoFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes aliveLogoScan {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(700%);
  }
}
.alive-detection {
  position: absolute;
  min-width: 132px;
  padding: 8px 10px;
  border: 1px solid #F2C94C;
  color: #FFFFFF;
  background: rgba(10, 17, 40, 0.82);
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    "Liberation Mono",
    monospace;
  font-size: 0.75rem;
}
.alive-detection--one {
  top: 18%;
  left: 10%;
}
.alive-detection--two {
  right: 8%;
  bottom: 18%;
}
.alive-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #D8DDE8;
}
.alive-metric {
  padding: 18px 16px;
  border-right: 1px solid #D8DDE8;
}
.alive-metric:last-child {
  border-right: 0;
}
.alive-metric strong,
.alive-metric span {
  display: block;
}
.alive-metric strong {
  color: #10069F;
  font-size: 1.125rem;
}
.alive-metric span {
  margin-top: 4px;
  color: #475467;
  font-size: 0.8125rem;
}
.alive-section {
  padding: 72px 0;
  border-top: 1px solid #D8DDE8;
}
.alive-section--offwhite,
.alive-section--statement {
  background: #F7F8FA;
}
.alive-statement {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}
.alive-statement h2,
.alive-section-heading h2,
.alive-community h2 {
  margin: 0;
  color: #0A1128;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}
.alive-statement p:last-child {
  margin: 0;
  color: #475467;
  font-size: 1.0625rem;
  line-height: 1.75;
}
.alive-section-heading {
  max-width: 720px;
  margin-bottom: 32px;
}
.alive-section-heading--left {
  margin-bottom: 0;
}
.alive-section-heading p:not(.alive-kicker) {
  margin: 16px 0 0;
  color: #475467;
  font-size: 1.0625rem;
  line-height: 1.7;
}
.alive-research-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.alive-research-card {
  border: 1px solid #D8DDE8;
  border-radius: 0;
  overflow: hidden;
  background: #FFFFFF;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}
.alive-research-card:hover {
  border-color: #10069F;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
  transform: translateY(-2px);
}
.alive-research-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
  object-fit: cover;
}
.alive-research-card__body {
  padding: 24px;
}
.alive-research-card__body svg {
  width: 24px;
  height: 24px;
  color: #10069F;
}
.alive-research-card h3 {
  margin: 16px 0 0;
  color: #0A1128;
  font-size: 1.25rem;
  font-weight: 800;
}
.alive-research-card p {
  margin: 12px 0 0;
  color: #475467;
  line-height: 1.65;
}
.alive-research-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}
.alive-research-card li {
  padding: 5px 8px;
  border: 1px solid #D8DDE8;
  border-radius: 2px;
  color: #0A1128;
  background: #F7F8FA;
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    "Liberation Mono",
    monospace;
  font-size: 0.75rem;
}
.alive-publications {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}
.alive-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  margin-top: 24px;
  color: #10069F;
  font-weight: 800;
  text-decoration: none;
}
.alive-text-link:hover {
  color: #08045C;
  text-decoration: underline;
}
.alive-publication-list {
  border-top: 1px solid #D8DDE8;
  background: #FFFFFF;
}
.alive-publication-row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid #D8DDE8;
}
.alive-publication-row span {
  color: #10069F;
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    "Liberation Mono",
    monospace;
  font-weight: 800;
}
.alive-publication-row p {
  margin: 0;
  color: #0A1128;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.55;
}
.alive-community {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 40px;
  border: 1px solid #10069F;
  background: #FFFFFF;
}
.alive-community__panel > svg {
  width: 28px;
  height: 28px;
  margin-bottom: 20px;
  color: #10069F;
}
.alive-community__panel p {
  max-width: 700px;
  margin: 16px 0 0;
  color: #475467;
  font-size: 1.0625rem;
  line-height: 1.7;
}
.alive-community__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 180px;
}
.alive-footer {
  padding: 28px 0;
  color: #FFFFFF;
  background: #0A1128;
}
.alive-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.alive-footer p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
}
.alive-about {
  min-height: 100vh;
  color: #101828;
  background: #FFFFFF;
}
.alive-about-hero {
  padding: 72px 0;
  border-bottom: 1px solid #D8DDE8;
}
.alive-about-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 56px;
  align-items: center;
}
.alive-about-hero h1 {
  margin: 0;
  color: #0A1128;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0;
}
.alive-about-hero p:not(.alive-eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: #475467;
  font-size: 1.1875rem;
  line-height: 1.75;
}
.alive-about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.alive-about-profile {
  border: 1px solid #D8DDE8;
  background: #F7F8FA;
}
.alive-about-profile img {
  display: block;
  width: min(220px, 58%);
  margin: 36px auto;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
  object-fit: contain;
}
.alive-about-profile dl {
  margin: 0;
  border-top: 1px solid #D8DDE8;
  background: #FFFFFF;
}
.alive-about-profile div {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 20px;
  padding: 18px 20px;
  border-bottom: 1px solid #D8DDE8;
}
.alive-about-profile div:last-child {
  border-bottom: 0;
}
.alive-about-profile dt {
  color: #10069F;
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    "Liberation Mono",
    monospace;
  font-size: 0.75rem;
  font-weight: 800;
}
.alive-about-profile dd {
  margin: 0;
  color: #0A1128;
  font-weight: 700;
  line-height: 1.45;
}
.alive-about-section {
  padding: 72px 0;
  border-bottom: 1px solid #D8DDE8;
}
.alive-about-section--first {
  padding-top: 80px;
}
.alive-about-section--offwhite {
  background: #F7F8FA;
}
.alive-about-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 56px;
  align-items: start;
}
.alive-about-intro h2,
.alive-about-cta h2 {
  margin: 0;
  color: #0A1128;
  font-size: clamp(1.85rem, 3vw, 2.65rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}
.alive-principles {
  border-top: 1px solid #D8DDE8;
  background: #FFFFFF;
}
.alive-principle {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid #D8DDE8;
}
.alive-principle span {
  color: #10069F;
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    "Liberation Mono",
    monospace;
  font-weight: 800;
}
.alive-principle p {
  margin: 0;
  color: #0A1128;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.6;
}
.alive-about-research-list {
  display: grid;
  gap: 24px;
}
.alive-about-research {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  border: 1px solid #D8DDE8;
  background: #FFFFFF;
}
.alive-about-research img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
}
.alive-about-research__body {
  padding: 32px;
}
.alive-about-research__title {
  display: flex;
  align-items: center;
  gap: 14px;
}
.alive-about-research__title svg {
  width: 26px;
  height: 26px;
  color: #10069F;
  flex: 0 0 auto;
}
.alive-about-research h3 {
  margin: 0;
  color: #0A1128;
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.15;
}
.alive-about-research p {
  margin: 18px 0 0;
  color: #475467;
  font-size: 1rem;
  line-height: 1.7;
}
.alive-about-research ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}
.alive-about-research li {
  padding: 10px 12px;
  border-left: 3px solid #10069F;
  color: #0A1128;
  background: #F7F8FA;
  font-weight: 700;
  line-height: 1.4;
}
.alive-about-section--cta {
  border-bottom: 0;
}
.alive-about-cta {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 40px;
  border: 1px solid #10069F;
  background: #FFFFFF;
}
.alive-about-cta > svg {
  width: 32px;
  height: 32px;
  color: #10069F;
}
.alive-about-cta p {
  max-width: 780px;
  margin: 16px 0 0;
  color: #475467;
  font-size: 1.0625rem;
  line-height: 1.7;
}
.alive-placeholder {
  min-height: 100vh;
  color: #101828;
  background: #FFFFFF;
}
.alive-placeholder-hero {
  padding: 72px 0;
  border-bottom: 1px solid #D8DDE8;
}
.alive-placeholder-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 56px;
  align-items: center;
}
.alive-placeholder-hero h1 {
  margin: 0;
  color: #0A1128;
  font-size: clamp(3rem, 7vw, 6.25rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: 0;
}
.alive-placeholder-hero p:not(.alive-eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  color: #475467;
  font-size: 1.1875rem;
  line-height: 1.75;
}
.alive-placeholder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.alive-placeholder-card {
  padding: 32px;
  border: 1px solid #D8DDE8;
  background: #F7F8FA;
}
.alive-placeholder-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid #10069F;
  color: #10069F;
  background: #FFFFFF;
}
.alive-placeholder-card__icon svg {
  width: 28px;
  height: 28px;
}
.alive-placeholder-card__label {
  margin: 28px 0 0;
  color: #10069F;
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    "Liberation Mono",
    monospace;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}
.alive-placeholder-card h2 {
  margin: 10px 0 0;
  color: #0A1128;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.15;
}
.alive-placeholder-card p:not(.alive-placeholder-card__label) {
  margin: 16px 0 0;
  color: #475467;
  font-size: 1rem;
  line-height: 1.7;
}
.alive-placeholder-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid #D8DDE8;
  color: #0A1128;
  font-weight: 800;
}
.alive-placeholder-card__meta svg {
  color: #10069F;
}
.alive-placeholder-section {
  padding: 72px 0;
  background: #F7F8FA;
}
.alive-placeholder-list {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 56px;
  align-items: start;
}
.alive-placeholder-list h2 {
  margin: 0;
  color: #0A1128;
  font-size: clamp(1.85rem, 3vw, 2.65rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}
.alive-placeholder-items {
  border-top: 1px solid #D8DDE8;
  background: #FFFFFF;
}
.alive-placeholder-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid #D8DDE8;
}
.alive-placeholder-item span {
  color: #10069F;
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    "Liberation Mono",
    monospace;
  font-weight: 800;
}
.alive-placeholder-item p {
  margin: 0;
  color: #0A1128;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.6;
}
@media (max-width: 960px) {
  .alive-topbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px;
  }
  .alive-nav {
    flex-wrap: wrap;
    gap: 8px 18px;
  }
  .alive-hero,
  .alive-statement,
  .alive-publications,
  .alive-community,
  .alive-about-hero__grid,
  .alive-about-intro,
  .alive-about-research,
  .alive-placeholder-hero__grid,
  .alive-placeholder-list {
    grid-template-columns: 1fr;
  }
  .alive-hero {
    min-height: auto;
    padding: 40px 0 48px;
  }
  .alive-research-grid {
    grid-template-columns: 1fr;
  }
  .alive-community {
    padding: 28px;
  }
  .alive-community__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .alive-footer__inner {
    flex-direction: column;
  }
  .alive-about-hero {
    padding: 48px 0;
  }
  .alive-about-section,
  .alive-placeholder-hero,
  .alive-placeholder-section {
    padding: 56px 0;
  }
  .alive-about-research img {
    min-height: 240px;
  }
}
@media (max-width: 560px) {
  .alive-container,
  .alive-hero {
    width: min(100% - 24px, 1120px);
  }
  .alive-brand img {
    width: 48px;
    height: 48px;
  }
  .alive-brand small {
    max-width: 190px;
  }
  .alive-nav {
    width: 100%;
  }
  .alive-nav a {
    min-height: 36px;
  }
  .alive-hero h1 {
    font-size: 2.15rem;
  }
  .alive-hero h1 span {
    gap: 10px;
    min-height: 2.75rem;
  }
  .alive-initial {
    width: 2.35rem;
    height: 2.35rem;
    border-width: 1px;
  }
  .alive-hero__lead,
  .alive-statement p:last-child,
  .alive-section-heading p:not(.alive-kicker),
  .alive-community__panel p {
    font-size: 1rem;
  }
  .alive-hero__actions,
  .alive-community__actions {
    align-items: stretch;
    flex-direction: column;
  }
  .alive-button {
    width: 100%;
  }
  .alive-metrics {
    grid-template-columns: 1fr;
  }
  .alive-metric {
    border-right: 0;
    border-bottom: 1px solid #D8DDE8;
  }
  .alive-metric:last-child {
    border-bottom: 0;
  }
  .alive-section {
    padding: 48px 0;
  }
  .alive-publication-row {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
  }
  .alive-about-hero h1 {
    font-size: 3.3rem;
  }
  .alive-placeholder-hero h1 {
    font-size: 3.45rem;
  }
  .alive-about-hero p:not(.alive-eyebrow),
  .alive-placeholder-hero p:not(.alive-eyebrow),
  .alive-about-cta p {
    font-size: 1rem;
  }
  .alive-about-hero__actions,
  .alive-placeholder-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .alive-about-profile div,
  .alive-principle,
  .alive-about-cta,
  .alive-placeholder-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .alive-about-research__body,
  .alive-about-cta,
  .alive-placeholder-card {
    padding: 24px;
  }
  .alive-about-research ul {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .alive-nav a::after,
  .alive-button,
  .alive-research-card,
  .alive-logo-stage img,
  .alive-logo-stage__scan {
    transition: none;
    animation: none;
  }
  .alive-button:hover,
  .alive-research-card:hover {
    transform: none;
  }
}
@property --tw-border-style { syntax: "*"; inherits: false; initial-value: solid; }
@property --tw-font-weight { syntax: "*"; inherits: false; }
@property --tw-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
@property --tw-shadow-color { syntax: "*"; inherits: false; }
@property --tw-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
@property --tw-inset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
@property --tw-inset-shadow-color { syntax: "*"; inherits: false; }
@property --tw-inset-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
@property --tw-ring-color { syntax: "*"; inherits: false; }
@property --tw-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
@property --tw-inset-ring-color { syntax: "*"; inherits: false; }
@property --tw-inset-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
@property --tw-ring-inset { syntax: "*"; inherits: false; }
@property --tw-ring-offset-width { syntax: "<length>"; inherits: false; initial-value: 0px; }
@property --tw-ring-offset-color { syntax: "*"; inherits: false; initial-value: #fff; }
@property --tw-ring-offset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
@property --tw-outline-style { syntax: "*"; inherits: false; initial-value: solid; }
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@layer properties {
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
    *,
    ::before,
    ::after,
    ::backdrop {
      --tw-border-style: solid;
      --tw-font-weight: initial;
      --tw-shadow: 0 0 #0000;
      --tw-shadow-color: initial;
      --tw-shadow-alpha: 100%;
      --tw-inset-shadow: 0 0 #0000;
      --tw-inset-shadow-color: initial;
      --tw-inset-shadow-alpha: 100%;
      --tw-ring-color: initial;
      --tw-ring-shadow: 0 0 #0000;
      --tw-inset-ring-color: initial;
      --tw-inset-ring-shadow: 0 0 #0000;
      --tw-ring-inset: initial;
      --tw-ring-offset-width: 0px;
      --tw-ring-offset-color: #fff;
      --tw-ring-offset-shadow: 0 0 #0000;
      --tw-outline-style: solid;
    }
  }
}
/*! tailwindcss v4.3.0 | MIT License | https://tailwindcss.com */
