:root {
    --ov-black: #020005;
    --ov-deep: #0d0024;
    --ov-ink: #080414;
    --ov-purple: #7b2cff;
    --ov-magenta: #ff4fd8;
    --ov-blue: #5a2daa;
    --ov-cyan: #b48eff;
    --ov-green: #42ffc6;
    --ov-text: #ffffff;
    --ov-muted: rgba(255, 255, 255, .65);
    --ov-soft: rgba(255, 255, 255, .45);
    --ov-border: rgba(140, 80, 220, .2);
    --ov-glass: rgba(10, 4, 28, .7);
    --ov-glass-strong: rgba(15, 6, 38, .85);
    --ov-glow: 0 0 40px rgba(120, 60, 200, .15);
    --ov-radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    color: var(--ov-text);
    background: var(--ov-black);
    font-family: Poppins, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -5;
    background:
        radial-gradient(ellipse at 50% 60%, rgba(42, 8, 69, 0.6), transparent 55%),
        radial-gradient(circle at 30% 40%, rgba(80, 20, 120, 0.25), transparent 45%),
        radial-gradient(circle at 70% 35%, rgba(60, 10, 100, 0.2), transparent 40%),
        radial-gradient(circle at 50% 100%, rgba(20, 5, 40, 0.8), transparent 50%),
        linear-gradient(180deg, #020005 0%, #08001a 30%, #0d0024 50%, #05000d 100%);
}

a {
    color: var(--ov-cyan);
    text-decoration: none;
    transition: color .2s ease, text-shadow .2s ease;
}

a:hover {
    color: #fff;
    text-shadow: 0 0 18px rgba(52, 231, 255, .42);
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
    outline: 2px solid var(--ov-cyan);
    outline-offset: 3px;
}

.cosmic-bg {
    position: fixed;
    inset: 0;
    z-index: -4;
    pointer-events: none;
    overflow: hidden;
}

.starfield-layer,
.aurora-layer {
    position: absolute;
    inset: -12%;
}

.starfield-layer {
    opacity: .3;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(255, 255, 255, .8) 0 0.8px, transparent 1.2px),
        radial-gradient(circle at 65% 70%, rgba(200, 180, 255, .6) 0 0.6px, transparent 1px),
        radial-gradient(circle at 40% 45%, rgba(255, 255, 255, .5) 0 0.8px, transparent 1.2px),
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, .4) 0 0.5px, transparent 1px),
        radial-gradient(circle at 30% 85%, rgba(255, 255, 255, .3) 0 0.5px, transparent 1px);
    background-size: 320px 450px, 400px 320px, 350px 380px, 280px 410px, 420px 290px;
    animation: star-drift 50s linear infinite;
}

.aurora-layer {
    opacity: 0.7;
    filter: blur(60px);
    background:
        radial-gradient(ellipse at 45% 45%, rgba(100, 20, 160, 0.5), transparent 50%),
        radial-gradient(ellipse at 55% 55%, rgba(60, 10, 120, 0.4), transparent 55%),
        radial-gradient(circle at 25% 60%, rgba(120, 30, 180, 0.25), transparent 40%),
        radial-gradient(circle at 75% 40%, rgba(80, 15, 140, 0.2), transparent 45%),
        conic-gradient(from 200deg at 50% 50%, transparent, rgba(90, 20, 150, 0.3), transparent 40%);
    animation: aurora-drift 22s ease-in-out infinite alternate;
}

.ov-nav {
    background: rgba(2, 0, 5, .82);
    border-bottom: 1px solid rgba(120, 60, 180, .12);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .4);
    backdrop-filter: blur(18px);
    transition: background .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.ov-nav.is-scrolled {
    background: rgba(2, 0, 5, .92);
    border-bottom-color: rgba(120, 60, 180, .2);
    box-shadow: 0 16px 42px rgba(0, 0, 0, .5);
}

.navbar .container {
    min-height: 68px;
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: none !important;
}

.navbar-toggler-icon {
    opacity: .92;
}

.navbar-collapse {
    padding-block: .35rem .5rem;
}

.navbar-nav {
    gap: .15rem .4rem;
}

.brand-wordmark {
    width: clamp(152px, 16vw, 214px);
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 16px rgba(52, 231, 255, .28));
}

.nav-link {
    color: rgba(255, 255, 255, .72);
    font-weight: 800;
    font-size: .94rem;
    position: relative;
}

.nav-link:not(.dropdown-toggle)::after {
    content: "";
    position: absolute;
    left: .5rem;
    right: .5rem;
    bottom: .18rem;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--ov-magenta), var(--ov-purple));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}

.nav-link:not(.dropdown-toggle):hover::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: #fff;
    text-shadow: 0 0 16px rgba(180, 142, 255, .3);
}

.nav-link.active:not(.dropdown-toggle)::after {
    transform: scaleX(1);
}

.ov-dropdown-menu {
    background: rgba(10, 4, 28, 0.96) !important;
    border: 1px solid var(--ov-border) !important;
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5) !important;
    border-radius: 14px !important;
    padding: 0.45rem !important;
    margin-top: 8px !important;
}

.ov-dropdown-menu .dropdown-item {
    color: rgba(255, 255, 255, 0.72) !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.52rem 0.95rem;
    border-radius: 9px;
    transition: background 0.2s ease, color 0.2s ease;
}

.ov-dropdown-menu .dropdown-item:hover,
.ov-dropdown-menu .dropdown-item:focus {
    background: rgba(255, 79, 216, 0.12) !important;
    color: #fff !important;
}

.ov-dropdown-menu .dropdown-item.active {
    background: linear-gradient(90deg, var(--ov-magenta), var(--ov-purple)) !important;
    color: #fff !important;
}

@media (min-width: 992px) {
    .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0 !important;
    }
}

.hero-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: clamp(3.2rem, 6vw, 6.3rem) 0 clamp(1.6rem, 4vw, 3.2rem);
}

.cosmic-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    background:
        radial-gradient(ellipse at 70% 50%, rgba(80, 20, 130, 0.35), transparent 40%),
        radial-gradient(circle at 40% 30%, rgba(60, 10, 100, 0.2), transparent 35%),
        radial-gradient(circle at 20% 70%, rgba(100, 30, 160, 0.15), transparent 30%),
        linear-gradient(90deg, rgba(2, 0, 5, 0.95) 0%, rgba(2, 0, 5, 0.7) 50%, rgba(2, 0, 5, 0.4) 100%);
    opacity: 1;
}

.cosmic-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 76% 42%, rgba(100, 30, 160, 0.2), transparent 28%),
        radial-gradient(circle at 84% 70%, rgba(60, 15, 120, 0.15), transparent 30%),
        linear-gradient(100deg, transparent 35%, rgba(80, 20, 140, 0.12), rgba(60, 10, 100, 0.08), transparent 78%);
    mix-blend-mode: screen;
}

.hero-copy {
    position: relative;
    z-index: 3;
}

.hero-visual {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    min-height: 430px;
}

.eyebrow {
    color: var(--ov-cyan);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .14rem;
}

.hero-title,
.section-title,
.page-head h1 {
    font-family: Montserrat, Poppins, sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-title {
    margin: .56rem 0 0;
    font-size: clamp(4rem, 7.2vw, 7.5rem);
    line-height: .9;
    text-transform: uppercase;
}

.hero-title .t-one {
    color: #f77ebd;
    text-shadow: 0 0 25px rgba(247, 126, 189, 0.4);
}

.hero-title .t-voice {
    color: #8da4be;
    font-style: italic;
    text-shadow: 0 0 15px rgba(141, 164, 190, 0.3);
}

.hero-title .t-27 {
    color: #03e4d9;
    font-weight: 900;
    text-shadow: 0 0 30px rgba(3, 228, 217, 0.4);
}

.hero-subtitle {
    margin: .5rem 0 1.5rem;
    color: #fff;
    font-family: Montserrat, sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 300;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.hero-section .lead {
    max-width: 45rem;
    color: rgba(255, 255, 255, .82) !important;
    font-size: clamp(1rem, 2.2vw, 1.18rem);
}

.hero-actions,
.quick-actions-row {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.digital-globe-wrap {
    position: relative;
    width: min(40vw, 500px);
    min-width: 340px;
    aspect-ratio: 1;
    isolation: isolate;
    transform-style: preserve-3d;
    animation: globe-float 7.5s ease-in-out infinite;
    transition: filter .25s ease, transform .25s ease;
}

.cosmic-hero:hover .digital-globe-wrap {
    filter: drop-shadow(0 0 22px rgba(52, 231, 255, .22));
}

.globe-glow {
    position: absolute;
    inset: -20%;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255,79,216,.45) 0%, rgba(123,44,255,.3) 40%, rgba(52,231,255,0.15) 70%, transparent 80%);
    filter: blur(40px);
    animation: globe-pulse 4.8s ease-in-out infinite;
    z-index: -1;
}

.digital-globe {
    position: absolute;
    inset: 5%;
    border-radius: 50%;
    border: 2px solid rgba(255, 79, 216, 0.4);
    overflow: hidden;
    background: radial-gradient(circle at center, transparent 40%, rgba(123, 44, 255, 0.15) 70%, rgba(255, 79, 216, 0.3) 100%);
    box-shadow:
        inset 0 0 40px rgba(255, 79, 216, 0.7),
        inset 0 0 80px rgba(123, 44, 255, 0.5),
        0 0 50px rgba(255, 79, 216, 0.4),
        0 0 80px rgba(123, 44, 255, 0.3);
}

.globe-core,
.globe-grid,
.globe-map-wrap,
.globe-particles,
.globe-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    pointer-events: none;
}

.globe-core {
    background: radial-gradient(circle at 30% 40%, rgba(255, 79, 216, 0.2), transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(123, 44, 255, 0.2), transparent 50%);
    mix-blend-mode: screen;
}

.globe-map-wrap {
    overflow: hidden;
    mask-image: radial-gradient(circle, #000 75%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle, #000 75%, transparent 100%);
}

.globe-map-horizontal {
    position: absolute;
    inset: 0;
    background-image: url('../img/world-map.svg');
    background-size: auto 100%;
    background-repeat: repeat-x;
    background-position: 0 0;
    opacity: 0.32;
    filter: drop-shadow(0 0 10px rgba(255, 79, 216, 0.6)) drop-shadow(0 0 3px rgba(123, 44, 255, 0.5));
    animation: globe-spin-horizontal 35s linear infinite;
    mix-blend-mode: screen;
}

@keyframes globe-spin-horizontal {
    from {
        background-position-x: 0;
    }
    to {
        background-position-x: -784px;
    }
}

.globe-grid {
    opacity: 0.6;
    background: conic-gradient(from 0deg at 50% 50%, rgba(255, 79, 216, 0.2), transparent 25%, rgba(123, 44, 255, 0.2) 50%, transparent 75%, rgba(255, 79, 216, 0.2) 100%);
    filter: blur(12px);
    animation: particle-rotate 15s linear infinite;
}

.globe-particles {
    opacity: 0.5;
    background:
        radial-gradient(circle at 10% 20%, rgba(255,79,216,.8) 0 1px, transparent 1.5px),
        radial-gradient(circle at 40% 80%, rgba(123,44,255,.8) 0 1px, transparent 1.5px),
        radial-gradient(circle at 80% 30%, rgba(255,255,255,.6) 0 1px, transparent 1.5px);
    background-size: 50px 50px, 80px 80px, 60px 60px;
    animation: particle-rotate 35s linear infinite;
    mix-blend-mode: screen;
}

.globe-ring {
    inset: -10%;
    border: 2px solid rgba(255, 79, 216, 0.4);
    box-shadow: inset 0 0 15px rgba(255, 79, 216, 0.4), 0 0 15px rgba(123, 44, 255, 0.4);
    mix-blend-mode: screen;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

.globe-ring-a {
    animation: orbit-rotate-a 12s linear infinite;
    border-color: rgba(255, 79, 216, 0.6);
}

.globe-ring-b {
    inset: -5%;
    animation: orbit-rotate-b 16s linear infinite reverse;
    border-color: rgba(123, 44, 255, 0.5);
    border-radius: 50% 50% 60% 40% / 40% 60% 50% 50%;
}

.globe-ring-c {
    inset: 0%;
    animation: orbit-rotate-a 22s linear infinite;
    border-color: rgba(52, 231, 255, 0.2);
    border-radius: 60% 40% 50% 50% / 50% 50% 40% 60%;
}

.btn {
    border-radius: 999px;
    font-weight: 900;
    padding: .82rem 1.18rem;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background-position .3s ease;
}

.btn:hover {
    transform: translateY(-2px) scale(1.01);
}

.btn-neon,
.btn-ov-primary {
    color: #fff;
    border: 0;
    background: #e94da9;
    /* Solid magenta */
    box-shadow: 0 0 25px rgba(233, 77, 169, 0.5), inset 0 0 10px rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: Montserrat, sans-serif;
}

.btn-neon:hover {
    background: #ff5bc1;
    box-shadow: 0 0 35px rgba(255, 91, 193, 0.7), inset 0 0 12px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px) scale(1.02);
}

.btn-glass {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(14px);
}

.btn-glass:hover {
    border-color: rgba(52, 231, 255, .44);
    background: rgba(52, 231, 255, .1);
}

.btn-share {
    color: #021412;
    border: 0;
    background: linear-gradient(90deg, var(--ov-green), var(--ov-cyan));
    box-shadow: 0 0 32px rgba(66, 255, 198, .24);
}

.app-section {
    padding-top: clamp(1.35rem, 4vw, 2.4rem);
    padding-bottom: clamp(1.35rem, 4vw, 2.4rem);
}

.mission-strip-section {
    margin-top: -2.4rem;
    position: relative;
    z-index: 4;
}

.mission-status-strip,
.share-band,
.cinematic-band,
.glass-card {
    position: relative;
    overflow: hidden;
    color: var(--ov-text);
    background: linear-gradient(145deg, rgba(18, 8, 42, .8), rgba(6, 2, 16, .7));
    border: 1px solid var(--ov-border);
    border-radius: var(--ov-radius);
    box-shadow: var(--ov-glow), inset 0 1px 0 rgba(255, 255, 255, .05);
    backdrop-filter: blur(20px);
}

.glass-card {
    display: block;
    padding: clamp(1.12rem, 3vw, 1.7rem);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.glass-card p,
.timeline-item p,
.page-head p,
.reading-detail p {
    line-height: 1.75;
}

.glass-card::before,
.share-band::before,
.cinematic-band::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .08) 45%, transparent 68%);
    transform: translateX(-110%);
    transition: transform .6s ease;
}

.glass-card:hover,
.quick-card:hover {
    transform: translateY(-4px);
    border-color: rgba(180, 100, 255, .35);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .4), 0 0 30px rgba(120, 60, 200, .15), inset 0 1px 0 rgba(255, 255, 255, .06);
}

.glass-card:hover::before,
.share-band:hover::before,
.cinematic-band:hover::before {
    transform: translateX(110%);
}

.mission-status-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .7rem;
    padding: .75rem;
}

.mission-chip {
    min-height: 120px;
    padding: 1.2rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .05);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
}

.mission-chip:hover {
    transform: translateY(-3px);
    border-color: rgba(180, 100, 255, .35);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .4), 0 0 15px rgba(120, 60, 200, .2);
    background: rgba(255, 255, 255, .06);
}

.outline-number {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-family: Montserrat, sans-serif;
    font-weight: 900;
    font-size: 4.5rem;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 79, 216, 0.18);
    opacity: 0.8;
    font-style: italic;
    z-index: 0;
    pointer-events: none;
}

.mission-chip>div {
    position: relative;
    z-index: 1;
}

.mission-chip span {
    color: #fff;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.2rem;
}

.mission-chip strong {
    display: block;
    margin-top: .1rem;
    color: #fff;
    line-height: 1.1;
}

.mission-chip small {
    color: var(--ov-muted);
}

.card-title,
.content-card h2,
.timeline-item h2 {
    color: #fff;
    font-size: clamp(1.35rem, 3.2vw, 2rem);
    line-height: 1.08;
}

.section-title {
    color: #fff;
    font-size: clamp(2.35rem, 7vw, 4.7rem);
    line-height: .9;
}

.text-cyan {
    color: var(--ov-cyan);
}

.text-secondary {
    color: var(--ov-muted) !important;
}

.featured-reading-card {
    min-height: 100%;
}

.card-label {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-bottom: .8rem;
    color: var(--ov-cyan);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .14rem;
    text-transform: uppercase;
}

.card-label::before {
    content: "";
    width: .55rem;
    height: .55rem;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--ov-magenta), var(--ov-purple));
    box-shadow: 0 0 10px rgba(180, 142, 255, .35);
}

.reading-title-row {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: .8rem;
}

.btn-reading {
    min-width: 110px;
    padding-inline: 1.35rem;
}

.reading-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin: 1rem 0 .75rem;
}

.reading-meta span,
.read-pill {
    border: 1px solid rgba(180, 142, 255, .25);
    border-radius: 999px;
    padding: .36rem .7rem;
    color: var(--ov-cyan);
    background: rgba(120, 60, 200, .1);
    font-size: .8rem;
    font-weight: 900;
}

.read-pill {
    color: var(--ov-green);
    border-color: rgba(66, 255, 198, .38);
    background: rgba(66, 255, 198, .08);
}

.mission-progress {
    height: 10px;
    margin: 0 0 1rem;
    overflow: hidden;
    border-radius: 99px;
    background: rgba(255, 255, 255, .08);
}

.mission-progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--ov-magenta), var(--ov-purple), var(--ov-cyan));
    box-shadow: 0 0 16px rgba(180, 142, 255, .36);
}

.devotion-card {
    background: linear-gradient(145deg, rgba(42, 16, 62, .7), rgba(8, 4, 20, .6));
}

.share-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: clamp(1.2rem, 3vw, 1.8rem);
}

.btn-share-primary {
    min-width: min(100%, 260px);
    font-size: 1.05rem;
    padding-inline: 1.35rem;
}

.share-band h2 {
    margin: .2rem 0 .35rem;
    color: #fff;
    font-family: Montserrat, Poppins, sans-serif;
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    line-height: 1.1;
    font-weight: 700;
}

.share-band p {
    margin: 0;
    color: var(--ov-muted);
}

.quick-grid,
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.quick-card {
    min-height: 168px;
}

.quick-card i {
    display: grid;
    place-items: center;
    width: 46px;
    aspect-ratio: 1;
    margin-bottom: 1rem;
    border-radius: 15px;
    color: #fff;
    font-style: normal;
    font-weight: 900;
    background: linear-gradient(145deg, var(--ov-magenta), var(--ov-blue), var(--ov-cyan));
    box-shadow: 0 0 24px rgba(180, 100, 255, .3);
}

.quick-card span {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 900;
}

.quick-card small {
    color: var(--ov-muted);
}

.cinematic-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: clamp(1.2rem, 4vw, 2rem);
    background:
        radial-gradient(circle at 82% 30%, rgba(120, 60, 200, .12), transparent 28%),
        radial-gradient(circle at 20% 80%, rgba(180, 80, 255, .1), transparent 32%),
        linear-gradient(90deg, rgba(6, 2, 16, .9), rgba(10, 4, 28, .7));
}

.page-head {
    position: relative;
    padding-top: clamp(4rem, 8vw, 6rem);
    padding-bottom: 1.5rem;
}

.page-head::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 240px;
    z-index: -1;
    background: radial-gradient(circle at 70% 20%, rgba(120, 60, 200, .15), transparent 32%), linear-gradient(180deg, rgba(180, 80, 255, .06), transparent);
}

.page-head h1 {
    color: #fff;
    font-family: Montserrat, sans-serif;
    font-weight: 800;
}

.timeline-list {
    display: grid;
    gap: 1rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 1rem;
}

.week-badge {
    display: grid;
    place-items: center;
    width: 58px;
    aspect-ratio: 1;
    border-radius: 18px;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(145deg, var(--ov-purple), var(--ov-magenta), var(--ov-cyan));
    box-shadow: 0 0 24px rgba(255, 79, 216, .24);
}

.reading-detail h2 {
    margin-top: 1.4rem;
    color: #fff;
    font-size: 1.15rem;
}

blockquote,
.caption-box {
    border-left: 3px solid var(--ov-cyan);
    padding: 1rem;
    color: #fff;
    background: rgba(255, 255, 255, .06);
    border-radius: 12px;
}

.caption-box {
    white-space: pre-wrap;
    font-family: Poppins, sans-serif;
}

footer {
    border-top: 1px solid rgba(140, 80, 220, .12);
    background: rgba(2, 0, 5, .7);
    backdrop-filter: blur(14px);
}

.footer-shell {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-brand strong {
    display: block;
    margin-bottom: .25rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem 1rem;
    justify-content: flex-end;
}

.footer-links a {
    color: #fff;
    font-weight: 800;
}

.footer-links a:hover {
    color: var(--ov-cyan);
}

.mobile-bottom-nav {
    display: none;
}

.reveal-on-load {
    animation: fade-up .7s ease both;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s ease, transform .55s ease;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

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

@keyframes star-drift {
    to {
        transform: translate3d(-70px, 70px, 0);
    }
}

@keyframes aurora-drift {
    from {
        transform: translateX(-2%) rotate(-1deg);
    }

    to {
        transform: translateX(2%) rotate(1deg);
    }
}

@keyframes globe-float {

    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-12px) rotate(1deg);
    }
}

@keyframes globe-pulse {

    0%,
    100% {
        opacity: .72;
        transform: scale(.98);
    }

    50% {
        opacity: 1;
        transform: scale(1.03);
    }
}

@keyframes orbit-rotate-a {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.05); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes orbit-rotate-b {
    0% { transform: rotate(360deg) scale(1.05); }
    50% { transform: rotate(180deg) scale(1); }
    100% { transform: rotate(0deg) scale(1.05); }
}

@keyframes particle-rotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes button-pulse {

    0%,
    100% {
        box-shadow: 0 0 28px rgba(255, 79, 216, .32), 0 0 48px rgba(120, 60, 200, .14);
    }

    50% {
        box-shadow: 0 0 38px rgba(255, 79, 216, .44), 0 0 62px rgba(120, 60, 200, .2);
    }
}

@media (max-width: 991px) {
    .hero-section {
        padding-top: 2.5rem;
    }

    .hero-copy {
        max-width: 680px;
    }

    .hero-visual {
        position: absolute;
        inset: auto -7rem 0 auto;
        min-height: 0;
        opacity: .34;
        z-index: 1;
    }

    .digital-globe-wrap {
        width: 330px;
        min-width: 0;
    }

    .mission-status-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-shell {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    body {
        padding-bottom: 76px;
    }

    .navbar .container {
        min-height: 58px;
    }

    .brand-wordmark {
        height: 33px;
        width: 155px;
    }

    .hero-section {
        padding: 2.5rem 0 2rem;
    }

    .hero-copy {
        text-align: center !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: clamp(2.0rem, 9.5vw, 3.1rem) !important;
        line-height: 1.1 !important;
        margin-top: 0.5rem !important;
        width: 100%;
        text-align: center;
    }

    .hero-subtitle {
        letter-spacing: 0.15em !important;
        margin-bottom: 1.25rem !important;
        text-align: center;
    }

    .hero-actions {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 0.65rem;
        margin-top: 1.5rem;
    }

    .hero-actions>* {
        width: 100% !important;
        margin: 0 !important;
        text-align: center;
    }

    .hero-visual {
        inset: 5.1rem -5.6rem auto auto;
        opacity: .2;
    }

    .digital-globe-wrap {
        width: 250px;
    }

    .mission-strip-section {
        margin-top: -1rem;
    }

    .mission-status-strip {
        grid-template-columns: 1fr 1fr;
        padding: .55rem;
    }

    .mission-chip {
        min-height: 78px;
        padding: .72rem;
    }

    .reading-title-row {
        align-items: flex-start;
    }

    .footer-shell {
        gap: 1rem;
    }

    .share-band,
    .cinematic-band {
        flex-direction: column;
        align-items: stretch;
    }

    .quick-actions-row>* {
        flex: 1 1 100%;
        text-align: center;
    }

    .quick-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quick-card {
        min-height: 142px;
        padding: 1rem;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }

    .mobile-bottom-nav {
        position: fixed;
        left: 0.5rem;
        right: 0.5rem;
        bottom: 0.5rem;
        z-index: 1040;
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 0.6rem 0.25rem;
        border: 1px solid rgba(140, 80, 220, 0.25);
        border-radius: 20px;
        background: rgba(10, 4, 28, 0.88);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .mobile-bottom-nav .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        color: rgba(255, 255, 255, 0.6) !important;
        text-decoration: none;
        font-size: 0.65rem;
        font-weight: 500;
        flex: 1;
        text-align: center;
        transition: color 0.2s ease, transform 0.2s ease;
    }

    .mobile-bottom-nav .nav-item i {
        font-size: 1.2rem;
        transition: transform 0.2s ease, color 0.2s ease;
    }

    .mobile-bottom-nav .nav-item:hover,
    .mobile-bottom-nav .nav-item.active {
        color: #fff !important;
    }

    .mobile-bottom-nav .nav-item.active i {
        color: var(--ov-magenta);
        transform: translateY(-2px);
    }
}

@media (max-width: 374px) {

    .quick-grid,
    .mission-status-strip {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 1.95rem !important;
    }

    .digital-globe-wrap {
        width: 220px;
    }

    .mission-chip {
        min-height: 74px;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
    }

    .reveal-on-scroll {
        opacity: 1;
        transform: none;
    }
}

/* Mobile App Header (Default hidden on desktop) */
.mobile-app-header {
    display: none;
}

/* Mobile-first app-like styling overrides */
@media (max-width: 767px) {
    /* Hide standard desktop navbar & footer on mobile for pure app container */
    .navbar.ov-nav {
        display: none !important;
    }
    footer {
        display: none !important;
    }

    body {
        padding-top: 72px !important; /* Top space for app bar */
        padding-bottom: 96px !important; /* Bottom space for sticky bottom nav */
    }

    /* Fixed App Bar Header styling */
    .mobile-app-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 56px;
        z-index: 1050;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 1rem;
        background: rgba(10, 4, 28, 0.9);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(140, 80, 220, 0.15);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    }

    .mobile-app-header .header-left,
    .mobile-app-header .header-right {
        width: 40px;
        display: flex;
        align-items: center;
    }

    .mobile-app-header .header-right {
        justify-content: flex-end;
    }

    .mobile-app-header .btn-profile,
    .mobile-app-header .btn-share {
        background: none;
        border: 0;
        color: var(--ov-cyan);
        font-size: 1.15rem;
        padding: 0;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.05);
        transition: background 0.2s ease;
    }

    .mobile-app-header .btn-profile:active,
    .mobile-app-header .btn-share:active {
        background: rgba(255, 255, 255, 0.12);
    }

    .mobile-app-header .header-center {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .mobile-app-header .app-header-logo {
        width: 28px;
        height: 28px;
        border-radius: 6px;
        box-shadow: 0 2px 8px rgba(123, 44, 255, 0.3);
    }

    .mobile-app-header .app-header-title {
        font-family: Montserrat, sans-serif;
        font-weight: 800;
        color: #fff;
        font-size: 1.05rem;
        letter-spacing: 0.02em;
    }

    /* Swipeable horizontal lists for status chips and quick menu grid */
    .mission-status-strip,
    .quick-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 0.75rem !important;
        padding: 0.5rem 1rem !important;
        margin: 0 -1rem 1.5rem !important;
        scroll-padding: 1rem;
        grid-template-columns: none !important; /* disable grid */
    }

    .mission-status-strip::-webkit-scrollbar,
    .quick-grid::-webkit-scrollbar {
        display: none !important; /* Hide scrollbar for pure swiping panels */
    }

    .mission-chip {
        flex: 0 0 180px !important;
        scroll-snap-align: start;
        min-height: 100px !important;
        padding: 0.85rem !important;
        margin: 0 !important;
    }

    .quick-card {
        flex: 0 0 190px !important;
        scroll-snap-align: start;
        min-height: 140px !important;
        padding: 1.25rem 1rem !important;
        margin: 0 !important;
    }

    .quick-card i {
        margin-bottom: 0.75rem !important;
    }

    /* Make Devotion, Reading Cards & Bands look like neat native cards */
    .about-band,
    .share-band {
        border-radius: 20px !important;
        padding: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .about-band h2,
    .share-band h2 {
        font-size: 1.5rem !important;
    }

    .about-band .btn,
    .share-band .btn {
        width: 100% !important;
        margin-top: 1rem;
    }

    /* Standard card items */
    .glass-card {
        border-radius: 20px !important;
        padding: 1.5rem !important;
    }

    /* Page-head native compact layout */
    .page-head {
        padding-top: 1rem !important;
        padding-bottom: 0.5rem !important;
        margin-bottom: 1.25rem !important;
        text-align: center;
    }
    
    .page-head h1 {
        font-size: 1.75rem !important;
        line-height: 1.2 !important;
        margin-top: 0.25rem !important;
        font-weight: 800 !important;
    }

    .page-head .eyebrow {
        margin-bottom: 0.25rem !important;
        font-size: 0.72rem !important;
        letter-spacing: 0.1em !important;
    }
    
    .page-head p {
        font-size: 0.85rem !important;
        line-height: 1.45 !important;
        color: var(--ov-muted) !important;
    }

    /* Reading Detail Typography overrides */
    .reading-detail h2 {
        font-size: 1.15rem !important;
        font-weight: 700;
        color: var(--ov-cyan);
        margin-top: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .reading-detail blockquote {
        border-left: 3px solid var(--ov-magenta) !important;
        padding-left: 1rem;
        font-style: italic;
        color: var(--ov-muted);
    }
}