/* Script/Code Author: Result Hosting [Mr. Shudhanshu Kumar Pandey]. */

.student-app-release-section {
    --release-primary: #173a59;
    --release-primary-strong: #102a43;
    --release-secondary: #1769aa;
    --release-accent: #eb5d1e;
    --release-success: #237a5a;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 0;
    border-top: 1px solid rgba(23, 58, 89, 0.08);
    border-bottom: 1px solid rgba(23, 58, 89, 0.1);
    background:
        radial-gradient(circle at 14% 16%, rgba(0, 112, 192, 0.12), transparent 27%),
        radial-gradient(circle at 91% 8%, rgba(235, 93, 30, 0.11), transparent 24%),
        linear-gradient(112deg, #ffffff 0%, #f8fbff 56%, #edf6fb 100%);
}

.student-app-release-section::before,
.student-app-release-section::after {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
    content: "";
}

.student-app-release-section::before {
    top: -150px;
    left: -130px;
    width: 390px;
    height: 390px;
    background: rgba(0, 112, 192, 0.08);
}

.student-app-release-section::after {
    right: -120px;
    bottom: -160px;
    width: 350px;
    height: 350px;
    background: rgba(235, 93, 30, 0.08);
}

.student-app-release-container {
    width: 100%;
    max-width: none;
    padding-right: 0;
    padding-left: 0;
}

.student-app-release-shell {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: clamp(54px, 5vw, 82px) clamp(24px, 5vw, 82px);
    border: 0;
    border-radius: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72) 52%, rgba(241, 248, 252, 0.82));
    box-shadow: none;
    backdrop-filter: blur(10px);
}

.student-app-release-shell::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(23, 105, 170, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23, 105, 170, 0.035) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.68;
    pointer-events: none;
    content: "";
}

.student-app-release-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    contain: layout style paint;
    pointer-events: none;
}

.student-app-release-particles.is-releasing {
    opacity: 1;
    visibility: visible;
}

.student-app-release-particles.is-complete {
    display: none;
}

.student-app-release-particle {
    position: absolute;
    bottom: -24px;
    left: var(--particle-x);
    width: var(--particle-width);
    height: var(--particle-height);
    border-radius: 2px;
    background: var(--particle-color);
    box-shadow: 0 2px 6px rgba(23, 58, 89, 0.16);
    opacity: 0;
    transform: translate3d(0, 38px, 0) rotate(0deg) scale(0.82);
    animation: student-app-release-particle-flight var(--particle-duration) both;
    animation-delay: var(--particle-delay);
    animation-timing-function: cubic-bezier(.16, .78, .28, 1);
    will-change: transform, opacity;
}

.student-app-release-particle.is-ribbon {
    border-radius: 999px;
}

.student-app-release-particle.is-round {
    border-radius: 50%;
}

@keyframes student-app-release-particle-flight {
    0% {
        opacity: 0;
        transform: translate3d(0, 38px, 0) rotate(0deg) scale(0.82);
    }
    8% {
        opacity: 0.96;
    }
    43% {
        opacity: 1;
        transform: translate3d(var(--particle-drift-mid), var(--particle-rise), 0) rotate(var(--particle-rotate-mid)) scale(1);
        animation-timing-function: cubic-bezier(.3, .05, .4, 1);
    }
    72% {
        opacity: 0.9;
        transform: translate3d(var(--particle-drift-late), var(--particle-hover), 0) rotate(var(--particle-rotate-late)) scale(0.96);
        animation-timing-function: cubic-bezier(.3, .1, .7, 1);
    }
    100% {
        opacity: 0;
        filter: blur(1.2px);
        transform: translate3d(var(--particle-drift-end), var(--particle-settle), 0) rotate(var(--particle-rotate-end)) scale(0.72);
    }
}

.student-app-release-shell > .row {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    margin-right: auto;
    margin-left: auto;
    --bs-gutter-x: clamp(2rem, 5vw, 5.25rem);
}

.student-app-release-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 999px;
    background: linear-gradient(135deg, #f17035 0%, #e45115 100%);
    box-shadow:
        0 7px 18px rgba(235, 93, 30, 0.27),
        0 0 0 0 rgba(235, 93, 30, 0.22);
    animation: student-app-release-badge-pulse 3.2s ease-in-out infinite;
}

.student-app-release-badge::after {
    position: absolute;
    top: -45%;
    bottom: -45%;
    left: -42%;
    width: 36%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.78), transparent);
    transform: skewX(-18deg);
    animation: student-app-release-badge-flash 3.2s ease-in-out infinite;
    pointer-events: none;
    content: "";
}

@keyframes student-app-release-badge-pulse {
    0%, 100% {
        box-shadow:
            0 7px 18px rgba(235, 93, 30, 0.27),
            0 0 0 0 rgba(235, 93, 30, 0.2);
    }
    45% {
        box-shadow:
            0 9px 24px rgba(235, 93, 30, 0.34),
            0 0 0 7px rgba(235, 93, 30, 0);
    }
}

@keyframes student-app-release-badge-flash {
    0%, 56% {
        left: -42%;
        opacity: 0;
    }
    62% {
        opacity: 0.9;
    }
    78%, 100% {
        left: 120%;
        opacity: 0;
    }
}

.student-app-release-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--release-primary) 0%, var(--release-secondary) 100%);
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(23, 58, 89, 0.2);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.student-app-release-title {
    margin: 0 0 18px;
    color: var(--release-primary);
    font-family: 'Raleway', sans-serif;
    font-size: clamp(2rem, 3vw, 3.15rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.student-app-release-lead {
    margin-bottom: 22px;
    color: #5c6d7d;
    font-size: 1.05rem;
    line-height: 1.82;
}

.student-app-release-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 22px;
}

.student-app-release-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-height: 80px;
    padding: 15px 16px;
    border: 1px solid rgba(23, 58, 89, 0.09);
    border-radius: 16px;
    background: rgba(248, 251, 255, 0.94);
    box-shadow: 0 10px 22px rgba(16, 42, 67, 0.05);
}

.student-app-release-point i {
    margin-top: 3px;
    color: var(--release-accent);
    font-size: 1.1rem;
    flex: 0 0 auto;
}

.student-app-release-point strong {
    display: block;
    margin-bottom: 4px;
    color: var(--release-primary);
    font-size: 0.95rem;
    font-weight: 700;
}

.student-app-release-point span {
    color: #5c6d7d;
    font-size: 0.93rem;
    line-height: 1.5;
}

.student-app-release-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 24px;
}

.student-app-release-tags span {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid rgba(23, 58, 89, 0.13);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--release-primary);
    box-shadow: 0 7px 16px rgba(16, 42, 67, 0.04);
    font-size: 0.86rem;
    font-weight: 600;
}

.student-app-release-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.student-app-release-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 60px;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transform: translateZ(0);
    transition:
        transform 220ms cubic-bezier(.2, .8, .2, 1),
        box-shadow 220ms cubic-bezier(.2, .8, .2, 1),
        border-color 220ms ease,
        background 220ms ease,
        color 220ms ease;
}

.student-app-release-btn:hover {
    transform: translateY(-3px);
}

.student-app-release-btn:active {
    transform: translateY(3px);
}

.student-app-release-btn:focus-visible {
    outline: 3px solid rgba(23, 105, 170, 0.3);
    outline-offset: 4px;
}

.student-app-release-btn i {
    font-size: 1.25rem;
}

.student-app-release-btn span {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.student-app-release-btn small {
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.85;
}

.student-app-release-btn strong {
    font-size: 1rem;
    font-weight: 700;
}

.student-app-release-btn-primary {
    border-color: #5b5b5b;
    background: linear-gradient(180deg, #1e1e1e 0%, #050505 76%, #000000 100%);
    color: #ffffff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        inset 0 -1px 0 rgba(0, 0, 0, 0.9),
        0 5px 0 #000000,
        0 15px 28px rgba(16, 42, 67, 0.22);
}

.student-app-release-btn-primary:hover {
    color: #ffffff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        inset 0 -1px 0 rgba(0, 0, 0, 0.92),
        0 7px 0 #000000,
        0 19px 34px rgba(16, 42, 67, 0.27);
}

.student-app-release-btn-primary:active {
    box-shadow:
        inset 0 2px 5px rgba(0, 0, 0, 0.76),
        0 1px 0 #000000,
        0 8px 16px rgba(16, 42, 67, 0.2);
}

.student-app-release-btn-secondary {
    border-color: #c8d3dd;
    background: linear-gradient(180deg, #ffffff 0%, #eef3f7 100%);
    color: var(--release-primary);
    box-shadow:
        inset 0 1px 0 #ffffff,
        inset 0 -1px 0 rgba(115, 136, 153, 0.16),
        0 5px 0 #b8c6d1,
        0 14px 26px rgba(16, 42, 67, 0.14);
}

.student-app-release-btn-secondary:hover {
    border-color: #aebdca;
    background: linear-gradient(180deg, #ffffff 0%, #e8f0f5 100%);
    color: var(--release-primary);
    box-shadow:
        inset 0 1px 0 #ffffff,
        inset 0 -1px 0 rgba(115, 136, 153, 0.2),
        0 7px 0 #b8c6d1,
        0 18px 32px rgba(16, 42, 67, 0.18);
}

.student-app-release-btn-secondary:active {
    box-shadow:
        inset 0 3px 7px rgba(70, 94, 113, 0.18),
        0 1px 0 #b8c6d1,
        0 7px 14px rgba(16, 42, 67, 0.13);
}

.student-app-release-btn-store {
    min-width: 196px;
    padding: 9px 21px 9px 14px;
}

.student-app-release-btn-store::before {
    position: absolute;
    top: 1px;
    right: 2px;
    left: 2px;
    height: 42%;
    border-radius: 9px 9px 45% 45%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), transparent);
    pointer-events: none;
    content: "";
}

.student-app-release-btn-store::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #34a853 0 25%, #4285f4 25% 50%, #fbbc04 50% 75%, #ea4335 75% 100%);
    opacity: 0.92;
    pointer-events: none;
    content: "";
}

.student-app-release-play-mark {
    position: relative;
    z-index: 1;
    display: grid;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    place-items: center;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.42));
}

.student-app-release-play-mark svg {
    display: block;
    width: 100%;
    height: 100%;
}

.student-app-release-btn-store > span:last-child {
    position: relative;
    z-index: 1;
}

.student-app-release-btn-store small {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.58rem;
    letter-spacing: 0.1em;
}

.student-app-release-btn-store strong {
    margin-top: 3px;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.student-app-release-btn-console {
    min-width: 252px;
    gap: 10px;
    padding: 9px 12px 9px 10px;
    text-align: left;
}

.student-app-release-btn .student-app-release-console-control {
    position: relative;
    z-index: 1;
    display: grid;
    width: 40px;
    height: 40px;
    border: 1px solid #9eafbd;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffffff 10%, #d4dee6 88%);
    box-shadow:
        inset 2px 2px 3px rgba(255, 255, 255, 0.92),
        inset -3px -3px 5px rgba(95, 116, 132, 0.22),
        0 2px 0 #879aa9,
        0 5px 9px rgba(16, 42, 67, 0.16);
    flex: 0 0 40px;
    place-items: center;
}

.student-app-release-btn .student-app-release-console-control i {
    color: var(--release-secondary);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
}

.student-app-release-btn .student-app-release-console-copy {
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
}

.student-app-release-console-copy strong {
    white-space: nowrap;
}

.student-app-release-btn .student-app-release-console-forward {
    position: relative;
    z-index: 1;
    display: grid;
    width: 28px;
    height: 28px;
    border: 1px solid #b5c3ce;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffffff, #dce5eb);
    box-shadow:
        inset 1px 1px 2px #ffffff,
        inset -2px -2px 3px rgba(95, 116, 132, 0.16),
        0 2px 4px rgba(16, 42, 67, 0.13);
    flex: 0 0 28px;
    place-items: center;
}

.student-app-release-btn .student-app-release-console-forward i {
    color: var(--release-primary);
    font-size: 0.72rem;
    line-height: 1;
    transform: translateX(1px);
}

.student-app-release-console-led {
    position: absolute;
    top: 6px;
    right: 20px;
    width: 5px;
    height: 5px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 50%;
    background: #eb5d1e;
    box-shadow: 0 0 6px rgba(235, 93, 30, 0.75);
}

.student-app-release-btn-console:active .student-app-release-console-control {
    box-shadow:
        inset 3px 3px 6px rgba(89, 109, 125, 0.24),
        inset -1px -1px 2px rgba(255, 255, 255, 0.74),
        0 1px 0 #879aa9;
}

.student-app-release-btn-console:active .student-app-release-console-forward {
    box-shadow: inset 2px 2px 4px rgba(89, 109, 125, 0.2);
    transform: translateY(1px);
}

.student-app-release-footnote {
    margin: 0;
    color: #6b7c8d;
    font-size: 0.93rem;
    line-height: 1.6;
}

.student-app-release-device-column {
    display: flex;
    align-items: center;
    justify-content: center;
}

.student-app-release-section .hero-device-wrap {
    width: min(100%, 430px);
    margin: 0 auto;
    perspective: 1650px;
    perspective-origin: 50% 42%;
}

.student-app-release-section .hero-device-stage {
    position: relative;
    padding: 8px 12px 28px;
    transform-style: preserve-3d;
}

.student-app-release-section .hero-device-stage::before {
    position: absolute;
    inset: 5% -8% 7%;
    z-index: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 54% 45%, rgba(89, 151, 198, 0.18), rgba(23, 58, 89, 0.055) 48%, transparent 72%);
    filter: blur(22px);
    transform: translateZ(-70px);
    pointer-events: none;
    content: "";
}

.student-app-release-section .hero-device-stage::after {
    position: absolute;
    right: 3%;
    bottom: 3px;
    left: 12%;
    z-index: 0;
    height: 38px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(9, 19, 31, 0.34) 0%, rgba(9, 19, 31, 0.16) 46%, transparent 74%);
    filter: blur(12px);
    transform: rotateX(70deg) translateZ(-54px);
    pointer-events: none;
    content: "";
}

.student-app-release-section .hero-device-orbit {
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
    --hero-tilt-x: 0.9deg;
    --hero-tilt-y: -1.2deg;
    --hero-light-x: 38%;
    --hero-light-y: 14%;
    transform: rotateX(var(--hero-tilt-x)) rotateY(var(--hero-tilt-y));
    transform-origin: 50% 48%;
    transition: none;
    will-change: transform;
}

.student-app-release-section .hero-device-frame {
    position: relative;
    transform-style: preserve-3d;
    animation: student-app-release-device-float 10.4s ease-in-out infinite;
}

.student-app-release-section .hero-device-frame::before {
    position: absolute;
    inset: 22px 5px -8px 22px;
    border-radius: 42px;
    background: linear-gradient(145deg, rgba(28, 55, 79, 0.14), rgba(8, 16, 27, 0.32));
    filter: blur(16px);
    transform: translate3d(10px, 14px, -32px);
    content: "";
}

@keyframes student-app-release-device-float {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -6px, 4px);
    }
}

.student-app-release-section .hero-device-backplate {
    position: absolute;
    inset: 4px -6px -9px 6px;
    z-index: 0;
    border: 1px solid rgba(103, 117, 132, 0.72);
    border-radius: 38px;
    background:
        linear-gradient(98deg, rgba(255, 255, 255, 0.16), transparent 14%, transparent 78%, rgba(255, 255, 255, 0.08)),
        linear-gradient(155deg, #354151 0%, #111720 42%, #05070b 74%, #252f3c 100%);
    box-shadow:
        14px 22px 42px rgba(8, 17, 28, 0.2),
        inset 1px 1px 0 rgba(255, 255, 255, 0.13),
        inset -2px -2px 0 rgba(0, 0, 0, 0.42);
    transform: translate3d(6px, 8px, 8px);
    pointer-events: none;
}

.student-app-release-section .hero-device-backplate::before {
    position: absolute;
    top: 28px;
    right: -5px;
    bottom: 30px;
    width: 9px;
    border: 1px solid rgba(77, 90, 106, 0.72);
    border-left: 0;
    border-radius: 0 8px 8px 0;
    background: linear-gradient(90deg, #080b10 0%, #323d4b 45%, #111720 76%, #05070a 100%);
    box-shadow:
        inset 1px 0 rgba(255, 255, 255, 0.1),
        5px 10px 18px rgba(4, 9, 15, 0.2);
    transform: translateZ(-8px);
    content: "";
}

.student-app-release-section .hero-device-backplate::after {
    position: absolute;
    right: 20px;
    bottom: -5px;
    left: 28px;
    height: 9px;
    border: 1px solid rgba(65, 77, 91, 0.68);
    border-top: 0;
    border-radius: 0 0 10px 10px;
    background: linear-gradient(180deg, #101620 0%, #303a47 48%, #06090d 100%);
    box-shadow:
        inset 0 1px rgba(255, 255, 255, 0.08),
        7px 9px 18px rgba(4, 9, 15, 0.18);
    transform: translateZ(-8px);
    content: "";
}

.student-app-release-section .app-mobile-device {
    position: relative;
    z-index: 1;
    padding: 12px;
    border: 1px solid #596574;
    border-radius: 34px;
    background:
        linear-gradient(102deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.03) 9%, transparent 24%, transparent 74%, rgba(255, 255, 255, 0.08) 94%, rgba(255, 255, 255, 0.14) 100%),
        linear-gradient(158deg, #475363 0%, #1a222e 17%, #080b10 49%, #252f3c 78%, #07090d 100%);
    box-shadow:
        -8px 13px 22px rgba(11, 21, 33, 0.13),
        18px 38px 78px rgba(8, 16, 27, 0.3),
        inset 2px 1px 0 rgba(255, 255, 255, 0.18),
        inset -3px -1px 0 rgba(0, 0, 0, 0.46),
        inset 0 -2px 0 rgba(0, 0, 0, 0.58);
    transform: translateZ(32px);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transition: box-shadow 700ms cubic-bezier(.2, .75, .2, 1), filter 500ms ease;
}

.student-app-release-section .app-mobile-device::before {
    position: absolute;
    inset: 4px;
    z-index: 6;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 29px;
    box-shadow:
        inset 1px 1px 0 rgba(255, 255, 255, 0.11),
        inset -1px -1px 0 rgba(0, 0, 0, 0.48);
    pointer-events: none;
    content: "";
}

.student-app-release-section .app-mobile-device::after {
    position: absolute;
    top: 38px;
    right: -5px;
    bottom: 38px;
    z-index: 0;
    width: 6px;
    border: 1px solid rgba(67, 80, 96, 0.76);
    border-left: 0;
    border-radius: 0 7px 7px 0;
    background: linear-gradient(90deg, #070a0f 0%, #354151 48%, #171e28 74%, #05070a 100%);
    box-shadow:
        inset 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 10px 18px rgba(255, 255, 255, 0.025),
        4px 8px 13px rgba(5, 10, 17, 0.2);
    transform: translateZ(-3px);
    pointer-events: none;
    content: "";
}

.student-app-release-section .hero-device-volume-key,
.student-app-release-section .hero-device-power-key {
    position: absolute;
    right: -9px;
    z-index: 7;
    width: 9px;
    border: 1px solid rgba(91, 105, 122, 0.88);
    border-left: 0;
    border-radius: 0 5px 5px 0;
    background: linear-gradient(90deg, #080b10 0%, #435063 46%, #202a36 72%, #070a0f 100%);
    box-shadow:
        inset 1px 0 rgba(255, 255, 255, 0.14),
        inset 0 1px rgba(255, 255, 255, 0.09),
        inset 0 -1px rgba(0, 0, 0, 0.5),
        4px 6px 10px rgba(5, 10, 17, 0.23);
    transform: translateZ(-1px);
    pointer-events: none;
}

.student-app-release-section .hero-device-volume-key {
    top: 108px;
    height: 82px;
}

.student-app-release-section .hero-device-power-key {
    top: 215px;
    height: 56px;
    background: linear-gradient(90deg, #080b10 0%, #4b596b 48%, #202a36 72%, #070a0f 100%);
}

.student-app-release-section .hero-device-volume-key::before {
    position: absolute;
    top: 50%;
    right: 1px;
    left: 2px;
    height: 1px;
    background: rgba(3, 6, 10, 0.72);
    box-shadow: 0 1px rgba(255, 255, 255, 0.08);
    content: "";
}

.student-app-release-section .hero-device-volume-key::after,
.student-app-release-section .hero-device-power-key::after {
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 1px;
    width: 1px;
    border-radius: 999px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.26), transparent);
    content: "";
}

.student-app-release-section .app-mobile-device-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    z-index: 12;
    width: 132px;
    height: 22px;
    border: 1px solid rgba(35, 43, 54, 0.9);
    border-top: 0;
    border-radius: 0 0 16px 16px;
    background: linear-gradient(180deg, #030507, #0b0f15 76%, rgba(21, 27, 36, 0.95));
    box-shadow:
        inset 0 -1px 0 rgba(255, 255, 255, 0.06),
        inset 10px 0 15px rgba(255, 255, 255, 0.018),
        0 3px 6px rgba(0, 0, 0, 0.22);
    transform: translate3d(-50%, 0, 14px);
    backface-visibility: hidden;
}

.student-app-release-section .hero-device-earpiece {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 38px;
    height: 3px;
    border-radius: 999px;
    background: repeating-linear-gradient(90deg, #0b1017 0 2px, #465260 2px 3px, #111820 3px 5px);
    box-shadow:
        inset 0 1px rgba(255, 255, 255, 0.1),
        0 1px 1px rgba(0, 0, 0, 0.7);
    transform: translateX(-50%);
}

.student-app-release-section .hero-device-front-camera,
.student-app-release-section .hero-device-front-flash {
    position: absolute;
    top: 5px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.student-app-release-section .hero-device-front-camera {
    right: 20px;
    border: 1px solid rgba(72, 101, 130, 0.88);
    background: radial-gradient(circle at 35% 32%, #6aa1cd 0%, #274f73 15%, #0b1b2a 42%, #010306 72%);
    box-shadow:
        inset 0 0 0 1px rgba(0, 0, 0, 0.7),
        0 0 5px rgba(68, 133, 185, 0.38);
}

.student-app-release-section .hero-device-front-camera::after {
    position: absolute;
    top: 1px;
    left: 2px;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: rgba(190, 225, 248, 0.76);
    content: "";
}

.student-app-release-section .hero-device-front-flash {
    left: 21px;
    border: 1px solid rgba(160, 170, 174, 0.74);
    background: radial-gradient(circle at 40% 38%, #ffffff 0 18%, #e8eee7 24%, #b7c2b9 48%, #343b3d 72%, #0a0d10 100%);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.12),
        0 0 6px rgba(255, 239, 185, 0.34);
}

.student-app-release-section .app-mobile-screen {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 26px;
    background: #eef3f8;
    box-shadow:
        0 0 0 1px rgba(225, 233, 240, 0.13),
        inset 0 0 0 1px rgba(7, 12, 19, 0.26),
        inset 0 0 24px rgba(5, 11, 18, 0.08);
    aspect-ratio: 1080 / 2340;
    transform: translateZ(3px);
    backface-visibility: hidden;
}

.student-app-release-section .hero-device-glass-sheen {
    position: absolute;
    inset: 12px;
    z-index: 10;
    overflow: hidden;
    border-radius: 26px;
    background:
        radial-gradient(circle at var(--hero-light-x) var(--hero-light-y), rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.08) 13%, transparent 31%),
        linear-gradient(112deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.025) 22%, transparent 38%, transparent 72%, rgba(255, 255, 255, 0.035) 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    opacity: 0.38;
    mix-blend-mode: screen;
    transform: translateZ(8px);
    transition: opacity 600ms ease;
    pointer-events: none;
}

.student-app-release-section .hero-device-stage.is-interacting .app-mobile-device {
    box-shadow:
        -9px 15px 24px rgba(11, 21, 33, 0.15),
        22px 44px 88px rgba(8, 16, 27, 0.34),
        inset 2px 1px 0 rgba(255, 255, 255, 0.2),
        inset -3px -1px 0 rgba(0, 0, 0, 0.48),
        inset 0 -2px 0 rgba(0, 0, 0, 0.6);
}

.student-app-release-section .hero-device-stage.is-interacting .hero-device-glass-sheen {
    opacity: 0.52;
}

.student-app-release-section .hero-device-notification {
    position: absolute;
    top: 38px;
    right: 10px;
    left: 10px;
    z-index: 8;
    perspective: 800px;
    pointer-events: none;
}

.student-app-release-section .hero-device-notification-card {
    position: relative;
    overflow: hidden;
    max-height: 152px;
    padding: 10px 11px 11px;
    border: 1px solid rgba(211, 219, 227, 0.94);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(252, 253, 255, 0.97), rgba(242, 246, 249, 0.96));
    box-shadow:
        0 14px 32px rgba(10, 22, 36, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    opacity: 1;
    backdrop-filter: blur(18px) saturate(1.08);
    transform: translate3d(0, 0, 28px) scale(1);
    transform-origin: 50% 0;
    filter: saturate(1);
    text-align: left;
    transition:
        max-height 540ms cubic-bezier(.2, .82, .2, 1),
        padding 540ms cubic-bezier(.2, .82, .2, 1),
        border-radius 540ms cubic-bezier(.2, .82, .2, 1),
        transform 460ms cubic-bezier(.2, .82, .2, 1),
        opacity 320ms ease,
        box-shadow 460ms ease,
        filter 320ms ease;
    will-change: max-height, transform, opacity, filter;
}

.student-app-release-section .hero-device-notification-card::before {
    position: absolute;
    inset: 0 12px auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95), transparent);
    content: "";
}

.student-app-release-section .hero-device-notification-card::after {
    position: absolute;
    right: 18px;
    bottom: 5px;
    left: 18px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--hero-device-alert-accent, var(--release-secondary)) 52%, transparent), transparent);
    opacity: 0.48;
    transition: opacity 280ms ease;
    content: "";
}

.student-app-release-section .hero-device-notification-card.is-collapsed,
.student-app-release-section .hero-device-notification-card.is-collapsing {
    max-height: 55px;
    padding-bottom: 9px;
    border-radius: 18px;
    box-shadow:
        0 9px 22px rgba(10, 22, 36, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
    transform: translate3d(0, 0, 20px) scale(0.994);
    filter: saturate(0.96);
}

.student-app-release-section .hero-device-notification-card.is-collapsing {
    transform: translate3d(0, -1px, 20px) scale(0.99);
}

.student-app-release-section .hero-device-notification-card.is-expanding {
    opacity: 1;
    transform: translate3d(0, 0, 30px) scale(1.012);
}

.student-app-release-section .hero-device-notification-card.is-exiting {
    max-height: 55px;
    padding-bottom: 9px;
    opacity: 0;
    transform: translate3d(0, -26px, 8px) scale(0.94);
    filter: blur(2px) saturate(0.9);
}

.student-app-release-section .hero-device-notification-card.is-entering {
    max-height: 55px;
    padding-bottom: 9px;
    border-radius: 18px;
    opacity: 0;
    transform: translate3d(0, -28px, 8px) scale(0.94);
    filter: blur(2px) saturate(0.9);
    transition: none;
}

.student-app-release-section .hero-device-notification-card.is-collapsed::after,
.student-app-release-section .hero-device-notification-card.is-collapsing::after,
.student-app-release-section .hero-device-notification-card.is-exiting::after,
.student-app-release-section .hero-device-notification-card.is-entering::after {
    opacity: 0;
}

.student-app-release-section .hero-device-notification-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 34px;
    margin-bottom: 7px;
    transition: margin-bottom 440ms cubic-bezier(.2, .82, .2, 1);
}

.student-app-release-section .hero-device-notification-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
    color: #15283b;
}

.student-app-release-section .hero-device-notification-app-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: linear-gradient(145deg, color-mix(in srgb, var(--hero-device-alert-accent, var(--release-secondary)) 78%, white), var(--hero-device-alert-accent, var(--release-secondary)));
    color: #ffffff;
    box-shadow:
        0 5px 12px color-mix(in srgb, var(--hero-device-alert-accent, var(--release-secondary)) 24%, transparent),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    font-size: 0.76rem;
    flex: 0 0 auto;
    transition: transform 420ms cubic-bezier(.2, .82, .2, 1), background 260ms ease;
}

.student-app-release-section .hero-device-notification-brand-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1.1;
}

.student-app-release-section .hero-device-notification-brand-copy b {
    overflow: hidden;
    color: #162b3f;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.student-app-release-section .hero-device-notification-brand-copy small {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    color: #657788;
    font-size: 0.61rem;
    font-weight: 700;
    letter-spacing: 0.015em;
}

.student-app-release-section .hero-device-notification-separator {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #8a99a7;
    flex: 0 0 auto;
}

.student-app-release-section .hero-device-notification-time {
    white-space: nowrap;
}

.student-app-release-section .hero-device-notification-chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(227, 233, 239, 0.82);
    color: #566879;
    font-size: 0.58rem;
    flex: 0 0 auto;
    transition: transform 460ms cubic-bezier(.2, .82, .2, 1), background 260ms ease;
}

.student-app-release-section .hero-device-notification-content {
    padding: 0 3px 0 39px;
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition:
        opacity 260ms ease 90ms,
        transform 440ms cubic-bezier(.2, .82, .2, 1);
}

.student-app-release-section .hero-device-notification-content strong {
    display: block;
    color: #14283b;
    font-size: 0.82rem;
    line-height: 1.26;
}

.student-app-release-section .hero-device-notification-content p {
    display: -webkit-box;
    overflow: hidden;
    margin: 4px 0 0;
    color: #526577;
    font-size: 0.7rem;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.student-app-release-section .hero-device-notification-card.is-collapsed .hero-device-notification-head,
.student-app-release-section .hero-device-notification-card.is-collapsing .hero-device-notification-head,
.student-app-release-section .hero-device-notification-card.is-exiting .hero-device-notification-head,
.student-app-release-section .hero-device-notification-card.is-entering .hero-device-notification-head {
    margin-bottom: 0;
}

.student-app-release-section .hero-device-notification-card.is-collapsed .hero-device-notification-content,
.student-app-release-section .hero-device-notification-card.is-collapsing .hero-device-notification-content,
.student-app-release-section .hero-device-notification-card.is-exiting .hero-device-notification-content,
.student-app-release-section .hero-device-notification-card.is-entering .hero-device-notification-content {
    opacity: 0;
    transform: translate3d(0, -8px, 0);
    transition-delay: 0ms;
}

.student-app-release-section .hero-device-notification-card.is-collapsed .hero-device-notification-chevron,
.student-app-release-section .hero-device-notification-card.is-collapsing .hero-device-notification-chevron,
.student-app-release-section .hero-device-notification-card.is-exiting .hero-device-notification-chevron,
.student-app-release-section .hero-device-notification-card.is-entering .hero-device-notification-chevron {
    transform: rotate(180deg);
}

.student-app-release-section .hero-device-notification-card.is-expanding .hero-device-notification-app-icon {
    transform: scale(1.06);
}

.student-app-release-section .hero-device-slide {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    transform: translate3d(100%, 0, 0) scale(0.985);
    filter: blur(6px);
    backface-visibility: hidden;
    pointer-events: none;
    transition:
        opacity 1.05s cubic-bezier(.22, .61, .36, 1),
        transform 1.05s cubic-bezier(.22, .61, .36, 1),
        filter 1.05s cubic-bezier(.22, .61, .36, 1);
}

.student-app-release-section .hero-device-slide.is-active {
    z-index: 2;
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
    pointer-events: auto;
}

.student-app-release-section .hero-device-slide.is-active.is-leaving {
    z-index: 1;
    opacity: 0;
    transform: translate3d(-100%, 0, 0) scale(0.985);
    filter: blur(6px);
    pointer-events: none;
}

.student-app-release-section .hero-device-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.student-app-release-section .hero-device-slide::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 36%, rgba(10, 16, 28, 0.02) 100%),
        linear-gradient(180deg, rgba(10, 16, 28, 0.02), rgba(10, 16, 28, 0) 26%, rgba(10, 16, 28, 0.05) 100%);
    pointer-events: none;
    content: "";
}

.student-app-release-section .hero-device-screen-copy {
    position: absolute;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 2;
    padding: 12px 13px 11px;
    border: 1px solid rgba(208, 219, 230, 0.9);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(246, 249, 252, 0.96));
    box-shadow: 0 14px 30px rgba(16, 42, 67, 0.12);
    backdrop-filter: blur(12px);
    text-align: left;
}

.student-app-release-section .hero-device-screen-copy span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 6px;
    color: var(--release-secondary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.student-app-release-section .hero-device-screen-copy strong {
    display: block;
    color: var(--release-primary-strong);
    font-size: 16px;
    line-height: 1.2;
}

.student-app-release-section .hero-device-screen-copy p {
    margin: 6px 0 0;
    color: #5f7183;
    font-size: 11px;
    line-height: 1.45;
}

@media (max-width: 1199.98px) {
    .student-app-release-shell {
        padding-right: 34px;
        padding-left: 34px;
    }

    .student-app-release-section .hero-device-wrap {
        width: min(100%, 390px);
    }
}

@media (max-width: 991.98px) {
    .student-app-release-shell {
        padding: 58px 28px;
    }

    .student-app-release-shell > .row {
        --bs-gutter-y: 3.25rem;
    }

    .student-app-release-points {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .student-app-release-device-column {
        padding-top: 6px;
    }
}

@media (max-width: 767.98px) {
    .student-app-release-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .student-app-release-shell {
        padding: 48px 18px 44px;
    }

    .student-app-release-section .safetransit-badge,
    .student-app-release-kicker {
        display: flex;
        width: fit-content;
        max-width: 100%;
        margin-right: auto;
        margin-left: auto;
    }

    .student-app-release-kicker {
        margin-top: 0;
        margin-bottom: 16px;
        text-align: center;
        white-space: normal;
    }

    .student-app-release-title {
        font-size: 1.9rem;
    }

    .student-app-release-lead {
        font-size: 1rem;
    }

    .student-app-release-actions {
        flex-direction: column;
        padding-right: 26px;
    }

    .student-app-release-btn {
        width: 100%;
        justify-content: center;
    }

    .student-app-release-btn-store,
    .student-app-release-btn-console {
        min-width: 0;
    }

    .student-app-release-tags {
        justify-content: center;
    }

    .student-app-release-section .hero-device-wrap {
        width: min(100%, 340px);
    }

    .student-app-release-section .hero-device-stage {
        padding: 5px 2px 24px;
    }

    .student-app-release-section .hero-device-screen-copy {
        right: 11px;
        bottom: 11px;
        left: 11px;
        padding: 10px 11px;
    }

    .student-app-release-section .hero-device-notification {
        top: 35px;
        right: 8px;
        left: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .student-app-release-particles {
        display: none;
    }

    .student-app-release-badge,
    .student-app-release-badge::after,
    .student-app-release-section .hero-device-frame,
    .student-app-release-section .hero-device-orbit,
    .student-app-release-section .app-mobile-device,
    .student-app-release-section .hero-device-glass-sheen,
    .student-app-release-section .hero-device-slide,
    .student-app-release-section .hero-device-notification-card {
        animation: none;
        transition: none;
    }

    .student-app-release-section .hero-device-orbit {
        --hero-tilt-x: 0deg;
        --hero-tilt-y: 0deg;
    }
}
