:root {
    --primary: #26468f;
}

body > #shell-content {
    margin-top: -64px;
}

body > #shell-content > .hero {
    position: relative;
    width: 100%;
    height: calc(70vh + 64px);
    overflow: hidden;
}

body > #shell-content > .hero > video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

body > #shell-content > .hero > .hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
}

body > #shell-content > .hero > .hero-overlay > .hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -1px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeIn 1s ease forwards;
}

body > #shell-content > .hero > .hero-overlay > .hero-title > .hero-tag {
    color: #fff;
    padding: 0em 0.15em;
    border-radius: 6px;
    margin-left: 0.15em;
    display: ruby;
    height: min-content;
}

body > #shell-content > .hero > .hero-overlay > .hero-title > .hero-tag > .hero-tag-logo {
    height: 1.05em;
    margin-left: 0.05em;
    vertical-align: -0.1em;
}

body > #shell-content > .hero > .hero-overlay > .hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
    min-height: 1.5em;
}

body > #shell-content > .hero > .hero-overlay > .hero-btns {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    opacity: 0;
    animation: heroFadeIn 0.8s ease 2.5s forwards;
}

body > #shell-content > .hero > .hero-overlay > .hero-btns > .hero-btn {
    padding: 0.7rem 1.8rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

body > #shell-content > .hero > .hero-overlay > .hero-btns > .hero-btn:active {
    transform: scale(0.97);
}

body > #shell-content > .hero > .hero-overlay > .hero-btns > .hero-btn-primary {
    background: rgba(38, 70, 143, 0.6);
    color: #fff;
    border: 1px solid rgba(38, 70, 143, 0.8);
}

body > #shell-content > .hero > .hero-overlay > .hero-btns > .hero-btn-primary:hover {
    background: rgba(38, 70, 143, 0.8);
}

body > #shell-content > .hero > .hero-overlay > .hero-btns > .hero-btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

body > #shell-content > .hero > .hero-overlay > .hero-btns > .hero-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.18);
}

@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- About Section --- */

body > #shell-content > .about {
    padding: 6rem 2rem;
    display: flex;
    justify-content: center;
}

body > #shell-content > .about > .about-inner {
    max-width: 720px;
    text-align: center;
}

body > #shell-content > .about > .about-inner > .about-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

body > #shell-content > .about > .about-inner > .about-text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(240, 240, 240, 0.55);
    margin-bottom: 1.25rem;
}

body > #shell-content > .about > .about-inner > .about-text:last-child {
    margin-bottom: 0;
}

/* --- Feature Rows --- */

body > #shell-content > .features {
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem 2rem 6rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

body > #shell-content > .features > .feature-row {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

body > #shell-content > .features > .feature-row:nth-child(even) {
    flex-direction: row-reverse;
}

body > #shell-content > .features > .feature-row > .feature-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(38, 70, 143, 0.15);
    border: 1px solid rgba(38, 70, 143, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
}

body > #shell-content > .features > .feature-row > .feature-body > .feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.6rem;
}

body > #shell-content > .features > .feature-row > .feature-body > .feature-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(240, 240, 240, 0.5);
}

/* Scroll-Animation */

body > #shell-content > .fade-in,
body > #shell-content > .features > .fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

body > #shell-content > .fade-in.visible,
body > #shell-content > .features > .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 640px) {
    body > #shell-content > .features > .feature-row,
    body > #shell-content > .features > .feature-row:nth-child(even) {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
