:root {
    --Poppy: #FF8E56;
    --black-bkgrd: linear-gradient(90deg, #000 0%, #1B1B1B 100%);
    --light-bkgrd: radial-gradient(87.22% 70.05% at 50% 50.04%, #EDE8E2 0%, #FFFCF7 100%);
    --image-bkgrd: url('../img/devzone/metal.jpg');
    --Silver-Med: #E1E1E1;
}

.dark-bkgrd {
    background-color: var(--black-bkgrd);
    background-image: var(--black-bkgrd), var(--image-bkgrd);
    background-size: cover;
    background-position: left center;
    background-blend-mode: hard-light;
    background-attachment: fixed;
}

.light-bkgrd {
    background-color: var(--light-bkgrd);
    background-image: var(--light-bkgrd), var(--image-bkgrd);
    background-size: cover;
    background-position: left center;
    background-blend-mode: screen;
    background-attachment: fixed;
}

.button-primary {
    padding: 16px 24px;
    border-radius: 2px;
    border: none;
    color: #fff;
    font-family: "Roboto Mono";
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.78px;
    text-transform: uppercase;
    background: #0C82B6;
    cursor: pointer;
    transition: background-color .3s, box-shadow .3s, transform .2s;
}
.button-primary:hover {
    background-color: #000;
}
.button-primary.glow {
    box-shadow: 0 6px 15px rgba(133,177,204,0.35);
}
.button-primary.glow:hover {
    background: #09a4e8;
    box-shadow: 0 3px 5px rgba(133,177,204,0.6);
}

.button-transparent {
    padding: 16px 24px;
    border-radius: 2px;
    border: 1px solid #0C82B6;
    color: #0C82B6;
    font-family: "Roboto Mono";
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.78px;
    text-transform: uppercase;
    background: transparent;
    cursor: pointer;
    transition: background-color .3s, color .3s;
}
.button-transparent:hover {
    background: #0C82B6;
    color: #fff;
}

/* HTML: <div class="loader"></div> */
.loader {
    display: inline-block;
    width: 8px;
    margin-left: 20px;
    aspect-ratio: 1;
    border-radius: 50%;
    animation: l5 1s infinite linear alternate;
}
@keyframes l5 {
    0%  {box-shadow: 20px 0 #000, -20px 0 #0002;background: #000 }
    33% {box-shadow: 20px 0 #000, -20px 0 #0002;background: #0002}
    66% {box-shadow: 20px 0 #0002,-20px 0 #000; background: #0002}
    100%{box-shadow: 20px 0 #0002,-20px 0 #000; background: #000 }
}

/* overwrite some styles from main site */
@media (min-width: 680px) {

    .wrap-xl,
    .wrap-m {
        max-width: 100%;
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (min-width: 1520px) {

    .wrap-xl,
    .wrap-m {
        max-width: 1410px;
        padding-left: 0;
        padding-right: 0;
    }
}

/*modal styles */
.devzone-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.devzone-modal .devzone-modal-overlay {
    position: absolute;
    background: rgba(0, 0, 0, 0.9);
    width: 100%;
    height: 100%;
}

.devzone-modal .devzone-modal-dialog {
    position: relative;
    left: 50%;
    top: 50%;
    max-width: 934px;
    translate: -50% -50%;
}

.devzone-modal .devzone-modal-dialog .modal-header {
    display: flex;
    width: 100%;
    height: 40px;
    padding: 10px;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 10px 10px 0 0;
    background: linear-gradient(90deg, #0C82B6 0%, #FF8E56 100%);
    color: #fff;
}

.devzone-modal .devzone-modal-dialog .modal-header .modal-title {
    color: #fff;
    font-family: "Roboto Mono", monospace;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}

.devzone-modal .devzone-modal-dialog .modal-header .modal-close {
    cursor: pointer;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    padding: 0;
}

.devzone-modal .devzone-modal-dialog .modal-body {
    padding: 40px;
    background: #fff;
    color: #000;
    border-radius: 0 0 10px 10px;
}

/* Login modal styles */
.devzone-blank {
    padding: 0;
}

.ambarella-login-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.2;
}

.ambarella-login-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: flex-start;
    overflow-y: auto;
    z-index: 9999;
}

.ambarella-login-modal.is-open {
    display: flex;
}

.ambarella-login-modal__backdrop {
    position: fixed;
    inset: 0;
}

.ambarella-login-modal__dialog {
    position: relative;
    max-width: 95%;
    width: 934px;
    padding: 100px 80px 80px;
    margin: 60px auto;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

.ambarella-login-modal__dialog h2 {
    font-family: Rubik;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
}

.ambarella-login-modal__title {
    margin: 0 0 0.75rem;
    font-size: 1.25rem;
}

.ambarella-login-modal__close {
    position: absolute;
    top: 8px;
    right: 12px;
    cursor: pointer;
    font-family: "Roboto Mono", monospace;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    color: #666;
    background: transparent;
    border: none;
}

.ambarella-login-modal__close svg {
    width: 13px;
    height: 13px;
    vertical-align: middle;
    margin-right: 4px;
}

.ambarella-login-modal__iframe {
    border: 0;
    width: 100%;
    height: 70vh;
}

body.ambarella-login-modal-open {
    overflow: hidden;
}

@media (max-width: 600px) {
    .ambarella-login-modal__dialog {
        padding: 100px 20px 80px;
    }
}
.www-login-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 4px;
    margin-bottom: 40px;
    background-color: rgba(255, 255, 255, 0.7);
}

.www-login-tab {
    cursor: pointer;
    width: 50%;
    padding: 12px 0;
    background-color: transparent;
    color: #000;
    font-family: "Roboto Mono", monospace;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.78px;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: background-color .3s;
}

.www-login-tab:hover,
.www-login-tab.active {
    background-color: #0C82B6;
    color: #fff;
}

.www-login-tab svg {
    fill: currentColor;
    width: 13px;
    height: 13px;
}

/* .www-login-tab[data-tab="signin"]::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='currentColor' d='M217 401L345 273c9.4-9.4 9.4-24.6 0-33.9L217 111c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l87 87L24 232c-13.3 0-24 10.7-24 24s10.7 24 24 24l246.1 0-87 87c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0zM344 80l80 0c22.1 0 40 17.9 40 40l0 272c0 22.1-17.9 40-40 40l-80 0c-13.3 0-24 10.7-24 24s10.7 24 24 24l80 0c48.6 0 88-39.4 88-88l0-272c0-48.6-39.4-88-88-88l-80 0c-13.3 0-24 10.7-24 24s10.7 24 24 24z'/%3E%3C/svg%3E");
    display: block;
    width: 0;
    height: 13px;
}
.www-login-tab[data-tab="register"]::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 512'%3E%3Cpath fill='currentColor' d='M224 48a80 80 0 1 1 0 160 80 80 0 1 1 0-160zm0 208A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-45.7 96l91.4 0c65.7 0 120.1 48.7 129 112L49.3 464c8.9-63.3 63.3-112 129-112zm0-48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512l388.6 0c16.4 0 29.7-13.3 29.7-29.7C448 383.8 368.2 304 269.7 304l-91.4 0zM504 312c0 13.3 10.7 24 24 24s24-10.7 24-24l0-64 64 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-64 0 0-64c0-13.3-10.7-24-24-24s-24 10.7-24 24l0 64-64 0c-13.3 0-24 10.7-24 24s10.7 24 24 24l64 0 0 64z'/%3E%3C/svg%3E");
    display: block;
    width: 0;
    height: 13px;
} */

.www-login-register h2 {
    margin-top: 0;
    font-family: Rubik;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px
}

.www-login-register p {
    font-family: Rubik;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    margin-top: 0;
    margin-bottom: 40px;
}

#devzone_register_form,
#devzone_account_form,
#devzone_password_form {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    max-width: calc(100% - 8px);
    margin: auto;
}

/* #devzone_account_form .field-row {
    text-align: left;
} */
.www-login-error {
    color: #ff0000;
    font-family: Rubik;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 20px;
}

#devzone_register_form span[aria-hidden="true"],
#devzone_account_form span[aria-hidden="true"],
#devzone_password_form span[aria-hidden="true"] {
    /* display: none; */
}
 
#devzone_register_form label,
#devzone_register_form legend,
#devzone_account_form label,
#devzone_account_form legend,
#devzone_password_form label,
#devzone_password_form legend {
    display: block;
    margin-bottom: 8px;
    color: #000;
    font-family: "Roboto Mono", monospace;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.78px;
    text-transform: uppercase;
    text-align: left;
}

#devzone_register_form fieldset label,
#devzone_account_form fieldset label,
#devzone_password_form fieldset label {
    display: flex;
    width: 100%;
    background: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid #fff;
    font-family: inherit;
    color: #000;
    border-radius: 2px;
    padding: 9px 20px;
    box-shadow: 0 0 0 1px #c6d4dd;
    font-size: 20px;
    line-height: 30px;
    transition: all .2s;
}

#devzone_register_form fieldset label > div,
#devzone_account_form fieldset label > div,
#devzone_password_form fieldset label > div {
    margin-left: 20px;
    line-height: 1;
}

#devzone_register_form fieldset label span,
#devzone_account_form fieldset label span,
#devzone_password_form fieldset label span {
    display: block;
    font-size: 13px;
    font-family: "Roboto Mono", monospace;
}

#devzone_register_form input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]),
#devzone_register_form select,
#devzone_register_form textarea,
#devzone_account_form input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]),
#devzone_account_form select,
#devzone_account_form textarea,
#devzone_password_form input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]),
#devzone_password_form select,
#devzone_password_form textarea {
    display: block;
    width: 100%;
    background: #fff;
    border: 1px solid #fff;
    font-family: inherit;
    color: #000;
    border-radius: 2px;
    padding: 9px 20px;
    font-size: 20px;
    line-height: 30px;
    transition: all .2s;
}

#devzone_register_form .user_type-select-wrap,
#devzone_account_form .user_type-select-wrap {
    position: relative;
    width: 100%;
}
#devzone_register_form .user_type-select-toggle,
#devzone_account_form .user_type-select-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    border-radius: 10px;
    background: #fff;
    padding: 20px;
    border: 0;
    cursor: pointer;
    text-align: left;
}

#devzone_register_form .user_type-select-toggle::before,
#devzone_account_form .user_type-select-toggle::before {
    content: url("data:image/svg+xml,%3Csvg width='27' height='31' viewBox='0 0 27 31' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.75 7.79297C18.75 5.80078 17.6367 3.98438 15.9375 2.92969C14.1797 1.93359 12.0117 1.93359 10.3125 2.92969C8.55469 3.98438 7.5 5.80078 7.5 7.79297C7.5 9.84375 8.55469 11.6602 10.3125 12.7148C12.0117 13.7109 14.1797 13.7109 15.9375 12.7148C17.6367 11.6602 18.75 9.84375 18.75 7.79297ZM5.625 7.79297C5.625 5.15625 7.03125 2.69531 9.375 1.34766C11.6602 0 14.5312 0 16.875 1.34766C19.1602 2.69531 20.625 5.15625 20.625 7.79297C20.625 10.4883 19.1602 12.9492 16.875 14.2969C14.5312 15.6445 11.6602 15.6445 9.375 14.2969C7.03125 12.9492 5.625 10.4883 5.625 7.79297ZM1.875 28.418H24.375C24.2578 23.7891 20.4492 19.9805 15.7617 19.9805H10.4297C5.74219 19.9805 1.93359 23.7891 1.875 28.418ZM0 28.5938C0 22.793 4.62891 18.1055 10.4297 18.1055H15.7617C21.5625 18.1055 26.25 22.793 26.25 28.5938C26.25 29.5312 25.4297 30.293 24.4922 30.293H1.69922C0.761719 30.293 0 29.5312 0 28.5938Z' fill='black'/%3E%3C/svg%3E");
  display: inline-block;
  width: 30px;
  text-align: center;
  margin-right: 30px;
  transition: transform .3s ease;
}
#devzone_register_form .user_type-select-toggle::after,
#devzone_account_form .user_type-select-toggle::after {
    content: url('data:image/svg+xml,<svg width="21" height="12" viewBox="0 0 21 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9.72656 11.0742L0.351562 1.69922C0 1.34766 0 0.703125 0.351562 0.351562C0.703125 0 1.34766 0 1.69922 0.351562L10.4297 9.08203L19.1016 0.351562C19.4531 0 20.0977 0 20.4492 0.351562C20.8008 0.703125 20.8008 1.34766 20.4492 1.69922L11.0742 11.0742C10.7227 11.4258 10.0781 11.4258 9.72656 11.0742Z" fill="black"/></svg>');
    display: inline-flex;
    align-items: center;
    height: 15px;
    margin-left: auto;
    transition: transform .3s ease;
}
#devzone_register_form .user_type-select-toggle[aria-expanded="true"]::after, 
#devzone_account_form .user_type-select-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

#devzone_register_form .user_type-select-item,
#devzone_account_form .user_type-select-item {
    padding: 5px 0;
    cursor: pointer;
}
#devzone_register_form .user_type-select-item:hover,
#devzone_account_form .user_type-select-item:hover {
    background: #F5F5F5;
}
#devzone_register_form .user_type-select-toggle .user_type-name,
#devzone_account_form .user_type-select-toggle .user_type-name {
    border-left: 1px solid var(--Poppy);
    padding-left: 30px;
}

#devzone_register_form .user_type-name,
#devzone_account_form .user_type-name {
    color: #000;
    font-family: Rubik;
    font-size: 28px;
    font-weight: 400;
    line-height: normal;
    padding-left: 110px;
    cursor: pointer;
}

#devzone_register_form .user_type-name span,
#devzone_account_form .user_type-name span {
    display: block;
    color: #666;
    font-family: Rubik;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
}
#devzone_register_form .user_type-select,
#devzone_account_form .user_type-select {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin: -6px 0 0;
    padding: 0;
    list-style: none;
    max-width: 100%;
    background: #FFF;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    z-index: 1000;
}


#devzone_register_form .amba_isv_fields,
#devzone_account_form .amba_isv_fields {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#devzone_register_form .amba_isv_fields .amba_isv_field_label,
#devzone_account_form .amba_isv_field_label {
    font-family: Rubik;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: left;
}

#devzone_register_form .amba_isv_fields .amba_isv_field_label span:not([aria-hidden="true"]),
#devzone_account_form .amba_isv_field_label span:not([aria-hidden="true"]) {
    display: block;
    color: #666;
    font-family: Rubik;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
}

#devzone_register_form .amba_isv_fields .checkbox-group,
#devzone_account_form .amba_isv_fields .checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
}
#devzone_register_form .amba_isv_fields .checkbox-group label,
#devzone_account_form .amba_isv_fields .checkbox-group label {
    font-family: Rubik;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    text-transform: capitalize;
    margin-bottom: 0;
}
#devzone_register_form .amba_isv_fields .use_case_other,
#devzone_account_form .amba_isv_fields .use_case_other {
    display: none;
    border-color: #999 !important;
    
}
#devzone_register_form label.terms, 
#devzone_account_form label.terms {
    font-family: Rubik;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    text-transform: none;
    letter-spacing: .05px;
}

#devzone_register_form .altcha-widget-wrap .altcha,
#devzone_account_form .altcha-widget-wrap .altcha,
#devzone_login_form .altcha-widget-wrap .altcha,
#devzone_forgot_password_form .altcha-widget-wrap .altcha {
    border: none !important;
}

#devzone_register_form .altcha-widget-wrap .altcha-main,
#devzone_account_form .altcha-widget-wrap .altcha-main,
#devzone_login_form .altcha-widget-wrap .altcha-main,
#devzone_forgot_password_form .altcha-widget-wrap .altcha-main {
    padding: 0 !important;
    margin-top: 10px;
}

#devzone_register_form .altcha-checkbox,
#devzone_account_form .altcha-checkbox,
#devzone_login_form .altcha-checkbox,
#devzone_forgot_password_form .altcha-checkbox {
    width: 20px !important;
}
#devzone_register_form .altcha-checkbox input,
#devzone_account_form .altcha-checkbox input,
#devzone_login_form .altcha-checkbox input,
#devzone_forgot_password_form .altcha-checkbox input {
    width: unset !important;
    height: unset !important;
}

#devzone_register_form .altcha-widget-wrap .altcha .altcha-label,
#devzone_account_form .altcha-widget-wrap .altcha .altcha-label,
#devzone_login_form .altcha-widget-wrap .altcha .altcha-label,
#devzone_forgot_password_form .altcha-widget-wrap .altcha .altcha-label {
    font-family: Rubik;
    font-size: 20px !important;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    margin-bottom: 0;
    text-transform: none;
}

.www-account-page h2 {
    margin-top: 0;
    margin-bottom: 30px;
    font-family: Rubik;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px
}
.www-account-page form {
    margin-bottom: 50px !important;
}

#pass-strength-result {
    color: #000;
}

/* #devzone_register_form .altcha-widget-wrap .altcha .altcha-label::after{
    content: ' (yet).';
} */
#devzone_forgot_password_form {
    width: 100%;
    max-width: 350px;
    text-align: left;
}
#devzone_login_form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    color: #718692;
    width: 100%;
    max-width: calc(100% - 8px);
    margin: auto;
}

#devzone_login_form .login-username,
#devzone_login_form .login-password,
#devzone_login_form .login-remember,
#devzone_forgot_password_form .user_login {
    position: relative;
    width: 100%;
    margin: 10px 0;
}

#devzone_login_form label,
#devzone_forgot_password_form label {
    display: block;
    margin-bottom: 8px;
    color: #000;
    font-family: "Roboto Mono", monospace;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.78px;
    text-transform: uppercase;
}

#devzone_login_form label:has(+ input:focus),
#devzone_login_form .filled label {
    /* font-size: 0.6875rem;
    top: -5px; */
}

#devzone_login_form .input,
#devzone_forgot_password_form .user_login {
    display: block;
    width: 100%;
    background: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    font-family: inherit;
    color: #000;
    border-radius: 4px;
    padding: 9px 20px;
    box-shadow: 0 0 0 1px #c6d4dd;
    font-size: 20px;
    line-height: 30px;
    transition: all .2s;
}

#devzone_login_form .button,
#devzone_register_form .button {
    width: auto;
    background: #0c82b6;
    color: #fff;
    /* box-shadow: 0 6px 15px rgba(133, 177, 204, 0.35); */
    transition: background-color .3s, box-shadow .3s, transform .2s;
    border: none;
    cursor: pointer;
    padding: 1.125em 1.5em 1.0625em 1.5em;
    display: block;
    border-radius: 3px;
    font-family: "Roboto Mono", monospace;
    text-transform: uppercase;
    letter-spacing: 0.0625em;
    line-height: 1.25em;
    font-size: 0.8125em;
    margin: auto;
}

#devzone_login_form .button:hover,
#devzone_register_form .button:hover {
    /* box-shadow: 0 3px 5px rgba(133, 177, 204, 0.6); */
    background-color: #000;
}

#amba_register_result {
    margin-top: 20px;
}
#amba_register_result h2 {
    margin-top: 0;
    font-family: Rubik;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
    margin-bottom: 20px;
}


@media (max-width: 600px) {
    .ambarella-modal__iframe {
        height: 65vh;
    }
}

#set-password-section {
    padding: 80px 0;
    text-align: center;
    min-height: 600px;
}

#set_password_heading {
    margin-top: 0;
    margin-bottom: 30px;
    color: #000;
    font-family: Rubik;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px
}

#devzone_set_password_form {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 20px;
    width: 300px;
    max-width: calc(100% - 8px);
    margin-top: 20px;
}

#devzone_set_password_form label {
    display: block;
    margin-bottom: 8px;
    color: #000;
    font-family: "Roboto Mono", monospace;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.78px;
    text-transform: uppercase;
    text-align: left;
}

#devzone_set_password_form input:not([type="submit"]) {
    display: block;
    width: 100%;
    background: #fff;
    border: 1px solid #fff;
    font-family: inherit;
    color: #000;
    border-radius: 2px;
    padding: 9px 20px;
    font-size: 20px;
    line-height: 30px;
    transition: all .2s;
}

#devzone_set_password_form .button {
    width: auto;
    background: #0c82b6;
    color: #fff;
    box-shadow: 0 6px 15px rgba(133, 177, 204, 0.35);
    transition: background-color .3s, box-shadow .3s, transform .2s;
    border: none;
    cursor: pointer;
    padding: 1.125em 1.5em 1.0625em 1.5em;
    display: block;
    border-radius: 3px;
    font-family: "Roboto Mono", monospace;
    text-transform: uppercase;
    letter-spacing: 0.0625em;
    line-height: 1.25em;
    font-size: 0.8125em;
}

#devzone_set_password_form .button:hover {
    background: #000;
}

/* Header */
/* body:not(.scrolled) .main-nav-logo {
    filter: brightness(0) invert(1);
} */

.main-menu-trigger {
    display: none;
}

.devzone-header-left .separator,
.devzone-header-right .separator {
    color: var(--Poppy);
}

.devzone-header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.devzone-header-left .cooper-logo,
.devzone-header-mobile-only .cooper-logo {
    font-family: Rubik;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 3.2px;
}

.devzone-header-right,
.devzone-header-extra-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.devzone-header-extra-links a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.devzone-page-list {
    display: flex;
    gap: 40px;
    color: #fff;
}

.devzone-page-list a,
.devzone-header-left,
.devzone-header-right a,
.devzone-header-mobile-only a {
    color: #fff;
    transition: color 0.4s ease-in-out;
}
.main-nav::before {
    transform: scaleY(1);
}
.devzone-page-list a,
.devzone-header-left,
.devzone-header-right a,
.devzone-header-mobile-only a {
    color: #000;
}
/* body.scrolled .devzone-page-list a,
body.scrolled .devzone-header-left,
body.scrolled .devzone-header-right a,
body.scrolled .devzone-header-mobile-only a {
    color: #000;
} */

.devzone-header-right a:hover,
.devzone-header-left a:hover {
    color: var(--Poppy);
    text-decoration: underline;
}

.main-menu-icon-open line {
    stroke: var(--Poppy);
}


.main-menu-page-list a::before {
    background: var(--Poppy);
}

.devzone-header-mobile-only {
    display: none;
}

@media (max-width: 1120px) {
    .desktop-only {
        display: none;
    }
}

@media (max-width: 1230px) {

    .devzone-header-left,
    .devzone-header-right {
        gap: 10px;
    }

    .devzone-page-list {
        gap: 20px;
    }
}

@media (max-width: 1023px) {
    .main-menu-trigger {
        display: block;
    }

    .main-menu-page-list-wrap.trigger-drawer {
        background: var(--black-bkgrd);
        padding: 20px 15px;
    }

    .devzone-header-right {
        flex-direction: row-reverse;
    }

    .devzone-page-list {
        flex-direction: column;
        opacity: 0;
        position: absolute;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-video-headline {
        font-size: 40px;
    }

    .hero-video-subheading {
        font-size: 20px;
    }

    body.scrolled .main-menu-icon-open line,
    body.scrolled .devzone-header-right path {
        stroke: #000;
    }

    body.scrolled .devzone-header-right .devzone-huggingface-link path {
        fill: #000;
    }
}

@media (max-width: 680px) {
    .wrap-xl {
        max-width: 100%;
        padding-left: 1em;
        padding-right: 1em;
    }
}

@media (max-width: 600px) {
    .devzone-header-left {
        /* flex-direction: column;
        gap: 0;
        align-items: flex-start; */
        flex-grow: 0;
    }

    .devzone-header-left .cooper-logo {
        display: none;
    }

    .devzone-header-left .separator {
        display: none;
    }

    /* .devzone-header-right {
        flex-direction: column-reverse;
        gap: 10px;
        align-items: flex-end;
    } */

    .devzone-header-mobile-only {
        display: flex;
        justify-content: center;
        flex-basis: 100%;
    }
}

@media (max-width: 410px) {
    .devzone-header-right {
        flex-direction: row-reverse;
        gap: 20px;
        align-items: center;
        margin-left: auto;
        margin-top: 10px;
    }

    .devzone-header-right .separator {
        display: block;
    }
}

/* end Header */

/* footer */
.devzone-footer {
    background-color: var(--black-bkgrd);
    background-image: var(--black-bkgrd), var(--image-bkgrd);
    background-size: cover;
    background-position: left center;
    background-blend-mode: hard-light;
    background-attachment: fixed;
    color: #fff;
}

.devzone-footer .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 80px 20px 20px;
}

.devzone-footer .footer-logo .main-nav-logo {
    filter: brightness(0) invert(1);
    width: 100px;
    height: auto;
}

.devzone-footer .footer-text {
    text-align: center;
    font-family: Rubik;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    max-width: 695px;
}

.devzone-footer .footer-copyright {
    font-family: Rubik;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.devzone-footer .footer-copyright ul {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.devzone-footer .footer-copyright ul a:hover {
    text-decoration: underline;
    color: var(--Poppy);
}

.devzone-footer .footer-copyright li:not(:last-child)::after {
    /* use a plain pipe character (CSS content doesn't parse HTML) */
    content: '|';
    margin-left: 16px;
    /* color the separator independently from the list item's text */
    color: var(--Poppy);
}

.devzone-footer-socials {
    display: flex;
    gap: 24px;
    align-items: center;
}

.devzone-footer-socials a:hover svg,
.devzone-footer-socials a:hover svg path {
    fill: var(--Poppy);
    stroke: var(--Poppy);
}

/* Hero Video */

.devzone.main {
    padding-top: 0;
    margin-top: 80px;
}

.hero-video-wrapper {
    position: relative;
    height: 100vh;
    width: 100vw;
}

.hero-video-player {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #000;
}

.hero-video-player iframe {
    position: absolute;
    width: 177.78vh;
    height: 100vh;
    /* 16:9 cover trick */
    min-width: 100vw;
    min-height: 56.25vw;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.hero-video-wash {
    /* position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.60) 0%, rgba(12, 130, 182, 0.60) 100%);
    z-index: 0; */
}

.hero-video-overlay {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 90%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero-video-headline {
    color: #fff;
    text-align: center;
    font-family: Rubik;
    font-size: 80px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.50);
}

.hero-video-subheading {
    color: #fff;
    text-align: center;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.50);
    font-family: Rubik;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 695px;
    max-width: 90%;
    margin: auto;
}

.hero-video-preloader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .35);
    z-index: 3;
    opacity: 1;
    transition: opacity .6s ease;
}

.hero-video-preloader img {
    width: 80px;
    height: 80px;
}

.hero-video-preloader--hidden {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 1023px) {
    .devzone.main {
        margin-top: 60px;
    }
    .hero-video-player iframe {
        width: 100vw;
        height: 56.25vw;
        min-width: 177.78vh;
        min-height: 100vh;
    }

    .hero-video-headline {
        font-size: 48px;
    }

    .hero-video-subheading {
        font-size: 24px;
    }

}

@media (max-width: 680px) {
    .hero-video-headline {
        font-size: 36px;
    }

    .hero-video-subheading {
        font-size: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-video-player {
        display: none;
    }

    /* accessibility: disable motion */
}

/* end Hero Video */

/* DevZone Header Section */

.devzone-banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    height: 450px;
    padding: 0 20px;
    background-size: cover;
    background-position: center;
}

.devzone-banner_heading {
    font-family: Rubik;
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #fff;
    margin-bottom: 24px;
}

.devzone-banner_subheading {
    font-family: Rubik;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #fff;
    max-width: 695px;
    margin: auto;
    text-align: center;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.50);
}

@media (max-width: 768px) {
    .devzone-banner {
        padding: 100px 0 80px;
        height: auto;
    }

    .devzone-banner_heading {
        font-size: 40px;
    }

    .devzone-banner_subheading {
        font-size: 20px;
    }
}



/* Video Carousel */

.wwvc .wwvc-player iframe,
.wwvc .wwvc-player video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border: 0;
    display: block;
}

.wwvc .wwvc-thumbs {
    margin-top: 0.75rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px;
}

.wwvc .wwvc-thumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #111;
    border: 2px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    overflow: hidden;
}

.wwvc .wwvc-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 16/9;
}

.wwvc .wwvc-thumb:focus {
    outline: none;
    border-color: #4c9ffe;
}

.wwvc .wwvc-thumb.is-active {
    border-color: #4c9ffe;
}

.wwvc .wwvc-thumb-fallback {
    color: #fff;
    font-size: 12px;
    padding: 10px;
}

/* end Video Carousel */

/* FAQs */

.dev-faqs-section.js-enabled .dev-faq-answer {
    font-size: 20px;
    line-height: 1.4em;
    padding: 0 74px 24px;
    margin: 0 20px;
    background-color: #FFF;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow: hidden;
    height: 0;
    opacity: 0;
    transition: height .32s ease, padding-top .32s ease, opacity .18s ease;
    will-change: height, opacity, padding-top;
}

.dev-faqs-section.js-enabled .dev-faq-item.is-open .dev-faq-answer {
    opacity: 1;
    padding-top: 48px;
    margin-bottom: 24px;
}

.dev-faqs-section.js-enabled .dev-faq-answer p {
    font-size: 20px;
    line-height: 1.4em;
    margin-top: 0;
}

.dev-faqs-all-link-wrap {

    margin-top: 40px;
}

.dev-faq-toggle {
    display: flex;
    align-items: center;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #FFF;
    background: #000;
    text-align: left;
    padding: 20px;
    cursor: pointer;
}

.dev-faq-toggle::before {
    content: url('data:image/svg+xml,<svg width="30" height="32" viewBox="0 0 30 32" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M28.125 15.6445C28.125 10.957 25.6055 6.67969 21.5625 4.33594C17.4609 1.93359 12.4805 1.93359 8.4375 4.33594C4.33594 6.67969 1.875 10.957 1.875 15.6445C1.875 20.3906 4.33594 24.668 8.4375 27.0117C12.4805 29.4141 17.4609 29.4141 21.5625 27.0117C25.6055 24.668 28.125 20.3906 28.125 15.6445ZM0 15.6445C0 10.3125 2.8125 5.39062 7.5 2.69531C12.1289 0 17.8125 0 22.5 2.69531C27.1289 5.39062 30 10.3125 30 15.6445C30 21.0352 27.1289 25.957 22.5 28.6523C17.8125 31.3477 12.1289 31.3477 7.5 28.6523C2.8125 25.957 0 21.0352 0 15.6445ZM9.84375 10.6055C10.2539 9.19922 11.543 8.14453 13.0078 8.14453H16.4062C18.457 8.14453 20.1562 9.84375 20.1562 11.9531C20.1562 13.3594 19.3359 14.6484 18.1055 15.293L15.9375 16.4062V17.5195C15.9375 18.0469 15.4688 18.457 15 18.457C14.4727 18.457 14.0625 18.0469 14.0625 17.5195V15.8203C14.0625 15.4688 14.2383 15.1172 14.5312 15L17.2266 13.5938C17.8711 13.3008 18.2812 12.6562 18.2812 11.9531C18.2812 10.8984 17.4023 10.0195 16.4062 10.0195H13.0078C12.4219 10.0195 11.8359 10.4883 11.6602 11.0742V11.1328C11.543 11.6016 11.0156 11.9531 10.5469 11.7773C10.0195 11.6602 9.72656 11.1328 9.84375 10.6641V10.6055ZM13.5938 21.2695C13.5938 20.5078 14.1797 19.8633 15 19.8633C15.7617 19.8633 16.4062 20.5078 16.4062 21.2695C16.4062 22.0898 15.7617 22.6758 15 22.6758C14.1797 22.6758 13.5938 22.0898 13.5938 21.2695Z" fill="white"/></svg>');
    display: inline-block;
    width: 30px;
    text-align: center;
    margin-right: 20px;
    transition: transform .3s ease;
}

.dev-faq-toggle::after {
    content: url('data:image/svg+xml,<svg width="21" height="12" viewBox="0 0 21 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9.72656 11.0742L0.351562 1.69922C0 1.34766 0 0.703125 0.351562 0.351562C0.703125 0 1.34766 0 1.69922 0.351562L10.4297 9.08203L19.1016 0.351562C19.4531 0 20.0977 0 20.4492 0.351562C20.8008 0.703125 20.8008 1.34766 20.4492 1.69922L11.0742 11.0742C10.7227 11.4258 10.0781 11.4258 9.72656 11.0742Z" fill="white"/></svg>');
    display: inline-flex;
    align-items: center;
    height: 15px;
    position: relative;
    margin-left: auto;
    transition: transform .3s ease;
}

.dev-faq-item.is-open .dev-faq-toggle::after {
    transform: rotate(180deg);
}

.dev-faq-toggle .accordion-text {
    color: #fff;
    font-family: Rubik;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-left: 1px solid var(--Poppy);
    padding-left: 20px;
}

@media (max-width: 680px) {
    .dev-faq-toggle .accordion-text {
        font-size: 20px;
    }
}

/* end FAQs */



/* why build section */

.section.grid-exp {
    color: #000;
    padding: 150px 0;
}

.section.grid-exp .title-section {
    color: #000;
    font-family: Rubik;
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.section.grid-exp .title-section::after {
    display: none;
}

.section.grid-exp .grid-exp-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.section.grid-exp .grid-exp-item {
    width: 23.8%;
}

.section.grid-exp .grid-exp-trigger-label.card {
    padding: 0;
    /* text-align: left; */
    cursor: default;
}

.grid-exp-trigger-label:hover {
    background: transparent;
    box-shadow: none;
}

.section.grid-exp .grid-exp-trigger-label::before {
    display: none;
}

.section.grid-exp .grid-exp-item-img {
    height: 60px;
    width: auto;
    margin: 0;
}

.section.grid-exp .grid-exp-item-title {
    color: #000;
    font-family: Rubik;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
    border-top: 1px solid var(--Poppy);
    margin-top: 30px;
    padding-top: 30px;
    padding-bottom: 16px;
}

.section.grid-exp hr {
    display: none;
}

.section.grid-exp .wysiwyg {
    font-family: Rubik;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
}

@media (max-width: 1390px) {
    .section.grid-exp .grid-exp-item {
        width: 23.7%;
    }
}

@media (max-width: 1290px) {
    .section.grid-exp .grid-exp-item {
        width: 23.4%;
    }
}

@media (max-width: 1023px) {
    .section.grid-exp .grid-exp-trigger-label.card {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        background: transparent;
        box-shadow: none;
    }

    .section.grid-exp .grid-exp-trigger-label.card::after {
        display: none;
    }

    .section.grid-exp .title-section {
        font-size: 40px;
    }

    .section.grid-exp .grid-exp-item {
        width: 48%;
    }

    .section.grid-exp .grid-exp-item-title {
        font-size: 28px;
        line-height: 30px;
        margin-top: 20px;
        padding-top: 20px;
        width: 100%;
    }

    .section.grid-exp .grid-exp-item-title br {
        display: none;
    }

    /* .section.grid-exp .grid-exp-item-img {
        height: 50px;
    } */
}

@media (max-width: 680px) {
    .section.grid-exp .grid-exp-item {
        width: 100%;
    }

    .section.grid-exp .grid-exp-item-title {
        font-size: 24px;
        line-height: 28px;
    }

    /* .section.grid-exp .grid-exp-item-img {
        height: 40px;
    } */
}

/* end why build section */

/* Tools Section */
#tools {
    padding: 0 40px;
}

#tools h2 {
    font-family: Rubik;
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    margin-bottom: 40px;
}

#tools p {
    font-family: Rubik;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

#tools .devkits {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
    justify-content: center;
    padding: 40px;
    max-width: 1410px;
    margin: 150px auto;
    background: #fff;
    border-radius: 10px;
}

#tools .devkits h3 {
    font-family: Rubik;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
}

#tools .tools-left {
    border-right: 1px solid var(--Poppy);
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#tools .tools-left .wp-block-image {
    margin: 0;
}

#tools .tools-right {
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding: 48px;
    align-items: flex-start;
}

#tools .devkit-description {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
}

#tools .btn-wrap {
    margin: 0;
}

@media (max-width: 1023px) {
    #tools h2 {
        font-size: 40px;
    }

    #tools p {
        font-size: 24px;
    }

    #tools .devkits {
        margin-left: 40px;
        margin-right: 40px;
    }

    #tools .devkits h3 {
        font-size: 28px;
    }
}

@media (max-width: 781px) {
    #tools h2 {
        font-size: 36px;
    }

    #tools p {
        font-size: 20px;
    }

    #tools .devkits {
        flex-direction: column;
        align-items: center;
    }

    #tools .tools-left {
        border-right: none;
        border-bottom: 1px solid var(--Poppy);

    }

    #tools .devkits h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    #tools {
        padding-left: 5%;
        padding-right: 5%;
    }

    #tools h2 {
        font-size: 32px;
    }

    #tools p {
        font-size: 18px;
    }

    #tools .devkits {
        margin-left: 16px;
        margin-right: 16px;
    }

    #tools .tools-right {
        padding-left: 0;
        padding-right: 0;
    }

    #tools .devkits h3 {
        font-size: 20px;
    }
}

/* end Tools Section */

/* Homepage Resources Section */
#resources-wrap {
    padding: 200px 0 100px;
    gap: 0;
    color: #FFF;
}

#resources-wrap > .wp-block-heading {
    text-align: center;
    color: #fff;
    font-family: Rubik;
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 40px;
}

#resources-wrap .resources-description {
    text-align: center;
    color: #fff;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.50);
    font-family: Rubik;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 60px;
    max-width: 695px;
}

#resources-wrap > .btn-wrap {
    margin: 0 0 100px;
    box-shadow: none;
}

#resources-wrap > .btn-wrap a {
    box-shadow: none;
}


#resources-wrap.is-layout-flex .ww-image-text-row {
    max-width: 1410px;
    margin-bottom: 48px;
    margin-left: 40px;
    margin-right: 40px;
}

.ww-image-text-row .wwitr_inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* gap: clamp(16px, 3vw, 32px); */
    align-items: stretch;
}

.wwitr_col {
    position: relative;
    min-height: 300px;
    background-size: cover;
}

/* Left column as full-cover background */
/* .wwitr_image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    position: relative;
} */

.wwitr_image {
    height: 100%;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    overflow: hidden;
}

.wwitr_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    display: block;
}

.wwitr-locked .wwitr_image img {
    filter: blur(4px);
}

.wwitr-locked .wwitr_locked_overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.3);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Right column content */
.wwitr_content {
    background: #fff;
    color: #000;
    padding: 80px 40px;
    display: grid;
    gap: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.wwitr_heading {
    color: #000;
    margin-bottom: 16px;
    font-family: Rubik;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.wwitr-locked .wwitr_heading {
    opacity: 0.5;
}

.wwitr_desc p {
    color: #000;
    margin: 0 0 .9em;
    font-family: Rubik;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
}

.wwitr_desc p:last-child {
    margin-bottom: 0;
}

.wwitr-locked .wwitr_desc p {
    opacity: 0.5;
}


/* Buttons */
.wwitr_actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: flex-end;
}

.wwitr_btn {
    display: inline-block;
    /* margin-top: 40px; */
}

.wwitr-locked .primary.wwitr_btn--login {
    background: #949494;
}

/* Stack on small screens */
@media (max-width: 768px) {
    #resources-wrap > .wp-block-heading {
        font-size: 40px;
        padding-left: 40px;
        padding-right: 40px;
    }

    #resources-wrap .resources-description {
        font-size: 24px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .ww-image-text-row .wwitr_inner {
        grid-template-columns: 1fr;
    }

    .wwitr_image {
        border-top-right-radius: 10px;
        border-bottom-left-radius: 0;
    }

    .wwitr_content {
        border-top-right-radius: 0;
        border-bottom-left-radius: 10px;
    }
}

/* end Homepage Resources Section */

/* Homepage Community section */
#community-wrap {
    padding: 150px 0 145px;
    gap: 0;
    color: #FFF;
}

#community-wrap > h2.wp-block-heading {
    text-align: center;
    color: #fff;
    font-family: Rubik;
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 40px;
}

#community-wrap > h3.wp-block-heading {
    color: var(--Poppy);
    text-align: center;
    font-family: Rubik;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
}

#community-wrap .community-description {
    text-align: center;
    color: #fff;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.50);
    font-family: Rubik;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 40px;
    margin-bottom: 60px;
    max-width: 695px;
}

#community-wrap > .btn-wrap {
    margin: 0;
    box-shadow: none;
}

#community-wrap > .btn-wrap a {
    box-shadow: none;
}


#community-wrap.is-layout-flex .ww-image-text-row {
    max-width: 1410px;
    margin-bottom: 48px;
}


/* Event Carousel - NOT USED IN PHASE 1 */
/* --- Horizontal layout for Event Carousel --- */
.wwec.event-carousel-block {
    --gap: 12px;
    --card-min: 280px;
}

/* The scrolling rail */
.wwec .wwec-track {
    display: flex;
    gap: var(--gap);
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    /* smooth on iOS */
}

/* Each card is a fixed-width flex item so multiple show at once */
.wwec .wwec-card {
    flex: 0 0 var(--card-min);
    /* don’t shrink, fixed base width */
    max-width: 380px;
    /* optional cap */
    scroll-snap-align: start;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    background: #fff;
    padding: 14px;
    display: grid;
    gap: 8px;
}

/* Optional: visually tighten text a bit */
.wwec .wwec-card-title {
    margin: 4px 0 0;
    font-size: 18px;
    line-height: 1.2;
}

.wwec .wwec-card-cats {
    font-size: 12px;
    color: #666;
}

.wwec .wwec-card-meta {
    font-size: 14px;
    color: #333;
    display: grid;
    gap: 2px;
}

/* Optional: hide the horizontal scrollbar (keeps it scrollable) */
.wwec .wwec-track::-webkit-scrollbar {
    height: 0;
}

.wwec .wwec-track {
    scrollbar-width: none;
}

/* Firefox */
.wwec .wwec-track::-webkit-scrollbar-thumb {
    background: transparent;
}

/* Prev/Next buttons */
.wwec .wwec-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--gap);
}

.wwec .wwec-nav {
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

/* Responsive: show wider cards on big screens, tighter on small */
@media (min-width: 480px) {
    .wwec.event-carousel-block {
        --card-min: 300px;
    }
}

@media (min-width: 768px) {
    .wwec.event-carousel-block {
        --card-min: 340px;
    }
}


.wwec {
    --gap: 12px;
    --card-min: 280px;
}

.wwec-header {
    display: flex;
    justify-content: space-between;
    gap: var(--gap);
    margin-bottom: var(--gap);
}

.wwec-nav {
    border: 1px solid #ddd;
    background: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
}

.wwec-track {
    max-width: 1410px;
    margin: auto;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(var(--card-min), 1fr);
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
}

.wwec-card {
    scroll-snap-align: start;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 14px;
    background: #fff;
    color: #000;
    display: grid;
    gap: 8px;
}

.wwec-card-cats {
    font-size: 12px;
    color: #666;
}

.wwec-card-title {
    margin: 4px 0 0;
    font-size: 18px;
    line-height: 1.2;
}

.wwec-card-meta {
    font-size: 14px;
    color: #333;
    display: grid;
    gap: 2px;
}

.wwec-card-excerpt p {
    margin: 0.5em 0;
}

.wwec-card-actions {
    margin-top: 4px;
}

.wwec-open {
    border: 1px solid #ccc;
    background: #f7f7f7;
    padding: 8px 10px;
    border-radius: 6px;
    cursor: pointer;
}


/* Learning Center */
#learning {
    padding: 150px 0;
    align-items: center;
}

#learning .heading-wrap {
    width: 100%;
    margin-bottom: 80px;
    align-items: flex-start;
    flex-wrap: nowrap;
}

#learning .heading-wrap .heading-content {
    max-width: 70%;
}

#learning .heading-wrap h2 {
    font-family: Rubik;
    font-size: 60px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    margin-bottom: 10px;
}

#learning .heading-wrap p {
    font-family: Rubik;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}


@media (max-width: 1023px) {
    #learning .heading-wrap h2 {
        font-size: 40px;
    }

    #learning .heading-wrap p {
        font-size: 24px;
    }
}

@media (max-width: 680px) {
    #learning .heading-wrap {
        padding: 0 16px;
        flex-wrap: wrap;
    }

    #learning .heading-wrap .heading-content {
        max-width: 100%;
    }

    #learning .heading-wrap h2 {
        font-size: 36px;
    }

    #learning .heading-wrap p {
        font-size: 20px;
    }
}



/* Support + Help */
#support {
    padding: 150px 0;
    align-items: center;
}

#support .heading-wrap {
    width: 100%;
    margin-bottom: 80px;
    align-items: flex-start;
}

#support .heading-wrap h2 {
    font-family: Rubik;
    font-size: 60px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    margin-bottom: 10px;
}

#support .heading-wrap p {
    font-family: Rubik;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}


@media (max-width: 1023px) {
    #support .heading-wrap h2 {
        font-size: 40px;
    }

    #support .heading-wrap p {
        font-size: 24px;
    }
}

@media (max-width: 680px) {
    #support .heading-wrap {
        padding: 0 16px;
    }

    #support .heading-wrap h2 {
        font-size: 36px;
    }

    #support .heading-wrap p {
        font-size: 20px;
    }
}

/* Modal */
.wwec-modal[hidden] {
    display: none;
}

.wwec-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
}

.wwec-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
}

.wwec-modal__dialog {
    position: relative;
    z-index: 1;
    background: #fff;
    max-width: 800px;
    margin: 5vh auto;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
    max-height: 90vh;
    overflow: auto;
}

.wwec-modal__close {
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 24px;
    line-height: 1;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.wwec-modal__cats {
    font-size: 12px;
    color: #666;
}

.wwec-modal__title {
    margin: 6px 0 8px;
}

.wwec-modal__meta {
    font-size: 14px;
    color: #333;
    display: grid;
    gap: 2px;
    margin-bottom: 10px;
}

.wwec-btn {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 8px;
    background: #0b63ce;
    color: #fff;
    text-decoration: none;
}

.devzone-divider {
    justify-content: space-evenly;
    display: flex;
    margin: 30px 0;
}

.devzone-divider .left-column,
.devzone-divider .right-column {
    display: block;
    width: 33%;
}

.devzone-divider .message {
    display: flex;
    flex-shrink: 0;
    padding: 0 10px;
}


/* end Event Carousel */

/* Model Garden */
#model-garden-section {
    padding: 150px 0;
    align-items: center;
}

#model-garden-section .heading-wrap {
    width: 100%;
    margin-bottom: 80px;
    align-items: flex-start;
}

#model-garden-section .heading-wrap h2 {
    font-family: Rubik;
    font-size: 60px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    margin-bottom: 10px;
}

#model-garden-section .heading-wrap p {
    font-family: Rubik;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 1023px) {
    #model-garden-section .heading-wrap h2 {
        font-size: 40px;
    }

    #model-garden-section .heading-wrap p {
        font-size: 24px;
    }
}

@media (max-width: 680px) {
    #model-garden-section .heading-wrap {
        padding: 0 16px;
    }

    #model-garden-section .heading-wrap h2 {
        font-size: 36px;
    }

    #model-garden-section .heading-wrap p {
        font-size: 20px;
    }
}

#dev-model-search,
#learning-resource-search {
    background-image: url("data:image/svg+xml,%3Csvg width='21' height='21' viewBox='0 0 21 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.25 8.125C16.25 9.92188 15.6641 11.6016 14.6875 12.9297L19.6094 17.8906C20.1172 18.3594 20.1172 19.1797 19.6094 19.6484C19.1406 20.1562 18.3203 20.1562 17.8516 19.6484L12.8906 14.6875C11.5625 15.7031 9.88281 16.25 8.125 16.25C3.63281 16.25 0 12.6172 0 8.125C0 3.67188 3.63281 0 8.125 0C12.5781 0 16.25 3.67188 16.25 8.125ZM8.125 13.75C10.1172 13.75 11.9531 12.6953 12.9688 10.9375C13.9844 9.21875 13.9844 7.07031 12.9688 5.3125C11.9531 3.59375 10.1172 2.5 8.125 2.5C6.09375 2.5 4.25781 3.59375 3.24219 5.3125C2.22656 7.07031 2.22656 9.21875 3.24219 10.9375C4.25781 12.6953 6.09375 13.75 8.125 13.75Z' fill='black'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: right 10px center;
    padding: 10px 30px 10px 20px;
    border: 1px solid #fff;
    border-radius: 2px;
    color: var(--Black, #000);
    font-family: Rubik;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    margin-bottom: 30px;
    width: 100%;
}

#dev-model-filters, 
#learning-resource-filters {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-self: center;
}

#model-garden-section .dev-model-filter-btn,
#learning .learning-resource-filter-btn {
    display: inline-block;
    background-color: #000;
    color: #fff;
    cursor: pointer;
    display: flex;
    height: 32px;
    padding: 16px 12px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    font-family: "Roboto Mono";
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.78px;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    transition: background-color .2s, color .2s;
}

#model-garden-section .dev-model-filter-btn:hover,
#learning .learning-resource-filter-btn:hover {
    background-color: #0C82B6;
    color: #fff;
}

#model-garden-section .dev-model-filter-btn svg,
#learning .learning-resource-filter-btn svg {
    width: 13px;
    height: 13px;
}

#model-garden-section .dev-model-filter-btn.active,
#learning .learning-resource-filter-btn.active {
    background-color: #0C82B6;
    color: #fff;
}

#model-garden-section .dev-model-filter-btn.active:hover,
#learning .learning-resource-filter-btn.active:hover {
    background-color: #0C82B6;
    color: #fff;
}
 
#model-garden-section .dev-model-wrapper,
#learning .learning-resource-wrapper {
    width: 100%;
}

#dev-model-filter-description {
    flex-basis: 100%;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    margin-top: 18px;
}
#dev-model-filter-description h2.dev-model-filter-description__title {
    color: #000;
    font-family: Rubik;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: left;
}
#dev-model-filter-description .dev-model-filter-description__content {
    color: #666;
    font-family: Rubik;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
}

#model-garden-section .dev-model-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
#learning .learning-resource-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media(max-width:900px) {
    #model-garden-section .dev-model-grid,
    #learning .learning-resource-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    #model-garden-section .dev-model-grid,
    #learning .learning-resource-grid {
        grid-template-columns: 1fr;
    }
}

#model-garden-section .dev-model-card,
#learning .learning-resource-card {
    min-height: 0;/* prevents flex overflow issues */
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    transition: box-shadow .2s;
}


#model-garden-section .dev-model-card:hover,
#learning .learning-resource-card:hover {
    background: radial-gradient(82.96% 82.96% at 50% 50%, rgba(255, 255, 255, 0.50) 0%, rgba(135, 255, 249, 0.29) 100%);
    background-blend-mode: multiply;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

#model-garden-section .dev-model-card img,
#learning .learning-resource-card img {
    transition: transform 1s;
}
#model-garden-section .dev-model-card:hover img,
#learning .learning-resource-card:hover img {
    transform: scale(1.1);
}

#model-garden-section .dev-model-image-wrapper,
#learning .learning-resource-image-wrapper {
    position: relative;
    width: 100%;
    max-height: 220px;
    height: 220px;
    overflow: hidden;
    display: flex;
}
#model-garden-section .dev-model-image-wrapper img,
#learning .learning-resource-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
#model-garden-section .dev-model-image,
#learning .learning-resource-image {
    overflow: hidden;
    width: 100%;
    display: block;
    object-fit: cover;
}

#model-garden-section .dev-model-category,
#learning .learning-resource-category {
    color: #fff;
    font-family: "Roboto Mono", monospace;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    height: 24px;
    padding: 4px 16px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    position: absolute;
    left: 10px;
    top: 10px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.40);
    background-blend-mode: multiply;
}

#model-garden-section .dev-model-category svg,
#learning .learning-resource-category svg {
    width: 13px;
    height: 13px;
}

/* #model-garden-section .dev-model-category::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('/wp-content/themes/ambarella/img/camera-security.png');
} */

#model-garden-section .dev-model-title,
#learning .learning-resource-title {
    font-family: Rubik;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

#model-garden-section .dev-model-desc,
#learning .learning-resource-desc,
#model-garden-section .dev-model-desc p,
#learning .learning-resource-desc p {
    color: var(--Black, #000);
    font-family: Rubik;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    margin-top: 0;
    margin-bottom: 16px;;
}

#learning .learning-resource-meta {
    margin-top: auto;
}

#model-garden-section .dev-model-stats,
#learning .learning-resource-stats {
    display: flex;
    gap: 30px;
}

#model-garden-section .dev-model-stat,  
#learning .learning-resource-stat {
    display: flex;
    align-items: center;
    font-family: "Roboto Mono", monospace;
    color: #666;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}

#model-garden-section .dev-model-stat-icon,
#learning .learning-resource-stat-icon {
    color: #666;
    display: inline-block;
    width: 16px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 4px;
    vertical-align: middle;
}

#model-garden-section .dev-model-tags,
#learning .learning-resource-tags {
    color: #0C82B6;
    font-family: "Roboto Mono", monospace;
    font-size: 13px;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

#model-garden-section .dev-model-content,
#learning .learning-resource-content {
    display: flex;
    /* height: 245px; */
    padding: 40px 30px;
    flex-direction: column;
    /* align-items: flex-start; */
    gap: 10px;
    align-self: stretch;
    min-height: 0;
    flex: 1;
}


/* Modal */
#model-garden-section .dev-model-modal,
#learning .learning-resource-modal {
    display: none;
    justify-content: center;
    align-items: flex-start;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    overflow-y: auto;
    z-index: 101;
}

#dev-model-modal .dev-model-modal-content {
    width: 934px;
    max-width: 95%;
    margin: 60px auto;
    padding: 100px 80px;
    border-radius: 10px;
    position: relative;
    /* max-height: 95vh; */
}
#learning-resource-modal .learning-resource-modal-content {
    width: 934px;
    max-width: 95%;
    margin: 60px auto;
    padding: 48px 40px;
    border-radius: 10px;
    position: relative;
    /* max-height: 95vh; */
}

#dev-model-modal .dev-model-modal-close,
#learning-resource-modal .learning-resource-modal-close {
    position: absolute;
    top: 8px;
    right: 12px;
    cursor: pointer;
    font-family: "Roboto Mono", monospace;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    color: #666;
}

#dev-model-modal .dev-model-modal-close svg,
#learning-resource-modal .learning-resource-modal-close svg {
    width: 13px;
    height: 13px;
    vertical-align: middle;
    margin-right: 4px;
}

#dev-model-modal h2.chipset-modal-title,
#learning-resource-modal h2.chipset-modal-title {
    font-family: Rubik;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
    text-align: left;
    margin-bottom: 0;
}

#dev-model-modal p.chipset-modal-description,
#learning-resource-modal p.chipset-modal-description {
    font-family: Rubik;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    margin-top: 0;
    margin-bottom: 40px;
}

#learning-resource-modal .learning-resource-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-flex;
    height: 24px;
    padding: 4px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.40);
    background-blend-mode: multiply;
    color: #fff;
}

#learning-resource-modal .learning-resource-video-iframe {
    margin-bottom: 40px;
}

#learning-resource-modal .learning-resource-tutorial-wrap {
    margin: 0 40px;
}

#learning-resource-modal .learning-resource-title {
    margin-bottom: 10px;
}

.learning-resource-read-time {
    color: #666;
    font-family: "Roboto Mono", monospace;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
}
.learning-resource-read-time::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath fill='%23666666' d='M528 320C528 434.9 434.9 528 320 528C205.1 528 112 434.9 112 320C112 205.1 205.1 112 320 112C434.9 112 528 205.1 528 320zM64 320C64 461.4 178.6 576 320 576C461.4 576 576 461.4 576 320C576 178.6 461.4 64 320 64C178.6 64 64 178.6 64 320zM296 184L296 320C296 328 300 335.5 306.7 340L402.7 404C413.7 411.4 428.6 408.4 436 397.3C443.4 386.2 440.4 371.4 429.3 364L344 307.2L344 184C344 170.7 333.3 160 320 160C306.7 160 296 170.7 296 184z'/%3E%3C/svg%3E");
    display: inline-block;
    width: 14px;
    height: 14px;
    vertical-align: middle;
    margin-right: 6px;
}

#learning-resource-modal .learning-resource-cta {
    margin-top: 60px;
}


#dev-model-modal .metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 24px;
}

#dev-model-modal .metric-card {
    background-color: #fff;
    padding: 30px 28px 30px 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 30px;
}

#dev-model-modal .metric-card-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-left: 1px solid var(--Poppy);
    padding-left: 30px;
}

#dev-model-modal .metric-label {
    color: #0C82B6;
    font-family: "Roboto Mono";
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.78px;
    text-transform: uppercase;
}

#dev-model-modal .metric-value {
    color: #000;
    font-family: Rubik;
}

#dev-model-modal .metric-value .metric-number {
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
    display: block;
}

#dev-model-modal .metric-value .metric-unit {
    font-size: 19px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
}

#dev-model-modal .dev-model-metric-icon svg {
    height: 60px;
    width: auto
}


#dev-model-modal .chipset-select-wrap {
    width: 100%;
    position: relative;
}

/* Black box select control */
#dev-model-modal .chipset-select-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    border-radius: 10px;
    background: #000;
    padding: 20px;
    border: 0;
    cursor: pointer;
    text-align: left;
}

#dev-model-modal .chipset-select-toggle::before {
    content: url("data:image/svg+xml,%3Csvg width='27' height='30' viewBox='0 0 27 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22.5 3.5H3.75C2.69531 3.5 1.875 4.37891 1.875 5.375V24.125C1.875 25.1797 2.69531 26 3.75 26H22.5C23.4961 26 24.375 25.1797 24.375 24.125V5.375C24.375 4.37891 23.4961 3.5 22.5 3.5ZM3.75 1.625H22.5C24.5508 1.625 26.25 3.32422 26.25 5.375V24.125C26.25 26.2344 24.5508 27.875 22.5 27.875H3.75C1.64062 27.875 0 26.2344 0 24.125V5.375C0 3.32422 1.64062 1.625 3.75 1.625Z' fill='white'/%3E%3Cpath d='M19.25 8.34375H7.375C7.04102 8.34375 6.78125 8.64062 6.78125 8.9375V20.8125C6.78125 21.1465 7.04102 21.4062 7.375 21.4062H19.25C19.5469 21.4062 19.8438 21.1465 19.8438 20.8125V8.9375C19.8438 8.64062 19.5469 8.34375 19.25 8.34375ZM7.375 6.5625H19.25C20.5488 6.5625 21.625 7.63867 21.625 8.9375V20.8125C21.625 22.1484 20.5488 23.1875 19.25 23.1875H7.375C6.03906 23.1875 5 22.1484 5 20.8125V8.9375C5 7.63867 6.03906 6.5625 7.375 6.5625Z' fill='white'/%3E%3C/svg%3E%0A");
    display: inline-block;
    width: 30px;
    text-align: center;
    margin-right: 30px;
    transition: transform .3s ease;
}

#dev-model-modal .chipset-select-toggle::after {
    content: url('data:image/svg+xml,<svg width="21" height="12" viewBox="0 0 21 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9.72656 11.0742L0.351562 1.69922C0 1.34766 0 0.703125 0.351562 0.351562C0.703125 0 1.34766 0 1.69922 0.351562L10.4297 9.08203L19.1016 0.351562C19.4531 0 20.0977 0 20.4492 0.351562C20.8008 0.703125 20.8008 1.34766 20.4492 1.69922L11.0742 11.0742C10.7227 11.4258 10.0781 11.4258 9.72656 11.0742Z" fill="white"/></svg>');
    display: inline-flex;
    align-items: center;
    height: 15px;
    margin-left: auto;
    transition: transform .3s ease;
}

#dev-model-modal .chipset-select-wrap.is-open .chipset-select-toggle::after {
    transform: rotate(180deg);
}

#dev-model-modal .chipset-select-toggle .chipset-name {
    border-left: 1px solid var(--Poppy);
    padding-left: 30px;
}

#dev-model-modal .chipset-name {
    color: #fff;
    font-family: Rubik;
    font-size: 28px;
    font-weight: 400;
    line-height: normal;
}

#dev-model-modal .chipset-performance {
    color: var(--Silver-Med, #E1E1E1);
    font-family: Rubik;
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
}

/* Dropdown list UNDER the black box */
#dev-model-modal .chipset-select {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin: -6px 0 0;
    padding: 0;
    list-style: none;
    max-width: 100%;
    background: #000;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    display: none;
    z-index: 1000;
}

/* Show dropdown when open */
#dev-model-modal .chipset-select-wrap.is-open .chipset-select {
    display: block;
}

/* Options */
#dev-model-modal .chipset-select-item {
    padding: 12px 40px 12px 110px;
    cursor: pointer;
}

#dev-model-modal .chipset-select-item.active {
    font-weight: 600;
    background-color: #111;
}

#dev-model-modal .kit-button-wrap {
    margin-top: 48px;
    display: flex;
    gap: 24px;
    font-family: Rubik;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
}

#dev-model-modal .metrics-note {
    font-size: 14px;
}

#dev-model-modal .kit-button-wrap .kit-download-btn.btn-high {
    background: transparent;
    border: 1px solid #0C82B6;
    color: #0C82B6;
}

#dev-model-modal .kit-button-wrap .btn-high {
    font-size: 13px;
}

@media (max-width: 768px) {
    #dev-model-modal .dev-model-modal-content {
        padding: 60px 30px;
    }

    #dev-model-modal .metrics-grid {
        grid-template-columns: 1fr;
    }
}

/* end Model Garden */

/* Agentics Video Carousel */
.agvc {
    --brand: #0c82b6;
    --muted: #666;
    width: 100%;
}
.agvc__player-nav-wrap {
    max-width: calc(100% - 100px);
    margin: auto;
}
.agvc__player-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.agvc__player-slot { transition: transform 360ms cubic-bezier(0.2,0.8,0.2,1); }
.agvc__header {
    display: flex;
    margin-bottom: 48px;
    width: 1410px;
    max-width: calc(100% - 130px);
    margin-left: auto;
    margin-right: auto;
}

.agvc__badge,
.agvc__card-badge {
    color: #0C82B6;
    font-family: "Roboto Mono";
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.78px;
    text-transform: uppercase;
    display: flex;
}

.agvc__badge::after,
.agvc__card-badge::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%230C82B6' d='M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM188.3 147.1c7.6-4.2 16.8-4.1 24.3 .5l144 88c7.1 4.4 11.5 12.1 11.5 20.5s-4.4 16.1-11.5 20.5l-144 88c-7.4 4.5-16.7 4.7-24.3 .5s-12.3-12.2-12.3-20.9l0-176c0-8.7 4.7-16.7 12.3-20.9z'/%3E%3C/svg%3E");;
    display: inline-block;
    width: 14px;
    height: 16px;
    margin-left: 10px;
}

.agvc__card[data-queue="NOW PLAYING"] .agvc__card-badge::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%230C82B6' d='M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM188.3 147.1c7.6-4.2 16.8-4.1 24.3 .5l144 88c7.1 4.4 11.5 12.1 11.5 20.5s-4.4 16.1-11.5 20.5l-144 88c-7.4 4.5-16.7 4.7-24.3 .5s-12.3-12.2-12.3-20.9l0-176c0-8.7 4.7-16.7 12.3-20.9z'/%3E%3C/svg%3E");
}

.agvc__card[data-queue="UP NEXT"] .agvc__card-badge::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23666666' d='M464 256A208 208 0 1 1 48 256a208 208 0 1 1 416 0zM0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM232 120l0 136c0 8 4 15.5 10.7 20l96 64c11 7.4 25.9 4.4 33.3-6.7s4.4-25.9-6.7-33.3L280 243.2 280 120c0-13.3-10.7-24-24-24s-24 10.7-24 24z'/%3E%3C/svg%3E");;
}

.agvc__card[data-queue="IN QUEUE"] .agvc__card-badge::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23666666' d='M432 256a48 48 0 1 1 -96 0 48 48 0 1 1 96 0zm-160 0a48 48 0 1 1 -96 0 48 48 0 1 1 96 0zM64 304a48 48 0 1 1 0-96 48 48 0 1 1 0 96z'/%3E%3C/svg%3E");
}

.agvc__meta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    margin-left: 30px;
}

.agvc__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.agvc__icon-svg svg {
    height: 90px;
    width: auto;
    color: #111;
    border-right: 1px solid var(--Poppy);
    padding: 15px 30px 15px 0;
}

.agvc__title {
    color: #000;
    font-family: Rubik;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
    margin: 0;
}

.agvc__subtitle {
    color: #666;
    font-family: Rubik;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.agvc__desc {
    font-family: Rubik;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    color: var(--muted);
    margin: 0;
}

.agvc__player-nav {
    display: flex;
    justify-content: space-between;
    width: 1510px;
    max-width: 100%;
    margin: 0 auto;
}

.agvc__scroll-button {
    display: none;
    /* display: flex; */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
}
.agvc__scroll-button.agvc__scroll-button--left {
    margin-left: -30px;
    padding-right: 20px;
}
.agvc__scroll-button.agvc__scroll-button--right {
    margin-right: -30px;
    padding-left: 20px;
}

.agvc__player-wrap {
    position: relative;
    overflow: hidden;
    margin-top: 8px;
    width: 100%;
    max-width: 1410px;
     max-width: 1410px;
    aspect-ratio: 16/9;
    min-height: 180px;
    margin-left: auto;/* REMOVE WHEN NAV ARROWS ARE ADDED */
    margin-right: auto;/* REMOVE WHEN NAV ARROWS ARE ADDED */
}

.agvc__player {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
    overflow: hidden;
}

.agvc__player iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.agvc .temp-agentics-description {
    max-width: 95%;
}
.agvc .gif-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    /* prevents layout shift */
    overflow: hidden;
}

.agvc .gif-wrap img,
.agvc .gif-wrap .gif-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.agvc .gif-preloader {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    z-index: 2;
    transition: opacity 200ms ease;
}

.agvc .gif-wrap.is-loaded .gif-preloader {
    opacity: 0;
    pointer-events: none;
}

.agvc .spinner {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 3px solid rgba(255, 255, 255, 0.35);
    border-top-color: rgba(255, 255, 255, 1);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .agvc .spinner {
        animation: none;
    }
}
.agvc__build-current {
    margin: 48px auto;
    text-align: center;
}

/* .agvc__btn {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #cfd7e3;
    background: #f7fafc;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
} */

.agvc__btn--build {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}

.agvc__carousel {
    display: none;
    /* display: flex; */
    gap: 20px;
    width: 1410px;
    /* max-width: calc(100% - 20px); */
    max-width: 100%;
    margin: 0 auto;
    /* overflow-x: auto;
    padding: 8px 2px 4px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; */
}

.agvc__carousel::-webkit-scrollbar {
    height: 0;
}

.agvc__card {
    flex: 0 0 24%;
    scroll-snap-align: start;
    border-radius: 10px;
    background: rgba(255,255,255,0.5);
    padding: 27px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.agvc__card.is-playing {
    background: #fff;
}

.agvc__card-icon {
    display: flex;
    padding: 0 0 30px;
    border-bottom: 1px solid var(--Poppy);
}

.agvc__card-icon svg {
    height: 60px;
    width: auto;
    color: #111;
}

.agvc__card-title {
    color:#000;
    font-family: Rubik;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.agvc__card-subtitle {
    color: #666;
    font-family: Rubik;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
}

.agvc__card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.agvc__card:not([aria-current="true"]) .agvc__card-badge { 
    color:var(--muted); 
}
.agvc__card[aria-current="true"] button {
    display: none;
}
@media (max-width: 1534px) {
    .agvc__carousel {
        padding-left: 40px;
        padding-right: 40px;
    }
}
@media (max-width: 1023px) {
    .agvc__header,
    .agvc__player-nav {
        width: calc(100% - 40px);
        gap:10px;
    }
    .agvc__carousel {
        width: 100%;
        gap: 10px;
    }
    .agvc__card {
        gap: 10px
    }
    .agvc__card-title {
        font-size: 20px;
    }
    .agvc__card-subtitle {
        font-size: 16px;
        line-height: 24px;
    }

}   

@media (max-width: 767px) {
    .agvc__header {
        max-width: calc(100% - 20px);
        margin-bottom: 18px;
    }
    .agvc__title {
        font-size: 28px;
    }
    .agvc__subtitle {
        font-size: 20px;
    }
    .agvc__desc {
        font-size: 16px;
        line-height: 24px;
    }
    .agvc__icon-svg svg {
        height: 70px;
    }
    .agvc__subtitle {
        font-size: 20px;
    }
    .agvc__player-nav-wrap {
        max-width: calc(100% - 40px);
    }
    .agvc__carousel {
        gap: 5px;
        flex-wrap: wrap;
    }
    .agvc__card {
        flex: 0 0 48%;
        padding: 10px;
    }

    .agvc__card-icon {
        display: none;
    }
}

/* End Agentics Video Carousel */

/* Agentics page */
#agentics .section.grid-exp {
    background: transparent !important;
    padding: 100px 0;
    max-width: 1410px;
}

#agentics .section.grid-exp .title-section {
    color: #000;
    margin-bottom: 0;
    padding-bottom: 0;
}

#agentics .section.grid-exp .section_text p {
    color: #000;
    font-family: Rubik;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal; 
    margin-top: 0;
    margin-bottom: 0;
}
#agentics .section.grid-exp .grid-exp-items {
    margin-top: 80px;
}
#agentics .section.grid-exp .grid-exp-item {
    width: 31.8%;
}

#agentics .section.grid-exp .grid-exp-item-title {
    color: #000;
    font-family: Rubik;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

#agentics .section.grid-exp .wysiwyg {
    color: #666;
    font-family: Rubik;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
}
#build-your-own {
    padding: 80px 0 40px;
    color: #fff
}

#build-your-own h2 {
    color: #fff;
    font-family: Rubik;
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    margin-bottom: 10px;
}

#build-your-own p {
    color: #fff;
    text-align: center;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.50);
    font-family: Rubik;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 694px;
    max-width: 100%;
    margin: 0 auto 60px;
}