

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Inter Regular'), local('Inter-Regular'),
       url('../assets/fonts/inter/static/Inter_18pt-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local('Inter Medium'), local('Inter-Medium'),
       url('../assets/fonts/inter/static/Inter_18pt-Medium.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local('Inter SemiBold'), local('Inter-SemiBold'),
       url('../assets/fonts/inter/static/Inter_18pt-SemiBold.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('Inter Bold'), local('Inter-Bold'),
       url('../assets/fonts/inter/static/Inter_18pt-Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: local('Inter ExtraBold'), local('Inter-ExtraBold'),
       url('../assets/fonts/inter/static/Inter_18pt-ExtraBold.ttf') format('truetype');
}

@keyframes heroTitleFadeIn {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideInFromLeft {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
@keyframes fadeInBottom {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInFromLeft {
    from { opacity: 0; transform: translateX(-80px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInFromRight {
    from { opacity: 0; transform: translateX(80px); }
    to { opacity: 1; transform: translateX(0); }
}

.title-name {
  color: #FFF;
}
.sections-container {
    height: unset;
    padding-top: 0;
    background: radial-gradient(circle at top, #0d0d0d 0%, #000 100%);
    color: var(--color-text-light);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}
.apps-hero {
    width: 100%;
    border-bottom: 1px solid var(--color-border-subtle);
    box-shadow: var(--shadow-medium);
    min-height: calc(100vh);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.apps-hero-content {
    height: calc(100vh - 10vh - 6rem);
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(10vh);
}
.apps-hero-title {
    font-family: 'Inter', 'Roboto Mono', sans-serif;
    font-size: 5.5em;
    font-weight: 800;
    color: var(--color-text-light);
    letter-spacing: -0.02em;
    text-shadow: 0 0.5rem 1.5rem rgba(210, 35, 42, 0.5), 0 0.2rem 0.5rem rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(90deg, #f0f0f0 0%, #D2232A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: heroTitleFadeIn 1.5s ease-out;
}
.apps-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 2em;
    color: var(--color-text-medium);
    max-width: 900px;
    margin: 0 auto 2rem;
    line-height: 1.5;
    position: relative;
    z-index: 2;
    animation: fadeIn 2s ease-out 0.7s forwards;
    opacity: 0;
}
.apps-hero-intro-copy {
    font-family: 'Inter', sans-serif;
    font-size: 1.25em;
    color: var(--color-text-light);
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.6;
    opacity: 0;
    animation: fadeIn 2s ease-out 1s forwards;
    position: relative;
    z-index: 2;
}
.flying-menu {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) translateX(-100px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.flying-menu.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%) translateX(0);
}
.flying-menu a {
  transition: unset;
}
.product-quick-view-bar {
    margin-bottom: 5vh;
    height: 10vh;
    width: 100%;
    background-color: var(--color-primary-dark-variant);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 1;
}
.quick-view-item {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-text-medium);
    transition: all 0.3s ease;
    text-align: center;
    outline: none;
}
.quick-view-item:hover {
    color: var(--color-text-light);
    transform: translateY(-0.5rem) scale(1.05);
}
.quick-view-item:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 4px;
    border-radius: var(--border-radius-soft);
    /*box-shadow: 0 0 0 8px rgba(210, 35, 42, 0.2);*/
}
.quick-view-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: fill;
    margin-bottom: 0.8rem;
    border: 2px solid var(--color-border-subtle);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    /*filter: grayscale(30%);*/
}
.quick-view-item:hover .quick-view-icon {
    border-color: var(--color-primary);
    /*box-shadow: 0 0 15px rgba(210, 35, 42, 0.5);*/
    /*filter: grayscale(0%);*/
}
.quick-view-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.9em;
    font-weight: 600;
}
.featured-app-section {
    max-width: 1600px;
    padding: 5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-left: 15rem;
    padding-right: 5rem;
}
.featured-app-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4vw;
    flex-wrap: wrap;
    width: 100%;
}
.featured-app-text {
    flex: 1;
    min-width: 320px;
    text-align: left;
    max-width: 650px;
    padding: 2rem;
    box-sizing: border-box;
    opacity: 0;
}
.featured-app-section.is-visible .featured-app-text {
    animation: fadeInFromLeft 1.5s ease-out forwards;
    /*animation-delay: 0.3s;*/
}
.featured-app-title {
    font-family: 'Inter', sans-serif;
    font-size: 4.2em;
    color: var(--color-text-light);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-shadow: 0 0.3rem 0.8rem rgba(0,0,0,0.6);
}
.featured-app-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 1.8em;
    color: var(--color-primary);
    margin-bottom: 2rem;
    font-weight: 600;
}
.featured-app-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.25em;
    color: var(--color-text-medium);
    line-height: 1.7;
    margin-bottom: 3rem;
}
.featured-app-mockup {
    flex: 1;
    min-width: 350px;
    max-width: 700px;
    position: relative;
    padding: 3rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}
.featured-app-section.is-visible .featured-app-mockup {
    animation: fadeInFromRight 1.5s ease-out forwards;
}
.featured-app-mockup img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-large);
    border: 1px solid rgba(255,255,255,0.1);
    /*box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.9), 0 0 3rem rgba(210, 35, 42, 0.3);*/
    box-shadow: 0 0 3rem rgba(210, 35, 42, 0.3);
    transition: transform 0.4s ease-out;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    border: 1px solid rgba(255,255,255,0.1);
}
.featured-app-mockup img:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-1rem);
    border: 1px solid rgba(210, 35, 42, 0.3);
    /*box-shadow: 0 2.5rem 6rem rgba(0, 0, 0, 1), 0 0 4rem rgba(210, 35, 42, 0.5);*/
}
.featured-app-cta-group {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}
.products-section-divider {
    width: 100%;
    max-width: 1200px;
    text-align: center;
    margin: 5rem auto 4rem;
    position: relative;
}
.products-section-header-text {
    font-family: 'Inter', sans-serif;
    font-size: 3.5em;
    font-weight: 700;
    color: var(--color-text-light);
    padding: 0 2.5rem;
    position: relative;
    z-index: 2;
    display: inline-block;
}
.products-section-header-line {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-border-highlight), transparent);
    z-index: 1;
}
.product-ecosystem-section {
    max-width: 1800px;
    padding-left: 15rem;
    padding-right: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}
.product-ecosystem-section .products-section-header-text {
    opacity: 0;
}
.product-ecosystem-section.is-visible .products-section-header-text {
    animation: slideInFromLeft 1s ease-out forwards;
}
.product-ecosystem-section .products-section-header-line {
    opacity: 0;
}
.product-ecosystem-section.is-visible .products-section-header-line {
    animation: fadeIn 1s ease-out forwards;
}
.ecosystem-diagram {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    margin-top: 5rem;
    padding: 5rem 0;
    background: radial-gradient(circle at center, rgba(210, 35, 42, 0.05) 0%, rgba(0,0,0,0) 70%);
    border-radius: var(--border-radius-large);
    box-shadow: inset 0 0 50px rgba(0,0,0,0.5);
    min-height: 600px;
}
.ecosystem-main-product {
    position: relative;
    width: 30rem;
    background: linear-gradient(145deg, #1e1e1e 0%, #0a0a0a 100%);
    border-radius: var(--border-radius-large);
    /*box-shadow:
        0 1rem 3rem rgba(0, 0, 0, 0.7),
        0 0 2rem rgba(210, 35, 42, 0.4) inset;*/
    box-shadow: 0 0 2rem rgba(210, 35, 42, 0.4) inset;
    padding: 3rem;
    text-align: center;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid var(--color-border-highlight);
    outline: none;
}
.ecosystem-main-product:hover {
    transform: scale(1.03) translateY(-1rem);
    border: 1px solid rgba(210, 35, 42, 0.3);
}
.ecosystem-main-product:focus-within {
    border-color: var(--color-primary);
    /*box-shadow: 0 0 0 5px rgba(210, 35, 42, 0.3), 0 2rem 5rem rgba(0, 0, 0, 0.9);*/
}
.main-product-image-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: var(--border-radius-medium);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(255,255,255,0.1);
}
.main-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.ecosystem-main-product:hover .main-product-image {
    transform: scale(1.05);
}
.main-product-title {
    font-family: 'Inter', sans-serif;
    font-size: 3em;
    font-weight: 800;
    color: var(--color-text-light);
    margin-bottom: 0.8rem;
    text-shadow: 0 0.2rem 0.5rem rgba(0,0,0,0.5);
}
.main-product-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 1.2em;
    color: var(--color-text-medium);
    margin-bottom: 2.5rem;
}
.main-product-ctas {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.ecosystem-components-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0;
    pointer-events: none;
}
.component-card {
    position: absolute;
    width: 15rem;
    background: linear-gradient(145deg, #101010 0%, #050505 100%);
    border-radius: var(--border-radius-medium);
    box-shadow:
        0 0.5rem 1.5rem rgba(0, 0, 0, 0.6),
        0 0 0.8rem rgba(76, 175, 80, 0.1) inset;
    padding: 1.5rem;
    text-align: center;
    animation-delay: 0.3s;
    opacity: 0;
}
.component-card-top-left {
    top: 5%;
}
.product-ecosystem-section.is-visible .component-card-top-left {
    animation: fadeInFromLeft 2s ease-out forwards;
}
.component-card-top-right {
    top: 5%;
    right: 0;
}
.product-ecosystem-section.is-visible .component-card-top-right {
    animation: fadeInFromRight 2s ease-out forwards;
}
.component-card-bottom-left {
    bottom: 5%;
    left: 0;
}
.product-ecosystem-section.is-visible .component-card-bottom-left {
    animation: fadeInFromLeft 2s ease-out forwards;
}
.component-card-bottom-right {
    bottom: 5%;
    right: 0;
}
.product-ecosystem-section.is-visible .component-card-bottom-right {
    animation: fadeInFromRight 2s ease-out forwards;
}
.component-icon-wrapper {
    width: 8rem;
    height: 8rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.2);
}
.component-icon-wrapper img {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 5px rgba(76, 175, 80, 0.5));
}
.component-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.4em;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}
.component-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.9em;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}
.btn-component {
    display: inline-block;
    background-color: rgba(76, 175, 80, 0.2);
    color: var(--color-secondary);
    padding: 0.5em 1em;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 0.85em;
    font-weight: 600;
    border: 1px solid rgba(76, 175, 80, 0.5);
    transition: all 0.3s ease;
}
.btn-component:hover {
    background-color: var(--color-secondary);
    color: var(--color-text-light);
    /*transform: translateY(-2px);*/
    /*box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);*/
}
.ecosystem-cta {
    margin-top: 2rem;
    padding: 3rem 5vw;
    background-color: var(--color-background-medium);
    border-radius: var(--border-radius-large);
    text-align: center;
    width: 100%;
    max-width: 900px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--color-border-subtle);
    margin: auto;
}
.ecosystem-cta-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.5em;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}
#all-apps-section {
    padding-left: 15rem;
    padding-right: 5rem;
}
#all-apps-section .products-section-header-text {
    opacity: 0;
}
#all-apps-section.is-visible .products-section-header-text {
   animation: slideInFromLeft 1s ease-out forwards;
}
#all-apps-section .products-section-divider {
    opacity: 0;
}
#all-apps-section.is-visible .products-section-divider {
   animation: fadeIn 1s ease-out forwards;
}
.app-cards-grid {
    display: flex;
    flex-wrap: wrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 4rem;
    margin-bottom: 8rem;
    padding-top: 1rem;
    max-width: 1400px;
}
.app-card {
    flex: 1 0 clamp(250px, 20vw, 350px);
    background-color: var(--color-background-light);
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease-out;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--color-border-subtle);
}
.app-card:hover {
    transform: translateY(-1rem);
    /*box-shadow: var(--shadow-medium);*/
    border-color: var(--color-primary);
}
.app-card-image-wrapper {
    width: 100%;
    overflow: hidden;
    background: #000;
    border-bottom: 1px solid var(--color-border-highlight);
    position: relative;
}
.app-card-image {
    max-height: 50vh;
    margin: auto;
    display: block;
    transition: transform 0.5s ease-out, filter 0.5s ease-out;
}
.app-card:hover .app-card-image {
    transform: scale(1.08);
}
.app-card-content {
    padding: 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.app-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.2em;
    font-weight: 700;
    color: var(--color-text-light);
    margin-top: 0;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.app-card-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 1.1em;
    color: var(--color-text-dark);
    line-height: 1.6;
    margin-bottom: 0.5rem;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
.app-card-info {
    font-family: 'Inter', sans-serif;
    font-size: 0.9em;
    color: var(--color-text-dark);
    line-height: 1.5;
}
.app-card-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 0 1.8rem 1.8rem;
    margin-top: auto;
}
#apps-in-progress-section {
    padding-left: 15rem;
    padding-right: 5rem;
}
#apps-in-progress-section .ecosystem-cta {
    margin-bottom: 4rem;
}
#apps-in-progress-section .products-section-header-text {
    opacity: 0;
}
#apps-in-progress-section.is-visible .products-section-header-text {
   animation: slideInFromLeft 1s ease-out forwards;
}
#apps-in-progress-section .products-section-divider {
    opacity: 0;
}
#apps-in-progress-section.is-visible .products-section-divider {
   animation: fadeIn 1s ease-out forwards;
}
.btn-primary-app, .btn-secondary-app, .btn-feedback, .btn-other-product {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    border-radius: 0.75rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /*transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);*/
    padding: 0.9em 1.8em;
    font-size: 1.05em;
    min-height: 50px;
    outline: none;
}
.btn-primary-app {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    border: none;
    /*box-shadow: 0 0.5rem 1.5rem rgba(210, 35, 42, 0.4), 0 0.2rem 0.5rem rgba(0,0,0,0.3);*/
}
.btn-primary-app:hover {
    /*background-color: #ff575c;*/
    /*transform: translateY(-0.4rem);*/
    /*box-shadow: 0 0.8rem 2rem rgba(210, 35, 42, 0.6), 0 0.3rem 0.8rem rgba(0,0,0,0.5);*/
}
.btn-primary-app:focus-visible {
    outline: 3px solid var(--color-text-light);
    outline-offset: 4px;
    /*box-shadow: 0 0 0 8px rgba(210, 35, 42, 0.2);*/
}
.btn-secondary-app {
    background-color: transparent;
    color: var(--color-text-medium);
    border: 1px solid var(--color-border-highlight);
    /*box-shadow: var(--shadow-soft);*/
}
.btn-secondary-app:hover {
    background-color: var(--color-background-light);
    color: var(--color-text-light);
    /*border-color: var(--color-primary);*/
    /*transform: translateY(-0.2rem);*/
    /*box-shadow: var(--shadow-medium);*/
}
.btn-secondary-app:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 4px;
    /*box-shadow: 0 0 0 8px rgba(210, 35, 42, 0.1);*/
}
.app-card.in-development-card, .other-product-card {
    background-color: var(--color-background-medium);
    border-color: rgba(76, 175, 80, 0.2);
    opacity: 0.95;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.app-card.in-development-card:hover, .other-product-card:hover {
    transform: translateY(-0.5rem);
    border-color: rgba(76, 175, 80, 0.5);
    /*box-shadow: var(--shadow-medium);*/
}
.app-card.in-development-card:focus-within, .other-product-card:focus-within {
    border-color: var(--color-secondary);
    /*box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.3);*/
}
.in-development-tag {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background-color: rgba(76, 175, 80, 0.25);
    color: var(--color-secondary);
    padding: 0.25em 1em;
    border-radius: 0.6rem;
    font-size: 0.9em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(76, 175, 80, 0.3);
    z-index: 1;
    /*backdrop-filter: blur(5px);*/
    transition: 0.3s ease-out;
}
.app-card.in-development-card .app-card-image-wrapper {
    transition: filter 0.4s ease;
    /*filter: grayscale(90%) brightness(40%);*/
}
.app-card.in-development-card:hover .app-card-image-wrapper {
    /*filter: grayscale(50%) brightness(60%);*/
}
.in-development-info {
    font-family: 'Inter', sans-serif;
    font-size: 0.9em;
    color: var(--color-text-dark);
    line-height: 1.5;
    background-color: rgba(0,0,0,0.2);
    border-radius: var(--border-radius-soft);
    box-shadow: inset 0 0 5px rgba(0,0,0,0.3);
}
#other-creations-section .products-section-header-text {
    opacity: 0;
}
#other-creations-section.is-visible .products-section-header-text {
   animation: slideInFromLeft 1s ease-out forwards;
}
#other-creations-section .products-section-divider {
    opacity: 0;
}
#other-creations-section.is-visible .products-section-divider {
   animation: fadeIn 1s ease-out forwards;
}
.btn-feedback {
    background-color: var(--color-secondary);
    color: var(--color-text-light);
    border: none;
    /*box-shadow: 0 0.5rem 1.5rem rgba(76, 175, 80, 0.4), 0 0.2rem 0.5rem rgba(0,0,0,0.3);*/
}
.btn-feedback:hover {
    /*background-color: #66bb6a;*/
    /*transform: translateY(-0.4rem);*/
    /*box-shadow: 0 0.8rem 2rem rgba(76, 175, 80, 0.6), 0 0.3rem 0.8rem rgba(0,0,0,0.5);*/
}
.btn-feedback:focus-visible {
    outline: 3px solid var(--color-text-light);
    outline-offset: 4px;
    /*box-shadow: 0 0 0 8px rgba(76, 175, 80, 0.2);*/
}
.other-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 3rem;
    padding: 0 5vw;
    width: 100%;
    max-width: 1300px;
    margin-bottom: 8rem;
    opacity: 0.9;
}
.other-product-card {
    background-color: var(--color-background-medium);
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease-out;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--color-border-subtle);
    padding-bottom: 1.5rem;
    text-align: center;
}
.other-product-card:hover {
    transform: translateY(-0.5rem);
    border-color: var(--color-secondary);
    /*box-shadow: var(--shadow-medium);*/
}
.other-product-image-wrapper {
    width: 100%;
    height: 190px;
    overflow: hidden;
    background: linear-gradient(to top, #080808, #101010);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--color-border-highlight);
}
.other-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.5s ease-out, transform 0.5s ease-out;
    /*filter: grayscale(80%) brightness(50%);*/
}
.other-product-card:hover .other-product-image {
    transform: scale(1.05);
    /*filter: grayscale(0%) brightness(100%);*/
}
.other-product-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.other-product-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.8em;
    font-weight: 700;
    color: var(--color-text-light);
    margin-top: 0.5rem;
    margin-bottom: 0.7rem;
    letter-spacing: -0.01em;
}
.other-product-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 1em;
    color: var(--color-text-dark);
    line-height: 1.6;
    margin-bottom: 1.2rem;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
.other-product-status {
    font-family: 'Inter', sans-serif;
    font-size: 0.9em;
    color: var(--color-secondary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.other-product-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 1.5rem 0;
    margin-top: auto;
}
.btn-other-product {
    background-color: var(--color-background-light);
    color: var(--color-text-medium);
    border: 1px solid var(--color-border-highlight);
   /*box-shadow: var(--shadow-soft);*/
}
.btn-other-product:hover {
    background-color: #2e2e2e;
    color: var(--color-text-light);
    border-color: var(--color-secondary);
    /*transform: translateY(-0.2rem);*/
    /*box-shadow: var(--shadow-medium);*/
}
.btn-other-product:focus-visible {
    outline: 3px solid var(--color-secondary);
    outline-offset: 4px;
    /*box-shadow: 0 0 0 8px rgba(76, 175, 80, 0.1);*/
}
#other-creations-section .products-section-header-text {
    opacity: 0;
}
#other-creations-section.is-visible .products-section-header-line {
    animation: slideInFromLeft 1s ease-out forwards;
}
#other-creations-section .products-section-header-text {
    opacity: 0;
}
#other-creations-section.is-visible .products-section-header-line {
    animation: fadeIn 1s ease-out forwards;
}

@media (max-width: 1400px) {
    .ecosystem-main-product{
       width: 25rem;
    }
    .component-card {
        width: 13rem;
    }
}

@media (min-width: 1201px) {
    .flying-menu {
        display: block;
    }
}

@media (max-width: 1200px) {
    .flying-menu {
        display: none !important;
    }
    .apps-hero {
        padding-bottom: 6rem;
    }
    .featured-app-section {
        padding-left: unset;
        padding-right: unset;
    }
    .apps-hero-title {
        font-size: 4.5em;
    }
    .apps-hero-subtitle {
        font-size: 1.7em;
    }
    .featured-app-content {
        flex-direction: column;
        gap: 5vw;
    }
    .featured-app-text {
        text-align: center;
        max-width: 800px;
    }
    .featured-app-cta-group {
        justify-content: center;
    }
    .featured-app-mockup img {
        transform: none;
    }
    .featured-app-mockup img:hover {
        transform: translateY(-0.5rem);
    }
    .products-section-header-text {
        font-size: 3em;
    }
    .ecosystem-diagram {
        flex-direction: column;
        padding: 3rem 0;
        min-height: auto;
    }
    .ecosystem-main-product {
        width: 90%;
        max-width: 450px;
        margin-bottom: 3rem;
    }
    .product-ecosystem-section {
        padding-left: unset;
        padding-right: unset;
    }
    .ecosystem-components-grid {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 2rem;
        width: 100%;
        height: auto;
        pointer-events: auto;
    }
    .component-card {
        position: static;
        transform: none;
        width: 90%;
        max-width: unset;
    }
    .component-card-top-left,
    .component-card-top-right,
    .component-card-bottom-left,
    .component-card-bottom-right {
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
    }
    #all-apps-section {
        padding-left: unset;
        padding-right: unset;
    }
    #apps-in-progress-section {
        padding-left: unset;
        padding-right: unset;
    }
    #apps-in-progress-section .ecosystem-cta {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .apps-hero-title {
        font-size: 3.5em;
    }
    .apps-hero-subtitle {
        font-size: 1.4em;
    }
    .apps-hero-intro-copy {
        font-size: 1.1em;
    }
    .product-quick-view-bar {
        gap: 1.5rem;
    }
    .quick-view-icon {
        width: 50px;
        height: 50px;
    }
    .quick-view-name {
        font-size: 0.8em;
    }
    .featured-app-title {
        font-size: 3em;
    }
    .featured-app-tagline {
        font-size: 1.5em;
    }
    .featured-app-description {
        font-size: 1.1em;
    }
    .featured-app-cta-group {
        flex-direction: column;
    }
    .ecosystem-main-product {
        width: 95%;
        padding: 2rem;
    }
    .main-product-image-wrapper {
        height: 250px;
    }
    .main-product-title {
        font-size: 2.5em;
    }
    .main-product-tagline {
        font-size: 1em;
    }
    .component-card {
        width: 95%;
        max-width: 250px;
        padding: 1rem;
    }
    .component-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    .component-title {
        font-size: 1.2em;
    }
    .component-description {
        font-size: 0.8em;
    }
    .ecosystem-cta {
        padding: 2rem 3vw;
    }
    .ecosystem-cta-text {
        font-size: 1.2em;
    }
    .products-section-header-text {
        font-size: 2.5em;
    }
    .app-cards-grid,
    .other-products-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 5vw;
    }
    .app-cards-grid {
        width: unset;
    }
    .app-card-title {
        font-size: 1.8em;
    }
    .app-card-tagline {
        font-size: 1em;
    }

}

@media (max-width: 480px) {
    .apps-hero-title {
        font-size: 2.8em;
    }

    .apps-hero-subtitle {
        font-size: 1.2em;
    }

    .apps-hero-intro-copy {
        font-size: 1em;
    }

    .product-quick-view-bar {
        gap: 1rem;
    }

    .quick-view-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.5rem;
    }

    .quick-view-name {
        font-size: 0.7em;
    }

    .featured-app-title {
        font-size: 2.5em;
    }

    .featured-app-tagline {
        font-size: 1.2em;
    }

    .featured-app-description {
        font-size: 0.95em;
    }

    .products-section-header-text {
        font-size: 2em;
        padding: 0 1rem;
    }

    .app-card-content,
    .other-product-content {
        padding: 1.2rem;
    }

    .app-card-buttons,
    .other-product-buttons {
        padding: 0 1.2rem 1.2rem;
    }

    .ecosystem-main-product {
        padding: 1.5rem;
    }

    .main-product-image-wrapper {
        height: 200px;
    }

    .main-product-title {
        font-size: 2em;
    }

    .main-product-tagline {
        font-size: 0.9em;
    }
}