@import url("/?originalUrl=https%3A%2F%2Ffonts.googleapis.com%2Fcss2%3Ffamily%3DInstrument%2BSans%3Aital%2Cwght%400%2C400..700%3B1%2C400..700%26family%3DParkinsans%3Awght%40300..800%26display%3Dswap");

/* General layout */

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

/* Background */

html {
    background-color: black;
    scroll-behavior: smooth;
}

body {
    background-color: transparent;
    margin: 0;

    /* Text */
    color: white;
    font-family: "Instrument Sans", "Avenir Next", Tahoma, Verdana, sans-serif;
    font-size: 1.1em;
    letter-spacing: -0.3px;
    line-height: 1.5em;
}

@keyframes move-background {
    from {
          -webkit-transform: translate3d(0px, 0px, 0px);
      }
      to {
          -webkit-transform: translate3d(1000px, 0px, 0px);
      }
  }
  @-webkit-keyframes move-background {
    from {
          -webkit-transform: translate3d(0px, 0px, 0px);
      }
      to {
          -webkit-transform: translate3d(1000px, 0px, 0px);
      }
  }

  @-moz-keyframes move-background {
      from {
          -webkit-transform: translate3d(0px, 0px, 0px);
      }
      to {
          -webkit-transform: translate3d(1000px, 0px, 0px);
      }
  }

      @-webkit-keyframes move-background {
      from {
          -webkit-transform: translate3d(0px, 0px, 0px);
      }
      to {
          -webkit-transform: translate3d(1000px, 0px, 0px);
      }
  }

.signup-form {
    margin-top: 5em;
}

.background-container {
    display: none; /* start hidden */
    position: fixed;
    top: 0;
    left:0;
    bottom: 0;
    right: 0;
    z-index: -2;
}

/* Text */

h1 {
    text-align: center;
    font-size: 3em;
    line-height: 1em;
    margin-bottom: 0;
    letter-spacing: -3px;
}

h2 {
    text-align: center;
    font-weight: 300;
    margin-bottom: 1em;
}

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

.wordmark-full {
    width: 20em;
    max-width: 90%;
}

.wordmark {
    font-weight: 300;
    font-size: 2em;
    line-height: 1em;
}

.wordmark-bird > img {
    margin-right: 25px;
}

.wordmark > img {
    display: inline;
    width: 7em;
}

/* Links */

a {
    color: white !important;
}

.text-container > p > a {
    color: #0099ff !important;
    text-decoration: none !important;
}

/* Header */

.header {
    z-index: 3;
    position: sticky;
    top: 0;
    padding: 1em 0;
    text-align: center;
}

/* Translucent Navbar */

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    padding: 0.5em 0;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.5em 1.5em;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2em;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.navbar .logo-container {
    flex-shrink: 0;
}

.navbar .logo-container > img {
    height: 3em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.navbar .logo-container > img:hover {
    transform: scale(1.1);
}

/* Navigation Menu */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.nav-link {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95em;
    font-weight: 500;
    padding: 0.6em 1em;
    border-radius: 1.5em;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    transform: translateY(-2px);
}

.nav-link.menu-link-selected {
    background: rgba(255, 255, 255, 0.25);
    color: white;
}

/* Hamburger Menu Button */

.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: none;
    padding: 0.5em;
    cursor: pointer;
    z-index: 110;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Responsive Styles */

@media (max-width: 900px) {
    .navbar-inner {
        padding: 0.5em 1em;
    }
    
    .nav-link {
        font-size: 0.85em;
        padding: 0.5em 0.7em;
    }
}

@media (max-width: 768px) {
    .hamburger-btn {
        display: flex;
    }
    
    .nav-menu {
        display: none !important; /* Hidden on mobile - use hamburger for full-screen menu */
    }
    
    .navbar .logo-container > img {
        height: 2.5em;
    }
}

@media (max-width: 400px) {
    .navbar-inner {
        margin: 0 0.5em;
        padding: 0.4em 0.8em;
    }
    
    .navbar .logo-container > img {
        height: 2em;
    }
    
    .nav-link {
        font-size: 1.2em;
        padding: 0.7em 1.2em;
    }
}

/* Legacy Full-Screen Menu (fallback) */

.menu-container {
    backdrop-filter: brightness(0.2) blur(10px);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
    cursor: default;
    display: none; /* start hidden */
}

.menu {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
    display: grid;
}

.menu-links {
    display: grid;
    place-self: center;
    align-items: center;
    gap: 1em;
    width: 15em;
    height: 75vh;
}

.menu-links > button {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1em;
    border-radius: 1.75em;
    border: none;
    color: white;
    font-size: 1.5em;
    margin: 0 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.menu-links > button:hover {
    background-color: rgba(255, 255, 255, 0.25);
    scale: 1.05;
}

.menu-link-selected {
    background-color: rgba(255, 255, 255, 0.5) !important;
}

.ribbon {
    position: fixed;
    top: 25px;
    left: -50px;
    width: 200px;
    background-color: #AF40FF;
    color: white;
    text-align: center;
    line-height: 50px;
    transform: rotate(-45deg);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 10;
    cursor: default;
}

.ribbon span {
    display: block;
    font-size: 16px;
    font-weight: 500;
}

/* Announcement Banner */

.announcement-banner {
    display: block;
    width: 100%;
    padding: 0.75em 1em;
    background: linear-gradient(90deg, #AF40FF, #5B42F3, #00DDEB);
    text-align: center;
    text-decoration: none !important;
    transition: filter 0.3s ease;
    box-sizing: border-box;
}

.announcement-banner:hover {
    filter: brightness(1.2);
}

.announcement-banner-text {
    color: white;
    font-weight: 600;
    font-size: 1em;
    letter-spacing: 0.5px;
}

@media (max-width: 500px) {
    .announcement-banner-text {
        font-size: 0.9em;
    }
}

/* Glass Button */

.glass-btn {
    display: inline-block;
    padding: 0.8em 1.5em;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2em;
    color: white !important;
    font-size: 1.1em;
    font-weight: 500;
    text-decoration: none !important;
    transition: all 0.3s ease;
    cursor: pointer;
}

.glass-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 500px) {
    .glass-btn {
        font-size: 0.85em;
        padding: 0.7em 1.2em;
    }
}

.ghost-text {
    font-style: italic;
    color: grey;
}

/* Footer */

.social-icons {
    display: block;
}

.social-icons {
    display: flex;
    justify-content: center;
}

.social-icons img
{
    width: 50px;
    height: 50px;
    margin: 0.5em;
    transition: all 0.3s;
}

.social-icons img:hover
{
    transform: scale(1.2);
}

.footer-copyright {
    text-align: center;
    font-size: 0.8em;
    line-height: 1em;
    margin-bottom: 5em;
}

/* Main Content */

.main-content {
    z-index: 1;
    margin: 0 2em;
}

/* .video-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
} */

.section-dynamic {
    margin-top: 2em;
}

/* Logo */

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

.logo-container > img {
    height: 10vh;
    transition: all 0.5s;
}

.logo-container > img:hover {
    transform: scale(1.2);
}

.logo-container-zoomed > img {
    /* width: 15em; */
}

.logo-container-init >img {
    /* margin-top: 15vh;
    width: 50vw; */
}

.logo-container-long-animation > img {
    transition: all 1.5s ease-in-out !important;
}

.text-container {
    margin: 50px auto;
    margin-top: 0;
    max-width: 47.5em;
    font-size: 1.05em;
    line-height: 1.35em;
}

/* Images */

.prototype-image {
    border-radius: 1.75em;
    width: 75%;
}

.team-photo {
    margin: 50px auto;
    max-width: 75em;
}

.team-photo > img {
    border-radius: 1.75em;
    width: 100%;
}

/* Jobs */

#section-jobs {
    margin: 1em auto;
    max-width: 47.5em;
    padding: 1em 0;
    border-radius: 1.75em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.job-listings {
    display: block; /* Use block layout instead of grid */
}

.job-card {
    background-color: #101010;
    border: 1px solid #444;
    border-radius: 1.75em;
    padding: 20px;
    margin-bottom: 20px; /* Add spacing between list items */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.7);
}

.job-card h3 {
    margin: 0 0 10px;
    font-size: 1.5em;
    line-height: 1.5em;
    color: #ffffff;
}

.job-card p {
    font-size: 1em;
    color: #cccccc;
    margin: 0 0 15px;
}

.job-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 0.5em;
}

.job-details p {
    margin: 10px 0;
}

.job-card .apply-button {
    display: inline-block;
    padding: 1em;
    background-color: #0078d4;
    color: #ffffff;
    text-decoration: none;
    border-radius: 1.75em;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

.job-card .apply-button:hover {
    background-color: #005a9e;
}

.job-card .details-button {
    margin-top: 10px;
    cursor: pointer;
    background-color: #00487f;
    color: #ffffff;
    border: none;
    padding: 1.5em;
    border-radius: 1.75em;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

.job-card .details-button:hover {
    background-color: #002642;
}

/* Features */

.features {
    display: grid;
    grid-auto-flow: row;
    max-width: 100%;
    gap: 50px;
    grid-template-columns: repeat(var(--raven-repeat, auto-fit), 1fr);
    margin-bottom: 2em;
}

@media (max-width: 500px) {
    .features {
        --raven-repeat: 1fr !important;
    }

    .feature {
        grid-template-columns: 250px !important;
        flex-direction: column !important;
    }

    .feature > div {
        width: 100% !important;
    }
}

@media (max-width: 750px) {
    .features {
        --raven-repeat: 1fr;
    }

    .feature {
        grid-template-columns: 250px 1fr;
        flex-direction: row;
    }

    .feature > div {
        width: 50%;
    }
}

@media (min-width: 750px) {
    .features {
      --raven-repeat: 2;
    }

    .feature {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        flex-direction: column;
    }
}

.feature {
    scroll-snap-align: start;
    border-radius: 1.75em;
    display: flex;
    padding: 20px;
    gap: 20px;

    background-color: rgba(255, 255, 255, 0.05);
}

.feature > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feature > div > h3 {
    margin: 0;
    width: 100%;
}

.feature > div > p {
    width: 100%;
}

.feature-img {
    border-radius: 1.75em;
    max-width: 100%;
    max-height: 100%;
}

/* Video */

#ui-video {
    display: block;
    opacity: 0;
    width: 800px;
    max-width: 100%;
    /* border-radius: 1.75em; */
    mask-image: url("/?originalUrl=https%3A%2F%2Fraven.computer%2Fimg%2Flens_profile.svg");
    mask-position: center;
    mask-repeat: no-repeat;
    z-index: 1;
}

.ui-video-container {
    justify-content: right;
    position: absolute;
    top: 2em;
    left: 2em;
    width: calc(100% - 2em - 2em);
    height: calc(100% - 10vh - 2em - 2em);
}

.full-screen-video {
    position: absolute;
    object-fit: cover;
    top: 2em;
    left: 2em;
    width: calc(100% - 2em - 2em);
    height: calc(100% - 10vh - 2em - 2em);
    z-index: 0;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1.75em;
}

.composited-video {
    position: relative;
    object-fit: cover;
    left: 2em;
    width: calc(100% - 2em - 2em);
    max-height: calc(100vh - 10vh - 4em);
    z-index: 0;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1.75em;
}

#sound-toggle {
    position: absolute;
    top: calc(10vh + 4em);
    left: 4em;
    width: 5em;
    height: 5em;
    z-index: 3;
    background-size: cover;
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
}

#sound-toggle:hover {
    scale: 1.2;
}

#sound-toggle.sound-on {
    background-image: url("/?originalUrl=https%3A%2F%2Fraven.computer%2Fimg%2Fbtn%2Fsound-on.png");
}

#sound-toggle.sound-off {
    background-image: url("/?originalUrl=https%3A%2F%2Fraven.computer%2Fimg%2Fbtn%2Fsound-off.png");
}

@keyframes blurAnimation {
    from {
        filter: blur(0px);
    }
    to {
        filter: blur(4px) brightness(0.75);
    }
}

.blur-effect {
    animation: blurAnimation 1s forwards;
}

@property --raven-cta-btn-gradient-1 {
    syntax: '<color>'; /* its type */
    inherits: false;
    initial-value: #fff; /* the initial value */
  }

  @property --raven-cta-btn-gradient-2 {
    syntax: '<color>'; /* its type */
    inherits: false;
    initial-value: #fff; /* the initial value */
  }

  @property --raven-cta-btn-gradient-3 {
    syntax: '<color>'; /* its type */
    inherits: false;
    initial-value: #fff; /* the initial value */
  }

/* Interactive */

.cta-container {
    position: fixed;
    bottom: 6em;
    left: 50%;
}

.cta {
    --raven-cta-btn-gradient-1: #AF40FF;
    --raven-cta-btn-gradient-2: #5B42F3;
    --raven-cta-btn-gradient-3: #00DDEB;

    text-align: center;
    align-items: center;
    background-image: linear-gradient(144deg, var(--raven-cta-btn-gradient-1), var(--raven-cta-btn-gradient-2), var(--raven-cta-btn-gradient-3));
    border: 0;
    border-radius: 1.75em;
    box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
    box-sizing: border-box;
    font-weight: 700;
    justify-content: center;
    line-height: 1em;
    min-width: 200px;
    padding: 19px 24px;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    cursor: pointer;
    transition:
        font-size 0.3s ease-in-out,
        --raven-cta-btn-gradient-1 0.1s linear,
        --raven-cta-btn-gradient-2 0.1s linear,
        --raven-cta-btn-gradient-3 0.1s linear;

    margin-bottom: 3em;
}

.cta-float {
    display: none; /* start hidden */
    z-index: 10;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, 0);
}

.cta:hover {
    --raven-cta-btn-gradient-1: #9b10ff;
    --raven-cta-btn-gradient-2: #391bf9;
    --raven-cta-btn-gradient-3: #00eeff;
    font-size: 1.1em;
}

.cta2 {
    text-align: center;
    align-items: center;
    background-color: rgb(33, 33, 33);
    border: 0;
    border-radius: 1.75em;
    box-sizing: border-box;
    color: #FFFFFF;
    font-size: 20px;
    justify-content: center;
    line-height: 1em;
    max-width: 100%;
    min-width: 140px;
    padding: 19px 24px;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s;
}

.cta2:hover {
    background-color: rgb(65, 65, 65);
    font-size: 22px;
}

/* EarlyBird */

.earlybird-header {
    display: grid;
    gap: 20px;
}

.progress-container {
    text-align: center;
    margin: 20px 0;
    display: none; /* start hidden */
}

.progress-bar {
    background-color: #232323;
    border-radius: 10px;
    width: 80%;
    height: 10px;
    margin: 0 auto;
    overflow: hidden;
}

.progress-filled {
    background: white;
    height: 100%;
    width: 0%;
    transition: all 1.5s ease-in-out;
}

.batch-status-bar {
    width: 0%;
}

.batch-soldout-text {
    display: none; /* start hidden */
}

/* Cards */

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 50em;
}

.card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 1.75em;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.5s;
}

.card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    cursor: pointer !important;
}

.card > p {
    display: block;
}

.card-pfp {
    width: 150px;
    height: 150px;
    border-radius: 1.75em;
}

.card-name {
    font-weight: 700;
    margin: 5px;
}

.card-role {
    margin: 5px;
    text-align: center;
}

.card-desc {
    font-size: 0.9em;
}

.card-grid > a {
    text-decoration: none !important;
}

.card-img {
    /* TODO */
}

/* Gallery */

.gallery {
    display: grid;
    margin-top: 20px;
    width: 100%;
    max-width: 50em;
    gap: 20px;
}

.gallery-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 1.75em;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.gallery-item > p {
    display: block;
    margin: 5px;
}

.gallery-item > img {
    width: 100%;
    border-radius: 1.75em;
}

/* FAQ */

.faq-item {
    cursor: pointer;
    max-height: 10em;
    overflow: hidden;
    transition: max-height 0.3s ease;

    background-color: #0f0f0f;
    margin: 1em 0;
    border-radius: 1.75em;
}

.faq-item > h2 {
    pointer-events: none; /* make sure all click events go to the parent div */
    margin: 1.5em;
    transition: font-weight 0.2s ease;
}

.faq-item > p {
    margin: 0;
    padding: 0 2em;
    max-height: 0;
    overflow: hidden;
    pointer-events: none; /* make sure all click events go to the parent div */
    transition: all 0.2s ease;
}

.faq-item.expanded {
    max-height: 50em;
}

.faq-item.expanded > h2 {
    font-weight: bold;
}

.faq-item.expanded > p {
    max-height: 50em;
    padding-bottom: 2em;
}

/* General */

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

.teaser-video-container {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    /* margin: 50px auto; */
}

.teaser-video {
    width: 100%;
    border-radius: 1.75em;
    cursor: pointer;
}

.teaser-video-mute-text {
    text-align: center;
    font-size: 1em;
    margin-top: -3em;
    cursor: pointer;
    pointer-events: none;
}

/* Footer */

.text-container {
    margin: 50px auto;
    margin-top: 0;
    max-width: 47.5em;
    font-size: 1.05em;
    line-height: 1.35em;
}

.text-container > p > a {
    color: #0099ff !important;
    text-decoration: none !important;
}

.social-icons {
    display: block;
}

.social-icons {
    display: flex;
    justify-content: center;
}

.social-icons img
{
    width: 50px;
    height: 50px;
    margin: 0.5em;
    transition: all 0.3s;
}

.social-icons img:hover
{
    transform: scale(1.2);
}

.footer-copyright {
    text-align: center;
    font-size: 0.8em;
    line-height: 1em;
}
